blob: e92c29e5fd4f9d9b856d64dfe0d7dcb543c0dd99 [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;
Alexey Starikovskiy746f2242008-04-04 23:42:15 +040085 char *bootup_cpu = "";
Alexey Starikovskiyc853c672008-03-27 23:54:13 +030086
Glauber Costa7b1292e2008-03-03 14:12:41 -030087 if (!(m->mpc_cpuflag & CPU_ENABLED)) {
88 disabled_cpus++;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 return;
Glauber Costa7b1292e2008-03-03 14:12:41 -030090 }
Alexey Starikovskiy4655c7d2008-03-17 22:08:36 +030091#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 apicid = mpc_apic_id(m, translation_table[mpc_record]);
Alexey Starikovskiy4655c7d2008-03-17 22:08:36 +030093#else
Alexey Starikovskiy4655c7d2008-03-17 22:08:36 +030094 apicid = m->mpc_apicid;
95#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 if (m->mpc_cpuflag & CPU_BOOTPROCESSOR) {
Alexey Starikovskiy746f2242008-04-04 23:42:15 +040097 bootup_cpu = " (Bootup-CPU)";
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 boot_cpu_physical_apicid = m->mpc_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 }
100
Alexey Starikovskiy746f2242008-04-04 23:42:15 +0400101 printk(KERN_INFO "Processor #%d%s\n", m->mpc_apicid, bootup_cpu);
Alexey Starikovskiyc853c672008-03-27 23:54:13 +0300102 generic_processor_info(apicid, m->mpc_apicver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103}
104
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400105static void __init MP_bus_info(struct mpc_config_bus *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106{
107 char str[7];
108
109 memcpy(str, m->mpc_bustype, 6);
110 str[6] = 0;
111
Alexey Starikovskiy0ec153a2008-03-17 22:08:48 +0300112#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 mpc_oem_bus_info(m, str, translation_table[mpc_record]);
Alexey Starikovskiy0ec153a2008-03-17 22:08:48 +0300114#else
115 Dprintk("Bus #%d is %s\n", m->mpc_busid, str);
116#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Andi Kleen5e4edbb2006-09-26 10:52:35 +0200118#if MAX_MP_BUSSES < 256
Randy Dunlapc0ec31a2006-04-10 22:53:13 -0700119 if (m->mpc_busid >= MAX_MP_BUSSES) {
120 printk(KERN_WARNING "MP table busid value (%d) for bustype %s "
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400121 " is too large, max. supported is %d\n",
122 m->mpc_busid, str, MAX_MP_BUSSES - 1);
Randy Dunlapc0ec31a2006-04-10 22:53:13 -0700123 return;
124 }
Andi Kleen5e4edbb2006-09-26 10:52:35 +0200125#endif
Randy Dunlapc0ec31a2006-04-10 22:53:13 -0700126
Alexey Starikovskiyf8924e72008-04-04 23:42:21 +0400127 if (strncmp(str, BUSTYPE_ISA, sizeof(BUSTYPE_ISA) - 1) == 0) {
128 set_bit(m->mpc_busid, mp_bus_not_pci);
129#if defined(CONFIG_EISA) || defined (CONFIG_MCA)
130 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_ISA;
131#endif
132 } else if (strncmp(str, BUSTYPE_PCI, sizeof(BUSTYPE_PCI) - 1) == 0) {
Alexey Starikovskiyd285e332008-03-17 22:08:42 +0300133#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 mpc_oem_pci_bus(m, translation_table[mpc_record]);
Alexey Starikovskiyd285e332008-03-17 22:08:42 +0300135#endif
Alexey Starikovskiya6333c32008-03-20 14:54:09 +0300136 clear_bit(m->mpc_busid, mp_bus_not_pci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 mp_bus_id_to_pci_bus[m->mpc_busid] = mp_current_pci_id;
138 mp_current_pci_id++;
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300139#if defined(CONFIG_EISA) || defined (CONFIG_MCA)
140 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_PCI;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400141 } else if (strncmp(str, BUSTYPE_EISA, sizeof(BUSTYPE_EISA) - 1) == 0) {
Alexey Starikovskiy9e0a2de2008-03-20 14:54:56 +0300142 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_EISA;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400143 } else if (strncmp(str, BUSTYPE_MCA, sizeof(BUSTYPE_MCA) - 1) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_MCA;
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300145#endif
Alexey Starikovskiyf8924e72008-04-04 23:42:21 +0400146 } else
147 printk(KERN_WARNING "Unknown bustype %s - ignoring\n", str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148}
149
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400150#ifdef CONFIG_X86_IO_APIC
151
Alexey Starikovskiy857033a2008-03-17 22:08:05 +0300152static int bad_ioapic(unsigned long address)
153{
154 if (nr_ioapics >= MAX_IO_APICS) {
155 printk(KERN_ERR "ERROR: Max # of I/O APICs (%d) exceeded "
156 "(found %d)\n", MAX_IO_APICS, nr_ioapics);
157 panic("Recompile kernel with bigger MAX_IO_APICS!\n");
158 }
159 if (!address) {
160 printk(KERN_ERR "WARNING: Bogus (zero) I/O APIC address"
161 " found in table, skipping!\n");
162 return 1;
163 }
164 return 0;
165}
166
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400167static void __init MP_ioapic_info(struct mpc_config_ioapic *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168{
169 if (!(m->mpc_flags & MPC_APIC_USABLE))
170 return;
171
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100172 printk(KERN_INFO "I/O APIC #%d Version %d at 0x%X.\n",
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400173 m->mpc_apicid, m->mpc_apicver, m->mpc_apicaddr);
Alexey Starikovskiy857033a2008-03-17 22:08:05 +0300174
175 if (bad_ioapic(m->mpc_apicaddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 return;
Alexey Starikovskiy857033a2008-03-17 22:08:05 +0300177
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 mp_ioapics[nr_ioapics] = *m;
179 nr_ioapics++;
180}
181
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400182static void __init MP_intsrc_info(struct mpc_config_intsrc *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400184 mp_irqs[mp_irq_entries] = *m;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 Dprintk("Int: type %d, pol %d, trig %d, bus %d,"
186 " IRQ %02x, APIC ID %x, APIC INT %02x\n",
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400187 m->mpc_irqtype, m->mpc_irqflag & 3,
188 (m->mpc_irqflag >> 2) & 3, m->mpc_srcbus,
189 m->mpc_srcbusirq, m->mpc_dstapic, m->mpc_dstirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 if (++mp_irq_entries == MAX_IRQ_SOURCES)
191 panic("Max # of irq sources exceeded!!\n");
192}
193
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400194#endif
195
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400196static void __init MP_lintsrc_info(struct mpc_config_lintsrc *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197{
198 Dprintk("Lint: type %d, pol %d, trig %d, bus %d,"
199 " IRQ %02x, APIC ID %x, APIC LINT %02x\n",
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400200 m->mpc_irqtype, m->mpc_irqflag & 3,
201 (m->mpc_irqflag >> 2) & 3, m->mpc_srcbusid,
202 m->mpc_srcbusirq, m->mpc_destapic, m->mpc_destapiclint);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203}
204
205#ifdef CONFIG_X86_NUMAQ
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400206static void __init MP_translation_info(struct mpc_config_translation *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207{
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400208 printk(KERN_INFO
209 "Translation: record %d, type %d, quad %d, global %d, local %d\n",
210 mpc_record, m->trans_type, m->trans_quad, m->trans_global,
211 m->trans_local);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400213 if (mpc_record >= MAX_MPC_ENTRY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 printk(KERN_ERR "MAX_MPC_ENTRY exceeded!\n");
215 else
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400216 translation_table[mpc_record] = m; /* stash this for later */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 if (m->trans_quad < MAX_NUMNODES && !node_online(m->trans_quad))
218 node_set_online(m->trans_quad);
219}
220
221/*
222 * Read/parse the MPC oem tables
223 */
224
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400225static void __init smp_read_mpc_oem(struct mp_config_oemtable *oemtable,
226 unsigned short oemsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227{
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400228 int count = sizeof(*oemtable); /* the header size */
229 unsigned char *oemptr = ((unsigned char *)oemtable) + count;
230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 mpc_record = 0;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400232 printk(KERN_INFO "Found an OEM MPC table at %8p - parsing it ... \n",
233 oemtable);
234 if (memcmp(oemtable->oem_signature, MPC_OEM_SIGNATURE, 4)) {
235 printk(KERN_WARNING
236 "SMP mpc oemtable: bad signature [%c%c%c%c]!\n",
237 oemtable->oem_signature[0], oemtable->oem_signature[1],
238 oemtable->oem_signature[2], oemtable->oem_signature[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 return;
240 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400241 if (mpf_checksum((unsigned char *)oemtable, oemtable->oem_length)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 printk(KERN_WARNING "SMP oem mptable: checksum error!\n");
243 return;
244 }
245 while (count < oemtable->oem_length) {
246 switch (*oemptr) {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400247 case MP_TRANSLATION:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400249 struct mpc_config_translation *m =
250 (struct mpc_config_translation *)oemptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 MP_translation_info(m);
252 oemptr += sizeof(*m);
253 count += sizeof(*m);
254 ++mpc_record;
255 break;
256 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400257 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400259 printk(KERN_WARNING
260 "Unrecognised OEM table entry type! - %d\n",
261 (int)*oemptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 return;
263 }
264 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400265 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266}
267
268static inline void mps_oem_check(struct mp_config_table *mpc, char *oem,
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400269 char *productid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270{
271 if (strncmp(oem, "IBM NUMA", 8))
272 printk("Warning! May not be a NUMA-Q system!\n");
273 if (mpc->mpc_oemptr)
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400274 smp_read_mpc_oem((struct mp_config_oemtable *)mpc->mpc_oemptr,
275 mpc->mpc_oemsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276}
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400277#endif /* CONFIG_X86_NUMAQ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
279/*
280 * Read/parse the MPC
281 */
282
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400283static int __init smp_read_mpc(struct mp_config_table *mpc, unsigned early)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284{
285 char str[16];
286 char oem[10];
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400287 int count = sizeof(*mpc);
288 unsigned char *mpt = ((unsigned char *)mpc) + count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400290 if (memcmp(mpc->mpc_signature, MPC_SIGNATURE, 4)) {
Alexey Starikovskiye950bea2008-04-04 23:42:27 +0400291 printk(KERN_ERR "MPTABLE: bad signature [%c%c%c%c]!\n",
292 mpc->mpc_signature[0], mpc->mpc_signature[1],
293 mpc->mpc_signature[2], mpc->mpc_signature[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 return 0;
295 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400296 if (mpf_checksum((unsigned char *)mpc, mpc->mpc_length)) {
Alexey Starikovskiye950bea2008-04-04 23:42:27 +0400297 printk(KERN_ERR "MPTABLE: checksum error!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 return 0;
299 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400300 if (mpc->mpc_spec != 0x01 && mpc->mpc_spec != 0x04) {
Alexey Starikovskiye950bea2008-04-04 23:42:27 +0400301 printk(KERN_ERR "MPTABLE: bad table version (%d)!!\n",
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400302 mpc->mpc_spec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 return 0;
304 }
305 if (!mpc->mpc_lapic) {
Alexey Starikovskiye950bea2008-04-04 23:42:27 +0400306 printk(KERN_ERR "MPTABLE: null local APIC address!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 return 0;
308 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400309 memcpy(oem, mpc->mpc_oem, 8);
310 oem[8] = 0;
Alexey Starikovskiye950bea2008-04-04 23:42:27 +0400311 printk(KERN_INFO "MPTABLE: OEM ID: %s ", oem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400313 memcpy(str, mpc->mpc_productid, 12);
314 str[12] = 0;
315 printk("Product ID: %s ", str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Alexey Starikovskiye950bea2008-04-04 23:42:27 +0400317#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 mps_oem_check(mpc, oem, str);
Alexey Starikovskiye950bea2008-04-04 23:42:27 +0400319#endif
320 printk(KERN_INFO "MPTABLE: Product ID: %s ", str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Alexey Starikovskiye950bea2008-04-04 23:42:27 +0400322 printk(KERN_INFO "MPTABLE: APIC at: 0x%X\n", mpc->mpc_lapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Alexey Starikovskiye950bea2008-04-04 23:42:27 +0400324 /* save the local APIC address, it might be non-default */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 if (!acpi_lapic)
326 mp_lapic_addr = mpc->mpc_lapic;
327
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400328 if (early)
329 return 1;
330
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 /*
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400332 * Now process the configuration blocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 */
Alexey Starikovskiy86420502008-03-17 22:08:55 +0300334#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 mpc_record = 0;
Alexey Starikovskiy86420502008-03-17 22:08:55 +0300336#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 while (count < mpc->mpc_length) {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400338 switch (*mpt) {
339 case MP_PROCESSOR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400341 struct mpc_config_processor *m =
342 (struct mpc_config_processor *)mpt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 /* 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 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400350 case MP_BUS:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400352 struct mpc_config_bus *m =
353 (struct mpc_config_bus *)mpt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 MP_bus_info(m);
355 mpt += sizeof(*m);
356 count += sizeof(*m);
357 break;
358 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400359 case MP_IOAPIC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 {
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400361#ifdef CONFIG_X86_IO_APIC
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400362 struct mpc_config_ioapic *m =
363 (struct mpc_config_ioapic *)mpt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 MP_ioapic_info(m);
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400365#endif
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400366 mpt += sizeof(struct mpc_config_ioapic);
367 count += sizeof(struct mpc_config_ioapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 break;
369 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400370 case MP_INTSRC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 {
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400372#ifdef CONFIG_X86_IO_APIC
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400373 struct mpc_config_intsrc *m =
374 (struct mpc_config_intsrc *)mpt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
376 MP_intsrc_info(m);
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400377#endif
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400378 mpt += sizeof(struct mpc_config_intsrc);
379 count += sizeof(struct mpc_config_intsrc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 break;
381 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400382 case MP_LINTSRC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400384 struct mpc_config_lintsrc *m =
385 (struct mpc_config_lintsrc *)mpt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 MP_lintsrc_info(m);
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400387 mpt += sizeof(*m);
388 count += sizeof(*m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 break;
390 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400391 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 {
393 count = mpc->mpc_length;
394 break;
395 }
396 }
Alexey Starikovskiy86420502008-03-17 22:08:55 +0300397#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 ++mpc_record;
Alexey Starikovskiy86420502008-03-17 22:08:55 +0300399#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 }
Ingo Molnar3c43f032007-05-02 19:27:04 +0200401 setup_apic_routing();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 if (!num_processors)
Alexey Starikovskiye950bea2008-04-04 23:42:27 +0400403 printk(KERN_ERR "MPTABLE: no processors registered!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 return num_processors;
405}
406
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400407#ifdef CONFIG_X86_IO_APIC
408
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409static int __init ELCR_trigger(unsigned int irq)
410{
411 unsigned int port;
412
413 port = 0x4d0 + (irq >> 3);
414 return (inb(port) >> (irq & 7)) & 1;
415}
416
417static void __init construct_default_ioirq_mptable(int mpc_default_type)
418{
419 struct mpc_config_intsrc intsrc;
420 int i;
421 int ELCR_fallback = 0;
422
423 intsrc.mpc_type = MP_INTSRC;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400424 intsrc.mpc_irqflag = 0; /* conforming */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 intsrc.mpc_srcbus = 0;
426 intsrc.mpc_dstapic = mp_ioapics[0].mpc_apicid;
427
428 intsrc.mpc_irqtype = mp_INT;
429
430 /*
431 * If true, we have an ISA/PCI system with no IRQ entries
432 * in the MP table. To prevent the PCI interrupts from being set up
433 * incorrectly, we try to use the ELCR. The sanity check to see if
434 * there is good ELCR data is very simple - IRQ0, 1, 2 and 13 can
435 * never be level sensitive, so we simply see if the ELCR agrees.
436 * If it does, we assume it's valid.
437 */
438 if (mpc_default_type == 5) {
Alexey Starikovskiy62441bf2008-04-04 23:42:34 +0400439 printk(KERN_INFO "ISA/PCI bus type with no IRQ information... "
440 "falling back to ELCR\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
Alexey Starikovskiy62441bf2008-04-04 23:42:34 +0400442 if (ELCR_trigger(0) || ELCR_trigger(1) || ELCR_trigger(2) ||
443 ELCR_trigger(13))
444 printk(KERN_ERR "ELCR contains invalid data... "
445 "not using ELCR\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 else {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400447 printk(KERN_INFO
448 "Using ELCR to identify PCI interrupts\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 ELCR_fallback = 1;
450 }
451 }
452
453 for (i = 0; i < 16; i++) {
454 switch (mpc_default_type) {
455 case 2:
456 if (i == 0 || i == 13)
457 continue; /* IRQ0 & IRQ13 not connected */
458 /* fall through */
459 default:
460 if (i == 2)
461 continue; /* IRQ2 is never connected */
462 }
463
464 if (ELCR_fallback) {
465 /*
466 * If the ELCR indicates a level-sensitive interrupt, we
467 * copy that information over to the MP table in the
468 * irqflag field (level sensitive, active high polarity).
469 */
470 if (ELCR_trigger(i))
471 intsrc.mpc_irqflag = 13;
472 else
473 intsrc.mpc_irqflag = 0;
474 }
475
476 intsrc.mpc_srcbusirq = i;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400477 intsrc.mpc_dstirq = i ? i : 2; /* IRQ0 to INTIN2 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 MP_intsrc_info(&intsrc);
479 }
480
481 intsrc.mpc_irqtype = mp_ExtINT;
482 intsrc.mpc_srcbusirq = 0;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400483 intsrc.mpc_dstirq = 0; /* 8259A to INTIN0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 MP_intsrc_info(&intsrc);
485}
486
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400487#endif
488
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489static inline void __init construct_default_ISA_mptable(int mpc_default_type)
490{
491 struct mpc_config_processor processor;
492 struct mpc_config_bus bus;
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400493#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 struct mpc_config_ioapic ioapic;
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400495#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 struct mpc_config_lintsrc lintsrc;
497 int linttypes[2] = { mp_ExtINT, mp_NMI };
498 int i;
499
500 /*
501 * local APIC has default address
502 */
503 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
504
505 /*
506 * 2 CPUs, numbered 0 & 1.
507 */
508 processor.mpc_type = MP_PROCESSOR;
509 /* Either an integrated APIC or a discrete 82489DX. */
510 processor.mpc_apicver = mpc_default_type > 4 ? 0x10 : 0x01;
511 processor.mpc_cpuflag = CPU_ENABLED;
512 processor.mpc_cpufeature = (boot_cpu_data.x86 << 8) |
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400513 (boot_cpu_data.x86_model << 4) | boot_cpu_data.x86_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 processor.mpc_featureflag = boot_cpu_data.x86_capability[0];
515 processor.mpc_reserved[0] = 0;
516 processor.mpc_reserved[1] = 0;
517 for (i = 0; i < 2; i++) {
518 processor.mpc_apicid = i;
519 MP_processor_info(&processor);
520 }
521
522 bus.mpc_type = MP_BUS;
523 bus.mpc_busid = 0;
524 switch (mpc_default_type) {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400525 default:
Alexey Starikovskiy62441bf2008-04-04 23:42:34 +0400526 printk(KERN_ERR "???\nUnknown standard configuration %d\n",
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400527 mpc_default_type);
528 /* fall through */
529 case 1:
530 case 5:
531 memcpy(bus.mpc_bustype, "ISA ", 6);
532 break;
533 case 2:
534 case 6:
535 case 3:
536 memcpy(bus.mpc_bustype, "EISA ", 6);
537 break;
538 case 4:
539 case 7:
540 memcpy(bus.mpc_bustype, "MCA ", 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 }
542 MP_bus_info(&bus);
543 if (mpc_default_type > 4) {
544 bus.mpc_busid = 1;
545 memcpy(bus.mpc_bustype, "PCI ", 6);
546 MP_bus_info(&bus);
547 }
548
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400549#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 ioapic.mpc_type = MP_IOAPIC;
551 ioapic.mpc_apicid = 2;
552 ioapic.mpc_apicver = mpc_default_type > 4 ? 0x10 : 0x01;
553 ioapic.mpc_flags = MPC_APIC_USABLE;
554 ioapic.mpc_apicaddr = 0xFEC00000;
555 MP_ioapic_info(&ioapic);
556
557 /*
558 * We set up most of the low 16 IO-APIC pins according to MPS rules.
559 */
560 construct_default_ioirq_mptable(mpc_default_type);
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400561#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 lintsrc.mpc_type = MP_LINTSRC;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400563 lintsrc.mpc_irqflag = 0; /* conforming */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 lintsrc.mpc_srcbusid = 0;
565 lintsrc.mpc_srcbusirq = 0;
566 lintsrc.mpc_destapic = MP_APIC_ALL;
567 for (i = 0; i < 2; i++) {
568 lintsrc.mpc_irqtype = linttypes[i];
569 lintsrc.mpc_destapiclint = i;
570 MP_lintsrc_info(&lintsrc);
571 }
572}
573
574static struct intel_mp_floating *mpf_found;
575
576/*
577 * Scan the memory blocks for an SMP configuration block.
578 */
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400579static void __init __get_smp_config(unsigned early)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580{
581 struct intel_mp_floating *mpf = mpf_found;
582
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400583 if (acpi_lapic && early)
584 return;
585
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 /*
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400587 * ACPI supports both logical (e.g. Hyper-Threading) and physical
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 * processors, where MPS only supports physical.
589 */
590 if (acpi_lapic && acpi_ioapic) {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400591 printk(KERN_INFO
592 "Using ACPI (MADT) for SMP configuration information\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 return;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400594 } else if (acpi_lapic)
595 printk(KERN_INFO
596 "Using ACPI for processor (LAPIC) configuration information\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400598 printk(KERN_INFO "Intel MultiProcessor Specification v1.%d\n",
599 mpf->mpf_specification);
600 if (mpf->mpf_feature2 & (1 << 7)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 printk(KERN_INFO " IMCR and PIC compatibility mode.\n");
602 pic_mode = 1;
603 } else {
604 printk(KERN_INFO " Virtual Wire compatibility mode.\n");
605 pic_mode = 0;
606 }
607
608 /*
609 * Now see if we need to read further.
610 */
611 if (mpf->mpf_feature1 != 0) {
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400612 if (early) {
613 /*
614 * local APIC has default address
615 */
616 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
617 return;
618 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400620 printk(KERN_INFO "Default MP configuration #%d\n",
621 mpf->mpf_feature1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 construct_default_ISA_mptable(mpf->mpf_feature1);
623
624 } else if (mpf->mpf_physptr) {
625
626 /*
627 * Read the physical hardware table. Anything here will
628 * override the defaults.
629 */
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400630 if (!smp_read_mpc(phys_to_virt(mpf->mpf_physptr), early)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 smp_found_config = 0;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400632 printk(KERN_ERR
633 "BIOS bug, MP table errors detected!...\n");
634 printk(KERN_ERR
635 "... disabling SMP support. (tell your hw vendor)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 return;
637 }
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400638
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400639 if (early)
640 return;
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400641#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 /*
643 * If there are no explicit MP IRQ entries, then we are
644 * broken. We set up most of the low 16 IO-APIC pins to
645 * ISA defaults and hope it will work.
646 */
647 if (!mp_irq_entries) {
648 struct mpc_config_bus bus;
649
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400650 printk(KERN_ERR
651 "BIOS bug, no explicit IRQ entries, using default mptable. (tell your hw vendor)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
653 bus.mpc_type = MP_BUS;
654 bus.mpc_busid = 0;
655 memcpy(bus.mpc_bustype, "ISA ", 6);
656 MP_bus_info(&bus);
657
658 construct_default_ioirq_mptable(0);
659 }
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400660#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 } else
662 BUG();
663
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400664 if (!early)
665 printk(KERN_INFO "Processors: %d\n", num_processors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 /*
667 * Only use the first configuration found.
668 */
669}
670
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400671void __init early_get_smp_config(void)
672{
673 __get_smp_config(1);
674}
675
676void __init get_smp_config(void)
677{
678 __get_smp_config(0);
679}
680
681static int __init smp_scan_config(unsigned long base, unsigned long length,
682 unsigned reserve)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683{
684 unsigned long *bp = phys_to_virt(base);
685 struct intel_mp_floating *mpf;
686
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400687 printk(KERN_INFO "Scan SMP from %p for %ld bytes.\n", bp, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 if (sizeof(*mpf) != 16)
689 printk("Error: MPF size\n");
690
691 while (length > 0) {
692 mpf = (struct intel_mp_floating *)bp;
693 if ((*bp == SMP_MAGIC_IDENT) &&
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400694 (mpf->mpf_length == 1) &&
695 !mpf_checksum((unsigned char *)bp, 16) &&
696 ((mpf->mpf_specification == 1)
697 || (mpf->mpf_specification == 4))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
699 smp_found_config = 1;
Ingo Molnare91a3b42008-01-30 13:33:08 +0100700 printk(KERN_INFO "found SMP MP-table at [%p] %08lx\n",
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400701 mpf, virt_to_phys(mpf));
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800702 reserve_bootmem(virt_to_phys(mpf), PAGE_SIZE,
703 BOOTMEM_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 if (mpf->mpf_physptr) {
705 /*
706 * We cannot access to MPC table to compute
707 * table size yet, as only few megabytes from
708 * the bottom is mapped now.
709 * PC-9800's MPC table places on the very last
710 * of physical memory; so that simply reserving
711 * PAGE_SIZE from mpg->mpf_physptr yields BUG()
712 * in reserve_bootmem.
713 */
714 unsigned long size = PAGE_SIZE;
715 unsigned long end = max_low_pfn * PAGE_SIZE;
716 if (mpf->mpf_physptr + size > end)
717 size = end - mpf->mpf_physptr;
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800718 reserve_bootmem(mpf->mpf_physptr, size,
719 BOOTMEM_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 }
721
722 mpf_found = mpf;
723 return 1;
724 }
725 bp += 4;
726 length -= 16;
727 }
728 return 0;
729}
730
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400731static void __init __find_smp_config(unsigned reserve)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732{
733 unsigned int address;
734
735 /*
736 * FIXME: Linux assumes you have 640K of base ram..
737 * this continues the error...
738 *
739 * 1) Scan the bottom 1K for a signature
740 * 2) Scan the top 1K of base RAM
741 * 3) Scan the 64K of bios
742 */
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400743 if (smp_scan_config(0x0, 0x400, reserve) ||
744 smp_scan_config(639 * 0x400, 0x400, reserve) ||
745 smp_scan_config(0xF0000, 0x10000, reserve))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 return;
747 /*
748 * If it is an SMP machine we should know now, unless the
749 * configuration is in an EISA/MCA bus machine with an
750 * extended bios data area.
751 *
752 * there is a real-mode segmented pointer pointing to the
753 * 4K EBDA area at 0x40E, calculate and scan it here.
754 *
755 * NOTE! There are Linux loaders that will corrupt the EBDA
756 * area, and as such this kind of SMP config may be less
757 * trustworthy, simply because the SMP table may have been
758 * stomped on during early boot. These loaders are buggy and
759 * should be fixed.
760 *
761 * MP1.4 SPEC states to only scan first 1K of 4K EBDA.
762 */
763
764 address = get_bios_ebda();
765 if (address)
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400766 smp_scan_config(address, 0x400, reserve);
767}
768
769void __init early_find_smp_config(void)
770{
771 __find_smp_config(0);
772}
773
774void __init find_smp_config(void)
775{
776 __find_smp_config(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777}
778
779/* --------------------------------------------------------------------------
780 ACPI-based MP Configuration
781 -------------------------------------------------------------------------- */
782
Len Brown888ba6c2005-08-24 12:07:20 -0400783#ifdef CONFIG_ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
Len Brown84663612005-08-24 12:09:07 -0400785#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
787#define MP_ISA_BUS 0
788#define MP_MAX_IOAPIC_PIN 127
789
Alexey Starikovskiy9e5c5f12008-04-04 23:41:26 +0400790extern struct mp_ioapic_routing mp_ioapic_routing[MAX_IO_APICS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400792static int mp_find_ioapic(int gsi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793{
Andi Kleen19f03ff2006-09-26 10:52:30 +0200794 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
796 /* Find the IOAPIC that manages this GSI. */
797 for (i = 0; i < nr_ioapics; i++) {
798 if ((gsi >= mp_ioapic_routing[i].gsi_base)
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400799 && (gsi <= mp_ioapic_routing[i].gsi_end))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 return i;
801 }
802
803 printk(KERN_ERR "ERROR: Unable to locate IOAPIC for GSI %d\n", gsi);
804
805 return -1;
806}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
Alexey Starikovskiye3e3ffa2008-03-17 22:08:11 +0300808static u8 uniq_ioapic_id(u8 id)
809{
810 if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
811 !APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
812 return io_apic_get_unique_id(nr_ioapics, id);
813 else
814 return id;
815}
816
Jack Steinera65d1d62008-03-28 14:12:08 -0500817void __init mp_register_ioapic(int id, u32 address, u32 gsi_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818{
Andi Kleen19f03ff2006-09-26 10:52:30 +0200819 int idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
Alexey Starikovskiy857033a2008-03-17 22:08:05 +0300821 if (bad_ioapic(address))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
Alexey Starikovskiye3e3ffa2008-03-17 22:08:11 +0300824 idx = nr_ioapics;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
826 mp_ioapics[idx].mpc_type = MP_IOAPIC;
827 mp_ioapics[idx].mpc_flags = MPC_APIC_USABLE;
828 mp_ioapics[idx].mpc_apicaddr = address;
829
830 set_fixmap_nocache(FIX_IO_APIC_BASE_0 + idx, address);
Alexey Starikovskiye3e3ffa2008-03-17 22:08:11 +0300831 mp_ioapics[idx].mpc_apicid = uniq_ioapic_id(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 mp_ioapics[idx].mpc_apicver = io_apic_get_version(idx);
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400833
834 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 * Build basic GSI lookup table to facilitate gsi->io_apic lookups
836 * and to prevent reprogramming of IOAPIC pins (PCI GSIs).
837 */
838 mp_ioapic_routing[idx].apic_id = mp_ioapics[idx].mpc_apicid;
839 mp_ioapic_routing[idx].gsi_base = gsi_base;
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100840 mp_ioapic_routing[idx].gsi_end = gsi_base +
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400841 io_apic_get_redir_entries(idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100843 printk("IOAPIC[%d]: apic_id %d, version %d, address 0x%x, "
844 "GSI %d-%d\n", idx, mp_ioapics[idx].mpc_apicid,
Alexey Starikovskiye3e3ffa2008-03-17 22:08:11 +0300845 mp_ioapics[idx].mpc_apicver,
846 mp_ioapics[idx].mpc_apicaddr,
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400847 mp_ioapic_routing[idx].gsi_base, mp_ioapic_routing[idx].gsi_end);
Alexey Starikovskiye3e3ffa2008-03-17 22:08:11 +0300848
849 nr_ioapics++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850}
851
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400852void __init mp_override_legacy_irq(u8 bus_irq, u8 polarity, u8 trigger, u32 gsi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853{
854 struct mpc_config_intsrc intsrc;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400855 int ioapic = -1;
856 int pin = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400858 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 * Convert 'gsi' to 'ioapic.pin'.
860 */
861 ioapic = mp_find_ioapic(gsi);
862 if (ioapic < 0)
863 return;
864 pin = gsi - mp_ioapic_routing[ioapic].gsi_base;
865
866 /*
867 * TBD: This check is for faulty timer entries, where the override
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400868 * erroneously sets the trigger to level, resulting in a HUGE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 * increase of timer interrupts!
870 */
871 if ((bus_irq == 0) && (trigger == 3))
872 trigger = 1;
873
874 intsrc.mpc_type = MP_INTSRC;
875 intsrc.mpc_irqtype = mp_INT;
876 intsrc.mpc_irqflag = (trigger << 2) | polarity;
877 intsrc.mpc_srcbus = MP_ISA_BUS;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400878 intsrc.mpc_srcbusirq = bus_irq; /* IRQ */
879 intsrc.mpc_dstapic = mp_ioapics[ioapic].mpc_apicid; /* APIC ID */
880 intsrc.mpc_dstirq = pin; /* INTIN# */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
882 Dprintk("Int: type %d, pol %d, trig %d, bus %d, irq %d, %d-%d\n",
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400883 intsrc.mpc_irqtype, intsrc.mpc_irqflag & 3,
884 (intsrc.mpc_irqflag >> 2) & 3, intsrc.mpc_srcbus,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 intsrc.mpc_srcbusirq, intsrc.mpc_dstapic, intsrc.mpc_dstirq);
886
887 mp_irqs[mp_irq_entries] = intsrc;
888 if (++mp_irq_entries == MAX_IRQ_SOURCES)
889 panic("Max # of irq sources exceeded!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890}
891
Alexey Starikovskiy2df29722008-03-27 23:53:54 +0300892int es7000_plat;
893
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400894void __init mp_config_acpi_legacy_irqs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895{
896 struct mpc_config_intsrc intsrc;
Andi Kleen19f03ff2006-09-26 10:52:30 +0200897 int i = 0;
898 int ioapic = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300900#if defined (CONFIG_MCA) || defined (CONFIG_EISA)
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400901 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 * Fabricate the legacy ISA bus (bus #31).
903 */
904 mp_bus_id_to_type[MP_ISA_BUS] = MP_BUS_ISA;
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300905#endif
Alexey Starikovskiya6333c32008-03-20 14:54:09 +0300906 set_bit(MP_ISA_BUS, mp_bus_not_pci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 Dprintk("Bus #%d is ISA\n", MP_ISA_BUS);
908
909 /*
910 * Older generations of ES7000 have no legacy identity mappings
911 */
912 if (es7000_plat == 1)
913 return;
914
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400915 /*
916 * Locate the IOAPIC that manages the ISA IRQs (0-15).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 */
918 ioapic = mp_find_ioapic(0);
919 if (ioapic < 0)
920 return;
921
922 intsrc.mpc_type = MP_INTSRC;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400923 intsrc.mpc_irqflag = 0; /* Conforming */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 intsrc.mpc_srcbus = MP_ISA_BUS;
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400925#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 intsrc.mpc_dstapic = mp_ioapics[ioapic].mpc_apicid;
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400927#endif
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400928 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 * Use the default configuration for the IRQs 0-15. Unless
Simon Arlott27b46d72007-10-20 01:13:56 +0200930 * overridden by (MADT) interrupt source override entries.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 */
932 for (i = 0; i < 16; i++) {
933 int idx;
934
935 for (idx = 0; idx < mp_irq_entries; idx++) {
936 struct mpc_config_intsrc *irq = mp_irqs + idx;
937
938 /* Do we already have a mapping for this ISA IRQ? */
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400939 if (irq->mpc_srcbus == MP_ISA_BUS
940 && irq->mpc_srcbusirq == i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 break;
942
943 /* Do we already have a mapping for this IOAPIC pin */
944 if ((irq->mpc_dstapic == intsrc.mpc_dstapic) &&
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400945 (irq->mpc_dstirq == i))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 break;
947 }
948
949 if (idx != mp_irq_entries) {
950 printk(KERN_DEBUG "ACPI: IRQ%d used by override.\n", i);
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400951 continue; /* IRQ already used */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 }
953
954 intsrc.mpc_irqtype = mp_INT;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400955 intsrc.mpc_srcbusirq = i; /* Identity mapped */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 intsrc.mpc_dstirq = i;
957
958 Dprintk("Int: type %d, pol %d, trig %d, bus %d, irq %d, "
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400959 "%d-%d\n", intsrc.mpc_irqtype, intsrc.mpc_irqflag & 3,
960 (intsrc.mpc_irqflag >> 2) & 3, intsrc.mpc_srcbus,
961 intsrc.mpc_srcbusirq, intsrc.mpc_dstapic,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 intsrc.mpc_dstirq);
963
964 mp_irqs[mp_irq_entries] = intsrc;
965 if (++mp_irq_entries == MAX_IRQ_SOURCES)
966 panic("Max # of irq sources exceeded!\n");
967 }
968}
969
Natalie Protasevichc434b7a2005-06-23 00:08:29 -0700970#define MAX_GSI_NUM 4096
Len Brown2ba7dee2008-01-30 13:31:02 +0100971#define IRQ_COMPRESSION_START 64
Natalie Protasevichc434b7a2005-06-23 00:08:29 -0700972
Andi Kleen19f03ff2006-09-26 10:52:30 +0200973int mp_register_gsi(u32 gsi, int triggering, int polarity)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974{
Andi Kleen19f03ff2006-09-26 10:52:30 +0200975 int ioapic = -1;
976 int ioapic_pin = 0;
977 int idx, bit = 0;
Len Brown2ba7dee2008-01-30 13:31:02 +0100978 static int pci_irq = IRQ_COMPRESSION_START;
Natalie Protasevichc434b7a2005-06-23 00:08:29 -0700979 /*
Joe Perchesab4a5742008-01-30 13:31:42 +0100980 * Mapping between Global System Interrupts, which
Natalie Protasevichc434b7a2005-06-23 00:08:29 -0700981 * represent all possible interrupts, and IRQs
982 * assigned to actual devices.
983 */
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400984 static int gsi_to_irq[MAX_GSI_NUM];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 /* Don't set up the ACPI SCI because it's already set up */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300987 if (acpi_gbl_FADT.sci_interrupt == gsi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 return gsi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
990 ioapic = mp_find_ioapic(gsi);
991 if (ioapic < 0) {
992 printk(KERN_WARNING "No IOAPIC for GSI %u\n", gsi);
993 return gsi;
994 }
995
996 ioapic_pin = gsi - mp_ioapic_routing[ioapic].gsi_base;
997
998 if (ioapic_renumber_irq)
999 gsi = ioapic_renumber_irq(ioapic, gsi);
1000
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +04001001 /*
1002 * Avoid pin reprogramming. PRTs typically include entries
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 * with redundant pin->gsi mappings (but unique PCI devices);
1004 * we only program the IOAPIC on the first.
1005 */
1006 bit = ioapic_pin % 32;
1007 idx = (ioapic_pin < 32) ? 0 : (ioapic_pin / 32);
1008 if (idx > 3) {
1009 printk(KERN_ERR "Invalid reference to IOAPIC pin "
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +04001010 "%d-%d\n", mp_ioapic_routing[ioapic].apic_id,
1011 ioapic_pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 return gsi;
1013 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +04001014 if ((1 << bit) & mp_ioapic_routing[ioapic].pin_programmed[idx]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 Dprintk(KERN_DEBUG "Pin %d-%d already programmed\n",
1016 mp_ioapic_routing[ioapic].apic_id, ioapic_pin);
Len Brown2ba7dee2008-01-30 13:31:02 +01001017 return (gsi < IRQ_COMPRESSION_START ? gsi : gsi_to_irq[gsi]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 }
1019
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +04001020 mp_ioapic_routing[ioapic].pin_programmed[idx] |= (1 << bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
Len Brown2ba7dee2008-01-30 13:31:02 +01001022 /*
1023 * For GSI >= 64, use IRQ compression
1024 */
1025 if ((gsi >= IRQ_COMPRESSION_START)
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +04001026 && (triggering == ACPI_LEVEL_SENSITIVE)) {
Natalie Protasevichc434b7a2005-06-23 00:08:29 -07001027 /*
1028 * For PCI devices assign IRQs in order, avoiding gaps
1029 * due to unused I/O APIC pins.
1030 */
1031 int irq = gsi;
1032 if (gsi < MAX_GSI_NUM) {
Kimball Murraye0c1e9b2006-05-08 15:17:16 +02001033 /*
1034 * Retain the VIA chipset work-around (gsi > 15), but
1035 * avoid a problem where the 8254 timer (IRQ0) is setup
1036 * via an override (so it's not on pin 0 of the ioapic),
1037 * and at the same time, the pin 0 interrupt is a PCI
1038 * type. The gsi > 15 test could cause these two pins
1039 * to be shared as IRQ0, and they are not shareable.
1040 * So test for this condition, and if necessary, avoid
1041 * the pin collision.
1042 */
Adrian Bunkede13892008-03-17 22:29:32 +02001043 gsi = pci_irq++;
Natalie.Protasevich@unisys.come1afc3f2005-07-29 14:03:32 -07001044 /*
1045 * Don't assign IRQ used by ACPI SCI
1046 */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001047 if (gsi == acpi_gbl_FADT.sci_interrupt)
Natalie.Protasevich@unisys.come1afc3f2005-07-29 14:03:32 -07001048 gsi = pci_irq++;
Natalie Protasevichc434b7a2005-06-23 00:08:29 -07001049 gsi_to_irq[irq] = gsi;
1050 } else {
1051 printk(KERN_ERR "GSI %u is too high\n", gsi);
1052 return gsi;
1053 }
1054 }
1055
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 io_apic_set_pci_routing(ioapic, ioapic_pin, gsi,
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +04001057 triggering == ACPI_EDGE_SENSITIVE ? 0 : 1,
1058 polarity == ACPI_ACTIVE_HIGH ? 0 : 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 return gsi;
1060}
1061
Len Brown84663612005-08-24 12:09:07 -04001062#endif /* CONFIG_X86_IO_APIC */
Len Brown888ba6c2005-08-24 12:07:20 -04001063#endif /* CONFIG_ACPI */