blob: 6e5e4547981cfc2677926d4cb248b5313106b7ee [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>
Alexey Starikovskiy85bddde2008-04-04 23:43:18 +04007 * (c) 2008 Alexey Starikovskiy <astarikovskiy@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 */
9
10#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/bootmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/kernel_stat.h>
15#include <linux/mc146818rtc.h>
16#include <linux/bitops.h>
Alexey Starikovskiy85bddde2008-04-04 23:43:18 +040017#include <linux/acpi.h>
18#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20#include <asm/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <asm/mtrr.h>
22#include <asm/mpspec.h>
Alexey Starikovskiy85bddde2008-04-04 23:43:18 +040023#include <asm/pgalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <asm/io_apic.h>
Alexey Starikovskiy85bddde2008-04-04 23:43:18 +040025#include <asm/proto.h>
26#include <asm/acpi.h>
Alexey Starikovskiyce3fe6b2008-03-17 22:08:17 +030027#include <asm/bios_ebda.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29#include <mach_apic.h>
Alexey Starikovskiy85bddde2008-04-04 23:43:18 +040030#ifdef CONFIG_X86_32
Andi Kleen874c4fe2006-09-26 10:52:26 +020031#include <mach_apicdef.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <mach_mpparse.h>
Alexey Starikovskiy85bddde2008-04-04 23:43:18 +040033#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35/* Have we found an MP table */
36int smp_found_config;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38/*
39 * Various Linux-internal data structures created from the
40 * MP-table.
41 */
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +030042#if defined (CONFIG_MCA) || defined (CONFIG_EISA)
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +040043int mp_bus_id_to_type[MAX_MP_BUSSES];
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +030044#endif
Alexey Starikovskiy85bddde2008-04-04 23:43:18 +040045
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 };
Alexey Starikovskiy85bddde2008-04-04 23:43:18 +040048
Linus Torvalds1da177e2005-04-16 15:20:36 -070049static int mp_current_pci_id;
50
Linus Torvalds1da177e2005-04-16 15:20:36 -070051int pic_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Linus Torvalds1da177e2005-04-16 15:20:36 -070053/*
54 * Intel MP BIOS table parsing routines:
55 */
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057/*
58 * Checksum an MP configuration block.
59 */
60
61static int __init mpf_checksum(unsigned char *mp, int len)
62{
63 int sum = 0;
64
65 while (len--)
66 sum += *mp++;
67
68 return sum & 0xFF;
69}
70
Alexey Starikovskiy86420502008-03-17 22:08:55 +030071#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -070072/*
73 * Have to match translation table entries to main table entries by counter
74 * hence the mpc_record variable .... can't see a less disgusting way of
75 * doing this ....
76 */
77
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +040078static int mpc_record;
79static struct mpc_config_translation *translation_table[MAX_MPC_ENTRY]
80 __cpuinitdata;
Alexey Starikovskiy86420502008-03-17 22:08:55 +030081#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Alexey Starikovskiyc853c672008-03-27 23:54:13 +030083static void __cpuinit MP_processor_info(struct mpc_config_processor *m)
84{
85 int apicid;
Alexey Starikovskiy746f2242008-04-04 23:42:15 +040086 char *bootup_cpu = "";
Alexey Starikovskiyc853c672008-03-27 23:54:13 +030087
Glauber Costa7b1292e2008-03-03 14:12:41 -030088 if (!(m->mpc_cpuflag & CPU_ENABLED)) {
89 disabled_cpus++;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 return;
Glauber Costa7b1292e2008-03-03 14:12:41 -030091 }
Alexey Starikovskiy4655c7d2008-03-17 22:08:36 +030092#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 apicid = mpc_apic_id(m, translation_table[mpc_record]);
Alexey Starikovskiy4655c7d2008-03-17 22:08:36 +030094#else
Alexey Starikovskiy4655c7d2008-03-17 22:08:36 +030095 apicid = m->mpc_apicid;
96#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 if (m->mpc_cpuflag & CPU_BOOTPROCESSOR) {
Alexey Starikovskiy746f2242008-04-04 23:42:15 +040098 bootup_cpu = " (Bootup-CPU)";
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 boot_cpu_physical_apicid = m->mpc_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 }
101
Alexey Starikovskiy746f2242008-04-04 23:42:15 +0400102 printk(KERN_INFO "Processor #%d%s\n", m->mpc_apicid, bootup_cpu);
Alexey Starikovskiyc853c672008-03-27 23:54:13 +0300103 generic_processor_info(apicid, m->mpc_apicver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104}
105
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400106static void __init MP_bus_info(struct mpc_config_bus *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107{
108 char str[7];
109
110 memcpy(str, m->mpc_bustype, 6);
111 str[6] = 0;
112
Alexey Starikovskiy0ec153a2008-03-17 22:08:48 +0300113#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 mpc_oem_bus_info(m, str, translation_table[mpc_record]);
Alexey Starikovskiy0ec153a2008-03-17 22:08:48 +0300115#else
116 Dprintk("Bus #%d is %s\n", m->mpc_busid, str);
117#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Andi Kleen5e4edbb2006-09-26 10:52:35 +0200119#if MAX_MP_BUSSES < 256
Randy Dunlapc0ec31a2006-04-10 22:53:13 -0700120 if (m->mpc_busid >= MAX_MP_BUSSES) {
121 printk(KERN_WARNING "MP table busid value (%d) for bustype %s "
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400122 " is too large, max. supported is %d\n",
123 m->mpc_busid, str, MAX_MP_BUSSES - 1);
Randy Dunlapc0ec31a2006-04-10 22:53:13 -0700124 return;
125 }
Andi Kleen5e4edbb2006-09-26 10:52:35 +0200126#endif
Randy Dunlapc0ec31a2006-04-10 22:53:13 -0700127
Alexey Starikovskiyf8924e72008-04-04 23:42:21 +0400128 if (strncmp(str, BUSTYPE_ISA, sizeof(BUSTYPE_ISA) - 1) == 0) {
129 set_bit(m->mpc_busid, mp_bus_not_pci);
130#if defined(CONFIG_EISA) || defined (CONFIG_MCA)
131 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_ISA;
132#endif
133 } else if (strncmp(str, BUSTYPE_PCI, sizeof(BUSTYPE_PCI) - 1) == 0) {
Alexey Starikovskiyd285e332008-03-17 22:08:42 +0300134#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 mpc_oem_pci_bus(m, translation_table[mpc_record]);
Alexey Starikovskiyd285e332008-03-17 22:08:42 +0300136#endif
Alexey Starikovskiya6333c32008-03-20 14:54:09 +0300137 clear_bit(m->mpc_busid, mp_bus_not_pci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 mp_bus_id_to_pci_bus[m->mpc_busid] = mp_current_pci_id;
139 mp_current_pci_id++;
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300140#if defined(CONFIG_EISA) || defined (CONFIG_MCA)
141 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_PCI;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400142 } else if (strncmp(str, BUSTYPE_EISA, sizeof(BUSTYPE_EISA) - 1) == 0) {
Alexey Starikovskiy9e0a2de2008-03-20 14:54:56 +0300143 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_EISA;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400144 } else if (strncmp(str, BUSTYPE_MCA, sizeof(BUSTYPE_MCA) - 1) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_MCA;
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300146#endif
Alexey Starikovskiyf8924e72008-04-04 23:42:21 +0400147 } else
148 printk(KERN_WARNING "Unknown bustype %s - ignoring\n", str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149}
150
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400151#ifdef CONFIG_X86_IO_APIC
152
Alexey Starikovskiy857033a2008-03-17 22:08:05 +0300153static int bad_ioapic(unsigned long address)
154{
155 if (nr_ioapics >= MAX_IO_APICS) {
156 printk(KERN_ERR "ERROR: Max # of I/O APICs (%d) exceeded "
157 "(found %d)\n", MAX_IO_APICS, nr_ioapics);
158 panic("Recompile kernel with bigger MAX_IO_APICS!\n");
159 }
160 if (!address) {
161 printk(KERN_ERR "WARNING: Bogus (zero) I/O APIC address"
162 " found in table, skipping!\n");
163 return 1;
164 }
165 return 0;
166}
167
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400168static void __init MP_ioapic_info(struct mpc_config_ioapic *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169{
170 if (!(m->mpc_flags & MPC_APIC_USABLE))
171 return;
172
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100173 printk(KERN_INFO "I/O APIC #%d Version %d at 0x%X.\n",
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400174 m->mpc_apicid, m->mpc_apicver, m->mpc_apicaddr);
Alexey Starikovskiy857033a2008-03-17 22:08:05 +0300175
176 if (bad_ioapic(m->mpc_apicaddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 return;
Alexey Starikovskiy857033a2008-03-17 22:08:05 +0300178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 mp_ioapics[nr_ioapics] = *m;
180 nr_ioapics++;
181}
182
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400183static void __init MP_intsrc_info(struct mpc_config_intsrc *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184{
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400185 mp_irqs[mp_irq_entries] = *m;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 Dprintk("Int: type %d, pol %d, trig %d, bus %d,"
187 " IRQ %02x, APIC ID %x, APIC INT %02x\n",
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400188 m->mpc_irqtype, m->mpc_irqflag & 3,
189 (m->mpc_irqflag >> 2) & 3, m->mpc_srcbus,
190 m->mpc_srcbusirq, m->mpc_dstapic, m->mpc_dstirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 if (++mp_irq_entries == MAX_IRQ_SOURCES)
192 panic("Max # of irq sources exceeded!!\n");
193}
194
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400195#endif
196
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400197static void __init MP_lintsrc_info(struct mpc_config_lintsrc *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
199 Dprintk("Lint: type %d, pol %d, trig %d, bus %d,"
200 " IRQ %02x, APIC ID %x, APIC LINT %02x\n",
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400201 m->mpc_irqtype, m->mpc_irqflag & 3,
202 (m->mpc_irqflag >> 2) & 3, m->mpc_srcbusid,
203 m->mpc_srcbusirq, m->mpc_destapic, m->mpc_destapiclint);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204}
205
206#ifdef CONFIG_X86_NUMAQ
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400207static void __init MP_translation_info(struct mpc_config_translation *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208{
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400209 printk(KERN_INFO
210 "Translation: record %d, type %d, quad %d, global %d, local %d\n",
211 mpc_record, m->trans_type, m->trans_quad, m->trans_global,
212 m->trans_local);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400214 if (mpc_record >= MAX_MPC_ENTRY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 printk(KERN_ERR "MAX_MPC_ENTRY exceeded!\n");
216 else
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400217 translation_table[mpc_record] = m; /* stash this for later */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 if (m->trans_quad < MAX_NUMNODES && !node_online(m->trans_quad))
219 node_set_online(m->trans_quad);
220}
221
222/*
223 * Read/parse the MPC oem tables
224 */
225
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400226static void __init smp_read_mpc_oem(struct mp_config_oemtable *oemtable,
227 unsigned short oemsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228{
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400229 int count = sizeof(*oemtable); /* the header size */
230 unsigned char *oemptr = ((unsigned char *)oemtable) + count;
231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 mpc_record = 0;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400233 printk(KERN_INFO "Found an OEM MPC table at %8p - parsing it ... \n",
234 oemtable);
235 if (memcmp(oemtable->oem_signature, MPC_OEM_SIGNATURE, 4)) {
236 printk(KERN_WARNING
237 "SMP mpc oemtable: bad signature [%c%c%c%c]!\n",
238 oemtable->oem_signature[0], oemtable->oem_signature[1],
239 oemtable->oem_signature[2], oemtable->oem_signature[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 return;
241 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400242 if (mpf_checksum((unsigned char *)oemtable, oemtable->oem_length)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 printk(KERN_WARNING "SMP oem mptable: checksum error!\n");
244 return;
245 }
246 while (count < oemtable->oem_length) {
247 switch (*oemptr) {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400248 case MP_TRANSLATION:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400250 struct mpc_config_translation *m =
251 (struct mpc_config_translation *)oemptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 MP_translation_info(m);
253 oemptr += sizeof(*m);
254 count += sizeof(*m);
255 ++mpc_record;
256 break;
257 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400258 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400260 printk(KERN_WARNING
261 "Unrecognised OEM table entry type! - %d\n",
262 (int)*oemptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 return;
264 }
265 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400266 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267}
268
269static inline void mps_oem_check(struct mp_config_table *mpc, char *oem,
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400270 char *productid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271{
272 if (strncmp(oem, "IBM NUMA", 8))
273 printk("Warning! May not be a NUMA-Q system!\n");
274 if (mpc->mpc_oemptr)
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400275 smp_read_mpc_oem((struct mp_config_oemtable *)mpc->mpc_oemptr,
276 mpc->mpc_oemsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277}
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400278#endif /* CONFIG_X86_NUMAQ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
280/*
281 * Read/parse the MPC
282 */
283
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400284static int __init smp_read_mpc(struct mp_config_table *mpc, unsigned early)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285{
286 char str[16];
287 char oem[10];
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400288 int count = sizeof(*mpc);
289 unsigned char *mpt = ((unsigned char *)mpc) + count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400291 if (memcmp(mpc->mpc_signature, MPC_SIGNATURE, 4)) {
Alexey Starikovskiye950bea2008-04-04 23:42:27 +0400292 printk(KERN_ERR "MPTABLE: bad signature [%c%c%c%c]!\n",
293 mpc->mpc_signature[0], mpc->mpc_signature[1],
294 mpc->mpc_signature[2], mpc->mpc_signature[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 return 0;
296 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400297 if (mpf_checksum((unsigned char *)mpc, mpc->mpc_length)) {
Alexey Starikovskiye950bea2008-04-04 23:42:27 +0400298 printk(KERN_ERR "MPTABLE: checksum error!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 return 0;
300 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400301 if (mpc->mpc_spec != 0x01 && mpc->mpc_spec != 0x04) {
Alexey Starikovskiye950bea2008-04-04 23:42:27 +0400302 printk(KERN_ERR "MPTABLE: bad table version (%d)!!\n",
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400303 mpc->mpc_spec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 return 0;
305 }
306 if (!mpc->mpc_lapic) {
Alexey Starikovskiye950bea2008-04-04 23:42:27 +0400307 printk(KERN_ERR "MPTABLE: null local APIC address!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 return 0;
309 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400310 memcpy(oem, mpc->mpc_oem, 8);
311 oem[8] = 0;
Alexey Starikovskiye950bea2008-04-04 23:42:27 +0400312 printk(KERN_INFO "MPTABLE: OEM ID: %s ", oem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400314 memcpy(str, mpc->mpc_productid, 12);
315 str[12] = 0;
316 printk("Product ID: %s ", str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Alexey Starikovskiye950bea2008-04-04 23:42:27 +0400318#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 mps_oem_check(mpc, oem, str);
Alexey Starikovskiye950bea2008-04-04 23:42:27 +0400320#endif
321 printk(KERN_INFO "MPTABLE: Product ID: %s ", str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Alexey Starikovskiye950bea2008-04-04 23:42:27 +0400323 printk(KERN_INFO "MPTABLE: APIC at: 0x%X\n", mpc->mpc_lapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Alexey Starikovskiye950bea2008-04-04 23:42:27 +0400325 /* save the local APIC address, it might be non-default */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 if (!acpi_lapic)
327 mp_lapic_addr = mpc->mpc_lapic;
328
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400329 if (early)
330 return 1;
331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 /*
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400333 * Now process the configuration blocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 */
Alexey Starikovskiy86420502008-03-17 22:08:55 +0300335#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 mpc_record = 0;
Alexey Starikovskiy86420502008-03-17 22:08:55 +0300337#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 while (count < mpc->mpc_length) {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400339 switch (*mpt) {
340 case MP_PROCESSOR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400342 struct mpc_config_processor *m =
343 (struct mpc_config_processor *)mpt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 /* ACPI may have already provided this data */
345 if (!acpi_lapic)
346 MP_processor_info(m);
347 mpt += sizeof(*m);
348 count += sizeof(*m);
349 break;
350 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400351 case MP_BUS:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400353 struct mpc_config_bus *m =
354 (struct mpc_config_bus *)mpt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 MP_bus_info(m);
356 mpt += sizeof(*m);
357 count += sizeof(*m);
358 break;
359 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400360 case MP_IOAPIC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 {
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400362#ifdef CONFIG_X86_IO_APIC
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400363 struct mpc_config_ioapic *m =
364 (struct mpc_config_ioapic *)mpt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 MP_ioapic_info(m);
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400366#endif
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400367 mpt += sizeof(struct mpc_config_ioapic);
368 count += sizeof(struct mpc_config_ioapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 break;
370 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400371 case MP_INTSRC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 {
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400373#ifdef CONFIG_X86_IO_APIC
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400374 struct mpc_config_intsrc *m =
375 (struct mpc_config_intsrc *)mpt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
377 MP_intsrc_info(m);
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400378#endif
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400379 mpt += sizeof(struct mpc_config_intsrc);
380 count += sizeof(struct mpc_config_intsrc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 break;
382 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400383 case MP_LINTSRC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400385 struct mpc_config_lintsrc *m =
386 (struct mpc_config_lintsrc *)mpt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 MP_lintsrc_info(m);
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400388 mpt += sizeof(*m);
389 count += sizeof(*m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 break;
391 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400392 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 {
394 count = mpc->mpc_length;
395 break;
396 }
397 }
Alexey Starikovskiy86420502008-03-17 22:08:55 +0300398#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 ++mpc_record;
Alexey Starikovskiy86420502008-03-17 22:08:55 +0300400#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 }
Ingo Molnar3c43f032007-05-02 19:27:04 +0200402 setup_apic_routing();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 if (!num_processors)
Alexey Starikovskiye950bea2008-04-04 23:42:27 +0400404 printk(KERN_ERR "MPTABLE: no processors registered!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 return num_processors;
406}
407
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400408#ifdef CONFIG_X86_IO_APIC
409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410static int __init ELCR_trigger(unsigned int irq)
411{
412 unsigned int port;
413
414 port = 0x4d0 + (irq >> 3);
415 return (inb(port) >> (irq & 7)) & 1;
416}
417
418static void __init construct_default_ioirq_mptable(int mpc_default_type)
419{
420 struct mpc_config_intsrc intsrc;
421 int i;
422 int ELCR_fallback = 0;
423
424 intsrc.mpc_type = MP_INTSRC;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400425 intsrc.mpc_irqflag = 0; /* conforming */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 intsrc.mpc_srcbus = 0;
427 intsrc.mpc_dstapic = mp_ioapics[0].mpc_apicid;
428
429 intsrc.mpc_irqtype = mp_INT;
430
431 /*
432 * If true, we have an ISA/PCI system with no IRQ entries
433 * in the MP table. To prevent the PCI interrupts from being set up
434 * incorrectly, we try to use the ELCR. The sanity check to see if
435 * there is good ELCR data is very simple - IRQ0, 1, 2 and 13 can
436 * never be level sensitive, so we simply see if the ELCR agrees.
437 * If it does, we assume it's valid.
438 */
439 if (mpc_default_type == 5) {
Alexey Starikovskiy62441bf2008-04-04 23:42:34 +0400440 printk(KERN_INFO "ISA/PCI bus type with no IRQ information... "
441 "falling back to ELCR\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Alexey Starikovskiy62441bf2008-04-04 23:42:34 +0400443 if (ELCR_trigger(0) || ELCR_trigger(1) || ELCR_trigger(2) ||
444 ELCR_trigger(13))
445 printk(KERN_ERR "ELCR contains invalid data... "
446 "not using ELCR\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 else {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400448 printk(KERN_INFO
449 "Using ELCR to identify PCI interrupts\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 ELCR_fallback = 1;
451 }
452 }
453
454 for (i = 0; i < 16; i++) {
455 switch (mpc_default_type) {
456 case 2:
457 if (i == 0 || i == 13)
458 continue; /* IRQ0 & IRQ13 not connected */
459 /* fall through */
460 default:
461 if (i == 2)
462 continue; /* IRQ2 is never connected */
463 }
464
465 if (ELCR_fallback) {
466 /*
467 * If the ELCR indicates a level-sensitive interrupt, we
468 * copy that information over to the MP table in the
469 * irqflag field (level sensitive, active high polarity).
470 */
471 if (ELCR_trigger(i))
472 intsrc.mpc_irqflag = 13;
473 else
474 intsrc.mpc_irqflag = 0;
475 }
476
477 intsrc.mpc_srcbusirq = i;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400478 intsrc.mpc_dstirq = i ? i : 2; /* IRQ0 to INTIN2 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 MP_intsrc_info(&intsrc);
480 }
481
482 intsrc.mpc_irqtype = mp_ExtINT;
483 intsrc.mpc_srcbusirq = 0;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400484 intsrc.mpc_dstirq = 0; /* 8259A to INTIN0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 MP_intsrc_info(&intsrc);
486}
487
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400488#endif
489
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490static inline void __init construct_default_ISA_mptable(int mpc_default_type)
491{
492 struct mpc_config_processor processor;
493 struct mpc_config_bus bus;
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400494#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 struct mpc_config_ioapic ioapic;
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400496#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 struct mpc_config_lintsrc lintsrc;
498 int linttypes[2] = { mp_ExtINT, mp_NMI };
499 int i;
500
501 /*
502 * local APIC has default address
503 */
504 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
505
506 /*
507 * 2 CPUs, numbered 0 & 1.
508 */
509 processor.mpc_type = MP_PROCESSOR;
510 /* Either an integrated APIC or a discrete 82489DX. */
511 processor.mpc_apicver = mpc_default_type > 4 ? 0x10 : 0x01;
512 processor.mpc_cpuflag = CPU_ENABLED;
513 processor.mpc_cpufeature = (boot_cpu_data.x86 << 8) |
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400514 (boot_cpu_data.x86_model << 4) | boot_cpu_data.x86_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 processor.mpc_featureflag = boot_cpu_data.x86_capability[0];
516 processor.mpc_reserved[0] = 0;
517 processor.mpc_reserved[1] = 0;
518 for (i = 0; i < 2; i++) {
519 processor.mpc_apicid = i;
520 MP_processor_info(&processor);
521 }
522
523 bus.mpc_type = MP_BUS;
524 bus.mpc_busid = 0;
525 switch (mpc_default_type) {
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400526 default:
Alexey Starikovskiy62441bf2008-04-04 23:42:34 +0400527 printk(KERN_ERR "???\nUnknown standard configuration %d\n",
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400528 mpc_default_type);
529 /* fall through */
530 case 1:
531 case 5:
532 memcpy(bus.mpc_bustype, "ISA ", 6);
533 break;
534 case 2:
535 case 6:
536 case 3:
537 memcpy(bus.mpc_bustype, "EISA ", 6);
538 break;
539 case 4:
540 case 7:
541 memcpy(bus.mpc_bustype, "MCA ", 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 }
543 MP_bus_info(&bus);
544 if (mpc_default_type > 4) {
545 bus.mpc_busid = 1;
546 memcpy(bus.mpc_bustype, "PCI ", 6);
547 MP_bus_info(&bus);
548 }
549
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400550#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 ioapic.mpc_type = MP_IOAPIC;
552 ioapic.mpc_apicid = 2;
553 ioapic.mpc_apicver = mpc_default_type > 4 ? 0x10 : 0x01;
554 ioapic.mpc_flags = MPC_APIC_USABLE;
555 ioapic.mpc_apicaddr = 0xFEC00000;
556 MP_ioapic_info(&ioapic);
557
558 /*
559 * We set up most of the low 16 IO-APIC pins according to MPS rules.
560 */
561 construct_default_ioirq_mptable(mpc_default_type);
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400562#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 lintsrc.mpc_type = MP_LINTSRC;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400564 lintsrc.mpc_irqflag = 0; /* conforming */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 lintsrc.mpc_srcbusid = 0;
566 lintsrc.mpc_srcbusirq = 0;
567 lintsrc.mpc_destapic = MP_APIC_ALL;
568 for (i = 0; i < 2; i++) {
569 lintsrc.mpc_irqtype = linttypes[i];
570 lintsrc.mpc_destapiclint = i;
571 MP_lintsrc_info(&lintsrc);
572 }
573}
574
575static struct intel_mp_floating *mpf_found;
576
577/*
578 * Scan the memory blocks for an SMP configuration block.
579 */
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400580static void __init __get_smp_config(unsigned early)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581{
582 struct intel_mp_floating *mpf = mpf_found;
583
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400584 if (acpi_lapic && early)
585 return;
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 Starikovskiy4421b1c2008-04-04 23:42:40 +0400591 printk(KERN_INFO "Using ACPI (MADT) for SMP configuration "
592 "information\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 return;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400594 } else if (acpi_lapic)
Alexey Starikovskiy4421b1c2008-04-04 23:42:40 +0400595 printk(KERN_INFO "Using ACPI for processor (LAPIC) "
596 "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);
Alexey Starikovskiy4421b1c2008-04-04 23:42:40 +0400600#ifdef CONFIG_X86_32
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400601 if (mpf->mpf_feature2 & (1 << 7)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 printk(KERN_INFO " IMCR and PIC compatibility mode.\n");
603 pic_mode = 1;
604 } else {
605 printk(KERN_INFO " Virtual Wire compatibility mode.\n");
606 pic_mode = 0;
607 }
Alexey Starikovskiy4421b1c2008-04-04 23:42:40 +0400608#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 /*
610 * Now see if we need to read further.
611 */
612 if (mpf->mpf_feature1 != 0) {
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400613 if (early) {
614 /*
615 * local APIC has default address
616 */
617 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
618 return;
619 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400621 printk(KERN_INFO "Default MP configuration #%d\n",
622 mpf->mpf_feature1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 construct_default_ISA_mptable(mpf->mpf_feature1);
624
625 } else if (mpf->mpf_physptr) {
626
627 /*
628 * Read the physical hardware table. Anything here will
629 * override the defaults.
630 */
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400631 if (!smp_read_mpc(phys_to_virt(mpf->mpf_physptr), early)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 smp_found_config = 0;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400633 printk(KERN_ERR
634 "BIOS bug, MP table errors detected!...\n");
Alexey Starikovskiy4421b1c2008-04-04 23:42:40 +0400635 printk(KERN_ERR "... disabling SMP support. "
636 "(tell your hw vendor)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 return;
638 }
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400639
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400640 if (early)
641 return;
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400642#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 /*
644 * If there are no explicit MP IRQ entries, then we are
645 * broken. We set up most of the low 16 IO-APIC pins to
646 * ISA defaults and hope it will work.
647 */
648 if (!mp_irq_entries) {
649 struct mpc_config_bus bus;
650
Alexey Starikovskiy4421b1c2008-04-04 23:42:40 +0400651 printk(KERN_ERR "BIOS bug, no explicit IRQ entries, "
652 "using default mptable. "
653 "(tell your hw vendor)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
655 bus.mpc_type = MP_BUS;
656 bus.mpc_busid = 0;
657 memcpy(bus.mpc_bustype, "ISA ", 6);
658 MP_bus_info(&bus);
659
660 construct_default_ioirq_mptable(0);
661 }
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400662#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 } else
664 BUG();
665
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400666 if (!early)
667 printk(KERN_INFO "Processors: %d\n", num_processors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 /*
669 * Only use the first configuration found.
670 */
671}
672
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400673void __init early_get_smp_config(void)
674{
675 __get_smp_config(1);
676}
677
678void __init get_smp_config(void)
679{
680 __get_smp_config(0);
681}
682
683static int __init smp_scan_config(unsigned long base, unsigned long length,
684 unsigned reserve)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685{
Alexey Starikovskiy92fd4b72008-04-04 23:42:46 +0400686 extern void __bad_mpf_size(void);
687 unsigned int *bp = phys_to_virt(base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 struct intel_mp_floating *mpf;
689
Alexey Starikovskiy92fd4b72008-04-04 23:42:46 +0400690 Dprintk("Scan SMP from %p for %ld bytes.\n", bp, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 if (sizeof(*mpf) != 16)
Alexey Starikovskiy92fd4b72008-04-04 23:42:46 +0400692 __bad_mpf_size();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
694 while (length > 0) {
695 mpf = (struct intel_mp_floating *)bp;
696 if ((*bp == SMP_MAGIC_IDENT) &&
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400697 (mpf->mpf_length == 1) &&
698 !mpf_checksum((unsigned char *)bp, 16) &&
699 ((mpf->mpf_specification == 1)
700 || (mpf->mpf_specification == 4))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
702 smp_found_config = 1;
Alexey Starikovskiy92fd4b72008-04-04 23:42:46 +0400703 mpf_found = mpf;
704#ifdef CONFIG_X86_32
Ingo Molnare91a3b42008-01-30 13:33:08 +0100705 printk(KERN_INFO "found SMP MP-table at [%p] %08lx\n",
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400706 mpf, virt_to_phys(mpf));
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800707 reserve_bootmem(virt_to_phys(mpf), PAGE_SIZE,
708 BOOTMEM_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 if (mpf->mpf_physptr) {
710 /*
711 * We cannot access to MPC table to compute
712 * table size yet, as only few megabytes from
713 * the bottom is mapped now.
714 * PC-9800's MPC table places on the very last
715 * of physical memory; so that simply reserving
716 * PAGE_SIZE from mpg->mpf_physptr yields BUG()
717 * in reserve_bootmem.
718 */
719 unsigned long size = PAGE_SIZE;
720 unsigned long end = max_low_pfn * PAGE_SIZE;
721 if (mpf->mpf_physptr + size > end)
722 size = end - mpf->mpf_physptr;
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800723 reserve_bootmem(mpf->mpf_physptr, size,
724 BOOTMEM_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 }
726
Alexey Starikovskiy92fd4b72008-04-04 23:42:46 +0400727#else
728 if (!reserve)
729 return 1;
730
731 reserve_bootmem_generic(virt_to_phys(mpf), PAGE_SIZE);
732 if (mpf->mpf_physptr)
733 reserve_bootmem_generic(mpf->mpf_physptr,
734 PAGE_SIZE);
735#endif
736 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 }
738 bp += 4;
739 length -= 16;
740 }
741 return 0;
742}
743
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400744static void __init __find_smp_config(unsigned reserve)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745{
746 unsigned int address;
747
748 /*
749 * FIXME: Linux assumes you have 640K of base ram..
750 * this continues the error...
751 *
752 * 1) Scan the bottom 1K for a signature
753 * 2) Scan the top 1K of base RAM
754 * 3) Scan the 64K of bios
755 */
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400756 if (smp_scan_config(0x0, 0x400, reserve) ||
757 smp_scan_config(639 * 0x400, 0x400, reserve) ||
758 smp_scan_config(0xF0000, 0x10000, reserve))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 return;
760 /*
761 * If it is an SMP machine we should know now, unless the
762 * configuration is in an EISA/MCA bus machine with an
763 * extended bios data area.
764 *
765 * there is a real-mode segmented pointer pointing to the
766 * 4K EBDA area at 0x40E, calculate and scan it here.
767 *
768 * NOTE! There are Linux loaders that will corrupt the EBDA
769 * area, and as such this kind of SMP config may be less
770 * trustworthy, simply because the SMP table may have been
771 * stomped on during early boot. These loaders are buggy and
772 * should be fixed.
773 *
774 * MP1.4 SPEC states to only scan first 1K of 4K EBDA.
775 */
776
777 address = get_bios_ebda();
778 if (address)
Alexey Starikovskiy888032c2008-04-04 23:42:09 +0400779 smp_scan_config(address, 0x400, reserve);
780}
781
782void __init early_find_smp_config(void)
783{
784 __find_smp_config(0);
785}
786
787void __init find_smp_config(void)
788{
789 __find_smp_config(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790}
791
792/* --------------------------------------------------------------------------
793 ACPI-based MP Configuration
794 -------------------------------------------------------------------------- */
795
Len Brown888ba6c2005-08-24 12:07:20 -0400796#ifdef CONFIG_ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
Len Brown84663612005-08-24 12:09:07 -0400798#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
800#define MP_ISA_BUS 0
801#define MP_MAX_IOAPIC_PIN 127
802
Alexey Starikovskiy9e5c5f12008-04-04 23:41:26 +0400803extern struct mp_ioapic_routing mp_ioapic_routing[MAX_IO_APICS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400805static int mp_find_ioapic(int gsi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806{
Andi Kleen19f03ff2006-09-26 10:52:30 +0200807 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
809 /* Find the IOAPIC that manages this GSI. */
810 for (i = 0; i < nr_ioapics; i++) {
811 if ((gsi >= mp_ioapic_routing[i].gsi_base)
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400812 && (gsi <= mp_ioapic_routing[i].gsi_end))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 return i;
814 }
815
816 printk(KERN_ERR "ERROR: Unable to locate IOAPIC for GSI %d\n", gsi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 return -1;
818}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
Alexey Starikovskiye3e3ffa2008-03-17 22:08:11 +0300820static u8 uniq_ioapic_id(u8 id)
821{
Alexey Starikovskiy22cbb4b2008-04-04 23:42:53 +0400822#ifdef CONFIG_X86_32
Alexey Starikovskiye3e3ffa2008-03-17 22:08:11 +0300823 if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
824 !APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
825 return io_apic_get_unique_id(nr_ioapics, id);
826 else
827 return id;
Alexey Starikovskiy22cbb4b2008-04-04 23:42:53 +0400828#else
829 int i;
830 DECLARE_BITMAP(used, 256);
831 bitmap_zero(used, 256);
832 for (i = 0; i < nr_ioapics; i++) {
833 struct mpc_config_ioapic *ia = &mp_ioapics[i];
834 __set_bit(ia->mpc_apicid, used);
835 }
836 if (!test_bit(id, used))
837 return id;
838 return find_first_zero_bit(used, 256);
839#endif
Alexey Starikovskiye3e3ffa2008-03-17 22:08:11 +0300840}
841
Jack Steinera65d1d62008-03-28 14:12:08 -0500842void __init mp_register_ioapic(int id, u32 address, u32 gsi_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843{
Andi Kleen19f03ff2006-09-26 10:52:30 +0200844 int idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
Alexey Starikovskiy857033a2008-03-17 22:08:05 +0300846 if (bad_ioapic(address))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
Alexey Starikovskiye3e3ffa2008-03-17 22:08:11 +0300849 idx = nr_ioapics;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
851 mp_ioapics[idx].mpc_type = MP_IOAPIC;
852 mp_ioapics[idx].mpc_flags = MPC_APIC_USABLE;
853 mp_ioapics[idx].mpc_apicaddr = address;
854
855 set_fixmap_nocache(FIX_IO_APIC_BASE_0 + idx, address);
Alexey Starikovskiye3e3ffa2008-03-17 22:08:11 +0300856 mp_ioapics[idx].mpc_apicid = uniq_ioapic_id(id);
Alexey Starikovskiy57b733e2008-04-04 23:43:00 +0400857#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 mp_ioapics[idx].mpc_apicver = io_apic_get_version(idx);
Alexey Starikovskiy57b733e2008-04-04 23:43:00 +0400859#else
860 mp_ioapics[idx].mpc_apicver = 0;
861#endif
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400862 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 * Build basic GSI lookup table to facilitate gsi->io_apic lookups
864 * and to prevent reprogramming of IOAPIC pins (PCI GSIs).
865 */
866 mp_ioapic_routing[idx].apic_id = mp_ioapics[idx].mpc_apicid;
867 mp_ioapic_routing[idx].gsi_base = gsi_base;
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100868 mp_ioapic_routing[idx].gsi_end = gsi_base +
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400869 io_apic_get_redir_entries(idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
Alexey Starikovskiy57b733e2008-04-04 23:43:00 +0400871 printk(KERN_INFO "IOAPIC[%d]: apic_id %d, version %d, address 0x%x, "
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100872 "GSI %d-%d\n", idx, mp_ioapics[idx].mpc_apicid,
Alexey Starikovskiy57b733e2008-04-04 23:43:00 +0400873 mp_ioapics[idx].mpc_apicver, mp_ioapics[idx].mpc_apicaddr,
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400874 mp_ioapic_routing[idx].gsi_base, mp_ioapic_routing[idx].gsi_end);
Alexey Starikovskiye3e3ffa2008-03-17 22:08:11 +0300875
876 nr_ioapics++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877}
878
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400879void __init mp_override_legacy_irq(u8 bus_irq, u8 polarity, u8 trigger, u32 gsi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880{
881 struct mpc_config_intsrc intsrc;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400882 int ioapic = -1;
883 int pin = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400885 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 * Convert 'gsi' to 'ioapic.pin'.
887 */
888 ioapic = mp_find_ioapic(gsi);
889 if (ioapic < 0)
890 return;
891 pin = gsi - mp_ioapic_routing[ioapic].gsi_base;
892
893 /*
894 * TBD: This check is for faulty timer entries, where the override
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400895 * erroneously sets the trigger to level, resulting in a HUGE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 * increase of timer interrupts!
897 */
898 if ((bus_irq == 0) && (trigger == 3))
899 trigger = 1;
900
901 intsrc.mpc_type = MP_INTSRC;
902 intsrc.mpc_irqtype = mp_INT;
903 intsrc.mpc_irqflag = (trigger << 2) | polarity;
904 intsrc.mpc_srcbus = MP_ISA_BUS;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400905 intsrc.mpc_srcbusirq = bus_irq; /* IRQ */
906 intsrc.mpc_dstapic = mp_ioapics[ioapic].mpc_apicid; /* APIC ID */
907 intsrc.mpc_dstirq = pin; /* INTIN# */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
909 Dprintk("Int: type %d, pol %d, trig %d, bus %d, irq %d, %d-%d\n",
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400910 intsrc.mpc_irqtype, intsrc.mpc_irqflag & 3,
911 (intsrc.mpc_irqflag >> 2) & 3, intsrc.mpc_srcbus,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 intsrc.mpc_srcbusirq, intsrc.mpc_dstapic, intsrc.mpc_dstirq);
913
914 mp_irqs[mp_irq_entries] = intsrc;
915 if (++mp_irq_entries == MAX_IRQ_SOURCES)
916 panic("Max # of irq sources exceeded!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917}
918
Alexey Starikovskiy2df29722008-03-27 23:53:54 +0300919int es7000_plat;
920
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400921void __init mp_config_acpi_legacy_irqs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922{
923 struct mpc_config_intsrc intsrc;
Andi Kleen19f03ff2006-09-26 10:52:30 +0200924 int i = 0;
925 int ioapic = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300927#if defined (CONFIG_MCA) || defined (CONFIG_EISA)
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400928 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 * Fabricate the legacy ISA bus (bus #31).
930 */
931 mp_bus_id_to_type[MP_ISA_BUS] = MP_BUS_ISA;
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300932#endif
Alexey Starikovskiya6333c32008-03-20 14:54:09 +0300933 set_bit(MP_ISA_BUS, mp_bus_not_pci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 Dprintk("Bus #%d is ISA\n", MP_ISA_BUS);
935
936 /*
937 * Older generations of ES7000 have no legacy identity mappings
938 */
939 if (es7000_plat == 1)
940 return;
941
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400942 /*
943 * Locate the IOAPIC that manages the ISA IRQs (0-15).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 */
945 ioapic = mp_find_ioapic(0);
946 if (ioapic < 0)
947 return;
948
949 intsrc.mpc_type = MP_INTSRC;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400950 intsrc.mpc_irqflag = 0; /* Conforming */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 intsrc.mpc_srcbus = MP_ISA_BUS;
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400952#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 intsrc.mpc_dstapic = mp_ioapics[ioapic].mpc_apicid;
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400954#endif
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400955 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 * Use the default configuration for the IRQs 0-15. Unless
Simon Arlott27b46d72007-10-20 01:13:56 +0200957 * overridden by (MADT) interrupt source override entries.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 */
959 for (i = 0; i < 16; i++) {
960 int idx;
961
962 for (idx = 0; idx < mp_irq_entries; idx++) {
963 struct mpc_config_intsrc *irq = mp_irqs + idx;
964
965 /* Do we already have a mapping for this ISA IRQ? */
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400966 if (irq->mpc_srcbus == MP_ISA_BUS
967 && irq->mpc_srcbusirq == i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 break;
969
970 /* Do we already have a mapping for this IOAPIC pin */
971 if ((irq->mpc_dstapic == intsrc.mpc_dstapic) &&
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400972 (irq->mpc_dstirq == i))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 break;
974 }
975
976 if (idx != mp_irq_entries) {
977 printk(KERN_DEBUG "ACPI: IRQ%d used by override.\n", i);
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400978 continue; /* IRQ already used */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 }
980
981 intsrc.mpc_irqtype = mp_INT;
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400982 intsrc.mpc_srcbusirq = i; /* Identity mapped */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 intsrc.mpc_dstirq = i;
984
985 Dprintk("Int: type %d, pol %d, trig %d, bus %d, irq %d, "
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +0400986 "%d-%d\n", intsrc.mpc_irqtype, intsrc.mpc_irqflag & 3,
987 (intsrc.mpc_irqflag >> 2) & 3, intsrc.mpc_srcbus,
988 intsrc.mpc_srcbusirq, intsrc.mpc_dstapic,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 intsrc.mpc_dstirq);
990
991 mp_irqs[mp_irq_entries] = intsrc;
992 if (++mp_irq_entries == MAX_IRQ_SOURCES)
993 panic("Max # of irq sources exceeded!\n");
994 }
995}
996
Andi Kleen19f03ff2006-09-26 10:52:30 +0200997int mp_register_gsi(u32 gsi, int triggering, int polarity)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998{
Andi Kleen19f03ff2006-09-26 10:52:30 +0200999 int ioapic = -1;
1000 int ioapic_pin = 0;
1001 int idx, bit = 0;
Alexey Starikovskiycfa08d62008-04-04 23:43:12 +04001002#ifdef CONFIG_X86_32
1003#define MAX_GSI_NUM 4096
1004#define IRQ_COMPRESSION_START 64
1005
Len Brown2ba7dee2008-01-30 13:31:02 +01001006 static int pci_irq = IRQ_COMPRESSION_START;
Natalie Protasevichc434b7a2005-06-23 00:08:29 -07001007 /*
Joe Perchesab4a5742008-01-30 13:31:42 +01001008 * Mapping between Global System Interrupts, which
Natalie Protasevichc434b7a2005-06-23 00:08:29 -07001009 * represent all possible interrupts, and IRQs
1010 * assigned to actual devices.
1011 */
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +04001012 static int gsi_to_irq[MAX_GSI_NUM];
Alexey Starikovskiycfa08d62008-04-04 23:43:12 +04001013#else
1014
1015 if (acpi_irq_model != ACPI_IRQ_MODEL_IOAPIC)
1016 return gsi;
1017#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 /* Don't set up the ACPI SCI because it's already set up */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001020 if (acpi_gbl_FADT.sci_interrupt == gsi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 return gsi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
1023 ioapic = mp_find_ioapic(gsi);
1024 if (ioapic < 0) {
1025 printk(KERN_WARNING "No IOAPIC for GSI %u\n", gsi);
1026 return gsi;
1027 }
1028
1029 ioapic_pin = gsi - mp_ioapic_routing[ioapic].gsi_base;
1030
Alexey Starikovskiycfa08d62008-04-04 23:43:12 +04001031#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 if (ioapic_renumber_irq)
1033 gsi = ioapic_renumber_irq(ioapic, gsi);
Alexey Starikovskiycfa08d62008-04-04 23:43:12 +04001034#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +04001036 /*
1037 * Avoid pin reprogramming. PRTs typically include entries
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 * with redundant pin->gsi mappings (but unique PCI devices);
1039 * we only program the IOAPIC on the first.
1040 */
1041 bit = ioapic_pin % 32;
1042 idx = (ioapic_pin < 32) ? 0 : (ioapic_pin / 32);
1043 if (idx > 3) {
1044 printk(KERN_ERR "Invalid reference to IOAPIC pin "
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +04001045 "%d-%d\n", mp_ioapic_routing[ioapic].apic_id,
1046 ioapic_pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 return gsi;
1048 }
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +04001049 if ((1 << bit) & mp_ioapic_routing[ioapic].pin_programmed[idx]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 Dprintk(KERN_DEBUG "Pin %d-%d already programmed\n",
1051 mp_ioapic_routing[ioapic].apic_id, ioapic_pin);
Alexey Starikovskiycfa08d62008-04-04 23:43:12 +04001052#ifdef CONFIG_X86_32
Len Brown2ba7dee2008-01-30 13:31:02 +01001053 return (gsi < IRQ_COMPRESSION_START ? gsi : gsi_to_irq[gsi]);
Alexey Starikovskiycfa08d62008-04-04 23:43:12 +04001054#else
1055 return gsi;
1056#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 }
1058
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +04001059 mp_ioapic_routing[ioapic].pin_programmed[idx] |= (1 << bit);
Alexey Starikovskiycfa08d62008-04-04 23:43:12 +04001060#ifdef CONFIG_X86_32
Len Brown2ba7dee2008-01-30 13:31:02 +01001061 /*
1062 * For GSI >= 64, use IRQ compression
1063 */
1064 if ((gsi >= IRQ_COMPRESSION_START)
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +04001065 && (triggering == ACPI_LEVEL_SENSITIVE)) {
Natalie Protasevichc434b7a2005-06-23 00:08:29 -07001066 /*
1067 * For PCI devices assign IRQs in order, avoiding gaps
1068 * due to unused I/O APIC pins.
1069 */
1070 int irq = gsi;
1071 if (gsi < MAX_GSI_NUM) {
Kimball Murraye0c1e9b2006-05-08 15:17:16 +02001072 /*
1073 * Retain the VIA chipset work-around (gsi > 15), but
1074 * avoid a problem where the 8254 timer (IRQ0) is setup
1075 * via an override (so it's not on pin 0 of the ioapic),
1076 * and at the same time, the pin 0 interrupt is a PCI
1077 * type. The gsi > 15 test could cause these two pins
1078 * to be shared as IRQ0, and they are not shareable.
1079 * So test for this condition, and if necessary, avoid
1080 * the pin collision.
1081 */
Adrian Bunkede13892008-03-17 22:29:32 +02001082 gsi = pci_irq++;
Natalie.Protasevich@unisys.come1afc3f2005-07-29 14:03:32 -07001083 /*
1084 * Don't assign IRQ used by ACPI SCI
1085 */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001086 if (gsi == acpi_gbl_FADT.sci_interrupt)
Natalie.Protasevich@unisys.come1afc3f2005-07-29 14:03:32 -07001087 gsi = pci_irq++;
Natalie Protasevichc434b7a2005-06-23 00:08:29 -07001088 gsi_to_irq[irq] = gsi;
1089 } else {
1090 printk(KERN_ERR "GSI %u is too high\n", gsi);
1091 return gsi;
1092 }
1093 }
Alexey Starikovskiycfa08d62008-04-04 23:43:12 +04001094#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 io_apic_set_pci_routing(ioapic, ioapic_pin, gsi,
Alexey Starikovskiy4ef81292008-04-04 23:42:03 +04001096 triggering == ACPI_EDGE_SENSITIVE ? 0 : 1,
1097 polarity == ACPI_ACTIVE_HIGH ? 0 : 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 return gsi;
1099}
1100
Len Brown84663612005-08-24 12:09:07 -04001101#endif /* CONFIG_X86_IO_APIC */
Len Brown888ba6c2005-08-24 12:07:20 -04001102#endif /* CONFIG_ACPI */