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