blob: 4b46a37e0634413ecc453612ea4010fe5c119a26 [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
50/* I/O APIC entries */
51struct mpc_config_ioapic mp_ioapics[MAX_IO_APICS];
52
53/* # of MP IRQ source entries */
54struct mpc_config_intsrc mp_irqs[MAX_IRQ_SOURCES];
55
56/* MP IRQ source entries */
57int mp_irq_entries;
58
59int nr_ioapics;
60
61int pic_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Alexey Starikovskiy2bb9e9d2008-03-27 23:54:50 +030063/* Make it easy to share the UP and SMP code: */
64#ifndef CONFIG_X86_SMP
Sam Ravnborg87d7e982008-01-30 13:33:37 +010065unsigned int num_processors;
Glauber Costa7b1292e2008-03-03 14:12:41 -030066unsigned disabled_cpus __cpuinitdata;
Ingo Molnarfae98112008-03-28 12:22:10 +010067#ifndef CONFIG_X86_LOCAL_APIC
Alexey Starikovskiy837e0e72008-03-27 23:55:10 +030068unsigned int boot_cpu_physical_apicid = -1U;
Alexey Starikovskiy53c4c792008-03-27 23:54:57 +030069#endif
Ingo Molnarfae98112008-03-28 12:22:10 +010070#endif
Glauber Costa7b1292e2008-03-03 14:12:41 -030071
Alexey Starikovskiy40014ba2008-03-27 23:54:44 +030072/* Make it easy to share the UP and SMP code: */
73#ifndef CONFIG_X86_SMP
Linus Torvalds1da177e2005-04-16 15:20:36 -070074physid_mask_t phys_cpu_present_map;
Alexey Starikovskiy40014ba2008-03-27 23:54:44 +030075#endif
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/*
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
Alexey Starikovskiy86420502008-03-17 22:08:55 +030096#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -070097/*
98 * Have to match translation table entries to main table entries by counter
99 * hence the mpc_record variable .... can't see a less disgusting way of
100 * doing this ....
101 */
102
103static int mpc_record;
Vivek Goyal4a5d1072007-01-11 01:52:44 +0100104static struct mpc_config_translation *translation_table[MAX_MPC_ENTRY] __cpuinitdata;
Alexey Starikovskiy86420502008-03-17 22:08:55 +0300105#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Alexey Starikovskiyc853c672008-03-27 23:54:13 +0300107static void __cpuinit MP_processor_info(struct mpc_config_processor *m)
108{
109 int apicid;
110
Glauber Costa7b1292e2008-03-03 14:12:41 -0300111 if (!(m->mpc_cpuflag & CPU_ENABLED)) {
Ingo Molnar059c9642008-03-28 11:57:55 +0100112#ifdef CONFIG_X86_SMP
Glauber Costa7b1292e2008-03-03 14:12:41 -0300113 disabled_cpus++;
Ingo Molnar059c9642008-03-28 11:57:55 +0100114#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 return;
Glauber Costa7b1292e2008-03-03 14:12:41 -0300116 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Alexey Starikovskiy4655c7d2008-03-17 22:08:36 +0300118#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 apicid = mpc_apic_id(m, translation_table[mpc_record]);
Alexey Starikovskiy4655c7d2008-03-17 22:08:36 +0300120#else
121 Dprintk("Processor #%d %u:%u APIC version %d\n",
122 m->mpc_apicid,
123 (m->mpc_cpufeature & CPU_FAMILY_MASK) >> 8,
124 (m->mpc_cpufeature & CPU_MODEL_MASK) >> 4,
125 m->mpc_apicver);
126 apicid = m->mpc_apicid;
127#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129 if (m->mpc_featureflag&(1<<0))
130 Dprintk(" Floating point unit present.\n");
131 if (m->mpc_featureflag&(1<<7))
132 Dprintk(" Machine Exception supported.\n");
133 if (m->mpc_featureflag&(1<<8))
134 Dprintk(" 64 bit compare & exchange supported.\n");
135 if (m->mpc_featureflag&(1<<9))
136 Dprintk(" Internal APIC present.\n");
137 if (m->mpc_featureflag&(1<<11))
138 Dprintk(" SEP present.\n");
139 if (m->mpc_featureflag&(1<<12))
140 Dprintk(" MTRR present.\n");
141 if (m->mpc_featureflag&(1<<13))
142 Dprintk(" PGE present.\n");
143 if (m->mpc_featureflag&(1<<14))
144 Dprintk(" MCA present.\n");
145 if (m->mpc_featureflag&(1<<15))
146 Dprintk(" CMOV present.\n");
147 if (m->mpc_featureflag&(1<<16))
148 Dprintk(" PAT present.\n");
149 if (m->mpc_featureflag&(1<<17))
150 Dprintk(" PSE present.\n");
151 if (m->mpc_featureflag&(1<<18))
152 Dprintk(" PSN present.\n");
153 if (m->mpc_featureflag&(1<<19))
154 Dprintk(" Cache Line Flush Instruction present.\n");
155 /* 20 Reserved */
156 if (m->mpc_featureflag&(1<<21))
157 Dprintk(" Debug Trace and EMON Store present.\n");
158 if (m->mpc_featureflag&(1<<22))
159 Dprintk(" ACPI Thermal Throttle Registers present.\n");
160 if (m->mpc_featureflag&(1<<23))
161 Dprintk(" MMX present.\n");
162 if (m->mpc_featureflag&(1<<24))
163 Dprintk(" FXSR present.\n");
164 if (m->mpc_featureflag&(1<<25))
165 Dprintk(" XMM present.\n");
166 if (m->mpc_featureflag&(1<<26))
167 Dprintk(" Willamette New Instructions present.\n");
168 if (m->mpc_featureflag&(1<<27))
169 Dprintk(" Self Snoop present.\n");
170 if (m->mpc_featureflag&(1<<28))
171 Dprintk(" HT present.\n");
172 if (m->mpc_featureflag&(1<<29))
173 Dprintk(" Thermal Monitor present.\n");
174 /* 30, 31 Reserved */
175
176
177 if (m->mpc_cpuflag & CPU_BOOTPROCESSOR) {
178 Dprintk(" Bootup CPU\n");
179 boot_cpu_physical_apicid = m->mpc_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 }
181
Alexey Starikovskiyc853c672008-03-27 23:54:13 +0300182 generic_processor_info(apicid, m->mpc_apicver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183}
184
185static void __init MP_bus_info (struct mpc_config_bus *m)
186{
187 char str[7];
188
189 memcpy(str, m->mpc_bustype, 6);
190 str[6] = 0;
191
Alexey Starikovskiy0ec153a2008-03-17 22:08:48 +0300192#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 mpc_oem_bus_info(m, str, translation_table[mpc_record]);
Alexey Starikovskiy0ec153a2008-03-17 22:08:48 +0300194#else
195 Dprintk("Bus #%d is %s\n", m->mpc_busid, str);
196#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Andi Kleen5e4edbb2006-09-26 10:52:35 +0200198#if MAX_MP_BUSSES < 256
Randy Dunlapc0ec31a2006-04-10 22:53:13 -0700199 if (m->mpc_busid >= MAX_MP_BUSSES) {
200 printk(KERN_WARNING "MP table busid value (%d) for bustype %s "
201 " is too large, max. supported is %d\n",
202 m->mpc_busid, str, MAX_MP_BUSSES - 1);
203 return;
204 }
Andi Kleen5e4edbb2006-09-26 10:52:35 +0200205#endif
Randy Dunlapc0ec31a2006-04-10 22:53:13 -0700206
Alexey Starikovskiya6333c32008-03-20 14:54:09 +0300207 set_bit(m->mpc_busid, mp_bus_not_pci);
Alexey Starikovskiy9e0a2de2008-03-20 14:54:56 +0300208 if (strncmp(str, BUSTYPE_PCI, sizeof(BUSTYPE_PCI)-1) == 0) {
Alexey Starikovskiyd285e332008-03-17 22:08:42 +0300209#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 mpc_oem_pci_bus(m, translation_table[mpc_record]);
Alexey Starikovskiyd285e332008-03-17 22:08:42 +0300211#endif
Alexey Starikovskiya6333c32008-03-20 14:54:09 +0300212 clear_bit(m->mpc_busid, mp_bus_not_pci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 mp_bus_id_to_pci_bus[m->mpc_busid] = mp_current_pci_id;
214 mp_current_pci_id++;
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300215#if defined(CONFIG_EISA) || defined (CONFIG_MCA)
216 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_PCI;
Alexey Starikovskiy9e0a2de2008-03-20 14:54:56 +0300217 } else if (strncmp(str, BUSTYPE_ISA, sizeof(BUSTYPE_ISA)-1) == 0) {
218 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_ISA;
219 } else if (strncmp(str, BUSTYPE_EISA, sizeof(BUSTYPE_EISA)-1) == 0) {
220 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_EISA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 } else if (strncmp(str, BUSTYPE_MCA, sizeof(BUSTYPE_MCA)-1) == 0) {
222 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_MCA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 } else {
224 printk(KERN_WARNING "Unknown bustype %s - ignoring\n", str);
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300225#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 }
227}
228
Alexey Starikovskiy857033a2008-03-17 22:08:05 +0300229static int bad_ioapic(unsigned long address)
230{
231 if (nr_ioapics >= MAX_IO_APICS) {
232 printk(KERN_ERR "ERROR: Max # of I/O APICs (%d) exceeded "
233 "(found %d)\n", MAX_IO_APICS, nr_ioapics);
234 panic("Recompile kernel with bigger MAX_IO_APICS!\n");
235 }
236 if (!address) {
237 printk(KERN_ERR "WARNING: Bogus (zero) I/O APIC address"
238 " found in table, skipping!\n");
239 return 1;
240 }
241 return 0;
242}
243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244static void __init MP_ioapic_info (struct mpc_config_ioapic *m)
245{
246 if (!(m->mpc_flags & MPC_APIC_USABLE))
247 return;
248
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100249 printk(KERN_INFO "I/O APIC #%d Version %d at 0x%X.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 m->mpc_apicid, m->mpc_apicver, m->mpc_apicaddr);
Alexey Starikovskiy857033a2008-03-17 22:08:05 +0300251
252 if (bad_ioapic(m->mpc_apicaddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 return;
Alexey Starikovskiy857033a2008-03-17 22:08:05 +0300254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 mp_ioapics[nr_ioapics] = *m;
256 nr_ioapics++;
257}
258
259static void __init MP_intsrc_info (struct mpc_config_intsrc *m)
260{
261 mp_irqs [mp_irq_entries] = *m;
262 Dprintk("Int: type %d, pol %d, trig %d, bus %d,"
263 " IRQ %02x, APIC ID %x, APIC INT %02x\n",
264 m->mpc_irqtype, m->mpc_irqflag & 3,
265 (m->mpc_irqflag >> 2) & 3, m->mpc_srcbus,
266 m->mpc_srcbusirq, m->mpc_dstapic, m->mpc_dstirq);
267 if (++mp_irq_entries == MAX_IRQ_SOURCES)
268 panic("Max # of irq sources exceeded!!\n");
269}
270
271static void __init MP_lintsrc_info (struct mpc_config_lintsrc *m)
272{
273 Dprintk("Lint: type %d, pol %d, trig %d, bus %d,"
274 " IRQ %02x, APIC ID %x, APIC LINT %02x\n",
275 m->mpc_irqtype, m->mpc_irqflag & 3,
276 (m->mpc_irqflag >> 2) &3, m->mpc_srcbusid,
277 m->mpc_srcbusirq, m->mpc_destapic, m->mpc_destapiclint);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278}
279
280#ifdef CONFIG_X86_NUMAQ
281static void __init MP_translation_info (struct mpc_config_translation *m)
282{
283 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);
284
285 if (mpc_record >= MAX_MPC_ENTRY)
286 printk(KERN_ERR "MAX_MPC_ENTRY exceeded!\n");
287 else
288 translation_table[mpc_record] = m; /* stash this for later */
289 if (m->trans_quad < MAX_NUMNODES && !node_online(m->trans_quad))
290 node_set_online(m->trans_quad);
291}
292
293/*
294 * Read/parse the MPC oem tables
295 */
296
297static void __init smp_read_mpc_oem(struct mp_config_oemtable *oemtable, \
298 unsigned short oemsize)
299{
300 int count = sizeof (*oemtable); /* the header size */
301 unsigned char *oemptr = ((unsigned char *)oemtable)+count;
302
303 mpc_record = 0;
304 printk(KERN_INFO "Found an OEM MPC table at %8p - parsing it ... \n", oemtable);
305 if (memcmp(oemtable->oem_signature,MPC_OEM_SIGNATURE,4))
306 {
307 printk(KERN_WARNING "SMP mpc oemtable: bad signature [%c%c%c%c]!\n",
308 oemtable->oem_signature[0],
309 oemtable->oem_signature[1],
310 oemtable->oem_signature[2],
311 oemtable->oem_signature[3]);
312 return;
313 }
314 if (mpf_checksum((unsigned char *)oemtable,oemtable->oem_length))
315 {
316 printk(KERN_WARNING "SMP oem mptable: checksum error!\n");
317 return;
318 }
319 while (count < oemtable->oem_length) {
320 switch (*oemptr) {
321 case MP_TRANSLATION:
322 {
323 struct mpc_config_translation *m=
324 (struct mpc_config_translation *)oemptr;
325 MP_translation_info(m);
326 oemptr += sizeof(*m);
327 count += sizeof(*m);
328 ++mpc_record;
329 break;
330 }
331 default:
332 {
333 printk(KERN_WARNING "Unrecognised OEM table entry type! - %d\n", (int) *oemptr);
334 return;
335 }
336 }
337 }
338}
339
340static inline void mps_oem_check(struct mp_config_table *mpc, char *oem,
341 char *productid)
342{
343 if (strncmp(oem, "IBM NUMA", 8))
344 printk("Warning! May not be a NUMA-Q system!\n");
345 if (mpc->mpc_oemptr)
346 smp_read_mpc_oem((struct mp_config_oemtable *) mpc->mpc_oemptr,
347 mpc->mpc_oemsize);
348}
349#endif /* CONFIG_X86_NUMAQ */
350
351/*
352 * Read/parse the MPC
353 */
354
355static int __init smp_read_mpc(struct mp_config_table *mpc)
356{
357 char str[16];
358 char oem[10];
359 int count=sizeof(*mpc);
360 unsigned char *mpt=((unsigned char *)mpc)+count;
361
362 if (memcmp(mpc->mpc_signature,MPC_SIGNATURE,4)) {
363 printk(KERN_ERR "SMP mptable: bad signature [0x%x]!\n",
364 *(u32 *)mpc->mpc_signature);
365 return 0;
366 }
367 if (mpf_checksum((unsigned char *)mpc,mpc->mpc_length)) {
368 printk(KERN_ERR "SMP mptable: checksum error!\n");
369 return 0;
370 }
371 if (mpc->mpc_spec!=0x01 && mpc->mpc_spec!=0x04) {
372 printk(KERN_ERR "SMP mptable: bad table version (%d)!!\n",
373 mpc->mpc_spec);
374 return 0;
375 }
376 if (!mpc->mpc_lapic) {
377 printk(KERN_ERR "SMP mptable: null local APIC address!\n");
378 return 0;
379 }
380 memcpy(oem,mpc->mpc_oem,8);
381 oem[8]=0;
382 printk(KERN_INFO "OEM ID: %s ",oem);
383
384 memcpy(str,mpc->mpc_productid,12);
385 str[12]=0;
386 printk("Product ID: %s ",str);
387
388 mps_oem_check(mpc, oem, str);
389
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100390 printk("APIC at: 0x%X\n", mpc->mpc_lapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100392 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 * Save the local APIC address (it might be non-default) -- but only
394 * if we're not using ACPI.
395 */
396 if (!acpi_lapic)
397 mp_lapic_addr = mpc->mpc_lapic;
398
399 /*
400 * Now process the configuration blocks.
401 */
Alexey Starikovskiy86420502008-03-17 22:08:55 +0300402#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 mpc_record = 0;
Alexey Starikovskiy86420502008-03-17 22:08:55 +0300404#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 while (count < mpc->mpc_length) {
406 switch(*mpt) {
407 case MP_PROCESSOR:
408 {
409 struct mpc_config_processor *m=
410 (struct mpc_config_processor *)mpt;
411 /* ACPI may have already provided this data */
412 if (!acpi_lapic)
413 MP_processor_info(m);
414 mpt += sizeof(*m);
415 count += sizeof(*m);
416 break;
417 }
418 case MP_BUS:
419 {
420 struct mpc_config_bus *m=
421 (struct mpc_config_bus *)mpt;
422 MP_bus_info(m);
423 mpt += sizeof(*m);
424 count += sizeof(*m);
425 break;
426 }
427 case MP_IOAPIC:
428 {
429 struct mpc_config_ioapic *m=
430 (struct mpc_config_ioapic *)mpt;
431 MP_ioapic_info(m);
432 mpt+=sizeof(*m);
433 count+=sizeof(*m);
434 break;
435 }
436 case MP_INTSRC:
437 {
438 struct mpc_config_intsrc *m=
439 (struct mpc_config_intsrc *)mpt;
440
441 MP_intsrc_info(m);
442 mpt+=sizeof(*m);
443 count+=sizeof(*m);
444 break;
445 }
446 case MP_LINTSRC:
447 {
448 struct mpc_config_lintsrc *m=
449 (struct mpc_config_lintsrc *)mpt;
450 MP_lintsrc_info(m);
451 mpt+=sizeof(*m);
452 count+=sizeof(*m);
453 break;
454 }
455 default:
456 {
457 count = mpc->mpc_length;
458 break;
459 }
460 }
Alexey Starikovskiy86420502008-03-17 22:08:55 +0300461#ifdef CONFIG_X86_NUMAQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 ++mpc_record;
Alexey Starikovskiy86420502008-03-17 22:08:55 +0300463#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 }
Ingo Molnar3c43f032007-05-02 19:27:04 +0200465 setup_apic_routing();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 if (!num_processors)
467 printk(KERN_ERR "SMP mptable: no processors registered!\n");
468 return num_processors;
469}
470
471static 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
545static inline void __init construct_default_ISA_mptable(int mpc_default_type)
546{
547 struct mpc_config_processor processor;
548 struct mpc_config_bus bus;
549 struct mpc_config_ioapic ioapic;
550 struct mpc_config_lintsrc lintsrc;
551 int linttypes[2] = { mp_ExtINT, mp_NMI };
552 int i;
553
554 /*
555 * local APIC has default address
556 */
557 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
558
559 /*
560 * 2 CPUs, numbered 0 & 1.
561 */
562 processor.mpc_type = MP_PROCESSOR;
563 /* Either an integrated APIC or a discrete 82489DX. */
564 processor.mpc_apicver = mpc_default_type > 4 ? 0x10 : 0x01;
565 processor.mpc_cpuflag = CPU_ENABLED;
566 processor.mpc_cpufeature = (boot_cpu_data.x86 << 8) |
567 (boot_cpu_data.x86_model << 4) |
568 boot_cpu_data.x86_mask;
569 processor.mpc_featureflag = boot_cpu_data.x86_capability[0];
570 processor.mpc_reserved[0] = 0;
571 processor.mpc_reserved[1] = 0;
572 for (i = 0; i < 2; i++) {
573 processor.mpc_apicid = i;
574 MP_processor_info(&processor);
575 }
576
577 bus.mpc_type = MP_BUS;
578 bus.mpc_busid = 0;
579 switch (mpc_default_type) {
580 default:
581 printk("???\n");
582 printk(KERN_ERR "Unknown standard configuration %d\n",
583 mpc_default_type);
584 /* fall through */
585 case 1:
586 case 5:
587 memcpy(bus.mpc_bustype, "ISA ", 6);
588 break;
589 case 2:
590 case 6:
591 case 3:
592 memcpy(bus.mpc_bustype, "EISA ", 6);
593 break;
594 case 4:
595 case 7:
596 memcpy(bus.mpc_bustype, "MCA ", 6);
597 }
598 MP_bus_info(&bus);
599 if (mpc_default_type > 4) {
600 bus.mpc_busid = 1;
601 memcpy(bus.mpc_bustype, "PCI ", 6);
602 MP_bus_info(&bus);
603 }
604
605 ioapic.mpc_type = MP_IOAPIC;
606 ioapic.mpc_apicid = 2;
607 ioapic.mpc_apicver = mpc_default_type > 4 ? 0x10 : 0x01;
608 ioapic.mpc_flags = MPC_APIC_USABLE;
609 ioapic.mpc_apicaddr = 0xFEC00000;
610 MP_ioapic_info(&ioapic);
611
612 /*
613 * We set up most of the low 16 IO-APIC pins according to MPS rules.
614 */
615 construct_default_ioirq_mptable(mpc_default_type);
616
617 lintsrc.mpc_type = MP_LINTSRC;
618 lintsrc.mpc_irqflag = 0; /* conforming */
619 lintsrc.mpc_srcbusid = 0;
620 lintsrc.mpc_srcbusirq = 0;
621 lintsrc.mpc_destapic = MP_APIC_ALL;
622 for (i = 0; i < 2; i++) {
623 lintsrc.mpc_irqtype = linttypes[i];
624 lintsrc.mpc_destapiclint = i;
625 MP_lintsrc_info(&lintsrc);
626 }
627}
628
629static struct intel_mp_floating *mpf_found;
630
631/*
632 * Scan the memory blocks for an SMP configuration block.
633 */
634void __init get_smp_config (void)
635{
636 struct intel_mp_floating *mpf = mpf_found;
637
638 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 * ACPI supports both logical (e.g. Hyper-Threading) and physical
640 * processors, where MPS only supports physical.
641 */
642 if (acpi_lapic && acpi_ioapic) {
643 printk(KERN_INFO "Using ACPI (MADT) for SMP configuration information\n");
644 return;
645 }
646 else if (acpi_lapic)
647 printk(KERN_INFO "Using ACPI for processor (LAPIC) configuration information\n");
648
649 printk(KERN_INFO "Intel MultiProcessor Specification v1.%d\n", mpf->mpf_specification);
650 if (mpf->mpf_feature2 & (1<<7)) {
651 printk(KERN_INFO " IMCR and PIC compatibility mode.\n");
652 pic_mode = 1;
653 } else {
654 printk(KERN_INFO " Virtual Wire compatibility mode.\n");
655 pic_mode = 0;
656 }
657
658 /*
659 * Now see if we need to read further.
660 */
661 if (mpf->mpf_feature1 != 0) {
662
663 printk(KERN_INFO "Default MP configuration #%d\n", mpf->mpf_feature1);
664 construct_default_ISA_mptable(mpf->mpf_feature1);
665
666 } else if (mpf->mpf_physptr) {
667
668 /*
669 * Read the physical hardware table. Anything here will
670 * override the defaults.
671 */
Daniel Yeisley7d4c8e52006-02-20 18:27:54 -0800672 if (!smp_read_mpc(phys_to_virt(mpf->mpf_physptr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 smp_found_config = 0;
674 printk(KERN_ERR "BIOS bug, MP table errors detected!...\n");
675 printk(KERN_ERR "... disabling SMP support. (tell your hw vendor)\n");
676 return;
677 }
678 /*
679 * If there are no explicit MP IRQ entries, then we are
680 * broken. We set up most of the low 16 IO-APIC pins to
681 * ISA defaults and hope it will work.
682 */
683 if (!mp_irq_entries) {
684 struct mpc_config_bus bus;
685
686 printk(KERN_ERR "BIOS bug, no explicit IRQ entries, using default mptable. (tell your hw vendor)\n");
687
688 bus.mpc_type = MP_BUS;
689 bus.mpc_busid = 0;
690 memcpy(bus.mpc_bustype, "ISA ", 6);
691 MP_bus_info(&bus);
692
693 construct_default_ioirq_mptable(0);
694 }
695
696 } else
697 BUG();
698
699 printk(KERN_INFO "Processors: %d\n", num_processors);
700 /*
701 * Only use the first configuration found.
702 */
703}
704
705static int __init smp_scan_config (unsigned long base, unsigned long length)
706{
707 unsigned long *bp = phys_to_virt(base);
708 struct intel_mp_floating *mpf;
709
Ingo Molnare91a3b42008-01-30 13:33:08 +0100710 printk(KERN_INFO "Scan SMP from %p for %ld bytes.\n", bp,length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 if (sizeof(*mpf) != 16)
712 printk("Error: MPF size\n");
713
714 while (length > 0) {
715 mpf = (struct intel_mp_floating *)bp;
716 if ((*bp == SMP_MAGIC_IDENT) &&
717 (mpf->mpf_length == 1) &&
718 !mpf_checksum((unsigned char *)bp, 16) &&
719 ((mpf->mpf_specification == 1)
720 || (mpf->mpf_specification == 4)) ) {
721
722 smp_found_config = 1;
Ingo Molnare91a3b42008-01-30 13:33:08 +0100723 printk(KERN_INFO "found SMP MP-table at [%p] %08lx\n",
724 mpf, virt_to_phys(mpf));
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800725 reserve_bootmem(virt_to_phys(mpf), PAGE_SIZE,
726 BOOTMEM_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 if (mpf->mpf_physptr) {
728 /*
729 * We cannot access to MPC table to compute
730 * table size yet, as only few megabytes from
731 * the bottom is mapped now.
732 * PC-9800's MPC table places on the very last
733 * of physical memory; so that simply reserving
734 * PAGE_SIZE from mpg->mpf_physptr yields BUG()
735 * in reserve_bootmem.
736 */
737 unsigned long size = PAGE_SIZE;
738 unsigned long end = max_low_pfn * PAGE_SIZE;
739 if (mpf->mpf_physptr + size > end)
740 size = end - mpf->mpf_physptr;
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800741 reserve_bootmem(mpf->mpf_physptr, size,
742 BOOTMEM_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 }
744
745 mpf_found = mpf;
746 return 1;
747 }
748 bp += 4;
749 length -= 16;
750 }
751 return 0;
752}
753
754void __init find_smp_config (void)
755{
756 unsigned int address;
757
758 /*
759 * FIXME: Linux assumes you have 640K of base ram..
760 * this continues the error...
761 *
762 * 1) Scan the bottom 1K for a signature
763 * 2) Scan the top 1K of base RAM
764 * 3) Scan the 64K of bios
765 */
766 if (smp_scan_config(0x0,0x400) ||
767 smp_scan_config(639*0x400,0x400) ||
768 smp_scan_config(0xF0000,0x10000))
769 return;
770 /*
771 * If it is an SMP machine we should know now, unless the
772 * configuration is in an EISA/MCA bus machine with an
773 * extended bios data area.
774 *
775 * there is a real-mode segmented pointer pointing to the
776 * 4K EBDA area at 0x40E, calculate and scan it here.
777 *
778 * NOTE! There are Linux loaders that will corrupt the EBDA
779 * area, and as such this kind of SMP config may be less
780 * trustworthy, simply because the SMP table may have been
781 * stomped on during early boot. These loaders are buggy and
782 * should be fixed.
783 *
784 * MP1.4 SPEC states to only scan first 1K of 4K EBDA.
785 */
786
787 address = get_bios_ebda();
788 if (address)
789 smp_scan_config(address, 0x400);
790}
791
792/* --------------------------------------------------------------------------
793 ACPI-based MP Configuration
794 -------------------------------------------------------------------------- */
795
Len Brown888ba6c2005-08-24 12:07:20 -0400796#ifdef CONFIG_ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
Andi Kleen19f03ff2006-09-26 10:52:30 +0200798void __init mp_register_lapic_address(u64 address)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799{
800 mp_lapic_addr = (unsigned long) address;
801
802 set_fixmap_nocache(FIX_APIC_BASE, mp_lapic_addr);
803
804 if (boot_cpu_physical_apicid == -1U)
Jack Steiner05f2d122008-03-28 14:12:02 -0500805 boot_cpu_physical_apicid = GET_APIC_ID(read_apic_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
807 Dprintk("Boot CPU = %d\n", boot_cpu_physical_apicid);
808}
809
Vivek Goyal4a5d1072007-01-11 01:52:44 +0100810void __cpuinit mp_register_lapic (u8 id, u8 enabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 if (MAX_APICS - id <= 0) {
813 printk(KERN_WARNING "Processor #%d invalid (max %d)\n",
814 id, MAX_APICS);
815 return;
816 }
Alexey Starikovskiy08bef9d2008-03-27 23:54:20 +0300817
Alexey Starikovskiy987dd2d2008-03-27 23:54:06 +0300818 if (!enabled) {
Ingo Molnar059c9642008-03-28 11:57:55 +0100819#ifdef CONFIG_X86_SMP
Alexey Starikovskiy987dd2d2008-03-27 23:54:06 +0300820 ++disabled_cpus;
Ingo Molnar059c9642008-03-28 11:57:55 +0100821#endif
Alexey Starikovskiy987dd2d2008-03-27 23:54:06 +0300822 return;
823 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
Alexey Starikovskiy08bef9d2008-03-27 23:54:20 +0300825 generic_processor_info(id, GET_APIC_VERSION(apic_read(APIC_LVR)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826}
827
Len Brown84663612005-08-24 12:09:07 -0400828#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
830#define MP_ISA_BUS 0
831#define MP_MAX_IOAPIC_PIN 127
832
833static struct mp_ioapic_routing {
834 int apic_id;
835 int gsi_base;
836 int gsi_end;
837 u32 pin_programmed[4];
838} mp_ioapic_routing[MAX_IO_APICS];
839
Andi Kleen19f03ff2006-09-26 10:52:30 +0200840static int mp_find_ioapic (int gsi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841{
Andi Kleen19f03ff2006-09-26 10:52:30 +0200842 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
844 /* Find the IOAPIC that manages this GSI. */
845 for (i = 0; i < nr_ioapics; i++) {
846 if ((gsi >= mp_ioapic_routing[i].gsi_base)
847 && (gsi <= mp_ioapic_routing[i].gsi_end))
848 return i;
849 }
850
851 printk(KERN_ERR "ERROR: Unable to locate IOAPIC for GSI %d\n", gsi);
852
853 return -1;
854}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
Alexey Starikovskiye3e3ffa2008-03-17 22:08:11 +0300856static u8 uniq_ioapic_id(u8 id)
857{
858 if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
859 !APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
860 return io_apic_get_unique_id(nr_ioapics, id);
861 else
862 return id;
863}
864
Andi Kleen19f03ff2006-09-26 10:52:30 +0200865void __init mp_register_ioapic(u8 id, u32 address, u32 gsi_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866{
Andi Kleen19f03ff2006-09-26 10:52:30 +0200867 int idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
Alexey Starikovskiy857033a2008-03-17 22:08:05 +0300869 if (bad_ioapic(address))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
Alexey Starikovskiye3e3ffa2008-03-17 22:08:11 +0300872 idx = nr_ioapics;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
874 mp_ioapics[idx].mpc_type = MP_IOAPIC;
875 mp_ioapics[idx].mpc_flags = MPC_APIC_USABLE;
876 mp_ioapics[idx].mpc_apicaddr = address;
877
878 set_fixmap_nocache(FIX_IO_APIC_BASE_0 + idx, address);
Alexey Starikovskiye3e3ffa2008-03-17 22:08:11 +0300879 mp_ioapics[idx].mpc_apicid = uniq_ioapic_id(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 mp_ioapics[idx].mpc_apicver = io_apic_get_version(idx);
881
882 /*
883 * Build basic GSI lookup table to facilitate gsi->io_apic lookups
884 * and to prevent reprogramming of IOAPIC pins (PCI GSIs).
885 */
886 mp_ioapic_routing[idx].apic_id = mp_ioapics[idx].mpc_apicid;
887 mp_ioapic_routing[idx].gsi_base = gsi_base;
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100888 mp_ioapic_routing[idx].gsi_end = gsi_base +
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 io_apic_get_redir_entries(idx);
890
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100891 printk("IOAPIC[%d]: apic_id %d, version %d, address 0x%x, "
892 "GSI %d-%d\n", idx, mp_ioapics[idx].mpc_apicid,
Alexey Starikovskiye3e3ffa2008-03-17 22:08:11 +0300893 mp_ioapics[idx].mpc_apicver,
894 mp_ioapics[idx].mpc_apicaddr,
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100895 mp_ioapic_routing[idx].gsi_base,
896 mp_ioapic_routing[idx].gsi_end);
Alexey Starikovskiye3e3ffa2008-03-17 22:08:11 +0300897
898 nr_ioapics++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899}
900
Andi Kleen19f03ff2006-09-26 10:52:30 +0200901void __init
902mp_override_legacy_irq(u8 bus_irq, u8 polarity, u8 trigger, u32 gsi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903{
904 struct mpc_config_intsrc intsrc;
905 int ioapic = -1;
906 int pin = -1;
907
908 /*
909 * Convert 'gsi' to 'ioapic.pin'.
910 */
911 ioapic = mp_find_ioapic(gsi);
912 if (ioapic < 0)
913 return;
914 pin = gsi - mp_ioapic_routing[ioapic].gsi_base;
915
916 /*
917 * TBD: This check is for faulty timer entries, where the override
918 * erroneously sets the trigger to level, resulting in a HUGE
919 * increase of timer interrupts!
920 */
921 if ((bus_irq == 0) && (trigger == 3))
922 trigger = 1;
923
924 intsrc.mpc_type = MP_INTSRC;
925 intsrc.mpc_irqtype = mp_INT;
926 intsrc.mpc_irqflag = (trigger << 2) | polarity;
927 intsrc.mpc_srcbus = MP_ISA_BUS;
928 intsrc.mpc_srcbusirq = bus_irq; /* IRQ */
929 intsrc.mpc_dstapic = mp_ioapics[ioapic].mpc_apicid; /* APIC ID */
930 intsrc.mpc_dstirq = pin; /* INTIN# */
931
932 Dprintk("Int: type %d, pol %d, trig %d, bus %d, irq %d, %d-%d\n",
933 intsrc.mpc_irqtype, intsrc.mpc_irqflag & 3,
934 (intsrc.mpc_irqflag >> 2) & 3, intsrc.mpc_srcbus,
935 intsrc.mpc_srcbusirq, intsrc.mpc_dstapic, intsrc.mpc_dstirq);
936
937 mp_irqs[mp_irq_entries] = intsrc;
938 if (++mp_irq_entries == MAX_IRQ_SOURCES)
939 panic("Max # of irq sources exceeded!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940}
941
Alexey Starikovskiy2df29722008-03-27 23:53:54 +0300942int es7000_plat;
943
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944void __init mp_config_acpi_legacy_irqs (void)
945{
946 struct mpc_config_intsrc intsrc;
Andi Kleen19f03ff2006-09-26 10:52:30 +0200947 int i = 0;
948 int ioapic = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300950#if defined (CONFIG_MCA) || defined (CONFIG_EISA)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 /*
952 * Fabricate the legacy ISA bus (bus #31).
953 */
954 mp_bus_id_to_type[MP_ISA_BUS] = MP_BUS_ISA;
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300955#endif
Alexey Starikovskiya6333c32008-03-20 14:54:09 +0300956 set_bit(MP_ISA_BUS, mp_bus_not_pci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 Dprintk("Bus #%d is ISA\n", MP_ISA_BUS);
958
959 /*
960 * Older generations of ES7000 have no legacy identity mappings
961 */
962 if (es7000_plat == 1)
963 return;
964
965 /*
966 * Locate the IOAPIC that manages the ISA IRQs (0-15).
967 */
968 ioapic = mp_find_ioapic(0);
969 if (ioapic < 0)
970 return;
971
972 intsrc.mpc_type = MP_INTSRC;
973 intsrc.mpc_irqflag = 0; /* Conforming */
974 intsrc.mpc_srcbus = MP_ISA_BUS;
975 intsrc.mpc_dstapic = mp_ioapics[ioapic].mpc_apicid;
976
977 /*
978 * Use the default configuration for the IRQs 0-15. Unless
Simon Arlott27b46d72007-10-20 01:13:56 +0200979 * overridden by (MADT) interrupt source override entries.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 */
981 for (i = 0; i < 16; i++) {
982 int idx;
983
984 for (idx = 0; idx < mp_irq_entries; idx++) {
985 struct mpc_config_intsrc *irq = mp_irqs + idx;
986
987 /* Do we already have a mapping for this ISA IRQ? */
988 if (irq->mpc_srcbus == MP_ISA_BUS && irq->mpc_srcbusirq == i)
989 break;
990
991 /* Do we already have a mapping for this IOAPIC pin */
992 if ((irq->mpc_dstapic == intsrc.mpc_dstapic) &&
993 (irq->mpc_dstirq == i))
994 break;
995 }
996
997 if (idx != mp_irq_entries) {
998 printk(KERN_DEBUG "ACPI: IRQ%d used by override.\n", i);
999 continue; /* IRQ already used */
1000 }
1001
1002 intsrc.mpc_irqtype = mp_INT;
1003 intsrc.mpc_srcbusirq = i; /* Identity mapped */
1004 intsrc.mpc_dstirq = i;
1005
1006 Dprintk("Int: type %d, pol %d, trig %d, bus %d, irq %d, "
1007 "%d-%d\n", intsrc.mpc_irqtype, intsrc.mpc_irqflag & 3,
1008 (intsrc.mpc_irqflag >> 2) & 3, intsrc.mpc_srcbus,
1009 intsrc.mpc_srcbusirq, intsrc.mpc_dstapic,
1010 intsrc.mpc_dstirq);
1011
1012 mp_irqs[mp_irq_entries] = intsrc;
1013 if (++mp_irq_entries == MAX_IRQ_SOURCES)
1014 panic("Max # of irq sources exceeded!\n");
1015 }
1016}
1017
Natalie Protasevichc434b7a2005-06-23 00:08:29 -07001018#define MAX_GSI_NUM 4096
Len Brown2ba7dee2008-01-30 13:31:02 +01001019#define IRQ_COMPRESSION_START 64
Natalie Protasevichc434b7a2005-06-23 00:08:29 -07001020
Andi Kleen19f03ff2006-09-26 10:52:30 +02001021int mp_register_gsi(u32 gsi, int triggering, int polarity)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022{
Andi Kleen19f03ff2006-09-26 10:52:30 +02001023 int ioapic = -1;
1024 int ioapic_pin = 0;
1025 int idx, bit = 0;
Len Brown2ba7dee2008-01-30 13:31:02 +01001026 static int pci_irq = IRQ_COMPRESSION_START;
Natalie Protasevichc434b7a2005-06-23 00:08:29 -07001027 /*
Joe Perchesab4a5742008-01-30 13:31:42 +01001028 * Mapping between Global System Interrupts, which
Natalie Protasevichc434b7a2005-06-23 00:08:29 -07001029 * represent all possible interrupts, and IRQs
1030 * assigned to actual devices.
1031 */
1032 static int gsi_to_irq[MAX_GSI_NUM];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 /* Don't set up the ACPI SCI because it's already set up */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001035 if (acpi_gbl_FADT.sci_interrupt == gsi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 return gsi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037
1038 ioapic = mp_find_ioapic(gsi);
1039 if (ioapic < 0) {
1040 printk(KERN_WARNING "No IOAPIC for GSI %u\n", gsi);
1041 return gsi;
1042 }
1043
1044 ioapic_pin = gsi - mp_ioapic_routing[ioapic].gsi_base;
1045
1046 if (ioapic_renumber_irq)
1047 gsi = ioapic_renumber_irq(ioapic, gsi);
1048
1049 /*
1050 * Avoid pin reprogramming. PRTs typically include entries
1051 * with redundant pin->gsi mappings (but unique PCI devices);
1052 * we only program the IOAPIC on the first.
1053 */
1054 bit = ioapic_pin % 32;
1055 idx = (ioapic_pin < 32) ? 0 : (ioapic_pin / 32);
1056 if (idx > 3) {
1057 printk(KERN_ERR "Invalid reference to IOAPIC pin "
1058 "%d-%d\n", mp_ioapic_routing[ioapic].apic_id,
1059 ioapic_pin);
1060 return gsi;
1061 }
1062 if ((1<<bit) & mp_ioapic_routing[ioapic].pin_programmed[idx]) {
1063 Dprintk(KERN_DEBUG "Pin %d-%d already programmed\n",
1064 mp_ioapic_routing[ioapic].apic_id, ioapic_pin);
Len Brown2ba7dee2008-01-30 13:31:02 +01001065 return (gsi < IRQ_COMPRESSION_START ? gsi : gsi_to_irq[gsi]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 }
1067
1068 mp_ioapic_routing[ioapic].pin_programmed[idx] |= (1<<bit);
1069
Len Brown2ba7dee2008-01-30 13:31:02 +01001070 /*
1071 * For GSI >= 64, use IRQ compression
1072 */
1073 if ((gsi >= IRQ_COMPRESSION_START)
1074 && (triggering == ACPI_LEVEL_SENSITIVE)) {
Natalie Protasevichc434b7a2005-06-23 00:08:29 -07001075 /*
1076 * For PCI devices assign IRQs in order, avoiding gaps
1077 * due to unused I/O APIC pins.
1078 */
1079 int irq = gsi;
1080 if (gsi < MAX_GSI_NUM) {
Kimball Murraye0c1e9b2006-05-08 15:17:16 +02001081 /*
1082 * Retain the VIA chipset work-around (gsi > 15), but
1083 * avoid a problem where the 8254 timer (IRQ0) is setup
1084 * via an override (so it's not on pin 0 of the ioapic),
1085 * and at the same time, the pin 0 interrupt is a PCI
1086 * type. The gsi > 15 test could cause these two pins
1087 * to be shared as IRQ0, and they are not shareable.
1088 * So test for this condition, and if necessary, avoid
1089 * the pin collision.
1090 */
Adrian Bunkede13892008-03-17 22:29:32 +02001091 gsi = pci_irq++;
Natalie.Protasevich@unisys.come1afc3f2005-07-29 14:03:32 -07001092 /*
1093 * Don't assign IRQ used by ACPI SCI
1094 */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001095 if (gsi == acpi_gbl_FADT.sci_interrupt)
Natalie.Protasevich@unisys.come1afc3f2005-07-29 14:03:32 -07001096 gsi = pci_irq++;
Natalie Protasevichc434b7a2005-06-23 00:08:29 -07001097 gsi_to_irq[irq] = gsi;
1098 } else {
1099 printk(KERN_ERR "GSI %u is too high\n", gsi);
1100 return gsi;
1101 }
1102 }
1103
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 io_apic_set_pci_routing(ioapic, ioapic_pin, gsi,
Len Browncb654692005-12-28 02:43:51 -05001105 triggering == ACPI_EDGE_SENSITIVE ? 0 : 1,
1106 polarity == ACPI_ACTIVE_HIGH ? 0 : 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 return gsi;
1108}
1109
Len Brown84663612005-08-24 12:09:07 -04001110#endif /* CONFIG_X86_IO_APIC */
Len Brown888ba6c2005-08-24 12:07:20 -04001111#endif /* CONFIG_ACPI */