blob: 269fd46df42c8f8b65474abee201c9e94ee085c8 [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);
Alexey Starikovskiyd2953312008-03-17 22:07:59 +030044int 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070059/* Processor that is doing the boot up */
Glauber de Oliveira Costac70dcb72008-03-19 14:25:58 -030060unsigned int boot_cpu_physical_apicid = -1U;
61EXPORT_SYMBOL(boot_cpu_physical_apicid);
Mike Travis71b31232007-10-19 20:35:03 +020062
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
Alexey Starikovskiyd2953312008-03-17 22:07:59 +030072 = {[0 ... NR_CPUS - 1] = BAD_APICID };
travis@sgi.come8c10ef2008-01-30 13:33:12 +010073void *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
Linus Torvalds1da177e2005-04-16 15:20:36 -070077/*
78 * Intel MP BIOS table parsing routines:
79 */
80
81/*
82 * Checksum an MP configuration block.
83 */
84
85static int __init mpf_checksum(unsigned char *mp, int len)
86{
87 int sum = 0;
88
89 while (len--)
90 sum += *mp++;
91
92 return sum & 0xFF;
93}
94
Mike Travis71fff5e2007-10-19 20:35:03 +020095static void __cpuinit MP_processor_info(struct mpc_config_processor *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096{
Andi Kleen88931662005-11-05 17:25:54 +010097 int cpu;
Ashok Raj51f62e12006-03-25 16:29:28 +010098 cpumask_t tmp_map;
Andi Kleenf2c2cca2006-09-26 10:52:37 +020099 char *bootup_cpu = "";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Andi Kleen420f8f62005-11-05 17:25:54 +0100101 if (!(m->mpc_cpuflag & CPU_ENABLED)) {
102 disabled_cpus++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 return;
Andi Kleen420f8f62005-11-05 17:25:54 +0100104 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 if (m->mpc_cpuflag & CPU_BOOTPROCESSOR) {
Andi Kleenf2c2cca2006-09-26 10:52:37 +0200106 bootup_cpu = " (Bootup-CPU)";
Glauber de Oliveira Costac70dcb72008-03-19 14:25:58 -0300107 boot_cpu_physical_apicid = m->mpc_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 }
Andi Kleenf2c2cca2006-09-26 10:52:37 +0200109
110 printk(KERN_INFO "Processor #%d%s\n", m->mpc_apicid, bootup_cpu);
111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 if (num_processors >= NR_CPUS) {
113 printk(KERN_WARNING "WARNING: NR_CPUS limit of %i reached."
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300114 " Processor ignored.\n", NR_CPUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 return;
116 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Glauber Costa89b08202008-03-03 14:13:08 -0300118 if (num_processors >= maxcpus) {
119 printk(KERN_WARNING "WARNING: maxcpus limit of %i reached."
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300120 " Processor ignored.\n", maxcpus);
Glauber Costa89b08202008-03-03 14:13:08 -0300121 return;
122 }
123
Ashok Raj51f62e12006-03-25 16:29:28 +0100124 num_processors++;
125 cpus_complement(tmp_map, cpu_present_map);
126 cpu = first_cpu(tmp_map);
127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 physid_set(m->mpc_apicid, phys_cpu_present_map);
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300129 if (m->mpc_cpuflag & CPU_BOOTPROCESSOR) {
130 /*
Mike Travis693e3c52008-01-30 13:33:14 +0100131 * x86_bios_cpu_apicid is required to have processors listed
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300132 * in same order as logical cpu numbers. Hence the first
133 * entry is BSP, and so on.
134 */
Andi Kleen61b1b2d2005-07-28 21:15:27 -0700135 cpu = 0;
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300136 }
travis@sgi.com3b419082008-01-30 13:33:11 +0100137 /* are we being called early in kernel startup? */
138 if (x86_cpu_to_apicid_early_ptr) {
Mike Travis693e3c52008-01-30 13:33:14 +0100139 u16 *cpu_to_apicid = x86_cpu_to_apicid_early_ptr;
140 u16 *bios_cpu_apicid = x86_bios_cpu_apicid_early_ptr;
travis@sgi.come8c10ef2008-01-30 13:33:12 +0100141
142 cpu_to_apicid[cpu] = m->mpc_apicid;
143 bios_cpu_apicid[cpu] = m->mpc_apicid;
Mike Travis71fff5e2007-10-19 20:35:03 +0200144 } else {
145 per_cpu(x86_cpu_to_apicid, cpu) = m->mpc_apicid;
travis@sgi.come8c10ef2008-01-30 13:33:12 +0100146 per_cpu(x86_bios_cpu_apicid, cpu) = m->mpc_apicid;
Mike Travis71fff5e2007-10-19 20:35:03 +0200147 }
Andi Kleen61b1b2d2005-07-28 21:15:27 -0700148
149 cpu_set(cpu, cpu_possible_map);
150 cpu_set(cpu, cpu_present_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151}
152
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300153static void __init MP_bus_info(struct mpc_config_bus *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
155 char str[7];
156
157 memcpy(str, m->mpc_bustype, 6);
158 str[6] = 0;
159 Dprintk("Bus #%d is %s\n", m->mpc_busid, str);
160
161 if (strncmp(str, "ISA", 3) == 0) {
Andi Kleen55f05ff2006-09-26 10:52:30 +0200162 set_bit(m->mpc_busid, mp_bus_not_pci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 } else if (strncmp(str, "PCI", 3) == 0) {
Andi Kleen55f05ff2006-09-26 10:52:30 +0200164 clear_bit(m->mpc_busid, mp_bus_not_pci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 mp_bus_id_to_pci_bus[m->mpc_busid] = mp_current_pci_id;
166 mp_current_pci_id++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 } else {
168 printk(KERN_ERR "Unknown bustype %s\n", str);
169 }
170}
171
Andi Kleen013bf2c2006-09-30 01:47:55 +0200172static int bad_ioapic(unsigned long address)
173{
174 if (nr_ioapics >= MAX_IO_APICS) {
175 printk(KERN_ERR "ERROR: Max # of I/O APICs (%d) exceeded "
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300176 "(found %d)\n", MAX_IO_APICS, nr_ioapics);
Andi Kleen013bf2c2006-09-30 01:47:55 +0200177 panic("Recompile kernel with bigger MAX_IO_APICS!\n");
178 }
179 if (!address) {
180 printk(KERN_ERR "WARNING: Bogus (zero) I/O APIC address"
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300181 " found in table, skipping!\n");
Andi Kleen013bf2c2006-09-30 01:47:55 +0200182 return 1;
183 }
184 return 0;
185}
186
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300187static void __init MP_ioapic_info(struct mpc_config_ioapic *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188{
189 if (!(m->mpc_flags & MPC_APIC_USABLE))
190 return;
191
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300192 printk(KERN_INFO "I/O APIC #%d at 0x%X.\n", m->mpc_apicid,
193 m->mpc_apicaddr);
Andi Kleen013bf2c2006-09-30 01:47:55 +0200194
195 if (bad_ioapic(m->mpc_apicaddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 return;
Andi Kleen013bf2c2006-09-30 01:47:55 +0200197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 mp_ioapics[nr_ioapics] = *m;
199 nr_ioapics++;
200}
201
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300202static void __init MP_intsrc_info(struct mpc_config_intsrc *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203{
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300204 mp_irqs[mp_irq_entries] = *m;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 Dprintk("Int: type %d, pol %d, trig %d, bus %d,"
206 " IRQ %02x, APIC ID %x, APIC INT %02x\n",
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300207 m->mpc_irqtype, m->mpc_irqflag & 3,
208 (m->mpc_irqflag >> 2) & 3, m->mpc_srcbus,
209 m->mpc_srcbusirq, m->mpc_dstapic, m->mpc_dstirq);
James Cleverdon6004e1b2005-11-05 17:25:53 +0100210 if (++mp_irq_entries >= MAX_IRQ_SOURCES)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 panic("Max # of irq sources exceeded!!\n");
212}
213
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300214static void __init MP_lintsrc_info(struct mpc_config_lintsrc *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215{
216 Dprintk("Lint: type %d, pol %d, trig %d, bus %d,"
217 " IRQ %02x, APIC ID %x, APIC LINT %02x\n",
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300218 m->mpc_irqtype, m->mpc_irqflag & 3,
219 (m->mpc_irqflag >> 2) & 3, m->mpc_srcbusid,
220 m->mpc_srcbusirq, m->mpc_destapic, m->mpc_destapiclint);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221}
222
223/*
224 * Read/parse the MPC
225 */
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800226static int __init smp_read_mpc(struct mp_config_table *mpc, unsigned early)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227{
228 char str[16];
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300229 int count = sizeof(*mpc);
230 unsigned char *mpt = ((unsigned char *)mpc) + count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300232 if (memcmp(mpc->mpc_signature, MPC_SIGNATURE, 4)) {
233 printk(KERN_ERR "MPTABLE: bad signature [%c%c%c%c]!\n",
234 mpc->mpc_signature[0],
235 mpc->mpc_signature[1],
236 mpc->mpc_signature[2], mpc->mpc_signature[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 return 0;
238 }
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300239 if (mpf_checksum((unsigned char *)mpc, mpc->mpc_length)) {
240 printk(KERN_ERR "MPTABLE: checksum error!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 return 0;
242 }
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300243 if (mpc->mpc_spec != 0x01 && mpc->mpc_spec != 0x04) {
Andi Kleenaecc6362006-09-26 10:52:37 +0200244 printk(KERN_ERR "MPTABLE: bad table version (%d)!!\n",
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300245 mpc->mpc_spec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 return 0;
247 }
248 if (!mpc->mpc_lapic) {
Andi Kleenaecc6362006-09-26 10:52:37 +0200249 printk(KERN_ERR "MPTABLE: null local APIC address!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 return 0;
251 }
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300252 memcpy(str, mpc->mpc_oem, 8);
Andi Kleenaecc6362006-09-26 10:52:37 +0200253 str[8] = 0;
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300254 printk(KERN_INFO "MPTABLE: OEM ID: %s ", str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300256 memcpy(str, mpc->mpc_productid, 12);
Andi Kleenaecc6362006-09-26 10:52:37 +0200257 str[12] = 0;
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300258 printk(KERN_INFO "MPTABLE: Product ID: %s ", str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300260 printk(KERN_INFO "MPTABLE: APIC at: 0x%X\n", mpc->mpc_lapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
262 /* save the local APIC address, it might be non-default */
263 if (!acpi_lapic)
Andi Kleenaecc6362006-09-26 10:52:37 +0200264 mp_lapic_addr = mpc->mpc_lapic;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800266 if (early)
267 return 1;
268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 /*
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300270 * Now process the configuration blocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 */
272 while (count < mpc->mpc_length) {
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300273 switch (*mpt) {
274 case MP_PROCESSOR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 {
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300276 struct mpc_config_processor *m =
277 (struct mpc_config_processor *)mpt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 if (!acpi_lapic)
Andi Kleenaecc6362006-09-26 10:52:37 +0200279 MP_processor_info(m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 mpt += sizeof(*m);
281 count += sizeof(*m);
282 break;
283 }
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300284 case MP_BUS:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 {
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300286 struct mpc_config_bus *m =
287 (struct mpc_config_bus *)mpt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 MP_bus_info(m);
289 mpt += sizeof(*m);
290 count += sizeof(*m);
291 break;
292 }
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300293 case MP_IOAPIC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 {
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300295 struct mpc_config_ioapic *m =
296 (struct mpc_config_ioapic *)mpt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 MP_ioapic_info(m);
Andi Kleenaecc6362006-09-26 10:52:37 +0200298 mpt += sizeof(*m);
299 count += sizeof(*m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 break;
301 }
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300302 case MP_INTSRC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 {
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300304 struct mpc_config_intsrc *m =
305 (struct mpc_config_intsrc *)mpt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
307 MP_intsrc_info(m);
Andi Kleenaecc6362006-09-26 10:52:37 +0200308 mpt += sizeof(*m);
309 count += sizeof(*m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 break;
311 }
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300312 case MP_LINTSRC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 {
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300314 struct mpc_config_lintsrc *m =
315 (struct mpc_config_lintsrc *)mpt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 MP_lintsrc_info(m);
Andi Kleenaecc6362006-09-26 10:52:37 +0200317 mpt += sizeof(*m);
318 count += sizeof(*m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 break;
320 }
321 }
322 }
Ingo Molnar3c43f032007-05-02 19:27:04 +0200323 setup_apic_routing();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 if (!num_processors)
Andi Kleenaecc6362006-09-26 10:52:37 +0200325 printk(KERN_ERR "MPTABLE: no processors registered!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 return num_processors;
327}
328
329static int __init ELCR_trigger(unsigned int irq)
330{
331 unsigned int port;
332
333 port = 0x4d0 + (irq >> 3);
334 return (inb(port) >> (irq & 7)) & 1;
335}
336
337static void __init construct_default_ioirq_mptable(int mpc_default_type)
338{
339 struct mpc_config_intsrc intsrc;
340 int i;
341 int ELCR_fallback = 0;
342
343 intsrc.mpc_type = MP_INTSRC;
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300344 intsrc.mpc_irqflag = 0; /* conforming */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 intsrc.mpc_srcbus = 0;
346 intsrc.mpc_dstapic = mp_ioapics[0].mpc_apicid;
347
348 intsrc.mpc_irqtype = mp_INT;
349
350 /*
351 * If true, we have an ISA/PCI system with no IRQ entries
352 * in the MP table. To prevent the PCI interrupts from being set up
353 * incorrectly, we try to use the ELCR. The sanity check to see if
354 * there is good ELCR data is very simple - IRQ0, 1, 2 and 13 can
355 * never be level sensitive, so we simply see if the ELCR agrees.
356 * If it does, we assume it's valid.
357 */
358 if (mpc_default_type == 5) {
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300359 printk(KERN_INFO "ISA/PCI bus type with no IRQ information... "
360 "falling back to ELCR\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300362 if (ELCR_trigger(0) || ELCR_trigger(1) || ELCR_trigger(2) ||
363 ELCR_trigger(13))
364 printk(KERN_ERR "ELCR contains invalid data... "
365 "not using ELCR\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 else {
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300367 printk(KERN_INFO
368 "Using ELCR to identify PCI interrupts\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 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;
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300397 intsrc.mpc_dstirq = i ? i : 2; /* IRQ0 to INTIN2 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 MP_intsrc_info(&intsrc);
399 }
400
401 intsrc.mpc_irqtype = mp_ExtINT;
402 intsrc.mpc_srcbusirq = 0;
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300403 intsrc.mpc_dstirq = 0; /* 8259A to INTIN0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 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) {
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300439 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;
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300468 lintsrc.mpc_irqflag = 0; /* conforming */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 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 "
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300496 "information\n");
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800497 return;
498 } else if (acpi_lapic)
499 printk(KERN_INFO "Using ACPI for processor (LAPIC) "
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300500 "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",
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300503 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
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300517 printk(KERN_INFO "Default MP configuration #%d\n",
518 mpf->mpf_feature1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 construct_default_ISA_mptable(mpf->mpf_feature1);
520
521 } else if (mpf->mpf_physptr) {
522
523 /*
524 * Read the physical hardware table. Anything here will
525 * override the defaults.
526 */
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800527 if (!smp_read_mpc(phys_to_virt(mpf->mpf_physptr), early)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 smp_found_config = 0;
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300529 printk(KERN_ERR
530 "BIOS bug, MP table errors detected!...\n");
531 printk(KERN_ERR "... disabling SMP support. "
532 "(tell your hw vendor)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 return;
534 }
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800535
536 if (early)
537 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 /*
539 * If there are no explicit MP IRQ entries, then we are
540 * broken. We set up most of the low 16 IO-APIC pins to
541 * ISA defaults and hope it will work.
542 */
543 if (!mp_irq_entries) {
544 struct mpc_config_bus bus;
545
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300546 printk(KERN_ERR "BIOS bug, no explicit IRQ entries, "
547 "using default mptable. "
548 "(tell your hw vendor)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
550 bus.mpc_type = MP_BUS;
551 bus.mpc_busid = 0;
552 memcpy(bus.mpc_bustype, "ISA ", 6);
553 MP_bus_info(&bus);
554
555 construct_default_ioirq_mptable(0);
556 }
557
558 } else
559 BUG();
560
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800561 if (!early)
562 printk(KERN_INFO "Processors: %d\n", num_processors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 /*
564 * Only use the first configuration found.
565 */
566}
567
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800568void __init early_get_smp_config(void)
569{
570 __get_smp_config(1);
571}
572
573void __init get_smp_config(void)
574{
575 __get_smp_config(0);
576}
577
578static int __init smp_scan_config(unsigned long base, unsigned long length,
579 unsigned reserve)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580{
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300581 extern void __bad_mpf_size(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 unsigned int *bp = phys_to_virt(base);
583 struct intel_mp_floating *mpf;
584
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300585 Dprintk("Scan SMP from %p for %ld bytes.\n", bp, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 if (sizeof(*mpf) != 16)
587 __bad_mpf_size();
588
589 while (length > 0) {
590 mpf = (struct intel_mp_floating *)bp;
591 if ((*bp == SMP_MAGIC_IDENT) &&
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300592 (mpf->mpf_length == 1) &&
593 !mpf_checksum((unsigned char *)bp, 16) &&
594 ((mpf->mpf_specification == 1)
595 || (mpf->mpf_specification == 4))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
597 smp_found_config = 1;
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800598 mpf_found = mpf;
599
600 if (!reserve)
601 return 1;
602
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 reserve_bootmem_generic(virt_to_phys(mpf), PAGE_SIZE);
604 if (mpf->mpf_physptr)
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800605 reserve_bootmem_generic(mpf->mpf_physptr,
606 PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 return 1;
608 }
609 bp += 4;
610 length -= 16;
611 }
612 return 0;
613}
614
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800615static void __init __find_smp_config(unsigned reserve)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616{
617 unsigned int address;
618
619 /*
620 * FIXME: Linux assumes you have 640K of base ram..
621 * this continues the error...
622 *
623 * 1) Scan the bottom 1K for a signature
624 * 2) Scan the top 1K of base RAM
625 * 3) Scan the 64K of bios
626 */
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800627 if (smp_scan_config(0x0, 0x400, reserve) ||
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300628 smp_scan_config(639 * 0x400, 0x400, reserve) ||
629 smp_scan_config(0xF0000, 0x10000, reserve))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 return;
631 /*
Andi Kleene5099132006-09-26 10:52:29 +0200632 * If it is an SMP machine we should know now.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 *
634 * there is a real-mode segmented pointer pointing to the
635 * 4K EBDA area at 0x40E, calculate and scan it here.
636 *
637 * NOTE! There are Linux loaders that will corrupt the EBDA
638 * area, and as such this kind of SMP config may be less
639 * trustworthy, simply because the SMP table may have been
640 * stomped on during early boot. These loaders are buggy and
641 * should be fixed.
642 */
643
644 address = *(unsigned short *)phys_to_virt(0x40E);
645 address <<= 4;
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800646 if (smp_scan_config(address, 0x1000, reserve))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 return;
648
649 /* If we have come this far, we did not find an MP table */
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300650 printk(KERN_INFO "No mptable found.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651}
652
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800653void __init early_find_smp_config(void)
654{
655 __find_smp_config(0);
656}
657
658void __init find_smp_config(void)
659{
660 __find_smp_config(1);
661}
662
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663/* --------------------------------------------------------------------------
664 ACPI-based MP Configuration
665 -------------------------------------------------------------------------- */
666
Len Brown888ba6c2005-08-24 12:07:20 -0400667#ifdef CONFIG_ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
Andi Kleenefec3b92006-09-26 10:52:30 +0200669void __init mp_register_lapic_address(u64 address)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670{
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300671 mp_lapic_addr = (unsigned long)address;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 set_fixmap_nocache(FIX_APIC_BASE, mp_lapic_addr);
Glauber de Oliveira Costac70dcb72008-03-19 14:25:58 -0300673 if (boot_cpu_physical_apicid == -1U)
674 boot_cpu_physical_apicid = GET_APIC_ID(apic_read(APIC_ID));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675}
676
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300677void __cpuinit mp_register_lapic(u8 id, u8 enabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678{
679 struct mpc_config_processor processor;
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300680 int boot_cpu = 0;
681
Glauber de Oliveira Costac70dcb72008-03-19 14:25:58 -0300682 if (id == boot_cpu_physical_apicid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 boot_cpu = 1;
684
685 processor.mpc_type = MP_PROCESSOR;
686 processor.mpc_apicid = id;
Andi Kleenf2c2cca2006-09-26 10:52:37 +0200687 processor.mpc_apicver = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 processor.mpc_cpuflag = (enabled ? CPU_ENABLED : 0);
689 processor.mpc_cpuflag |= (boot_cpu ? CPU_BOOTPROCESSOR : 0);
Andi Kleenf2c2cca2006-09-26 10:52:37 +0200690 processor.mpc_cpufeature = 0;
691 processor.mpc_featureflag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 processor.mpc_reserved[0] = 0;
693 processor.mpc_reserved[1] = 0;
694
695 MP_processor_info(&processor);
696}
697
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698#define MP_ISA_BUS 0
699#define MP_MAX_IOAPIC_PIN 127
700
701static struct mp_ioapic_routing {
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300702 int apic_id;
703 int gsi_start;
704 int gsi_end;
705 u32 pin_programmed[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706} mp_ioapic_routing[MAX_IO_APICS];
707
Andi Kleenefec3b92006-09-26 10:52:30 +0200708static int mp_find_ioapic(int gsi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709{
Andi Kleenefec3b92006-09-26 10:52:30 +0200710 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
712 /* Find the IOAPIC that manages this GSI. */
713 for (i = 0; i < nr_ioapics; i++) {
714 if ((gsi >= mp_ioapic_routing[i].gsi_start)
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300715 && (gsi <= mp_ioapic_routing[i].gsi_end))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 return i;
717 }
718
719 printk(KERN_ERR "ERROR: Unable to locate IOAPIC for GSI %d\n", gsi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 return -1;
721}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
Andi Kleen78b599a2007-07-21 17:09:53 +0200723static u8 uniq_ioapic_id(u8 id)
724{
725 int i;
726 DECLARE_BITMAP(used, 256);
727 bitmap_zero(used, 256);
728 for (i = 0; i < nr_ioapics; i++) {
729 struct mpc_config_ioapic *ia = &mp_ioapics[i];
730 __set_bit(ia->mpc_apicid, used);
731 }
732 if (!test_bit(id, used))
733 return id;
734 return find_first_zero_bit(used, 256);
735}
736
Andi Kleenefec3b92006-09-26 10:52:30 +0200737void __init mp_register_ioapic(u8 id, u32 address, u32 gsi_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738{
Andi Kleenefec3b92006-09-26 10:52:30 +0200739 int idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
Andi Kleen013bf2c2006-09-30 01:47:55 +0200741 if (bad_ioapic(address))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
Andi Kleen78b599a2007-07-21 17:09:53 +0200744 idx = nr_ioapics;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
746 mp_ioapics[idx].mpc_type = MP_IOAPIC;
747 mp_ioapics[idx].mpc_flags = MPC_APIC_USABLE;
748 mp_ioapics[idx].mpc_apicaddr = address;
749
750 set_fixmap_nocache(FIX_IO_APIC_BASE_0 + idx, address);
Andi Kleen78b599a2007-07-21 17:09:53 +0200751 mp_ioapics[idx].mpc_apicid = uniq_ioapic_id(id);
Andi Kleenf2c2cca2006-09-26 10:52:37 +0200752 mp_ioapics[idx].mpc_apicver = 0;
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300753
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 /*
755 * Build basic IRQ lookup table to facilitate gsi->io_apic lookups
756 * and to prevent reprogramming of IOAPIC pins (PCI IRQs).
757 */
758 mp_ioapic_routing[idx].apic_id = mp_ioapics[idx].mpc_apicid;
759 mp_ioapic_routing[idx].gsi_start = gsi_base;
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300760 mp_ioapic_routing[idx].gsi_end = gsi_base +
761 io_apic_get_redir_entries(idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
Andi Kleenf2c2cca2006-09-26 10:52:37 +0200763 printk(KERN_INFO "IOAPIC[%d]: apic_id %d, address 0x%x, "
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300764 "GSI %d-%d\n", idx, mp_ioapics[idx].mpc_apicid,
765 mp_ioapics[idx].mpc_apicaddr,
766 mp_ioapic_routing[idx].gsi_start,
767 mp_ioapic_routing[idx].gsi_end);
Andi Kleen78b599a2007-07-21 17:09:53 +0200768
769 nr_ioapics++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770}
771
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300772void __init mp_override_legacy_irq(u8 bus_irq, u8 polarity, u8 trigger, u32 gsi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773{
774 struct mpc_config_intsrc intsrc;
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300775 int ioapic = -1;
776 int pin = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
778 /*
779 * Convert 'gsi' to 'ioapic.pin'.
780 */
781 ioapic = mp_find_ioapic(gsi);
782 if (ioapic < 0)
783 return;
784 pin = gsi - mp_ioapic_routing[ioapic].gsi_start;
785
786 /*
787 * TBD: This check is for faulty timer entries, where the override
788 * erroneously sets the trigger to level, resulting in a HUGE
789 * increase of timer interrupts!
790 */
791 if ((bus_irq == 0) && (trigger == 3))
792 trigger = 1;
793
794 intsrc.mpc_type = MP_INTSRC;
795 intsrc.mpc_irqtype = mp_INT;
796 intsrc.mpc_irqflag = (trigger << 2) | polarity;
797 intsrc.mpc_srcbus = MP_ISA_BUS;
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300798 intsrc.mpc_srcbusirq = bus_irq; /* IRQ */
799 intsrc.mpc_dstapic = mp_ioapics[ioapic].mpc_apicid; /* APIC ID */
800 intsrc.mpc_dstirq = pin; /* INTIN# */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300802 Dprintk("Int: type %d, pol %d, trig %d, bus %d, irq %d, %d-%d\n",
803 intsrc.mpc_irqtype, intsrc.mpc_irqflag & 3,
804 (intsrc.mpc_irqflag >> 2) & 3, intsrc.mpc_srcbus,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 intsrc.mpc_srcbusirq, intsrc.mpc_dstapic, intsrc.mpc_dstirq);
806
807 mp_irqs[mp_irq_entries] = intsrc;
808 if (++mp_irq_entries == MAX_IRQ_SOURCES)
809 panic("Max # of irq sources exceeded!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810}
811
Andi Kleenefec3b92006-09-26 10:52:30 +0200812void __init mp_config_acpi_legacy_irqs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813{
814 struct mpc_config_intsrc intsrc;
Andi Kleenefec3b92006-09-26 10:52:30 +0200815 int i = 0;
816 int ioapic = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
818 /*
819 * Fabricate the legacy ISA bus (bus #31).
820 */
Andi Kleen55f05ff2006-09-26 10:52:30 +0200821 set_bit(MP_ISA_BUS, mp_bus_not_pci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
823 /*
824 * Locate the IOAPIC that manages the ISA IRQs (0-15).
825 */
826 ioapic = mp_find_ioapic(0);
827 if (ioapic < 0)
828 return;
829
830 intsrc.mpc_type = MP_INTSRC;
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300831 intsrc.mpc_irqflag = 0; /* Conforming */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 intsrc.mpc_srcbus = MP_ISA_BUS;
833 intsrc.mpc_dstapic = mp_ioapics[ioapic].mpc_apicid;
834
835 /*
836 * Use the default configuration for the IRQs 0-15. Unless
837 * overridden by (MADT) interrupt source override entries.
838 */
839 for (i = 0; i < 16; i++) {
840 int idx;
841
842 for (idx = 0; idx < mp_irq_entries; idx++) {
843 struct mpc_config_intsrc *irq = mp_irqs + idx;
844
845 /* Do we already have a mapping for this ISA IRQ? */
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300846 if (irq->mpc_srcbus == MP_ISA_BUS
847 && irq->mpc_srcbusirq == i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 break;
849
850 /* Do we already have a mapping for this IOAPIC pin */
851 if ((irq->mpc_dstapic == intsrc.mpc_dstapic) &&
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300852 (irq->mpc_dstirq == i))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 break;
854 }
855
856 if (idx != mp_irq_entries) {
857 printk(KERN_DEBUG "ACPI: IRQ%d used by override.\n", i);
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300858 continue; /* IRQ already used */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 }
860
861 intsrc.mpc_irqtype = mp_INT;
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300862 intsrc.mpc_srcbusirq = i; /* Identity mapped */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 intsrc.mpc_dstirq = i;
864
865 Dprintk("Int: type %d, pol %d, trig %d, bus %d, irq %d, "
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300866 "%d-%d\n", intsrc.mpc_irqtype, intsrc.mpc_irqflag & 3,
867 (intsrc.mpc_irqflag >> 2) & 3, intsrc.mpc_srcbus,
868 intsrc.mpc_srcbusirq, intsrc.mpc_dstapic,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 intsrc.mpc_dstirq);
870
871 mp_irqs[mp_irq_entries] = intsrc;
872 if (++mp_irq_entries == MAX_IRQ_SOURCES)
873 panic("Max # of irq sources exceeded!\n");
874 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875}
876
Bob Moore50eca3e2005-09-30 19:03:00 -0400877int mp_register_gsi(u32 gsi, int triggering, int polarity)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878{
Andi Kleenefec3b92006-09-26 10:52:30 +0200879 int ioapic = -1;
880 int ioapic_pin = 0;
881 int idx, bit = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
883 if (acpi_irq_model != ACPI_IRQ_MODEL_IOAPIC)
884 return gsi;
885
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 /* Don't set up the ACPI SCI because it's already set up */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300887 if (acpi_gbl_FADT.sci_interrupt == gsi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 return gsi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
890 ioapic = mp_find_ioapic(gsi);
891 if (ioapic < 0) {
892 printk(KERN_WARNING "No IOAPIC for GSI %u\n", gsi);
893 return gsi;
894 }
895
896 ioapic_pin = gsi - mp_ioapic_routing[ioapic].gsi_start;
897
898 /*
899 * Avoid pin reprogramming. PRTs typically include entries
900 * with redundant pin->gsi mappings (but unique PCI devices);
901 * we only program the IOAPIC on the first.
902 */
903 bit = ioapic_pin % 32;
904 idx = (ioapic_pin < 32) ? 0 : (ioapic_pin / 32);
905 if (idx > 3) {
906 printk(KERN_ERR "Invalid reference to IOAPIC pin "
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300907 "%d-%d\n", mp_ioapic_routing[ioapic].apic_id,
908 ioapic_pin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 return gsi;
910 }
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300911 if ((1 << bit) & mp_ioapic_routing[ioapic].pin_programmed[idx]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 Dprintk(KERN_DEBUG "Pin %d-%d already programmed\n",
913 mp_ioapic_routing[ioapic].apic_id, ioapic_pin);
Eric W. Biedermancd1182f2006-10-04 02:16:53 -0700914 return gsi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 }
916
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300917 mp_ioapic_routing[ioapic].pin_programmed[idx] |= (1 << bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 io_apic_set_pci_routing(ioapic, ioapic_pin, gsi,
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300920 triggering == ACPI_EDGE_SENSITIVE ? 0 : 1,
921 polarity == ACPI_ACTIVE_HIGH ? 0 : 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 return gsi;
923}
Alexey Starikovskiyd2953312008-03-17 22:07:59 +0300924#endif /* CONFIG_ACPI */