blob: 8795122db9bc8c957020d87f2c15c62d8858de1e [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>
30
31#include <mach_apic.h>
Andi Kleen874c4fe2006-09-26 10:52:26 +020032#include <mach_apicdef.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <mach_mpparse.h>
34#include <bios_ebda.h>
35
36/* Have we found an MP table */
37int smp_found_config;
Vivek Goyal4a5d1072007-01-11 01:52:44 +010038unsigned int __cpuinitdata maxcpus = NR_CPUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40/*
41 * Various Linux-internal data structures created from the
42 * MP-table.
43 */
44int apic_version [MAX_APICS];
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +030045#if defined (CONFIG_MCA) || defined (CONFIG_EISA)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046int mp_bus_id_to_type [MAX_MP_BUSSES];
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +030047#endif
Alexey Starikovskiya6333c32008-03-20 14:54:09 +030048DECLARE_BITMAP(mp_bus_not_pci, MAX_MP_BUSSES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049int mp_bus_id_to_node [MAX_MP_BUSSES];
50int mp_bus_id_to_local [MAX_MP_BUSSES];
Linus Torvalds1da177e2005-04-16 15:20:36 -070051int mp_bus_id_to_pci_bus [MAX_MP_BUSSES] = { [0 ... MAX_MP_BUSSES-1] = -1 };
52static int mp_current_pci_id;
53
54/* I/O APIC entries */
55struct mpc_config_ioapic mp_ioapics[MAX_IO_APICS];
56
57/* # of MP IRQ source entries */
58struct mpc_config_intsrc mp_irqs[MAX_IRQ_SOURCES];
59
60/* MP IRQ source entries */
61int mp_irq_entries;
62
63int nr_ioapics;
64
65int pic_mode;
66unsigned long mp_lapic_addr;
67
Venkatesh Pallipadi911a62d2005-09-03 15:56:31 -070068unsigned int def_to_bigsmp = 0;
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070/* Processor that is doing the boot up */
71unsigned int boot_cpu_physical_apicid = -1U;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072/* Internal processor count */
Sam Ravnborg87d7e982008-01-30 13:33:37 +010073unsigned int num_processors;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Glauber Costa7b1292e2008-03-03 14:12:41 -030075unsigned disabled_cpus __cpuinitdata;
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077/* Bitmask of physically existing CPUs */
78physid_mask_t phys_cpu_present_map;
79
80u8 bios_cpu_apicid[NR_CPUS] = { [0 ... NR_CPUS-1] = BAD_APICID };
81
82/*
83 * Intel MP BIOS table parsing routines:
84 */
85
86
87/*
88 * Checksum an MP configuration block.
89 */
90
91static int __init mpf_checksum(unsigned char *mp, int len)
92{
93 int sum = 0;
94
95 while (len--)
96 sum += *mp++;
97
98 return sum & 0xFF;
99}
100
101/*
102 * Have to match translation table entries to main table entries by counter
103 * hence the mpc_record variable .... can't see a less disgusting way of
104 * doing this ....
105 */
106
107static int mpc_record;
Vivek Goyal4a5d1072007-01-11 01:52:44 +0100108static struct mpc_config_translation *translation_table[MAX_MPC_ENTRY] __cpuinitdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Vivek Goyal4a5d1072007-01-11 01:52:44 +0100110static void __cpuinit MP_processor_info (struct mpc_config_processor *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
Andrew Morton12992322005-09-09 13:01:21 -0700112 int ver, apicid;
113 physid_mask_t phys_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Glauber Costa7b1292e2008-03-03 14:12:41 -0300115 if (!(m->mpc_cpuflag & CPU_ENABLED)) {
116 disabled_cpus++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 return;
Glauber Costa7b1292e2008-03-03 14:12:41 -0300118 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120 apicid = mpc_apic_id(m, translation_table[mpc_record]);
121
122 if (m->mpc_featureflag&(1<<0))
123 Dprintk(" Floating point unit present.\n");
124 if (m->mpc_featureflag&(1<<7))
125 Dprintk(" Machine Exception supported.\n");
126 if (m->mpc_featureflag&(1<<8))
127 Dprintk(" 64 bit compare & exchange supported.\n");
128 if (m->mpc_featureflag&(1<<9))
129 Dprintk(" Internal APIC present.\n");
130 if (m->mpc_featureflag&(1<<11))
131 Dprintk(" SEP present.\n");
132 if (m->mpc_featureflag&(1<<12))
133 Dprintk(" MTRR present.\n");
134 if (m->mpc_featureflag&(1<<13))
135 Dprintk(" PGE present.\n");
136 if (m->mpc_featureflag&(1<<14))
137 Dprintk(" MCA present.\n");
138 if (m->mpc_featureflag&(1<<15))
139 Dprintk(" CMOV present.\n");
140 if (m->mpc_featureflag&(1<<16))
141 Dprintk(" PAT present.\n");
142 if (m->mpc_featureflag&(1<<17))
143 Dprintk(" PSE present.\n");
144 if (m->mpc_featureflag&(1<<18))
145 Dprintk(" PSN present.\n");
146 if (m->mpc_featureflag&(1<<19))
147 Dprintk(" Cache Line Flush Instruction present.\n");
148 /* 20 Reserved */
149 if (m->mpc_featureflag&(1<<21))
150 Dprintk(" Debug Trace and EMON Store present.\n");
151 if (m->mpc_featureflag&(1<<22))
152 Dprintk(" ACPI Thermal Throttle Registers present.\n");
153 if (m->mpc_featureflag&(1<<23))
154 Dprintk(" MMX present.\n");
155 if (m->mpc_featureflag&(1<<24))
156 Dprintk(" FXSR present.\n");
157 if (m->mpc_featureflag&(1<<25))
158 Dprintk(" XMM present.\n");
159 if (m->mpc_featureflag&(1<<26))
160 Dprintk(" Willamette New Instructions present.\n");
161 if (m->mpc_featureflag&(1<<27))
162 Dprintk(" Self Snoop present.\n");
163 if (m->mpc_featureflag&(1<<28))
164 Dprintk(" HT present.\n");
165 if (m->mpc_featureflag&(1<<29))
166 Dprintk(" Thermal Monitor present.\n");
167 /* 30, 31 Reserved */
168
169
170 if (m->mpc_cpuflag & CPU_BOOTPROCESSOR) {
171 Dprintk(" Bootup CPU\n");
172 boot_cpu_physical_apicid = m->mpc_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 }
174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 ver = m->mpc_apicver;
176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 /*
178 * Validate version
179 */
180 if (ver == 0x0) {
Andrew Morton12992322005-09-09 13:01:21 -0700181 printk(KERN_WARNING "BIOS bug, APIC version is 0 for CPU#%d! "
182 "fixing up to 0x10. (tell your hw vendor)\n",
183 m->mpc_apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 ver = 0x10;
185 }
186 apic_version[m->mpc_apicid] = ver;
Eric W. Biederman6c180d92005-10-30 14:59:47 -0800187
188 phys_cpu = apicid_to_cpu_present(apicid);
189 physids_or(phys_cpu_present_map, phys_cpu_present_map, phys_cpu);
190
191 if (num_processors >= NR_CPUS) {
192 printk(KERN_WARNING "WARNING: NR_CPUS limit of %i reached."
193 " Processor ignored.\n", NR_CPUS);
194 return;
195 }
196
197 if (num_processors >= maxcpus) {
198 printk(KERN_WARNING "WARNING: maxcpus limit of %i reached."
199 " Processor ignored.\n", maxcpus);
200 return;
201 }
202
203 cpu_set(num_processors, cpu_possible_map);
204 num_processors++;
205
Ashok Raj6cf272a2006-04-10 22:53:07 -0700206 /*
207 * Would be preferable to switch to bigsmp when CONFIG_HOTPLUG_CPU=y
208 * but we need to work other dependencies like SMP_SUSPEND etc
209 * before this can be done without some confusion.
210 * if (CPU_HOTPLUG_ENABLED || num_processors > 8)
211 * - Ashok Raj <ashok.raj@intel.com>
212 */
213 if (num_processors > 8) {
Ashok Raje72c8582006-01-06 00:12:09 -0800214 switch (boot_cpu_data.x86_vendor) {
215 case X86_VENDOR_INTEL:
216 if (!APIC_XAPIC(ver)) {
217 def_to_bigsmp = 0;
218 break;
219 }
220 /* If P4 and above fall through */
221 case X86_VENDOR_AMD:
222 def_to_bigsmp = 1;
223 }
224 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 bios_cpu_apicid[num_processors - 1] = m->mpc_apicid;
226}
227
228static void __init MP_bus_info (struct mpc_config_bus *m)
229{
230 char str[7];
231
232 memcpy(str, m->mpc_bustype, 6);
233 str[6] = 0;
234
235 mpc_oem_bus_info(m, str, translation_table[mpc_record]);
236
Andi Kleen5e4edbb2006-09-26 10:52:35 +0200237#if MAX_MP_BUSSES < 256
Randy Dunlapc0ec31a2006-04-10 22:53:13 -0700238 if (m->mpc_busid >= MAX_MP_BUSSES) {
239 printk(KERN_WARNING "MP table busid value (%d) for bustype %s "
240 " is too large, max. supported is %d\n",
241 m->mpc_busid, str, MAX_MP_BUSSES - 1);
242 return;
243 }
Andi Kleen5e4edbb2006-09-26 10:52:35 +0200244#endif
Randy Dunlapc0ec31a2006-04-10 22:53:13 -0700245
Alexey Starikovskiya6333c32008-03-20 14:54:09 +0300246 set_bit(m->mpc_busid, mp_bus_not_pci);
Alexey Starikovskiy9e0a2de2008-03-20 14:54:56 +0300247 if (strncmp(str, BUSTYPE_PCI, sizeof(BUSTYPE_PCI)-1) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 mpc_oem_pci_bus(m, translation_table[mpc_record]);
Alexey Starikovskiya6333c32008-03-20 14:54:09 +0300249 clear_bit(m->mpc_busid, mp_bus_not_pci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 mp_bus_id_to_pci_bus[m->mpc_busid] = mp_current_pci_id;
251 mp_current_pci_id++;
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300252#if defined(CONFIG_EISA) || defined (CONFIG_MCA)
253 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_PCI;
Alexey Starikovskiy9e0a2de2008-03-20 14:54:56 +0300254 } else if (strncmp(str, BUSTYPE_ISA, sizeof(BUSTYPE_ISA)-1) == 0) {
255 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_ISA;
256 } else if (strncmp(str, BUSTYPE_EISA, sizeof(BUSTYPE_EISA)-1) == 0) {
257 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_EISA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 } else if (strncmp(str, BUSTYPE_MCA, sizeof(BUSTYPE_MCA)-1) == 0) {
259 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_MCA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 } else {
261 printk(KERN_WARNING "Unknown bustype %s - ignoring\n", str);
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300262#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 }
264}
265
266static void __init MP_ioapic_info (struct mpc_config_ioapic *m)
267{
268 if (!(m->mpc_flags & MPC_APIC_USABLE))
269 return;
270
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100271 printk(KERN_INFO "I/O APIC #%d Version %d at 0x%X.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 m->mpc_apicid, m->mpc_apicver, m->mpc_apicaddr);
273 if (nr_ioapics >= MAX_IO_APICS) {
274 printk(KERN_CRIT "Max # of I/O APICs (%d) exceeded (found %d).\n",
275 MAX_IO_APICS, nr_ioapics);
276 panic("Recompile kernel with bigger MAX_IO_APICS!.\n");
277 }
278 if (!m->mpc_apicaddr) {
279 printk(KERN_ERR "WARNING: bogus zero I/O APIC address"
280 " found in MP table, skipping!\n");
281 return;
282 }
283 mp_ioapics[nr_ioapics] = *m;
284 nr_ioapics++;
285}
286
287static void __init MP_intsrc_info (struct mpc_config_intsrc *m)
288{
289 mp_irqs [mp_irq_entries] = *m;
290 Dprintk("Int: type %d, pol %d, trig %d, bus %d,"
291 " IRQ %02x, APIC ID %x, APIC INT %02x\n",
292 m->mpc_irqtype, m->mpc_irqflag & 3,
293 (m->mpc_irqflag >> 2) & 3, m->mpc_srcbus,
294 m->mpc_srcbusirq, m->mpc_dstapic, m->mpc_dstirq);
295 if (++mp_irq_entries == MAX_IRQ_SOURCES)
296 panic("Max # of irq sources exceeded!!\n");
297}
298
299static void __init MP_lintsrc_info (struct mpc_config_lintsrc *m)
300{
301 Dprintk("Lint: type %d, pol %d, trig %d, bus %d,"
302 " IRQ %02x, APIC ID %x, APIC LINT %02x\n",
303 m->mpc_irqtype, m->mpc_irqflag & 3,
304 (m->mpc_irqflag >> 2) &3, m->mpc_srcbusid,
305 m->mpc_srcbusirq, m->mpc_destapic, m->mpc_destapiclint);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306}
307
308#ifdef CONFIG_X86_NUMAQ
309static void __init MP_translation_info (struct mpc_config_translation *m)
310{
311 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);
312
313 if (mpc_record >= MAX_MPC_ENTRY)
314 printk(KERN_ERR "MAX_MPC_ENTRY exceeded!\n");
315 else
316 translation_table[mpc_record] = m; /* stash this for later */
317 if (m->trans_quad < MAX_NUMNODES && !node_online(m->trans_quad))
318 node_set_online(m->trans_quad);
319}
320
321/*
322 * Read/parse the MPC oem tables
323 */
324
325static void __init smp_read_mpc_oem(struct mp_config_oemtable *oemtable, \
326 unsigned short oemsize)
327{
328 int count = sizeof (*oemtable); /* the header size */
329 unsigned char *oemptr = ((unsigned char *)oemtable)+count;
330
331 mpc_record = 0;
332 printk(KERN_INFO "Found an OEM MPC table at %8p - parsing it ... \n", oemtable);
333 if (memcmp(oemtable->oem_signature,MPC_OEM_SIGNATURE,4))
334 {
335 printk(KERN_WARNING "SMP mpc oemtable: bad signature [%c%c%c%c]!\n",
336 oemtable->oem_signature[0],
337 oemtable->oem_signature[1],
338 oemtable->oem_signature[2],
339 oemtable->oem_signature[3]);
340 return;
341 }
342 if (mpf_checksum((unsigned char *)oemtable,oemtable->oem_length))
343 {
344 printk(KERN_WARNING "SMP oem mptable: checksum error!\n");
345 return;
346 }
347 while (count < oemtable->oem_length) {
348 switch (*oemptr) {
349 case MP_TRANSLATION:
350 {
351 struct mpc_config_translation *m=
352 (struct mpc_config_translation *)oemptr;
353 MP_translation_info(m);
354 oemptr += sizeof(*m);
355 count += sizeof(*m);
356 ++mpc_record;
357 break;
358 }
359 default:
360 {
361 printk(KERN_WARNING "Unrecognised OEM table entry type! - %d\n", (int) *oemptr);
362 return;
363 }
364 }
365 }
366}
367
368static inline void mps_oem_check(struct mp_config_table *mpc, char *oem,
369 char *productid)
370{
371 if (strncmp(oem, "IBM NUMA", 8))
372 printk("Warning! May not be a NUMA-Q system!\n");
373 if (mpc->mpc_oemptr)
374 smp_read_mpc_oem((struct mp_config_oemtable *) mpc->mpc_oemptr,
375 mpc->mpc_oemsize);
376}
377#endif /* CONFIG_X86_NUMAQ */
378
379/*
380 * Read/parse the MPC
381 */
382
383static int __init smp_read_mpc(struct mp_config_table *mpc)
384{
385 char str[16];
386 char oem[10];
387 int count=sizeof(*mpc);
388 unsigned char *mpt=((unsigned char *)mpc)+count;
389
390 if (memcmp(mpc->mpc_signature,MPC_SIGNATURE,4)) {
391 printk(KERN_ERR "SMP mptable: bad signature [0x%x]!\n",
392 *(u32 *)mpc->mpc_signature);
393 return 0;
394 }
395 if (mpf_checksum((unsigned char *)mpc,mpc->mpc_length)) {
396 printk(KERN_ERR "SMP mptable: checksum error!\n");
397 return 0;
398 }
399 if (mpc->mpc_spec!=0x01 && mpc->mpc_spec!=0x04) {
400 printk(KERN_ERR "SMP mptable: bad table version (%d)!!\n",
401 mpc->mpc_spec);
402 return 0;
403 }
404 if (!mpc->mpc_lapic) {
405 printk(KERN_ERR "SMP mptable: null local APIC address!\n");
406 return 0;
407 }
408 memcpy(oem,mpc->mpc_oem,8);
409 oem[8]=0;
410 printk(KERN_INFO "OEM ID: %s ",oem);
411
412 memcpy(str,mpc->mpc_productid,12);
413 str[12]=0;
414 printk("Product ID: %s ",str);
415
416 mps_oem_check(mpc, oem, str);
417
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100418 printk("APIC at: 0x%X\n", mpc->mpc_lapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100420 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 * Save the local APIC address (it might be non-default) -- but only
422 * if we're not using ACPI.
423 */
424 if (!acpi_lapic)
425 mp_lapic_addr = mpc->mpc_lapic;
426
427 /*
428 * Now process the configuration blocks.
429 */
430 mpc_record = 0;
431 while (count < mpc->mpc_length) {
432 switch(*mpt) {
433 case MP_PROCESSOR:
434 {
435 struct mpc_config_processor *m=
436 (struct mpc_config_processor *)mpt;
437 /* ACPI may have already provided this data */
438 if (!acpi_lapic)
439 MP_processor_info(m);
440 mpt += sizeof(*m);
441 count += sizeof(*m);
442 break;
443 }
444 case MP_BUS:
445 {
446 struct mpc_config_bus *m=
447 (struct mpc_config_bus *)mpt;
448 MP_bus_info(m);
449 mpt += sizeof(*m);
450 count += sizeof(*m);
451 break;
452 }
453 case MP_IOAPIC:
454 {
455 struct mpc_config_ioapic *m=
456 (struct mpc_config_ioapic *)mpt;
457 MP_ioapic_info(m);
458 mpt+=sizeof(*m);
459 count+=sizeof(*m);
460 break;
461 }
462 case MP_INTSRC:
463 {
464 struct mpc_config_intsrc *m=
465 (struct mpc_config_intsrc *)mpt;
466
467 MP_intsrc_info(m);
468 mpt+=sizeof(*m);
469 count+=sizeof(*m);
470 break;
471 }
472 case MP_LINTSRC:
473 {
474 struct mpc_config_lintsrc *m=
475 (struct mpc_config_lintsrc *)mpt;
476 MP_lintsrc_info(m);
477 mpt+=sizeof(*m);
478 count+=sizeof(*m);
479 break;
480 }
481 default:
482 {
483 count = mpc->mpc_length;
484 break;
485 }
486 }
487 ++mpc_record;
488 }
Ingo Molnar3c43f032007-05-02 19:27:04 +0200489 setup_apic_routing();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 if (!num_processors)
491 printk(KERN_ERR "SMP mptable: no processors registered!\n");
492 return num_processors;
493}
494
495static int __init ELCR_trigger(unsigned int irq)
496{
497 unsigned int port;
498
499 port = 0x4d0 + (irq >> 3);
500 return (inb(port) >> (irq & 7)) & 1;
501}
502
503static void __init construct_default_ioirq_mptable(int mpc_default_type)
504{
505 struct mpc_config_intsrc intsrc;
506 int i;
507 int ELCR_fallback = 0;
508
509 intsrc.mpc_type = MP_INTSRC;
510 intsrc.mpc_irqflag = 0; /* conforming */
511 intsrc.mpc_srcbus = 0;
512 intsrc.mpc_dstapic = mp_ioapics[0].mpc_apicid;
513
514 intsrc.mpc_irqtype = mp_INT;
515
516 /*
517 * If true, we have an ISA/PCI system with no IRQ entries
518 * in the MP table. To prevent the PCI interrupts from being set up
519 * incorrectly, we try to use the ELCR. The sanity check to see if
520 * there is good ELCR data is very simple - IRQ0, 1, 2 and 13 can
521 * never be level sensitive, so we simply see if the ELCR agrees.
522 * If it does, we assume it's valid.
523 */
524 if (mpc_default_type == 5) {
525 printk(KERN_INFO "ISA/PCI bus type with no IRQ information... falling back to ELCR\n");
526
527 if (ELCR_trigger(0) || ELCR_trigger(1) || ELCR_trigger(2) || ELCR_trigger(13))
528 printk(KERN_WARNING "ELCR contains invalid data... not using ELCR\n");
529 else {
530 printk(KERN_INFO "Using ELCR to identify PCI interrupts\n");
531 ELCR_fallback = 1;
532 }
533 }
534
535 for (i = 0; i < 16; i++) {
536 switch (mpc_default_type) {
537 case 2:
538 if (i == 0 || i == 13)
539 continue; /* IRQ0 & IRQ13 not connected */
540 /* fall through */
541 default:
542 if (i == 2)
543 continue; /* IRQ2 is never connected */
544 }
545
546 if (ELCR_fallback) {
547 /*
548 * If the ELCR indicates a level-sensitive interrupt, we
549 * copy that information over to the MP table in the
550 * irqflag field (level sensitive, active high polarity).
551 */
552 if (ELCR_trigger(i))
553 intsrc.mpc_irqflag = 13;
554 else
555 intsrc.mpc_irqflag = 0;
556 }
557
558 intsrc.mpc_srcbusirq = i;
559 intsrc.mpc_dstirq = i ? i : 2; /* IRQ0 to INTIN2 */
560 MP_intsrc_info(&intsrc);
561 }
562
563 intsrc.mpc_irqtype = mp_ExtINT;
564 intsrc.mpc_srcbusirq = 0;
565 intsrc.mpc_dstirq = 0; /* 8259A to INTIN0 */
566 MP_intsrc_info(&intsrc);
567}
568
569static inline void __init construct_default_ISA_mptable(int mpc_default_type)
570{
571 struct mpc_config_processor processor;
572 struct mpc_config_bus bus;
573 struct mpc_config_ioapic ioapic;
574 struct mpc_config_lintsrc lintsrc;
575 int linttypes[2] = { mp_ExtINT, mp_NMI };
576 int i;
577
578 /*
579 * local APIC has default address
580 */
581 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
582
583 /*
584 * 2 CPUs, numbered 0 & 1.
585 */
586 processor.mpc_type = MP_PROCESSOR;
587 /* Either an integrated APIC or a discrete 82489DX. */
588 processor.mpc_apicver = mpc_default_type > 4 ? 0x10 : 0x01;
589 processor.mpc_cpuflag = CPU_ENABLED;
590 processor.mpc_cpufeature = (boot_cpu_data.x86 << 8) |
591 (boot_cpu_data.x86_model << 4) |
592 boot_cpu_data.x86_mask;
593 processor.mpc_featureflag = boot_cpu_data.x86_capability[0];
594 processor.mpc_reserved[0] = 0;
595 processor.mpc_reserved[1] = 0;
596 for (i = 0; i < 2; i++) {
597 processor.mpc_apicid = i;
598 MP_processor_info(&processor);
599 }
600
601 bus.mpc_type = MP_BUS;
602 bus.mpc_busid = 0;
603 switch (mpc_default_type) {
604 default:
605 printk("???\n");
606 printk(KERN_ERR "Unknown standard configuration %d\n",
607 mpc_default_type);
608 /* fall through */
609 case 1:
610 case 5:
611 memcpy(bus.mpc_bustype, "ISA ", 6);
612 break;
613 case 2:
614 case 6:
615 case 3:
616 memcpy(bus.mpc_bustype, "EISA ", 6);
617 break;
618 case 4:
619 case 7:
620 memcpy(bus.mpc_bustype, "MCA ", 6);
621 }
622 MP_bus_info(&bus);
623 if (mpc_default_type > 4) {
624 bus.mpc_busid = 1;
625 memcpy(bus.mpc_bustype, "PCI ", 6);
626 MP_bus_info(&bus);
627 }
628
629 ioapic.mpc_type = MP_IOAPIC;
630 ioapic.mpc_apicid = 2;
631 ioapic.mpc_apicver = mpc_default_type > 4 ? 0x10 : 0x01;
632 ioapic.mpc_flags = MPC_APIC_USABLE;
633 ioapic.mpc_apicaddr = 0xFEC00000;
634 MP_ioapic_info(&ioapic);
635
636 /*
637 * We set up most of the low 16 IO-APIC pins according to MPS rules.
638 */
639 construct_default_ioirq_mptable(mpc_default_type);
640
641 lintsrc.mpc_type = MP_LINTSRC;
642 lintsrc.mpc_irqflag = 0; /* conforming */
643 lintsrc.mpc_srcbusid = 0;
644 lintsrc.mpc_srcbusirq = 0;
645 lintsrc.mpc_destapic = MP_APIC_ALL;
646 for (i = 0; i < 2; i++) {
647 lintsrc.mpc_irqtype = linttypes[i];
648 lintsrc.mpc_destapiclint = i;
649 MP_lintsrc_info(&lintsrc);
650 }
651}
652
653static struct intel_mp_floating *mpf_found;
654
655/*
656 * Scan the memory blocks for an SMP configuration block.
657 */
658void __init get_smp_config (void)
659{
660 struct intel_mp_floating *mpf = mpf_found;
661
662 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 * ACPI supports both logical (e.g. Hyper-Threading) and physical
664 * processors, where MPS only supports physical.
665 */
666 if (acpi_lapic && acpi_ioapic) {
667 printk(KERN_INFO "Using ACPI (MADT) for SMP configuration information\n");
668 return;
669 }
670 else if (acpi_lapic)
671 printk(KERN_INFO "Using ACPI for processor (LAPIC) configuration information\n");
672
673 printk(KERN_INFO "Intel MultiProcessor Specification v1.%d\n", mpf->mpf_specification);
674 if (mpf->mpf_feature2 & (1<<7)) {
675 printk(KERN_INFO " IMCR and PIC compatibility mode.\n");
676 pic_mode = 1;
677 } else {
678 printk(KERN_INFO " Virtual Wire compatibility mode.\n");
679 pic_mode = 0;
680 }
681
682 /*
683 * Now see if we need to read further.
684 */
685 if (mpf->mpf_feature1 != 0) {
686
687 printk(KERN_INFO "Default MP configuration #%d\n", mpf->mpf_feature1);
688 construct_default_ISA_mptable(mpf->mpf_feature1);
689
690 } else if (mpf->mpf_physptr) {
691
692 /*
693 * Read the physical hardware table. Anything here will
694 * override the defaults.
695 */
Daniel Yeisley7d4c8e52006-02-20 18:27:54 -0800696 if (!smp_read_mpc(phys_to_virt(mpf->mpf_physptr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 smp_found_config = 0;
698 printk(KERN_ERR "BIOS bug, MP table errors detected!...\n");
699 printk(KERN_ERR "... disabling SMP support. (tell your hw vendor)\n");
700 return;
701 }
702 /*
703 * If there are no explicit MP IRQ entries, then we are
704 * broken. We set up most of the low 16 IO-APIC pins to
705 * ISA defaults and hope it will work.
706 */
707 if (!mp_irq_entries) {
708 struct mpc_config_bus bus;
709
710 printk(KERN_ERR "BIOS bug, no explicit IRQ entries, using default mptable. (tell your hw vendor)\n");
711
712 bus.mpc_type = MP_BUS;
713 bus.mpc_busid = 0;
714 memcpy(bus.mpc_bustype, "ISA ", 6);
715 MP_bus_info(&bus);
716
717 construct_default_ioirq_mptable(0);
718 }
719
720 } else
721 BUG();
722
723 printk(KERN_INFO "Processors: %d\n", num_processors);
724 /*
725 * Only use the first configuration found.
726 */
727}
728
729static int __init smp_scan_config (unsigned long base, unsigned long length)
730{
731 unsigned long *bp = phys_to_virt(base);
732 struct intel_mp_floating *mpf;
733
Ingo Molnare91a3b432008-01-30 13:33:08 +0100734 printk(KERN_INFO "Scan SMP from %p for %ld bytes.\n", bp,length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 if (sizeof(*mpf) != 16)
736 printk("Error: MPF size\n");
737
738 while (length > 0) {
739 mpf = (struct intel_mp_floating *)bp;
740 if ((*bp == SMP_MAGIC_IDENT) &&
741 (mpf->mpf_length == 1) &&
742 !mpf_checksum((unsigned char *)bp, 16) &&
743 ((mpf->mpf_specification == 1)
744 || (mpf->mpf_specification == 4)) ) {
745
746 smp_found_config = 1;
Ingo Molnare91a3b432008-01-30 13:33:08 +0100747 printk(KERN_INFO "found SMP MP-table at [%p] %08lx\n",
748 mpf, virt_to_phys(mpf));
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800749 reserve_bootmem(virt_to_phys(mpf), PAGE_SIZE,
750 BOOTMEM_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 if (mpf->mpf_physptr) {
752 /*
753 * We cannot access to MPC table to compute
754 * table size yet, as only few megabytes from
755 * the bottom is mapped now.
756 * PC-9800's MPC table places on the very last
757 * of physical memory; so that simply reserving
758 * PAGE_SIZE from mpg->mpf_physptr yields BUG()
759 * in reserve_bootmem.
760 */
761 unsigned long size = PAGE_SIZE;
762 unsigned long end = max_low_pfn * PAGE_SIZE;
763 if (mpf->mpf_physptr + size > end)
764 size = end - mpf->mpf_physptr;
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800765 reserve_bootmem(mpf->mpf_physptr, size,
766 BOOTMEM_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 }
768
769 mpf_found = mpf;
770 return 1;
771 }
772 bp += 4;
773 length -= 16;
774 }
775 return 0;
776}
777
778void __init find_smp_config (void)
779{
780 unsigned int address;
781
782 /*
783 * FIXME: Linux assumes you have 640K of base ram..
784 * this continues the error...
785 *
786 * 1) Scan the bottom 1K for a signature
787 * 2) Scan the top 1K of base RAM
788 * 3) Scan the 64K of bios
789 */
790 if (smp_scan_config(0x0,0x400) ||
791 smp_scan_config(639*0x400,0x400) ||
792 smp_scan_config(0xF0000,0x10000))
793 return;
794 /*
795 * If it is an SMP machine we should know now, unless the
796 * configuration is in an EISA/MCA bus machine with an
797 * extended bios data area.
798 *
799 * there is a real-mode segmented pointer pointing to the
800 * 4K EBDA area at 0x40E, calculate and scan it here.
801 *
802 * NOTE! There are Linux loaders that will corrupt the EBDA
803 * area, and as such this kind of SMP config may be less
804 * trustworthy, simply because the SMP table may have been
805 * stomped on during early boot. These loaders are buggy and
806 * should be fixed.
807 *
808 * MP1.4 SPEC states to only scan first 1K of 4K EBDA.
809 */
810
811 address = get_bios_ebda();
812 if (address)
813 smp_scan_config(address, 0x400);
814}
815
Natalie.Protasevich@unisys.come5428ed2006-03-23 02:59:36 -0800816int es7000_plat;
817
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818/* --------------------------------------------------------------------------
819 ACPI-based MP Configuration
820 -------------------------------------------------------------------------- */
821
Len Brown888ba6c2005-08-24 12:07:20 -0400822#ifdef CONFIG_ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
Andi Kleen19f03ff2006-09-26 10:52:30 +0200824void __init mp_register_lapic_address(u64 address)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825{
826 mp_lapic_addr = (unsigned long) address;
827
828 set_fixmap_nocache(FIX_APIC_BASE, mp_lapic_addr);
829
830 if (boot_cpu_physical_apicid == -1U)
831 boot_cpu_physical_apicid = GET_APIC_ID(apic_read(APIC_ID));
832
833 Dprintk("Boot CPU = %d\n", boot_cpu_physical_apicid);
834}
835
Vivek Goyal4a5d1072007-01-11 01:52:44 +0100836void __cpuinit mp_register_lapic (u8 id, u8 enabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837{
838 struct mpc_config_processor processor;
Andi Kleen19f03ff2006-09-26 10:52:30 +0200839 int boot_cpu = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
841 if (MAX_APICS - id <= 0) {
842 printk(KERN_WARNING "Processor #%d invalid (max %d)\n",
843 id, MAX_APICS);
844 return;
845 }
846
847 if (id == boot_cpu_physical_apicid)
848 boot_cpu = 1;
849
850 processor.mpc_type = MP_PROCESSOR;
851 processor.mpc_apicid = id;
852 processor.mpc_apicver = GET_APIC_VERSION(apic_read(APIC_LVR));
853 processor.mpc_cpuflag = (enabled ? CPU_ENABLED : 0);
854 processor.mpc_cpuflag |= (boot_cpu ? CPU_BOOTPROCESSOR : 0);
855 processor.mpc_cpufeature = (boot_cpu_data.x86 << 8) |
856 (boot_cpu_data.x86_model << 4) | boot_cpu_data.x86_mask;
857 processor.mpc_featureflag = boot_cpu_data.x86_capability[0];
858 processor.mpc_reserved[0] = 0;
859 processor.mpc_reserved[1] = 0;
860
861 MP_processor_info(&processor);
862}
863
Len Brown84663612005-08-24 12:09:07 -0400864#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
866#define MP_ISA_BUS 0
867#define MP_MAX_IOAPIC_PIN 127
868
869static struct mp_ioapic_routing {
870 int apic_id;
871 int gsi_base;
872 int gsi_end;
873 u32 pin_programmed[4];
874} mp_ioapic_routing[MAX_IO_APICS];
875
Andi Kleen19f03ff2006-09-26 10:52:30 +0200876static int mp_find_ioapic (int gsi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877{
Andi Kleen19f03ff2006-09-26 10:52:30 +0200878 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
880 /* Find the IOAPIC that manages this GSI. */
881 for (i = 0; i < nr_ioapics; i++) {
882 if ((gsi >= mp_ioapic_routing[i].gsi_base)
883 && (gsi <= mp_ioapic_routing[i].gsi_end))
884 return i;
885 }
886
887 printk(KERN_ERR "ERROR: Unable to locate IOAPIC for GSI %d\n", gsi);
888
889 return -1;
890}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
Andi Kleen19f03ff2006-09-26 10:52:30 +0200892void __init mp_register_ioapic(u8 id, u32 address, u32 gsi_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893{
Andi Kleen19f03ff2006-09-26 10:52:30 +0200894 int idx = 0;
895 int tmpid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
897 if (nr_ioapics >= MAX_IO_APICS) {
898 printk(KERN_ERR "ERROR: Max # of I/O APICs (%d) exceeded "
899 "(found %d)\n", MAX_IO_APICS, nr_ioapics);
900 panic("Recompile kernel with bigger MAX_IO_APICS!\n");
901 }
902 if (!address) {
903 printk(KERN_ERR "WARNING: Bogus (zero) I/O APIC address"
904 " found in MADT table, skipping!\n");
905 return;
906 }
907
908 idx = nr_ioapics++;
909
910 mp_ioapics[idx].mpc_type = MP_IOAPIC;
911 mp_ioapics[idx].mpc_flags = MPC_APIC_USABLE;
912 mp_ioapics[idx].mpc_apicaddr = address;
913
914 set_fixmap_nocache(FIX_IO_APIC_BASE_0 + idx, address);
Shaohua Li7c5c1e42006-03-23 02:59:53 -0800915 if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL)
916 && !APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
Andreas Deresch6070f9e2006-02-26 04:18:34 +0100917 tmpid = io_apic_get_unique_id(idx, id);
Natalie Protasevichca05fea2005-06-23 00:08:22 -0700918 else
Andreas Deresch6070f9e2006-02-26 04:18:34 +0100919 tmpid = id;
920 if (tmpid == -1) {
921 nr_ioapics--;
922 return;
923 }
924 mp_ioapics[idx].mpc_apicid = tmpid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 mp_ioapics[idx].mpc_apicver = io_apic_get_version(idx);
926
927 /*
928 * Build basic GSI lookup table to facilitate gsi->io_apic lookups
929 * and to prevent reprogramming of IOAPIC pins (PCI GSIs).
930 */
931 mp_ioapic_routing[idx].apic_id = mp_ioapics[idx].mpc_apicid;
932 mp_ioapic_routing[idx].gsi_base = gsi_base;
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100933 mp_ioapic_routing[idx].gsi_end = gsi_base +
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 io_apic_get_redir_entries(idx);
935
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100936 printk("IOAPIC[%d]: apic_id %d, version %d, address 0x%x, "
937 "GSI %d-%d\n", idx, mp_ioapics[idx].mpc_apicid,
938 mp_ioapics[idx].mpc_apicver, mp_ioapics[idx].mpc_apicaddr,
939 mp_ioapic_routing[idx].gsi_base,
940 mp_ioapic_routing[idx].gsi_end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941}
942
Andi Kleen19f03ff2006-09-26 10:52:30 +0200943void __init
944mp_override_legacy_irq(u8 bus_irq, u8 polarity, u8 trigger, u32 gsi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945{
946 struct mpc_config_intsrc intsrc;
947 int ioapic = -1;
948 int pin = -1;
949
950 /*
951 * Convert 'gsi' to 'ioapic.pin'.
952 */
953 ioapic = mp_find_ioapic(gsi);
954 if (ioapic < 0)
955 return;
956 pin = gsi - mp_ioapic_routing[ioapic].gsi_base;
957
958 /*
959 * TBD: This check is for faulty timer entries, where the override
960 * erroneously sets the trigger to level, resulting in a HUGE
961 * increase of timer interrupts!
962 */
963 if ((bus_irq == 0) && (trigger == 3))
964 trigger = 1;
965
966 intsrc.mpc_type = MP_INTSRC;
967 intsrc.mpc_irqtype = mp_INT;
968 intsrc.mpc_irqflag = (trigger << 2) | polarity;
969 intsrc.mpc_srcbus = MP_ISA_BUS;
970 intsrc.mpc_srcbusirq = bus_irq; /* IRQ */
971 intsrc.mpc_dstapic = mp_ioapics[ioapic].mpc_apicid; /* APIC ID */
972 intsrc.mpc_dstirq = pin; /* INTIN# */
973
974 Dprintk("Int: type %d, pol %d, trig %d, bus %d, irq %d, %d-%d\n",
975 intsrc.mpc_irqtype, intsrc.mpc_irqflag & 3,
976 (intsrc.mpc_irqflag >> 2) & 3, intsrc.mpc_srcbus,
977 intsrc.mpc_srcbusirq, intsrc.mpc_dstapic, intsrc.mpc_dstirq);
978
979 mp_irqs[mp_irq_entries] = intsrc;
980 if (++mp_irq_entries == MAX_IRQ_SOURCES)
981 panic("Max # of irq sources exceeded!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982}
983
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984void __init mp_config_acpi_legacy_irqs (void)
985{
986 struct mpc_config_intsrc intsrc;
Andi Kleen19f03ff2006-09-26 10:52:30 +0200987 int i = 0;
988 int ioapic = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300990#if defined (CONFIG_MCA) || defined (CONFIG_EISA)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 /*
992 * Fabricate the legacy ISA bus (bus #31).
993 */
994 mp_bus_id_to_type[MP_ISA_BUS] = MP_BUS_ISA;
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300995#endif
Alexey Starikovskiya6333c32008-03-20 14:54:09 +0300996 set_bit(MP_ISA_BUS, mp_bus_not_pci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 Dprintk("Bus #%d is ISA\n", MP_ISA_BUS);
998
999 /*
1000 * Older generations of ES7000 have no legacy identity mappings
1001 */
1002 if (es7000_plat == 1)
1003 return;
1004
1005 /*
1006 * Locate the IOAPIC that manages the ISA IRQs (0-15).
1007 */
1008 ioapic = mp_find_ioapic(0);
1009 if (ioapic < 0)
1010 return;
1011
1012 intsrc.mpc_type = MP_INTSRC;
1013 intsrc.mpc_irqflag = 0; /* Conforming */
1014 intsrc.mpc_srcbus = MP_ISA_BUS;
1015 intsrc.mpc_dstapic = mp_ioapics[ioapic].mpc_apicid;
1016
1017 /*
1018 * Use the default configuration for the IRQs 0-15. Unless
Simon Arlott27b46d72007-10-20 01:13:56 +02001019 * overridden by (MADT) interrupt source override entries.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 */
1021 for (i = 0; i < 16; i++) {
1022 int idx;
1023
1024 for (idx = 0; idx < mp_irq_entries; idx++) {
1025 struct mpc_config_intsrc *irq = mp_irqs + idx;
1026
1027 /* Do we already have a mapping for this ISA IRQ? */
1028 if (irq->mpc_srcbus == MP_ISA_BUS && irq->mpc_srcbusirq == i)
1029 break;
1030
1031 /* Do we already have a mapping for this IOAPIC pin */
1032 if ((irq->mpc_dstapic == intsrc.mpc_dstapic) &&
1033 (irq->mpc_dstirq == i))
1034 break;
1035 }
1036
1037 if (idx != mp_irq_entries) {
1038 printk(KERN_DEBUG "ACPI: IRQ%d used by override.\n", i);
1039 continue; /* IRQ already used */
1040 }
1041
1042 intsrc.mpc_irqtype = mp_INT;
1043 intsrc.mpc_srcbusirq = i; /* Identity mapped */
1044 intsrc.mpc_dstirq = i;
1045
1046 Dprintk("Int: type %d, pol %d, trig %d, bus %d, irq %d, "
1047 "%d-%d\n", intsrc.mpc_irqtype, intsrc.mpc_irqflag & 3,
1048 (intsrc.mpc_irqflag >> 2) & 3, intsrc.mpc_srcbus,
1049 intsrc.mpc_srcbusirq, intsrc.mpc_dstapic,
1050 intsrc.mpc_dstirq);
1051
1052 mp_irqs[mp_irq_entries] = intsrc;
1053 if (++mp_irq_entries == MAX_IRQ_SOURCES)
1054 panic("Max # of irq sources exceeded!\n");
1055 }
1056}
1057
Natalie Protasevichc434b7a2005-06-23 00:08:29 -07001058#define MAX_GSI_NUM 4096
Len Brown2ba7dee2008-01-30 13:31:02 +01001059#define IRQ_COMPRESSION_START 64
Natalie Protasevichc434b7a2005-06-23 00:08:29 -07001060
Andi Kleen19f03ff2006-09-26 10:52:30 +02001061int mp_register_gsi(u32 gsi, int triggering, int polarity)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062{
Andi Kleen19f03ff2006-09-26 10:52:30 +02001063 int ioapic = -1;
1064 int ioapic_pin = 0;
1065 int idx, bit = 0;
Len Brown2ba7dee2008-01-30 13:31:02 +01001066 static int pci_irq = IRQ_COMPRESSION_START;
Natalie Protasevichc434b7a2005-06-23 00:08:29 -07001067 /*
Joe Perchesab4a5742008-01-30 13:31:42 +01001068 * Mapping between Global System Interrupts, which
Natalie Protasevichc434b7a2005-06-23 00:08:29 -07001069 * represent all possible interrupts, and IRQs
1070 * assigned to actual devices.
1071 */
1072 static int gsi_to_irq[MAX_GSI_NUM];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 /* Don't set up the ACPI SCI because it's already set up */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001075 if (acpi_gbl_FADT.sci_interrupt == gsi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 return gsi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077
1078 ioapic = mp_find_ioapic(gsi);
1079 if (ioapic < 0) {
1080 printk(KERN_WARNING "No IOAPIC for GSI %u\n", gsi);
1081 return gsi;
1082 }
1083
1084 ioapic_pin = gsi - mp_ioapic_routing[ioapic].gsi_base;
1085
1086 if (ioapic_renumber_irq)
1087 gsi = ioapic_renumber_irq(ioapic, gsi);
1088
1089 /*
1090 * Avoid pin reprogramming. PRTs typically include entries
1091 * with redundant pin->gsi mappings (but unique PCI devices);
1092 * we only program the IOAPIC on the first.
1093 */
1094 bit = ioapic_pin % 32;
1095 idx = (ioapic_pin < 32) ? 0 : (ioapic_pin / 32);
1096 if (idx > 3) {
1097 printk(KERN_ERR "Invalid reference to IOAPIC pin "
1098 "%d-%d\n", mp_ioapic_routing[ioapic].apic_id,
1099 ioapic_pin);
1100 return gsi;
1101 }
1102 if ((1<<bit) & mp_ioapic_routing[ioapic].pin_programmed[idx]) {
1103 Dprintk(KERN_DEBUG "Pin %d-%d already programmed\n",
1104 mp_ioapic_routing[ioapic].apic_id, ioapic_pin);
Len Brown2ba7dee2008-01-30 13:31:02 +01001105 return (gsi < IRQ_COMPRESSION_START ? gsi : gsi_to_irq[gsi]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 }
1107
1108 mp_ioapic_routing[ioapic].pin_programmed[idx] |= (1<<bit);
1109
Len Brown2ba7dee2008-01-30 13:31:02 +01001110 /*
1111 * For GSI >= 64, use IRQ compression
1112 */
1113 if ((gsi >= IRQ_COMPRESSION_START)
1114 && (triggering == ACPI_LEVEL_SENSITIVE)) {
Natalie Protasevichc434b7a2005-06-23 00:08:29 -07001115 /*
1116 * For PCI devices assign IRQs in order, avoiding gaps
1117 * due to unused I/O APIC pins.
1118 */
1119 int irq = gsi;
1120 if (gsi < MAX_GSI_NUM) {
Kimball Murraye0c1e9b2006-05-08 15:17:16 +02001121 /*
1122 * Retain the VIA chipset work-around (gsi > 15), but
1123 * avoid a problem where the 8254 timer (IRQ0) is setup
1124 * via an override (so it's not on pin 0 of the ioapic),
1125 * and at the same time, the pin 0 interrupt is a PCI
1126 * type. The gsi > 15 test could cause these two pins
1127 * to be shared as IRQ0, and they are not shareable.
1128 * So test for this condition, and if necessary, avoid
1129 * the pin collision.
1130 */
1131 if (gsi > 15 || (gsi == 0 && !timer_uses_ioapic_pin_0))
Natalie.Protasevich@unisys.come1afc3f2005-07-29 14:03:32 -07001132 gsi = pci_irq++;
Natalie.Protasevich@unisys.come1afc3f2005-07-29 14:03:32 -07001133 /*
1134 * Don't assign IRQ used by ACPI SCI
1135 */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001136 if (gsi == acpi_gbl_FADT.sci_interrupt)
Natalie.Protasevich@unisys.come1afc3f2005-07-29 14:03:32 -07001137 gsi = pci_irq++;
Natalie Protasevichc434b7a2005-06-23 00:08:29 -07001138 gsi_to_irq[irq] = gsi;
1139 } else {
1140 printk(KERN_ERR "GSI %u is too high\n", gsi);
1141 return gsi;
1142 }
1143 }
1144
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 io_apic_set_pci_routing(ioapic, ioapic_pin, gsi,
Len Browncb654692005-12-28 02:43:51 -05001146 triggering == ACPI_EDGE_SENSITIVE ? 0 : 1,
1147 polarity == ACPI_ACTIVE_HIGH ? 0 : 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 return gsi;
1149}
1150
Len Brown84663612005-08-24 12:09:07 -04001151#endif /* CONFIG_X86_IO_APIC */
Len Brown888ba6c2005-08-24 12:07:20 -04001152#endif /* CONFIG_ACPI */