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