blob: b6f1e4e235e314cb8ebc3854ed5795a5f1dcb4a4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Intel Multiprocessor Specification 1.1 and 1.4
3 * compliant MP-table parsing routines.
4 *
5 * (c) 1995 Alan Cox, Building #3 <alan@redhat.com>
6 * (c) 1998, 1999, 2000 Ingo Molnar <mingo@redhat.com>
7 *
8 * Fixes
9 * Erich Boleyn : MP v1.4 and additional changes.
10 * Alan Cox : Added EBDA scanning
11 * Ingo Molnar : various cleanups and rewrites
12 * Maciej W. Rozycki: Bits for default MP configurations
13 * Paul Diefenbaugh: Added full ACPI support
14 */
15
16#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/init.h>
18#include <linux/acpi.h>
19#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/bootmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/kernel_stat.h>
22#include <linux/mc146818rtc.h>
23#include <linux/bitops.h>
24
25#include <asm/smp.h>
26#include <asm/acpi.h>
27#include <asm/mtrr.h>
28#include <asm/mpspec.h>
29#include <asm/io_apic.h>
Alexey Starikovskiyce3fe6b2008-03-17 22:08:17 +030030#include <asm/bios_ebda.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32#include <mach_apic.h>
Andi Kleen874c4fe2006-09-26 10:52:26 +020033#include <mach_apicdef.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <mach_mpparse.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36/* Have we found an MP table */
37int smp_found_config;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39/*
40 * Various Linux-internal data structures created from the
41 * MP-table.
42 */
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +030043#if defined (CONFIG_MCA) || defined (CONFIG_EISA)
Linus Torvalds1da177e2005-04-16 15:20:36 -070044int mp_bus_id_to_type [MAX_MP_BUSSES];
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +030045#endif
Alexey Starikovskiya6333c32008-03-20 14:54:09 +030046DECLARE_BITMAP(mp_bus_not_pci, MAX_MP_BUSSES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047int mp_bus_id_to_pci_bus [MAX_MP_BUSSES] = { [0 ... MAX_MP_BUSSES-1] = -1 };
48static int mp_current_pci_id;
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050/* # 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070056int pic_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Alexey Starikovskiy2bb9e9d2008-03-27 23:54:50 +030058/* Make it easy to share the UP and SMP code: */
59#ifndef CONFIG_X86_SMP
Sam Ravnborg87d7e982008-01-30 13:33:37 +010060unsigned int num_processors;
Glauber Costa7b1292e2008-03-03 14:12:41 -030061unsigned disabled_cpus __cpuinitdata;
Ingo Molnarfae98112008-03-28 12:22:10 +010062#ifndef CONFIG_X86_LOCAL_APIC
Alexey Starikovskiy837e0e72008-03-27 23:55:10 +030063unsigned int boot_cpu_physical_apicid = -1U;
Alexey Starikovskiy53c4c792008-03-27 23:54:57 +030064#endif
Ingo Molnarfae98112008-03-28 12:22:10 +010065#endif
Glauber Costa7b1292e2008-03-03 14:12:41 -030066
Linus Torvalds1da177e2005-04-16 15:20:36 -070067/*
68 * Intel MP BIOS table parsing routines:
69 */
70
71
72/*
73 * Checksum an MP configuration block.
74 */
75
76static int __init mpf_checksum(unsigned char *mp, int len)
77{
78 int sum = 0;
79
80 while (len--)
81 sum += *mp++;
82
83 return sum & 0xFF;
84}
85
Alexey Starikovskiy86420502008-03-17 22:08:55 +030086#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -070087/*
88 * Have to match translation table entries to main table entries by counter
89 * hence the mpc_record variable .... can't see a less disgusting way of
90 * doing this ....
91 */
92
93static int mpc_record;
Vivek Goyal4a5d1072007-01-11 01:52:44 +010094static struct mpc_config_translation *translation_table[MAX_MPC_ENTRY] __cpuinitdata;
Alexey Starikovskiy86420502008-03-17 22:08:55 +030095#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Alexey Starikovskiyc853c672008-03-27 23:54:13 +030097static void __cpuinit MP_processor_info(struct mpc_config_processor *m)
98{
99 int apicid;
100
Glauber Costa7b1292e2008-03-03 14:12:41 -0300101 if (!(m->mpc_cpuflag & CPU_ENABLED)) {
Ingo Molnar059c9642008-03-28 11:57:55 +0100102#ifdef CONFIG_X86_SMP
Glauber Costa7b1292e2008-03-03 14:12:41 -0300103 disabled_cpus++;
Ingo Molnar059c9642008-03-28 11:57:55 +0100104#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 return;
Glauber Costa7b1292e2008-03-03 14:12:41 -0300106 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Alexey Starikovskiy4655c7d2008-03-17 22:08:36 +0300108#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 apicid = mpc_apic_id(m, translation_table[mpc_record]);
Alexey Starikovskiy4655c7d2008-03-17 22:08:36 +0300110#else
111 Dprintk("Processor #%d %u:%u APIC version %d\n",
112 m->mpc_apicid,
113 (m->mpc_cpufeature & CPU_FAMILY_MASK) >> 8,
114 (m->mpc_cpufeature & CPU_MODEL_MASK) >> 4,
115 m->mpc_apicver);
116 apicid = m->mpc_apicid;
117#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
119 if (m->mpc_featureflag&(1<<0))
120 Dprintk(" Floating point unit present.\n");
121 if (m->mpc_featureflag&(1<<7))
122 Dprintk(" Machine Exception supported.\n");
123 if (m->mpc_featureflag&(1<<8))
124 Dprintk(" 64 bit compare & exchange supported.\n");
125 if (m->mpc_featureflag&(1<<9))
126 Dprintk(" Internal APIC present.\n");
127 if (m->mpc_featureflag&(1<<11))
128 Dprintk(" SEP present.\n");
129 if (m->mpc_featureflag&(1<<12))
130 Dprintk(" MTRR present.\n");
131 if (m->mpc_featureflag&(1<<13))
132 Dprintk(" PGE present.\n");
133 if (m->mpc_featureflag&(1<<14))
134 Dprintk(" MCA present.\n");
135 if (m->mpc_featureflag&(1<<15))
136 Dprintk(" CMOV present.\n");
137 if (m->mpc_featureflag&(1<<16))
138 Dprintk(" PAT present.\n");
139 if (m->mpc_featureflag&(1<<17))
140 Dprintk(" PSE present.\n");
141 if (m->mpc_featureflag&(1<<18))
142 Dprintk(" PSN present.\n");
143 if (m->mpc_featureflag&(1<<19))
144 Dprintk(" Cache Line Flush Instruction present.\n");
145 /* 20 Reserved */
146 if (m->mpc_featureflag&(1<<21))
147 Dprintk(" Debug Trace and EMON Store present.\n");
148 if (m->mpc_featureflag&(1<<22))
149 Dprintk(" ACPI Thermal Throttle Registers present.\n");
150 if (m->mpc_featureflag&(1<<23))
151 Dprintk(" MMX present.\n");
152 if (m->mpc_featureflag&(1<<24))
153 Dprintk(" FXSR present.\n");
154 if (m->mpc_featureflag&(1<<25))
155 Dprintk(" XMM present.\n");
156 if (m->mpc_featureflag&(1<<26))
157 Dprintk(" Willamette New Instructions present.\n");
158 if (m->mpc_featureflag&(1<<27))
159 Dprintk(" Self Snoop present.\n");
160 if (m->mpc_featureflag&(1<<28))
161 Dprintk(" HT present.\n");
162 if (m->mpc_featureflag&(1<<29))
163 Dprintk(" Thermal Monitor present.\n");
164 /* 30, 31 Reserved */
165
166
167 if (m->mpc_cpuflag & CPU_BOOTPROCESSOR) {
168 Dprintk(" Bootup CPU\n");
169 boot_cpu_physical_apicid = m->mpc_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 }
171
Alexey Starikovskiyc853c672008-03-27 23:54:13 +0300172 generic_processor_info(apicid, m->mpc_apicver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173}
174
175static void __init MP_bus_info (struct mpc_config_bus *m)
176{
177 char str[7];
178
179 memcpy(str, m->mpc_bustype, 6);
180 str[6] = 0;
181
Alexey Starikovskiy0ec153a2008-03-17 22:08:48 +0300182#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 mpc_oem_bus_info(m, str, translation_table[mpc_record]);
Alexey Starikovskiy0ec153a2008-03-17 22:08:48 +0300184#else
185 Dprintk("Bus #%d is %s\n", m->mpc_busid, str);
186#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Andi Kleen5e4edbb2006-09-26 10:52:35 +0200188#if MAX_MP_BUSSES < 256
Randy Dunlapc0ec31a2006-04-10 22:53:13 -0700189 if (m->mpc_busid >= MAX_MP_BUSSES) {
190 printk(KERN_WARNING "MP table busid value (%d) for bustype %s "
191 " is too large, max. supported is %d\n",
192 m->mpc_busid, str, MAX_MP_BUSSES - 1);
193 return;
194 }
Andi Kleen5e4edbb2006-09-26 10:52:35 +0200195#endif
Randy Dunlapc0ec31a2006-04-10 22:53:13 -0700196
Alexey Starikovskiya6333c32008-03-20 14:54:09 +0300197 set_bit(m->mpc_busid, mp_bus_not_pci);
Alexey Starikovskiy9e0a2de2008-03-20 14:54:56 +0300198 if (strncmp(str, BUSTYPE_PCI, sizeof(BUSTYPE_PCI)-1) == 0) {
Alexey Starikovskiyd285e332008-03-17 22:08:42 +0300199#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 mpc_oem_pci_bus(m, translation_table[mpc_record]);
Alexey Starikovskiyd285e332008-03-17 22:08:42 +0300201#endif
Alexey Starikovskiya6333c32008-03-20 14:54:09 +0300202 clear_bit(m->mpc_busid, mp_bus_not_pci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 mp_bus_id_to_pci_bus[m->mpc_busid] = mp_current_pci_id;
204 mp_current_pci_id++;
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300205#if defined(CONFIG_EISA) || defined (CONFIG_MCA)
206 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_PCI;
Alexey Starikovskiy9e0a2de2008-03-20 14:54:56 +0300207 } else if (strncmp(str, BUSTYPE_ISA, sizeof(BUSTYPE_ISA)-1) == 0) {
208 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_ISA;
209 } else if (strncmp(str, BUSTYPE_EISA, sizeof(BUSTYPE_EISA)-1) == 0) {
210 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_EISA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 } else if (strncmp(str, BUSTYPE_MCA, sizeof(BUSTYPE_MCA)-1) == 0) {
212 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_MCA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 } else {
214 printk(KERN_WARNING "Unknown bustype %s - ignoring\n", str);
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300215#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 }
217}
218
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400219#ifdef CONFIG_X86_IO_APIC
220
Alexey Starikovskiy857033a2008-03-17 22:08:05 +0300221static int bad_ioapic(unsigned long address)
222{
223 if (nr_ioapics >= MAX_IO_APICS) {
224 printk(KERN_ERR "ERROR: Max # of I/O APICs (%d) exceeded "
225 "(found %d)\n", MAX_IO_APICS, nr_ioapics);
226 panic("Recompile kernel with bigger MAX_IO_APICS!\n");
227 }
228 if (!address) {
229 printk(KERN_ERR "WARNING: Bogus (zero) I/O APIC address"
230 " found in table, skipping!\n");
231 return 1;
232 }
233 return 0;
234}
235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236static void __init MP_ioapic_info (struct mpc_config_ioapic *m)
237{
238 if (!(m->mpc_flags & MPC_APIC_USABLE))
239 return;
240
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100241 printk(KERN_INFO "I/O APIC #%d Version %d at 0x%X.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 m->mpc_apicid, m->mpc_apicver, m->mpc_apicaddr);
Alexey Starikovskiy857033a2008-03-17 22:08:05 +0300243
244 if (bad_ioapic(m->mpc_apicaddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 return;
Alexey Starikovskiy857033a2008-03-17 22:08:05 +0300246
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 mp_ioapics[nr_ioapics] = *m;
248 nr_ioapics++;
249}
250
251static void __init MP_intsrc_info (struct mpc_config_intsrc *m)
252{
253 mp_irqs [mp_irq_entries] = *m;
254 Dprintk("Int: type %d, pol %d, trig %d, bus %d,"
255 " IRQ %02x, APIC ID %x, APIC INT %02x\n",
256 m->mpc_irqtype, m->mpc_irqflag & 3,
257 (m->mpc_irqflag >> 2) & 3, m->mpc_srcbus,
258 m->mpc_srcbusirq, m->mpc_dstapic, m->mpc_dstirq);
259 if (++mp_irq_entries == MAX_IRQ_SOURCES)
260 panic("Max # of irq sources exceeded!!\n");
261}
262
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400263#endif
264
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265static void __init MP_lintsrc_info (struct mpc_config_lintsrc *m)
266{
267 Dprintk("Lint: type %d, pol %d, trig %d, bus %d,"
268 " IRQ %02x, APIC ID %x, APIC LINT %02x\n",
269 m->mpc_irqtype, m->mpc_irqflag & 3,
270 (m->mpc_irqflag >> 2) &3, m->mpc_srcbusid,
271 m->mpc_srcbusirq, m->mpc_destapic, m->mpc_destapiclint);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272}
273
274#ifdef CONFIG_X86_NUMAQ
275static void __init MP_translation_info (struct mpc_config_translation *m)
276{
277 printk(KERN_INFO "Translation: record %d, type %d, quad %d, global %d, local %d\n", mpc_record, m->trans_type, m->trans_quad, m->trans_global, m->trans_local);
278
279 if (mpc_record >= MAX_MPC_ENTRY)
280 printk(KERN_ERR "MAX_MPC_ENTRY exceeded!\n");
281 else
282 translation_table[mpc_record] = m; /* stash this for later */
283 if (m->trans_quad < MAX_NUMNODES && !node_online(m->trans_quad))
284 node_set_online(m->trans_quad);
285}
286
287/*
288 * Read/parse the MPC oem tables
289 */
290
291static void __init smp_read_mpc_oem(struct mp_config_oemtable *oemtable, \
292 unsigned short oemsize)
293{
294 int count = sizeof (*oemtable); /* the header size */
295 unsigned char *oemptr = ((unsigned char *)oemtable)+count;
296
297 mpc_record = 0;
298 printk(KERN_INFO "Found an OEM MPC table at %8p - parsing it ... \n", oemtable);
299 if (memcmp(oemtable->oem_signature,MPC_OEM_SIGNATURE,4))
300 {
301 printk(KERN_WARNING "SMP mpc oemtable: bad signature [%c%c%c%c]!\n",
302 oemtable->oem_signature[0],
303 oemtable->oem_signature[1],
304 oemtable->oem_signature[2],
305 oemtable->oem_signature[3]);
306 return;
307 }
308 if (mpf_checksum((unsigned char *)oemtable,oemtable->oem_length))
309 {
310 printk(KERN_WARNING "SMP oem mptable: checksum error!\n");
311 return;
312 }
313 while (count < oemtable->oem_length) {
314 switch (*oemptr) {
315 case MP_TRANSLATION:
316 {
317 struct mpc_config_translation *m=
318 (struct mpc_config_translation *)oemptr;
319 MP_translation_info(m);
320 oemptr += sizeof(*m);
321 count += sizeof(*m);
322 ++mpc_record;
323 break;
324 }
325 default:
326 {
327 printk(KERN_WARNING "Unrecognised OEM table entry type! - %d\n", (int) *oemptr);
328 return;
329 }
330 }
331 }
332}
333
334static inline void mps_oem_check(struct mp_config_table *mpc, char *oem,
335 char *productid)
336{
337 if (strncmp(oem, "IBM NUMA", 8))
338 printk("Warning! May not be a NUMA-Q system!\n");
339 if (mpc->mpc_oemptr)
340 smp_read_mpc_oem((struct mp_config_oemtable *) mpc->mpc_oemptr,
341 mpc->mpc_oemsize);
342}
343#endif /* CONFIG_X86_NUMAQ */
344
345/*
346 * Read/parse the MPC
347 */
348
349static int __init smp_read_mpc(struct mp_config_table *mpc)
350{
351 char str[16];
352 char oem[10];
353 int count=sizeof(*mpc);
354 unsigned char *mpt=((unsigned char *)mpc)+count;
355
356 if (memcmp(mpc->mpc_signature,MPC_SIGNATURE,4)) {
357 printk(KERN_ERR "SMP mptable: bad signature [0x%x]!\n",
358 *(u32 *)mpc->mpc_signature);
359 return 0;
360 }
361 if (mpf_checksum((unsigned char *)mpc,mpc->mpc_length)) {
362 printk(KERN_ERR "SMP mptable: checksum error!\n");
363 return 0;
364 }
365 if (mpc->mpc_spec!=0x01 && mpc->mpc_spec!=0x04) {
366 printk(KERN_ERR "SMP mptable: bad table version (%d)!!\n",
367 mpc->mpc_spec);
368 return 0;
369 }
370 if (!mpc->mpc_lapic) {
371 printk(KERN_ERR "SMP mptable: null local APIC address!\n");
372 return 0;
373 }
374 memcpy(oem,mpc->mpc_oem,8);
375 oem[8]=0;
376 printk(KERN_INFO "OEM ID: %s ",oem);
377
378 memcpy(str,mpc->mpc_productid,12);
379 str[12]=0;
380 printk("Product ID: %s ",str);
381
382 mps_oem_check(mpc, oem, str);
383
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100384 printk("APIC at: 0x%X\n", mpc->mpc_lapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100386 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 * Save the local APIC address (it might be non-default) -- but only
388 * if we're not using ACPI.
389 */
390 if (!acpi_lapic)
391 mp_lapic_addr = mpc->mpc_lapic;
392
393 /*
394 * Now process the configuration blocks.
395 */
Alexey Starikovskiy86420502008-03-17 22:08:55 +0300396#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 mpc_record = 0;
Alexey Starikovskiy86420502008-03-17 22:08:55 +0300398#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 while (count < mpc->mpc_length) {
400 switch(*mpt) {
401 case MP_PROCESSOR:
402 {
403 struct mpc_config_processor *m=
404 (struct mpc_config_processor *)mpt;
405 /* ACPI may have already provided this data */
406 if (!acpi_lapic)
407 MP_processor_info(m);
408 mpt += sizeof(*m);
409 count += sizeof(*m);
410 break;
411 }
412 case MP_BUS:
413 {
414 struct mpc_config_bus *m=
415 (struct mpc_config_bus *)mpt;
416 MP_bus_info(m);
417 mpt += sizeof(*m);
418 count += sizeof(*m);
419 break;
420 }
421 case MP_IOAPIC:
422 {
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400423#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 struct mpc_config_ioapic *m=
425 (struct mpc_config_ioapic *)mpt;
426 MP_ioapic_info(m);
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400427#endif
Ingo Molnarba1ce612008-04-07 13:11:09 +0200428 mpt+=sizeof(struct mpc_config_ioapic);
429 count+=sizeof(struct mpc_config_ioapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 break;
431 }
432 case MP_INTSRC:
433 {
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400434#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 struct mpc_config_intsrc *m=
436 (struct mpc_config_intsrc *)mpt;
437
438 MP_intsrc_info(m);
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400439#endif
Ingo Molnarba1ce612008-04-07 13:11:09 +0200440 mpt+=sizeof(struct mpc_config_intsrc);
441 count+=sizeof(struct mpc_config_intsrc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 break;
443 }
444 case MP_LINTSRC:
445 {
446 struct mpc_config_lintsrc *m=
447 (struct mpc_config_lintsrc *)mpt;
448 MP_lintsrc_info(m);
449 mpt+=sizeof(*m);
450 count+=sizeof(*m);
451 break;
452 }
453 default:
454 {
455 count = mpc->mpc_length;
456 break;
457 }
458 }
Alexey Starikovskiy86420502008-03-17 22:08:55 +0300459#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 ++mpc_record;
Alexey Starikovskiy86420502008-03-17 22:08:55 +0300461#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 }
Ingo Molnar3c43f032007-05-02 19:27:04 +0200463 setup_apic_routing();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 if (!num_processors)
465 printk(KERN_ERR "SMP mptable: no processors registered!\n");
466 return num_processors;
467}
468
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400469#ifdef CONFIG_X86_IO_APIC
470
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471static int __init ELCR_trigger(unsigned int irq)
472{
473 unsigned int port;
474
475 port = 0x4d0 + (irq >> 3);
476 return (inb(port) >> (irq & 7)) & 1;
477}
478
479static void __init construct_default_ioirq_mptable(int mpc_default_type)
480{
481 struct mpc_config_intsrc intsrc;
482 int i;
483 int ELCR_fallback = 0;
484
485 intsrc.mpc_type = MP_INTSRC;
486 intsrc.mpc_irqflag = 0; /* conforming */
487 intsrc.mpc_srcbus = 0;
488 intsrc.mpc_dstapic = mp_ioapics[0].mpc_apicid;
489
490 intsrc.mpc_irqtype = mp_INT;
491
492 /*
493 * If true, we have an ISA/PCI system with no IRQ entries
494 * in the MP table. To prevent the PCI interrupts from being set up
495 * incorrectly, we try to use the ELCR. The sanity check to see if
496 * there is good ELCR data is very simple - IRQ0, 1, 2 and 13 can
497 * never be level sensitive, so we simply see if the ELCR agrees.
498 * If it does, we assume it's valid.
499 */
500 if (mpc_default_type == 5) {
501 printk(KERN_INFO "ISA/PCI bus type with no IRQ information... falling back to ELCR\n");
502
503 if (ELCR_trigger(0) || ELCR_trigger(1) || ELCR_trigger(2) || ELCR_trigger(13))
504 printk(KERN_WARNING "ELCR contains invalid data... not using ELCR\n");
505 else {
506 printk(KERN_INFO "Using ELCR to identify PCI interrupts\n");
507 ELCR_fallback = 1;
508 }
509 }
510
511 for (i = 0; i < 16; i++) {
512 switch (mpc_default_type) {
513 case 2:
514 if (i == 0 || i == 13)
515 continue; /* IRQ0 & IRQ13 not connected */
516 /* fall through */
517 default:
518 if (i == 2)
519 continue; /* IRQ2 is never connected */
520 }
521
522 if (ELCR_fallback) {
523 /*
524 * If the ELCR indicates a level-sensitive interrupt, we
525 * copy that information over to the MP table in the
526 * irqflag field (level sensitive, active high polarity).
527 */
528 if (ELCR_trigger(i))
529 intsrc.mpc_irqflag = 13;
530 else
531 intsrc.mpc_irqflag = 0;
532 }
533
534 intsrc.mpc_srcbusirq = i;
535 intsrc.mpc_dstirq = i ? i : 2; /* IRQ0 to INTIN2 */
536 MP_intsrc_info(&intsrc);
537 }
538
539 intsrc.mpc_irqtype = mp_ExtINT;
540 intsrc.mpc_srcbusirq = 0;
541 intsrc.mpc_dstirq = 0; /* 8259A to INTIN0 */
542 MP_intsrc_info(&intsrc);
543}
544
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400545#endif
546
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547static inline void __init construct_default_ISA_mptable(int mpc_default_type)
548{
549 struct mpc_config_processor processor;
550 struct mpc_config_bus bus;
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400551#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 struct mpc_config_ioapic ioapic;
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400553#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 struct mpc_config_lintsrc lintsrc;
555 int linttypes[2] = { mp_ExtINT, mp_NMI };
556 int i;
557
558 /*
559 * local APIC has default address
560 */
561 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
562
563 /*
564 * 2 CPUs, numbered 0 & 1.
565 */
566 processor.mpc_type = MP_PROCESSOR;
567 /* Either an integrated APIC or a discrete 82489DX. */
568 processor.mpc_apicver = mpc_default_type > 4 ? 0x10 : 0x01;
569 processor.mpc_cpuflag = CPU_ENABLED;
570 processor.mpc_cpufeature = (boot_cpu_data.x86 << 8) |
571 (boot_cpu_data.x86_model << 4) |
572 boot_cpu_data.x86_mask;
573 processor.mpc_featureflag = boot_cpu_data.x86_capability[0];
574 processor.mpc_reserved[0] = 0;
575 processor.mpc_reserved[1] = 0;
576 for (i = 0; i < 2; i++) {
577 processor.mpc_apicid = i;
578 MP_processor_info(&processor);
579 }
580
581 bus.mpc_type = MP_BUS;
582 bus.mpc_busid = 0;
583 switch (mpc_default_type) {
584 default:
585 printk("???\n");
586 printk(KERN_ERR "Unknown standard configuration %d\n",
587 mpc_default_type);
588 /* fall through */
589 case 1:
590 case 5:
591 memcpy(bus.mpc_bustype, "ISA ", 6);
592 break;
593 case 2:
594 case 6:
595 case 3:
596 memcpy(bus.mpc_bustype, "EISA ", 6);
597 break;
598 case 4:
599 case 7:
600 memcpy(bus.mpc_bustype, "MCA ", 6);
601 }
602 MP_bus_info(&bus);
603 if (mpc_default_type > 4) {
604 bus.mpc_busid = 1;
605 memcpy(bus.mpc_bustype, "PCI ", 6);
606 MP_bus_info(&bus);
607 }
608
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400609#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 ioapic.mpc_type = MP_IOAPIC;
611 ioapic.mpc_apicid = 2;
612 ioapic.mpc_apicver = mpc_default_type > 4 ? 0x10 : 0x01;
613 ioapic.mpc_flags = MPC_APIC_USABLE;
614 ioapic.mpc_apicaddr = 0xFEC00000;
615 MP_ioapic_info(&ioapic);
616
617 /*
618 * We set up most of the low 16 IO-APIC pins according to MPS rules.
619 */
620 construct_default_ioirq_mptable(mpc_default_type);
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400621#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 lintsrc.mpc_type = MP_LINTSRC;
623 lintsrc.mpc_irqflag = 0; /* conforming */
624 lintsrc.mpc_srcbusid = 0;
625 lintsrc.mpc_srcbusirq = 0;
626 lintsrc.mpc_destapic = MP_APIC_ALL;
627 for (i = 0; i < 2; i++) {
628 lintsrc.mpc_irqtype = linttypes[i];
629 lintsrc.mpc_destapiclint = i;
630 MP_lintsrc_info(&lintsrc);
631 }
632}
633
634static struct intel_mp_floating *mpf_found;
635
636/*
637 * Scan the memory blocks for an SMP configuration block.
638 */
639void __init get_smp_config (void)
640{
641 struct intel_mp_floating *mpf = mpf_found;
642
643 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 * ACPI supports both logical (e.g. Hyper-Threading) and physical
645 * processors, where MPS only supports physical.
646 */
647 if (acpi_lapic && acpi_ioapic) {
648 printk(KERN_INFO "Using ACPI (MADT) for SMP configuration information\n");
649 return;
650 }
651 else if (acpi_lapic)
652 printk(KERN_INFO "Using ACPI for processor (LAPIC) configuration information\n");
653
654 printk(KERN_INFO "Intel MultiProcessor Specification v1.%d\n", mpf->mpf_specification);
655 if (mpf->mpf_feature2 & (1<<7)) {
656 printk(KERN_INFO " IMCR and PIC compatibility mode.\n");
657 pic_mode = 1;
658 } else {
659 printk(KERN_INFO " Virtual Wire compatibility mode.\n");
660 pic_mode = 0;
661 }
662
663 /*
664 * Now see if we need to read further.
665 */
666 if (mpf->mpf_feature1 != 0) {
667
668 printk(KERN_INFO "Default MP configuration #%d\n", mpf->mpf_feature1);
669 construct_default_ISA_mptable(mpf->mpf_feature1);
670
671 } else if (mpf->mpf_physptr) {
672
673 /*
674 * Read the physical hardware table. Anything here will
675 * override the defaults.
676 */
Daniel Yeisley7d4c8e52006-02-20 18:27:54 -0800677 if (!smp_read_mpc(phys_to_virt(mpf->mpf_physptr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 smp_found_config = 0;
679 printk(KERN_ERR "BIOS bug, MP table errors detected!...\n");
680 printk(KERN_ERR "... disabling SMP support. (tell your hw vendor)\n");
681 return;
682 }
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400683
684#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 /*
686 * If there are no explicit MP IRQ entries, then we are
687 * broken. We set up most of the low 16 IO-APIC pins to
688 * ISA defaults and hope it will work.
689 */
690 if (!mp_irq_entries) {
691 struct mpc_config_bus bus;
692
693 printk(KERN_ERR "BIOS bug, no explicit IRQ entries, using default mptable. (tell your hw vendor)\n");
694
695 bus.mpc_type = MP_BUS;
696 bus.mpc_busid = 0;
697 memcpy(bus.mpc_bustype, "ISA ", 6);
698 MP_bus_info(&bus);
699
700 construct_default_ioirq_mptable(0);
701 }
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400702#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 } else
704 BUG();
705
706 printk(KERN_INFO "Processors: %d\n", num_processors);
707 /*
708 * Only use the first configuration found.
709 */
710}
711
712static int __init smp_scan_config (unsigned long base, unsigned long length)
713{
714 unsigned long *bp = phys_to_virt(base);
715 struct intel_mp_floating *mpf;
716
Ingo Molnare91a3b42008-01-30 13:33:08 +0100717 printk(KERN_INFO "Scan SMP from %p for %ld bytes.\n", bp,length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 if (sizeof(*mpf) != 16)
719 printk("Error: MPF size\n");
720
721 while (length > 0) {
722 mpf = (struct intel_mp_floating *)bp;
723 if ((*bp == SMP_MAGIC_IDENT) &&
724 (mpf->mpf_length == 1) &&
725 !mpf_checksum((unsigned char *)bp, 16) &&
726 ((mpf->mpf_specification == 1)
727 || (mpf->mpf_specification == 4)) ) {
728
729 smp_found_config = 1;
Ingo Molnare91a3b42008-01-30 13:33:08 +0100730 printk(KERN_INFO "found SMP MP-table at [%p] %08lx\n",
731 mpf, virt_to_phys(mpf));
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800732 reserve_bootmem(virt_to_phys(mpf), PAGE_SIZE,
733 BOOTMEM_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 if (mpf->mpf_physptr) {
735 /*
736 * We cannot access to MPC table to compute
737 * table size yet, as only few megabytes from
738 * the bottom is mapped now.
739 * PC-9800's MPC table places on the very last
740 * of physical memory; so that simply reserving
741 * PAGE_SIZE from mpg->mpf_physptr yields BUG()
742 * in reserve_bootmem.
743 */
744 unsigned long size = PAGE_SIZE;
745 unsigned long end = max_low_pfn * PAGE_SIZE;
746 if (mpf->mpf_physptr + size > end)
747 size = end - mpf->mpf_physptr;
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800748 reserve_bootmem(mpf->mpf_physptr, size,
749 BOOTMEM_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 }
751
752 mpf_found = mpf;
753 return 1;
754 }
755 bp += 4;
756 length -= 16;
757 }
758 return 0;
759}
760
761void __init find_smp_config (void)
762{
763 unsigned int address;
764
765 /*
766 * FIXME: Linux assumes you have 640K of base ram..
767 * this continues the error...
768 *
769 * 1) Scan the bottom 1K for a signature
770 * 2) Scan the top 1K of base RAM
771 * 3) Scan the 64K of bios
772 */
773 if (smp_scan_config(0x0,0x400) ||
774 smp_scan_config(639*0x400,0x400) ||
775 smp_scan_config(0xF0000,0x10000))
776 return;
777 /*
778 * If it is an SMP machine we should know now, unless the
779 * configuration is in an EISA/MCA bus machine with an
780 * extended bios data area.
781 *
782 * there is a real-mode segmented pointer pointing to the
783 * 4K EBDA area at 0x40E, calculate and scan it here.
784 *
785 * NOTE! There are Linux loaders that will corrupt the EBDA
786 * area, and as such this kind of SMP config may be less
787 * trustworthy, simply because the SMP table may have been
788 * stomped on during early boot. These loaders are buggy and
789 * should be fixed.
790 *
791 * MP1.4 SPEC states to only scan first 1K of 4K EBDA.
792 */
793
794 address = get_bios_ebda();
795 if (address)
796 smp_scan_config(address, 0x400);
797}
798
799/* --------------------------------------------------------------------------
800 ACPI-based MP Configuration
801 -------------------------------------------------------------------------- */
802
Len Brown888ba6c2005-08-24 12:07:20 -0400803#ifdef CONFIG_ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
Andi Kleen19f03ff2006-09-26 10:52:30 +0200805void __init mp_register_lapic_address(u64 address)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806{
807 mp_lapic_addr = (unsigned long) address;
808
809 set_fixmap_nocache(FIX_APIC_BASE, mp_lapic_addr);
810
811 if (boot_cpu_physical_apicid == -1U)
Jack Steiner05f2d122008-03-28 14:12:02 -0500812 boot_cpu_physical_apicid = GET_APIC_ID(read_apic_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
814 Dprintk("Boot CPU = %d\n", boot_cpu_physical_apicid);
815}
816
Jack Steinera65d1d62008-03-28 14:12:08 -0500817void __cpuinit mp_register_lapic (int id, u8 enabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 if (MAX_APICS - id <= 0) {
820 printk(KERN_WARNING "Processor #%d invalid (max %d)\n",
821 id, MAX_APICS);
822 return;
823 }
Alexey Starikovskiy08bef9d2008-03-27 23:54:20 +0300824
Alexey Starikovskiy987dd2d2008-03-27 23:54:06 +0300825 if (!enabled) {
Ingo Molnar059c9642008-03-28 11:57:55 +0100826#ifdef CONFIG_X86_SMP
Alexey Starikovskiy987dd2d2008-03-27 23:54:06 +0300827 ++disabled_cpus;
Ingo Molnar059c9642008-03-28 11:57:55 +0100828#endif
Alexey Starikovskiy987dd2d2008-03-27 23:54:06 +0300829 return;
830 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
Alexey Starikovskiy08bef9d2008-03-27 23:54:20 +0300832 generic_processor_info(id, GET_APIC_VERSION(apic_read(APIC_LVR)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833}
834
Len Brown84663612005-08-24 12:09:07 -0400835#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
837#define MP_ISA_BUS 0
838#define MP_MAX_IOAPIC_PIN 127
839
Alexey Starikovskiy9e5c5f12008-04-04 23:41:26 +0400840extern struct mp_ioapic_routing mp_ioapic_routing[MAX_IO_APICS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
Andi Kleen19f03ff2006-09-26 10:52:30 +0200842static int mp_find_ioapic (int gsi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843{
Andi Kleen19f03ff2006-09-26 10:52:30 +0200844 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
846 /* Find the IOAPIC that manages this GSI. */
847 for (i = 0; i < nr_ioapics; i++) {
848 if ((gsi >= mp_ioapic_routing[i].gsi_base)
849 && (gsi <= mp_ioapic_routing[i].gsi_end))
850 return i;
851 }
852
853 printk(KERN_ERR "ERROR: Unable to locate IOAPIC for GSI %d\n", gsi);
854
855 return -1;
856}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
Alexey Starikovskiye3e3ffa2008-03-17 22:08:11 +0300858static u8 uniq_ioapic_id(u8 id)
859{
860 if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
861 !APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
862 return io_apic_get_unique_id(nr_ioapics, id);
863 else
864 return id;
865}
866
Jack Steinera65d1d62008-03-28 14:12:08 -0500867void __init mp_register_ioapic(int id, u32 address, u32 gsi_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868{
Andi Kleen19f03ff2006-09-26 10:52:30 +0200869 int idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
Alexey Starikovskiy857033a2008-03-17 22:08:05 +0300871 if (bad_ioapic(address))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
Alexey Starikovskiye3e3ffa2008-03-17 22:08:11 +0300874 idx = nr_ioapics;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
876 mp_ioapics[idx].mpc_type = MP_IOAPIC;
877 mp_ioapics[idx].mpc_flags = MPC_APIC_USABLE;
878 mp_ioapics[idx].mpc_apicaddr = address;
879
880 set_fixmap_nocache(FIX_IO_APIC_BASE_0 + idx, address);
Alexey Starikovskiye3e3ffa2008-03-17 22:08:11 +0300881 mp_ioapics[idx].mpc_apicid = uniq_ioapic_id(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 mp_ioapics[idx].mpc_apicver = io_apic_get_version(idx);
883
884 /*
885 * Build basic GSI lookup table to facilitate gsi->io_apic lookups
886 * and to prevent reprogramming of IOAPIC pins (PCI GSIs).
887 */
888 mp_ioapic_routing[idx].apic_id = mp_ioapics[idx].mpc_apicid;
889 mp_ioapic_routing[idx].gsi_base = gsi_base;
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100890 mp_ioapic_routing[idx].gsi_end = gsi_base +
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 io_apic_get_redir_entries(idx);
892
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100893 printk("IOAPIC[%d]: apic_id %d, version %d, address 0x%x, "
894 "GSI %d-%d\n", idx, mp_ioapics[idx].mpc_apicid,
Alexey Starikovskiye3e3ffa2008-03-17 22:08:11 +0300895 mp_ioapics[idx].mpc_apicver,
896 mp_ioapics[idx].mpc_apicaddr,
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100897 mp_ioapic_routing[idx].gsi_base,
898 mp_ioapic_routing[idx].gsi_end);
Alexey Starikovskiye3e3ffa2008-03-17 22:08:11 +0300899
900 nr_ioapics++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901}
902
Andi Kleen19f03ff2006-09-26 10:52:30 +0200903void __init
904mp_override_legacy_irq(u8 bus_irq, u8 polarity, u8 trigger, u32 gsi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905{
906 struct mpc_config_intsrc intsrc;
907 int ioapic = -1;
908 int pin = -1;
909
910 /*
911 * Convert 'gsi' to 'ioapic.pin'.
912 */
913 ioapic = mp_find_ioapic(gsi);
914 if (ioapic < 0)
915 return;
916 pin = gsi - mp_ioapic_routing[ioapic].gsi_base;
917
918 /*
919 * TBD: This check is for faulty timer entries, where the override
920 * erroneously sets the trigger to level, resulting in a HUGE
921 * increase of timer interrupts!
922 */
923 if ((bus_irq == 0) && (trigger == 3))
924 trigger = 1;
925
926 intsrc.mpc_type = MP_INTSRC;
927 intsrc.mpc_irqtype = mp_INT;
928 intsrc.mpc_irqflag = (trigger << 2) | polarity;
929 intsrc.mpc_srcbus = MP_ISA_BUS;
930 intsrc.mpc_srcbusirq = bus_irq; /* IRQ */
931 intsrc.mpc_dstapic = mp_ioapics[ioapic].mpc_apicid; /* APIC ID */
932 intsrc.mpc_dstirq = pin; /* INTIN# */
933
934 Dprintk("Int: type %d, pol %d, trig %d, bus %d, irq %d, %d-%d\n",
935 intsrc.mpc_irqtype, intsrc.mpc_irqflag & 3,
936 (intsrc.mpc_irqflag >> 2) & 3, intsrc.mpc_srcbus,
937 intsrc.mpc_srcbusirq, intsrc.mpc_dstapic, intsrc.mpc_dstirq);
938
939 mp_irqs[mp_irq_entries] = intsrc;
940 if (++mp_irq_entries == MAX_IRQ_SOURCES)
941 panic("Max # of irq sources exceeded!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942}
943
Alexey Starikovskiy2df29722008-03-27 23:53:54 +0300944int es7000_plat;
945
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946void __init mp_config_acpi_legacy_irqs (void)
947{
948 struct mpc_config_intsrc intsrc;
Andi Kleen19f03ff2006-09-26 10:52:30 +0200949 int i = 0;
950 int ioapic = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300952#if defined (CONFIG_MCA) || defined (CONFIG_EISA)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 /*
954 * Fabricate the legacy ISA bus (bus #31).
955 */
956 mp_bus_id_to_type[MP_ISA_BUS] = MP_BUS_ISA;
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300957#endif
Alexey Starikovskiya6333c32008-03-20 14:54:09 +0300958 set_bit(MP_ISA_BUS, mp_bus_not_pci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 Dprintk("Bus #%d is ISA\n", MP_ISA_BUS);
960
961 /*
962 * Older generations of ES7000 have no legacy identity mappings
963 */
964 if (es7000_plat == 1)
965 return;
966
967 /*
968 * Locate the IOAPIC that manages the ISA IRQs (0-15).
969 */
970 ioapic = mp_find_ioapic(0);
971 if (ioapic < 0)
972 return;
973
974 intsrc.mpc_type = MP_INTSRC;
975 intsrc.mpc_irqflag = 0; /* Conforming */
976 intsrc.mpc_srcbus = MP_ISA_BUS;
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400977#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 intsrc.mpc_dstapic = mp_ioapics[ioapic].mpc_apicid;
Alexey Starikovskiy61048c62008-04-04 23:41:07 +0400979#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 /*
981 * Use the default configuration for the IRQs 0-15. Unless
Simon Arlott27b46d72007-10-20 01:13:56 +0200982 * overridden by (MADT) interrupt source override entries.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 */
984 for (i = 0; i < 16; i++) {
985 int idx;
986
987 for (idx = 0; idx < mp_irq_entries; idx++) {
988 struct mpc_config_intsrc *irq = mp_irqs + idx;
989
990 /* Do we already have a mapping for this ISA IRQ? */
991 if (irq->mpc_srcbus == MP_ISA_BUS && irq->mpc_srcbusirq == i)
992 break;
993
994 /* Do we already have a mapping for this IOAPIC pin */
995 if ((irq->mpc_dstapic == intsrc.mpc_dstapic) &&
996 (irq->mpc_dstirq == i))
997 break;
998 }
999
1000 if (idx != mp_irq_entries) {
1001 printk(KERN_DEBUG "ACPI: IRQ%d used by override.\n", i);
1002 continue; /* IRQ already used */
1003 }
1004
1005 intsrc.mpc_irqtype = mp_INT;
1006 intsrc.mpc_srcbusirq = i; /* Identity mapped */
1007 intsrc.mpc_dstirq = i;
1008
1009 Dprintk("Int: type %d, pol %d, trig %d, bus %d, irq %d, "
1010 "%d-%d\n", intsrc.mpc_irqtype, intsrc.mpc_irqflag & 3,
1011 (intsrc.mpc_irqflag >> 2) & 3, intsrc.mpc_srcbus,
1012 intsrc.mpc_srcbusirq, intsrc.mpc_dstapic,
1013 intsrc.mpc_dstirq);
1014
1015 mp_irqs[mp_irq_entries] = intsrc;
1016 if (++mp_irq_entries == MAX_IRQ_SOURCES)
1017 panic("Max # of irq sources exceeded!\n");
1018 }
1019}
1020
Natalie Protasevichc434b7a2005-06-23 00:08:29 -07001021#define MAX_GSI_NUM 4096
Len Brown2ba7dee2008-01-30 13:31:02 +01001022#define IRQ_COMPRESSION_START 64
Natalie Protasevichc434b7a2005-06-23 00:08:29 -07001023
Andi Kleen19f03ff2006-09-26 10:52:30 +02001024int mp_register_gsi(u32 gsi, int triggering, int polarity)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025{
Andi Kleen19f03ff2006-09-26 10:52:30 +02001026 int ioapic = -1;
1027 int ioapic_pin = 0;
1028 int idx, bit = 0;
Len Brown2ba7dee2008-01-30 13:31:02 +01001029 static int pci_irq = IRQ_COMPRESSION_START;
Natalie Protasevichc434b7a2005-06-23 00:08:29 -07001030 /*
Joe Perchesab4a5742008-01-30 13:31:42 +01001031 * Mapping between Global System Interrupts, which
Natalie Protasevichc434b7a2005-06-23 00:08:29 -07001032 * represent all possible interrupts, and IRQs
1033 * assigned to actual devices.
1034 */
1035 static int gsi_to_irq[MAX_GSI_NUM];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 /* Don't set up the ACPI SCI because it's already set up */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001038 if (acpi_gbl_FADT.sci_interrupt == gsi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 return gsi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
1041 ioapic = mp_find_ioapic(gsi);
1042 if (ioapic < 0) {
1043 printk(KERN_WARNING "No IOAPIC for GSI %u\n", gsi);
1044 return gsi;
1045 }
1046
1047 ioapic_pin = gsi - mp_ioapic_routing[ioapic].gsi_base;
1048
1049 if (ioapic_renumber_irq)
1050 gsi = ioapic_renumber_irq(ioapic, gsi);
1051
1052 /*
1053 * Avoid pin reprogramming. PRTs typically include entries
1054 * with redundant pin->gsi mappings (but unique PCI devices);
1055 * we only program the IOAPIC on the first.
1056 */
1057 bit = ioapic_pin % 32;
1058 idx = (ioapic_pin < 32) ? 0 : (ioapic_pin / 32);
1059 if (idx > 3) {
1060 printk(KERN_ERR "Invalid reference to IOAPIC pin "
1061 "%d-%d\n", mp_ioapic_routing[ioapic].apic_id,
1062 ioapic_pin);
1063 return gsi;
1064 }
1065 if ((1<<bit) & mp_ioapic_routing[ioapic].pin_programmed[idx]) {
1066 Dprintk(KERN_DEBUG "Pin %d-%d already programmed\n",
1067 mp_ioapic_routing[ioapic].apic_id, ioapic_pin);
Len Brown2ba7dee2008-01-30 13:31:02 +01001068 return (gsi < IRQ_COMPRESSION_START ? gsi : gsi_to_irq[gsi]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 }
1070
1071 mp_ioapic_routing[ioapic].pin_programmed[idx] |= (1<<bit);
1072
Len Brown2ba7dee2008-01-30 13:31:02 +01001073 /*
1074 * For GSI >= 64, use IRQ compression
1075 */
1076 if ((gsi >= IRQ_COMPRESSION_START)
1077 && (triggering == ACPI_LEVEL_SENSITIVE)) {
Natalie Protasevichc434b7a2005-06-23 00:08:29 -07001078 /*
1079 * For PCI devices assign IRQs in order, avoiding gaps
1080 * due to unused I/O APIC pins.
1081 */
1082 int irq = gsi;
1083 if (gsi < MAX_GSI_NUM) {
Kimball Murraye0c1e9b2006-05-08 15:17:16 +02001084 /*
1085 * Retain the VIA chipset work-around (gsi > 15), but
1086 * avoid a problem where the 8254 timer (IRQ0) is setup
1087 * via an override (so it's not on pin 0 of the ioapic),
1088 * and at the same time, the pin 0 interrupt is a PCI
1089 * type. The gsi > 15 test could cause these two pins
1090 * to be shared as IRQ0, and they are not shareable.
1091 * So test for this condition, and if necessary, avoid
1092 * the pin collision.
1093 */
Adrian Bunkede13892008-03-17 22:29:32 +02001094 gsi = pci_irq++;
Natalie.Protasevich@unisys.come1afc3f2005-07-29 14:03:32 -07001095 /*
1096 * Don't assign IRQ used by ACPI SCI
1097 */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001098 if (gsi == acpi_gbl_FADT.sci_interrupt)
Natalie.Protasevich@unisys.come1afc3f2005-07-29 14:03:32 -07001099 gsi = pci_irq++;
Natalie Protasevichc434b7a2005-06-23 00:08:29 -07001100 gsi_to_irq[irq] = gsi;
1101 } else {
1102 printk(KERN_ERR "GSI %u is too high\n", gsi);
1103 return gsi;
1104 }
1105 }
1106
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 io_apic_set_pci_routing(ioapic, ioapic_pin, gsi,
Len Browncb654692005-12-28 02:43:51 -05001108 triggering == ACPI_EDGE_SENSITIVE ? 0 : 1,
1109 polarity == ACPI_ACTIVE_HIGH ? 0 : 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 return gsi;
1111}
1112
Len Brown84663612005-08-24 12:09:07 -04001113#endif /* CONFIG_X86_IO_APIC */
Len Brown888ba6c2005-08-24 12:07:20 -04001114#endif /* CONFIG_ACPI */