blob: 03ef1a8b53e8efd81ad67b49ce85e1e16ac378f8 [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/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/bootmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/kernel_stat.h>
21#include <linux/mc146818rtc.h>
22#include <linux/acpi.h>
Christoph Lameter8c5a0902005-06-23 00:08:18 -070023#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25#include <asm/smp.h>
26#include <asm/mtrr.h>
27#include <asm/mpspec.h>
28#include <asm/pgalloc.h>
29#include <asm/io_apic.h>
30#include <asm/proto.h>
Andi Kleen8d916402005-05-31 14:39:26 -070031#include <asm/acpi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Glauber de Oliveira Costaf6bc4022008-03-19 14:25:53 -030033#include <mach_apic.h>
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035/* Have we found an MP table */
36int smp_found_config;
Glauber Costa89b08202008-03-03 14:13:08 -030037unsigned int __cpuinitdata maxcpus = NR_CPUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Linus Torvalds1da177e2005-04-16 15:20:36 -070039/*
40 * Various Linux-internal data structures created from the
41 * MP-table.
42 */
Andi Kleen55f05ff2006-09-26 10:52:30 +020043DECLARE_BITMAP(mp_bus_not_pci, MAX_MP_BUSSES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044int mp_bus_id_to_pci_bus [MAX_MP_BUSSES] = { [0 ... MAX_MP_BUSSES-1] = -1 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46static int mp_current_pci_id = 0;
47/* I/O APIC entries */
48struct mpc_config_ioapic mp_ioapics[MAX_IO_APICS];
49
50/* # of MP IRQ source entries */
51struct mpc_config_intsrc mp_irqs[MAX_IRQ_SOURCES];
52
53/* MP IRQ source entries */
54int mp_irq_entries;
55
56int nr_ioapics;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057unsigned long mp_lapic_addr = 0;
58
59
60
61/* Processor that is doing the boot up */
62unsigned int boot_cpu_id = -1U;
Mike Travis71b31232007-10-19 20:35:03 +020063EXPORT_SYMBOL(boot_cpu_id);
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065/* Internal processor count */
Sam Ravnborg87d7e982008-01-30 13:33:37 +010066unsigned int num_processors;
Andi Kleen420f8f62005-11-05 17:25:54 +010067
Sam Ravnborg43999d92007-03-16 21:07:36 +010068unsigned disabled_cpus __cpuinitdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70/* Bitmask of physically existing CPUs */
71physid_mask_t phys_cpu_present_map = PHYSID_MASK_NONE;
72
travis@sgi.come8c10ef2008-01-30 13:33:12 +010073u16 x86_bios_cpu_apicid_init[NR_CPUS] __initdata
74 = { [0 ... NR_CPUS-1] = BAD_APICID };
75void *x86_bios_cpu_apicid_early_ptr;
76DEFINE_PER_CPU(u16, x86_bios_cpu_apicid) = BAD_APICID;
77EXPORT_PER_CPU_SYMBOL(x86_bios_cpu_apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79
80/*
81 * Intel MP BIOS table parsing routines:
82 */
83
84/*
85 * Checksum an MP configuration block.
86 */
87
88static int __init mpf_checksum(unsigned char *mp, int len)
89{
90 int sum = 0;
91
92 while (len--)
93 sum += *mp++;
94
95 return sum & 0xFF;
96}
97
Mike Travis71fff5e2007-10-19 20:35:03 +020098static void __cpuinit MP_processor_info(struct mpc_config_processor *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099{
Andi Kleen88931662005-11-05 17:25:54 +0100100 int cpu;
Ashok Raj51f62e12006-03-25 16:29:28 +0100101 cpumask_t tmp_map;
Andi Kleenf2c2cca2006-09-26 10:52:37 +0200102 char *bootup_cpu = "";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Andi Kleen420f8f62005-11-05 17:25:54 +0100104 if (!(m->mpc_cpuflag & CPU_ENABLED)) {
105 disabled_cpus++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 return;
Andi Kleen420f8f62005-11-05 17:25:54 +0100107 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 if (m->mpc_cpuflag & CPU_BOOTPROCESSOR) {
Andi Kleenf2c2cca2006-09-26 10:52:37 +0200109 bootup_cpu = " (Bootup-CPU)";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 boot_cpu_id = m->mpc_apicid;
111 }
Andi Kleenf2c2cca2006-09-26 10:52:37 +0200112
113 printk(KERN_INFO "Processor #%d%s\n", m->mpc_apicid, bootup_cpu);
114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 if (num_processors >= NR_CPUS) {
116 printk(KERN_WARNING "WARNING: NR_CPUS limit of %i reached."
117 " Processor ignored.\n", NR_CPUS);
118 return;
119 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Glauber Costa89b08202008-03-03 14:13:08 -0300121 if (num_processors >= maxcpus) {
122 printk(KERN_WARNING "WARNING: maxcpus limit of %i reached."
123 " Processor ignored.\n", maxcpus);
124 return;
125 }
126
Ashok Raj51f62e12006-03-25 16:29:28 +0100127 num_processors++;
128 cpus_complement(tmp_map, cpu_present_map);
129 cpu = first_cpu(tmp_map);
130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 physid_set(m->mpc_apicid, phys_cpu_present_map);
Andi Kleen18a2b642005-05-16 21:53:35 -0700132 if (m->mpc_cpuflag & CPU_BOOTPROCESSOR) {
133 /*
Mike Travis693e3c52008-01-30 13:33:14 +0100134 * x86_bios_cpu_apicid is required to have processors listed
Andi Kleen18a2b642005-05-16 21:53:35 -0700135 * in same order as logical cpu numbers. Hence the first
136 * entry is BSP, and so on.
137 */
Andi Kleen61b1b2d2005-07-28 21:15:27 -0700138 cpu = 0;
Ashok Raj51f62e12006-03-25 16:29:28 +0100139 }
travis@sgi.com3b419082008-01-30 13:33:11 +0100140 /* are we being called early in kernel startup? */
141 if (x86_cpu_to_apicid_early_ptr) {
Mike Travis693e3c52008-01-30 13:33:14 +0100142 u16 *cpu_to_apicid = x86_cpu_to_apicid_early_ptr;
143 u16 *bios_cpu_apicid = x86_bios_cpu_apicid_early_ptr;
travis@sgi.come8c10ef2008-01-30 13:33:12 +0100144
145 cpu_to_apicid[cpu] = m->mpc_apicid;
146 bios_cpu_apicid[cpu] = m->mpc_apicid;
Mike Travis71fff5e2007-10-19 20:35:03 +0200147 } else {
148 per_cpu(x86_cpu_to_apicid, cpu) = m->mpc_apicid;
travis@sgi.come8c10ef2008-01-30 13:33:12 +0100149 per_cpu(x86_bios_cpu_apicid, cpu) = m->mpc_apicid;
Mike Travis71fff5e2007-10-19 20:35:03 +0200150 }
Andi Kleen61b1b2d2005-07-28 21:15:27 -0700151
152 cpu_set(cpu, cpu_possible_map);
153 cpu_set(cpu, cpu_present_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154}
155
156static void __init MP_bus_info (struct mpc_config_bus *m)
157{
158 char str[7];
159
160 memcpy(str, m->mpc_bustype, 6);
161 str[6] = 0;
162 Dprintk("Bus #%d is %s\n", m->mpc_busid, str);
163
164 if (strncmp(str, "ISA", 3) == 0) {
Andi Kleen55f05ff2006-09-26 10:52:30 +0200165 set_bit(m->mpc_busid, mp_bus_not_pci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 } else if (strncmp(str, "PCI", 3) == 0) {
Andi Kleen55f05ff2006-09-26 10:52:30 +0200167 clear_bit(m->mpc_busid, mp_bus_not_pci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 mp_bus_id_to_pci_bus[m->mpc_busid] = mp_current_pci_id;
169 mp_current_pci_id++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 } else {
171 printk(KERN_ERR "Unknown bustype %s\n", str);
172 }
173}
174
Andi Kleen013bf2c2006-09-30 01:47:55 +0200175static int bad_ioapic(unsigned long address)
176{
177 if (nr_ioapics >= MAX_IO_APICS) {
178 printk(KERN_ERR "ERROR: Max # of I/O APICs (%d) exceeded "
179 "(found %d)\n", MAX_IO_APICS, nr_ioapics);
180 panic("Recompile kernel with bigger MAX_IO_APICS!\n");
181 }
182 if (!address) {
183 printk(KERN_ERR "WARNING: Bogus (zero) I/O APIC address"
184 " found in table, skipping!\n");
185 return 1;
186 }
187 return 0;
188}
189
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190static void __init MP_ioapic_info (struct mpc_config_ioapic *m)
191{
192 if (!(m->mpc_flags & MPC_APIC_USABLE))
193 return;
194
Andi Kleenf2c2cca2006-09-26 10:52:37 +0200195 printk("I/O APIC #%d at 0x%X.\n",
196 m->mpc_apicid, m->mpc_apicaddr);
Andi Kleen013bf2c2006-09-30 01:47:55 +0200197
198 if (bad_ioapic(m->mpc_apicaddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 return;
Andi Kleen013bf2c2006-09-30 01:47:55 +0200200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 mp_ioapics[nr_ioapics] = *m;
202 nr_ioapics++;
203}
204
205static void __init MP_intsrc_info (struct mpc_config_intsrc *m)
206{
207 mp_irqs [mp_irq_entries] = *m;
208 Dprintk("Int: type %d, pol %d, trig %d, bus %d,"
209 " IRQ %02x, APIC ID %x, APIC INT %02x\n",
210 m->mpc_irqtype, m->mpc_irqflag & 3,
211 (m->mpc_irqflag >> 2) & 3, m->mpc_srcbus,
212 m->mpc_srcbusirq, m->mpc_dstapic, m->mpc_dstirq);
James Cleverdon6004e1b2005-11-05 17:25:53 +0100213 if (++mp_irq_entries >= MAX_IRQ_SOURCES)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 panic("Max # of irq sources exceeded!!\n");
215}
216
217static void __init MP_lintsrc_info (struct mpc_config_lintsrc *m)
218{
219 Dprintk("Lint: type %d, pol %d, trig %d, bus %d,"
220 " IRQ %02x, APIC ID %x, APIC LINT %02x\n",
221 m->mpc_irqtype, m->mpc_irqflag & 3,
222 (m->mpc_irqflag >> 2) &3, m->mpc_srcbusid,
223 m->mpc_srcbusirq, m->mpc_destapic, m->mpc_destapiclint);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224}
225
226/*
227 * Read/parse the MPC
228 */
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800229static int __init smp_read_mpc(struct mp_config_table *mpc, unsigned early)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230{
231 char str[16];
232 int count=sizeof(*mpc);
233 unsigned char *mpt=((unsigned char *)mpc)+count;
234
235 if (memcmp(mpc->mpc_signature,MPC_SIGNATURE,4)) {
Andi Kleenaecc6362006-09-26 10:52:37 +0200236 printk("MPTABLE: bad signature [%c%c%c%c]!\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 mpc->mpc_signature[0],
238 mpc->mpc_signature[1],
239 mpc->mpc_signature[2],
240 mpc->mpc_signature[3]);
241 return 0;
242 }
243 if (mpf_checksum((unsigned char *)mpc,mpc->mpc_length)) {
Andi Kleenaecc6362006-09-26 10:52:37 +0200244 printk("MPTABLE: checksum error!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 return 0;
246 }
247 if (mpc->mpc_spec!=0x01 && mpc->mpc_spec!=0x04) {
Andi Kleenaecc6362006-09-26 10:52:37 +0200248 printk(KERN_ERR "MPTABLE: bad table version (%d)!!\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 mpc->mpc_spec);
250 return 0;
251 }
252 if (!mpc->mpc_lapic) {
Andi Kleenaecc6362006-09-26 10:52:37 +0200253 printk(KERN_ERR "MPTABLE: null local APIC address!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 return 0;
255 }
256 memcpy(str,mpc->mpc_oem,8);
Andi Kleenaecc6362006-09-26 10:52:37 +0200257 str[8] = 0;
258 printk(KERN_INFO "MPTABLE: OEM ID: %s ",str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
260 memcpy(str,mpc->mpc_productid,12);
Andi Kleenaecc6362006-09-26 10:52:37 +0200261 str[12] = 0;
262 printk("MPTABLE: Product ID: %s ",str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Andi Kleenaecc6362006-09-26 10:52:37 +0200264 printk("MPTABLE: APIC at: 0x%X\n",mpc->mpc_lapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
266 /* save the local APIC address, it might be non-default */
267 if (!acpi_lapic)
Andi Kleenaecc6362006-09-26 10:52:37 +0200268 mp_lapic_addr = mpc->mpc_lapic;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800270 if (early)
271 return 1;
272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 /*
274 * Now process the configuration blocks.
275 */
276 while (count < mpc->mpc_length) {
277 switch(*mpt) {
278 case MP_PROCESSOR:
279 {
280 struct mpc_config_processor *m=
281 (struct mpc_config_processor *)mpt;
282 if (!acpi_lapic)
Andi Kleenaecc6362006-09-26 10:52:37 +0200283 MP_processor_info(m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 mpt += sizeof(*m);
285 count += sizeof(*m);
286 break;
287 }
288 case MP_BUS:
289 {
290 struct mpc_config_bus *m=
291 (struct mpc_config_bus *)mpt;
292 MP_bus_info(m);
293 mpt += sizeof(*m);
294 count += sizeof(*m);
295 break;
296 }
297 case MP_IOAPIC:
298 {
299 struct mpc_config_ioapic *m=
300 (struct mpc_config_ioapic *)mpt;
301 MP_ioapic_info(m);
Andi Kleenaecc6362006-09-26 10:52:37 +0200302 mpt += sizeof(*m);
303 count += sizeof(*m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 break;
305 }
306 case MP_INTSRC:
307 {
308 struct mpc_config_intsrc *m=
309 (struct mpc_config_intsrc *)mpt;
310
311 MP_intsrc_info(m);
Andi Kleenaecc6362006-09-26 10:52:37 +0200312 mpt += sizeof(*m);
313 count += sizeof(*m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 break;
315 }
316 case MP_LINTSRC:
317 {
318 struct mpc_config_lintsrc *m=
319 (struct mpc_config_lintsrc *)mpt;
320 MP_lintsrc_info(m);
Andi Kleenaecc6362006-09-26 10:52:37 +0200321 mpt += sizeof(*m);
322 count += sizeof(*m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 break;
324 }
325 }
326 }
Ingo Molnar3c43f032007-05-02 19:27:04 +0200327 setup_apic_routing();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 if (!num_processors)
Andi Kleenaecc6362006-09-26 10:52:37 +0200329 printk(KERN_ERR "MPTABLE: no processors registered!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 return num_processors;
331}
332
333static int __init ELCR_trigger(unsigned int irq)
334{
335 unsigned int port;
336
337 port = 0x4d0 + (irq >> 3);
338 return (inb(port) >> (irq & 7)) & 1;
339}
340
341static void __init construct_default_ioirq_mptable(int mpc_default_type)
342{
343 struct mpc_config_intsrc intsrc;
344 int i;
345 int ELCR_fallback = 0;
346
347 intsrc.mpc_type = MP_INTSRC;
348 intsrc.mpc_irqflag = 0; /* conforming */
349 intsrc.mpc_srcbus = 0;
350 intsrc.mpc_dstapic = mp_ioapics[0].mpc_apicid;
351
352 intsrc.mpc_irqtype = mp_INT;
353
354 /*
355 * If true, we have an ISA/PCI system with no IRQ entries
356 * in the MP table. To prevent the PCI interrupts from being set up
357 * incorrectly, we try to use the ELCR. The sanity check to see if
358 * there is good ELCR data is very simple - IRQ0, 1, 2 and 13 can
359 * never be level sensitive, so we simply see if the ELCR agrees.
360 * If it does, we assume it's valid.
361 */
362 if (mpc_default_type == 5) {
363 printk(KERN_INFO "ISA/PCI bus type with no IRQ information... falling back to ELCR\n");
364
365 if (ELCR_trigger(0) || ELCR_trigger(1) || ELCR_trigger(2) || ELCR_trigger(13))
366 printk(KERN_ERR "ELCR contains invalid data... not using ELCR\n");
367 else {
368 printk(KERN_INFO "Using ELCR to identify PCI interrupts\n");
369 ELCR_fallback = 1;
370 }
371 }
372
373 for (i = 0; i < 16; i++) {
374 switch (mpc_default_type) {
375 case 2:
376 if (i == 0 || i == 13)
377 continue; /* IRQ0 & IRQ13 not connected */
378 /* fall through */
379 default:
380 if (i == 2)
381 continue; /* IRQ2 is never connected */
382 }
383
384 if (ELCR_fallback) {
385 /*
386 * If the ELCR indicates a level-sensitive interrupt, we
387 * copy that information over to the MP table in the
388 * irqflag field (level sensitive, active high polarity).
389 */
390 if (ELCR_trigger(i))
391 intsrc.mpc_irqflag = 13;
392 else
393 intsrc.mpc_irqflag = 0;
394 }
395
396 intsrc.mpc_srcbusirq = i;
397 intsrc.mpc_dstirq = i ? i : 2; /* IRQ0 to INTIN2 */
398 MP_intsrc_info(&intsrc);
399 }
400
401 intsrc.mpc_irqtype = mp_ExtINT;
402 intsrc.mpc_srcbusirq = 0;
403 intsrc.mpc_dstirq = 0; /* 8259A to INTIN0 */
404 MP_intsrc_info(&intsrc);
405}
406
407static inline void __init construct_default_ISA_mptable(int mpc_default_type)
408{
409 struct mpc_config_processor processor;
410 struct mpc_config_bus bus;
411 struct mpc_config_ioapic ioapic;
412 struct mpc_config_lintsrc lintsrc;
413 int linttypes[2] = { mp_ExtINT, mp_NMI };
414 int i;
415
416 /*
417 * local APIC has default address
418 */
419 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
420
421 /*
422 * 2 CPUs, numbered 0 & 1.
423 */
424 processor.mpc_type = MP_PROCESSOR;
Andi Kleenf2c2cca2006-09-26 10:52:37 +0200425 processor.mpc_apicver = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 processor.mpc_cpuflag = CPU_ENABLED;
Andi Kleenf2c2cca2006-09-26 10:52:37 +0200427 processor.mpc_cpufeature = 0;
428 processor.mpc_featureflag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 processor.mpc_reserved[0] = 0;
430 processor.mpc_reserved[1] = 0;
431 for (i = 0; i < 2; i++) {
432 processor.mpc_apicid = i;
433 MP_processor_info(&processor);
434 }
435
436 bus.mpc_type = MP_BUS;
437 bus.mpc_busid = 0;
438 switch (mpc_default_type) {
439 default:
440 printk(KERN_ERR "???\nUnknown standard configuration %d\n",
441 mpc_default_type);
442 /* fall through */
443 case 1:
444 case 5:
445 memcpy(bus.mpc_bustype, "ISA ", 6);
446 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 }
448 MP_bus_info(&bus);
449 if (mpc_default_type > 4) {
450 bus.mpc_busid = 1;
451 memcpy(bus.mpc_bustype, "PCI ", 6);
452 MP_bus_info(&bus);
453 }
454
455 ioapic.mpc_type = MP_IOAPIC;
456 ioapic.mpc_apicid = 2;
Andi Kleenf2c2cca2006-09-26 10:52:37 +0200457 ioapic.mpc_apicver = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 ioapic.mpc_flags = MPC_APIC_USABLE;
459 ioapic.mpc_apicaddr = 0xFEC00000;
460 MP_ioapic_info(&ioapic);
461
462 /*
463 * We set up most of the low 16 IO-APIC pins according to MPS rules.
464 */
465 construct_default_ioirq_mptable(mpc_default_type);
466
467 lintsrc.mpc_type = MP_LINTSRC;
468 lintsrc.mpc_irqflag = 0; /* conforming */
469 lintsrc.mpc_srcbusid = 0;
470 lintsrc.mpc_srcbusirq = 0;
471 lintsrc.mpc_destapic = MP_APIC_ALL;
472 for (i = 0; i < 2; i++) {
473 lintsrc.mpc_irqtype = linttypes[i];
474 lintsrc.mpc_destapiclint = i;
475 MP_lintsrc_info(&lintsrc);
476 }
477}
478
479static struct intel_mp_floating *mpf_found;
480
481/*
482 * Scan the memory blocks for an SMP configuration block.
483 */
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800484static void __init __get_smp_config(unsigned early)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485{
486 struct intel_mp_floating *mpf = mpf_found;
487
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800488 if (acpi_lapic && early)
489 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 /*
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800491 * ACPI supports both logical (e.g. Hyper-Threading) and physical
492 * processors, where MPS only supports physical.
493 */
494 if (acpi_lapic && acpi_ioapic) {
495 printk(KERN_INFO "Using ACPI (MADT) for SMP configuration "
496 "information\n");
497 return;
498 } else if (acpi_lapic)
499 printk(KERN_INFO "Using ACPI for processor (LAPIC) "
500 "configuration information\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800502 printk(KERN_INFO "Intel MultiProcessor Specification v1.%d\n",
503 mpf->mpf_specification);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
505 /*
506 * Now see if we need to read further.
507 */
508 if (mpf->mpf_feature1 != 0) {
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800509 if (early) {
510 /*
511 * local APIC has default address
512 */
513 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
514 return;
515 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
517 printk(KERN_INFO "Default MP configuration #%d\n", mpf->mpf_feature1);
518 construct_default_ISA_mptable(mpf->mpf_feature1);
519
520 } else if (mpf->mpf_physptr) {
521
522 /*
523 * Read the physical hardware table. Anything here will
524 * override the defaults.
525 */
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800526 if (!smp_read_mpc(phys_to_virt(mpf->mpf_physptr), early)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 smp_found_config = 0;
528 printk(KERN_ERR "BIOS bug, MP table errors detected!...\n");
529 printk(KERN_ERR "... disabling SMP support. (tell your hw vendor)\n");
530 return;
531 }
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800532
533 if (early)
534 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 /*
536 * If there are no explicit MP IRQ entries, then we are
537 * broken. We set up most of the low 16 IO-APIC pins to
538 * ISA defaults and hope it will work.
539 */
540 if (!mp_irq_entries) {
541 struct mpc_config_bus bus;
542
543 printk(KERN_ERR "BIOS bug, no explicit IRQ entries, using default mptable. (tell your hw vendor)\n");
544
545 bus.mpc_type = MP_BUS;
546 bus.mpc_busid = 0;
547 memcpy(bus.mpc_bustype, "ISA ", 6);
548 MP_bus_info(&bus);
549
550 construct_default_ioirq_mptable(0);
551 }
552
553 } else
554 BUG();
555
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800556 if (!early)
557 printk(KERN_INFO "Processors: %d\n", num_processors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 /*
559 * Only use the first configuration found.
560 */
561}
562
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800563void __init early_get_smp_config(void)
564{
565 __get_smp_config(1);
566}
567
568void __init get_smp_config(void)
569{
570 __get_smp_config(0);
571}
572
573static int __init smp_scan_config(unsigned long base, unsigned long length,
574 unsigned reserve)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575{
576 extern void __bad_mpf_size(void);
577 unsigned int *bp = phys_to_virt(base);
578 struct intel_mp_floating *mpf;
579
580 Dprintk("Scan SMP from %p for %ld bytes.\n", bp,length);
581 if (sizeof(*mpf) != 16)
582 __bad_mpf_size();
583
584 while (length > 0) {
585 mpf = (struct intel_mp_floating *)bp;
586 if ((*bp == SMP_MAGIC_IDENT) &&
587 (mpf->mpf_length == 1) &&
588 !mpf_checksum((unsigned char *)bp, 16) &&
589 ((mpf->mpf_specification == 1)
590 || (mpf->mpf_specification == 4)) ) {
591
592 smp_found_config = 1;
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800593 mpf_found = mpf;
594
595 if (!reserve)
596 return 1;
597
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 reserve_bootmem_generic(virt_to_phys(mpf), PAGE_SIZE);
599 if (mpf->mpf_physptr)
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800600 reserve_bootmem_generic(mpf->mpf_physptr,
601 PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 return 1;
603 }
604 bp += 4;
605 length -= 16;
606 }
607 return 0;
608}
609
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800610static void __init __find_smp_config(unsigned reserve)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611{
612 unsigned int address;
613
614 /*
615 * FIXME: Linux assumes you have 640K of base ram..
616 * this continues the error...
617 *
618 * 1) Scan the bottom 1K for a signature
619 * 2) Scan the top 1K of base RAM
620 * 3) Scan the 64K of bios
621 */
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800622 if (smp_scan_config(0x0, 0x400, reserve) ||
623 smp_scan_config(639*0x400, 0x400, reserve) ||
624 smp_scan_config(0xF0000, 0x10000, reserve))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 return;
626 /*
Andi Kleene5099132006-09-26 10:52:29 +0200627 * If it is an SMP machine we should know now.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 *
629 * there is a real-mode segmented pointer pointing to the
630 * 4K EBDA area at 0x40E, calculate and scan it here.
631 *
632 * NOTE! There are Linux loaders that will corrupt the EBDA
633 * area, and as such this kind of SMP config may be less
634 * trustworthy, simply because the SMP table may have been
635 * stomped on during early boot. These loaders are buggy and
636 * should be fixed.
637 */
638
639 address = *(unsigned short *)phys_to_virt(0x40E);
640 address <<= 4;
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800641 if (smp_scan_config(address, 0x1000, reserve))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 return;
643
644 /* If we have come this far, we did not find an MP table */
645 printk(KERN_INFO "No mptable found.\n");
646}
647
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800648void __init early_find_smp_config(void)
649{
650 __find_smp_config(0);
651}
652
653void __init find_smp_config(void)
654{
655 __find_smp_config(1);
656}
657
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658/* --------------------------------------------------------------------------
659 ACPI-based MP Configuration
660 -------------------------------------------------------------------------- */
661
Len Brown888ba6c2005-08-24 12:07:20 -0400662#ifdef CONFIG_ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
Andi Kleenefec3b92006-09-26 10:52:30 +0200664void __init mp_register_lapic_address(u64 address)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665{
666 mp_lapic_addr = (unsigned long) address;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 set_fixmap_nocache(FIX_APIC_BASE, mp_lapic_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 if (boot_cpu_id == -1U)
669 boot_cpu_id = GET_APIC_ID(apic_read(APIC_ID));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670}
671
Andi Kleenefec3b92006-09-26 10:52:30 +0200672void __cpuinit mp_register_lapic (u8 id, u8 enabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673{
674 struct mpc_config_processor processor;
675 int boot_cpu = 0;
676
Andi Kleene4251e12006-09-26 10:52:37 +0200677 if (id == boot_cpu_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 boot_cpu = 1;
679
680 processor.mpc_type = MP_PROCESSOR;
681 processor.mpc_apicid = id;
Andi Kleenf2c2cca2006-09-26 10:52:37 +0200682 processor.mpc_apicver = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 processor.mpc_cpuflag = (enabled ? CPU_ENABLED : 0);
684 processor.mpc_cpuflag |= (boot_cpu ? CPU_BOOTPROCESSOR : 0);
Andi Kleenf2c2cca2006-09-26 10:52:37 +0200685 processor.mpc_cpufeature = 0;
686 processor.mpc_featureflag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 processor.mpc_reserved[0] = 0;
688 processor.mpc_reserved[1] = 0;
689
690 MP_processor_info(&processor);
691}
692
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693#define MP_ISA_BUS 0
694#define MP_MAX_IOAPIC_PIN 127
695
696static struct mp_ioapic_routing {
697 int apic_id;
698 int gsi_start;
699 int gsi_end;
700 u32 pin_programmed[4];
701} mp_ioapic_routing[MAX_IO_APICS];
702
Andi Kleenefec3b92006-09-26 10:52:30 +0200703static int mp_find_ioapic(int gsi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704{
Andi Kleenefec3b92006-09-26 10:52:30 +0200705 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
707 /* Find the IOAPIC that manages this GSI. */
708 for (i = 0; i < nr_ioapics; i++) {
709 if ((gsi >= mp_ioapic_routing[i].gsi_start)
710 && (gsi <= mp_ioapic_routing[i].gsi_end))
711 return i;
712 }
713
714 printk(KERN_ERR "ERROR: Unable to locate IOAPIC for GSI %d\n", gsi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 return -1;
716}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Andi Kleen78b599a2007-07-21 17:09:53 +0200718static u8 uniq_ioapic_id(u8 id)
719{
720 int i;
721 DECLARE_BITMAP(used, 256);
722 bitmap_zero(used, 256);
723 for (i = 0; i < nr_ioapics; i++) {
724 struct mpc_config_ioapic *ia = &mp_ioapics[i];
725 __set_bit(ia->mpc_apicid, used);
726 }
727 if (!test_bit(id, used))
728 return id;
729 return find_first_zero_bit(used, 256);
730}
731
Andi Kleenefec3b92006-09-26 10:52:30 +0200732void __init mp_register_ioapic(u8 id, u32 address, u32 gsi_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733{
Andi Kleenefec3b92006-09-26 10:52:30 +0200734 int idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
Andi Kleen013bf2c2006-09-30 01:47:55 +0200736 if (bad_ioapic(address))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
Andi Kleen78b599a2007-07-21 17:09:53 +0200739 idx = nr_ioapics;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
741 mp_ioapics[idx].mpc_type = MP_IOAPIC;
742 mp_ioapics[idx].mpc_flags = MPC_APIC_USABLE;
743 mp_ioapics[idx].mpc_apicaddr = address;
744
745 set_fixmap_nocache(FIX_IO_APIC_BASE_0 + idx, address);
Andi Kleen78b599a2007-07-21 17:09:53 +0200746 mp_ioapics[idx].mpc_apicid = uniq_ioapic_id(id);
Andi Kleenf2c2cca2006-09-26 10:52:37 +0200747 mp_ioapics[idx].mpc_apicver = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
749 /*
750 * Build basic IRQ lookup table to facilitate gsi->io_apic lookups
751 * and to prevent reprogramming of IOAPIC pins (PCI IRQs).
752 */
753 mp_ioapic_routing[idx].apic_id = mp_ioapics[idx].mpc_apicid;
754 mp_ioapic_routing[idx].gsi_start = gsi_base;
755 mp_ioapic_routing[idx].gsi_end = gsi_base +
756 io_apic_get_redir_entries(idx);
757
Andi Kleenf2c2cca2006-09-26 10:52:37 +0200758 printk(KERN_INFO "IOAPIC[%d]: apic_id %d, address 0x%x, "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 "GSI %d-%d\n", idx, mp_ioapics[idx].mpc_apicid,
Andi Kleenf2c2cca2006-09-26 10:52:37 +0200760 mp_ioapics[idx].mpc_apicaddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 mp_ioapic_routing[idx].gsi_start,
762 mp_ioapic_routing[idx].gsi_end);
Andi Kleen78b599a2007-07-21 17:09:53 +0200763
764 nr_ioapics++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765}
766
Andi Kleenefec3b92006-09-26 10:52:30 +0200767void __init
768mp_override_legacy_irq(u8 bus_irq, u8 polarity, u8 trigger, u32 gsi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769{
770 struct mpc_config_intsrc intsrc;
771 int ioapic = -1;
772 int pin = -1;
773
774 /*
775 * Convert 'gsi' to 'ioapic.pin'.
776 */
777 ioapic = mp_find_ioapic(gsi);
778 if (ioapic < 0)
779 return;
780 pin = gsi - mp_ioapic_routing[ioapic].gsi_start;
781
782 /*
783 * TBD: This check is for faulty timer entries, where the override
784 * erroneously sets the trigger to level, resulting in a HUGE
785 * increase of timer interrupts!
786 */
787 if ((bus_irq == 0) && (trigger == 3))
788 trigger = 1;
789
790 intsrc.mpc_type = MP_INTSRC;
791 intsrc.mpc_irqtype = mp_INT;
792 intsrc.mpc_irqflag = (trigger << 2) | polarity;
793 intsrc.mpc_srcbus = MP_ISA_BUS;
794 intsrc.mpc_srcbusirq = bus_irq; /* IRQ */
795 intsrc.mpc_dstapic = mp_ioapics[ioapic].mpc_apicid; /* APIC ID */
796 intsrc.mpc_dstirq = pin; /* INTIN# */
797
798 Dprintk("Int: type %d, pol %d, trig %d, bus %d, irq %d, %d-%d\n",
799 intsrc.mpc_irqtype, intsrc.mpc_irqflag & 3,
800 (intsrc.mpc_irqflag >> 2) & 3, intsrc.mpc_srcbus,
801 intsrc.mpc_srcbusirq, intsrc.mpc_dstapic, intsrc.mpc_dstirq);
802
803 mp_irqs[mp_irq_entries] = intsrc;
804 if (++mp_irq_entries == MAX_IRQ_SOURCES)
805 panic("Max # of irq sources exceeded!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806}
807
Andi Kleenefec3b92006-09-26 10:52:30 +0200808void __init mp_config_acpi_legacy_irqs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809{
810 struct mpc_config_intsrc intsrc;
Andi Kleenefec3b92006-09-26 10:52:30 +0200811 int i = 0;
812 int ioapic = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
814 /*
815 * Fabricate the legacy ISA bus (bus #31).
816 */
Andi Kleen55f05ff2006-09-26 10:52:30 +0200817 set_bit(MP_ISA_BUS, mp_bus_not_pci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
819 /*
820 * Locate the IOAPIC that manages the ISA IRQs (0-15).
821 */
822 ioapic = mp_find_ioapic(0);
823 if (ioapic < 0)
824 return;
825
826 intsrc.mpc_type = MP_INTSRC;
827 intsrc.mpc_irqflag = 0; /* Conforming */
828 intsrc.mpc_srcbus = MP_ISA_BUS;
829 intsrc.mpc_dstapic = mp_ioapics[ioapic].mpc_apicid;
830
831 /*
832 * Use the default configuration for the IRQs 0-15. Unless
833 * overridden by (MADT) interrupt source override entries.
834 */
835 for (i = 0; i < 16; i++) {
836 int idx;
837
838 for (idx = 0; idx < mp_irq_entries; idx++) {
839 struct mpc_config_intsrc *irq = mp_irqs + idx;
840
841 /* Do we already have a mapping for this ISA IRQ? */
842 if (irq->mpc_srcbus == MP_ISA_BUS && irq->mpc_srcbusirq == i)
843 break;
844
845 /* Do we already have a mapping for this IOAPIC pin */
846 if ((irq->mpc_dstapic == intsrc.mpc_dstapic) &&
847 (irq->mpc_dstirq == i))
848 break;
849 }
850
851 if (idx != mp_irq_entries) {
852 printk(KERN_DEBUG "ACPI: IRQ%d used by override.\n", i);
853 continue; /* IRQ already used */
854 }
855
856 intsrc.mpc_irqtype = mp_INT;
857 intsrc.mpc_srcbusirq = i; /* Identity mapped */
858 intsrc.mpc_dstirq = i;
859
860 Dprintk("Int: type %d, pol %d, trig %d, bus %d, irq %d, "
861 "%d-%d\n", intsrc.mpc_irqtype, intsrc.mpc_irqflag & 3,
862 (intsrc.mpc_irqflag >> 2) & 3, intsrc.mpc_srcbus,
863 intsrc.mpc_srcbusirq, intsrc.mpc_dstapic,
864 intsrc.mpc_dstirq);
865
866 mp_irqs[mp_irq_entries] = intsrc;
867 if (++mp_irq_entries == MAX_IRQ_SOURCES)
868 panic("Max # of irq sources exceeded!\n");
869 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870}
871
Bob Moore50eca3e2005-09-30 19:03:00 -0400872int mp_register_gsi(u32 gsi, int triggering, int polarity)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873{
Andi Kleenefec3b92006-09-26 10:52:30 +0200874 int ioapic = -1;
875 int ioapic_pin = 0;
876 int idx, bit = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
878 if (acpi_irq_model != ACPI_IRQ_MODEL_IOAPIC)
879 return gsi;
880
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 /* Don't set up the ACPI SCI because it's already set up */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300882 if (acpi_gbl_FADT.sci_interrupt == gsi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 return gsi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
885 ioapic = mp_find_ioapic(gsi);
886 if (ioapic < 0) {
887 printk(KERN_WARNING "No IOAPIC for GSI %u\n", gsi);
888 return gsi;
889 }
890
891 ioapic_pin = gsi - mp_ioapic_routing[ioapic].gsi_start;
892
893 /*
894 * Avoid pin reprogramming. PRTs typically include entries
895 * with redundant pin->gsi mappings (but unique PCI devices);
896 * we only program the IOAPIC on the first.
897 */
898 bit = ioapic_pin % 32;
899 idx = (ioapic_pin < 32) ? 0 : (ioapic_pin / 32);
900 if (idx > 3) {
901 printk(KERN_ERR "Invalid reference to IOAPIC pin "
902 "%d-%d\n", mp_ioapic_routing[ioapic].apic_id,
903 ioapic_pin);
904 return gsi;
905 }
906 if ((1<<bit) & mp_ioapic_routing[ioapic].pin_programmed[idx]) {
907 Dprintk(KERN_DEBUG "Pin %d-%d already programmed\n",
908 mp_ioapic_routing[ioapic].apic_id, ioapic_pin);
Eric W. Biedermancd1182f2006-10-04 02:16:53 -0700909 return gsi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 }
911
912 mp_ioapic_routing[ioapic].pin_programmed[idx] |= (1<<bit);
913
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 io_apic_set_pci_routing(ioapic, ioapic_pin, gsi,
Bob Moore50eca3e2005-09-30 19:03:00 -0400915 triggering == ACPI_EDGE_SENSITIVE ? 0 : 1,
916 polarity == ACPI_ACTIVE_HIGH ? 0 : 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 return gsi;
918}
Len Brown888ba6c2005-08-24 12:07:20 -0400919#endif /*CONFIG_ACPI*/