allow coexistance of N build and AC build.
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / arch / x86_64 / kernel / mpparse.c
blob61ae57eb9e4ca4a526bcb8e82db6cfa373b75022
1 /*
2 * Intel Multiprocessor Specification 1.1 and 1.4
3 * compliant MP-table parsing routines.
5 * (c) 1995 Alan Cox, Building #3 <alan@redhat.com>
6 * (c) 1998, 1999, 2000 Ingo Molnar <mingo@redhat.com>
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
16 #include <linux/mm.h>
17 #include <linux/init.h>
18 #include <linux/delay.h>
19 #include <linux/bootmem.h>
20 #include <linux/kernel_stat.h>
21 #include <linux/mc146818rtc.h>
22 #include <linux/acpi.h>
23 #include <linux/module.h>
25 #include <asm/smp.h>
26 #include <asm/mtrr.h>
27 #include <asm/mpspec.h>
28 #include <asm/pgalloc.h>
29 #include <asm/io_apic.h>
30 #include <asm/proto.h>
31 #include <asm/acpi.h>
33 /* Have we found an MP table */
34 int smp_found_config;
35 unsigned int __initdata maxcpus = NR_CPUS;
38 * Various Linux-internal data structures created from the
39 * MP-table.
41 DECLARE_BITMAP(mp_bus_not_pci, MAX_MP_BUSSES);
42 int mp_bus_id_to_pci_bus [MAX_MP_BUSSES] = { [0 ... MAX_MP_BUSSES-1] = -1 };
44 static int mp_current_pci_id = 0;
45 /* I/O APIC entries */
46 struct mpc_config_ioapic mp_ioapics[MAX_IO_APICS];
48 /* # of MP IRQ source entries */
49 struct mpc_config_intsrc mp_irqs[MAX_IRQ_SOURCES];
51 /* MP IRQ source entries */
52 int mp_irq_entries;
54 int nr_ioapics;
55 unsigned long mp_lapic_addr = 0;
59 /* Processor that is doing the boot up */
60 unsigned int boot_cpu_id = -1U;
61 /* Internal processor count */
62 unsigned int num_processors __cpuinitdata = 0;
64 unsigned disabled_cpus __cpuinitdata;
66 /* Bitmask of physically existing CPUs */
67 physid_mask_t phys_cpu_present_map = PHYSID_MASK_NONE;
69 u8 bios_cpu_apicid[NR_CPUS] = { [0 ... NR_CPUS-1] = BAD_APICID };
73 * Intel MP BIOS table parsing routines:
77 * Checksum an MP configuration block.
80 static int __init mpf_checksum(unsigned char *mp, int len)
82 int sum = 0;
84 while (len--)
85 sum += *mp++;
87 return sum & 0xFF;
90 static void __cpuinit MP_processor_info (struct mpc_config_processor *m)
92 int cpu;
93 cpumask_t tmp_map;
94 char *bootup_cpu = "";
96 if (!(m->mpc_cpuflag & CPU_ENABLED)) {
97 disabled_cpus++;
98 return;
100 if (m->mpc_cpuflag & CPU_BOOTPROCESSOR) {
101 bootup_cpu = " (Bootup-CPU)";
102 boot_cpu_id = m->mpc_apicid;
105 printk(KERN_INFO "Processor #%d%s\n", m->mpc_apicid, bootup_cpu);
107 if (num_processors >= NR_CPUS) {
108 printk(KERN_WARNING "WARNING: NR_CPUS limit of %i reached."
109 " Processor ignored.\n", NR_CPUS);
110 return;
113 num_processors++;
114 cpus_complement(tmp_map, cpu_present_map);
115 cpu = first_cpu(tmp_map);
117 physid_set(m->mpc_apicid, phys_cpu_present_map);
118 if (m->mpc_cpuflag & CPU_BOOTPROCESSOR) {
120 * bios_cpu_apicid is required to have processors listed
121 * in same order as logical cpu numbers. Hence the first
122 * entry is BSP, and so on.
124 cpu = 0;
126 bios_cpu_apicid[cpu] = m->mpc_apicid;
127 x86_cpu_to_apicid[cpu] = m->mpc_apicid;
129 cpu_set(cpu, cpu_possible_map);
130 cpu_set(cpu, cpu_present_map);
133 static void __init MP_bus_info (struct mpc_config_bus *m)
135 char str[7];
137 memcpy(str, m->mpc_bustype, 6);
138 str[6] = 0;
139 Dprintk("Bus #%d is %s\n", m->mpc_busid, str);
141 if (strncmp(str, "ISA", 3) == 0) {
142 set_bit(m->mpc_busid, mp_bus_not_pci);
143 } else if (strncmp(str, "PCI", 3) == 0) {
144 clear_bit(m->mpc_busid, mp_bus_not_pci);
145 mp_bus_id_to_pci_bus[m->mpc_busid] = mp_current_pci_id;
146 mp_current_pci_id++;
147 } else {
148 printk(KERN_ERR "Unknown bustype %s\n", str);
152 static int bad_ioapic(unsigned long address)
154 if (nr_ioapics >= MAX_IO_APICS) {
155 printk(KERN_ERR "ERROR: Max # of I/O APICs (%d) exceeded "
156 "(found %d)\n", MAX_IO_APICS, nr_ioapics);
157 panic("Recompile kernel with bigger MAX_IO_APICS!\n");
159 if (!address) {
160 printk(KERN_ERR "WARNING: Bogus (zero) I/O APIC address"
161 " found in table, skipping!\n");
162 return 1;
164 return 0;
167 static void __init MP_ioapic_info (struct mpc_config_ioapic *m)
169 if (!(m->mpc_flags & MPC_APIC_USABLE))
170 return;
172 printk("I/O APIC #%d at 0x%X.\n",
173 m->mpc_apicid, m->mpc_apicaddr);
175 if (bad_ioapic(m->mpc_apicaddr))
176 return;
178 mp_ioapics[nr_ioapics] = *m;
179 nr_ioapics++;
182 static void __init MP_intsrc_info (struct mpc_config_intsrc *m)
184 mp_irqs [mp_irq_entries] = *m;
185 Dprintk("Int: type %d, pol %d, trig %d, bus %d,"
186 " IRQ %02x, APIC ID %x, APIC INT %02x\n",
187 m->mpc_irqtype, m->mpc_irqflag & 3,
188 (m->mpc_irqflag >> 2) & 3, m->mpc_srcbus,
189 m->mpc_srcbusirq, m->mpc_dstapic, m->mpc_dstirq);
190 if (++mp_irq_entries >= MAX_IRQ_SOURCES)
191 panic("Max # of irq sources exceeded!!\n");
194 static void __init MP_lintsrc_info (struct mpc_config_lintsrc *m)
196 Dprintk("Lint: type %d, pol %d, trig %d, bus %d,"
197 " IRQ %02x, APIC ID %x, APIC LINT %02x\n",
198 m->mpc_irqtype, m->mpc_irqflag & 3,
199 (m->mpc_irqflag >> 2) &3, m->mpc_srcbusid,
200 m->mpc_srcbusirq, m->mpc_destapic, m->mpc_destapiclint);
204 * Read/parse the MPC
207 static int __init smp_read_mpc(struct mp_config_table *mpc)
209 char str[16];
210 int count=sizeof(*mpc);
211 unsigned char *mpt=((unsigned char *)mpc)+count;
213 if (memcmp(mpc->mpc_signature,MPC_SIGNATURE,4)) {
214 printk("MPTABLE: bad signature [%c%c%c%c]!\n",
215 mpc->mpc_signature[0],
216 mpc->mpc_signature[1],
217 mpc->mpc_signature[2],
218 mpc->mpc_signature[3]);
219 return 0;
221 if (mpf_checksum((unsigned char *)mpc,mpc->mpc_length)) {
222 printk("MPTABLE: checksum error!\n");
223 return 0;
225 if (mpc->mpc_spec!=0x01 && mpc->mpc_spec!=0x04) {
226 printk(KERN_ERR "MPTABLE: bad table version (%d)!!\n",
227 mpc->mpc_spec);
228 return 0;
230 if (!mpc->mpc_lapic) {
231 printk(KERN_ERR "MPTABLE: null local APIC address!\n");
232 return 0;
234 memcpy(str,mpc->mpc_oem,8);
235 str[8] = 0;
236 printk(KERN_INFO "MPTABLE: OEM ID: %s ",str);
238 memcpy(str,mpc->mpc_productid,12);
239 str[12] = 0;
240 printk("MPTABLE: Product ID: %s ",str);
242 printk("MPTABLE: APIC at: 0x%X\n",mpc->mpc_lapic);
244 /* save the local APIC address, it might be non-default */
245 if (!acpi_lapic)
246 mp_lapic_addr = mpc->mpc_lapic;
249 * Now process the configuration blocks.
251 while (count < mpc->mpc_length) {
252 switch(*mpt) {
253 case MP_PROCESSOR:
255 struct mpc_config_processor *m=
256 (struct mpc_config_processor *)mpt;
257 if (!acpi_lapic)
258 MP_processor_info(m);
259 mpt += sizeof(*m);
260 count += sizeof(*m);
261 break;
263 case MP_BUS:
265 struct mpc_config_bus *m=
266 (struct mpc_config_bus *)mpt;
267 MP_bus_info(m);
268 mpt += sizeof(*m);
269 count += sizeof(*m);
270 break;
272 case MP_IOAPIC:
274 struct mpc_config_ioapic *m=
275 (struct mpc_config_ioapic *)mpt;
276 MP_ioapic_info(m);
277 mpt += sizeof(*m);
278 count += sizeof(*m);
279 break;
281 case MP_INTSRC:
283 struct mpc_config_intsrc *m=
284 (struct mpc_config_intsrc *)mpt;
286 MP_intsrc_info(m);
287 mpt += sizeof(*m);
288 count += sizeof(*m);
289 break;
291 case MP_LINTSRC:
293 struct mpc_config_lintsrc *m=
294 (struct mpc_config_lintsrc *)mpt;
295 MP_lintsrc_info(m);
296 mpt += sizeof(*m);
297 count += sizeof(*m);
298 break;
302 setup_apic_routing();
303 if (!num_processors)
304 printk(KERN_ERR "MPTABLE: no processors registered!\n");
305 return num_processors;
308 static int __init ELCR_trigger(unsigned int irq)
310 unsigned int port;
312 port = 0x4d0 + (irq >> 3);
313 return (inb(port) >> (irq & 7)) & 1;
316 static void __init construct_default_ioirq_mptable(int mpc_default_type)
318 struct mpc_config_intsrc intsrc;
319 int i;
320 int ELCR_fallback = 0;
322 intsrc.mpc_type = MP_INTSRC;
323 intsrc.mpc_irqflag = 0; /* conforming */
324 intsrc.mpc_srcbus = 0;
325 intsrc.mpc_dstapic = mp_ioapics[0].mpc_apicid;
327 intsrc.mpc_irqtype = mp_INT;
330 * If true, we have an ISA/PCI system with no IRQ entries
331 * in the MP table. To prevent the PCI interrupts from being set up
332 * incorrectly, we try to use the ELCR. The sanity check to see if
333 * there is good ELCR data is very simple - IRQ0, 1, 2 and 13 can
334 * never be level sensitive, so we simply see if the ELCR agrees.
335 * If it does, we assume it's valid.
337 if (mpc_default_type == 5) {
338 printk(KERN_INFO "ISA/PCI bus type with no IRQ information... falling back to ELCR\n");
340 if (ELCR_trigger(0) || ELCR_trigger(1) || ELCR_trigger(2) || ELCR_trigger(13))
341 printk(KERN_ERR "ELCR contains invalid data... not using ELCR\n");
342 else {
343 printk(KERN_INFO "Using ELCR to identify PCI interrupts\n");
344 ELCR_fallback = 1;
348 for (i = 0; i < 16; i++) {
349 switch (mpc_default_type) {
350 case 2:
351 if (i == 0 || i == 13)
352 continue; /* IRQ0 & IRQ13 not connected */
353 /* fall through */
354 default:
355 if (i == 2)
356 continue; /* IRQ2 is never connected */
359 if (ELCR_fallback) {
361 * If the ELCR indicates a level-sensitive interrupt, we
362 * copy that information over to the MP table in the
363 * irqflag field (level sensitive, active high polarity).
365 if (ELCR_trigger(i))
366 intsrc.mpc_irqflag = 13;
367 else
368 intsrc.mpc_irqflag = 0;
371 intsrc.mpc_srcbusirq = i;
372 intsrc.mpc_dstirq = i ? i : 2; /* IRQ0 to INTIN2 */
373 MP_intsrc_info(&intsrc);
376 intsrc.mpc_irqtype = mp_ExtINT;
377 intsrc.mpc_srcbusirq = 0;
378 intsrc.mpc_dstirq = 0; /* 8259A to INTIN0 */
379 MP_intsrc_info(&intsrc);
382 static inline void __init construct_default_ISA_mptable(int mpc_default_type)
384 struct mpc_config_processor processor;
385 struct mpc_config_bus bus;
386 struct mpc_config_ioapic ioapic;
387 struct mpc_config_lintsrc lintsrc;
388 int linttypes[2] = { mp_ExtINT, mp_NMI };
389 int i;
392 * local APIC has default address
394 mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
397 * 2 CPUs, numbered 0 & 1.
399 processor.mpc_type = MP_PROCESSOR;
400 processor.mpc_apicver = 0;
401 processor.mpc_cpuflag = CPU_ENABLED;
402 processor.mpc_cpufeature = 0;
403 processor.mpc_featureflag = 0;
404 processor.mpc_reserved[0] = 0;
405 processor.mpc_reserved[1] = 0;
406 for (i = 0; i < 2; i++) {
407 processor.mpc_apicid = i;
408 MP_processor_info(&processor);
411 bus.mpc_type = MP_BUS;
412 bus.mpc_busid = 0;
413 switch (mpc_default_type) {
414 default:
415 printk(KERN_ERR "???\nUnknown standard configuration %d\n",
416 mpc_default_type);
417 /* fall through */
418 case 1:
419 case 5:
420 memcpy(bus.mpc_bustype, "ISA ", 6);
421 break;
423 MP_bus_info(&bus);
424 if (mpc_default_type > 4) {
425 bus.mpc_busid = 1;
426 memcpy(bus.mpc_bustype, "PCI ", 6);
427 MP_bus_info(&bus);
430 ioapic.mpc_type = MP_IOAPIC;
431 ioapic.mpc_apicid = 2;
432 ioapic.mpc_apicver = 0;
433 ioapic.mpc_flags = MPC_APIC_USABLE;
434 ioapic.mpc_apicaddr = 0xFEC00000;
435 MP_ioapic_info(&ioapic);
438 * We set up most of the low 16 IO-APIC pins according to MPS rules.
440 construct_default_ioirq_mptable(mpc_default_type);
442 lintsrc.mpc_type = MP_LINTSRC;
443 lintsrc.mpc_irqflag = 0; /* conforming */
444 lintsrc.mpc_srcbusid = 0;
445 lintsrc.mpc_srcbusirq = 0;
446 lintsrc.mpc_destapic = MP_APIC_ALL;
447 for (i = 0; i < 2; i++) {
448 lintsrc.mpc_irqtype = linttypes[i];
449 lintsrc.mpc_destapiclint = i;
450 MP_lintsrc_info(&lintsrc);
454 static struct intel_mp_floating *mpf_found;
457 * Scan the memory blocks for an SMP configuration block.
459 void __init get_smp_config (void)
461 struct intel_mp_floating *mpf = mpf_found;
464 * ACPI supports both logical (e.g. Hyper-Threading) and physical
465 * processors, where MPS only supports physical.
467 if (acpi_lapic && acpi_ioapic) {
468 printk(KERN_INFO "Using ACPI (MADT) for SMP configuration information\n");
469 return;
471 else if (acpi_lapic)
472 printk(KERN_INFO "Using ACPI for processor (LAPIC) configuration information\n");
474 printk("Intel MultiProcessor Specification v1.%d\n", mpf->mpf_specification);
477 * Now see if we need to read further.
479 if (mpf->mpf_feature1 != 0) {
481 printk(KERN_INFO "Default MP configuration #%d\n", mpf->mpf_feature1);
482 construct_default_ISA_mptable(mpf->mpf_feature1);
484 } else if (mpf->mpf_physptr) {
487 * Read the physical hardware table. Anything here will
488 * override the defaults.
490 if (!smp_read_mpc(phys_to_virt(mpf->mpf_physptr))) {
491 smp_found_config = 0;
492 printk(KERN_ERR "BIOS bug, MP table errors detected!...\n");
493 printk(KERN_ERR "... disabling SMP support. (tell your hw vendor)\n");
494 return;
497 * If there are no explicit MP IRQ entries, then we are
498 * broken. We set up most of the low 16 IO-APIC pins to
499 * ISA defaults and hope it will work.
501 if (!mp_irq_entries) {
502 struct mpc_config_bus bus;
504 printk(KERN_ERR "BIOS bug, no explicit IRQ entries, using default mptable. (tell your hw vendor)\n");
506 bus.mpc_type = MP_BUS;
507 bus.mpc_busid = 0;
508 memcpy(bus.mpc_bustype, "ISA ", 6);
509 MP_bus_info(&bus);
511 construct_default_ioirq_mptable(0);
514 } else
515 BUG();
517 printk(KERN_INFO "Processors: %d\n", num_processors);
519 * Only use the first configuration found.
523 static int __init smp_scan_config (unsigned long base, unsigned long length)
525 extern void __bad_mpf_size(void);
526 unsigned int *bp = phys_to_virt(base);
527 struct intel_mp_floating *mpf;
529 Dprintk("Scan SMP from %p for %ld bytes.\n", bp,length);
530 if (sizeof(*mpf) != 16)
531 __bad_mpf_size();
533 while (length > 0) {
534 mpf = (struct intel_mp_floating *)bp;
535 if ((*bp == SMP_MAGIC_IDENT) &&
536 (mpf->mpf_length == 1) &&
537 !mpf_checksum((unsigned char *)bp, 16) &&
538 ((mpf->mpf_specification == 1)
539 || (mpf->mpf_specification == 4)) ) {
541 smp_found_config = 1;
542 reserve_bootmem_generic(virt_to_phys(mpf), PAGE_SIZE);
543 if (mpf->mpf_physptr)
544 reserve_bootmem_generic(mpf->mpf_physptr, PAGE_SIZE);
545 mpf_found = mpf;
546 return 1;
548 bp += 4;
549 length -= 16;
551 return 0;
554 void __init find_smp_config(void)
556 unsigned int address;
559 * FIXME: Linux assumes you have 640K of base ram..
560 * this continues the error...
562 * 1) Scan the bottom 1K for a signature
563 * 2) Scan the top 1K of base RAM
564 * 3) Scan the 64K of bios
566 if (smp_scan_config(0x0,0x400) ||
567 smp_scan_config(639*0x400,0x400) ||
568 smp_scan_config(0xF0000,0x10000))
569 return;
571 * If it is an SMP machine we should know now.
573 * there is a real-mode segmented pointer pointing to the
574 * 4K EBDA area at 0x40E, calculate and scan it here.
576 * NOTE! There are Linux loaders that will corrupt the EBDA
577 * area, and as such this kind of SMP config may be less
578 * trustworthy, simply because the SMP table may have been
579 * stomped on during early boot. These loaders are buggy and
580 * should be fixed.
583 address = *(unsigned short *)phys_to_virt(0x40E);
584 address <<= 4;
585 if (smp_scan_config(address, 0x1000))
586 return;
588 /* If we have come this far, we did not find an MP table */
589 printk(KERN_INFO "No mptable found.\n");
592 /* --------------------------------------------------------------------------
593 ACPI-based MP Configuration
594 -------------------------------------------------------------------------- */
596 #ifdef CONFIG_ACPI
598 void __init mp_register_lapic_address(u64 address)
600 mp_lapic_addr = (unsigned long) address;
601 set_fixmap_nocache(FIX_APIC_BASE, mp_lapic_addr);
602 if (boot_cpu_id == -1U)
603 boot_cpu_id = GET_APIC_ID(apic_read(APIC_ID));
606 void __cpuinit mp_register_lapic (u8 id, u8 enabled)
608 struct mpc_config_processor processor;
609 int boot_cpu = 0;
611 if (id == boot_cpu_id)
612 boot_cpu = 1;
614 processor.mpc_type = MP_PROCESSOR;
615 processor.mpc_apicid = id;
616 processor.mpc_apicver = 0;
617 processor.mpc_cpuflag = (enabled ? CPU_ENABLED : 0);
618 processor.mpc_cpuflag |= (boot_cpu ? CPU_BOOTPROCESSOR : 0);
619 processor.mpc_cpufeature = 0;
620 processor.mpc_featureflag = 0;
621 processor.mpc_reserved[0] = 0;
622 processor.mpc_reserved[1] = 0;
624 MP_processor_info(&processor);
627 #define MP_ISA_BUS 0
628 #define MP_MAX_IOAPIC_PIN 127
630 static struct mp_ioapic_routing {
631 int apic_id;
632 int gsi_start;
633 int gsi_end;
634 u32 pin_programmed[4];
635 } mp_ioapic_routing[MAX_IO_APICS];
637 static int mp_find_ioapic(int gsi)
639 int i = 0;
641 /* Find the IOAPIC that manages this GSI. */
642 for (i = 0; i < nr_ioapics; i++) {
643 if ((gsi >= mp_ioapic_routing[i].gsi_start)
644 && (gsi <= mp_ioapic_routing[i].gsi_end))
645 return i;
648 printk(KERN_ERR "ERROR: Unable to locate IOAPIC for GSI %d\n", gsi);
649 return -1;
652 void __init mp_register_ioapic(u8 id, u32 address, u32 gsi_base)
654 int idx = 0;
656 if (bad_ioapic(address))
657 return;
659 idx = nr_ioapics++;
661 mp_ioapics[idx].mpc_type = MP_IOAPIC;
662 mp_ioapics[idx].mpc_flags = MPC_APIC_USABLE;
663 mp_ioapics[idx].mpc_apicaddr = address;
665 set_fixmap_nocache(FIX_IO_APIC_BASE_0 + idx, address);
666 mp_ioapics[idx].mpc_apicid = id;
667 mp_ioapics[idx].mpc_apicver = 0;
670 * Build basic IRQ lookup table to facilitate gsi->io_apic lookups
671 * and to prevent reprogramming of IOAPIC pins (PCI IRQs).
673 mp_ioapic_routing[idx].apic_id = mp_ioapics[idx].mpc_apicid;
674 mp_ioapic_routing[idx].gsi_start = gsi_base;
675 mp_ioapic_routing[idx].gsi_end = gsi_base +
676 io_apic_get_redir_entries(idx);
678 printk(KERN_INFO "IOAPIC[%d]: apic_id %d, address 0x%x, "
679 "GSI %d-%d\n", idx, mp_ioapics[idx].mpc_apicid,
680 mp_ioapics[idx].mpc_apicaddr,
681 mp_ioapic_routing[idx].gsi_start,
682 mp_ioapic_routing[idx].gsi_end);
685 void __init
686 mp_override_legacy_irq(u8 bus_irq, u8 polarity, u8 trigger, u32 gsi)
688 struct mpc_config_intsrc intsrc;
689 int ioapic = -1;
690 int pin = -1;
693 * Convert 'gsi' to 'ioapic.pin'.
695 ioapic = mp_find_ioapic(gsi);
696 if (ioapic < 0)
697 return;
698 pin = gsi - mp_ioapic_routing[ioapic].gsi_start;
701 * TBD: This check is for faulty timer entries, where the override
702 * erroneously sets the trigger to level, resulting in a HUGE
703 * increase of timer interrupts!
705 if ((bus_irq == 0) && (trigger == 3))
706 trigger = 1;
708 intsrc.mpc_type = MP_INTSRC;
709 intsrc.mpc_irqtype = mp_INT;
710 intsrc.mpc_irqflag = (trigger << 2) | polarity;
711 intsrc.mpc_srcbus = MP_ISA_BUS;
712 intsrc.mpc_srcbusirq = bus_irq; /* IRQ */
713 intsrc.mpc_dstapic = mp_ioapics[ioapic].mpc_apicid; /* APIC ID */
714 intsrc.mpc_dstirq = pin; /* INTIN# */
716 Dprintk("Int: type %d, pol %d, trig %d, bus %d, irq %d, %d-%d\n",
717 intsrc.mpc_irqtype, intsrc.mpc_irqflag & 3,
718 (intsrc.mpc_irqflag >> 2) & 3, intsrc.mpc_srcbus,
719 intsrc.mpc_srcbusirq, intsrc.mpc_dstapic, intsrc.mpc_dstirq);
721 mp_irqs[mp_irq_entries] = intsrc;
722 if (++mp_irq_entries == MAX_IRQ_SOURCES)
723 panic("Max # of irq sources exceeded!\n");
726 void __init mp_config_acpi_legacy_irqs(void)
728 struct mpc_config_intsrc intsrc;
729 int i = 0;
730 int ioapic = -1;
733 * Fabricate the legacy ISA bus (bus #31).
735 set_bit(MP_ISA_BUS, mp_bus_not_pci);
738 * Locate the IOAPIC that manages the ISA IRQs (0-15).
740 ioapic = mp_find_ioapic(0);
741 if (ioapic < 0)
742 return;
744 intsrc.mpc_type = MP_INTSRC;
745 intsrc.mpc_irqflag = 0; /* Conforming */
746 intsrc.mpc_srcbus = MP_ISA_BUS;
747 intsrc.mpc_dstapic = mp_ioapics[ioapic].mpc_apicid;
750 * Use the default configuration for the IRQs 0-15. Unless
751 * overridden by (MADT) interrupt source override entries.
753 for (i = 0; i < 16; i++) {
754 int idx;
756 for (idx = 0; idx < mp_irq_entries; idx++) {
757 struct mpc_config_intsrc *irq = mp_irqs + idx;
759 /* Do we already have a mapping for this ISA IRQ? */
760 if (irq->mpc_srcbus == MP_ISA_BUS && irq->mpc_srcbusirq == i)
761 break;
763 /* Do we already have a mapping for this IOAPIC pin */
764 if ((irq->mpc_dstapic == intsrc.mpc_dstapic) &&
765 (irq->mpc_dstirq == i))
766 break;
769 if (idx != mp_irq_entries) {
770 printk(KERN_DEBUG "ACPI: IRQ%d used by override.\n", i);
771 continue; /* IRQ already used */
774 intsrc.mpc_irqtype = mp_INT;
775 intsrc.mpc_srcbusirq = i; /* Identity mapped */
776 intsrc.mpc_dstirq = i;
778 Dprintk("Int: type %d, pol %d, trig %d, bus %d, irq %d, "
779 "%d-%d\n", intsrc.mpc_irqtype, intsrc.mpc_irqflag & 3,
780 (intsrc.mpc_irqflag >> 2) & 3, intsrc.mpc_srcbus,
781 intsrc.mpc_srcbusirq, intsrc.mpc_dstapic,
782 intsrc.mpc_dstirq);
784 mp_irqs[mp_irq_entries] = intsrc;
785 if (++mp_irq_entries == MAX_IRQ_SOURCES)
786 panic("Max # of irq sources exceeded!\n");
790 int mp_register_gsi(u32 gsi, int triggering, int polarity)
792 int ioapic = -1;
793 int ioapic_pin = 0;
794 int idx, bit = 0;
796 if (acpi_irq_model != ACPI_IRQ_MODEL_IOAPIC)
797 return gsi;
799 /* Don't set up the ACPI SCI because it's already set up */
800 if (acpi_gbl_FADT.sci_interrupt == gsi)
801 return gsi;
803 ioapic = mp_find_ioapic(gsi);
804 if (ioapic < 0) {
805 printk(KERN_WARNING "No IOAPIC for GSI %u\n", gsi);
806 return gsi;
809 ioapic_pin = gsi - mp_ioapic_routing[ioapic].gsi_start;
812 * Avoid pin reprogramming. PRTs typically include entries
813 * with redundant pin->gsi mappings (but unique PCI devices);
814 * we only program the IOAPIC on the first.
816 bit = ioapic_pin % 32;
817 idx = (ioapic_pin < 32) ? 0 : (ioapic_pin / 32);
818 if (idx > 3) {
819 printk(KERN_ERR "Invalid reference to IOAPIC pin "
820 "%d-%d\n", mp_ioapic_routing[ioapic].apic_id,
821 ioapic_pin);
822 return gsi;
824 if ((1<<bit) & mp_ioapic_routing[ioapic].pin_programmed[idx]) {
825 Dprintk(KERN_DEBUG "Pin %d-%d already programmed\n",
826 mp_ioapic_routing[ioapic].apic_id, ioapic_pin);
827 return gsi;
830 mp_ioapic_routing[ioapic].pin_programmed[idx] |= (1<<bit);
832 io_apic_set_pci_routing(ioapic, ioapic_pin, gsi,
833 triggering == ACPI_EDGE_SENSITIVE ? 0 : 1,
834 polarity == ACPI_ACTIVE_HIGH ? 0 : 1);
835 return gsi;
837 #endif /*CONFIG_ACPI*/