blob: 6ea97163701fcc76e4da66ddc950f2ed012c480d [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_pci_bus [MAX_MP_BUSSES] = { [0 ... MAX_MP_BUSSES-1] = -1 };
50static int mp_current_pci_id;
51
52/* I/O APIC entries */
53struct mpc_config_ioapic mp_ioapics[MAX_IO_APICS];
54
55/* # of MP IRQ source entries */
56struct mpc_config_intsrc mp_irqs[MAX_IRQ_SOURCES];
57
58/* MP IRQ source entries */
59int mp_irq_entries;
60
61int nr_ioapics;
62
63int pic_mode;
64unsigned long mp_lapic_addr;
65
Venkatesh Pallipadi911a62d2005-09-03 15:56:31 -070066unsigned int def_to_bigsmp = 0;
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068/* Processor that is doing the boot up */
69unsigned int boot_cpu_physical_apicid = -1U;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070/* Internal processor count */
Sam Ravnborg87d7e982008-01-30 13:33:37 +010071unsigned int num_processors;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Glauber Costa7b1292e2008-03-03 14:12:41 -030073unsigned disabled_cpus __cpuinitdata;
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075/* Bitmask of physically existing CPUs */
76physid_mask_t phys_cpu_present_map;
77
Linus Torvalds1da177e2005-04-16 15:20:36 -070078/*
79 * Intel MP BIOS table parsing routines:
80 */
81
82
83/*
84 * Checksum an MP configuration block.
85 */
86
87static int __init mpf_checksum(unsigned char *mp, int len)
88{
89 int sum = 0;
90
91 while (len--)
92 sum += *mp++;
93
94 return sum & 0xFF;
95}
96
97/*
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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Vivek Goyal4a5d1072007-01-11 01:52:44 +0100106static void __cpuinit MP_processor_info (struct mpc_config_processor *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107{
Andrew Morton12992322005-09-09 13:01:21 -0700108 int ver, apicid;
109 physid_mask_t phys_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Glauber Costa7b1292e2008-03-03 14:12:41 -0300111 if (!(m->mpc_cpuflag & CPU_ENABLED)) {
112 disabled_cpus++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 return;
Glauber Costa7b1292e2008-03-03 14:12:41 -0300114 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
116 apicid = mpc_apic_id(m, translation_table[mpc_record]);
117
118 if (m->mpc_featureflag&(1<<0))
119 Dprintk(" Floating point unit present.\n");
120 if (m->mpc_featureflag&(1<<7))
121 Dprintk(" Machine Exception supported.\n");
122 if (m->mpc_featureflag&(1<<8))
123 Dprintk(" 64 bit compare & exchange supported.\n");
124 if (m->mpc_featureflag&(1<<9))
125 Dprintk(" Internal APIC present.\n");
126 if (m->mpc_featureflag&(1<<11))
127 Dprintk(" SEP present.\n");
128 if (m->mpc_featureflag&(1<<12))
129 Dprintk(" MTRR present.\n");
130 if (m->mpc_featureflag&(1<<13))
131 Dprintk(" PGE present.\n");
132 if (m->mpc_featureflag&(1<<14))
133 Dprintk(" MCA present.\n");
134 if (m->mpc_featureflag&(1<<15))
135 Dprintk(" CMOV present.\n");
136 if (m->mpc_featureflag&(1<<16))
137 Dprintk(" PAT present.\n");
138 if (m->mpc_featureflag&(1<<17))
139 Dprintk(" PSE present.\n");
140 if (m->mpc_featureflag&(1<<18))
141 Dprintk(" PSN present.\n");
142 if (m->mpc_featureflag&(1<<19))
143 Dprintk(" Cache Line Flush Instruction present.\n");
144 /* 20 Reserved */
145 if (m->mpc_featureflag&(1<<21))
146 Dprintk(" Debug Trace and EMON Store present.\n");
147 if (m->mpc_featureflag&(1<<22))
148 Dprintk(" ACPI Thermal Throttle Registers present.\n");
149 if (m->mpc_featureflag&(1<<23))
150 Dprintk(" MMX present.\n");
151 if (m->mpc_featureflag&(1<<24))
152 Dprintk(" FXSR present.\n");
153 if (m->mpc_featureflag&(1<<25))
154 Dprintk(" XMM present.\n");
155 if (m->mpc_featureflag&(1<<26))
156 Dprintk(" Willamette New Instructions present.\n");
157 if (m->mpc_featureflag&(1<<27))
158 Dprintk(" Self Snoop present.\n");
159 if (m->mpc_featureflag&(1<<28))
160 Dprintk(" HT present.\n");
161 if (m->mpc_featureflag&(1<<29))
162 Dprintk(" Thermal Monitor present.\n");
163 /* 30, 31 Reserved */
164
165
166 if (m->mpc_cpuflag & CPU_BOOTPROCESSOR) {
167 Dprintk(" Bootup CPU\n");
168 boot_cpu_physical_apicid = m->mpc_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 }
170
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 ver = m->mpc_apicver;
172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 /*
174 * Validate version
175 */
176 if (ver == 0x0) {
Andrew Morton12992322005-09-09 13:01:21 -0700177 printk(KERN_WARNING "BIOS bug, APIC version is 0 for CPU#%d! "
178 "fixing up to 0x10. (tell your hw vendor)\n",
179 m->mpc_apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 ver = 0x10;
181 }
182 apic_version[m->mpc_apicid] = ver;
Eric W. Biederman6c180d92005-10-30 14:59:47 -0800183
184 phys_cpu = apicid_to_cpu_present(apicid);
185 physids_or(phys_cpu_present_map, phys_cpu_present_map, phys_cpu);
186
187 if (num_processors >= NR_CPUS) {
188 printk(KERN_WARNING "WARNING: NR_CPUS limit of %i reached."
189 " Processor ignored.\n", NR_CPUS);
190 return;
191 }
192
193 if (num_processors >= maxcpus) {
194 printk(KERN_WARNING "WARNING: maxcpus limit of %i reached."
195 " Processor ignored.\n", maxcpus);
196 return;
197 }
198
199 cpu_set(num_processors, cpu_possible_map);
200 num_processors++;
201
Ashok Raj6cf272a2006-04-10 22:53:07 -0700202 /*
203 * Would be preferable to switch to bigsmp when CONFIG_HOTPLUG_CPU=y
204 * but we need to work other dependencies like SMP_SUSPEND etc
205 * before this can be done without some confusion.
206 * if (CPU_HOTPLUG_ENABLED || num_processors > 8)
207 * - Ashok Raj <ashok.raj@intel.com>
208 */
209 if (num_processors > 8) {
Ashok Raje72c8582006-01-06 00:12:09 -0800210 switch (boot_cpu_data.x86_vendor) {
211 case X86_VENDOR_INTEL:
212 if (!APIC_XAPIC(ver)) {
213 def_to_bigsmp = 0;
214 break;
215 }
216 /* If P4 and above fall through */
217 case X86_VENDOR_AMD:
218 def_to_bigsmp = 1;
219 }
220 }
Glauber de Oliveira Costa73bf1022008-03-19 14:25:24 -0300221 /* are we being called early in kernel startup? */
222 if (x86_cpu_to_apicid_early_ptr) {
223 u16 *bios_cpu_apicid = x86_bios_cpu_apicid_early_ptr;
224 bios_cpu_apicid[num_processors - 1] = m->mpc_apicid;
225 } else {
226 int cpu = num_processors - 1;
227 per_cpu(x86_bios_cpu_apicid, cpu) = m->mpc_apicid;
228 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229}
230
231static void __init MP_bus_info (struct mpc_config_bus *m)
232{
233 char str[7];
234
235 memcpy(str, m->mpc_bustype, 6);
236 str[6] = 0;
237
238 mpc_oem_bus_info(m, str, translation_table[mpc_record]);
239
Andi Kleen5e4edbb2006-09-26 10:52:35 +0200240#if MAX_MP_BUSSES < 256
Randy Dunlapc0ec31a2006-04-10 22:53:13 -0700241 if (m->mpc_busid >= MAX_MP_BUSSES) {
242 printk(KERN_WARNING "MP table busid value (%d) for bustype %s "
243 " is too large, max. supported is %d\n",
244 m->mpc_busid, str, MAX_MP_BUSSES - 1);
245 return;
246 }
Andi Kleen5e4edbb2006-09-26 10:52:35 +0200247#endif
Randy Dunlapc0ec31a2006-04-10 22:53:13 -0700248
Alexey Starikovskiya6333c32008-03-20 14:54:09 +0300249 set_bit(m->mpc_busid, mp_bus_not_pci);
Alexey Starikovskiy9e0a2de2008-03-20 14:54:56 +0300250 if (strncmp(str, BUSTYPE_PCI, sizeof(BUSTYPE_PCI)-1) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 mpc_oem_pci_bus(m, translation_table[mpc_record]);
Alexey Starikovskiya6333c32008-03-20 14:54:09 +0300252 clear_bit(m->mpc_busid, mp_bus_not_pci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 mp_bus_id_to_pci_bus[m->mpc_busid] = mp_current_pci_id;
254 mp_current_pci_id++;
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300255#if defined(CONFIG_EISA) || defined (CONFIG_MCA)
256 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_PCI;
Alexey Starikovskiy9e0a2de2008-03-20 14:54:56 +0300257 } else if (strncmp(str, BUSTYPE_ISA, sizeof(BUSTYPE_ISA)-1) == 0) {
258 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_ISA;
259 } else if (strncmp(str, BUSTYPE_EISA, sizeof(BUSTYPE_EISA)-1) == 0) {
260 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_EISA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 } else if (strncmp(str, BUSTYPE_MCA, sizeof(BUSTYPE_MCA)-1) == 0) {
262 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_MCA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 } else {
264 printk(KERN_WARNING "Unknown bustype %s - ignoring\n", str);
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300265#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 }
267}
268
269static void __init MP_ioapic_info (struct mpc_config_ioapic *m)
270{
271 if (!(m->mpc_flags & MPC_APIC_USABLE))
272 return;
273
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100274 printk(KERN_INFO "I/O APIC #%d Version %d at 0x%X.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 m->mpc_apicid, m->mpc_apicver, m->mpc_apicaddr);
276 if (nr_ioapics >= MAX_IO_APICS) {
277 printk(KERN_CRIT "Max # of I/O APICs (%d) exceeded (found %d).\n",
278 MAX_IO_APICS, nr_ioapics);
279 panic("Recompile kernel with bigger MAX_IO_APICS!.\n");
280 }
281 if (!m->mpc_apicaddr) {
282 printk(KERN_ERR "WARNING: bogus zero I/O APIC address"
283 " found in MP table, skipping!\n");
284 return;
285 }
286 mp_ioapics[nr_ioapics] = *m;
287 nr_ioapics++;
288}
289
290static void __init MP_intsrc_info (struct mpc_config_intsrc *m)
291{
292 mp_irqs [mp_irq_entries] = *m;
293 Dprintk("Int: type %d, pol %d, trig %d, bus %d,"
294 " IRQ %02x, APIC ID %x, APIC INT %02x\n",
295 m->mpc_irqtype, m->mpc_irqflag & 3,
296 (m->mpc_irqflag >> 2) & 3, m->mpc_srcbus,
297 m->mpc_srcbusirq, m->mpc_dstapic, m->mpc_dstirq);
298 if (++mp_irq_entries == MAX_IRQ_SOURCES)
299 panic("Max # of irq sources exceeded!!\n");
300}
301
302static void __init MP_lintsrc_info (struct mpc_config_lintsrc *m)
303{
304 Dprintk("Lint: type %d, pol %d, trig %d, bus %d,"
305 " IRQ %02x, APIC ID %x, APIC LINT %02x\n",
306 m->mpc_irqtype, m->mpc_irqflag & 3,
307 (m->mpc_irqflag >> 2) &3, m->mpc_srcbusid,
308 m->mpc_srcbusirq, m->mpc_destapic, m->mpc_destapiclint);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309}
310
311#ifdef CONFIG_X86_NUMAQ
312static void __init MP_translation_info (struct mpc_config_translation *m)
313{
314 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);
315
316 if (mpc_record >= MAX_MPC_ENTRY)
317 printk(KERN_ERR "MAX_MPC_ENTRY exceeded!\n");
318 else
319 translation_table[mpc_record] = m; /* stash this for later */
320 if (m->trans_quad < MAX_NUMNODES && !node_online(m->trans_quad))
321 node_set_online(m->trans_quad);
322}
323
324/*
325 * Read/parse the MPC oem tables
326 */
327
328static void __init smp_read_mpc_oem(struct mp_config_oemtable *oemtable, \
329 unsigned short oemsize)
330{
331 int count = sizeof (*oemtable); /* the header size */
332 unsigned char *oemptr = ((unsigned char *)oemtable)+count;
333
334 mpc_record = 0;
335 printk(KERN_INFO "Found an OEM MPC table at %8p - parsing it ... \n", oemtable);
336 if (memcmp(oemtable->oem_signature,MPC_OEM_SIGNATURE,4))
337 {
338 printk(KERN_WARNING "SMP mpc oemtable: bad signature [%c%c%c%c]!\n",
339 oemtable->oem_signature[0],
340 oemtable->oem_signature[1],
341 oemtable->oem_signature[2],
342 oemtable->oem_signature[3]);
343 return;
344 }
345 if (mpf_checksum((unsigned char *)oemtable,oemtable->oem_length))
346 {
347 printk(KERN_WARNING "SMP oem mptable: checksum error!\n");
348 return;
349 }
350 while (count < oemtable->oem_length) {
351 switch (*oemptr) {
352 case MP_TRANSLATION:
353 {
354 struct mpc_config_translation *m=
355 (struct mpc_config_translation *)oemptr;
356 MP_translation_info(m);
357 oemptr += sizeof(*m);
358 count += sizeof(*m);
359 ++mpc_record;
360 break;
361 }
362 default:
363 {
364 printk(KERN_WARNING "Unrecognised OEM table entry type! - %d\n", (int) *oemptr);
365 return;
366 }
367 }
368 }
369}
370
371static inline void mps_oem_check(struct mp_config_table *mpc, char *oem,
372 char *productid)
373{
374 if (strncmp(oem, "IBM NUMA", 8))
375 printk("Warning! May not be a NUMA-Q system!\n");
376 if (mpc->mpc_oemptr)
377 smp_read_mpc_oem((struct mp_config_oemtable *) mpc->mpc_oemptr,
378 mpc->mpc_oemsize);
379}
380#endif /* CONFIG_X86_NUMAQ */
381
382/*
383 * Read/parse the MPC
384 */
385
386static int __init smp_read_mpc(struct mp_config_table *mpc)
387{
388 char str[16];
389 char oem[10];
390 int count=sizeof(*mpc);
391 unsigned char *mpt=((unsigned char *)mpc)+count;
392
393 if (memcmp(mpc->mpc_signature,MPC_SIGNATURE,4)) {
394 printk(KERN_ERR "SMP mptable: bad signature [0x%x]!\n",
395 *(u32 *)mpc->mpc_signature);
396 return 0;
397 }
398 if (mpf_checksum((unsigned char *)mpc,mpc->mpc_length)) {
399 printk(KERN_ERR "SMP mptable: checksum error!\n");
400 return 0;
401 }
402 if (mpc->mpc_spec!=0x01 && mpc->mpc_spec!=0x04) {
403 printk(KERN_ERR "SMP mptable: bad table version (%d)!!\n",
404 mpc->mpc_spec);
405 return 0;
406 }
407 if (!mpc->mpc_lapic) {
408 printk(KERN_ERR "SMP mptable: null local APIC address!\n");
409 return 0;
410 }
411 memcpy(oem,mpc->mpc_oem,8);
412 oem[8]=0;
413 printk(KERN_INFO "OEM ID: %s ",oem);
414
415 memcpy(str,mpc->mpc_productid,12);
416 str[12]=0;
417 printk("Product ID: %s ",str);
418
419 mps_oem_check(mpc, oem, str);
420
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100421 printk("APIC at: 0x%X\n", mpc->mpc_lapic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100423 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 * Save the local APIC address (it might be non-default) -- but only
425 * if we're not using ACPI.
426 */
427 if (!acpi_lapic)
428 mp_lapic_addr = mpc->mpc_lapic;
429
430 /*
431 * Now process the configuration blocks.
432 */
433 mpc_record = 0;
434 while (count < mpc->mpc_length) {
435 switch(*mpt) {
436 case MP_PROCESSOR:
437 {
438 struct mpc_config_processor *m=
439 (struct mpc_config_processor *)mpt;
440 /* ACPI may have already provided this data */
441 if (!acpi_lapic)
442 MP_processor_info(m);
443 mpt += sizeof(*m);
444 count += sizeof(*m);
445 break;
446 }
447 case MP_BUS:
448 {
449 struct mpc_config_bus *m=
450 (struct mpc_config_bus *)mpt;
451 MP_bus_info(m);
452 mpt += sizeof(*m);
453 count += sizeof(*m);
454 break;
455 }
456 case MP_IOAPIC:
457 {
458 struct mpc_config_ioapic *m=
459 (struct mpc_config_ioapic *)mpt;
460 MP_ioapic_info(m);
461 mpt+=sizeof(*m);
462 count+=sizeof(*m);
463 break;
464 }
465 case MP_INTSRC:
466 {
467 struct mpc_config_intsrc *m=
468 (struct mpc_config_intsrc *)mpt;
469
470 MP_intsrc_info(m);
471 mpt+=sizeof(*m);
472 count+=sizeof(*m);
473 break;
474 }
475 case MP_LINTSRC:
476 {
477 struct mpc_config_lintsrc *m=
478 (struct mpc_config_lintsrc *)mpt;
479 MP_lintsrc_info(m);
480 mpt+=sizeof(*m);
481 count+=sizeof(*m);
482 break;
483 }
484 default:
485 {
486 count = mpc->mpc_length;
487 break;
488 }
489 }
490 ++mpc_record;
491 }
Ingo Molnar3c43f032007-05-02 19:27:04 +0200492 setup_apic_routing();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 if (!num_processors)
494 printk(KERN_ERR "SMP mptable: no processors registered!\n");
495 return num_processors;
496}
497
498static int __init ELCR_trigger(unsigned int irq)
499{
500 unsigned int port;
501
502 port = 0x4d0 + (irq >> 3);
503 return (inb(port) >> (irq & 7)) & 1;
504}
505
506static void __init construct_default_ioirq_mptable(int mpc_default_type)
507{
508 struct mpc_config_intsrc intsrc;
509 int i;
510 int ELCR_fallback = 0;
511
512 intsrc.mpc_type = MP_INTSRC;
513 intsrc.mpc_irqflag = 0; /* conforming */
514 intsrc.mpc_srcbus = 0;
515 intsrc.mpc_dstapic = mp_ioapics[0].mpc_apicid;
516
517 intsrc.mpc_irqtype = mp_INT;
518
519 /*
520 * If true, we have an ISA/PCI system with no IRQ entries
521 * in the MP table. To prevent the PCI interrupts from being set up
522 * incorrectly, we try to use the ELCR. The sanity check to see if
523 * there is good ELCR data is very simple - IRQ0, 1, 2 and 13 can
524 * never be level sensitive, so we simply see if the ELCR agrees.
525 * If it does, we assume it's valid.
526 */
527 if (mpc_default_type == 5) {
528 printk(KERN_INFO "ISA/PCI bus type with no IRQ information... falling back to ELCR\n");
529
530 if (ELCR_trigger(0) || ELCR_trigger(1) || ELCR_trigger(2) || ELCR_trigger(13))
531 printk(KERN_WARNING "ELCR contains invalid data... not using ELCR\n");
532 else {
533 printk(KERN_INFO "Using ELCR to identify PCI interrupts\n");
534 ELCR_fallback = 1;
535 }
536 }
537
538 for (i = 0; i < 16; i++) {
539 switch (mpc_default_type) {
540 case 2:
541 if (i == 0 || i == 13)
542 continue; /* IRQ0 & IRQ13 not connected */
543 /* fall through */
544 default:
545 if (i == 2)
546 continue; /* IRQ2 is never connected */
547 }
548
549 if (ELCR_fallback) {
550 /*
551 * If the ELCR indicates a level-sensitive interrupt, we
552 * copy that information over to the MP table in the
553 * irqflag field (level sensitive, active high polarity).
554 */
555 if (ELCR_trigger(i))
556 intsrc.mpc_irqflag = 13;
557 else
558 intsrc.mpc_irqflag = 0;
559 }
560
561 intsrc.mpc_srcbusirq = i;
562 intsrc.mpc_dstirq = i ? i : 2; /* IRQ0 to INTIN2 */
563 MP_intsrc_info(&intsrc);
564 }
565
566 intsrc.mpc_irqtype = mp_ExtINT;
567 intsrc.mpc_srcbusirq = 0;
568 intsrc.mpc_dstirq = 0; /* 8259A to INTIN0 */
569 MP_intsrc_info(&intsrc);
570}
571
572static inline void __init construct_default_ISA_mptable(int mpc_default_type)
573{
574 struct mpc_config_processor processor;
575 struct mpc_config_bus bus;
576 struct mpc_config_ioapic ioapic;
577 struct mpc_config_lintsrc lintsrc;
578 int linttypes[2] = { mp_ExtINT, mp_NMI };
579 int i;
580
581 /*
582 * local APIC has default address
583 */
584 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
585
586 /*
587 * 2 CPUs, numbered 0 & 1.
588 */
589 processor.mpc_type = MP_PROCESSOR;
590 /* Either an integrated APIC or a discrete 82489DX. */
591 processor.mpc_apicver = mpc_default_type > 4 ? 0x10 : 0x01;
592 processor.mpc_cpuflag = CPU_ENABLED;
593 processor.mpc_cpufeature = (boot_cpu_data.x86 << 8) |
594 (boot_cpu_data.x86_model << 4) |
595 boot_cpu_data.x86_mask;
596 processor.mpc_featureflag = boot_cpu_data.x86_capability[0];
597 processor.mpc_reserved[0] = 0;
598 processor.mpc_reserved[1] = 0;
599 for (i = 0; i < 2; i++) {
600 processor.mpc_apicid = i;
601 MP_processor_info(&processor);
602 }
603
604 bus.mpc_type = MP_BUS;
605 bus.mpc_busid = 0;
606 switch (mpc_default_type) {
607 default:
608 printk("???\n");
609 printk(KERN_ERR "Unknown standard configuration %d\n",
610 mpc_default_type);
611 /* fall through */
612 case 1:
613 case 5:
614 memcpy(bus.mpc_bustype, "ISA ", 6);
615 break;
616 case 2:
617 case 6:
618 case 3:
619 memcpy(bus.mpc_bustype, "EISA ", 6);
620 break;
621 case 4:
622 case 7:
623 memcpy(bus.mpc_bustype, "MCA ", 6);
624 }
625 MP_bus_info(&bus);
626 if (mpc_default_type > 4) {
627 bus.mpc_busid = 1;
628 memcpy(bus.mpc_bustype, "PCI ", 6);
629 MP_bus_info(&bus);
630 }
631
632 ioapic.mpc_type = MP_IOAPIC;
633 ioapic.mpc_apicid = 2;
634 ioapic.mpc_apicver = mpc_default_type > 4 ? 0x10 : 0x01;
635 ioapic.mpc_flags = MPC_APIC_USABLE;
636 ioapic.mpc_apicaddr = 0xFEC00000;
637 MP_ioapic_info(&ioapic);
638
639 /*
640 * We set up most of the low 16 IO-APIC pins according to MPS rules.
641 */
642 construct_default_ioirq_mptable(mpc_default_type);
643
644 lintsrc.mpc_type = MP_LINTSRC;
645 lintsrc.mpc_irqflag = 0; /* conforming */
646 lintsrc.mpc_srcbusid = 0;
647 lintsrc.mpc_srcbusirq = 0;
648 lintsrc.mpc_destapic = MP_APIC_ALL;
649 for (i = 0; i < 2; i++) {
650 lintsrc.mpc_irqtype = linttypes[i];
651 lintsrc.mpc_destapiclint = i;
652 MP_lintsrc_info(&lintsrc);
653 }
654}
655
656static struct intel_mp_floating *mpf_found;
657
658/*
659 * Scan the memory blocks for an SMP configuration block.
660 */
661void __init get_smp_config (void)
662{
663 struct intel_mp_floating *mpf = mpf_found;
664
665 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 * ACPI supports both logical (e.g. Hyper-Threading) and physical
667 * processors, where MPS only supports physical.
668 */
669 if (acpi_lapic && acpi_ioapic) {
670 printk(KERN_INFO "Using ACPI (MADT) for SMP configuration information\n");
671 return;
672 }
673 else if (acpi_lapic)
674 printk(KERN_INFO "Using ACPI for processor (LAPIC) configuration information\n");
675
676 printk(KERN_INFO "Intel MultiProcessor Specification v1.%d\n", mpf->mpf_specification);
677 if (mpf->mpf_feature2 & (1<<7)) {
678 printk(KERN_INFO " IMCR and PIC compatibility mode.\n");
679 pic_mode = 1;
680 } else {
681 printk(KERN_INFO " Virtual Wire compatibility mode.\n");
682 pic_mode = 0;
683 }
684
685 /*
686 * Now see if we need to read further.
687 */
688 if (mpf->mpf_feature1 != 0) {
689
690 printk(KERN_INFO "Default MP configuration #%d\n", mpf->mpf_feature1);
691 construct_default_ISA_mptable(mpf->mpf_feature1);
692
693 } else if (mpf->mpf_physptr) {
694
695 /*
696 * Read the physical hardware table. Anything here will
697 * override the defaults.
698 */
Daniel Yeisley7d4c8e52006-02-20 18:27:54 -0800699 if (!smp_read_mpc(phys_to_virt(mpf->mpf_physptr))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 smp_found_config = 0;
701 printk(KERN_ERR "BIOS bug, MP table errors detected!...\n");
702 printk(KERN_ERR "... disabling SMP support. (tell your hw vendor)\n");
703 return;
704 }
705 /*
706 * If there are no explicit MP IRQ entries, then we are
707 * broken. We set up most of the low 16 IO-APIC pins to
708 * ISA defaults and hope it will work.
709 */
710 if (!mp_irq_entries) {
711 struct mpc_config_bus bus;
712
713 printk(KERN_ERR "BIOS bug, no explicit IRQ entries, using default mptable. (tell your hw vendor)\n");
714
715 bus.mpc_type = MP_BUS;
716 bus.mpc_busid = 0;
717 memcpy(bus.mpc_bustype, "ISA ", 6);
718 MP_bus_info(&bus);
719
720 construct_default_ioirq_mptable(0);
721 }
722
723 } else
724 BUG();
725
726 printk(KERN_INFO "Processors: %d\n", num_processors);
727 /*
728 * Only use the first configuration found.
729 */
730}
731
732static int __init smp_scan_config (unsigned long base, unsigned long length)
733{
734 unsigned long *bp = phys_to_virt(base);
735 struct intel_mp_floating *mpf;
736
Ingo Molnare91a3b42008-01-30 13:33:08 +0100737 printk(KERN_INFO "Scan SMP from %p for %ld bytes.\n", bp,length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 if (sizeof(*mpf) != 16)
739 printk("Error: MPF size\n");
740
741 while (length > 0) {
742 mpf = (struct intel_mp_floating *)bp;
743 if ((*bp == SMP_MAGIC_IDENT) &&
744 (mpf->mpf_length == 1) &&
745 !mpf_checksum((unsigned char *)bp, 16) &&
746 ((mpf->mpf_specification == 1)
747 || (mpf->mpf_specification == 4)) ) {
748
749 smp_found_config = 1;
Ingo Molnare91a3b42008-01-30 13:33:08 +0100750 printk(KERN_INFO "found SMP MP-table at [%p] %08lx\n",
751 mpf, virt_to_phys(mpf));
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800752 reserve_bootmem(virt_to_phys(mpf), PAGE_SIZE,
753 BOOTMEM_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 if (mpf->mpf_physptr) {
755 /*
756 * We cannot access to MPC table to compute
757 * table size yet, as only few megabytes from
758 * the bottom is mapped now.
759 * PC-9800's MPC table places on the very last
760 * of physical memory; so that simply reserving
761 * PAGE_SIZE from mpg->mpf_physptr yields BUG()
762 * in reserve_bootmem.
763 */
764 unsigned long size = PAGE_SIZE;
765 unsigned long end = max_low_pfn * PAGE_SIZE;
766 if (mpf->mpf_physptr + size > end)
767 size = end - mpf->mpf_physptr;
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800768 reserve_bootmem(mpf->mpf_physptr, size,
769 BOOTMEM_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 }
771
772 mpf_found = mpf;
773 return 1;
774 }
775 bp += 4;
776 length -= 16;
777 }
778 return 0;
779}
780
781void __init find_smp_config (void)
782{
783 unsigned int address;
784
785 /*
786 * FIXME: Linux assumes you have 640K of base ram..
787 * this continues the error...
788 *
789 * 1) Scan the bottom 1K for a signature
790 * 2) Scan the top 1K of base RAM
791 * 3) Scan the 64K of bios
792 */
793 if (smp_scan_config(0x0,0x400) ||
794 smp_scan_config(639*0x400,0x400) ||
795 smp_scan_config(0xF0000,0x10000))
796 return;
797 /*
798 * If it is an SMP machine we should know now, unless the
799 * configuration is in an EISA/MCA bus machine with an
800 * extended bios data area.
801 *
802 * there is a real-mode segmented pointer pointing to the
803 * 4K EBDA area at 0x40E, calculate and scan it here.
804 *
805 * NOTE! There are Linux loaders that will corrupt the EBDA
806 * area, and as such this kind of SMP config may be less
807 * trustworthy, simply because the SMP table may have been
808 * stomped on during early boot. These loaders are buggy and
809 * should be fixed.
810 *
811 * MP1.4 SPEC states to only scan first 1K of 4K EBDA.
812 */
813
814 address = get_bios_ebda();
815 if (address)
816 smp_scan_config(address, 0x400);
817}
818
Natalie.Protasevich@unisys.come5428ed2006-03-23 02:59:36 -0800819int es7000_plat;
820
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821/* --------------------------------------------------------------------------
822 ACPI-based MP Configuration
823 -------------------------------------------------------------------------- */
824
Len Brown888ba6c2005-08-24 12:07:20 -0400825#ifdef CONFIG_ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
Andi Kleen19f03ff2006-09-26 10:52:30 +0200827void __init mp_register_lapic_address(u64 address)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828{
829 mp_lapic_addr = (unsigned long) address;
830
831 set_fixmap_nocache(FIX_APIC_BASE, mp_lapic_addr);
832
833 if (boot_cpu_physical_apicid == -1U)
834 boot_cpu_physical_apicid = GET_APIC_ID(apic_read(APIC_ID));
835
836 Dprintk("Boot CPU = %d\n", boot_cpu_physical_apicid);
837}
838
Vivek Goyal4a5d1072007-01-11 01:52:44 +0100839void __cpuinit mp_register_lapic (u8 id, u8 enabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840{
841 struct mpc_config_processor processor;
Andi Kleen19f03ff2006-09-26 10:52:30 +0200842 int boot_cpu = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
844 if (MAX_APICS - id <= 0) {
845 printk(KERN_WARNING "Processor #%d invalid (max %d)\n",
846 id, MAX_APICS);
847 return;
848 }
849
850 if (id == boot_cpu_physical_apicid)
851 boot_cpu = 1;
852
853 processor.mpc_type = MP_PROCESSOR;
854 processor.mpc_apicid = id;
855 processor.mpc_apicver = GET_APIC_VERSION(apic_read(APIC_LVR));
856 processor.mpc_cpuflag = (enabled ? CPU_ENABLED : 0);
857 processor.mpc_cpuflag |= (boot_cpu ? CPU_BOOTPROCESSOR : 0);
858 processor.mpc_cpufeature = (boot_cpu_data.x86 << 8) |
859 (boot_cpu_data.x86_model << 4) | boot_cpu_data.x86_mask;
860 processor.mpc_featureflag = boot_cpu_data.x86_capability[0];
861 processor.mpc_reserved[0] = 0;
862 processor.mpc_reserved[1] = 0;
863
864 MP_processor_info(&processor);
865}
866
Len Brown84663612005-08-24 12:09:07 -0400867#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
869#define MP_ISA_BUS 0
870#define MP_MAX_IOAPIC_PIN 127
871
872static struct mp_ioapic_routing {
873 int apic_id;
874 int gsi_base;
875 int gsi_end;
876 u32 pin_programmed[4];
877} mp_ioapic_routing[MAX_IO_APICS];
878
Andi Kleen19f03ff2006-09-26 10:52:30 +0200879static int mp_find_ioapic (int gsi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880{
Andi Kleen19f03ff2006-09-26 10:52:30 +0200881 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
883 /* Find the IOAPIC that manages this GSI. */
884 for (i = 0; i < nr_ioapics; i++) {
885 if ((gsi >= mp_ioapic_routing[i].gsi_base)
886 && (gsi <= mp_ioapic_routing[i].gsi_end))
887 return i;
888 }
889
890 printk(KERN_ERR "ERROR: Unable to locate IOAPIC for GSI %d\n", gsi);
891
892 return -1;
893}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
Andi Kleen19f03ff2006-09-26 10:52:30 +0200895void __init mp_register_ioapic(u8 id, u32 address, u32 gsi_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896{
Andi Kleen19f03ff2006-09-26 10:52:30 +0200897 int idx = 0;
898 int tmpid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
900 if (nr_ioapics >= MAX_IO_APICS) {
901 printk(KERN_ERR "ERROR: Max # of I/O APICs (%d) exceeded "
902 "(found %d)\n", MAX_IO_APICS, nr_ioapics);
903 panic("Recompile kernel with bigger MAX_IO_APICS!\n");
904 }
905 if (!address) {
906 printk(KERN_ERR "WARNING: Bogus (zero) I/O APIC address"
907 " found in MADT table, skipping!\n");
908 return;
909 }
910
911 idx = nr_ioapics++;
912
913 mp_ioapics[idx].mpc_type = MP_IOAPIC;
914 mp_ioapics[idx].mpc_flags = MPC_APIC_USABLE;
915 mp_ioapics[idx].mpc_apicaddr = address;
916
917 set_fixmap_nocache(FIX_IO_APIC_BASE_0 + idx, address);
Shaohua Li7c5c1e42006-03-23 02:59:53 -0800918 if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL)
919 && !APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
Andreas Deresch6070f9e2006-02-26 04:18:34 +0100920 tmpid = io_apic_get_unique_id(idx, id);
Natalie Protasevichca05fea2005-06-23 00:08:22 -0700921 else
Andreas Deresch6070f9e2006-02-26 04:18:34 +0100922 tmpid = id;
923 if (tmpid == -1) {
924 nr_ioapics--;
925 return;
926 }
927 mp_ioapics[idx].mpc_apicid = tmpid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 mp_ioapics[idx].mpc_apicver = io_apic_get_version(idx);
929
930 /*
931 * Build basic GSI lookup table to facilitate gsi->io_apic lookups
932 * and to prevent reprogramming of IOAPIC pins (PCI GSIs).
933 */
934 mp_ioapic_routing[idx].apic_id = mp_ioapics[idx].mpc_apicid;
935 mp_ioapic_routing[idx].gsi_base = gsi_base;
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100936 mp_ioapic_routing[idx].gsi_end = gsi_base +
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 io_apic_get_redir_entries(idx);
938
Thomas Gleixner64883ab2008-01-30 13:30:35 +0100939 printk("IOAPIC[%d]: apic_id %d, version %d, address 0x%x, "
940 "GSI %d-%d\n", idx, mp_ioapics[idx].mpc_apicid,
941 mp_ioapics[idx].mpc_apicver, mp_ioapics[idx].mpc_apicaddr,
942 mp_ioapic_routing[idx].gsi_base,
943 mp_ioapic_routing[idx].gsi_end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944}
945
Andi Kleen19f03ff2006-09-26 10:52:30 +0200946void __init
947mp_override_legacy_irq(u8 bus_irq, u8 polarity, u8 trigger, u32 gsi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948{
949 struct mpc_config_intsrc intsrc;
950 int ioapic = -1;
951 int pin = -1;
952
953 /*
954 * Convert 'gsi' to 'ioapic.pin'.
955 */
956 ioapic = mp_find_ioapic(gsi);
957 if (ioapic < 0)
958 return;
959 pin = gsi - mp_ioapic_routing[ioapic].gsi_base;
960
961 /*
962 * TBD: This check is for faulty timer entries, where the override
963 * erroneously sets the trigger to level, resulting in a HUGE
964 * increase of timer interrupts!
965 */
966 if ((bus_irq == 0) && (trigger == 3))
967 trigger = 1;
968
969 intsrc.mpc_type = MP_INTSRC;
970 intsrc.mpc_irqtype = mp_INT;
971 intsrc.mpc_irqflag = (trigger << 2) | polarity;
972 intsrc.mpc_srcbus = MP_ISA_BUS;
973 intsrc.mpc_srcbusirq = bus_irq; /* IRQ */
974 intsrc.mpc_dstapic = mp_ioapics[ioapic].mpc_apicid; /* APIC ID */
975 intsrc.mpc_dstirq = pin; /* INTIN# */
976
977 Dprintk("Int: type %d, pol %d, trig %d, bus %d, irq %d, %d-%d\n",
978 intsrc.mpc_irqtype, intsrc.mpc_irqflag & 3,
979 (intsrc.mpc_irqflag >> 2) & 3, intsrc.mpc_srcbus,
980 intsrc.mpc_srcbusirq, intsrc.mpc_dstapic, intsrc.mpc_dstirq);
981
982 mp_irqs[mp_irq_entries] = intsrc;
983 if (++mp_irq_entries == MAX_IRQ_SOURCES)
984 panic("Max # of irq sources exceeded!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985}
986
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987void __init mp_config_acpi_legacy_irqs (void)
988{
989 struct mpc_config_intsrc intsrc;
Andi Kleen19f03ff2006-09-26 10:52:30 +0200990 int i = 0;
991 int ioapic = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300993#if defined (CONFIG_MCA) || defined (CONFIG_EISA)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 /*
995 * Fabricate the legacy ISA bus (bus #31).
996 */
997 mp_bus_id_to_type[MP_ISA_BUS] = MP_BUS_ISA;
Alexey Starikovskiyc0a282c2008-03-20 14:55:02 +0300998#endif
Alexey Starikovskiya6333c32008-03-20 14:54:09 +0300999 set_bit(MP_ISA_BUS, mp_bus_not_pci);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 Dprintk("Bus #%d is ISA\n", MP_ISA_BUS);
1001
1002 /*
1003 * Older generations of ES7000 have no legacy identity mappings
1004 */
1005 if (es7000_plat == 1)
1006 return;
1007
1008 /*
1009 * Locate the IOAPIC that manages the ISA IRQs (0-15).
1010 */
1011 ioapic = mp_find_ioapic(0);
1012 if (ioapic < 0)
1013 return;
1014
1015 intsrc.mpc_type = MP_INTSRC;
1016 intsrc.mpc_irqflag = 0; /* Conforming */
1017 intsrc.mpc_srcbus = MP_ISA_BUS;
1018 intsrc.mpc_dstapic = mp_ioapics[ioapic].mpc_apicid;
1019
1020 /*
1021 * Use the default configuration for the IRQs 0-15. Unless
Simon Arlott27b46d72007-10-20 01:13:56 +02001022 * overridden by (MADT) interrupt source override entries.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 */
1024 for (i = 0; i < 16; i++) {
1025 int idx;
1026
1027 for (idx = 0; idx < mp_irq_entries; idx++) {
1028 struct mpc_config_intsrc *irq = mp_irqs + idx;
1029
1030 /* Do we already have a mapping for this ISA IRQ? */
1031 if (irq->mpc_srcbus == MP_ISA_BUS && irq->mpc_srcbusirq == i)
1032 break;
1033
1034 /* Do we already have a mapping for this IOAPIC pin */
1035 if ((irq->mpc_dstapic == intsrc.mpc_dstapic) &&
1036 (irq->mpc_dstirq == i))
1037 break;
1038 }
1039
1040 if (idx != mp_irq_entries) {
1041 printk(KERN_DEBUG "ACPI: IRQ%d used by override.\n", i);
1042 continue; /* IRQ already used */
1043 }
1044
1045 intsrc.mpc_irqtype = mp_INT;
1046 intsrc.mpc_srcbusirq = i; /* Identity mapped */
1047 intsrc.mpc_dstirq = i;
1048
1049 Dprintk("Int: type %d, pol %d, trig %d, bus %d, irq %d, "
1050 "%d-%d\n", intsrc.mpc_irqtype, intsrc.mpc_irqflag & 3,
1051 (intsrc.mpc_irqflag >> 2) & 3, intsrc.mpc_srcbus,
1052 intsrc.mpc_srcbusirq, intsrc.mpc_dstapic,
1053 intsrc.mpc_dstirq);
1054
1055 mp_irqs[mp_irq_entries] = intsrc;
1056 if (++mp_irq_entries == MAX_IRQ_SOURCES)
1057 panic("Max # of irq sources exceeded!\n");
1058 }
1059}
1060
Natalie Protasevichc434b7a2005-06-23 00:08:29 -07001061#define MAX_GSI_NUM 4096
Len Brown2ba7dee2008-01-30 13:31:02 +01001062#define IRQ_COMPRESSION_START 64
Natalie Protasevichc434b7a2005-06-23 00:08:29 -07001063
Andi Kleen19f03ff2006-09-26 10:52:30 +02001064int mp_register_gsi(u32 gsi, int triggering, int polarity)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065{
Andi Kleen19f03ff2006-09-26 10:52:30 +02001066 int ioapic = -1;
1067 int ioapic_pin = 0;
1068 int idx, bit = 0;
Len Brown2ba7dee2008-01-30 13:31:02 +01001069 static int pci_irq = IRQ_COMPRESSION_START;
Natalie Protasevichc434b7a2005-06-23 00:08:29 -07001070 /*
Joe Perchesab4a5742008-01-30 13:31:42 +01001071 * Mapping between Global System Interrupts, which
Natalie Protasevichc434b7a2005-06-23 00:08:29 -07001072 * represent all possible interrupts, and IRQs
1073 * assigned to actual devices.
1074 */
1075 static int gsi_to_irq[MAX_GSI_NUM];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 /* Don't set up the ACPI SCI because it's already set up */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001078 if (acpi_gbl_FADT.sci_interrupt == gsi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 return gsi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
1081 ioapic = mp_find_ioapic(gsi);
1082 if (ioapic < 0) {
1083 printk(KERN_WARNING "No IOAPIC for GSI %u\n", gsi);
1084 return gsi;
1085 }
1086
1087 ioapic_pin = gsi - mp_ioapic_routing[ioapic].gsi_base;
1088
1089 if (ioapic_renumber_irq)
1090 gsi = ioapic_renumber_irq(ioapic, gsi);
1091
1092 /*
1093 * Avoid pin reprogramming. PRTs typically include entries
1094 * with redundant pin->gsi mappings (but unique PCI devices);
1095 * we only program the IOAPIC on the first.
1096 */
1097 bit = ioapic_pin % 32;
1098 idx = (ioapic_pin < 32) ? 0 : (ioapic_pin / 32);
1099 if (idx > 3) {
1100 printk(KERN_ERR "Invalid reference to IOAPIC pin "
1101 "%d-%d\n", mp_ioapic_routing[ioapic].apic_id,
1102 ioapic_pin);
1103 return gsi;
1104 }
1105 if ((1<<bit) & mp_ioapic_routing[ioapic].pin_programmed[idx]) {
1106 Dprintk(KERN_DEBUG "Pin %d-%d already programmed\n",
1107 mp_ioapic_routing[ioapic].apic_id, ioapic_pin);
Len Brown2ba7dee2008-01-30 13:31:02 +01001108 return (gsi < IRQ_COMPRESSION_START ? gsi : gsi_to_irq[gsi]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 }
1110
1111 mp_ioapic_routing[ioapic].pin_programmed[idx] |= (1<<bit);
1112
Len Brown2ba7dee2008-01-30 13:31:02 +01001113 /*
1114 * For GSI >= 64, use IRQ compression
1115 */
1116 if ((gsi >= IRQ_COMPRESSION_START)
1117 && (triggering == ACPI_LEVEL_SENSITIVE)) {
Natalie Protasevichc434b7a2005-06-23 00:08:29 -07001118 /*
1119 * For PCI devices assign IRQs in order, avoiding gaps
1120 * due to unused I/O APIC pins.
1121 */
1122 int irq = gsi;
1123 if (gsi < MAX_GSI_NUM) {
Kimball Murraye0c1e9b2006-05-08 15:17:16 +02001124 /*
1125 * Retain the VIA chipset work-around (gsi > 15), but
1126 * avoid a problem where the 8254 timer (IRQ0) is setup
1127 * via an override (so it's not on pin 0 of the ioapic),
1128 * and at the same time, the pin 0 interrupt is a PCI
1129 * type. The gsi > 15 test could cause these two pins
1130 * to be shared as IRQ0, and they are not shareable.
1131 * So test for this condition, and if necessary, avoid
1132 * the pin collision.
1133 */
1134 if (gsi > 15 || (gsi == 0 && !timer_uses_ioapic_pin_0))
Natalie.Protasevich@unisys.come1afc3f2005-07-29 14:03:32 -07001135 gsi = pci_irq++;
Natalie.Protasevich@unisys.come1afc3f2005-07-29 14:03:32 -07001136 /*
1137 * Don't assign IRQ used by ACPI SCI
1138 */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001139 if (gsi == acpi_gbl_FADT.sci_interrupt)
Natalie.Protasevich@unisys.come1afc3f2005-07-29 14:03:32 -07001140 gsi = pci_irq++;
Natalie Protasevichc434b7a2005-06-23 00:08:29 -07001141 gsi_to_irq[irq] = gsi;
1142 } else {
1143 printk(KERN_ERR "GSI %u is too high\n", gsi);
1144 return gsi;
1145 }
1146 }
1147
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 io_apic_set_pci_routing(ioapic, ioapic_pin, gsi,
Len Browncb654692005-12-28 02:43:51 -05001149 triggering == ACPI_EDGE_SENSITIVE ? 0 : 1,
1150 polarity == ACPI_ACTIVE_HIGH ? 0 : 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 return gsi;
1152}
1153
Len Brown84663612005-08-24 12:09:07 -04001154#endif /* CONFIG_X86_IO_APIC */
Len Brown888ba6c2005-08-24 12:07:20 -04001155#endif /* CONFIG_ACPI */