blob: f1c896ab82752c474d2c6708d4130dc181e7faf6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/init.h>
18#include <linux/acpi.h>
19#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/bootmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#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>
Alexey Starikovskiyce3fe6b2008-03-17 22:08:17 +030030#include <asm/bios_ebda.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32#include <mach_apic.h>
Andi Kleen874c4fe2006-09-26 10:52:26 +020033#include <mach_apicdef.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <mach_mpparse.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36/* Have we found an MP table */
37int smp_found_config;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39/*
40 * Various Linux-internal data structures created from the
41 * MP-table.
42 */
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +030043#if defined (CONFIG_MCA) || defined (CONFIG_EISA)
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +040044int mp_bus_id_to_type[MAX_MP_BUSSES];
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +030045#endif
Alexey Starikovskiya6333c32008-03-20 14:54:09 +030046DECLARE_BITMAP(mp_bus_not_pci, MAX_MP_BUSSES);
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +040047int mp_bus_id_to_pci_bus[MAX_MP_BUSSES] = {[0 ... MAX_MP_BUSSES - 1] = -1 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070048static int mp_current_pci_id;
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050int pic_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Linus Torvalds1da177e2005-04-16 15:20:36 -070052/*
53 * Intel MP BIOS table parsing routines:
54 */
55
Linus Torvalds1da177e2005-04-16 15:20:36 -070056/*
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
Alexey Starikovskiy86420502008-03-17 22:08:55 +030070#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -070071/*
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
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +040077static int mpc_record;
78static struct mpc_config_translation *translation_table[MAX_MPC_ENTRY]
79 __cpuinitdata;
Alexey Starikovskiy86420502008-03-17 22:08:55 +030080#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Alexey Starikovskiyc853c672008-03-27 23:54:13 +030082static void __cpuinit MP_processor_info(struct mpc_config_processor *m)
83{
84 int apicid;
85
Glauber Costa7b1292e2008-03-03 14:12:41 -030086 if (!(m->mpc_cpuflag & CPU_ENABLED)) {
87 disabled_cpus++;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 return;
Glauber Costa7b1292e2008-03-03 14:12:41 -030089 }
Alexey Starikovskiy4655c7d2008-03-17 22:08:36 +030090#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 apicid = mpc_apic_id(m, translation_table[mpc_record]);
Alexey Starikovskiy4655c7d2008-03-17 22:08:36 +030092#else
93 Dprintk("Processor #%d %u:%u APIC version %d\n",
94 m->mpc_apicid,
95 (m->mpc_cpufeature & CPU_FAMILY_MASK) >> 8,
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +040096 (m->mpc_cpufeature & CPU_MODEL_MASK) >> 4, m->mpc_apicver);
Alexey Starikovskiy4655c7d2008-03-17 22:08:36 +030097 apicid = m->mpc_apicid;
98#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400100 if (m->mpc_featureflag & (1 << 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 Dprintk(" Floating point unit present.\n");
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400102 if (m->mpc_featureflag & (1 << 7))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 Dprintk(" Machine Exception supported.\n");
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400104 if (m->mpc_featureflag & (1 << 8))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 Dprintk(" 64 bit compare & exchange supported.\n");
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400106 if (m->mpc_featureflag & (1 << 9))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 Dprintk(" Internal APIC present.\n");
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400108 if (m->mpc_featureflag & (1 << 11))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 Dprintk(" SEP present.\n");
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400110 if (m->mpc_featureflag & (1 << 12))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 Dprintk(" MTRR present.\n");
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400112 if (m->mpc_featureflag & (1 << 13))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 Dprintk(" PGE present.\n");
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400114 if (m->mpc_featureflag & (1 << 14))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 Dprintk(" MCA present.\n");
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400116 if (m->mpc_featureflag & (1 << 15))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 Dprintk(" CMOV present.\n");
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400118 if (m->mpc_featureflag & (1 << 16))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 Dprintk(" PAT present.\n");
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400120 if (m->mpc_featureflag & (1 << 17))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 Dprintk(" PSE present.\n");
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400122 if (m->mpc_featureflag & (1 << 18))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 Dprintk(" PSN present.\n");
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400124 if (m->mpc_featureflag & (1 << 19))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 Dprintk(" Cache Line Flush Instruction present.\n");
126 /* 20 Reserved */
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400127 if (m->mpc_featureflag & (1 << 21))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 Dprintk(" Debug Trace and EMON Store present.\n");
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400129 if (m->mpc_featureflag & (1 << 22))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 Dprintk(" ACPI Thermal Throttle Registers present.\n");
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400131 if (m->mpc_featureflag & (1 << 23))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 Dprintk(" MMX present.\n");
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400133 if (m->mpc_featureflag & (1 << 24))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 Dprintk(" FXSR present.\n");
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400135 if (m->mpc_featureflag & (1 << 25))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 Dprintk(" XMM present.\n");
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400137 if (m->mpc_featureflag & (1 << 26))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 Dprintk(" Willamette New Instructions present.\n");
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400139 if (m->mpc_featureflag & (1 << 27))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 Dprintk(" Self Snoop present.\n");
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400141 if (m->mpc_featureflag & (1 << 28))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 Dprintk(" HT present.\n");
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400143 if (m->mpc_featureflag & (1 << 29))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 Dprintk(" Thermal Monitor present.\n");
145 /* 30, 31 Reserved */
146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 if (m->mpc_cpuflag & CPU_BOOTPROCESSOR) {
148 Dprintk(" Bootup CPU\n");
149 boot_cpu_physical_apicid = m->mpc_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 }
151
Alexey Starikovskiyc853c672008-03-27 23:54:13 +0300152 generic_processor_info(apicid, m->mpc_apicver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153}
154
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400155static void __init MP_bus_info(struct mpc_config_bus *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
157 char str[7];
158
159 memcpy(str, m->mpc_bustype, 6);
160 str[6] = 0;
161
Alexey Starikovskiy0ec153a2008-03-17 22:08:48 +0300162#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 mpc_oem_bus_info(m, str, translation_table[mpc_record]);
Alexey Starikovskiy0ec153a2008-03-17 22:08:48 +0300164#else
165 Dprintk("Bus #%d is %s\n", m->mpc_busid, str);
166#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Andi Kleen5e4edbb2006-09-26 10:52:35 +0200168#if MAX_MP_BUSSES < 256
Randy Dunlapc0ec31a2006-04-10 22:53:13 -0700169 if (m->mpc_busid >= MAX_MP_BUSSES) {
170 printk(KERN_WARNING "MP table busid value (%d) for bustype %s "
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400171 " is too large, max. supported is %d\n",
172 m->mpc_busid, str, MAX_MP_BUSSES - 1);
Randy Dunlapc0ec31a2006-04-10 22:53:13 -0700173 return;
174 }
Andi Kleen5e4edbb2006-09-26 10:52:35 +0200175#endif
Randy Dunlapc0ec31a2006-04-10 22:53:13 -0700176
Alexey Starikovskiya6333c32008-03-20 14:54:09 +0300177 set_bit(m->mpc_busid, mp_bus_not_pci);
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400178 if (strncmp(str, BUSTYPE_PCI, sizeof(BUSTYPE_PCI) - 1) == 0) {
Alexey Starikovskiyd285e332008-03-17 22:08:42 +0300179#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 mpc_oem_pci_bus(m, translation_table[mpc_record]);
Alexey Starikovskiyd285e332008-03-17 22:08:42 +0300181#endif
Alexey Starikovskiya6333c32008-03-20 14:54:09 +0300182 clear_bit(m->mpc_busid, mp_bus_not_pci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 mp_bus_id_to_pci_bus[m->mpc_busid] = mp_current_pci_id;
184 mp_current_pci_id++;
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300185#if defined(CONFIG_EISA) || defined (CONFIG_MCA)
186 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_PCI;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400187 } else if (strncmp(str, BUSTYPE_ISA, sizeof(BUSTYPE_ISA) - 1) == 0) {
Alexey Starikovskiy9e0a2de2008-03-20 14:54:56 +0300188 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_ISA;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400189 } else if (strncmp(str, BUSTYPE_EISA, sizeof(BUSTYPE_EISA) - 1) == 0) {
Alexey Starikovskiy9e0a2de2008-03-20 14:54:56 +0300190 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_EISA;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400191 } else if (strncmp(str, BUSTYPE_MCA, sizeof(BUSTYPE_MCA) - 1) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_MCA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 } else {
194 printk(KERN_WARNING "Unknown bustype %s - ignoring\n", str);
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300195#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 }
197}
198
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400199#ifdef CONFIG_X86_IO_APIC
200
Alexey Starikovskiy857033a2008-03-17 22:08:05 +0300201static int bad_ioapic(unsigned long address)
202{
203 if (nr_ioapics >= MAX_IO_APICS) {
204 printk(KERN_ERR "ERROR: Max # of I/O APICs (%d) exceeded "
205 "(found %d)\n", MAX_IO_APICS, nr_ioapics);
206 panic("Recompile kernel with bigger MAX_IO_APICS!\n");
207 }
208 if (!address) {
209 printk(KERN_ERR "WARNING: Bogus (zero) I/O APIC address"
210 " found in table, skipping!\n");
211 return 1;
212 }
213 return 0;
214}
215
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400216static void __init MP_ioapic_info(struct mpc_config_ioapic *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217{
218 if (!(m->mpc_flags & MPC_APIC_USABLE))
219 return;
220
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100221 printk(KERN_INFO "I/O APIC #%d Version %d at 0x%X.\n",
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400222 m->mpc_apicid, m->mpc_apicver, m->mpc_apicaddr);
Alexey Starikovskiy857033a2008-03-17 22:08:05 +0300223
224 if (bad_ioapic(m->mpc_apicaddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 return;
Alexey Starikovskiy857033a2008-03-17 22:08:05 +0300226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 mp_ioapics[nr_ioapics] = *m;
228 nr_ioapics++;
229}
230
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400231static void __init MP_intsrc_info(struct mpc_config_intsrc *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400233 mp_irqs[mp_irq_entries] = *m;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 Dprintk("Int: type %d, pol %d, trig %d, bus %d,"
235 " IRQ %02x, APIC ID %x, APIC INT %02x\n",
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400236 m->mpc_irqtype, m->mpc_irqflag & 3,
237 (m->mpc_irqflag >> 2) & 3, m->mpc_srcbus,
238 m->mpc_srcbusirq, m->mpc_dstapic, m->mpc_dstirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 if (++mp_irq_entries == MAX_IRQ_SOURCES)
240 panic("Max # of irq sources exceeded!!\n");
241}
242
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400243#endif
244
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400245static void __init MP_lintsrc_info(struct mpc_config_lintsrc *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246{
247 Dprintk("Lint: type %d, pol %d, trig %d, bus %d,"
248 " IRQ %02x, APIC ID %x, APIC LINT %02x\n",
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400249 m->mpc_irqtype, m->mpc_irqflag & 3,
250 (m->mpc_irqflag >> 2) & 3, m->mpc_srcbusid,
251 m->mpc_srcbusirq, m->mpc_destapic, m->mpc_destapiclint);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252}
253
254#ifdef CONFIG_X86_NUMAQ
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400255static void __init MP_translation_info(struct mpc_config_translation *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256{
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400257 printk(KERN_INFO
258 "Translation: record %d, type %d, quad %d, global %d, local %d\n",
259 mpc_record, m->trans_type, m->trans_quad, m->trans_global,
260 m->trans_local);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400262 if (mpc_record >= MAX_MPC_ENTRY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 printk(KERN_ERR "MAX_MPC_ENTRY exceeded!\n");
264 else
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400265 translation_table[mpc_record] = m; /* stash this for later */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 if (m->trans_quad < MAX_NUMNODES && !node_online(m->trans_quad))
267 node_set_online(m->trans_quad);
268}
269
270/*
271 * Read/parse the MPC oem tables
272 */
273
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400274static void __init smp_read_mpc_oem(struct mp_config_oemtable *oemtable,
275 unsigned short oemsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400277 int count = sizeof(*oemtable); /* the header size */
278 unsigned char *oemptr = ((unsigned char *)oemtable) + count;
279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 mpc_record = 0;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400281 printk(KERN_INFO "Found an OEM MPC table at %8p - parsing it ... \n",
282 oemtable);
283 if (memcmp(oemtable->oem_signature, MPC_OEM_SIGNATURE, 4)) {
284 printk(KERN_WARNING
285 "SMP mpc oemtable: bad signature [%c%c%c%c]!\n",
286 oemtable->oem_signature[0], oemtable->oem_signature[1],
287 oemtable->oem_signature[2], oemtable->oem_signature[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 return;
289 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400290 if (mpf_checksum((unsigned char *)oemtable, oemtable->oem_length)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 printk(KERN_WARNING "SMP oem mptable: checksum error!\n");
292 return;
293 }
294 while (count < oemtable->oem_length) {
295 switch (*oemptr) {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400296 case MP_TRANSLATION:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400298 struct mpc_config_translation *m =
299 (struct mpc_config_translation *)oemptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 MP_translation_info(m);
301 oemptr += sizeof(*m);
302 count += sizeof(*m);
303 ++mpc_record;
304 break;
305 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400306 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400308 printk(KERN_WARNING
309 "Unrecognised OEM table entry type! - %d\n",
310 (int)*oemptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 return;
312 }
313 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400314 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315}
316
317static inline void mps_oem_check(struct mp_config_table *mpc, char *oem,
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400318 char *productid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319{
320 if (strncmp(oem, "IBM NUMA", 8))
321 printk("Warning! May not be a NUMA-Q system!\n");
322 if (mpc->mpc_oemptr)
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400323 smp_read_mpc_oem((struct mp_config_oemtable *)mpc->mpc_oemptr,
324 mpc->mpc_oemsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325}
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400326#endif /* CONFIG_X86_NUMAQ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
328/*
329 * Read/parse the MPC
330 */
331
332static int __init smp_read_mpc(struct mp_config_table *mpc)
333{
334 char str[16];
335 char oem[10];
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400336 int count = sizeof(*mpc);
337 unsigned char *mpt = ((unsigned char *)mpc) + count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400339 if (memcmp(mpc->mpc_signature, MPC_SIGNATURE, 4)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 printk(KERN_ERR "SMP mptable: bad signature [0x%x]!\n",
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400341 *(u32 *) mpc->mpc_signature);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 return 0;
343 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400344 if (mpf_checksum((unsigned char *)mpc, mpc->mpc_length)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 printk(KERN_ERR "SMP mptable: checksum error!\n");
346 return 0;
347 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400348 if (mpc->mpc_spec != 0x01 && mpc->mpc_spec != 0x04) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 printk(KERN_ERR "SMP mptable: bad table version (%d)!!\n",
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400350 mpc->mpc_spec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 return 0;
352 }
353 if (!mpc->mpc_lapic) {
354 printk(KERN_ERR "SMP mptable: null local APIC address!\n");
355 return 0;
356 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400357 memcpy(oem, mpc->mpc_oem, 8);
358 oem[8] = 0;
359 printk(KERN_INFO "OEM ID: %s ", oem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400361 memcpy(str, mpc->mpc_productid, 12);
362 str[12] = 0;
363 printk("Product ID: %s ", str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365 mps_oem_check(mpc, oem, str);
366
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100367 printk("APIC at: 0x%X\n", mpc->mpc_lapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100369 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 * Save the local APIC address (it might be non-default) -- but only
371 * if we're not using ACPI.
372 */
373 if (!acpi_lapic)
374 mp_lapic_addr = mpc->mpc_lapic;
375
376 /*
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400377 * Now process the configuration blocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 */
Alexey Starikovskiy86420502008-03-17 22:08:55 +0300379#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 mpc_record = 0;
Alexey Starikovskiy86420502008-03-17 22:08:55 +0300381#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 while (count < mpc->mpc_length) {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400383 switch (*mpt) {
384 case MP_PROCESSOR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400386 struct mpc_config_processor *m =
387 (struct mpc_config_processor *)mpt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 /* ACPI may have already provided this data */
389 if (!acpi_lapic)
390 MP_processor_info(m);
391 mpt += sizeof(*m);
392 count += sizeof(*m);
393 break;
394 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400395 case MP_BUS:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400397 struct mpc_config_bus *m =
398 (struct mpc_config_bus *)mpt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 MP_bus_info(m);
400 mpt += sizeof(*m);
401 count += sizeof(*m);
402 break;
403 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400404 case MP_IOAPIC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 {
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400406#ifdef CONFIG_X86_IO_APIC
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400407 struct mpc_config_ioapic *m =
408 (struct mpc_config_ioapic *)mpt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 MP_ioapic_info(m);
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400410#endif
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400411 mpt += sizeof(struct mpc_config_ioapic);
412 count += sizeof(struct mpc_config_ioapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 break;
414 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400415 case MP_INTSRC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 {
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400417#ifdef CONFIG_X86_IO_APIC
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400418 struct mpc_config_intsrc *m =
419 (struct mpc_config_intsrc *)mpt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
421 MP_intsrc_info(m);
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400422#endif
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400423 mpt += sizeof(struct mpc_config_intsrc);
424 count += sizeof(struct mpc_config_intsrc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 break;
426 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400427 case MP_LINTSRC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400429 struct mpc_config_lintsrc *m =
430 (struct mpc_config_lintsrc *)mpt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 MP_lintsrc_info(m);
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400432 mpt += sizeof(*m);
433 count += sizeof(*m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 break;
435 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400436 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 {
438 count = mpc->mpc_length;
439 break;
440 }
441 }
Alexey Starikovskiy86420502008-03-17 22:08:55 +0300442#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 ++mpc_record;
Alexey Starikovskiy86420502008-03-17 22:08:55 +0300444#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 }
Ingo Molnar3c43f032007-05-02 19:27:04 +0200446 setup_apic_routing();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 if (!num_processors)
448 printk(KERN_ERR "SMP mptable: no processors registered!\n");
449 return num_processors;
450}
451
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400452#ifdef CONFIG_X86_IO_APIC
453
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454static int __init ELCR_trigger(unsigned int irq)
455{
456 unsigned int port;
457
458 port = 0x4d0 + (irq >> 3);
459 return (inb(port) >> (irq & 7)) & 1;
460}
461
462static void __init construct_default_ioirq_mptable(int mpc_default_type)
463{
464 struct mpc_config_intsrc intsrc;
465 int i;
466 int ELCR_fallback = 0;
467
468 intsrc.mpc_type = MP_INTSRC;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400469 intsrc.mpc_irqflag = 0; /* conforming */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 intsrc.mpc_srcbus = 0;
471 intsrc.mpc_dstapic = mp_ioapics[0].mpc_apicid;
472
473 intsrc.mpc_irqtype = mp_INT;
474
475 /*
476 * If true, we have an ISA/PCI system with no IRQ entries
477 * in the MP table. To prevent the PCI interrupts from being set up
478 * incorrectly, we try to use the ELCR. The sanity check to see if
479 * there is good ELCR data is very simple - IRQ0, 1, 2 and 13 can
480 * never be level sensitive, so we simply see if the ELCR agrees.
481 * If it does, we assume it's valid.
482 */
483 if (mpc_default_type == 5) {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400484 printk(KERN_INFO
485 "ISA/PCI bus type with no IRQ information... falling back to ELCR\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400487 if (ELCR_trigger(0) || ELCR_trigger(1) || ELCR_trigger(2)
488 || ELCR_trigger(13))
489 printk(KERN_WARNING
490 "ELCR contains invalid data... not using ELCR\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 else {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400492 printk(KERN_INFO
493 "Using ELCR to identify PCI interrupts\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 ELCR_fallback = 1;
495 }
496 }
497
498 for (i = 0; i < 16; i++) {
499 switch (mpc_default_type) {
500 case 2:
501 if (i == 0 || i == 13)
502 continue; /* IRQ0 & IRQ13 not connected */
503 /* fall through */
504 default:
505 if (i == 2)
506 continue; /* IRQ2 is never connected */
507 }
508
509 if (ELCR_fallback) {
510 /*
511 * If the ELCR indicates a level-sensitive interrupt, we
512 * copy that information over to the MP table in the
513 * irqflag field (level sensitive, active high polarity).
514 */
515 if (ELCR_trigger(i))
516 intsrc.mpc_irqflag = 13;
517 else
518 intsrc.mpc_irqflag = 0;
519 }
520
521 intsrc.mpc_srcbusirq = i;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400522 intsrc.mpc_dstirq = i ? i : 2; /* IRQ0 to INTIN2 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 MP_intsrc_info(&intsrc);
524 }
525
526 intsrc.mpc_irqtype = mp_ExtINT;
527 intsrc.mpc_srcbusirq = 0;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400528 intsrc.mpc_dstirq = 0; /* 8259A to INTIN0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 MP_intsrc_info(&intsrc);
530}
531
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400532#endif
533
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534static inline void __init construct_default_ISA_mptable(int mpc_default_type)
535{
536 struct mpc_config_processor processor;
537 struct mpc_config_bus bus;
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400538#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 struct mpc_config_ioapic ioapic;
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400540#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 struct mpc_config_lintsrc lintsrc;
542 int linttypes[2] = { mp_ExtINT, mp_NMI };
543 int i;
544
545 /*
546 * local APIC has default address
547 */
548 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
549
550 /*
551 * 2 CPUs, numbered 0 & 1.
552 */
553 processor.mpc_type = MP_PROCESSOR;
554 /* Either an integrated APIC or a discrete 82489DX. */
555 processor.mpc_apicver = mpc_default_type > 4 ? 0x10 : 0x01;
556 processor.mpc_cpuflag = CPU_ENABLED;
557 processor.mpc_cpufeature = (boot_cpu_data.x86 << 8) |
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400558 (boot_cpu_data.x86_model << 4) | boot_cpu_data.x86_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 processor.mpc_featureflag = boot_cpu_data.x86_capability[0];
560 processor.mpc_reserved[0] = 0;
561 processor.mpc_reserved[1] = 0;
562 for (i = 0; i < 2; i++) {
563 processor.mpc_apicid = i;
564 MP_processor_info(&processor);
565 }
566
567 bus.mpc_type = MP_BUS;
568 bus.mpc_busid = 0;
569 switch (mpc_default_type) {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400570 default:
571 printk("???\n");
572 printk(KERN_ERR "Unknown standard configuration %d\n",
573 mpc_default_type);
574 /* fall through */
575 case 1:
576 case 5:
577 memcpy(bus.mpc_bustype, "ISA ", 6);
578 break;
579 case 2:
580 case 6:
581 case 3:
582 memcpy(bus.mpc_bustype, "EISA ", 6);
583 break;
584 case 4:
585 case 7:
586 memcpy(bus.mpc_bustype, "MCA ", 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 }
588 MP_bus_info(&bus);
589 if (mpc_default_type > 4) {
590 bus.mpc_busid = 1;
591 memcpy(bus.mpc_bustype, "PCI ", 6);
592 MP_bus_info(&bus);
593 }
594
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400595#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 ioapic.mpc_type = MP_IOAPIC;
597 ioapic.mpc_apicid = 2;
598 ioapic.mpc_apicver = mpc_default_type > 4 ? 0x10 : 0x01;
599 ioapic.mpc_flags = MPC_APIC_USABLE;
600 ioapic.mpc_apicaddr = 0xFEC00000;
601 MP_ioapic_info(&ioapic);
602
603 /*
604 * We set up most of the low 16 IO-APIC pins according to MPS rules.
605 */
606 construct_default_ioirq_mptable(mpc_default_type);
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400607#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 lintsrc.mpc_type = MP_LINTSRC;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400609 lintsrc.mpc_irqflag = 0; /* conforming */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 lintsrc.mpc_srcbusid = 0;
611 lintsrc.mpc_srcbusirq = 0;
612 lintsrc.mpc_destapic = MP_APIC_ALL;
613 for (i = 0; i < 2; i++) {
614 lintsrc.mpc_irqtype = linttypes[i];
615 lintsrc.mpc_destapiclint = i;
616 MP_lintsrc_info(&lintsrc);
617 }
618}
619
620static struct intel_mp_floating *mpf_found;
621
622/*
623 * Scan the memory blocks for an SMP configuration block.
624 */
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400625void __init get_smp_config(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626{
627 struct intel_mp_floating *mpf = mpf_found;
628
629 /*
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400630 * ACPI supports both logical (e.g. Hyper-Threading) and physical
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 * processors, where MPS only supports physical.
632 */
633 if (acpi_lapic && acpi_ioapic) {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400634 printk(KERN_INFO
635 "Using ACPI (MADT) for SMP configuration information\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 return;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400637 } else if (acpi_lapic)
638 printk(KERN_INFO
639 "Using ACPI for processor (LAPIC) configuration information\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400641 printk(KERN_INFO "Intel MultiProcessor Specification v1.%d\n",
642 mpf->mpf_specification);
643 if (mpf->mpf_feature2 & (1 << 7)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 printk(KERN_INFO " IMCR and PIC compatibility mode.\n");
645 pic_mode = 1;
646 } else {
647 printk(KERN_INFO " Virtual Wire compatibility mode.\n");
648 pic_mode = 0;
649 }
650
651 /*
652 * Now see if we need to read further.
653 */
654 if (mpf->mpf_feature1 != 0) {
655
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400656 printk(KERN_INFO "Default MP configuration #%d\n",
657 mpf->mpf_feature1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 construct_default_ISA_mptable(mpf->mpf_feature1);
659
660 } else if (mpf->mpf_physptr) {
661
662 /*
663 * Read the physical hardware table. Anything here will
664 * override the defaults.
665 */
Daniel Yeisley7d4c8e52006-02-20 18:27:54 -0800666 if (!smp_read_mpc(phys_to_virt(mpf->mpf_physptr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 smp_found_config = 0;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400668 printk(KERN_ERR
669 "BIOS bug, MP table errors detected!...\n");
670 printk(KERN_ERR
671 "... disabling SMP support. (tell your hw vendor)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 return;
673 }
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400674
675#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 /*
677 * If there are no explicit MP IRQ entries, then we are
678 * broken. We set up most of the low 16 IO-APIC pins to
679 * ISA defaults and hope it will work.
680 */
681 if (!mp_irq_entries) {
682 struct mpc_config_bus bus;
683
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400684 printk(KERN_ERR
685 "BIOS bug, no explicit IRQ entries, using default mptable. (tell your hw vendor)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
687 bus.mpc_type = MP_BUS;
688 bus.mpc_busid = 0;
689 memcpy(bus.mpc_bustype, "ISA ", 6);
690 MP_bus_info(&bus);
691
692 construct_default_ioirq_mptable(0);
693 }
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400694#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 } else
696 BUG();
697
698 printk(KERN_INFO "Processors: %d\n", num_processors);
699 /*
700 * Only use the first configuration found.
701 */
702}
703
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400704static int __init smp_scan_config(unsigned long base, unsigned long length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705{
706 unsigned long *bp = phys_to_virt(base);
707 struct intel_mp_floating *mpf;
708
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400709 printk(KERN_INFO "Scan SMP from %p for %ld bytes.\n", bp, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 if (sizeof(*mpf) != 16)
711 printk("Error: MPF size\n");
712
713 while (length > 0) {
714 mpf = (struct intel_mp_floating *)bp;
715 if ((*bp == SMP_MAGIC_IDENT) &&
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400716 (mpf->mpf_length == 1) &&
717 !mpf_checksum((unsigned char *)bp, 16) &&
718 ((mpf->mpf_specification == 1)
719 || (mpf->mpf_specification == 4))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
721 smp_found_config = 1;
Ingo Molnare91a3b432008-01-30 13:33:08 +0100722 printk(KERN_INFO "found SMP MP-table at [%p] %08lx\n",
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400723 mpf, virt_to_phys(mpf));
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800724 reserve_bootmem(virt_to_phys(mpf), PAGE_SIZE,
725 BOOTMEM_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 if (mpf->mpf_physptr) {
727 /*
728 * We cannot access to MPC table to compute
729 * table size yet, as only few megabytes from
730 * the bottom is mapped now.
731 * PC-9800's MPC table places on the very last
732 * of physical memory; so that simply reserving
733 * PAGE_SIZE from mpg->mpf_physptr yields BUG()
734 * in reserve_bootmem.
735 */
736 unsigned long size = PAGE_SIZE;
737 unsigned long end = max_low_pfn * PAGE_SIZE;
738 if (mpf->mpf_physptr + size > end)
739 size = end - mpf->mpf_physptr;
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800740 reserve_bootmem(mpf->mpf_physptr, size,
741 BOOTMEM_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 }
743
744 mpf_found = mpf;
745 return 1;
746 }
747 bp += 4;
748 length -= 16;
749 }
750 return 0;
751}
752
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400753void __init find_smp_config(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754{
755 unsigned int address;
756
757 /*
758 * FIXME: Linux assumes you have 640K of base ram..
759 * this continues the error...
760 *
761 * 1) Scan the bottom 1K for a signature
762 * 2) Scan the top 1K of base RAM
763 * 3) Scan the 64K of bios
764 */
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400765 if (smp_scan_config(0x0, 0x400) ||
766 smp_scan_config(639 * 0x400, 0x400) ||
767 smp_scan_config(0xF0000, 0x10000))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 return;
769 /*
770 * If it is an SMP machine we should know now, unless the
771 * configuration is in an EISA/MCA bus machine with an
772 * extended bios data area.
773 *
774 * there is a real-mode segmented pointer pointing to the
775 * 4K EBDA area at 0x40E, calculate and scan it here.
776 *
777 * NOTE! There are Linux loaders that will corrupt the EBDA
778 * area, and as such this kind of SMP config may be less
779 * trustworthy, simply because the SMP table may have been
780 * stomped on during early boot. These loaders are buggy and
781 * should be fixed.
782 *
783 * MP1.4 SPEC states to only scan first 1K of 4K EBDA.
784 */
785
786 address = get_bios_ebda();
787 if (address)
788 smp_scan_config(address, 0x400);
789}
790
791/* --------------------------------------------------------------------------
792 ACPI-based MP Configuration
793 -------------------------------------------------------------------------- */
794
Len Brown888ba6c2005-08-24 12:07:20 -0400795#ifdef CONFIG_ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
Len Brown84663612005-08-24 12:09:07 -0400797#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
799#define MP_ISA_BUS 0
800#define MP_MAX_IOAPIC_PIN 127
801
Alexey Starikovskiy9e5c5f12008-04-04 23:41:26 +0400802extern struct mp_ioapic_routing mp_ioapic_routing[MAX_IO_APICS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400804static int mp_find_ioapic(int gsi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805{
Andi Kleen19f03ff2006-09-26 10:52:30 +0200806 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
808 /* Find the IOAPIC that manages this GSI. */
809 for (i = 0; i < nr_ioapics; i++) {
810 if ((gsi >= mp_ioapic_routing[i].gsi_base)
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400811 && (gsi <= mp_ioapic_routing[i].gsi_end))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 return i;
813 }
814
815 printk(KERN_ERR "ERROR: Unable to locate IOAPIC for GSI %d\n", gsi);
816
817 return -1;
818}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
Alexey Starikovskiye3e3ffa2008-03-17 22:08:11 +0300820static u8 uniq_ioapic_id(u8 id)
821{
822 if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
823 !APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
824 return io_apic_get_unique_id(nr_ioapics, id);
825 else
826 return id;
827}
828
Jack Steinera65d1d62008-03-28 14:12:08 -0500829void __init mp_register_ioapic(int id, u32 address, u32 gsi_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830{
Andi Kleen19f03ff2006-09-26 10:52:30 +0200831 int idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
Alexey Starikovskiy857033a2008-03-17 22:08:05 +0300833 if (bad_ioapic(address))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
Alexey Starikovskiye3e3ffa2008-03-17 22:08:11 +0300836 idx = nr_ioapics;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
838 mp_ioapics[idx].mpc_type = MP_IOAPIC;
839 mp_ioapics[idx].mpc_flags = MPC_APIC_USABLE;
840 mp_ioapics[idx].mpc_apicaddr = address;
841
842 set_fixmap_nocache(FIX_IO_APIC_BASE_0 + idx, address);
Alexey Starikovskiye3e3ffa2008-03-17 22:08:11 +0300843 mp_ioapics[idx].mpc_apicid = uniq_ioapic_id(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 mp_ioapics[idx].mpc_apicver = io_apic_get_version(idx);
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400845
846 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 * Build basic GSI lookup table to facilitate gsi->io_apic lookups
848 * and to prevent reprogramming of IOAPIC pins (PCI GSIs).
849 */
850 mp_ioapic_routing[idx].apic_id = mp_ioapics[idx].mpc_apicid;
851 mp_ioapic_routing[idx].gsi_base = gsi_base;
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100852 mp_ioapic_routing[idx].gsi_end = gsi_base +
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400853 io_apic_get_redir_entries(idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100855 printk("IOAPIC[%d]: apic_id %d, version %d, address 0x%x, "
856 "GSI %d-%d\n", idx, mp_ioapics[idx].mpc_apicid,
Alexey Starikovskiye3e3ffa2008-03-17 22:08:11 +0300857 mp_ioapics[idx].mpc_apicver,
858 mp_ioapics[idx].mpc_apicaddr,
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400859 mp_ioapic_routing[idx].gsi_base, mp_ioapic_routing[idx].gsi_end);
Alexey Starikovskiye3e3ffa2008-03-17 22:08:11 +0300860
861 nr_ioapics++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862}
863
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400864void __init mp_override_legacy_irq(u8 bus_irq, u8 polarity, u8 trigger, u32 gsi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865{
866 struct mpc_config_intsrc intsrc;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400867 int ioapic = -1;
868 int pin = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400870 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 * Convert 'gsi' to 'ioapic.pin'.
872 */
873 ioapic = mp_find_ioapic(gsi);
874 if (ioapic < 0)
875 return;
876 pin = gsi - mp_ioapic_routing[ioapic].gsi_base;
877
878 /*
879 * TBD: This check is for faulty timer entries, where the override
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400880 * erroneously sets the trigger to level, resulting in a HUGE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 * increase of timer interrupts!
882 */
883 if ((bus_irq == 0) && (trigger == 3))
884 trigger = 1;
885
886 intsrc.mpc_type = MP_INTSRC;
887 intsrc.mpc_irqtype = mp_INT;
888 intsrc.mpc_irqflag = (trigger << 2) | polarity;
889 intsrc.mpc_srcbus = MP_ISA_BUS;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400890 intsrc.mpc_srcbusirq = bus_irq; /* IRQ */
891 intsrc.mpc_dstapic = mp_ioapics[ioapic].mpc_apicid; /* APIC ID */
892 intsrc.mpc_dstirq = pin; /* INTIN# */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
894 Dprintk("Int: type %d, pol %d, trig %d, bus %d, irq %d, %d-%d\n",
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400895 intsrc.mpc_irqtype, intsrc.mpc_irqflag & 3,
896 (intsrc.mpc_irqflag >> 2) & 3, intsrc.mpc_srcbus,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 intsrc.mpc_srcbusirq, intsrc.mpc_dstapic, intsrc.mpc_dstirq);
898
899 mp_irqs[mp_irq_entries] = intsrc;
900 if (++mp_irq_entries == MAX_IRQ_SOURCES)
901 panic("Max # of irq sources exceeded!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902}
903
Alexey Starikovskiy2df29722008-03-27 23:53:54 +0300904int es7000_plat;
905
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400906void __init mp_config_acpi_legacy_irqs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907{
908 struct mpc_config_intsrc intsrc;
Andi Kleen19f03ff2006-09-26 10:52:30 +0200909 int i = 0;
910 int ioapic = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300912#if defined (CONFIG_MCA) || defined (CONFIG_EISA)
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400913 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 * Fabricate the legacy ISA bus (bus #31).
915 */
916 mp_bus_id_to_type[MP_ISA_BUS] = MP_BUS_ISA;
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300917#endif
Alexey Starikovskiya6333c32008-03-20 14:54:09 +0300918 set_bit(MP_ISA_BUS, mp_bus_not_pci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 Dprintk("Bus #%d is ISA\n", MP_ISA_BUS);
920
921 /*
922 * Older generations of ES7000 have no legacy identity mappings
923 */
924 if (es7000_plat == 1)
925 return;
926
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400927 /*
928 * Locate the IOAPIC that manages the ISA IRQs (0-15).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 */
930 ioapic = mp_find_ioapic(0);
931 if (ioapic < 0)
932 return;
933
934 intsrc.mpc_type = MP_INTSRC;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400935 intsrc.mpc_irqflag = 0; /* Conforming */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 intsrc.mpc_srcbus = MP_ISA_BUS;
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400937#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 intsrc.mpc_dstapic = mp_ioapics[ioapic].mpc_apicid;
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400939#endif
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400940 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 * Use the default configuration for the IRQs 0-15. Unless
Simon Arlott27b46d72007-10-20 01:13:56 +0200942 * overridden by (MADT) interrupt source override entries.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 */
944 for (i = 0; i < 16; i++) {
945 int idx;
946
947 for (idx = 0; idx < mp_irq_entries; idx++) {
948 struct mpc_config_intsrc *irq = mp_irqs + idx;
949
950 /* Do we already have a mapping for this ISA IRQ? */
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400951 if (irq->mpc_srcbus == MP_ISA_BUS
952 && irq->mpc_srcbusirq == i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 break;
954
955 /* Do we already have a mapping for this IOAPIC pin */
956 if ((irq->mpc_dstapic == intsrc.mpc_dstapic) &&
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400957 (irq->mpc_dstirq == i))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 break;
959 }
960
961 if (idx != mp_irq_entries) {
962 printk(KERN_DEBUG "ACPI: IRQ%d used by override.\n", i);
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400963 continue; /* IRQ already used */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 }
965
966 intsrc.mpc_irqtype = mp_INT;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400967 intsrc.mpc_srcbusirq = i; /* Identity mapped */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 intsrc.mpc_dstirq = i;
969
970 Dprintk("Int: type %d, pol %d, trig %d, bus %d, irq %d, "
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400971 "%d-%d\n", intsrc.mpc_irqtype, intsrc.mpc_irqflag & 3,
972 (intsrc.mpc_irqflag >> 2) & 3, intsrc.mpc_srcbus,
973 intsrc.mpc_srcbusirq, intsrc.mpc_dstapic,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 intsrc.mpc_dstirq);
975
976 mp_irqs[mp_irq_entries] = intsrc;
977 if (++mp_irq_entries == MAX_IRQ_SOURCES)
978 panic("Max # of irq sources exceeded!\n");
979 }
980}
981
Natalie Protasevichc434b7a2005-06-23 00:08:29 -0700982#define MAX_GSI_NUM 4096
Len Brown2ba7dee2008-01-30 13:31:02 +0100983#define IRQ_COMPRESSION_START 64
Natalie Protasevichc434b7a2005-06-23 00:08:29 -0700984
Andi Kleen19f03ff2006-09-26 10:52:30 +0200985int mp_register_gsi(u32 gsi, int triggering, int polarity)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986{
Andi Kleen19f03ff2006-09-26 10:52:30 +0200987 int ioapic = -1;
988 int ioapic_pin = 0;
989 int idx, bit = 0;
Len Brown2ba7dee2008-01-30 13:31:02 +0100990 static int pci_irq = IRQ_COMPRESSION_START;
Natalie Protasevichc434b7a2005-06-23 00:08:29 -0700991 /*
Joe Perchesab4a5742008-01-30 13:31:42 +0100992 * Mapping between Global System Interrupts, which
Natalie Protasevichc434b7a2005-06-23 00:08:29 -0700993 * represent all possible interrupts, and IRQs
994 * assigned to actual devices.
995 */
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400996 static int gsi_to_irq[MAX_GSI_NUM];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 /* Don't set up the ACPI SCI because it's already set up */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300999 if (acpi_gbl_FADT.sci_interrupt == gsi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 return gsi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
1002 ioapic = mp_find_ioapic(gsi);
1003 if (ioapic < 0) {
1004 printk(KERN_WARNING "No IOAPIC for GSI %u\n", gsi);
1005 return gsi;
1006 }
1007
1008 ioapic_pin = gsi - mp_ioapic_routing[ioapic].gsi_base;
1009
1010 if (ioapic_renumber_irq)
1011 gsi = ioapic_renumber_irq(ioapic, gsi);
1012
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +04001013 /*
1014 * Avoid pin reprogramming. PRTs typically include entries
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 * with redundant pin->gsi mappings (but unique PCI devices);
1016 * we only program the IOAPIC on the first.
1017 */
1018 bit = ioapic_pin % 32;
1019 idx = (ioapic_pin < 32) ? 0 : (ioapic_pin / 32);
1020 if (idx > 3) {
1021 printk(KERN_ERR "Invalid reference to IOAPIC pin "
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +04001022 "%d-%d\n", mp_ioapic_routing[ioapic].apic_id,
1023 ioapic_pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 return gsi;
1025 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +04001026 if ((1 << bit) & mp_ioapic_routing[ioapic].pin_programmed[idx]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 Dprintk(KERN_DEBUG "Pin %d-%d already programmed\n",
1028 mp_ioapic_routing[ioapic].apic_id, ioapic_pin);
Len Brown2ba7dee2008-01-30 13:31:02 +01001029 return (gsi < IRQ_COMPRESSION_START ? gsi : gsi_to_irq[gsi]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 }
1031
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +04001032 mp_ioapic_routing[ioapic].pin_programmed[idx] |= (1 << bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
Len Brown2ba7dee2008-01-30 13:31:02 +01001034 /*
1035 * For GSI >= 64, use IRQ compression
1036 */
1037 if ((gsi >= IRQ_COMPRESSION_START)
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +04001038 && (triggering == ACPI_LEVEL_SENSITIVE)) {
Natalie Protasevichc434b7a2005-06-23 00:08:29 -07001039 /*
1040 * For PCI devices assign IRQs in order, avoiding gaps
1041 * due to unused I/O APIC pins.
1042 */
1043 int irq = gsi;
1044 if (gsi < MAX_GSI_NUM) {
Kimball Murraye0c1e9b2006-05-08 15:17:16 +02001045 /*
1046 * Retain the VIA chipset work-around (gsi > 15), but
1047 * avoid a problem where the 8254 timer (IRQ0) is setup
1048 * via an override (so it's not on pin 0 of the ioapic),
1049 * and at the same time, the pin 0 interrupt is a PCI
1050 * type. The gsi > 15 test could cause these two pins
1051 * to be shared as IRQ0, and they are not shareable.
1052 * So test for this condition, and if necessary, avoid
1053 * the pin collision.
1054 */
Adrian Bunkede13892008-03-17 22:29:32 +02001055 gsi = pci_irq++;
Natalie.Protasevich@unisys.come1afc3f2005-07-29 14:03:32 -07001056 /*
1057 * Don't assign IRQ used by ACPI SCI
1058 */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001059 if (gsi == acpi_gbl_FADT.sci_interrupt)
Natalie.Protasevich@unisys.come1afc3f2005-07-29 14:03:32 -07001060 gsi = pci_irq++;
Natalie Protasevichc434b7a2005-06-23 00:08:29 -07001061 gsi_to_irq[irq] = gsi;
1062 } else {
1063 printk(KERN_ERR "GSI %u is too high\n", gsi);
1064 return gsi;
1065 }
1066 }
1067
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 io_apic_set_pci_routing(ioapic, ioapic_pin, gsi,
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +04001069 triggering == ACPI_EDGE_SENSITIVE ? 0 : 1,
1070 polarity == ACPI_ACTIVE_HIGH ? 0 : 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 return gsi;
1072}
1073
Len Brown84663612005-08-24 12:09:07 -04001074#endif /* CONFIG_X86_IO_APIC */
Len Brown888ba6c2005-08-24 12:07:20 -04001075#endif /* CONFIG_ACPI */