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