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