blob: 9a9819b2c5f59357207e734a04c5432207424982 [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 Starikovskiya6333c32008-03-20 14:54:09 +0300127 set_bit(m->mpc_busid, mp_bus_not_pci);
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400128 if (strncmp(str, BUSTYPE_PCI, sizeof(BUSTYPE_PCI) - 1) == 0) {
Alexey Starikovskiyd285e332008-03-17 22:08:42 +0300129#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 mpc_oem_pci_bus(m, translation_table[mpc_record]);
Alexey Starikovskiyd285e332008-03-17 22:08:42 +0300131#endif
Alexey Starikovskiya6333c32008-03-20 14:54:09 +0300132 clear_bit(m->mpc_busid, mp_bus_not_pci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 mp_bus_id_to_pci_bus[m->mpc_busid] = mp_current_pci_id;
134 mp_current_pci_id++;
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300135#if defined(CONFIG_EISA) || defined (CONFIG_MCA)
136 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_PCI;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400137 } else if (strncmp(str, BUSTYPE_ISA, sizeof(BUSTYPE_ISA) - 1) == 0) {
Alexey Starikovskiy9e0a2de2008-03-20 14:54:56 +0300138 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_ISA;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400139 } else if (strncmp(str, BUSTYPE_EISA, sizeof(BUSTYPE_EISA) - 1) == 0) {
Alexey Starikovskiy9e0a2de2008-03-20 14:54:56 +0300140 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_EISA;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400141 } else if (strncmp(str, BUSTYPE_MCA, sizeof(BUSTYPE_MCA) - 1) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_MCA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 } else {
144 printk(KERN_WARNING "Unknown bustype %s - ignoring\n", str);
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300145#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 }
147}
148
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400149#ifdef CONFIG_X86_IO_APIC
150
Alexey Starikovskiy857033a2008-03-17 22:08:05 +0300151static int bad_ioapic(unsigned long address)
152{
153 if (nr_ioapics >= MAX_IO_APICS) {
154 printk(KERN_ERR "ERROR: Max # of I/O APICs (%d) exceeded "
155 "(found %d)\n", MAX_IO_APICS, nr_ioapics);
156 panic("Recompile kernel with bigger MAX_IO_APICS!\n");
157 }
158 if (!address) {
159 printk(KERN_ERR "WARNING: Bogus (zero) I/O APIC address"
160 " found in table, skipping!\n");
161 return 1;
162 }
163 return 0;
164}
165
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400166static void __init MP_ioapic_info(struct mpc_config_ioapic *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167{
168 if (!(m->mpc_flags & MPC_APIC_USABLE))
169 return;
170
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100171 printk(KERN_INFO "I/O APIC #%d Version %d at 0x%X.\n",
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400172 m->mpc_apicid, m->mpc_apicver, m->mpc_apicaddr);
Alexey Starikovskiy857033a2008-03-17 22:08:05 +0300173
174 if (bad_ioapic(m->mpc_apicaddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 return;
Alexey Starikovskiy857033a2008-03-17 22:08:05 +0300176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 mp_ioapics[nr_ioapics] = *m;
178 nr_ioapics++;
179}
180
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400181static void __init MP_intsrc_info(struct mpc_config_intsrc *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182{
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400183 mp_irqs[mp_irq_entries] = *m;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 Dprintk("Int: type %d, pol %d, trig %d, bus %d,"
185 " IRQ %02x, APIC ID %x, APIC INT %02x\n",
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400186 m->mpc_irqtype, m->mpc_irqflag & 3,
187 (m->mpc_irqflag >> 2) & 3, m->mpc_srcbus,
188 m->mpc_srcbusirq, m->mpc_dstapic, m->mpc_dstirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 if (++mp_irq_entries == MAX_IRQ_SOURCES)
190 panic("Max # of irq sources exceeded!!\n");
191}
192
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400193#endif
194
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400195static void __init MP_lintsrc_info(struct mpc_config_lintsrc *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
197 Dprintk("Lint: type %d, pol %d, trig %d, bus %d,"
198 " IRQ %02x, APIC ID %x, APIC LINT %02x\n",
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400199 m->mpc_irqtype, m->mpc_irqflag & 3,
200 (m->mpc_irqflag >> 2) & 3, m->mpc_srcbusid,
201 m->mpc_srcbusirq, m->mpc_destapic, m->mpc_destapiclint);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202}
203
204#ifdef CONFIG_X86_NUMAQ
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400205static void __init MP_translation_info(struct mpc_config_translation *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400207 printk(KERN_INFO
208 "Translation: record %d, type %d, quad %d, global %d, local %d\n",
209 mpc_record, m->trans_type, m->trans_quad, m->trans_global,
210 m->trans_local);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400212 if (mpc_record >= MAX_MPC_ENTRY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 printk(KERN_ERR "MAX_MPC_ENTRY exceeded!\n");
214 else
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400215 translation_table[mpc_record] = m; /* stash this for later */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 if (m->trans_quad < MAX_NUMNODES && !node_online(m->trans_quad))
217 node_set_online(m->trans_quad);
218}
219
220/*
221 * Read/parse the MPC oem tables
222 */
223
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400224static void __init smp_read_mpc_oem(struct mp_config_oemtable *oemtable,
225 unsigned short oemsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400227 int count = sizeof(*oemtable); /* the header size */
228 unsigned char *oemptr = ((unsigned char *)oemtable) + count;
229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 mpc_record = 0;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400231 printk(KERN_INFO "Found an OEM MPC table at %8p - parsing it ... \n",
232 oemtable);
233 if (memcmp(oemtable->oem_signature, MPC_OEM_SIGNATURE, 4)) {
234 printk(KERN_WARNING
235 "SMP mpc oemtable: bad signature [%c%c%c%c]!\n",
236 oemtable->oem_signature[0], oemtable->oem_signature[1],
237 oemtable->oem_signature[2], oemtable->oem_signature[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 return;
239 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400240 if (mpf_checksum((unsigned char *)oemtable, oemtable->oem_length)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 printk(KERN_WARNING "SMP oem mptable: checksum error!\n");
242 return;
243 }
244 while (count < oemtable->oem_length) {
245 switch (*oemptr) {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400246 case MP_TRANSLATION:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400248 struct mpc_config_translation *m =
249 (struct mpc_config_translation *)oemptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 MP_translation_info(m);
251 oemptr += sizeof(*m);
252 count += sizeof(*m);
253 ++mpc_record;
254 break;
255 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400256 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400258 printk(KERN_WARNING
259 "Unrecognised OEM table entry type! - %d\n",
260 (int)*oemptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 return;
262 }
263 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400264 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265}
266
267static inline void mps_oem_check(struct mp_config_table *mpc, char *oem,
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400268 char *productid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269{
270 if (strncmp(oem, "IBM NUMA", 8))
271 printk("Warning! May not be a NUMA-Q system!\n");
272 if (mpc->mpc_oemptr)
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400273 smp_read_mpc_oem((struct mp_config_oemtable *)mpc->mpc_oemptr,
274 mpc->mpc_oemsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275}
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400276#endif /* CONFIG_X86_NUMAQ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
278/*
279 * Read/parse the MPC
280 */
281
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400282static int __init smp_read_mpc(struct mp_config_table *mpc, unsigned early)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283{
284 char str[16];
285 char oem[10];
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400286 int count = sizeof(*mpc);
287 unsigned char *mpt = ((unsigned char *)mpc) + count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400289 if (memcmp(mpc->mpc_signature, MPC_SIGNATURE, 4)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 printk(KERN_ERR "SMP mptable: bad signature [0x%x]!\n",
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400291 *(u32 *) mpc->mpc_signature);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 return 0;
293 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400294 if (mpf_checksum((unsigned char *)mpc, mpc->mpc_length)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 printk(KERN_ERR "SMP mptable: checksum error!\n");
296 return 0;
297 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400298 if (mpc->mpc_spec != 0x01 && mpc->mpc_spec != 0x04) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 printk(KERN_ERR "SMP mptable: bad table version (%d)!!\n",
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400300 mpc->mpc_spec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 return 0;
302 }
303 if (!mpc->mpc_lapic) {
304 printk(KERN_ERR "SMP mptable: null local APIC address!\n");
305 return 0;
306 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400307 memcpy(oem, mpc->mpc_oem, 8);
308 oem[8] = 0;
309 printk(KERN_INFO "OEM ID: %s ", oem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400311 memcpy(str, mpc->mpc_productid, 12);
312 str[12] = 0;
313 printk("Product ID: %s ", str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
315 mps_oem_check(mpc, oem, str);
316
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100317 printk("APIC at: 0x%X\n", mpc->mpc_lapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100319 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 * Save the local APIC address (it might be non-default) -- but only
321 * if we're not using ACPI.
322 */
323 if (!acpi_lapic)
324 mp_lapic_addr = mpc->mpc_lapic;
325
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400326 if (early)
327 return 1;
328
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 /*
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400330 * Now process the configuration blocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 */
Alexey Starikovskiy86420502008-03-17 22:08:55 +0300332#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 mpc_record = 0;
Alexey Starikovskiy86420502008-03-17 22:08:55 +0300334#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 while (count < mpc->mpc_length) {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400336 switch (*mpt) {
337 case MP_PROCESSOR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400339 struct mpc_config_processor *m =
340 (struct mpc_config_processor *)mpt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 /* ACPI may have already provided this data */
342 if (!acpi_lapic)
343 MP_processor_info(m);
344 mpt += sizeof(*m);
345 count += sizeof(*m);
346 break;
347 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400348 case MP_BUS:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400350 struct mpc_config_bus *m =
351 (struct mpc_config_bus *)mpt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 MP_bus_info(m);
353 mpt += sizeof(*m);
354 count += sizeof(*m);
355 break;
356 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400357 case MP_IOAPIC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 {
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400359#ifdef CONFIG_X86_IO_APIC
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400360 struct mpc_config_ioapic *m =
361 (struct mpc_config_ioapic *)mpt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 MP_ioapic_info(m);
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400363#endif
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400364 mpt += sizeof(struct mpc_config_ioapic);
365 count += sizeof(struct mpc_config_ioapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 break;
367 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400368 case MP_INTSRC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 {
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400370#ifdef CONFIG_X86_IO_APIC
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400371 struct mpc_config_intsrc *m =
372 (struct mpc_config_intsrc *)mpt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
374 MP_intsrc_info(m);
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400375#endif
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400376 mpt += sizeof(struct mpc_config_intsrc);
377 count += sizeof(struct mpc_config_intsrc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 break;
379 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400380 case MP_LINTSRC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400382 struct mpc_config_lintsrc *m =
383 (struct mpc_config_lintsrc *)mpt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 MP_lintsrc_info(m);
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400385 mpt += sizeof(*m);
386 count += sizeof(*m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 break;
388 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400389 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 {
391 count = mpc->mpc_length;
392 break;
393 }
394 }
Alexey Starikovskiy86420502008-03-17 22:08:55 +0300395#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 ++mpc_record;
Alexey Starikovskiy86420502008-03-17 22:08:55 +0300397#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 }
Ingo Molnar3c43f032007-05-02 19:27:04 +0200399 setup_apic_routing();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 if (!num_processors)
401 printk(KERN_ERR "SMP mptable: no processors registered!\n");
402 return num_processors;
403}
404
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400405#ifdef CONFIG_X86_IO_APIC
406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407static int __init ELCR_trigger(unsigned int irq)
408{
409 unsigned int port;
410
411 port = 0x4d0 + (irq >> 3);
412 return (inb(port) >> (irq & 7)) & 1;
413}
414
415static void __init construct_default_ioirq_mptable(int mpc_default_type)
416{
417 struct mpc_config_intsrc intsrc;
418 int i;
419 int ELCR_fallback = 0;
420
421 intsrc.mpc_type = MP_INTSRC;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400422 intsrc.mpc_irqflag = 0; /* conforming */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 intsrc.mpc_srcbus = 0;
424 intsrc.mpc_dstapic = mp_ioapics[0].mpc_apicid;
425
426 intsrc.mpc_irqtype = mp_INT;
427
428 /*
429 * If true, we have an ISA/PCI system with no IRQ entries
430 * in the MP table. To prevent the PCI interrupts from being set up
431 * incorrectly, we try to use the ELCR. The sanity check to see if
432 * there is good ELCR data is very simple - IRQ0, 1, 2 and 13 can
433 * never be level sensitive, so we simply see if the ELCR agrees.
434 * If it does, we assume it's valid.
435 */
436 if (mpc_default_type == 5) {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400437 printk(KERN_INFO
438 "ISA/PCI bus type with no IRQ information... falling back to ELCR\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400440 if (ELCR_trigger(0) || ELCR_trigger(1) || ELCR_trigger(2)
441 || ELCR_trigger(13))
442 printk(KERN_WARNING
443 "ELCR contains invalid data... not using ELCR\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 else {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400445 printk(KERN_INFO
446 "Using ELCR to identify PCI interrupts\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 ELCR_fallback = 1;
448 }
449 }
450
451 for (i = 0; i < 16; i++) {
452 switch (mpc_default_type) {
453 case 2:
454 if (i == 0 || i == 13)
455 continue; /* IRQ0 & IRQ13 not connected */
456 /* fall through */
457 default:
458 if (i == 2)
459 continue; /* IRQ2 is never connected */
460 }
461
462 if (ELCR_fallback) {
463 /*
464 * If the ELCR indicates a level-sensitive interrupt, we
465 * copy that information over to the MP table in the
466 * irqflag field (level sensitive, active high polarity).
467 */
468 if (ELCR_trigger(i))
469 intsrc.mpc_irqflag = 13;
470 else
471 intsrc.mpc_irqflag = 0;
472 }
473
474 intsrc.mpc_srcbusirq = i;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400475 intsrc.mpc_dstirq = i ? i : 2; /* IRQ0 to INTIN2 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 MP_intsrc_info(&intsrc);
477 }
478
479 intsrc.mpc_irqtype = mp_ExtINT;
480 intsrc.mpc_srcbusirq = 0;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400481 intsrc.mpc_dstirq = 0; /* 8259A to INTIN0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 MP_intsrc_info(&intsrc);
483}
484
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400485#endif
486
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487static inline void __init construct_default_ISA_mptable(int mpc_default_type)
488{
489 struct mpc_config_processor processor;
490 struct mpc_config_bus bus;
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400491#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 struct mpc_config_ioapic ioapic;
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400493#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 struct mpc_config_lintsrc lintsrc;
495 int linttypes[2] = { mp_ExtINT, mp_NMI };
496 int i;
497
498 /*
499 * local APIC has default address
500 */
501 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
502
503 /*
504 * 2 CPUs, numbered 0 & 1.
505 */
506 processor.mpc_type = MP_PROCESSOR;
507 /* Either an integrated APIC or a discrete 82489DX. */
508 processor.mpc_apicver = mpc_default_type > 4 ? 0x10 : 0x01;
509 processor.mpc_cpuflag = CPU_ENABLED;
510 processor.mpc_cpufeature = (boot_cpu_data.x86 << 8) |
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400511 (boot_cpu_data.x86_model << 4) | boot_cpu_data.x86_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 processor.mpc_featureflag = boot_cpu_data.x86_capability[0];
513 processor.mpc_reserved[0] = 0;
514 processor.mpc_reserved[1] = 0;
515 for (i = 0; i < 2; i++) {
516 processor.mpc_apicid = i;
517 MP_processor_info(&processor);
518 }
519
520 bus.mpc_type = MP_BUS;
521 bus.mpc_busid = 0;
522 switch (mpc_default_type) {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400523 default:
524 printk("???\n");
525 printk(KERN_ERR "Unknown standard configuration %d\n",
526 mpc_default_type);
527 /* fall through */
528 case 1:
529 case 5:
530 memcpy(bus.mpc_bustype, "ISA ", 6);
531 break;
532 case 2:
533 case 6:
534 case 3:
535 memcpy(bus.mpc_bustype, "EISA ", 6);
536 break;
537 case 4:
538 case 7:
539 memcpy(bus.mpc_bustype, "MCA ", 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 }
541 MP_bus_info(&bus);
542 if (mpc_default_type > 4) {
543 bus.mpc_busid = 1;
544 memcpy(bus.mpc_bustype, "PCI ", 6);
545 MP_bus_info(&bus);
546 }
547
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400548#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 ioapic.mpc_type = MP_IOAPIC;
550 ioapic.mpc_apicid = 2;
551 ioapic.mpc_apicver = mpc_default_type > 4 ? 0x10 : 0x01;
552 ioapic.mpc_flags = MPC_APIC_USABLE;
553 ioapic.mpc_apicaddr = 0xFEC00000;
554 MP_ioapic_info(&ioapic);
555
556 /*
557 * We set up most of the low 16 IO-APIC pins according to MPS rules.
558 */
559 construct_default_ioirq_mptable(mpc_default_type);
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400560#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 lintsrc.mpc_type = MP_LINTSRC;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400562 lintsrc.mpc_irqflag = 0; /* conforming */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 lintsrc.mpc_srcbusid = 0;
564 lintsrc.mpc_srcbusirq = 0;
565 lintsrc.mpc_destapic = MP_APIC_ALL;
566 for (i = 0; i < 2; i++) {
567 lintsrc.mpc_irqtype = linttypes[i];
568 lintsrc.mpc_destapiclint = i;
569 MP_lintsrc_info(&lintsrc);
570 }
571}
572
573static struct intel_mp_floating *mpf_found;
574
575/*
576 * Scan the memory blocks for an SMP configuration block.
577 */
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400578static void __init __get_smp_config(unsigned early)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579{
580 struct intel_mp_floating *mpf = mpf_found;
581
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400582 if (acpi_lapic && early)
583 return;
584
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 /*
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400586 * ACPI supports both logical (e.g. Hyper-Threading) and physical
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 * processors, where MPS only supports physical.
588 */
589 if (acpi_lapic && acpi_ioapic) {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400590 printk(KERN_INFO
591 "Using ACPI (MADT) for SMP configuration information\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 return;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400593 } else if (acpi_lapic)
594 printk(KERN_INFO
595 "Using ACPI for processor (LAPIC) configuration information\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400597 printk(KERN_INFO "Intel MultiProcessor Specification v1.%d\n",
598 mpf->mpf_specification);
599 if (mpf->mpf_feature2 & (1 << 7)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 printk(KERN_INFO " IMCR and PIC compatibility mode.\n");
601 pic_mode = 1;
602 } else {
603 printk(KERN_INFO " Virtual Wire compatibility mode.\n");
604 pic_mode = 0;
605 }
606
607 /*
608 * Now see if we need to read further.
609 */
610 if (mpf->mpf_feature1 != 0) {
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400611 if (early) {
612 /*
613 * local APIC has default address
614 */
615 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
616 return;
617 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400619 printk(KERN_INFO "Default MP configuration #%d\n",
620 mpf->mpf_feature1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 construct_default_ISA_mptable(mpf->mpf_feature1);
622
623 } else if (mpf->mpf_physptr) {
624
625 /*
626 * Read the physical hardware table. Anything here will
627 * override the defaults.
628 */
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400629 if (!smp_read_mpc(phys_to_virt(mpf->mpf_physptr), early)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 smp_found_config = 0;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400631 printk(KERN_ERR
632 "BIOS bug, MP table errors detected!...\n");
633 printk(KERN_ERR
634 "... disabling SMP support. (tell your hw vendor)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 return;
636 }
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400637
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400638 if (early)
639 return;
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400640#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 /*
642 * If there are no explicit MP IRQ entries, then we are
643 * broken. We set up most of the low 16 IO-APIC pins to
644 * ISA defaults and hope it will work.
645 */
646 if (!mp_irq_entries) {
647 struct mpc_config_bus bus;
648
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400649 printk(KERN_ERR
650 "BIOS bug, no explicit IRQ entries, using default mptable. (tell your hw vendor)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
652 bus.mpc_type = MP_BUS;
653 bus.mpc_busid = 0;
654 memcpy(bus.mpc_bustype, "ISA ", 6);
655 MP_bus_info(&bus);
656
657 construct_default_ioirq_mptable(0);
658 }
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400659#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 } else
661 BUG();
662
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400663 if (!early)
664 printk(KERN_INFO "Processors: %d\n", num_processors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 /*
666 * Only use the first configuration found.
667 */
668}
669
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400670void __init early_get_smp_config(void)
671{
672 __get_smp_config(1);
673}
674
675void __init get_smp_config(void)
676{
677 __get_smp_config(0);
678}
679
680static int __init smp_scan_config(unsigned long base, unsigned long length,
681 unsigned reserve)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682{
683 unsigned long *bp = phys_to_virt(base);
684 struct intel_mp_floating *mpf;
685
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400686 printk(KERN_INFO "Scan SMP from %p for %ld bytes.\n", bp, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 if (sizeof(*mpf) != 16)
688 printk("Error: MPF size\n");
689
690 while (length > 0) {
691 mpf = (struct intel_mp_floating *)bp;
692 if ((*bp == SMP_MAGIC_IDENT) &&
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400693 (mpf->mpf_length == 1) &&
694 !mpf_checksum((unsigned char *)bp, 16) &&
695 ((mpf->mpf_specification == 1)
696 || (mpf->mpf_specification == 4))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
698 smp_found_config = 1;
Ingo Molnare91a3b42008-01-30 13:33:08 +0100699 printk(KERN_INFO "found SMP MP-table at [%p] %08lx\n",
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400700 mpf, virt_to_phys(mpf));
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800701 reserve_bootmem(virt_to_phys(mpf), PAGE_SIZE,
702 BOOTMEM_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 if (mpf->mpf_physptr) {
704 /*
705 * We cannot access to MPC table to compute
706 * table size yet, as only few megabytes from
707 * the bottom is mapped now.
708 * PC-9800's MPC table places on the very last
709 * of physical memory; so that simply reserving
710 * PAGE_SIZE from mpg->mpf_physptr yields BUG()
711 * in reserve_bootmem.
712 */
713 unsigned long size = PAGE_SIZE;
714 unsigned long end = max_low_pfn * PAGE_SIZE;
715 if (mpf->mpf_physptr + size > end)
716 size = end - mpf->mpf_physptr;
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800717 reserve_bootmem(mpf->mpf_physptr, size,
718 BOOTMEM_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 }
720
721 mpf_found = mpf;
722 return 1;
723 }
724 bp += 4;
725 length -= 16;
726 }
727 return 0;
728}
729
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400730static void __init __find_smp_config(unsigned reserve)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731{
732 unsigned int address;
733
734 /*
735 * FIXME: Linux assumes you have 640K of base ram..
736 * this continues the error...
737 *
738 * 1) Scan the bottom 1K for a signature
739 * 2) Scan the top 1K of base RAM
740 * 3) Scan the 64K of bios
741 */
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400742 if (smp_scan_config(0x0, 0x400, reserve) ||
743 smp_scan_config(639 * 0x400, 0x400, reserve) ||
744 smp_scan_config(0xF0000, 0x10000, reserve))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 return;
746 /*
747 * If it is an SMP machine we should know now, unless the
748 * configuration is in an EISA/MCA bus machine with an
749 * extended bios data area.
750 *
751 * there is a real-mode segmented pointer pointing to the
752 * 4K EBDA area at 0x40E, calculate and scan it here.
753 *
754 * NOTE! There are Linux loaders that will corrupt the EBDA
755 * area, and as such this kind of SMP config may be less
756 * trustworthy, simply because the SMP table may have been
757 * stomped on during early boot. These loaders are buggy and
758 * should be fixed.
759 *
760 * MP1.4 SPEC states to only scan first 1K of 4K EBDA.
761 */
762
763 address = get_bios_ebda();
764 if (address)
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400765 smp_scan_config(address, 0x400, reserve);
766}
767
768void __init early_find_smp_config(void)
769{
770 __find_smp_config(0);
771}
772
773void __init find_smp_config(void)
774{
775 __find_smp_config(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776}
777
778/* --------------------------------------------------------------------------
779 ACPI-based MP Configuration
780 -------------------------------------------------------------------------- */
781
Len Brown888ba6c2005-08-24 12:07:20 -0400782#ifdef CONFIG_ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
Len Brown84663612005-08-24 12:09:07 -0400784#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
786#define MP_ISA_BUS 0
787#define MP_MAX_IOAPIC_PIN 127
788
Alexey Starikovskiy9e5c5f12008-04-04 23:41:26 +0400789extern struct mp_ioapic_routing mp_ioapic_routing[MAX_IO_APICS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400791static int mp_find_ioapic(int gsi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792{
Andi Kleen19f03ff2006-09-26 10:52:30 +0200793 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
795 /* Find the IOAPIC that manages this GSI. */
796 for (i = 0; i < nr_ioapics; i++) {
797 if ((gsi >= mp_ioapic_routing[i].gsi_base)
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400798 && (gsi <= mp_ioapic_routing[i].gsi_end))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 return i;
800 }
801
802 printk(KERN_ERR "ERROR: Unable to locate IOAPIC for GSI %d\n", gsi);
803
804 return -1;
805}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
Alexey Starikovskiye3e3ffa2008-03-17 22:08:11 +0300807static u8 uniq_ioapic_id(u8 id)
808{
809 if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
810 !APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
811 return io_apic_get_unique_id(nr_ioapics, id);
812 else
813 return id;
814}
815
Jack Steinera65d1d62008-03-28 14:12:08 -0500816void __init mp_register_ioapic(int id, u32 address, u32 gsi_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817{
Andi Kleen19f03ff2006-09-26 10:52:30 +0200818 int idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
Alexey Starikovskiy857033a2008-03-17 22:08:05 +0300820 if (bad_ioapic(address))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
Alexey Starikovskiye3e3ffa2008-03-17 22:08:11 +0300823 idx = nr_ioapics;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
825 mp_ioapics[idx].mpc_type = MP_IOAPIC;
826 mp_ioapics[idx].mpc_flags = MPC_APIC_USABLE;
827 mp_ioapics[idx].mpc_apicaddr = address;
828
829 set_fixmap_nocache(FIX_IO_APIC_BASE_0 + idx, address);
Alexey Starikovskiye3e3ffa2008-03-17 22:08:11 +0300830 mp_ioapics[idx].mpc_apicid = uniq_ioapic_id(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 mp_ioapics[idx].mpc_apicver = io_apic_get_version(idx);
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400832
833 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 * Build basic GSI lookup table to facilitate gsi->io_apic lookups
835 * and to prevent reprogramming of IOAPIC pins (PCI GSIs).
836 */
837 mp_ioapic_routing[idx].apic_id = mp_ioapics[idx].mpc_apicid;
838 mp_ioapic_routing[idx].gsi_base = gsi_base;
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100839 mp_ioapic_routing[idx].gsi_end = gsi_base +
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400840 io_apic_get_redir_entries(idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100842 printk("IOAPIC[%d]: apic_id %d, version %d, address 0x%x, "
843 "GSI %d-%d\n", idx, mp_ioapics[idx].mpc_apicid,
Alexey Starikovskiye3e3ffa2008-03-17 22:08:11 +0300844 mp_ioapics[idx].mpc_apicver,
845 mp_ioapics[idx].mpc_apicaddr,
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400846 mp_ioapic_routing[idx].gsi_base, mp_ioapic_routing[idx].gsi_end);
Alexey Starikovskiye3e3ffa2008-03-17 22:08:11 +0300847
848 nr_ioapics++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849}
850
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400851void __init mp_override_legacy_irq(u8 bus_irq, u8 polarity, u8 trigger, u32 gsi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852{
853 struct mpc_config_intsrc intsrc;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400854 int ioapic = -1;
855 int pin = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400857 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 * Convert 'gsi' to 'ioapic.pin'.
859 */
860 ioapic = mp_find_ioapic(gsi);
861 if (ioapic < 0)
862 return;
863 pin = gsi - mp_ioapic_routing[ioapic].gsi_base;
864
865 /*
866 * TBD: This check is for faulty timer entries, where the override
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400867 * erroneously sets the trigger to level, resulting in a HUGE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 * increase of timer interrupts!
869 */
870 if ((bus_irq == 0) && (trigger == 3))
871 trigger = 1;
872
873 intsrc.mpc_type = MP_INTSRC;
874 intsrc.mpc_irqtype = mp_INT;
875 intsrc.mpc_irqflag = (trigger << 2) | polarity;
876 intsrc.mpc_srcbus = MP_ISA_BUS;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400877 intsrc.mpc_srcbusirq = bus_irq; /* IRQ */
878 intsrc.mpc_dstapic = mp_ioapics[ioapic].mpc_apicid; /* APIC ID */
879 intsrc.mpc_dstirq = pin; /* INTIN# */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
881 Dprintk("Int: type %d, pol %d, trig %d, bus %d, irq %d, %d-%d\n",
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400882 intsrc.mpc_irqtype, intsrc.mpc_irqflag & 3,
883 (intsrc.mpc_irqflag >> 2) & 3, intsrc.mpc_srcbus,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 intsrc.mpc_srcbusirq, intsrc.mpc_dstapic, intsrc.mpc_dstirq);
885
886 mp_irqs[mp_irq_entries] = intsrc;
887 if (++mp_irq_entries == MAX_IRQ_SOURCES)
888 panic("Max # of irq sources exceeded!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889}
890
Alexey Starikovskiy2df29722008-03-27 23:53:54 +0300891int es7000_plat;
892
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400893void __init mp_config_acpi_legacy_irqs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894{
895 struct mpc_config_intsrc intsrc;
Andi Kleen19f03ff2006-09-26 10:52:30 +0200896 int i = 0;
897 int ioapic = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300899#if defined (CONFIG_MCA) || defined (CONFIG_EISA)
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400900 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 * Fabricate the legacy ISA bus (bus #31).
902 */
903 mp_bus_id_to_type[MP_ISA_BUS] = MP_BUS_ISA;
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300904#endif
Alexey Starikovskiya6333c32008-03-20 14:54:09 +0300905 set_bit(MP_ISA_BUS, mp_bus_not_pci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 Dprintk("Bus #%d is ISA\n", MP_ISA_BUS);
907
908 /*
909 * Older generations of ES7000 have no legacy identity mappings
910 */
911 if (es7000_plat == 1)
912 return;
913
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400914 /*
915 * Locate the IOAPIC that manages the ISA IRQs (0-15).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 */
917 ioapic = mp_find_ioapic(0);
918 if (ioapic < 0)
919 return;
920
921 intsrc.mpc_type = MP_INTSRC;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400922 intsrc.mpc_irqflag = 0; /* Conforming */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 intsrc.mpc_srcbus = MP_ISA_BUS;
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400924#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 intsrc.mpc_dstapic = mp_ioapics[ioapic].mpc_apicid;
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400926#endif
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400927 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 * Use the default configuration for the IRQs 0-15. Unless
Simon Arlott27b46d72007-10-20 01:13:56 +0200929 * overridden by (MADT) interrupt source override entries.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 */
931 for (i = 0; i < 16; i++) {
932 int idx;
933
934 for (idx = 0; idx < mp_irq_entries; idx++) {
935 struct mpc_config_intsrc *irq = mp_irqs + idx;
936
937 /* Do we already have a mapping for this ISA IRQ? */
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400938 if (irq->mpc_srcbus == MP_ISA_BUS
939 && irq->mpc_srcbusirq == i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 break;
941
942 /* Do we already have a mapping for this IOAPIC pin */
943 if ((irq->mpc_dstapic == intsrc.mpc_dstapic) &&
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400944 (irq->mpc_dstirq == i))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 break;
946 }
947
948 if (idx != mp_irq_entries) {
949 printk(KERN_DEBUG "ACPI: IRQ%d used by override.\n", i);
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400950 continue; /* IRQ already used */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 }
952
953 intsrc.mpc_irqtype = mp_INT;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400954 intsrc.mpc_srcbusirq = i; /* Identity mapped */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 intsrc.mpc_dstirq = i;
956
957 Dprintk("Int: type %d, pol %d, trig %d, bus %d, irq %d, "
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400958 "%d-%d\n", intsrc.mpc_irqtype, intsrc.mpc_irqflag & 3,
959 (intsrc.mpc_irqflag >> 2) & 3, intsrc.mpc_srcbus,
960 intsrc.mpc_srcbusirq, intsrc.mpc_dstapic,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 intsrc.mpc_dstirq);
962
963 mp_irqs[mp_irq_entries] = intsrc;
964 if (++mp_irq_entries == MAX_IRQ_SOURCES)
965 panic("Max # of irq sources exceeded!\n");
966 }
967}
968
Natalie Protasevichc434b7a2005-06-23 00:08:29 -0700969#define MAX_GSI_NUM 4096
Len Brown2ba7dee2008-01-30 13:31:02 +0100970#define IRQ_COMPRESSION_START 64
Natalie Protasevichc434b7a2005-06-23 00:08:29 -0700971
Andi Kleen19f03ff2006-09-26 10:52:30 +0200972int mp_register_gsi(u32 gsi, int triggering, int polarity)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973{
Andi Kleen19f03ff2006-09-26 10:52:30 +0200974 int ioapic = -1;
975 int ioapic_pin = 0;
976 int idx, bit = 0;
Len Brown2ba7dee2008-01-30 13:31:02 +0100977 static int pci_irq = IRQ_COMPRESSION_START;
Natalie Protasevichc434b7a2005-06-23 00:08:29 -0700978 /*
Joe Perchesab4a5742008-01-30 13:31:42 +0100979 * Mapping between Global System Interrupts, which
Natalie Protasevichc434b7a2005-06-23 00:08:29 -0700980 * represent all possible interrupts, and IRQs
981 * assigned to actual devices.
982 */
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400983 static int gsi_to_irq[MAX_GSI_NUM];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 /* Don't set up the ACPI SCI because it's already set up */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300986 if (acpi_gbl_FADT.sci_interrupt == gsi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 return gsi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988
989 ioapic = mp_find_ioapic(gsi);
990 if (ioapic < 0) {
991 printk(KERN_WARNING "No IOAPIC for GSI %u\n", gsi);
992 return gsi;
993 }
994
995 ioapic_pin = gsi - mp_ioapic_routing[ioapic].gsi_base;
996
997 if (ioapic_renumber_irq)
998 gsi = ioapic_renumber_irq(ioapic, gsi);
999
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +04001000 /*
1001 * Avoid pin reprogramming. PRTs typically include entries
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 * with redundant pin->gsi mappings (but unique PCI devices);
1003 * we only program the IOAPIC on the first.
1004 */
1005 bit = ioapic_pin % 32;
1006 idx = (ioapic_pin < 32) ? 0 : (ioapic_pin / 32);
1007 if (idx > 3) {
1008 printk(KERN_ERR "Invalid reference to IOAPIC pin "
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +04001009 "%d-%d\n", mp_ioapic_routing[ioapic].apic_id,
1010 ioapic_pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 return gsi;
1012 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +04001013 if ((1 << bit) & mp_ioapic_routing[ioapic].pin_programmed[idx]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 Dprintk(KERN_DEBUG "Pin %d-%d already programmed\n",
1015 mp_ioapic_routing[ioapic].apic_id, ioapic_pin);
Len Brown2ba7dee2008-01-30 13:31:02 +01001016 return (gsi < IRQ_COMPRESSION_START ? gsi : gsi_to_irq[gsi]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 }
1018
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +04001019 mp_ioapic_routing[ioapic].pin_programmed[idx] |= (1 << bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
Len Brown2ba7dee2008-01-30 13:31:02 +01001021 /*
1022 * For GSI >= 64, use IRQ compression
1023 */
1024 if ((gsi >= IRQ_COMPRESSION_START)
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +04001025 && (triggering == ACPI_LEVEL_SENSITIVE)) {
Natalie Protasevichc434b7a2005-06-23 00:08:29 -07001026 /*
1027 * For PCI devices assign IRQs in order, avoiding gaps
1028 * due to unused I/O APIC pins.
1029 */
1030 int irq = gsi;
1031 if (gsi < MAX_GSI_NUM) {
Kimball Murraye0c1e9b2006-05-08 15:17:16 +02001032 /*
1033 * Retain the VIA chipset work-around (gsi > 15), but
1034 * avoid a problem where the 8254 timer (IRQ0) is setup
1035 * via an override (so it's not on pin 0 of the ioapic),
1036 * and at the same time, the pin 0 interrupt is a PCI
1037 * type. The gsi > 15 test could cause these two pins
1038 * to be shared as IRQ0, and they are not shareable.
1039 * So test for this condition, and if necessary, avoid
1040 * the pin collision.
1041 */
Adrian Bunkede13892008-03-17 22:29:32 +02001042 gsi = pci_irq++;
Natalie.Protasevich@unisys.come1afc3f2005-07-29 14:03:32 -07001043 /*
1044 * Don't assign IRQ used by ACPI SCI
1045 */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001046 if (gsi == acpi_gbl_FADT.sci_interrupt)
Natalie.Protasevich@unisys.come1afc3f2005-07-29 14:03:32 -07001047 gsi = pci_irq++;
Natalie Protasevichc434b7a2005-06-23 00:08:29 -07001048 gsi_to_irq[irq] = gsi;
1049 } else {
1050 printk(KERN_ERR "GSI %u is too high\n", gsi);
1051 return gsi;
1052 }
1053 }
1054
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 io_apic_set_pci_routing(ioapic, ioapic_pin, gsi,
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +04001056 triggering == ACPI_EDGE_SENSITIVE ? 0 : 1,
1057 polarity == ACPI_ACTIVE_HIGH ? 0 : 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 return gsi;
1059}
1060
Len Brown84663612005-08-24 12:09:07 -04001061#endif /* CONFIG_X86_IO_APIC */
Len Brown888ba6c2005-08-24 12:07:20 -04001062#endif /* CONFIG_ACPI */