]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blame - arch/x86/kernel/mpparse_32.c
x86: unify arch/x86/kernel/mpparse_64.c
[mirror_ubuntu-focal-kernel.git] / arch / x86 / kernel / mpparse_32.c
CommitLineData
1da177e4
LT
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 *
8 * Fixes
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
14 */
15
16#include <linux/mm.h>
1da177e4
LT
17#include <linux/init.h>
18#include <linux/acpi.h>
19#include <linux/delay.h>
1da177e4 20#include <linux/bootmem.h>
1da177e4
LT
21#include <linux/kernel_stat.h>
22#include <linux/mc146818rtc.h>
23#include <linux/bitops.h>
24
25#include <asm/smp.h>
26#include <asm/acpi.h>
27#include <asm/mtrr.h>
28#include <asm/mpspec.h>
29#include <asm/io_apic.h>
ce3fe6b2 30#include <asm/bios_ebda.h>
1da177e4
LT
31
32#include <mach_apic.h>
874c4fe3 33#include <mach_apicdef.h>
1da177e4 34#include <mach_mpparse.h>
1da177e4
LT
35
36/* Have we found an MP table */
37int smp_found_config;
1da177e4
LT
38
39/*
40 * Various Linux-internal data structures created from the
41 * MP-table.
42 */
c0a282c2 43#if defined (CONFIG_MCA) || defined (CONFIG_EISA)
4ef81297 44int mp_bus_id_to_type[MAX_MP_BUSSES];
c0a282c2 45#endif
a6333c3c 46DECLARE_BITMAP(mp_bus_not_pci, MAX_MP_BUSSES);
4ef81297 47int mp_bus_id_to_pci_bus[MAX_MP_BUSSES] = {[0 ... MAX_MP_BUSSES - 1] = -1 };
1da177e4
LT
48static int mp_current_pci_id;
49
1da177e4 50int pic_mode;
1da177e4 51
1da177e4
LT
52/*
53 * Intel MP BIOS table parsing routines:
54 */
55
1da177e4
LT
56/*
57 * Checksum an MP configuration block.
58 */
59
60static int __init mpf_checksum(unsigned char *mp, int len)
61{
62 int sum = 0;
63
64 while (len--)
65 sum += *mp++;
66
67 return sum & 0xFF;
68}
69
86420506 70#ifdef CONFIG_X86_NUMAQ
1da177e4
LT
71/*
72 * Have to match translation table entries to main table entries by counter
73 * hence the mpc_record variable .... can't see a less disgusting way of
74 * doing this ....
75 */
76
4ef81297
AS
77static int mpc_record;
78static struct mpc_config_translation *translation_table[MAX_MPC_ENTRY]
79 __cpuinitdata;
86420506 80#endif
1da177e4 81
c853c676
AS
82static void __cpuinit MP_processor_info(struct mpc_config_processor *m)
83{
84 int apicid;
746f2244 85 char *bootup_cpu = "";
c853c676 86
7b1292e2
GC
87 if (!(m->mpc_cpuflag & CPU_ENABLED)) {
88 disabled_cpus++;
1da177e4 89 return;
7b1292e2 90 }
4655c7de 91#ifdef CONFIG_X86_NUMAQ
1da177e4 92 apicid = mpc_apic_id(m, translation_table[mpc_record]);
4655c7de 93#else
4655c7de
AS
94 apicid = m->mpc_apicid;
95#endif
1da177e4 96 if (m->mpc_cpuflag & CPU_BOOTPROCESSOR) {
746f2244 97 bootup_cpu = " (Bootup-CPU)";
1da177e4 98 boot_cpu_physical_apicid = m->mpc_apicid;
1da177e4
LT
99 }
100
746f2244 101 printk(KERN_INFO "Processor #%d%s\n", m->mpc_apicid, bootup_cpu);
c853c676 102 generic_processor_info(apicid, m->mpc_apicver);
1da177e4
LT
103}
104
4ef81297 105static void __init MP_bus_info(struct mpc_config_bus *m)
1da177e4
LT
106{
107 char str[7];
108
109 memcpy(str, m->mpc_bustype, 6);
110 str[6] = 0;
111
0ec153af 112#ifdef CONFIG_X86_NUMAQ
1da177e4 113 mpc_oem_bus_info(m, str, translation_table[mpc_record]);
0ec153af
AS
114#else
115 Dprintk("Bus #%d is %s\n", m->mpc_busid, str);
116#endif
1da177e4 117
5e4edbb7 118#if MAX_MP_BUSSES < 256
c0ec31ad
RD
119 if (m->mpc_busid >= MAX_MP_BUSSES) {
120 printk(KERN_WARNING "MP table busid value (%d) for bustype %s "
4ef81297
AS
121 " is too large, max. supported is %d\n",
122 m->mpc_busid, str, MAX_MP_BUSSES - 1);
c0ec31ad
RD
123 return;
124 }
5e4edbb7 125#endif
c0ec31ad 126
a6333c3c 127 set_bit(m->mpc_busid, mp_bus_not_pci);
4ef81297 128 if (strncmp(str, BUSTYPE_PCI, sizeof(BUSTYPE_PCI) - 1) == 0) {
d285e338 129#ifdef CONFIG_X86_NUMAQ
1da177e4 130 mpc_oem_pci_bus(m, translation_table[mpc_record]);
d285e338 131#endif
a6333c3c 132 clear_bit(m->mpc_busid, mp_bus_not_pci);
1da177e4
LT
133 mp_bus_id_to_pci_bus[m->mpc_busid] = mp_current_pci_id;
134 mp_current_pci_id++;
c0a282c2
AS
135#if defined(CONFIG_EISA) || defined (CONFIG_MCA)
136 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_PCI;
4ef81297 137 } else if (strncmp(str, BUSTYPE_ISA, sizeof(BUSTYPE_ISA) - 1) == 0) {
9e0a2de2 138 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_ISA;
4ef81297 139 } else if (strncmp(str, BUSTYPE_EISA, sizeof(BUSTYPE_EISA) - 1) == 0) {
9e0a2de2 140 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_EISA;
4ef81297 141 } else if (strncmp(str, BUSTYPE_MCA, sizeof(BUSTYPE_MCA) - 1) == 0) {
1da177e4 142 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_MCA;
1da177e4
LT
143 } else {
144 printk(KERN_WARNING "Unknown bustype %s - ignoring\n", str);
c0a282c2 145#endif
1da177e4
LT
146 }
147}
148
61048c63
AS
149#ifdef CONFIG_X86_IO_APIC
150
857033a6
AS
151static int bad_ioapic(unsigned long address)
152{
153 if (nr_ioapics >= MAX_IO_APICS) {
154 printk(KERN_ERR "ERROR: Max # of I/O APICs (%d) exceeded "
155 "(found %d)\n", MAX_IO_APICS, nr_ioapics);
156 panic("Recompile kernel with bigger MAX_IO_APICS!\n");
157 }
158 if (!address) {
159 printk(KERN_ERR "WARNING: Bogus (zero) I/O APIC address"
160 " found in table, skipping!\n");
161 return 1;
162 }
163 return 0;
164}
165
4ef81297 166static void __init MP_ioapic_info(struct mpc_config_ioapic *m)
1da177e4
LT
167{
168 if (!(m->mpc_flags & MPC_APIC_USABLE))
169 return;
170
64883ab0 171 printk(KERN_INFO "I/O APIC #%d Version %d at 0x%X.\n",
4ef81297 172 m->mpc_apicid, m->mpc_apicver, m->mpc_apicaddr);
857033a6
AS
173
174 if (bad_ioapic(m->mpc_apicaddr))
1da177e4 175 return;
857033a6 176
1da177e4
LT
177 mp_ioapics[nr_ioapics] = *m;
178 nr_ioapics++;
179}
180
4ef81297 181static void __init MP_intsrc_info(struct mpc_config_intsrc *m)
1da177e4 182{
4ef81297 183 mp_irqs[mp_irq_entries] = *m;
1da177e4
LT
184 Dprintk("Int: type %d, pol %d, trig %d, bus %d,"
185 " IRQ %02x, APIC ID %x, APIC INT %02x\n",
4ef81297
AS
186 m->mpc_irqtype, m->mpc_irqflag & 3,
187 (m->mpc_irqflag >> 2) & 3, m->mpc_srcbus,
188 m->mpc_srcbusirq, m->mpc_dstapic, m->mpc_dstirq);
1da177e4
LT
189 if (++mp_irq_entries == MAX_IRQ_SOURCES)
190 panic("Max # of irq sources exceeded!!\n");
191}
192
61048c63
AS
193#endif
194
4ef81297 195static void __init MP_lintsrc_info(struct mpc_config_lintsrc *m)
1da177e4
LT
196{
197 Dprintk("Lint: type %d, pol %d, trig %d, bus %d,"
198 " IRQ %02x, APIC ID %x, APIC LINT %02x\n",
4ef81297
AS
199 m->mpc_irqtype, m->mpc_irqflag & 3,
200 (m->mpc_irqflag >> 2) & 3, m->mpc_srcbusid,
201 m->mpc_srcbusirq, m->mpc_destapic, m->mpc_destapiclint);
1da177e4
LT
202}
203
204#ifdef CONFIG_X86_NUMAQ
4ef81297 205static void __init MP_translation_info(struct mpc_config_translation *m)
1da177e4 206{
4ef81297
AS
207 printk(KERN_INFO
208 "Translation: record %d, type %d, quad %d, global %d, local %d\n",
209 mpc_record, m->trans_type, m->trans_quad, m->trans_global,
210 m->trans_local);
1da177e4 211
4ef81297 212 if (mpc_record >= MAX_MPC_ENTRY)
1da177e4
LT
213 printk(KERN_ERR "MAX_MPC_ENTRY exceeded!\n");
214 else
4ef81297 215 translation_table[mpc_record] = m; /* stash this for later */
1da177e4
LT
216 if (m->trans_quad < MAX_NUMNODES && !node_online(m->trans_quad))
217 node_set_online(m->trans_quad);
218}
219
220/*
221 * Read/parse the MPC oem tables
222 */
223
4ef81297
AS
224static void __init smp_read_mpc_oem(struct mp_config_oemtable *oemtable,
225 unsigned short oemsize)
1da177e4 226{
4ef81297
AS
227 int count = sizeof(*oemtable); /* the header size */
228 unsigned char *oemptr = ((unsigned char *)oemtable) + count;
229
1da177e4 230 mpc_record = 0;
4ef81297
AS
231 printk(KERN_INFO "Found an OEM MPC table at %8p - parsing it ... \n",
232 oemtable);
233 if (memcmp(oemtable->oem_signature, MPC_OEM_SIGNATURE, 4)) {
234 printk(KERN_WARNING
235 "SMP mpc oemtable: bad signature [%c%c%c%c]!\n",
236 oemtable->oem_signature[0], oemtable->oem_signature[1],
237 oemtable->oem_signature[2], oemtable->oem_signature[3]);
1da177e4
LT
238 return;
239 }
4ef81297 240 if (mpf_checksum((unsigned char *)oemtable, oemtable->oem_length)) {
1da177e4
LT
241 printk(KERN_WARNING "SMP oem mptable: checksum error!\n");
242 return;
243 }
244 while (count < oemtable->oem_length) {
245 switch (*oemptr) {
4ef81297 246 case MP_TRANSLATION:
1da177e4 247 {
4ef81297
AS
248 struct mpc_config_translation *m =
249 (struct mpc_config_translation *)oemptr;
1da177e4
LT
250 MP_translation_info(m);
251 oemptr += sizeof(*m);
252 count += sizeof(*m);
253 ++mpc_record;
254 break;
255 }
4ef81297 256 default:
1da177e4 257 {
4ef81297
AS
258 printk(KERN_WARNING
259 "Unrecognised OEM table entry type! - %d\n",
260 (int)*oemptr);
1da177e4
LT
261 return;
262 }
263 }
4ef81297 264 }
1da177e4
LT
265}
266
267static inline void mps_oem_check(struct mp_config_table *mpc, char *oem,
4ef81297 268 char *productid)
1da177e4
LT
269{
270 if (strncmp(oem, "IBM NUMA", 8))
271 printk("Warning! May not be a NUMA-Q system!\n");
272 if (mpc->mpc_oemptr)
4ef81297
AS
273 smp_read_mpc_oem((struct mp_config_oemtable *)mpc->mpc_oemptr,
274 mpc->mpc_oemsize);
1da177e4 275}
4ef81297 276#endif /* CONFIG_X86_NUMAQ */
1da177e4
LT
277
278/*
279 * Read/parse the MPC
280 */
281
888032cd 282static int __init smp_read_mpc(struct mp_config_table *mpc, unsigned early)
1da177e4
LT
283{
284 char str[16];
285 char oem[10];
4ef81297
AS
286 int count = sizeof(*mpc);
287 unsigned char *mpt = ((unsigned char *)mpc) + count;
1da177e4 288
4ef81297 289 if (memcmp(mpc->mpc_signature, MPC_SIGNATURE, 4)) {
1da177e4 290 printk(KERN_ERR "SMP mptable: bad signature [0x%x]!\n",
4ef81297 291 *(u32 *) mpc->mpc_signature);
1da177e4
LT
292 return 0;
293 }
4ef81297 294 if (mpf_checksum((unsigned char *)mpc, mpc->mpc_length)) {
1da177e4
LT
295 printk(KERN_ERR "SMP mptable: checksum error!\n");
296 return 0;
297 }
4ef81297 298 if (mpc->mpc_spec != 0x01 && mpc->mpc_spec != 0x04) {
1da177e4 299 printk(KERN_ERR "SMP mptable: bad table version (%d)!!\n",
4ef81297 300 mpc->mpc_spec);
1da177e4
LT
301 return 0;
302 }
303 if (!mpc->mpc_lapic) {
304 printk(KERN_ERR "SMP mptable: null local APIC address!\n");
305 return 0;
306 }
4ef81297
AS
307 memcpy(oem, mpc->mpc_oem, 8);
308 oem[8] = 0;
309 printk(KERN_INFO "OEM ID: %s ", oem);
1da177e4 310
4ef81297
AS
311 memcpy(str, mpc->mpc_productid, 12);
312 str[12] = 0;
313 printk("Product ID: %s ", str);
1da177e4
LT
314
315 mps_oem_check(mpc, oem, str);
316
64883ab0 317 printk("APIC at: 0x%X\n", mpc->mpc_lapic);
1da177e4 318
64883ab0 319 /*
1da177e4
LT
320 * Save the local APIC address (it might be non-default) -- but only
321 * if we're not using ACPI.
322 */
323 if (!acpi_lapic)
324 mp_lapic_addr = mpc->mpc_lapic;
325
888032cd
AS
326 if (early)
327 return 1;
328
1da177e4 329 /*
4ef81297 330 * Now process the configuration blocks.
1da177e4 331 */
86420506 332#ifdef CONFIG_X86_NUMAQ
1da177e4 333 mpc_record = 0;
86420506 334#endif
1da177e4 335 while (count < mpc->mpc_length) {
4ef81297
AS
336 switch (*mpt) {
337 case MP_PROCESSOR:
1da177e4 338 {
4ef81297
AS
339 struct mpc_config_processor *m =
340 (struct mpc_config_processor *)mpt;
1da177e4
LT
341 /* ACPI may have already provided this data */
342 if (!acpi_lapic)
343 MP_processor_info(m);
344 mpt += sizeof(*m);
345 count += sizeof(*m);
346 break;
347 }
4ef81297 348 case MP_BUS:
1da177e4 349 {
4ef81297
AS
350 struct mpc_config_bus *m =
351 (struct mpc_config_bus *)mpt;
1da177e4
LT
352 MP_bus_info(m);
353 mpt += sizeof(*m);
354 count += sizeof(*m);
355 break;
356 }
4ef81297 357 case MP_IOAPIC:
1da177e4 358 {
61048c63 359#ifdef CONFIG_X86_IO_APIC
4ef81297
AS
360 struct mpc_config_ioapic *m =
361 (struct mpc_config_ioapic *)mpt;
1da177e4 362 MP_ioapic_info(m);
61048c63 363#endif
4ef81297
AS
364 mpt += sizeof(struct mpc_config_ioapic);
365 count += sizeof(struct mpc_config_ioapic);
1da177e4
LT
366 break;
367 }
4ef81297 368 case MP_INTSRC:
1da177e4 369 {
61048c63 370#ifdef CONFIG_X86_IO_APIC
4ef81297
AS
371 struct mpc_config_intsrc *m =
372 (struct mpc_config_intsrc *)mpt;
1da177e4
LT
373
374 MP_intsrc_info(m);
61048c63 375#endif
4ef81297
AS
376 mpt += sizeof(struct mpc_config_intsrc);
377 count += sizeof(struct mpc_config_intsrc);
1da177e4
LT
378 break;
379 }
4ef81297 380 case MP_LINTSRC:
1da177e4 381 {
4ef81297
AS
382 struct mpc_config_lintsrc *m =
383 (struct mpc_config_lintsrc *)mpt;
1da177e4 384 MP_lintsrc_info(m);
4ef81297
AS
385 mpt += sizeof(*m);
386 count += sizeof(*m);
1da177e4
LT
387 break;
388 }
4ef81297 389 default:
1da177e4
LT
390 {
391 count = mpc->mpc_length;
392 break;
393 }
394 }
86420506 395#ifdef CONFIG_X86_NUMAQ
1da177e4 396 ++mpc_record;
86420506 397#endif
1da177e4 398 }
3c43f039 399 setup_apic_routing();
1da177e4
LT
400 if (!num_processors)
401 printk(KERN_ERR "SMP mptable: no processors registered!\n");
402 return num_processors;
403}
404
61048c63
AS
405#ifdef CONFIG_X86_IO_APIC
406
1da177e4
LT
407static int __init ELCR_trigger(unsigned int irq)
408{
409 unsigned int port;
410
411 port = 0x4d0 + (irq >> 3);
412 return (inb(port) >> (irq & 7)) & 1;
413}
414
415static void __init construct_default_ioirq_mptable(int mpc_default_type)
416{
417 struct mpc_config_intsrc intsrc;
418 int i;
419 int ELCR_fallback = 0;
420
421 intsrc.mpc_type = MP_INTSRC;
4ef81297 422 intsrc.mpc_irqflag = 0; /* conforming */
1da177e4
LT
423 intsrc.mpc_srcbus = 0;
424 intsrc.mpc_dstapic = mp_ioapics[0].mpc_apicid;
425
426 intsrc.mpc_irqtype = mp_INT;
427
428 /*
429 * If true, we have an ISA/PCI system with no IRQ entries
430 * in the MP table. To prevent the PCI interrupts from being set up
431 * incorrectly, we try to use the ELCR. The sanity check to see if
432 * there is good ELCR data is very simple - IRQ0, 1, 2 and 13 can
433 * never be level sensitive, so we simply see if the ELCR agrees.
434 * If it does, we assume it's valid.
435 */
436 if (mpc_default_type == 5) {
4ef81297
AS
437 printk(KERN_INFO
438 "ISA/PCI bus type with no IRQ information... falling back to ELCR\n");
1da177e4 439
4ef81297
AS
440 if (ELCR_trigger(0) || ELCR_trigger(1) || ELCR_trigger(2)
441 || ELCR_trigger(13))
442 printk(KERN_WARNING
443 "ELCR contains invalid data... not using ELCR\n");
1da177e4 444 else {
4ef81297
AS
445 printk(KERN_INFO
446 "Using ELCR to identify PCI interrupts\n");
1da177e4
LT
447 ELCR_fallback = 1;
448 }
449 }
450
451 for (i = 0; i < 16; i++) {
452 switch (mpc_default_type) {
453 case 2:
454 if (i == 0 || i == 13)
455 continue; /* IRQ0 & IRQ13 not connected */
456 /* fall through */
457 default:
458 if (i == 2)
459 continue; /* IRQ2 is never connected */
460 }
461
462 if (ELCR_fallback) {
463 /*
464 * If the ELCR indicates a level-sensitive interrupt, we
465 * copy that information over to the MP table in the
466 * irqflag field (level sensitive, active high polarity).
467 */
468 if (ELCR_trigger(i))
469 intsrc.mpc_irqflag = 13;
470 else
471 intsrc.mpc_irqflag = 0;
472 }
473
474 intsrc.mpc_srcbusirq = i;
4ef81297 475 intsrc.mpc_dstirq = i ? i : 2; /* IRQ0 to INTIN2 */
1da177e4
LT
476 MP_intsrc_info(&intsrc);
477 }
478
479 intsrc.mpc_irqtype = mp_ExtINT;
480 intsrc.mpc_srcbusirq = 0;
4ef81297 481 intsrc.mpc_dstirq = 0; /* 8259A to INTIN0 */
1da177e4
LT
482 MP_intsrc_info(&intsrc);
483}
484
61048c63
AS
485#endif
486
1da177e4
LT
487static inline void __init construct_default_ISA_mptable(int mpc_default_type)
488{
489 struct mpc_config_processor processor;
490 struct mpc_config_bus bus;
61048c63 491#ifdef CONFIG_X86_IO_APIC
1da177e4 492 struct mpc_config_ioapic ioapic;
61048c63 493#endif
1da177e4
LT
494 struct mpc_config_lintsrc lintsrc;
495 int linttypes[2] = { mp_ExtINT, mp_NMI };
496 int i;
497
498 /*
499 * local APIC has default address
500 */
501 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
502
503 /*
504 * 2 CPUs, numbered 0 & 1.
505 */
506 processor.mpc_type = MP_PROCESSOR;
507 /* Either an integrated APIC or a discrete 82489DX. */
508 processor.mpc_apicver = mpc_default_type > 4 ? 0x10 : 0x01;
509 processor.mpc_cpuflag = CPU_ENABLED;
510 processor.mpc_cpufeature = (boot_cpu_data.x86 << 8) |
4ef81297 511 (boot_cpu_data.x86_model << 4) | boot_cpu_data.x86_mask;
1da177e4
LT
512 processor.mpc_featureflag = boot_cpu_data.x86_capability[0];
513 processor.mpc_reserved[0] = 0;
514 processor.mpc_reserved[1] = 0;
515 for (i = 0; i < 2; i++) {
516 processor.mpc_apicid = i;
517 MP_processor_info(&processor);
518 }
519
520 bus.mpc_type = MP_BUS;
521 bus.mpc_busid = 0;
522 switch (mpc_default_type) {
4ef81297
AS
523 default:
524 printk("???\n");
525 printk(KERN_ERR "Unknown standard configuration %d\n",
526 mpc_default_type);
527 /* fall through */
528 case 1:
529 case 5:
530 memcpy(bus.mpc_bustype, "ISA ", 6);
531 break;
532 case 2:
533 case 6:
534 case 3:
535 memcpy(bus.mpc_bustype, "EISA ", 6);
536 break;
537 case 4:
538 case 7:
539 memcpy(bus.mpc_bustype, "MCA ", 6);
1da177e4
LT
540 }
541 MP_bus_info(&bus);
542 if (mpc_default_type > 4) {
543 bus.mpc_busid = 1;
544 memcpy(bus.mpc_bustype, "PCI ", 6);
545 MP_bus_info(&bus);
546 }
547
61048c63 548#ifdef CONFIG_X86_IO_APIC
1da177e4
LT
549 ioapic.mpc_type = MP_IOAPIC;
550 ioapic.mpc_apicid = 2;
551 ioapic.mpc_apicver = mpc_default_type > 4 ? 0x10 : 0x01;
552 ioapic.mpc_flags = MPC_APIC_USABLE;
553 ioapic.mpc_apicaddr = 0xFEC00000;
554 MP_ioapic_info(&ioapic);
555
556 /*
557 * We set up most of the low 16 IO-APIC pins according to MPS rules.
558 */
559 construct_default_ioirq_mptable(mpc_default_type);
61048c63 560#endif
1da177e4 561 lintsrc.mpc_type = MP_LINTSRC;
4ef81297 562 lintsrc.mpc_irqflag = 0; /* conforming */
1da177e4
LT
563 lintsrc.mpc_srcbusid = 0;
564 lintsrc.mpc_srcbusirq = 0;
565 lintsrc.mpc_destapic = MP_APIC_ALL;
566 for (i = 0; i < 2; i++) {
567 lintsrc.mpc_irqtype = linttypes[i];
568 lintsrc.mpc_destapiclint = i;
569 MP_lintsrc_info(&lintsrc);
570 }
571}
572
573static struct intel_mp_floating *mpf_found;
574
575/*
576 * Scan the memory blocks for an SMP configuration block.
577 */
888032cd 578static void __init __get_smp_config(unsigned early)
1da177e4
LT
579{
580 struct intel_mp_floating *mpf = mpf_found;
581
888032cd
AS
582 if (acpi_lapic && early)
583 return;
584
1da177e4 585 /*
4ef81297 586 * ACPI supports both logical (e.g. Hyper-Threading) and physical
1da177e4
LT
587 * processors, where MPS only supports physical.
588 */
589 if (acpi_lapic && acpi_ioapic) {
4ef81297
AS
590 printk(KERN_INFO
591 "Using ACPI (MADT) for SMP configuration information\n");
1da177e4 592 return;
4ef81297
AS
593 } else if (acpi_lapic)
594 printk(KERN_INFO
595 "Using ACPI for processor (LAPIC) configuration information\n");
1da177e4 596
4ef81297
AS
597 printk(KERN_INFO "Intel MultiProcessor Specification v1.%d\n",
598 mpf->mpf_specification);
599 if (mpf->mpf_feature2 & (1 << 7)) {
1da177e4
LT
600 printk(KERN_INFO " IMCR and PIC compatibility mode.\n");
601 pic_mode = 1;
602 } else {
603 printk(KERN_INFO " Virtual Wire compatibility mode.\n");
604 pic_mode = 0;
605 }
606
607 /*
608 * Now see if we need to read further.
609 */
610 if (mpf->mpf_feature1 != 0) {
888032cd
AS
611 if (early) {
612 /*
613 * local APIC has default address
614 */
615 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
616 return;
617 }
1da177e4 618
4ef81297
AS
619 printk(KERN_INFO "Default MP configuration #%d\n",
620 mpf->mpf_feature1);
1da177e4
LT
621 construct_default_ISA_mptable(mpf->mpf_feature1);
622
623 } else if (mpf->mpf_physptr) {
624
625 /*
626 * Read the physical hardware table. Anything here will
627 * override the defaults.
628 */
888032cd 629 if (!smp_read_mpc(phys_to_virt(mpf->mpf_physptr), early)) {
1da177e4 630 smp_found_config = 0;
4ef81297
AS
631 printk(KERN_ERR
632 "BIOS bug, MP table errors detected!...\n");
633 printk(KERN_ERR
634 "... disabling SMP support. (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
4ef81297
AS
649 printk(KERN_ERR
650 "BIOS bug, no explicit IRQ entries, using default mptable. (tell your hw vendor)\n");
1da177e4
LT
651
652 bus.mpc_type = MP_BUS;
653 bus.mpc_busid = 0;
654 memcpy(bus.mpc_bustype, "ISA ", 6);
655 MP_bus_info(&bus);
656
657 construct_default_ioirq_mptable(0);
658 }
61048c63 659#endif
1da177e4
LT
660 } else
661 BUG();
662
888032cd
AS
663 if (!early)
664 printk(KERN_INFO "Processors: %d\n", num_processors);
1da177e4
LT
665 /*
666 * Only use the first configuration found.
667 */
668}
669
888032cd
AS
670void __init early_get_smp_config(void)
671{
672 __get_smp_config(1);
673}
674
675void __init get_smp_config(void)
676{
677 __get_smp_config(0);
678}
679
680static int __init smp_scan_config(unsigned long base, unsigned long length,
681 unsigned reserve)
1da177e4
LT
682{
683 unsigned long *bp = phys_to_virt(base);
684 struct intel_mp_floating *mpf;
685
4ef81297 686 printk(KERN_INFO "Scan SMP from %p for %ld bytes.\n", bp, length);
1da177e4
LT
687 if (sizeof(*mpf) != 16)
688 printk("Error: MPF size\n");
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))) {
1da177e4
LT
697
698 smp_found_config = 1;
e91a3b43 699 printk(KERN_INFO "found SMP MP-table at [%p] %08lx\n",
4ef81297 700 mpf, virt_to_phys(mpf));
72a7fe39
BW
701 reserve_bootmem(virt_to_phys(mpf), PAGE_SIZE,
702 BOOTMEM_DEFAULT);
1da177e4
LT
703 if (mpf->mpf_physptr) {
704 /*
705 * We cannot access to MPC table to compute
706 * table size yet, as only few megabytes from
707 * the bottom is mapped now.
708 * PC-9800's MPC table places on the very last
709 * of physical memory; so that simply reserving
710 * PAGE_SIZE from mpg->mpf_physptr yields BUG()
711 * in reserve_bootmem.
712 */
713 unsigned long size = PAGE_SIZE;
714 unsigned long end = max_low_pfn * PAGE_SIZE;
715 if (mpf->mpf_physptr + size > end)
716 size = end - mpf->mpf_physptr;
72a7fe39
BW
717 reserve_bootmem(mpf->mpf_physptr, size,
718 BOOTMEM_DEFAULT);
1da177e4
LT
719 }
720
721 mpf_found = mpf;
722 return 1;
723 }
724 bp += 4;
725 length -= 16;
726 }
727 return 0;
728}
729
888032cd 730static void __init __find_smp_config(unsigned reserve)
1da177e4
LT
731{
732 unsigned int address;
733
734 /*
735 * FIXME: Linux assumes you have 640K of base ram..
736 * this continues the error...
737 *
738 * 1) Scan the bottom 1K for a signature
739 * 2) Scan the top 1K of base RAM
740 * 3) Scan the 64K of bios
741 */
888032cd
AS
742 if (smp_scan_config(0x0, 0x400, reserve) ||
743 smp_scan_config(639 * 0x400, 0x400, reserve) ||
744 smp_scan_config(0xF0000, 0x10000, reserve))
1da177e4
LT
745 return;
746 /*
747 * If it is an SMP machine we should know now, unless the
748 * configuration is in an EISA/MCA bus machine with an
749 * extended bios data area.
750 *
751 * there is a real-mode segmented pointer pointing to the
752 * 4K EBDA area at 0x40E, calculate and scan it here.
753 *
754 * NOTE! There are Linux loaders that will corrupt the EBDA
755 * area, and as such this kind of SMP config may be less
756 * trustworthy, simply because the SMP table may have been
757 * stomped on during early boot. These loaders are buggy and
758 * should be fixed.
759 *
760 * MP1.4 SPEC states to only scan first 1K of 4K EBDA.
761 */
762
763 address = get_bios_ebda();
764 if (address)
888032cd
AS
765 smp_scan_config(address, 0x400, reserve);
766}
767
768void __init early_find_smp_config(void)
769{
770 __find_smp_config(0);
771}
772
773void __init find_smp_config(void)
774{
775 __find_smp_config(1);
1da177e4
LT
776}
777
778/* --------------------------------------------------------------------------
779 ACPI-based MP Configuration
780 -------------------------------------------------------------------------- */
781
888ba6c6 782#ifdef CONFIG_ACPI
1da177e4 783
8466361a 784#ifdef CONFIG_X86_IO_APIC
1da177e4
LT
785
786#define MP_ISA_BUS 0
787#define MP_MAX_IOAPIC_PIN 127
788
9e5c5f1d 789extern struct mp_ioapic_routing mp_ioapic_routing[MAX_IO_APICS];
1da177e4 790
4ef81297 791static int mp_find_ioapic(int gsi)
1da177e4 792{
19f03ffe 793 int i = 0;
1da177e4
LT
794
795 /* Find the IOAPIC that manages this GSI. */
796 for (i = 0; i < nr_ioapics; i++) {
797 if ((gsi >= mp_ioapic_routing[i].gsi_base)
4ef81297 798 && (gsi <= mp_ioapic_routing[i].gsi_end))
1da177e4
LT
799 return i;
800 }
801
802 printk(KERN_ERR "ERROR: Unable to locate IOAPIC for GSI %d\n", gsi);
803
804 return -1;
805}
1da177e4 806
e3e3ffa2
AS
807static u8 uniq_ioapic_id(u8 id)
808{
809 if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
810 !APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
811 return io_apic_get_unique_id(nr_ioapics, id);
812 else
813 return id;
814}
815
a65d1d64 816void __init mp_register_ioapic(int id, u32 address, u32 gsi_base)
1da177e4 817{
19f03ffe 818 int idx = 0;
1da177e4 819
857033a6 820 if (bad_ioapic(address))
1da177e4 821 return;
1da177e4 822
e3e3ffa2 823 idx = nr_ioapics;
1da177e4
LT
824
825 mp_ioapics[idx].mpc_type = MP_IOAPIC;
826 mp_ioapics[idx].mpc_flags = MPC_APIC_USABLE;
827 mp_ioapics[idx].mpc_apicaddr = address;
828
829 set_fixmap_nocache(FIX_IO_APIC_BASE_0 + idx, address);
e3e3ffa2 830 mp_ioapics[idx].mpc_apicid = uniq_ioapic_id(id);
1da177e4 831 mp_ioapics[idx].mpc_apicver = io_apic_get_version(idx);
4ef81297
AS
832
833 /*
1da177e4
LT
834 * Build basic GSI lookup table to facilitate gsi->io_apic lookups
835 * and to prevent reprogramming of IOAPIC pins (PCI GSIs).
836 */
837 mp_ioapic_routing[idx].apic_id = mp_ioapics[idx].mpc_apicid;
838 mp_ioapic_routing[idx].gsi_base = gsi_base;
64883ab0 839 mp_ioapic_routing[idx].gsi_end = gsi_base +
4ef81297 840 io_apic_get_redir_entries(idx);
1da177e4 841
64883ab0
TG
842 printk("IOAPIC[%d]: apic_id %d, version %d, address 0x%x, "
843 "GSI %d-%d\n", idx, mp_ioapics[idx].mpc_apicid,
e3e3ffa2
AS
844 mp_ioapics[idx].mpc_apicver,
845 mp_ioapics[idx].mpc_apicaddr,
4ef81297 846 mp_ioapic_routing[idx].gsi_base, mp_ioapic_routing[idx].gsi_end);
e3e3ffa2
AS
847
848 nr_ioapics++;
1da177e4
LT
849}
850
4ef81297 851void __init mp_override_legacy_irq(u8 bus_irq, u8 polarity, u8 trigger, u32 gsi)
1da177e4
LT
852{
853 struct mpc_config_intsrc intsrc;
4ef81297
AS
854 int ioapic = -1;
855 int pin = -1;
1da177e4 856
4ef81297 857 /*
1da177e4
LT
858 * Convert 'gsi' to 'ioapic.pin'.
859 */
860 ioapic = mp_find_ioapic(gsi);
861 if (ioapic < 0)
862 return;
863 pin = gsi - mp_ioapic_routing[ioapic].gsi_base;
864
865 /*
866 * TBD: This check is for faulty timer entries, where the override
4ef81297 867 * erroneously sets the trigger to level, resulting in a HUGE
1da177e4
LT
868 * increase of timer interrupts!
869 */
870 if ((bus_irq == 0) && (trigger == 3))
871 trigger = 1;
872
873 intsrc.mpc_type = MP_INTSRC;
874 intsrc.mpc_irqtype = mp_INT;
875 intsrc.mpc_irqflag = (trigger << 2) | polarity;
876 intsrc.mpc_srcbus = MP_ISA_BUS;
4ef81297
AS
877 intsrc.mpc_srcbusirq = bus_irq; /* IRQ */
878 intsrc.mpc_dstapic = mp_ioapics[ioapic].mpc_apicid; /* APIC ID */
879 intsrc.mpc_dstirq = pin; /* INTIN# */
1da177e4
LT
880
881 Dprintk("Int: type %d, pol %d, trig %d, bus %d, irq %d, %d-%d\n",
4ef81297
AS
882 intsrc.mpc_irqtype, intsrc.mpc_irqflag & 3,
883 (intsrc.mpc_irqflag >> 2) & 3, intsrc.mpc_srcbus,
1da177e4
LT
884 intsrc.mpc_srcbusirq, intsrc.mpc_dstapic, intsrc.mpc_dstirq);
885
886 mp_irqs[mp_irq_entries] = intsrc;
887 if (++mp_irq_entries == MAX_IRQ_SOURCES)
888 panic("Max # of irq sources exceeded!\n");
1da177e4
LT
889}
890
2df29726
AS
891int es7000_plat;
892
4ef81297 893void __init mp_config_acpi_legacy_irqs(void)
1da177e4
LT
894{
895 struct mpc_config_intsrc intsrc;
19f03ffe
AK
896 int i = 0;
897 int ioapic = -1;
1da177e4 898
c0a282c2 899#if defined (CONFIG_MCA) || defined (CONFIG_EISA)
4ef81297 900 /*
1da177e4
LT
901 * Fabricate the legacy ISA bus (bus #31).
902 */
903 mp_bus_id_to_type[MP_ISA_BUS] = MP_BUS_ISA;
c0a282c2 904#endif
a6333c3c 905 set_bit(MP_ISA_BUS, mp_bus_not_pci);
1da177e4
LT
906 Dprintk("Bus #%d is ISA\n", MP_ISA_BUS);
907
908 /*
909 * Older generations of ES7000 have no legacy identity mappings
910 */
911 if (es7000_plat == 1)
912 return;
913
4ef81297
AS
914 /*
915 * Locate the IOAPIC that manages the ISA IRQs (0-15).
1da177e4
LT
916 */
917 ioapic = mp_find_ioapic(0);
918 if (ioapic < 0)
919 return;
920
921 intsrc.mpc_type = MP_INTSRC;
4ef81297 922 intsrc.mpc_irqflag = 0; /* Conforming */
1da177e4 923 intsrc.mpc_srcbus = MP_ISA_BUS;
61048c63 924#ifdef CONFIG_X86_IO_APIC
1da177e4 925 intsrc.mpc_dstapic = mp_ioapics[ioapic].mpc_apicid;
61048c63 926#endif
4ef81297 927 /*
1da177e4 928 * Use the default configuration for the IRQs 0-15. Unless
27b46d76 929 * overridden by (MADT) interrupt source override entries.
1da177e4
LT
930 */
931 for (i = 0; i < 16; i++) {
932 int idx;
933
934 for (idx = 0; idx < mp_irq_entries; idx++) {
935 struct mpc_config_intsrc *irq = mp_irqs + idx;
936
937 /* Do we already have a mapping for this ISA IRQ? */
4ef81297
AS
938 if (irq->mpc_srcbus == MP_ISA_BUS
939 && irq->mpc_srcbusirq == i)
1da177e4
LT
940 break;
941
942 /* Do we already have a mapping for this IOAPIC pin */
943 if ((irq->mpc_dstapic == intsrc.mpc_dstapic) &&
4ef81297 944 (irq->mpc_dstirq == i))
1da177e4
LT
945 break;
946 }
947
948 if (idx != mp_irq_entries) {
949 printk(KERN_DEBUG "ACPI: IRQ%d used by override.\n", i);
4ef81297 950 continue; /* IRQ already used */
1da177e4
LT
951 }
952
953 intsrc.mpc_irqtype = mp_INT;
4ef81297 954 intsrc.mpc_srcbusirq = i; /* Identity mapped */
1da177e4
LT
955 intsrc.mpc_dstirq = i;
956
957 Dprintk("Int: type %d, pol %d, trig %d, bus %d, irq %d, "
4ef81297
AS
958 "%d-%d\n", intsrc.mpc_irqtype, intsrc.mpc_irqflag & 3,
959 (intsrc.mpc_irqflag >> 2) & 3, intsrc.mpc_srcbus,
960 intsrc.mpc_srcbusirq, intsrc.mpc_dstapic,
1da177e4
LT
961 intsrc.mpc_dstirq);
962
963 mp_irqs[mp_irq_entries] = intsrc;
964 if (++mp_irq_entries == MAX_IRQ_SOURCES)
965 panic("Max # of irq sources exceeded!\n");
966 }
967}
968
c434b7a6 969#define MAX_GSI_NUM 4096
2ba7deef 970#define IRQ_COMPRESSION_START 64
c434b7a6 971
19f03ffe 972int mp_register_gsi(u32 gsi, int triggering, int polarity)
1da177e4 973{
19f03ffe
AK
974 int ioapic = -1;
975 int ioapic_pin = 0;
976 int idx, bit = 0;
2ba7deef 977 static int pci_irq = IRQ_COMPRESSION_START;
c434b7a6 978 /*
ab4a574e 979 * Mapping between Global System Interrupts, which
c434b7a6
NP
980 * represent all possible interrupts, and IRQs
981 * assigned to actual devices.
982 */
4ef81297 983 static int gsi_to_irq[MAX_GSI_NUM];
1da177e4 984
1da177e4 985 /* Don't set up the ACPI SCI because it's already set up */
cee324b1 986 if (acpi_gbl_FADT.sci_interrupt == gsi)
1da177e4 987 return gsi;
1da177e4
LT
988
989 ioapic = mp_find_ioapic(gsi);
990 if (ioapic < 0) {
991 printk(KERN_WARNING "No IOAPIC for GSI %u\n", gsi);
992 return gsi;
993 }
994
995 ioapic_pin = gsi - mp_ioapic_routing[ioapic].gsi_base;
996
997 if (ioapic_renumber_irq)
998 gsi = ioapic_renumber_irq(ioapic, gsi);
999
4ef81297
AS
1000 /*
1001 * Avoid pin reprogramming. PRTs typically include entries
1da177e4
LT
1002 * with redundant pin->gsi mappings (but unique PCI devices);
1003 * we only program the IOAPIC on the first.
1004 */
1005 bit = ioapic_pin % 32;
1006 idx = (ioapic_pin < 32) ? 0 : (ioapic_pin / 32);
1007 if (idx > 3) {
1008 printk(KERN_ERR "Invalid reference to IOAPIC pin "
4ef81297
AS
1009 "%d-%d\n", mp_ioapic_routing[ioapic].apic_id,
1010 ioapic_pin);
1da177e4
LT
1011 return gsi;
1012 }
4ef81297 1013 if ((1 << bit) & mp_ioapic_routing[ioapic].pin_programmed[idx]) {
1da177e4
LT
1014 Dprintk(KERN_DEBUG "Pin %d-%d already programmed\n",
1015 mp_ioapic_routing[ioapic].apic_id, ioapic_pin);
2ba7deef 1016 return (gsi < IRQ_COMPRESSION_START ? gsi : gsi_to_irq[gsi]);
1da177e4
LT
1017 }
1018
4ef81297 1019 mp_ioapic_routing[ioapic].pin_programmed[idx] |= (1 << bit);
1da177e4 1020
2ba7deef
LB
1021 /*
1022 * For GSI >= 64, use IRQ compression
1023 */
1024 if ((gsi >= IRQ_COMPRESSION_START)
4ef81297 1025 && (triggering == ACPI_LEVEL_SENSITIVE)) {
c434b7a6
NP
1026 /*
1027 * For PCI devices assign IRQs in order, avoiding gaps
1028 * due to unused I/O APIC pins.
1029 */
1030 int irq = gsi;
1031 if (gsi < MAX_GSI_NUM) {
e0c1e9bf
KM
1032 /*
1033 * Retain the VIA chipset work-around (gsi > 15), but
1034 * avoid a problem where the 8254 timer (IRQ0) is setup
1035 * via an override (so it's not on pin 0 of the ioapic),
1036 * and at the same time, the pin 0 interrupt is a PCI
1037 * type. The gsi > 15 test could cause these two pins
1038 * to be shared as IRQ0, and they are not shareable.
1039 * So test for this condition, and if necessary, avoid
1040 * the pin collision.
1041 */
ede1389f 1042 gsi = pci_irq++;
e1afc3f5
NP
1043 /*
1044 * Don't assign IRQ used by ACPI SCI
1045 */
cee324b1 1046 if (gsi == acpi_gbl_FADT.sci_interrupt)
e1afc3f5 1047 gsi = pci_irq++;
c434b7a6
NP
1048 gsi_to_irq[irq] = gsi;
1049 } else {
1050 printk(KERN_ERR "GSI %u is too high\n", gsi);
1051 return gsi;
1052 }
1053 }
1054
1da177e4 1055 io_apic_set_pci_routing(ioapic, ioapic_pin, gsi,
4ef81297
AS
1056 triggering == ACPI_EDGE_SENSITIVE ? 0 : 1,
1057 polarity == ACPI_ACTIVE_HIGH ? 0 : 1);
1da177e4
LT
1058 return gsi;
1059}
1060
8466361a 1061#endif /* CONFIG_X86_IO_APIC */
888ba6c6 1062#endif /* CONFIG_ACPI */