x86: change x86_64 sanity checks to match i386.
[sfrench/cifs-2.6.git] / arch / x86 / kernel / mpparse_64.c
1 /*
2  *      Intel Multiprocessor Specification 1.1 and 1.4
3  *      compliant MP-table parsing routines.
4  *
5  *      (c) 1995 Alan Cox, Building #3 <alan@redhat.com>
6  *      (c) 1998, 1999, 2000 Ingo Molnar <mingo@redhat.com>
7  *
8  *      Fixes
9  *              Erich Boleyn    :       MP v1.4 and additional changes.
10  *              Alan Cox        :       Added EBDA scanning
11  *              Ingo Molnar     :       various cleanups and rewrites
12  *              Maciej W. Rozycki:      Bits for default MP configurations
13  *              Paul Diefenbaugh:       Added full ACPI support
14  */
15
16 #include <linux/mm.h>
17 #include <linux/init.h>
18 #include <linux/delay.h>
19 #include <linux/bootmem.h>
20 #include <linux/kernel_stat.h>
21 #include <linux/mc146818rtc.h>
22 #include <linux/acpi.h>
23 #include <linux/module.h>
24
25 #include <asm/smp.h>
26 #include <asm/mtrr.h>
27 #include <asm/mpspec.h>
28 #include <asm/pgalloc.h>
29 #include <asm/io_apic.h>
30 #include <asm/proto.h>
31 #include <asm/acpi.h>
32
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
60
61 /* Processor that is doing the boot up */
62 unsigned int boot_cpu_physical_apicid = -1U;
63 EXPORT_SYMBOL(boot_cpu_physical_apicid);
64
65 /* Internal processor count */
66 unsigned int num_processors;
67
68 unsigned disabled_cpus __cpuinitdata;
69
70 /* Bitmask of physically existing CPUs */
71 physid_mask_t phys_cpu_present_map = PHYSID_MASK_NONE;
72
73 u16 x86_bios_cpu_apicid_init[NR_CPUS] __initdata
74                                 = { [0 ... NR_CPUS-1] = BAD_APICID };
75 void *x86_bios_cpu_apicid_early_ptr;
76 DEFINE_PER_CPU(u16, x86_bios_cpu_apicid) = BAD_APICID;
77 EXPORT_PER_CPU_SYMBOL(x86_bios_cpu_apicid);
78
79
80 /*
81  * Intel MP BIOS table parsing routines:
82  */
83
84 /*
85  * Checksum an MP configuration block.
86  */
87
88 static int __init mpf_checksum(unsigned char *mp, int len)
89 {
90         int sum = 0;
91
92         while (len--)
93                 sum += *mp++;
94
95         return sum & 0xFF;
96 }
97
98 static void __cpuinit MP_processor_info(struct mpc_config_processor *m)
99 {
100         int cpu;
101         cpumask_t tmp_map;
102         char *bootup_cpu = "";
103
104         if (!(m->mpc_cpuflag & CPU_ENABLED)) {
105                 disabled_cpus++;
106                 return;
107         }
108         if (m->mpc_cpuflag & CPU_BOOTPROCESSOR) {
109                 bootup_cpu = " (Bootup-CPU)";
110                 boot_cpu_physical_apicid = m->mpc_apicid;
111         }
112
113         printk(KERN_INFO "Processor #%d%s\n", m->mpc_apicid, bootup_cpu);
114
115         if (num_processors >= NR_CPUS) {
116                 printk(KERN_WARNING "WARNING: NR_CPUS limit of %i reached."
117                         " Processor ignored.\n", NR_CPUS);
118                 return;
119         }
120
121         if (num_processors >= maxcpus) {
122                 printk(KERN_WARNING "WARNING: maxcpus limit of %i reached."
123                         " Processor ignored.\n", maxcpus);
124                 return;
125         }
126
127         num_processors++;
128         cpus_complement(tmp_map, cpu_present_map);
129         cpu = first_cpu(tmp_map);
130
131         physid_set(m->mpc_apicid, phys_cpu_present_map);
132         if (m->mpc_cpuflag & CPU_BOOTPROCESSOR) {
133                 /*
134                  * x86_bios_cpu_apicid is required to have processors listed
135                  * in same order as logical cpu numbers. Hence the first
136                  * entry is BSP, and so on.
137                  */
138                 cpu = 0;
139         }
140         /* are we being called early in kernel startup? */
141         if (x86_cpu_to_apicid_early_ptr) {
142                 u16 *cpu_to_apicid = x86_cpu_to_apicid_early_ptr;
143                 u16 *bios_cpu_apicid = x86_bios_cpu_apicid_early_ptr;
144
145                 cpu_to_apicid[cpu] = m->mpc_apicid;
146                 bios_cpu_apicid[cpu] = m->mpc_apicid;
147         } else {
148                 per_cpu(x86_cpu_to_apicid, cpu) = m->mpc_apicid;
149                 per_cpu(x86_bios_cpu_apicid, cpu) = m->mpc_apicid;
150         }
151
152         cpu_set(cpu, cpu_possible_map);
153         cpu_set(cpu, cpu_present_map);
154 }
155
156 static void __init MP_bus_info (struct mpc_config_bus *m)
157 {
158         char str[7];
159
160         memcpy(str, m->mpc_bustype, 6);
161         str[6] = 0;
162         Dprintk("Bus #%d is %s\n", m->mpc_busid, str);
163
164         if (strncmp(str, "ISA", 3) == 0) {
165                 set_bit(m->mpc_busid, mp_bus_not_pci);
166         } else if (strncmp(str, "PCI", 3) == 0) {
167                 clear_bit(m->mpc_busid, mp_bus_not_pci);
168                 mp_bus_id_to_pci_bus[m->mpc_busid] = mp_current_pci_id;
169                 mp_current_pci_id++;
170         } else {
171                 printk(KERN_ERR "Unknown bustype %s\n", str);
172         }
173 }
174
175 static int bad_ioapic(unsigned long address)
176 {
177         if (nr_ioapics >= MAX_IO_APICS) {
178                 printk(KERN_ERR "ERROR: Max # of I/O APICs (%d) exceeded "
179                         "(found %d)\n", MAX_IO_APICS, nr_ioapics);
180                 panic("Recompile kernel with bigger MAX_IO_APICS!\n");
181         }
182         if (!address) {
183                 printk(KERN_ERR "WARNING: Bogus (zero) I/O APIC address"
184                         " found in table, skipping!\n");
185                 return 1;
186         }
187         return 0;
188 }
189
190 static void __init MP_ioapic_info (struct mpc_config_ioapic *m)
191 {
192         if (!(m->mpc_flags & MPC_APIC_USABLE))
193                 return;
194
195         printk("I/O APIC #%d at 0x%X.\n",
196                 m->mpc_apicid, m->mpc_apicaddr);
197
198         if (bad_ioapic(m->mpc_apicaddr))
199                 return;
200
201         mp_ioapics[nr_ioapics] = *m;
202         nr_ioapics++;
203 }
204
205 static void __init MP_intsrc_info (struct mpc_config_intsrc *m)
206 {
207         mp_irqs [mp_irq_entries] = *m;
208         Dprintk("Int: type %d, pol %d, trig %d, bus %d,"
209                 " IRQ %02x, APIC ID %x, APIC INT %02x\n",
210                         m->mpc_irqtype, m->mpc_irqflag & 3,
211                         (m->mpc_irqflag >> 2) & 3, m->mpc_srcbus,
212                         m->mpc_srcbusirq, m->mpc_dstapic, m->mpc_dstirq);
213         if (++mp_irq_entries >= MAX_IRQ_SOURCES)
214                 panic("Max # of irq sources exceeded!!\n");
215 }
216
217 static void __init MP_lintsrc_info (struct mpc_config_lintsrc *m)
218 {
219         Dprintk("Lint: type %d, pol %d, trig %d, bus %d,"
220                 " IRQ %02x, APIC ID %x, APIC LINT %02x\n",
221                         m->mpc_irqtype, m->mpc_irqflag & 3,
222                         (m->mpc_irqflag >> 2) &3, m->mpc_srcbusid,
223                         m->mpc_srcbusirq, m->mpc_destapic, m->mpc_destapiclint);
224 }
225
226 /*
227  * Read/parse the MPC
228  */
229 static int __init smp_read_mpc(struct mp_config_table *mpc, unsigned early)
230 {
231         char str[16];
232         int count=sizeof(*mpc);
233         unsigned char *mpt=((unsigned char *)mpc)+count;
234
235         if (memcmp(mpc->mpc_signature,MPC_SIGNATURE,4)) {
236                 printk("MPTABLE: bad signature [%c%c%c%c]!\n",
237                         mpc->mpc_signature[0],
238                         mpc->mpc_signature[1],
239                         mpc->mpc_signature[2],
240                         mpc->mpc_signature[3]);
241                 return 0;
242         }
243         if (mpf_checksum((unsigned char *)mpc,mpc->mpc_length)) {
244                 printk("MPTABLE: checksum error!\n");
245                 return 0;
246         }
247         if (mpc->mpc_spec!=0x01 && mpc->mpc_spec!=0x04) {
248                 printk(KERN_ERR "MPTABLE: bad table version (%d)!!\n",
249                         mpc->mpc_spec);
250                 return 0;
251         }
252         if (!mpc->mpc_lapic) {
253                 printk(KERN_ERR "MPTABLE: null local APIC address!\n");
254                 return 0;
255         }
256         memcpy(str,mpc->mpc_oem,8);
257         str[8] = 0;
258         printk(KERN_INFO "MPTABLE: OEM ID: %s ",str);
259
260         memcpy(str,mpc->mpc_productid,12);
261         str[12] = 0;
262         printk("MPTABLE: Product ID: %s ",str);
263
264         printk("MPTABLE: APIC at: 0x%X\n",mpc->mpc_lapic);
265
266         /* save the local APIC address, it might be non-default */
267         if (!acpi_lapic)
268                 mp_lapic_addr = mpc->mpc_lapic;
269
270         if (early)
271                 return 1;
272
273         /*
274          *      Now process the configuration blocks.
275          */
276         while (count < mpc->mpc_length) {
277                 switch(*mpt) {
278                         case MP_PROCESSOR:
279                         {
280                                 struct mpc_config_processor *m=
281                                         (struct mpc_config_processor *)mpt;
282                                 if (!acpi_lapic)
283                                         MP_processor_info(m);
284                                 mpt += sizeof(*m);
285                                 count += sizeof(*m);
286                                 break;
287                         }
288                         case MP_BUS:
289                         {
290                                 struct mpc_config_bus *m=
291                                         (struct mpc_config_bus *)mpt;
292                                 MP_bus_info(m);
293                                 mpt += sizeof(*m);
294                                 count += sizeof(*m);
295                                 break;
296                         }
297                         case MP_IOAPIC:
298                         {
299                                 struct mpc_config_ioapic *m=
300                                         (struct mpc_config_ioapic *)mpt;
301                                 MP_ioapic_info(m);
302                                 mpt += sizeof(*m);
303                                 count += sizeof(*m);
304                                 break;
305                         }
306                         case MP_INTSRC:
307                         {
308                                 struct mpc_config_intsrc *m=
309                                         (struct mpc_config_intsrc *)mpt;
310
311                                 MP_intsrc_info(m);
312                                 mpt += sizeof(*m);
313                                 count += sizeof(*m);
314                                 break;
315                         }
316                         case MP_LINTSRC:
317                         {
318                                 struct mpc_config_lintsrc *m=
319                                         (struct mpc_config_lintsrc *)mpt;
320                                 MP_lintsrc_info(m);
321                                 mpt += sizeof(*m);
322                                 count += sizeof(*m);
323                                 break;
324                         }
325                 }
326         }
327         setup_apic_routing();
328         if (!num_processors)
329                 printk(KERN_ERR "MPTABLE: no processors registered!\n");
330         return num_processors;
331 }
332
333 static int __init ELCR_trigger(unsigned int irq)
334 {
335         unsigned int port;
336
337         port = 0x4d0 + (irq >> 3);
338         return (inb(port) >> (irq & 7)) & 1;
339 }
340
341 static void __init construct_default_ioirq_mptable(int mpc_default_type)
342 {
343         struct mpc_config_intsrc intsrc;
344         int i;
345         int ELCR_fallback = 0;
346
347         intsrc.mpc_type = MP_INTSRC;
348         intsrc.mpc_irqflag = 0;                 /* conforming */
349         intsrc.mpc_srcbus = 0;
350         intsrc.mpc_dstapic = mp_ioapics[0].mpc_apicid;
351
352         intsrc.mpc_irqtype = mp_INT;
353
354         /*
355          *  If true, we have an ISA/PCI system with no IRQ entries
356          *  in the MP table. To prevent the PCI interrupts from being set up
357          *  incorrectly, we try to use the ELCR. The sanity check to see if
358          *  there is good ELCR data is very simple - IRQ0, 1, 2 and 13 can
359          *  never be level sensitive, so we simply see if the ELCR agrees.
360          *  If it does, we assume it's valid.
361          */
362         if (mpc_default_type == 5) {
363                 printk(KERN_INFO "ISA/PCI bus type with no IRQ information... falling back to ELCR\n");
364
365                 if (ELCR_trigger(0) || ELCR_trigger(1) || ELCR_trigger(2) || ELCR_trigger(13))
366                         printk(KERN_ERR "ELCR contains invalid data... not using ELCR\n");
367                 else {
368                         printk(KERN_INFO "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", mpf->mpf_feature1);
518                 construct_default_ISA_mptable(mpf->mpf_feature1);
519
520         } else if (mpf->mpf_physptr) {
521
522                 /*
523                  * Read the physical hardware table.  Anything here will
524                  * override the defaults.
525                  */
526                 if (!smp_read_mpc(phys_to_virt(mpf->mpf_physptr), early)) {
527                         smp_found_config = 0;
528                         printk(KERN_ERR "BIOS bug, MP table errors detected!...\n");
529                         printk(KERN_ERR "... disabling SMP support. (tell your hw vendor)\n");
530                         return;
531                 }
532
533                 if (early)
534                         return;
535                 /*
536                  * If there are no explicit MP IRQ entries, then we are
537                  * broken.  We set up most of the low 16 IO-APIC pins to
538                  * ISA defaults and hope it will work.
539                  */
540                 if (!mp_irq_entries) {
541                         struct mpc_config_bus bus;
542
543                         printk(KERN_ERR "BIOS bug, no explicit IRQ entries, using default mptable. (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
639         address = *(unsigned short *)phys_to_virt(0x40E);
640         address <<= 4;
641         if (smp_scan_config(address, 0x1000, reserve))
642                 return;
643
644         /* If we have come this far, we did not find an MP table  */
645          printk(KERN_INFO "No mptable found.\n");
646 }
647
648 void __init early_find_smp_config(void)
649 {
650         __find_smp_config(0);
651 }
652
653 void __init find_smp_config(void)
654 {
655         __find_smp_config(1);
656 }
657
658 /* --------------------------------------------------------------------------
659                             ACPI-based MP Configuration
660    -------------------------------------------------------------------------- */
661
662 #ifdef CONFIG_ACPI
663
664 void __init mp_register_lapic_address(u64 address)
665 {
666         mp_lapic_addr = (unsigned long) address;
667         set_fixmap_nocache(FIX_APIC_BASE, mp_lapic_addr);
668         if (boot_cpu_physical_apicid == -1U)
669                 boot_cpu_physical_apicid  = GET_APIC_ID(apic_read(APIC_ID));
670 }
671
672 void __cpuinit mp_register_lapic (u8 id, u8 enabled)
673 {
674         struct mpc_config_processor processor;
675         int                     boot_cpu = 0;
676         
677         if (id == boot_cpu_physical_apicid)
678                 boot_cpu = 1;
679
680         processor.mpc_type = MP_PROCESSOR;
681         processor.mpc_apicid = id;
682         processor.mpc_apicver = 0;
683         processor.mpc_cpuflag = (enabled ? CPU_ENABLED : 0);
684         processor.mpc_cpuflag |= (boot_cpu ? CPU_BOOTPROCESSOR : 0);
685         processor.mpc_cpufeature = 0;
686         processor.mpc_featureflag = 0;
687         processor.mpc_reserved[0] = 0;
688         processor.mpc_reserved[1] = 0;
689
690         MP_processor_info(&processor);
691 }
692
693 #define MP_ISA_BUS              0
694 #define MP_MAX_IOAPIC_PIN       127
695
696 static struct mp_ioapic_routing {
697         int                     apic_id;
698         int                     gsi_start;
699         int                     gsi_end;
700         u32                     pin_programmed[4];
701 } mp_ioapic_routing[MAX_IO_APICS];
702
703 static int mp_find_ioapic(int gsi)
704 {
705         int i = 0;
706
707         /* Find the IOAPIC that manages this GSI. */
708         for (i = 0; i < nr_ioapics; i++) {
709                 if ((gsi >= mp_ioapic_routing[i].gsi_start)
710                         && (gsi <= mp_ioapic_routing[i].gsi_end))
711                         return i;
712         }
713
714         printk(KERN_ERR "ERROR: Unable to locate IOAPIC for GSI %d\n", gsi);
715         return -1;
716 }
717
718 static u8 uniq_ioapic_id(u8 id)
719 {
720         int i;
721         DECLARE_BITMAP(used, 256);
722         bitmap_zero(used, 256);
723         for (i = 0; i < nr_ioapics; i++) {
724                 struct mpc_config_ioapic *ia = &mp_ioapics[i];
725                 __set_bit(ia->mpc_apicid, used);
726         }
727         if (!test_bit(id, used))
728                 return id;
729         return find_first_zero_bit(used, 256);
730 }
731
732 void __init mp_register_ioapic(u8 id, u32 address, u32 gsi_base)
733 {
734         int idx = 0;
735
736         if (bad_ioapic(address))
737                 return;
738
739         idx = nr_ioapics;
740
741         mp_ioapics[idx].mpc_type = MP_IOAPIC;
742         mp_ioapics[idx].mpc_flags = MPC_APIC_USABLE;
743         mp_ioapics[idx].mpc_apicaddr = address;
744
745         set_fixmap_nocache(FIX_IO_APIC_BASE_0 + idx, address);
746         mp_ioapics[idx].mpc_apicid = uniq_ioapic_id(id);
747         mp_ioapics[idx].mpc_apicver = 0;
748         
749         /* 
750          * Build basic IRQ lookup table to facilitate gsi->io_apic lookups
751          * and to prevent reprogramming of IOAPIC pins (PCI IRQs).
752          */
753         mp_ioapic_routing[idx].apic_id = mp_ioapics[idx].mpc_apicid;
754         mp_ioapic_routing[idx].gsi_start = gsi_base;
755         mp_ioapic_routing[idx].gsi_end = gsi_base + 
756                 io_apic_get_redir_entries(idx);
757
758         printk(KERN_INFO "IOAPIC[%d]: apic_id %d, address 0x%x, "
759                 "GSI %d-%d\n", idx, mp_ioapics[idx].mpc_apicid, 
760                 mp_ioapics[idx].mpc_apicaddr,
761                 mp_ioapic_routing[idx].gsi_start,
762                 mp_ioapic_routing[idx].gsi_end);
763
764         nr_ioapics++;
765 }
766
767 void __init
768 mp_override_legacy_irq(u8 bus_irq, u8 polarity, u8 trigger, u32 gsi)
769 {
770         struct mpc_config_intsrc intsrc;
771         int                     ioapic = -1;
772         int                     pin = -1;
773
774         /* 
775          * Convert 'gsi' to 'ioapic.pin'.
776          */
777         ioapic = mp_find_ioapic(gsi);
778         if (ioapic < 0)
779                 return;
780         pin = gsi - mp_ioapic_routing[ioapic].gsi_start;
781
782         /*
783          * TBD: This check is for faulty timer entries, where the override
784          *      erroneously sets the trigger to level, resulting in a HUGE 
785          *      increase of timer interrupts!
786          */
787         if ((bus_irq == 0) && (trigger == 3))
788                 trigger = 1;
789
790         intsrc.mpc_type = MP_INTSRC;
791         intsrc.mpc_irqtype = mp_INT;
792         intsrc.mpc_irqflag = (trigger << 2) | polarity;
793         intsrc.mpc_srcbus = MP_ISA_BUS;
794         intsrc.mpc_srcbusirq = bus_irq;                                /* IRQ */
795         intsrc.mpc_dstapic = mp_ioapics[ioapic].mpc_apicid;        /* APIC ID */
796         intsrc.mpc_dstirq = pin;                                    /* INTIN# */
797
798         Dprintk("Int: type %d, pol %d, trig %d, bus %d, irq %d, %d-%d\n", 
799                 intsrc.mpc_irqtype, intsrc.mpc_irqflag & 3, 
800                 (intsrc.mpc_irqflag >> 2) & 3, intsrc.mpc_srcbus, 
801                 intsrc.mpc_srcbusirq, intsrc.mpc_dstapic, intsrc.mpc_dstirq);
802
803         mp_irqs[mp_irq_entries] = intsrc;
804         if (++mp_irq_entries == MAX_IRQ_SOURCES)
805                 panic("Max # of irq sources exceeded!\n");
806 }
807
808 void __init mp_config_acpi_legacy_irqs(void)
809 {
810         struct mpc_config_intsrc intsrc;
811         int i = 0;
812         int ioapic = -1;
813
814         /* 
815          * Fabricate the legacy ISA bus (bus #31).
816          */
817         set_bit(MP_ISA_BUS, mp_bus_not_pci);
818
819         /* 
820          * Locate the IOAPIC that manages the ISA IRQs (0-15). 
821          */
822         ioapic = mp_find_ioapic(0);
823         if (ioapic < 0)
824                 return;
825
826         intsrc.mpc_type = MP_INTSRC;
827         intsrc.mpc_irqflag = 0;                                 /* Conforming */
828         intsrc.mpc_srcbus = MP_ISA_BUS;
829         intsrc.mpc_dstapic = mp_ioapics[ioapic].mpc_apicid;
830
831         /* 
832          * Use the default configuration for the IRQs 0-15.  Unless
833          * overridden by (MADT) interrupt source override entries.
834          */
835         for (i = 0; i < 16; i++) {
836                 int idx;
837
838                 for (idx = 0; idx < mp_irq_entries; idx++) {
839                         struct mpc_config_intsrc *irq = mp_irqs + idx;
840
841                         /* Do we already have a mapping for this ISA IRQ? */
842                         if (irq->mpc_srcbus == MP_ISA_BUS && irq->mpc_srcbusirq == i)
843                                 break;
844
845                         /* Do we already have a mapping for this IOAPIC pin */
846                         if ((irq->mpc_dstapic == intsrc.mpc_dstapic) &&
847                                 (irq->mpc_dstirq == i))
848                                 break;
849                 }
850
851                 if (idx != mp_irq_entries) {
852                         printk(KERN_DEBUG "ACPI: IRQ%d used by override.\n", i);
853                         continue;                       /* IRQ already used */
854                 }
855
856                 intsrc.mpc_irqtype = mp_INT;
857                 intsrc.mpc_srcbusirq = i;                  /* Identity mapped */
858                 intsrc.mpc_dstirq = i;
859
860                 Dprintk("Int: type %d, pol %d, trig %d, bus %d, irq %d, "
861                         "%d-%d\n", intsrc.mpc_irqtype, intsrc.mpc_irqflag & 3, 
862                         (intsrc.mpc_irqflag >> 2) & 3, intsrc.mpc_srcbus, 
863                         intsrc.mpc_srcbusirq, intsrc.mpc_dstapic, 
864                         intsrc.mpc_dstirq);
865
866                 mp_irqs[mp_irq_entries] = intsrc;
867                 if (++mp_irq_entries == MAX_IRQ_SOURCES)
868                         panic("Max # of irq sources exceeded!\n");
869         }
870 }
871
872 int mp_register_gsi(u32 gsi, int triggering, int polarity)
873 {
874         int ioapic = -1;
875         int ioapic_pin = 0;
876         int idx, bit = 0;
877
878         if (acpi_irq_model != ACPI_IRQ_MODEL_IOAPIC)
879                 return gsi;
880
881         /* Don't set up the ACPI SCI because it's already set up */
882         if (acpi_gbl_FADT.sci_interrupt == gsi)
883                 return gsi;
884
885         ioapic = mp_find_ioapic(gsi);
886         if (ioapic < 0) {
887                 printk(KERN_WARNING "No IOAPIC for GSI %u\n", gsi);
888                 return gsi;
889         }
890
891         ioapic_pin = gsi - mp_ioapic_routing[ioapic].gsi_start;
892
893         /* 
894          * Avoid pin reprogramming.  PRTs typically include entries  
895          * with redundant pin->gsi mappings (but unique PCI devices);
896          * we only program the IOAPIC on the first.
897          */
898         bit = ioapic_pin % 32;
899         idx = (ioapic_pin < 32) ? 0 : (ioapic_pin / 32);
900         if (idx > 3) {
901                 printk(KERN_ERR "Invalid reference to IOAPIC pin "
902                         "%d-%d\n", mp_ioapic_routing[ioapic].apic_id, 
903                         ioapic_pin);
904                 return gsi;
905         }
906         if ((1<<bit) & mp_ioapic_routing[ioapic].pin_programmed[idx]) {
907                 Dprintk(KERN_DEBUG "Pin %d-%d already programmed\n",
908                         mp_ioapic_routing[ioapic].apic_id, ioapic_pin);
909                 return gsi;
910         }
911
912         mp_ioapic_routing[ioapic].pin_programmed[idx] |= (1<<bit);
913
914         io_apic_set_pci_routing(ioapic, ioapic_pin, gsi,
915                 triggering == ACPI_EDGE_SENSITIVE ? 0 : 1,
916                 polarity == ACPI_ACTIVE_HIGH ? 0 : 1);
917         return gsi;
918 }
919 #endif /*CONFIG_ACPI*/