8d7365511ac0ba3b09b9ce700c5dfcd629cdc4d8
[sfrench/cifs-2.6.git] / arch / x86 / kernel / mpparse_64.c
1 /*
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>
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>
24
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>
32 #include <asm/bios_ebda.h>
33
34 #include <mach_apic.h>
35
36 /* Have we found an MP table */
37 int smp_found_config;
38
39 /*
40  * Various Linux-internal data structures created from the
41  * MP-table.
42  */
43 DECLARE_BITMAP(mp_bus_not_pci, MAX_MP_BUSSES);
44 int mp_bus_id_to_pci_bus[MAX_MP_BUSSES] = {[0 ... MAX_MP_BUSSES - 1] = -1 };
45
46 static int mp_current_pci_id = 0;
47 /* I/O APIC entries */
48 struct mpc_config_ioapic mp_ioapics[MAX_IO_APICS];
49
50 /* # of MP IRQ source entries */
51 struct mpc_config_intsrc mp_irqs[MAX_IRQ_SOURCES];
52
53 /* MP IRQ source entries */
54 int mp_irq_entries;
55
56 int nr_ioapics;
57
58 #ifdef CONFIG_SMP
59 u16 x86_bios_cpu_apicid_init[NR_CPUS] __initdata
60     = {[0 ... NR_CPUS - 1] = BAD_APICID };
61 void *x86_bios_cpu_apicid_early_ptr;
62 #endif
63
64 /* Make it easy to share the UP and SMP code: */
65 #ifndef CONFIG_X86_SMP
66 unsigned int num_processors;
67 unsigned disabled_cpus __cpuinitdata;
68 #ifndef CONFIG_X86_LOCAL_APIC
69 unsigned int boot_cpu_physical_apicid = -1U;
70 #endif
71 #endif
72
73 /*
74  * Intel MP BIOS table parsing routines:
75  */
76
77 /*
78  * Checksum an MP configuration block.
79  */
80
81 static int __init mpf_checksum(unsigned char *mp, int len)
82 {
83         int sum = 0;
84
85         while (len--)
86                 sum += *mp++;
87
88         return sum & 0xFF;
89 }
90
91 static void __cpuinit MP_processor_info(struct mpc_config_processor *m)
92 {
93         char *bootup_cpu = "";
94
95         if (!(m->mpc_cpuflag & CPU_ENABLED)) {
96                 disabled_cpus++;
97                 return;
98         }
99         if (m->mpc_cpuflag & CPU_BOOTPROCESSOR) {
100                 bootup_cpu = " (Bootup-CPU)";
101                 boot_cpu_physical_apicid = m->mpc_apicid;
102         }
103
104         printk(KERN_INFO "Processor #%d%s\n", m->mpc_apicid, bootup_cpu);
105         generic_processor_info(m->mpc_apicid, 0);
106 }
107
108 static void __init MP_bus_info(struct mpc_config_bus *m)
109 {
110         char str[7];
111
112         memcpy(str, m->mpc_bustype, 6);
113         str[6] = 0;
114         Dprintk("Bus #%d is %s\n", m->mpc_busid, str);
115
116         if (strncmp(str, "ISA", 3) == 0) {
117                 set_bit(m->mpc_busid, mp_bus_not_pci);
118         } else if (strncmp(str, "PCI", 3) == 0) {
119                 clear_bit(m->mpc_busid, mp_bus_not_pci);
120                 mp_bus_id_to_pci_bus[m->mpc_busid] = mp_current_pci_id;
121                 mp_current_pci_id++;
122         } else {
123                 printk(KERN_ERR "Unknown bustype %s\n", str);
124         }
125 }
126
127 static int bad_ioapic(unsigned long address)
128 {
129         if (nr_ioapics >= MAX_IO_APICS) {
130                 printk(KERN_ERR "ERROR: Max # of I/O APICs (%d) exceeded "
131                        "(found %d)\n", MAX_IO_APICS, nr_ioapics);
132                 panic("Recompile kernel with bigger MAX_IO_APICS!\n");
133         }
134         if (!address) {
135                 printk(KERN_ERR "WARNING: Bogus (zero) I/O APIC address"
136                        " found in table, skipping!\n");
137                 return 1;
138         }
139         return 0;
140 }
141
142 static void __init MP_ioapic_info(struct mpc_config_ioapic *m)
143 {
144         if (!(m->mpc_flags & MPC_APIC_USABLE))
145                 return;
146
147         printk(KERN_INFO "I/O APIC #%d at 0x%X.\n", m->mpc_apicid,
148                m->mpc_apicaddr);
149
150         if (bad_ioapic(m->mpc_apicaddr))
151                 return;
152
153         mp_ioapics[nr_ioapics] = *m;
154         nr_ioapics++;
155 }
156
157 static void __init MP_intsrc_info(struct mpc_config_intsrc *m)
158 {
159         mp_irqs[mp_irq_entries] = *m;
160         Dprintk("Int: type %d, pol %d, trig %d, bus %d,"
161                 " IRQ %02x, APIC ID %x, APIC INT %02x\n",
162                 m->mpc_irqtype, m->mpc_irqflag & 3,
163                 (m->mpc_irqflag >> 2) & 3, m->mpc_srcbus,
164                 m->mpc_srcbusirq, m->mpc_dstapic, m->mpc_dstirq);
165         if (++mp_irq_entries >= MAX_IRQ_SOURCES)
166                 panic("Max # of irq sources exceeded!!\n");
167 }
168
169 static void __init MP_lintsrc_info(struct mpc_config_lintsrc *m)
170 {
171         Dprintk("Lint: type %d, pol %d, trig %d, bus %d,"
172                 " IRQ %02x, APIC ID %x, APIC LINT %02x\n",
173                 m->mpc_irqtype, m->mpc_irqflag & 3,
174                 (m->mpc_irqflag >> 2) & 3, m->mpc_srcbusid,
175                 m->mpc_srcbusirq, m->mpc_destapic, m->mpc_destapiclint);
176 }
177
178 /*
179  * Read/parse the MPC
180  */
181 static int __init smp_read_mpc(struct mp_config_table *mpc, unsigned early)
182 {
183         char str[16];
184         int count = sizeof(*mpc);
185         unsigned char *mpt = ((unsigned char *)mpc) + count;
186
187         if (memcmp(mpc->mpc_signature, MPC_SIGNATURE, 4)) {
188                 printk(KERN_ERR "MPTABLE: bad signature [%c%c%c%c]!\n",
189                        mpc->mpc_signature[0],
190                        mpc->mpc_signature[1],
191                        mpc->mpc_signature[2], mpc->mpc_signature[3]);
192                 return 0;
193         }
194         if (mpf_checksum((unsigned char *)mpc, mpc->mpc_length)) {
195                 printk(KERN_ERR "MPTABLE: checksum error!\n");
196                 return 0;
197         }
198         if (mpc->mpc_spec != 0x01 && mpc->mpc_spec != 0x04) {
199                 printk(KERN_ERR "MPTABLE: bad table version (%d)!!\n",
200                        mpc->mpc_spec);
201                 return 0;
202         }
203         if (!mpc->mpc_lapic) {
204                 printk(KERN_ERR "MPTABLE: null local APIC address!\n");
205                 return 0;
206         }
207         memcpy(str, mpc->mpc_oem, 8);
208         str[8] = 0;
209         printk(KERN_INFO "MPTABLE: OEM ID: %s ", str);
210
211         memcpy(str, mpc->mpc_productid, 12);
212         str[12] = 0;
213         printk(KERN_INFO "MPTABLE: Product ID: %s ", str);
214
215         printk(KERN_INFO "MPTABLE: APIC at: 0x%X\n", mpc->mpc_lapic);
216
217         /* save the local APIC address, it might be non-default */
218         if (!acpi_lapic)
219                 mp_lapic_addr = mpc->mpc_lapic;
220
221         if (early)
222                 return 1;
223
224         /*
225          *      Now process the configuration blocks.
226          */
227         while (count < mpc->mpc_length) {
228                 switch (*mpt) {
229                 case MP_PROCESSOR:
230                         {
231                                 struct mpc_config_processor *m =
232                                     (struct mpc_config_processor *)mpt;
233                                 if (!acpi_lapic)
234                                         MP_processor_info(m);
235                                 mpt += sizeof(*m);
236                                 count += sizeof(*m);
237                                 break;
238                         }
239                 case MP_BUS:
240                         {
241                                 struct mpc_config_bus *m =
242                                     (struct mpc_config_bus *)mpt;
243                                 MP_bus_info(m);
244                                 mpt += sizeof(*m);
245                                 count += sizeof(*m);
246                                 break;
247                         }
248                 case MP_IOAPIC:
249                         {
250                                 struct mpc_config_ioapic *m =
251                                     (struct mpc_config_ioapic *)mpt;
252                                 MP_ioapic_info(m);
253                                 mpt += sizeof(*m);
254                                 count += sizeof(*m);
255                                 break;
256                         }
257                 case MP_INTSRC:
258                         {
259                                 struct mpc_config_intsrc *m =
260                                     (struct mpc_config_intsrc *)mpt;
261
262                                 MP_intsrc_info(m);
263                                 mpt += sizeof(*m);
264                                 count += sizeof(*m);
265                                 break;
266                         }
267                 case MP_LINTSRC:
268                         {
269                                 struct mpc_config_lintsrc *m =
270                                     (struct mpc_config_lintsrc *)mpt;
271                                 MP_lintsrc_info(m);
272                                 mpt += sizeof(*m);
273                                 count += sizeof(*m);
274                                 break;
275                         }
276                 }
277         }
278         setup_apic_routing();
279         if (!num_processors)
280                 printk(KERN_ERR "MPTABLE: no processors registered!\n");
281         return num_processors;
282 }
283
284 static int __init ELCR_trigger(unsigned int irq)
285 {
286         unsigned int port;
287
288         port = 0x4d0 + (irq >> 3);
289         return (inb(port) >> (irq & 7)) & 1;
290 }
291
292 static void __init construct_default_ioirq_mptable(int mpc_default_type)
293 {
294         struct mpc_config_intsrc intsrc;
295         int i;
296         int ELCR_fallback = 0;
297
298         intsrc.mpc_type = MP_INTSRC;
299         intsrc.mpc_irqflag = 0; /* conforming */
300         intsrc.mpc_srcbus = 0;
301         intsrc.mpc_dstapic = mp_ioapics[0].mpc_apicid;
302
303         intsrc.mpc_irqtype = mp_INT;
304
305         /*
306          *  If true, we have an ISA/PCI system with no IRQ entries
307          *  in the MP table. To prevent the PCI interrupts from being set up
308          *  incorrectly, we try to use the ELCR. The sanity check to see if
309          *  there is good ELCR data is very simple - IRQ0, 1, 2 and 13 can
310          *  never be level sensitive, so we simply see if the ELCR agrees.
311          *  If it does, we assume it's valid.
312          */
313         if (mpc_default_type == 5) {
314                 printk(KERN_INFO "ISA/PCI bus type with no IRQ information... "
315                        "falling back to ELCR\n");
316
317                 if (ELCR_trigger(0) || ELCR_trigger(1) || ELCR_trigger(2) ||
318                     ELCR_trigger(13))
319                         printk(KERN_ERR "ELCR contains invalid data... "
320                                "not using ELCR\n");
321                 else {
322                         printk(KERN_INFO
323                                "Using ELCR to identify PCI interrupts\n");
324                         ELCR_fallback = 1;
325                 }
326         }
327
328         for (i = 0; i < 16; i++) {
329                 switch (mpc_default_type) {
330                 case 2:
331                         if (i == 0 || i == 13)
332                                 continue;       /* IRQ0 & IRQ13 not connected */
333                         /* fall through */
334                 default:
335                         if (i == 2)
336                                 continue;       /* IRQ2 is never connected */
337                 }
338
339                 if (ELCR_fallback) {
340                         /*
341                          *  If the ELCR indicates a level-sensitive interrupt, we
342                          *  copy that information over to the MP table in the
343                          *  irqflag field (level sensitive, active high polarity).
344                          */
345                         if (ELCR_trigger(i))
346                                 intsrc.mpc_irqflag = 13;
347                         else
348                                 intsrc.mpc_irqflag = 0;
349                 }
350
351                 intsrc.mpc_srcbusirq = i;
352                 intsrc.mpc_dstirq = i ? i : 2;  /* IRQ0 to INTIN2 */
353                 MP_intsrc_info(&intsrc);
354         }
355
356         intsrc.mpc_irqtype = mp_ExtINT;
357         intsrc.mpc_srcbusirq = 0;
358         intsrc.mpc_dstirq = 0;  /* 8259A to INTIN0 */
359         MP_intsrc_info(&intsrc);
360 }
361
362 static inline void __init construct_default_ISA_mptable(int mpc_default_type)
363 {
364         struct mpc_config_processor processor;
365         struct mpc_config_bus bus;
366         struct mpc_config_ioapic ioapic;
367         struct mpc_config_lintsrc lintsrc;
368         int linttypes[2] = { mp_ExtINT, mp_NMI };
369         int i;
370
371         /*
372          * local APIC has default address
373          */
374         mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
375
376         /*
377          * 2 CPUs, numbered 0 & 1.
378          */
379         processor.mpc_type = MP_PROCESSOR;
380         processor.mpc_apicver = 0;
381         processor.mpc_cpuflag = CPU_ENABLED;
382         processor.mpc_cpufeature = 0;
383         processor.mpc_featureflag = 0;
384         processor.mpc_reserved[0] = 0;
385         processor.mpc_reserved[1] = 0;
386         for (i = 0; i < 2; i++) {
387                 processor.mpc_apicid = i;
388                 MP_processor_info(&processor);
389         }
390
391         bus.mpc_type = MP_BUS;
392         bus.mpc_busid = 0;
393         switch (mpc_default_type) {
394         default:
395                 printk(KERN_ERR "???\nUnknown standard configuration %d\n",
396                        mpc_default_type);
397                 /* fall through */
398         case 1:
399         case 5:
400                 memcpy(bus.mpc_bustype, "ISA   ", 6);
401                 break;
402         }
403         MP_bus_info(&bus);
404         if (mpc_default_type > 4) {
405                 bus.mpc_busid = 1;
406                 memcpy(bus.mpc_bustype, "PCI   ", 6);
407                 MP_bus_info(&bus);
408         }
409
410         ioapic.mpc_type = MP_IOAPIC;
411         ioapic.mpc_apicid = 2;
412         ioapic.mpc_apicver = 0;
413         ioapic.mpc_flags = MPC_APIC_USABLE;
414         ioapic.mpc_apicaddr = 0xFEC00000;
415         MP_ioapic_info(&ioapic);
416
417         /*
418          * We set up most of the low 16 IO-APIC pins according to MPS rules.
419          */
420         construct_default_ioirq_mptable(mpc_default_type);
421
422         lintsrc.mpc_type = MP_LINTSRC;
423         lintsrc.mpc_irqflag = 0;        /* conforming */
424         lintsrc.mpc_srcbusid = 0;
425         lintsrc.mpc_srcbusirq = 0;
426         lintsrc.mpc_destapic = MP_APIC_ALL;
427         for (i = 0; i < 2; i++) {
428                 lintsrc.mpc_irqtype = linttypes[i];
429                 lintsrc.mpc_destapiclint = i;
430                 MP_lintsrc_info(&lintsrc);
431         }
432 }
433
434 static struct intel_mp_floating *mpf_found;
435
436 /*
437  * Scan the memory blocks for an SMP configuration block.
438  */
439 static void __init __get_smp_config(unsigned early)
440 {
441         struct intel_mp_floating *mpf = mpf_found;
442
443         if (acpi_lapic && early)
444                 return;
445         /*
446          * ACPI supports both logical (e.g. Hyper-Threading) and physical
447          * processors, where MPS only supports physical.
448          */
449         if (acpi_lapic && acpi_ioapic) {
450                 printk(KERN_INFO "Using ACPI (MADT) for SMP configuration "
451                        "information\n");
452                 return;
453         } else if (acpi_lapic)
454                 printk(KERN_INFO "Using ACPI for processor (LAPIC) "
455                        "configuration information\n");
456
457         printk(KERN_INFO "Intel MultiProcessor Specification v1.%d\n",
458                mpf->mpf_specification);
459
460         /*
461          * Now see if we need to read further.
462          */
463         if (mpf->mpf_feature1 != 0) {
464                 if (early) {
465                         /*
466                          * local APIC has default address
467                          */
468                         mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
469                         return;
470                 }
471
472                 printk(KERN_INFO "Default MP configuration #%d\n",
473                        mpf->mpf_feature1);
474                 construct_default_ISA_mptable(mpf->mpf_feature1);
475
476         } else if (mpf->mpf_physptr) {
477
478                 /*
479                  * Read the physical hardware table.  Anything here will
480                  * override the defaults.
481                  */
482                 if (!smp_read_mpc(phys_to_virt(mpf->mpf_physptr), early)) {
483                         smp_found_config = 0;
484                         printk(KERN_ERR
485                                "BIOS bug, MP table errors detected!...\n");
486                         printk(KERN_ERR "... disabling SMP support. "
487                                "(tell your hw vendor)\n");
488                         return;
489                 }
490
491                 if (early)
492                         return;
493                 /*
494                  * If there are no explicit MP IRQ entries, then we are
495                  * broken.  We set up most of the low 16 IO-APIC pins to
496                  * ISA defaults and hope it will work.
497                  */
498                 if (!mp_irq_entries) {
499                         struct mpc_config_bus bus;
500
501                         printk(KERN_ERR "BIOS bug, no explicit IRQ entries, "
502                                "using default mptable. "
503                                "(tell your hw vendor)\n");
504
505                         bus.mpc_type = MP_BUS;
506                         bus.mpc_busid = 0;
507                         memcpy(bus.mpc_bustype, "ISA   ", 6);
508                         MP_bus_info(&bus);
509
510                         construct_default_ioirq_mptable(0);
511                 }
512
513         } else
514                 BUG();
515
516         if (!early)
517                 printk(KERN_INFO "Processors: %d\n", num_processors);
518         /*
519          * Only use the first configuration found.
520          */
521 }
522
523 void __init early_get_smp_config(void)
524 {
525         __get_smp_config(1);
526 }
527
528 void __init get_smp_config(void)
529 {
530         __get_smp_config(0);
531 }
532
533 static int __init smp_scan_config(unsigned long base, unsigned long length,
534                                   unsigned reserve)
535 {
536         extern void __bad_mpf_size(void);
537         unsigned int *bp = phys_to_virt(base);
538         struct intel_mp_floating *mpf;
539
540         Dprintk("Scan SMP from %p for %ld bytes.\n", bp, length);
541         if (sizeof(*mpf) != 16)
542                 __bad_mpf_size();
543
544         while (length > 0) {
545                 mpf = (struct intel_mp_floating *)bp;
546                 if ((*bp == SMP_MAGIC_IDENT) &&
547                     (mpf->mpf_length == 1) &&
548                     !mpf_checksum((unsigned char *)bp, 16) &&
549                     ((mpf->mpf_specification == 1)
550                      || (mpf->mpf_specification == 4))) {
551
552                         smp_found_config = 1;
553                         mpf_found = mpf;
554
555                         if (!reserve)
556                                 return 1;
557
558                         reserve_bootmem_generic(virt_to_phys(mpf), PAGE_SIZE);
559                         if (mpf->mpf_physptr)
560                                 reserve_bootmem_generic(mpf->mpf_physptr,
561                                                         PAGE_SIZE);
562                         return 1;
563                 }
564                 bp += 4;
565                 length -= 16;
566         }
567         return 0;
568 }
569
570 static void __init __find_smp_config(unsigned reserve)
571 {
572         unsigned int address;
573
574         /*
575          * FIXME: Linux assumes you have 640K of base ram..
576          * this continues the error...
577          *
578          * 1) Scan the bottom 1K for a signature
579          * 2) Scan the top 1K of base RAM
580          * 3) Scan the 64K of bios
581          */
582         if (smp_scan_config(0x0, 0x400, reserve) ||
583             smp_scan_config(639 * 0x400, 0x400, reserve) ||
584             smp_scan_config(0xF0000, 0x10000, reserve))
585                 return;
586         /*
587          * If it is an SMP machine we should know now.
588          *
589          * there is a real-mode segmented pointer pointing to the
590          * 4K EBDA area at 0x40E, calculate and scan it here.
591          *
592          * NOTE! There are Linux loaders that will corrupt the EBDA
593          * area, and as such this kind of SMP config may be less
594          * trustworthy, simply because the SMP table may have been
595          * stomped on during early boot. These loaders are buggy and
596          * should be fixed.
597          *
598          * MP1.4 SPEC states to only scan first 1K of 4K EBDA.
599          */
600
601         address = get_bios_ebda();
602         if (address)
603                 smp_scan_config(address, 0x400, reserve);
604 }
605
606 void __init early_find_smp_config(void)
607 {
608         __find_smp_config(0);
609 }
610
611 void __init find_smp_config(void)
612 {
613         __find_smp_config(1);
614 }
615
616 /* --------------------------------------------------------------------------
617                             ACPI-based MP Configuration
618    -------------------------------------------------------------------------- */
619
620 #ifdef CONFIG_ACPI
621
622 void __init mp_register_lapic_address(u64 address)
623 {
624         mp_lapic_addr = (unsigned long)address;
625         set_fixmap_nocache(FIX_APIC_BASE, mp_lapic_addr);
626         if (boot_cpu_physical_apicid == -1U)
627                 boot_cpu_physical_apicid  = GET_APIC_ID(read_apic_id());
628 }
629 void __cpuinit mp_register_lapic(int id, u8 enabled)
630 {
631         if (!enabled) {
632                 ++disabled_cpus;
633                 return;
634         }
635
636         generic_processor_info(id, 0);
637 }
638
639
640 #define MP_ISA_BUS              0
641 #define MP_MAX_IOAPIC_PIN       127
642
643 static struct mp_ioapic_routing {
644         int apic_id;
645         int gsi_base;
646         int gsi_end;
647         u32 pin_programmed[4];
648 } mp_ioapic_routing[MAX_IO_APICS];
649
650 static int mp_find_ioapic(int gsi)
651 {
652         int i = 0;
653
654         /* Find the IOAPIC that manages this GSI. */
655         for (i = 0; i < nr_ioapics; i++) {
656                 if ((gsi >= mp_ioapic_routing[i].gsi_base)
657                     && (gsi <= mp_ioapic_routing[i].gsi_end))
658                         return i;
659         }
660
661         printk(KERN_ERR "ERROR: Unable to locate IOAPIC for GSI %d\n", gsi);
662         return -1;
663 }
664
665 static u8 uniq_ioapic_id(u8 id)
666 {
667         int i;
668         DECLARE_BITMAP(used, 256);
669         bitmap_zero(used, 256);
670         for (i = 0; i < nr_ioapics; i++) {
671                 struct mpc_config_ioapic *ia = &mp_ioapics[i];
672                 __set_bit(ia->mpc_apicid, used);
673         }
674         if (!test_bit(id, used))
675                 return id;
676         return find_first_zero_bit(used, 256);
677 }
678
679 void __init mp_register_ioapic(int id, u32 address, u32 gsi_base)
680 {
681         int idx = 0;
682
683         if (bad_ioapic(address))
684                 return;
685
686         idx = nr_ioapics;
687
688         mp_ioapics[idx].mpc_type = MP_IOAPIC;
689         mp_ioapics[idx].mpc_flags = MPC_APIC_USABLE;
690         mp_ioapics[idx].mpc_apicaddr = address;
691
692         set_fixmap_nocache(FIX_IO_APIC_BASE_0 + idx, address);
693         mp_ioapics[idx].mpc_apicid = uniq_ioapic_id(id);
694         mp_ioapics[idx].mpc_apicver = 0;
695
696         /* 
697          * Build basic IRQ lookup table to facilitate gsi->io_apic lookups
698          * and to prevent reprogramming of IOAPIC pins (PCI IRQs).
699          */
700         mp_ioapic_routing[idx].apic_id = mp_ioapics[idx].mpc_apicid;
701         mp_ioapic_routing[idx].gsi_base = gsi_base;
702         mp_ioapic_routing[idx].gsi_end = gsi_base +
703             io_apic_get_redir_entries(idx);
704
705         printk(KERN_INFO "IOAPIC[%d]: apic_id %d, address 0x%x, "
706                "GSI %d-%d\n", idx, mp_ioapics[idx].mpc_apicid,
707                mp_ioapics[idx].mpc_apicaddr,
708                mp_ioapic_routing[idx].gsi_base,
709                mp_ioapic_routing[idx].gsi_end);
710
711         nr_ioapics++;
712 }
713
714 void __init mp_override_legacy_irq(u8 bus_irq, u8 polarity, u8 trigger, u32 gsi)
715 {
716         struct mpc_config_intsrc intsrc;
717         int ioapic = -1;
718         int pin = -1;
719
720         /* 
721          * Convert 'gsi' to 'ioapic.pin'.
722          */
723         ioapic = mp_find_ioapic(gsi);
724         if (ioapic < 0)
725                 return;
726         pin = gsi - mp_ioapic_routing[ioapic].gsi_base;
727
728         /*
729          * TBD: This check is for faulty timer entries, where the override
730          *      erroneously sets the trigger to level, resulting in a HUGE 
731          *      increase of timer interrupts!
732          */
733         if ((bus_irq == 0) && (trigger == 3))
734                 trigger = 1;
735
736         intsrc.mpc_type = MP_INTSRC;
737         intsrc.mpc_irqtype = mp_INT;
738         intsrc.mpc_irqflag = (trigger << 2) | polarity;
739         intsrc.mpc_srcbus = MP_ISA_BUS;
740         intsrc.mpc_srcbusirq = bus_irq; /* IRQ */
741         intsrc.mpc_dstapic = mp_ioapics[ioapic].mpc_apicid;     /* APIC ID */
742         intsrc.mpc_dstirq = pin;        /* INTIN# */
743
744         Dprintk("Int: type %d, pol %d, trig %d, bus %d, irq %d, %d-%d\n",
745                 intsrc.mpc_irqtype, intsrc.mpc_irqflag & 3,
746                 (intsrc.mpc_irqflag >> 2) & 3, intsrc.mpc_srcbus,
747                 intsrc.mpc_srcbusirq, intsrc.mpc_dstapic, intsrc.mpc_dstirq);
748
749         mp_irqs[mp_irq_entries] = intsrc;
750         if (++mp_irq_entries == MAX_IRQ_SOURCES)
751                 panic("Max # of irq sources exceeded!\n");
752 }
753
754 void __init mp_config_acpi_legacy_irqs(void)
755 {
756         struct mpc_config_intsrc intsrc;
757         int i = 0;
758         int ioapic = -1;
759
760         /* 
761          * Fabricate the legacy ISA bus (bus #31).
762          */
763         set_bit(MP_ISA_BUS, mp_bus_not_pci);
764
765         /* 
766          * Locate the IOAPIC that manages the ISA IRQs (0-15). 
767          */
768         ioapic = mp_find_ioapic(0);
769         if (ioapic < 0)
770                 return;
771
772         intsrc.mpc_type = MP_INTSRC;
773         intsrc.mpc_irqflag = 0; /* Conforming */
774         intsrc.mpc_srcbus = MP_ISA_BUS;
775         intsrc.mpc_dstapic = mp_ioapics[ioapic].mpc_apicid;
776
777         /* 
778          * Use the default configuration for the IRQs 0-15.  Unless
779          * overridden by (MADT) interrupt source override entries.
780          */
781         for (i = 0; i < 16; i++) {
782                 int idx;
783
784                 for (idx = 0; idx < mp_irq_entries; idx++) {
785                         struct mpc_config_intsrc *irq = mp_irqs + idx;
786
787                         /* Do we already have a mapping for this ISA IRQ? */
788                         if (irq->mpc_srcbus == MP_ISA_BUS
789                             && irq->mpc_srcbusirq == i)
790                                 break;
791
792                         /* Do we already have a mapping for this IOAPIC pin */
793                         if ((irq->mpc_dstapic == intsrc.mpc_dstapic) &&
794                             (irq->mpc_dstirq == i))
795                                 break;
796                 }
797
798                 if (idx != mp_irq_entries) {
799                         printk(KERN_DEBUG "ACPI: IRQ%d used by override.\n", i);
800                         continue;       /* IRQ already used */
801                 }
802
803                 intsrc.mpc_irqtype = mp_INT;
804                 intsrc.mpc_srcbusirq = i;       /* Identity mapped */
805                 intsrc.mpc_dstirq = i;
806
807                 Dprintk("Int: type %d, pol %d, trig %d, bus %d, irq %d, "
808                         "%d-%d\n", intsrc.mpc_irqtype, intsrc.mpc_irqflag & 3,
809                         (intsrc.mpc_irqflag >> 2) & 3, intsrc.mpc_srcbus,
810                         intsrc.mpc_srcbusirq, intsrc.mpc_dstapic,
811                         intsrc.mpc_dstirq);
812
813                 mp_irqs[mp_irq_entries] = intsrc;
814                 if (++mp_irq_entries == MAX_IRQ_SOURCES)
815                         panic("Max # of irq sources exceeded!\n");
816         }
817 }
818
819 int mp_register_gsi(u32 gsi, int triggering, int polarity)
820 {
821         int ioapic = -1;
822         int ioapic_pin = 0;
823         int idx, bit = 0;
824
825         if (acpi_irq_model != ACPI_IRQ_MODEL_IOAPIC)
826                 return gsi;
827
828         /* Don't set up the ACPI SCI because it's already set up */
829         if (acpi_gbl_FADT.sci_interrupt == gsi)
830                 return gsi;
831
832         ioapic = mp_find_ioapic(gsi);
833         if (ioapic < 0) {
834                 printk(KERN_WARNING "No IOAPIC for GSI %u\n", gsi);
835                 return gsi;
836         }
837
838         ioapic_pin = gsi - mp_ioapic_routing[ioapic].gsi_base;
839
840         /* 
841          * Avoid pin reprogramming.  PRTs typically include entries  
842          * with redundant pin->gsi mappings (but unique PCI devices);
843          * we only program the IOAPIC on the first.
844          */
845         bit = ioapic_pin % 32;
846         idx = (ioapic_pin < 32) ? 0 : (ioapic_pin / 32);
847         if (idx > 3) {
848                 printk(KERN_ERR "Invalid reference to IOAPIC pin "
849                        "%d-%d\n", mp_ioapic_routing[ioapic].apic_id,
850                        ioapic_pin);
851                 return gsi;
852         }
853         if ((1 << bit) & mp_ioapic_routing[ioapic].pin_programmed[idx]) {
854                 Dprintk(KERN_DEBUG "Pin %d-%d already programmed\n",
855                         mp_ioapic_routing[ioapic].apic_id, ioapic_pin);
856                 return gsi;
857         }
858
859         mp_ioapic_routing[ioapic].pin_programmed[idx] |= (1 << bit);
860
861         io_apic_set_pci_routing(ioapic, ioapic_pin, gsi,
862                                 triggering == ACPI_EDGE_SENSITIVE ? 0 : 1,
863                                 polarity == ACPI_ACTIVE_HIGH ? 0 : 1);
864         return gsi;
865 }
866 #endif /* CONFIG_ACPI */