blob: 529b1c22077e03f8020283a40c44eee8ae8cfd89 [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
33/* Have we found an MP table */
34int smp_found_config;
Glauber Costa89b08202008-03-03 14:13:08 -030035unsigned int __cpuinitdata maxcpus = NR_CPUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Linus Torvalds1da177e2005-04-16 15:20:36 -070037/*
38 * Various Linux-internal data structures created from the
39 * MP-table.
40 */
Andi Kleen55f05ff2006-09-26 10:52:30 +020041DECLARE_BITMAP(mp_bus_not_pci, MAX_MP_BUSSES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070042int mp_bus_id_to_pci_bus [MAX_MP_BUSSES] = { [0 ... MAX_MP_BUSSES-1] = -1 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44static int mp_current_pci_id = 0;
45/* I/O APIC entries */
46struct mpc_config_ioapic mp_ioapics[MAX_IO_APICS];
47
48/* # of MP IRQ source entries */
49struct mpc_config_intsrc mp_irqs[MAX_IRQ_SOURCES];
50
51/* MP IRQ source entries */
52int mp_irq_entries;
53
54int nr_ioapics;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055unsigned long mp_lapic_addr = 0;
56
57
58
59/* Processor that is doing the boot up */
60unsigned int boot_cpu_id = -1U;
Mike Travis71b31232007-10-19 20:35:03 +020061EXPORT_SYMBOL(boot_cpu_id);
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063/* Internal processor count */
Sam Ravnborg87d7e982008-01-30 13:33:37 +010064unsigned int num_processors;
Andi Kleen420f8f62005-11-05 17:25:54 +010065
Sam Ravnborg43999d92007-03-16 21:07:36 +010066unsigned disabled_cpus __cpuinitdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68/* Bitmask of physically existing CPUs */
69physid_mask_t phys_cpu_present_map = PHYSID_MASK_NONE;
70
travis@sgi.come8c10ef2008-01-30 13:33:12 +010071u16 x86_bios_cpu_apicid_init[NR_CPUS] __initdata
72 = { [0 ... NR_CPUS-1] = BAD_APICID };
73void *x86_bios_cpu_apicid_early_ptr;
74DEFINE_PER_CPU(u16, x86_bios_cpu_apicid) = BAD_APICID;
75EXPORT_PER_CPU_SYMBOL(x86_bios_cpu_apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77
78/*
79 * Intel MP BIOS table parsing routines:
80 */
81
82/*
83 * Checksum an MP configuration block.
84 */
85
86static int __init mpf_checksum(unsigned char *mp, int len)
87{
88 int sum = 0;
89
90 while (len--)
91 sum += *mp++;
92
93 return sum & 0xFF;
94}
95
Mike Travis71fff5e2007-10-19 20:35:03 +020096static void __cpuinit MP_processor_info(struct mpc_config_processor *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097{
Andi Kleen88931662005-11-05 17:25:54 +010098 int cpu;
Ashok Raj51f62e12006-03-25 16:29:28 +010099 cpumask_t tmp_map;
Andi Kleenf2c2cca2006-09-26 10:52:37 +0200100 char *bootup_cpu = "";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Andi Kleen420f8f62005-11-05 17:25:54 +0100102 if (!(m->mpc_cpuflag & CPU_ENABLED)) {
103 disabled_cpus++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 return;
Andi Kleen420f8f62005-11-05 17:25:54 +0100105 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 if (m->mpc_cpuflag & CPU_BOOTPROCESSOR) {
Andi Kleenf2c2cca2006-09-26 10:52:37 +0200107 bootup_cpu = " (Bootup-CPU)";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 boot_cpu_id = m->mpc_apicid;
109 }
Andi Kleenf2c2cca2006-09-26 10:52:37 +0200110
111 printk(KERN_INFO "Processor #%d%s\n", m->mpc_apicid, bootup_cpu);
112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 if (num_processors >= NR_CPUS) {
114 printk(KERN_WARNING "WARNING: NR_CPUS limit of %i reached."
115 " Processor ignored.\n", NR_CPUS);
116 return;
117 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Glauber Costa89b08202008-03-03 14:13:08 -0300119 if (num_processors >= maxcpus) {
120 printk(KERN_WARNING "WARNING: maxcpus limit of %i reached."
121 " Processor ignored.\n", maxcpus);
122 return;
123 }
124
Ashok Raj51f62e12006-03-25 16:29:28 +0100125 num_processors++;
126 cpus_complement(tmp_map, cpu_present_map);
127 cpu = first_cpu(tmp_map);
128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 physid_set(m->mpc_apicid, phys_cpu_present_map);
Andi Kleen18a2b642005-05-16 21:53:35 -0700130 if (m->mpc_cpuflag & CPU_BOOTPROCESSOR) {
131 /*
Mike Travis693e3c52008-01-30 13:33:14 +0100132 * x86_bios_cpu_apicid is required to have processors listed
Andi Kleen18a2b642005-05-16 21:53:35 -0700133 * in same order as logical cpu numbers. Hence the first
134 * entry is BSP, and so on.
135 */
Andi Kleen61b1b2d2005-07-28 21:15:27 -0700136 cpu = 0;
Ashok Raj51f62e12006-03-25 16:29:28 +0100137 }
travis@sgi.com3b419082008-01-30 13:33:11 +0100138 /* are we being called early in kernel startup? */
139 if (x86_cpu_to_apicid_early_ptr) {
Mike Travis693e3c52008-01-30 13:33:14 +0100140 u16 *cpu_to_apicid = x86_cpu_to_apicid_early_ptr;
141 u16 *bios_cpu_apicid = x86_bios_cpu_apicid_early_ptr;
travis@sgi.come8c10ef2008-01-30 13:33:12 +0100142
143 cpu_to_apicid[cpu] = m->mpc_apicid;
144 bios_cpu_apicid[cpu] = m->mpc_apicid;
Mike Travis71fff5e2007-10-19 20:35:03 +0200145 } else {
146 per_cpu(x86_cpu_to_apicid, cpu) = m->mpc_apicid;
travis@sgi.come8c10ef2008-01-30 13:33:12 +0100147 per_cpu(x86_bios_cpu_apicid, cpu) = m->mpc_apicid;
Mike Travis71fff5e2007-10-19 20:35:03 +0200148 }
Andi Kleen61b1b2d2005-07-28 21:15:27 -0700149
150 cpu_set(cpu, cpu_possible_map);
151 cpu_set(cpu, cpu_present_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152}
153
154static void __init MP_bus_info (struct mpc_config_bus *m)
155{
156 char str[7];
157
158 memcpy(str, m->mpc_bustype, 6);
159 str[6] = 0;
160 Dprintk("Bus #%d is %s\n", m->mpc_busid, str);
161
162 if (strncmp(str, "ISA", 3) == 0) {
Andi Kleen55f05ff2006-09-26 10:52:30 +0200163 set_bit(m->mpc_busid, mp_bus_not_pci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 } else if (strncmp(str, "PCI", 3) == 0) {
Andi Kleen55f05ff2006-09-26 10:52:30 +0200165 clear_bit(m->mpc_busid, mp_bus_not_pci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 mp_bus_id_to_pci_bus[m->mpc_busid] = mp_current_pci_id;
167 mp_current_pci_id++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 } else {
169 printk(KERN_ERR "Unknown bustype %s\n", str);
170 }
171}
172
Andi Kleen013bf2c2006-09-30 01:47:55 +0200173static int bad_ioapic(unsigned long address)
174{
175 if (nr_ioapics >= MAX_IO_APICS) {
176 printk(KERN_ERR "ERROR: Max # of I/O APICs (%d) exceeded "
177 "(found %d)\n", MAX_IO_APICS, nr_ioapics);
178 panic("Recompile kernel with bigger MAX_IO_APICS!\n");
179 }
180 if (!address) {
181 printk(KERN_ERR "WARNING: Bogus (zero) I/O APIC address"
182 " found in table, skipping!\n");
183 return 1;
184 }
185 return 0;
186}
187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188static void __init MP_ioapic_info (struct mpc_config_ioapic *m)
189{
190 if (!(m->mpc_flags & MPC_APIC_USABLE))
191 return;
192
Andi Kleenf2c2cca2006-09-26 10:52:37 +0200193 printk("I/O APIC #%d at 0x%X.\n",
194 m->mpc_apicid, m->mpc_apicaddr);
Andi Kleen013bf2c2006-09-30 01:47:55 +0200195
196 if (bad_ioapic(m->mpc_apicaddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 return;
Andi Kleen013bf2c2006-09-30 01:47:55 +0200198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 mp_ioapics[nr_ioapics] = *m;
200 nr_ioapics++;
201}
202
203static void __init MP_intsrc_info (struct mpc_config_intsrc *m)
204{
205 mp_irqs [mp_irq_entries] = *m;
206 Dprintk("Int: type %d, pol %d, trig %d, bus %d,"
207 " IRQ %02x, APIC ID %x, APIC INT %02x\n",
208 m->mpc_irqtype, m->mpc_irqflag & 3,
209 (m->mpc_irqflag >> 2) & 3, m->mpc_srcbus,
210 m->mpc_srcbusirq, m->mpc_dstapic, m->mpc_dstirq);
James Cleverdon6004e1b2005-11-05 17:25:53 +0100211 if (++mp_irq_entries >= MAX_IRQ_SOURCES)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 panic("Max # of irq sources exceeded!!\n");
213}
214
215static void __init MP_lintsrc_info (struct mpc_config_lintsrc *m)
216{
217 Dprintk("Lint: type %d, pol %d, trig %d, bus %d,"
218 " IRQ %02x, APIC ID %x, APIC LINT %02x\n",
219 m->mpc_irqtype, m->mpc_irqflag & 3,
220 (m->mpc_irqflag >> 2) &3, m->mpc_srcbusid,
221 m->mpc_srcbusirq, m->mpc_destapic, m->mpc_destapiclint);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222}
223
224/*
225 * Read/parse the MPC
226 */
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800227static int __init smp_read_mpc(struct mp_config_table *mpc, unsigned early)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228{
229 char str[16];
230 int count=sizeof(*mpc);
231 unsigned char *mpt=((unsigned char *)mpc)+count;
232
233 if (memcmp(mpc->mpc_signature,MPC_SIGNATURE,4)) {
Andi Kleenaecc6362006-09-26 10:52:37 +0200234 printk("MPTABLE: bad signature [%c%c%c%c]!\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 mpc->mpc_signature[0],
236 mpc->mpc_signature[1],
237 mpc->mpc_signature[2],
238 mpc->mpc_signature[3]);
239 return 0;
240 }
241 if (mpf_checksum((unsigned char *)mpc,mpc->mpc_length)) {
Andi Kleenaecc6362006-09-26 10:52:37 +0200242 printk("MPTABLE: checksum error!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 return 0;
244 }
245 if (mpc->mpc_spec!=0x01 && mpc->mpc_spec!=0x04) {
Andi Kleenaecc6362006-09-26 10:52:37 +0200246 printk(KERN_ERR "MPTABLE: bad table version (%d)!!\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 mpc->mpc_spec);
248 return 0;
249 }
250 if (!mpc->mpc_lapic) {
Andi Kleenaecc6362006-09-26 10:52:37 +0200251 printk(KERN_ERR "MPTABLE: null local APIC address!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 return 0;
253 }
254 memcpy(str,mpc->mpc_oem,8);
Andi Kleenaecc6362006-09-26 10:52:37 +0200255 str[8] = 0;
256 printk(KERN_INFO "MPTABLE: OEM ID: %s ",str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
258 memcpy(str,mpc->mpc_productid,12);
Andi Kleenaecc6362006-09-26 10:52:37 +0200259 str[12] = 0;
260 printk("MPTABLE: Product ID: %s ",str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Andi Kleenaecc6362006-09-26 10:52:37 +0200262 printk("MPTABLE: APIC at: 0x%X\n",mpc->mpc_lapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
264 /* save the local APIC address, it might be non-default */
265 if (!acpi_lapic)
Andi Kleenaecc6362006-09-26 10:52:37 +0200266 mp_lapic_addr = mpc->mpc_lapic;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800268 if (early)
269 return 1;
270
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 /*
272 * Now process the configuration blocks.
273 */
274 while (count < mpc->mpc_length) {
275 switch(*mpt) {
276 case MP_PROCESSOR:
277 {
278 struct mpc_config_processor *m=
279 (struct mpc_config_processor *)mpt;
280 if (!acpi_lapic)
Andi Kleenaecc6362006-09-26 10:52:37 +0200281 MP_processor_info(m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 mpt += sizeof(*m);
283 count += sizeof(*m);
284 break;
285 }
286 case MP_BUS:
287 {
288 struct mpc_config_bus *m=
289 (struct mpc_config_bus *)mpt;
290 MP_bus_info(m);
291 mpt += sizeof(*m);
292 count += sizeof(*m);
293 break;
294 }
295 case MP_IOAPIC:
296 {
297 struct mpc_config_ioapic *m=
298 (struct mpc_config_ioapic *)mpt;
299 MP_ioapic_info(m);
Andi Kleenaecc6362006-09-26 10:52:37 +0200300 mpt += sizeof(*m);
301 count += sizeof(*m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 break;
303 }
304 case MP_INTSRC:
305 {
306 struct mpc_config_intsrc *m=
307 (struct mpc_config_intsrc *)mpt;
308
309 MP_intsrc_info(m);
Andi Kleenaecc6362006-09-26 10:52:37 +0200310 mpt += sizeof(*m);
311 count += sizeof(*m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 break;
313 }
314 case MP_LINTSRC:
315 {
316 struct mpc_config_lintsrc *m=
317 (struct mpc_config_lintsrc *)mpt;
318 MP_lintsrc_info(m);
Andi Kleenaecc6362006-09-26 10:52:37 +0200319 mpt += sizeof(*m);
320 count += sizeof(*m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 break;
322 }
323 }
324 }
Ingo Molnar3c43f032007-05-02 19:27:04 +0200325 setup_apic_routing();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 if (!num_processors)
Andi Kleenaecc6362006-09-26 10:52:37 +0200327 printk(KERN_ERR "MPTABLE: no processors registered!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 return num_processors;
329}
330
331static int __init ELCR_trigger(unsigned int irq)
332{
333 unsigned int port;
334
335 port = 0x4d0 + (irq >> 3);
336 return (inb(port) >> (irq & 7)) & 1;
337}
338
339static void __init construct_default_ioirq_mptable(int mpc_default_type)
340{
341 struct mpc_config_intsrc intsrc;
342 int i;
343 int ELCR_fallback = 0;
344
345 intsrc.mpc_type = MP_INTSRC;
346 intsrc.mpc_irqflag = 0; /* conforming */
347 intsrc.mpc_srcbus = 0;
348 intsrc.mpc_dstapic = mp_ioapics[0].mpc_apicid;
349
350 intsrc.mpc_irqtype = mp_INT;
351
352 /*
353 * If true, we have an ISA/PCI system with no IRQ entries
354 * in the MP table. To prevent the PCI interrupts from being set up
355 * incorrectly, we try to use the ELCR. The sanity check to see if
356 * there is good ELCR data is very simple - IRQ0, 1, 2 and 13 can
357 * never be level sensitive, so we simply see if the ELCR agrees.
358 * If it does, we assume it's valid.
359 */
360 if (mpc_default_type == 5) {
361 printk(KERN_INFO "ISA/PCI bus type with no IRQ information... falling back to ELCR\n");
362
363 if (ELCR_trigger(0) || ELCR_trigger(1) || ELCR_trigger(2) || ELCR_trigger(13))
364 printk(KERN_ERR "ELCR contains invalid data... not using ELCR\n");
365 else {
366 printk(KERN_INFO "Using ELCR to identify PCI interrupts\n");
367 ELCR_fallback = 1;
368 }
369 }
370
371 for (i = 0; i < 16; i++) {
372 switch (mpc_default_type) {
373 case 2:
374 if (i == 0 || i == 13)
375 continue; /* IRQ0 & IRQ13 not connected */
376 /* fall through */
377 default:
378 if (i == 2)
379 continue; /* IRQ2 is never connected */
380 }
381
382 if (ELCR_fallback) {
383 /*
384 * If the ELCR indicates a level-sensitive interrupt, we
385 * copy that information over to the MP table in the
386 * irqflag field (level sensitive, active high polarity).
387 */
388 if (ELCR_trigger(i))
389 intsrc.mpc_irqflag = 13;
390 else
391 intsrc.mpc_irqflag = 0;
392 }
393
394 intsrc.mpc_srcbusirq = i;
395 intsrc.mpc_dstirq = i ? i : 2; /* IRQ0 to INTIN2 */
396 MP_intsrc_info(&intsrc);
397 }
398
399 intsrc.mpc_irqtype = mp_ExtINT;
400 intsrc.mpc_srcbusirq = 0;
401 intsrc.mpc_dstirq = 0; /* 8259A to INTIN0 */
402 MP_intsrc_info(&intsrc);
403}
404
405static inline void __init construct_default_ISA_mptable(int mpc_default_type)
406{
407 struct mpc_config_processor processor;
408 struct mpc_config_bus bus;
409 struct mpc_config_ioapic ioapic;
410 struct mpc_config_lintsrc lintsrc;
411 int linttypes[2] = { mp_ExtINT, mp_NMI };
412 int i;
413
414 /*
415 * local APIC has default address
416 */
417 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
418
419 /*
420 * 2 CPUs, numbered 0 & 1.
421 */
422 processor.mpc_type = MP_PROCESSOR;
Andi Kleenf2c2cca2006-09-26 10:52:37 +0200423 processor.mpc_apicver = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 processor.mpc_cpuflag = CPU_ENABLED;
Andi Kleenf2c2cca2006-09-26 10:52:37 +0200425 processor.mpc_cpufeature = 0;
426 processor.mpc_featureflag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 processor.mpc_reserved[0] = 0;
428 processor.mpc_reserved[1] = 0;
429 for (i = 0; i < 2; i++) {
430 processor.mpc_apicid = i;
431 MP_processor_info(&processor);
432 }
433
434 bus.mpc_type = MP_BUS;
435 bus.mpc_busid = 0;
436 switch (mpc_default_type) {
437 default:
438 printk(KERN_ERR "???\nUnknown standard configuration %d\n",
439 mpc_default_type);
440 /* fall through */
441 case 1:
442 case 5:
443 memcpy(bus.mpc_bustype, "ISA ", 6);
444 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 }
446 MP_bus_info(&bus);
447 if (mpc_default_type > 4) {
448 bus.mpc_busid = 1;
449 memcpy(bus.mpc_bustype, "PCI ", 6);
450 MP_bus_info(&bus);
451 }
452
453 ioapic.mpc_type = MP_IOAPIC;
454 ioapic.mpc_apicid = 2;
Andi Kleenf2c2cca2006-09-26 10:52:37 +0200455 ioapic.mpc_apicver = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 ioapic.mpc_flags = MPC_APIC_USABLE;
457 ioapic.mpc_apicaddr = 0xFEC00000;
458 MP_ioapic_info(&ioapic);
459
460 /*
461 * We set up most of the low 16 IO-APIC pins according to MPS rules.
462 */
463 construct_default_ioirq_mptable(mpc_default_type);
464
465 lintsrc.mpc_type = MP_LINTSRC;
466 lintsrc.mpc_irqflag = 0; /* conforming */
467 lintsrc.mpc_srcbusid = 0;
468 lintsrc.mpc_srcbusirq = 0;
469 lintsrc.mpc_destapic = MP_APIC_ALL;
470 for (i = 0; i < 2; i++) {
471 lintsrc.mpc_irqtype = linttypes[i];
472 lintsrc.mpc_destapiclint = i;
473 MP_lintsrc_info(&lintsrc);
474 }
475}
476
477static struct intel_mp_floating *mpf_found;
478
479/*
480 * Scan the memory blocks for an SMP configuration block.
481 */
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800482static void __init __get_smp_config(unsigned early)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483{
484 struct intel_mp_floating *mpf = mpf_found;
485
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800486 if (acpi_lapic && early)
487 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 /*
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800489 * ACPI supports both logical (e.g. Hyper-Threading) and physical
490 * processors, where MPS only supports physical.
491 */
492 if (acpi_lapic && acpi_ioapic) {
493 printk(KERN_INFO "Using ACPI (MADT) for SMP configuration "
494 "information\n");
495 return;
496 } else if (acpi_lapic)
497 printk(KERN_INFO "Using ACPI for processor (LAPIC) "
498 "configuration information\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800500 printk(KERN_INFO "Intel MultiProcessor Specification v1.%d\n",
501 mpf->mpf_specification);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
503 /*
504 * Now see if we need to read further.
505 */
506 if (mpf->mpf_feature1 != 0) {
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800507 if (early) {
508 /*
509 * local APIC has default address
510 */
511 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
512 return;
513 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
515 printk(KERN_INFO "Default MP configuration #%d\n", mpf->mpf_feature1);
516 construct_default_ISA_mptable(mpf->mpf_feature1);
517
518 } else if (mpf->mpf_physptr) {
519
520 /*
521 * Read the physical hardware table. Anything here will
522 * override the defaults.
523 */
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800524 if (!smp_read_mpc(phys_to_virt(mpf->mpf_physptr), early)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 smp_found_config = 0;
526 printk(KERN_ERR "BIOS bug, MP table errors detected!...\n");
527 printk(KERN_ERR "... disabling SMP support. (tell your hw vendor)\n");
528 return;
529 }
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800530
531 if (early)
532 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 /*
534 * If there are no explicit MP IRQ entries, then we are
535 * broken. We set up most of the low 16 IO-APIC pins to
536 * ISA defaults and hope it will work.
537 */
538 if (!mp_irq_entries) {
539 struct mpc_config_bus bus;
540
541 printk(KERN_ERR "BIOS bug, no explicit IRQ entries, using default mptable. (tell your hw vendor)\n");
542
543 bus.mpc_type = MP_BUS;
544 bus.mpc_busid = 0;
545 memcpy(bus.mpc_bustype, "ISA ", 6);
546 MP_bus_info(&bus);
547
548 construct_default_ioirq_mptable(0);
549 }
550
551 } else
552 BUG();
553
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800554 if (!early)
555 printk(KERN_INFO "Processors: %d\n", num_processors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 /*
557 * Only use the first configuration found.
558 */
559}
560
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800561void __init early_get_smp_config(void)
562{
563 __get_smp_config(1);
564}
565
566void __init get_smp_config(void)
567{
568 __get_smp_config(0);
569}
570
571static int __init smp_scan_config(unsigned long base, unsigned long length,
572 unsigned reserve)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573{
574 extern void __bad_mpf_size(void);
575 unsigned int *bp = phys_to_virt(base);
576 struct intel_mp_floating *mpf;
577
578 Dprintk("Scan SMP from %p for %ld bytes.\n", bp,length);
579 if (sizeof(*mpf) != 16)
580 __bad_mpf_size();
581
582 while (length > 0) {
583 mpf = (struct intel_mp_floating *)bp;
584 if ((*bp == SMP_MAGIC_IDENT) &&
585 (mpf->mpf_length == 1) &&
586 !mpf_checksum((unsigned char *)bp, 16) &&
587 ((mpf->mpf_specification == 1)
588 || (mpf->mpf_specification == 4)) ) {
589
590 smp_found_config = 1;
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800591 mpf_found = mpf;
592
593 if (!reserve)
594 return 1;
595
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 reserve_bootmem_generic(virt_to_phys(mpf), PAGE_SIZE);
597 if (mpf->mpf_physptr)
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800598 reserve_bootmem_generic(mpf->mpf_physptr,
599 PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 return 1;
601 }
602 bp += 4;
603 length -= 16;
604 }
605 return 0;
606}
607
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800608static void __init __find_smp_config(unsigned reserve)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609{
610 unsigned int address;
611
612 /*
613 * FIXME: Linux assumes you have 640K of base ram..
614 * this continues the error...
615 *
616 * 1) Scan the bottom 1K for a signature
617 * 2) Scan the top 1K of base RAM
618 * 3) Scan the 64K of bios
619 */
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800620 if (smp_scan_config(0x0, 0x400, reserve) ||
621 smp_scan_config(639*0x400, 0x400, reserve) ||
622 smp_scan_config(0xF0000, 0x10000, reserve))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 return;
624 /*
Andi Kleene5099132006-09-26 10:52:29 +0200625 * If it is an SMP machine we should know now.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 *
627 * there is a real-mode segmented pointer pointing to the
628 * 4K EBDA area at 0x40E, calculate and scan it here.
629 *
630 * NOTE! There are Linux loaders that will corrupt the EBDA
631 * area, and as such this kind of SMP config may be less
632 * trustworthy, simply because the SMP table may have been
633 * stomped on during early boot. These loaders are buggy and
634 * should be fixed.
635 */
636
637 address = *(unsigned short *)phys_to_virt(0x40E);
638 address <<= 4;
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800639 if (smp_scan_config(address, 0x1000, reserve))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 return;
641
642 /* If we have come this far, we did not find an MP table */
643 printk(KERN_INFO "No mptable found.\n");
644}
645
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800646void __init early_find_smp_config(void)
647{
648 __find_smp_config(0);
649}
650
651void __init find_smp_config(void)
652{
653 __find_smp_config(1);
654}
655
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656/* --------------------------------------------------------------------------
657 ACPI-based MP Configuration
658 -------------------------------------------------------------------------- */
659
Len Brown888ba6c2005-08-24 12:07:20 -0400660#ifdef CONFIG_ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
Andi Kleenefec3b92006-09-26 10:52:30 +0200662void __init mp_register_lapic_address(u64 address)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663{
664 mp_lapic_addr = (unsigned long) address;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 set_fixmap_nocache(FIX_APIC_BASE, mp_lapic_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 if (boot_cpu_id == -1U)
667 boot_cpu_id = GET_APIC_ID(apic_read(APIC_ID));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668}
669
Andi Kleenefec3b92006-09-26 10:52:30 +0200670void __cpuinit mp_register_lapic (u8 id, u8 enabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671{
672 struct mpc_config_processor processor;
673 int boot_cpu = 0;
674
Andi Kleene4251e12006-09-26 10:52:37 +0200675 if (id == boot_cpu_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 boot_cpu = 1;
677
678 processor.mpc_type = MP_PROCESSOR;
679 processor.mpc_apicid = id;
Andi Kleenf2c2cca2006-09-26 10:52:37 +0200680 processor.mpc_apicver = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 processor.mpc_cpuflag = (enabled ? CPU_ENABLED : 0);
682 processor.mpc_cpuflag |= (boot_cpu ? CPU_BOOTPROCESSOR : 0);
Andi Kleenf2c2cca2006-09-26 10:52:37 +0200683 processor.mpc_cpufeature = 0;
684 processor.mpc_featureflag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 processor.mpc_reserved[0] = 0;
686 processor.mpc_reserved[1] = 0;
687
688 MP_processor_info(&processor);
689}
690
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691#define MP_ISA_BUS 0
692#define MP_MAX_IOAPIC_PIN 127
693
694static struct mp_ioapic_routing {
695 int apic_id;
696 int gsi_start;
697 int gsi_end;
698 u32 pin_programmed[4];
699} mp_ioapic_routing[MAX_IO_APICS];
700
Andi Kleenefec3b92006-09-26 10:52:30 +0200701static int mp_find_ioapic(int gsi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702{
Andi Kleenefec3b92006-09-26 10:52:30 +0200703 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
705 /* Find the IOAPIC that manages this GSI. */
706 for (i = 0; i < nr_ioapics; i++) {
707 if ((gsi >= mp_ioapic_routing[i].gsi_start)
708 && (gsi <= mp_ioapic_routing[i].gsi_end))
709 return i;
710 }
711
712 printk(KERN_ERR "ERROR: Unable to locate IOAPIC for GSI %d\n", gsi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 return -1;
714}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Andi Kleen78b599a2007-07-21 17:09:53 +0200716static u8 uniq_ioapic_id(u8 id)
717{
718 int i;
719 DECLARE_BITMAP(used, 256);
720 bitmap_zero(used, 256);
721 for (i = 0; i < nr_ioapics; i++) {
722 struct mpc_config_ioapic *ia = &mp_ioapics[i];
723 __set_bit(ia->mpc_apicid, used);
724 }
725 if (!test_bit(id, used))
726 return id;
727 return find_first_zero_bit(used, 256);
728}
729
Andi Kleenefec3b92006-09-26 10:52:30 +0200730void __init mp_register_ioapic(u8 id, u32 address, u32 gsi_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731{
Andi Kleenefec3b92006-09-26 10:52:30 +0200732 int idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
Andi Kleen013bf2c2006-09-30 01:47:55 +0200734 if (bad_ioapic(address))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
Andi Kleen78b599a2007-07-21 17:09:53 +0200737 idx = nr_ioapics;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
739 mp_ioapics[idx].mpc_type = MP_IOAPIC;
740 mp_ioapics[idx].mpc_flags = MPC_APIC_USABLE;
741 mp_ioapics[idx].mpc_apicaddr = address;
742
743 set_fixmap_nocache(FIX_IO_APIC_BASE_0 + idx, address);
Andi Kleen78b599a2007-07-21 17:09:53 +0200744 mp_ioapics[idx].mpc_apicid = uniq_ioapic_id(id);
Andi Kleenf2c2cca2006-09-26 10:52:37 +0200745 mp_ioapics[idx].mpc_apicver = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
747 /*
748 * Build basic IRQ lookup table to facilitate gsi->io_apic lookups
749 * and to prevent reprogramming of IOAPIC pins (PCI IRQs).
750 */
751 mp_ioapic_routing[idx].apic_id = mp_ioapics[idx].mpc_apicid;
752 mp_ioapic_routing[idx].gsi_start = gsi_base;
753 mp_ioapic_routing[idx].gsi_end = gsi_base +
754 io_apic_get_redir_entries(idx);
755
Andi Kleenf2c2cca2006-09-26 10:52:37 +0200756 printk(KERN_INFO "IOAPIC[%d]: apic_id %d, address 0x%x, "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 "GSI %d-%d\n", idx, mp_ioapics[idx].mpc_apicid,
Andi Kleenf2c2cca2006-09-26 10:52:37 +0200758 mp_ioapics[idx].mpc_apicaddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 mp_ioapic_routing[idx].gsi_start,
760 mp_ioapic_routing[idx].gsi_end);
Andi Kleen78b599a2007-07-21 17:09:53 +0200761
762 nr_ioapics++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763}
764
Andi Kleenefec3b92006-09-26 10:52:30 +0200765void __init
766mp_override_legacy_irq(u8 bus_irq, u8 polarity, u8 trigger, u32 gsi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767{
768 struct mpc_config_intsrc intsrc;
769 int ioapic = -1;
770 int pin = -1;
771
772 /*
773 * Convert 'gsi' to 'ioapic.pin'.
774 */
775 ioapic = mp_find_ioapic(gsi);
776 if (ioapic < 0)
777 return;
778 pin = gsi - mp_ioapic_routing[ioapic].gsi_start;
779
780 /*
781 * TBD: This check is for faulty timer entries, where the override
782 * erroneously sets the trigger to level, resulting in a HUGE
783 * increase of timer interrupts!
784 */
785 if ((bus_irq == 0) && (trigger == 3))
786 trigger = 1;
787
788 intsrc.mpc_type = MP_INTSRC;
789 intsrc.mpc_irqtype = mp_INT;
790 intsrc.mpc_irqflag = (trigger << 2) | polarity;
791 intsrc.mpc_srcbus = MP_ISA_BUS;
792 intsrc.mpc_srcbusirq = bus_irq; /* IRQ */
793 intsrc.mpc_dstapic = mp_ioapics[ioapic].mpc_apicid; /* APIC ID */
794 intsrc.mpc_dstirq = pin; /* INTIN# */
795
796 Dprintk("Int: type %d, pol %d, trig %d, bus %d, irq %d, %d-%d\n",
797 intsrc.mpc_irqtype, intsrc.mpc_irqflag & 3,
798 (intsrc.mpc_irqflag >> 2) & 3, intsrc.mpc_srcbus,
799 intsrc.mpc_srcbusirq, intsrc.mpc_dstapic, intsrc.mpc_dstirq);
800
801 mp_irqs[mp_irq_entries] = intsrc;
802 if (++mp_irq_entries == MAX_IRQ_SOURCES)
803 panic("Max # of irq sources exceeded!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804}
805
Andi Kleenefec3b92006-09-26 10:52:30 +0200806void __init mp_config_acpi_legacy_irqs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807{
808 struct mpc_config_intsrc intsrc;
Andi Kleenefec3b92006-09-26 10:52:30 +0200809 int i = 0;
810 int ioapic = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
812 /*
813 * Fabricate the legacy ISA bus (bus #31).
814 */
Andi Kleen55f05ff2006-09-26 10:52:30 +0200815 set_bit(MP_ISA_BUS, mp_bus_not_pci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
817 /*
818 * Locate the IOAPIC that manages the ISA IRQs (0-15).
819 */
820 ioapic = mp_find_ioapic(0);
821 if (ioapic < 0)
822 return;
823
824 intsrc.mpc_type = MP_INTSRC;
825 intsrc.mpc_irqflag = 0; /* Conforming */
826 intsrc.mpc_srcbus = MP_ISA_BUS;
827 intsrc.mpc_dstapic = mp_ioapics[ioapic].mpc_apicid;
828
829 /*
830 * Use the default configuration for the IRQs 0-15. Unless
831 * overridden by (MADT) interrupt source override entries.
832 */
833 for (i = 0; i < 16; i++) {
834 int idx;
835
836 for (idx = 0; idx < mp_irq_entries; idx++) {
837 struct mpc_config_intsrc *irq = mp_irqs + idx;
838
839 /* Do we already have a mapping for this ISA IRQ? */
840 if (irq->mpc_srcbus == MP_ISA_BUS && irq->mpc_srcbusirq == i)
841 break;
842
843 /* Do we already have a mapping for this IOAPIC pin */
844 if ((irq->mpc_dstapic == intsrc.mpc_dstapic) &&
845 (irq->mpc_dstirq == i))
846 break;
847 }
848
849 if (idx != mp_irq_entries) {
850 printk(KERN_DEBUG "ACPI: IRQ%d used by override.\n", i);
851 continue; /* IRQ already used */
852 }
853
854 intsrc.mpc_irqtype = mp_INT;
855 intsrc.mpc_srcbusirq = i; /* Identity mapped */
856 intsrc.mpc_dstirq = i;
857
858 Dprintk("Int: type %d, pol %d, trig %d, bus %d, irq %d, "
859 "%d-%d\n", intsrc.mpc_irqtype, intsrc.mpc_irqflag & 3,
860 (intsrc.mpc_irqflag >> 2) & 3, intsrc.mpc_srcbus,
861 intsrc.mpc_srcbusirq, intsrc.mpc_dstapic,
862 intsrc.mpc_dstirq);
863
864 mp_irqs[mp_irq_entries] = intsrc;
865 if (++mp_irq_entries == MAX_IRQ_SOURCES)
866 panic("Max # of irq sources exceeded!\n");
867 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868}
869
Bob Moore50eca3e2005-09-30 19:03:00 -0400870int mp_register_gsi(u32 gsi, int triggering, int polarity)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871{
Andi Kleenefec3b92006-09-26 10:52:30 +0200872 int ioapic = -1;
873 int ioapic_pin = 0;
874 int idx, bit = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
876 if (acpi_irq_model != ACPI_IRQ_MODEL_IOAPIC)
877 return gsi;
878
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 /* Don't set up the ACPI SCI because it's already set up */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300880 if (acpi_gbl_FADT.sci_interrupt == gsi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 return gsi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
883 ioapic = mp_find_ioapic(gsi);
884 if (ioapic < 0) {
885 printk(KERN_WARNING "No IOAPIC for GSI %u\n", gsi);
886 return gsi;
887 }
888
889 ioapic_pin = gsi - mp_ioapic_routing[ioapic].gsi_start;
890
891 /*
892 * Avoid pin reprogramming. PRTs typically include entries
893 * with redundant pin->gsi mappings (but unique PCI devices);
894 * we only program the IOAPIC on the first.
895 */
896 bit = ioapic_pin % 32;
897 idx = (ioapic_pin < 32) ? 0 : (ioapic_pin / 32);
898 if (idx > 3) {
899 printk(KERN_ERR "Invalid reference to IOAPIC pin "
900 "%d-%d\n", mp_ioapic_routing[ioapic].apic_id,
901 ioapic_pin);
902 return gsi;
903 }
904 if ((1<<bit) & mp_ioapic_routing[ioapic].pin_programmed[idx]) {
905 Dprintk(KERN_DEBUG "Pin %d-%d already programmed\n",
906 mp_ioapic_routing[ioapic].apic_id, ioapic_pin);
Eric W. Biedermancd1182f2006-10-04 02:16:53 -0700907 return gsi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 }
909
910 mp_ioapic_routing[ioapic].pin_programmed[idx] |= (1<<bit);
911
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 io_apic_set_pci_routing(ioapic, ioapic_pin, gsi,
Bob Moore50eca3e2005-09-30 19:03:00 -0400913 triggering == ACPI_EDGE_SENSITIVE ? 0 : 1,
914 polarity == ACPI_ACTIVE_HIGH ? 0 : 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 return gsi;
916}
Len Brown888ba6c2005-08-24 12:07:20 -0400917#endif /*CONFIG_ACPI*/