[IPV6]: Support IPV6_{RECV,}TCLASS socket options / ancillary data.
[sfrench/cifs-2.6.git] / arch / i386 / kernel / mpparse.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/irq.h>
18 #include <linux/init.h>
19 #include <linux/acpi.h>
20 #include <linux/delay.h>
21 #include <linux/config.h>
22 #include <linux/bootmem.h>
23 #include <linux/smp_lock.h>
24 #include <linux/kernel_stat.h>
25 #include <linux/mc146818rtc.h>
26 #include <linux/bitops.h>
27
28 #include <asm/smp.h>
29 #include <asm/acpi.h>
30 #include <asm/mtrr.h>
31 #include <asm/mpspec.h>
32 #include <asm/io_apic.h>
33
34 #include <mach_apic.h>
35 #include <mach_mpparse.h>
36 #include <bios_ebda.h>
37
38 /* Have we found an MP table */
39 int smp_found_config;
40 unsigned int __initdata maxcpus = NR_CPUS;
41
42 /*
43  * Various Linux-internal data structures created from the
44  * MP-table.
45  */
46 int apic_version [MAX_APICS];
47 int mp_bus_id_to_type [MAX_MP_BUSSES];
48 int mp_bus_id_to_node [MAX_MP_BUSSES];
49 int mp_bus_id_to_local [MAX_MP_BUSSES];
50 int quad_local_to_mp_bus_id [NR_CPUS/4][4];
51 int mp_bus_id_to_pci_bus [MAX_MP_BUSSES] = { [0 ... MAX_MP_BUSSES-1] = -1 };
52 static int mp_current_pci_id;
53
54 /* I/O APIC entries */
55 struct mpc_config_ioapic mp_ioapics[MAX_IO_APICS];
56
57 /* # of MP IRQ source entries */
58 struct mpc_config_intsrc mp_irqs[MAX_IRQ_SOURCES];
59
60 /* MP IRQ source entries */
61 int mp_irq_entries;
62
63 int nr_ioapics;
64
65 int pic_mode;
66 unsigned long mp_lapic_addr;
67
68 unsigned int def_to_bigsmp = 0;
69
70 /* Processor that is doing the boot up */
71 unsigned int boot_cpu_physical_apicid = -1U;
72 /* Internal processor count */
73 static unsigned int __initdata num_processors;
74
75 /* Bitmask of physically existing CPUs */
76 physid_mask_t phys_cpu_present_map;
77
78 u8 bios_cpu_apicid[NR_CPUS] = { [0 ... NR_CPUS-1] = BAD_APICID };
79
80 /*
81  * Intel MP BIOS table parsing routines:
82  */
83
84
85 /*
86  * Checksum an MP configuration block.
87  */
88
89 static int __init mpf_checksum(unsigned char *mp, int len)
90 {
91         int sum = 0;
92
93         while (len--)
94                 sum += *mp++;
95
96         return sum & 0xFF;
97 }
98
99 /*
100  * Have to match translation table entries to main table entries by counter
101  * hence the mpc_record variable .... can't see a less disgusting way of
102  * doing this ....
103  */
104
105 static int mpc_record; 
106 static struct mpc_config_translation *translation_table[MAX_MPC_ENTRY] __initdata;
107
108 #ifdef CONFIG_X86_NUMAQ
109 static int MP_valid_apicid(int apicid, int version)
110 {
111         return hweight_long(apicid & 0xf) == 1 && (apicid >> 4) != 0xf;
112 }
113 #else
114 static int MP_valid_apicid(int apicid, int version)
115 {
116         if (version >= 0x14)
117                 return apicid < 0xff;
118         else
119                 return apicid < 0xf;
120 }
121 #endif
122
123 static void __init MP_processor_info (struct mpc_config_processor *m)
124 {
125         int ver, apicid, cpu, found_bsp = 0;
126         physid_mask_t tmp;
127         
128         if (!(m->mpc_cpuflag & CPU_ENABLED))
129                 return;
130
131         apicid = mpc_apic_id(m, translation_table[mpc_record]);
132
133         if (m->mpc_featureflag&(1<<0))
134                 Dprintk("    Floating point unit present.\n");
135         if (m->mpc_featureflag&(1<<7))
136                 Dprintk("    Machine Exception supported.\n");
137         if (m->mpc_featureflag&(1<<8))
138                 Dprintk("    64 bit compare & exchange supported.\n");
139         if (m->mpc_featureflag&(1<<9))
140                 Dprintk("    Internal APIC present.\n");
141         if (m->mpc_featureflag&(1<<11))
142                 Dprintk("    SEP present.\n");
143         if (m->mpc_featureflag&(1<<12))
144                 Dprintk("    MTRR  present.\n");
145         if (m->mpc_featureflag&(1<<13))
146                 Dprintk("    PGE  present.\n");
147         if (m->mpc_featureflag&(1<<14))
148                 Dprintk("    MCA  present.\n");
149         if (m->mpc_featureflag&(1<<15))
150                 Dprintk("    CMOV  present.\n");
151         if (m->mpc_featureflag&(1<<16))
152                 Dprintk("    PAT  present.\n");
153         if (m->mpc_featureflag&(1<<17))
154                 Dprintk("    PSE  present.\n");
155         if (m->mpc_featureflag&(1<<18))
156                 Dprintk("    PSN  present.\n");
157         if (m->mpc_featureflag&(1<<19))
158                 Dprintk("    Cache Line Flush Instruction present.\n");
159         /* 20 Reserved */
160         if (m->mpc_featureflag&(1<<21))
161                 Dprintk("    Debug Trace and EMON Store present.\n");
162         if (m->mpc_featureflag&(1<<22))
163                 Dprintk("    ACPI Thermal Throttle Registers  present.\n");
164         if (m->mpc_featureflag&(1<<23))
165                 Dprintk("    MMX  present.\n");
166         if (m->mpc_featureflag&(1<<24))
167                 Dprintk("    FXSR  present.\n");
168         if (m->mpc_featureflag&(1<<25))
169                 Dprintk("    XMM  present.\n");
170         if (m->mpc_featureflag&(1<<26))
171                 Dprintk("    Willamette New Instructions  present.\n");
172         if (m->mpc_featureflag&(1<<27))
173                 Dprintk("    Self Snoop  present.\n");
174         if (m->mpc_featureflag&(1<<28))
175                 Dprintk("    HT  present.\n");
176         if (m->mpc_featureflag&(1<<29))
177                 Dprintk("    Thermal Monitor present.\n");
178         /* 30, 31 Reserved */
179
180
181         if (m->mpc_cpuflag & CPU_BOOTPROCESSOR) {
182                 Dprintk("    Bootup CPU\n");
183                 boot_cpu_physical_apicid = m->mpc_apicid;
184                 found_bsp = 1;
185         }
186
187         if (num_processors >= NR_CPUS) {
188                 printk(KERN_WARNING "WARNING: NR_CPUS limit of %i reached."
189                         "  Processor ignored.\n", NR_CPUS); 
190                 return;
191         }
192
193         if (num_processors >= maxcpus) {
194                 printk(KERN_WARNING "WARNING: maxcpus limit of %i reached."
195                         " Processor ignored.\n", maxcpus); 
196                 return;
197         }
198         num_processors++;
199         ver = m->mpc_apicver;
200
201         if (!MP_valid_apicid(apicid, ver)) {
202                 printk(KERN_WARNING "Processor #%d INVALID. (Max ID: %d).\n",
203                         m->mpc_apicid, MAX_APICS);
204                 --num_processors;
205                 return;
206         }
207
208         if (found_bsp)
209                 cpu = 0;
210         else
211                 cpu = num_processors - 1;
212         cpu_set(cpu, cpu_possible_map);
213         tmp = apicid_to_cpu_present(apicid);
214         physids_or(phys_cpu_present_map, phys_cpu_present_map, tmp);
215         
216         /*
217          * Validate version
218          */
219         if (ver == 0x0) {
220                 printk(KERN_WARNING "BIOS bug, APIC version is 0 for CPU#%d! fixing up to 0x10. (tell your hw vendor)\n", m->mpc_apicid);
221                 ver = 0x10;
222         }
223         apic_version[m->mpc_apicid] = ver;
224         if ((num_processors > 8) &&
225             APIC_XAPIC(ver) &&
226             (boot_cpu_data.x86_vendor == X86_VENDOR_INTEL))
227                 def_to_bigsmp = 1;
228         else
229                 def_to_bigsmp = 0;
230
231         bios_cpu_apicid[num_processors - 1] = m->mpc_apicid;
232 }
233
234 static void __init MP_bus_info (struct mpc_config_bus *m)
235 {
236         char str[7];
237
238         memcpy(str, m->mpc_bustype, 6);
239         str[6] = 0;
240
241         mpc_oem_bus_info(m, str, translation_table[mpc_record]);
242
243         if (strncmp(str, BUSTYPE_ISA, sizeof(BUSTYPE_ISA)-1) == 0) {
244                 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_ISA;
245         } else if (strncmp(str, BUSTYPE_EISA, sizeof(BUSTYPE_EISA)-1) == 0) {
246                 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_EISA;
247         } else if (strncmp(str, BUSTYPE_PCI, sizeof(BUSTYPE_PCI)-1) == 0) {
248                 mpc_oem_pci_bus(m, translation_table[mpc_record]);
249                 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_PCI;
250                 mp_bus_id_to_pci_bus[m->mpc_busid] = mp_current_pci_id;
251                 mp_current_pci_id++;
252         } else if (strncmp(str, BUSTYPE_MCA, sizeof(BUSTYPE_MCA)-1) == 0) {
253                 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_MCA;
254         } else if (strncmp(str, BUSTYPE_NEC98, sizeof(BUSTYPE_NEC98)-1) == 0) {
255                 mp_bus_id_to_type[m->mpc_busid] = MP_BUS_NEC98;
256         } else {
257                 printk(KERN_WARNING "Unknown bustype %s - ignoring\n", str);
258         }
259 }
260
261 static void __init MP_ioapic_info (struct mpc_config_ioapic *m)
262 {
263         if (!(m->mpc_flags & MPC_APIC_USABLE))
264                 return;
265
266         printk(KERN_INFO "I/O APIC #%d Version %d at 0x%lX.\n",
267                 m->mpc_apicid, m->mpc_apicver, m->mpc_apicaddr);
268         if (nr_ioapics >= MAX_IO_APICS) {
269                 printk(KERN_CRIT "Max # of I/O APICs (%d) exceeded (found %d).\n",
270                         MAX_IO_APICS, nr_ioapics);
271                 panic("Recompile kernel with bigger MAX_IO_APICS!.\n");
272         }
273         if (!m->mpc_apicaddr) {
274                 printk(KERN_ERR "WARNING: bogus zero I/O APIC address"
275                         " found in MP table, skipping!\n");
276                 return;
277         }
278         mp_ioapics[nr_ioapics] = *m;
279         nr_ioapics++;
280 }
281
282 static void __init MP_intsrc_info (struct mpc_config_intsrc *m)
283 {
284         mp_irqs [mp_irq_entries] = *m;
285         Dprintk("Int: type %d, pol %d, trig %d, bus %d,"
286                 " IRQ %02x, APIC ID %x, APIC INT %02x\n",
287                         m->mpc_irqtype, m->mpc_irqflag & 3,
288                         (m->mpc_irqflag >> 2) & 3, m->mpc_srcbus,
289                         m->mpc_srcbusirq, m->mpc_dstapic, m->mpc_dstirq);
290         if (++mp_irq_entries == MAX_IRQ_SOURCES)
291                 panic("Max # of irq sources exceeded!!\n");
292 }
293
294 static void __init MP_lintsrc_info (struct mpc_config_lintsrc *m)
295 {
296         Dprintk("Lint: type %d, pol %d, trig %d, bus %d,"
297                 " IRQ %02x, APIC ID %x, APIC LINT %02x\n",
298                         m->mpc_irqtype, m->mpc_irqflag & 3,
299                         (m->mpc_irqflag >> 2) &3, m->mpc_srcbusid,
300                         m->mpc_srcbusirq, m->mpc_destapic, m->mpc_destapiclint);
301         /*
302          * Well it seems all SMP boards in existence
303          * use ExtINT/LVT1 == LINT0 and
304          * NMI/LVT2 == LINT1 - the following check
305          * will show us if this assumptions is false.
306          * Until then we do not have to add baggage.
307          */
308         if ((m->mpc_irqtype == mp_ExtINT) &&
309                 (m->mpc_destapiclint != 0))
310                         BUG();
311         if ((m->mpc_irqtype == mp_NMI) &&
312                 (m->mpc_destapiclint != 1))
313                         BUG();
314 }
315
316 #ifdef CONFIG_X86_NUMAQ
317 static void __init MP_translation_info (struct mpc_config_translation *m)
318 {
319         printk(KERN_INFO "Translation: record %d, type %d, quad %d, global %d, local %d\n", mpc_record, m->trans_type, m->trans_quad, m->trans_global, m->trans_local);
320
321         if (mpc_record >= MAX_MPC_ENTRY) 
322                 printk(KERN_ERR "MAX_MPC_ENTRY exceeded!\n");
323         else
324                 translation_table[mpc_record] = m; /* stash this for later */
325         if (m->trans_quad < MAX_NUMNODES && !node_online(m->trans_quad))
326                 node_set_online(m->trans_quad);
327 }
328
329 /*
330  * Read/parse the MPC oem tables
331  */
332
333 static void __init smp_read_mpc_oem(struct mp_config_oemtable *oemtable, \
334         unsigned short oemsize)
335 {
336         int count = sizeof (*oemtable); /* the header size */
337         unsigned char *oemptr = ((unsigned char *)oemtable)+count;
338         
339         mpc_record = 0;
340         printk(KERN_INFO "Found an OEM MPC table at %8p - parsing it ... \n", oemtable);
341         if (memcmp(oemtable->oem_signature,MPC_OEM_SIGNATURE,4))
342         {
343                 printk(KERN_WARNING "SMP mpc oemtable: bad signature [%c%c%c%c]!\n",
344                         oemtable->oem_signature[0],
345                         oemtable->oem_signature[1],
346                         oemtable->oem_signature[2],
347                         oemtable->oem_signature[3]);
348                 return;
349         }
350         if (mpf_checksum((unsigned char *)oemtable,oemtable->oem_length))
351         {
352                 printk(KERN_WARNING "SMP oem mptable: checksum error!\n");
353                 return;
354         }
355         while (count < oemtable->oem_length) {
356                 switch (*oemptr) {
357                         case MP_TRANSLATION:
358                         {
359                                 struct mpc_config_translation *m=
360                                         (struct mpc_config_translation *)oemptr;
361                                 MP_translation_info(m);
362                                 oemptr += sizeof(*m);
363                                 count += sizeof(*m);
364                                 ++mpc_record;
365                                 break;
366                         }
367                         default:
368                         {
369                                 printk(KERN_WARNING "Unrecognised OEM table entry type! - %d\n", (int) *oemptr);
370                                 return;
371                         }
372                 }
373        }
374 }
375
376 static inline void mps_oem_check(struct mp_config_table *mpc, char *oem,
377                 char *productid)
378 {
379         if (strncmp(oem, "IBM NUMA", 8))
380                 printk("Warning!  May not be a NUMA-Q system!\n");
381         if (mpc->mpc_oemptr)
382                 smp_read_mpc_oem((struct mp_config_oemtable *) mpc->mpc_oemptr,
383                                 mpc->mpc_oemsize);
384 }
385 #endif  /* CONFIG_X86_NUMAQ */
386
387 /*
388  * Read/parse the MPC
389  */
390
391 static int __init smp_read_mpc(struct mp_config_table *mpc)
392 {
393         char str[16];
394         char oem[10];
395         int count=sizeof(*mpc);
396         unsigned char *mpt=((unsigned char *)mpc)+count;
397
398         if (memcmp(mpc->mpc_signature,MPC_SIGNATURE,4)) {
399                 printk(KERN_ERR "SMP mptable: bad signature [0x%x]!\n",
400                         *(u32 *)mpc->mpc_signature);
401                 return 0;
402         }
403         if (mpf_checksum((unsigned char *)mpc,mpc->mpc_length)) {
404                 printk(KERN_ERR "SMP mptable: checksum error!\n");
405                 return 0;
406         }
407         if (mpc->mpc_spec!=0x01 && mpc->mpc_spec!=0x04) {
408                 printk(KERN_ERR "SMP mptable: bad table version (%d)!!\n",
409                         mpc->mpc_spec);
410                 return 0;
411         }
412         if (!mpc->mpc_lapic) {
413                 printk(KERN_ERR "SMP mptable: null local APIC address!\n");
414                 return 0;
415         }
416         memcpy(oem,mpc->mpc_oem,8);
417         oem[8]=0;
418         printk(KERN_INFO "OEM ID: %s ",oem);
419
420         memcpy(str,mpc->mpc_productid,12);
421         str[12]=0;
422         printk("Product ID: %s ",str);
423
424         mps_oem_check(mpc, oem, str);
425
426         printk("APIC at: 0x%lX\n",mpc->mpc_lapic);
427
428         /* 
429          * Save the local APIC address (it might be non-default) -- but only
430          * if we're not using ACPI.
431          */
432         if (!acpi_lapic)
433                 mp_lapic_addr = mpc->mpc_lapic;
434
435         /*
436          *      Now process the configuration blocks.
437          */
438         mpc_record = 0;
439         while (count < mpc->mpc_length) {
440                 switch(*mpt) {
441                         case MP_PROCESSOR:
442                         {
443                                 struct mpc_config_processor *m=
444                                         (struct mpc_config_processor *)mpt;
445                                 /* ACPI may have already provided this data */
446                                 if (!acpi_lapic)
447                                         MP_processor_info(m);
448                                 mpt += sizeof(*m);
449                                 count += sizeof(*m);
450                                 break;
451                         }
452                         case MP_BUS:
453                         {
454                                 struct mpc_config_bus *m=
455                                         (struct mpc_config_bus *)mpt;
456                                 MP_bus_info(m);
457                                 mpt += sizeof(*m);
458                                 count += sizeof(*m);
459                                 break;
460                         }
461                         case MP_IOAPIC:
462                         {
463                                 struct mpc_config_ioapic *m=
464                                         (struct mpc_config_ioapic *)mpt;
465                                 MP_ioapic_info(m);
466                                 mpt+=sizeof(*m);
467                                 count+=sizeof(*m);
468                                 break;
469                         }
470                         case MP_INTSRC:
471                         {
472                                 struct mpc_config_intsrc *m=
473                                         (struct mpc_config_intsrc *)mpt;
474
475                                 MP_intsrc_info(m);
476                                 mpt+=sizeof(*m);
477                                 count+=sizeof(*m);
478                                 break;
479                         }
480                         case MP_LINTSRC:
481                         {
482                                 struct mpc_config_lintsrc *m=
483                                         (struct mpc_config_lintsrc *)mpt;
484                                 MP_lintsrc_info(m);
485                                 mpt+=sizeof(*m);
486                                 count+=sizeof(*m);
487                                 break;
488                         }
489                         default:
490                         {
491                                 count = mpc->mpc_length;
492                                 break;
493                         }
494                 }
495                 ++mpc_record;
496         }
497         clustered_apic_check();
498         if (!num_processors)
499                 printk(KERN_ERR "SMP mptable: no processors registered!\n");
500         return num_processors;
501 }
502
503 static int __init ELCR_trigger(unsigned int irq)
504 {
505         unsigned int port;
506
507         port = 0x4d0 + (irq >> 3);
508         return (inb(port) >> (irq & 7)) & 1;
509 }
510
511 static void __init construct_default_ioirq_mptable(int mpc_default_type)
512 {
513         struct mpc_config_intsrc intsrc;
514         int i;
515         int ELCR_fallback = 0;
516
517         intsrc.mpc_type = MP_INTSRC;
518         intsrc.mpc_irqflag = 0;                 /* conforming */
519         intsrc.mpc_srcbus = 0;
520         intsrc.mpc_dstapic = mp_ioapics[0].mpc_apicid;
521
522         intsrc.mpc_irqtype = mp_INT;
523
524         /*
525          *  If true, we have an ISA/PCI system with no IRQ entries
526          *  in the MP table. To prevent the PCI interrupts from being set up
527          *  incorrectly, we try to use the ELCR. The sanity check to see if
528          *  there is good ELCR data is very simple - IRQ0, 1, 2 and 13 can
529          *  never be level sensitive, so we simply see if the ELCR agrees.
530          *  If it does, we assume it's valid.
531          */
532         if (mpc_default_type == 5) {
533                 printk(KERN_INFO "ISA/PCI bus type with no IRQ information... falling back to ELCR\n");
534
535                 if (ELCR_trigger(0) || ELCR_trigger(1) || ELCR_trigger(2) || ELCR_trigger(13))
536                         printk(KERN_WARNING "ELCR contains invalid data... not using ELCR\n");
537                 else {
538                         printk(KERN_INFO "Using ELCR to identify PCI interrupts\n");
539                         ELCR_fallback = 1;
540                 }
541         }
542
543         for (i = 0; i < 16; i++) {
544                 switch (mpc_default_type) {
545                 case 2:
546                         if (i == 0 || i == 13)
547                                 continue;       /* IRQ0 & IRQ13 not connected */
548                         /* fall through */
549                 default:
550                         if (i == 2)
551                                 continue;       /* IRQ2 is never connected */
552                 }
553
554                 if (ELCR_fallback) {
555                         /*
556                          *  If the ELCR indicates a level-sensitive interrupt, we
557                          *  copy that information over to the MP table in the
558                          *  irqflag field (level sensitive, active high polarity).
559                          */
560                         if (ELCR_trigger(i))
561                                 intsrc.mpc_irqflag = 13;
562                         else
563                                 intsrc.mpc_irqflag = 0;
564                 }
565
566                 intsrc.mpc_srcbusirq = i;
567                 intsrc.mpc_dstirq = i ? i : 2;          /* IRQ0 to INTIN2 */
568                 MP_intsrc_info(&intsrc);
569         }
570
571         intsrc.mpc_irqtype = mp_ExtINT;
572         intsrc.mpc_srcbusirq = 0;
573         intsrc.mpc_dstirq = 0;                          /* 8259A to INTIN0 */
574         MP_intsrc_info(&intsrc);
575 }
576
577 static inline void __init construct_default_ISA_mptable(int mpc_default_type)
578 {
579         struct mpc_config_processor processor;
580         struct mpc_config_bus bus;
581         struct mpc_config_ioapic ioapic;
582         struct mpc_config_lintsrc lintsrc;
583         int linttypes[2] = { mp_ExtINT, mp_NMI };
584         int i;
585
586         /*
587          * local APIC has default address
588          */
589         mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
590
591         /*
592          * 2 CPUs, numbered 0 & 1.
593          */
594         processor.mpc_type = MP_PROCESSOR;
595         /* Either an integrated APIC or a discrete 82489DX. */
596         processor.mpc_apicver = mpc_default_type > 4 ? 0x10 : 0x01;
597         processor.mpc_cpuflag = CPU_ENABLED;
598         processor.mpc_cpufeature = (boot_cpu_data.x86 << 8) |
599                                    (boot_cpu_data.x86_model << 4) |
600                                    boot_cpu_data.x86_mask;
601         processor.mpc_featureflag = boot_cpu_data.x86_capability[0];
602         processor.mpc_reserved[0] = 0;
603         processor.mpc_reserved[1] = 0;
604         for (i = 0; i < 2; i++) {
605                 processor.mpc_apicid = i;
606                 MP_processor_info(&processor);
607         }
608
609         bus.mpc_type = MP_BUS;
610         bus.mpc_busid = 0;
611         switch (mpc_default_type) {
612                 default:
613                         printk("???\n");
614                         printk(KERN_ERR "Unknown standard configuration %d\n",
615                                 mpc_default_type);
616                         /* fall through */
617                 case 1:
618                 case 5:
619                         memcpy(bus.mpc_bustype, "ISA   ", 6);
620                         break;
621                 case 2:
622                 case 6:
623                 case 3:
624                         memcpy(bus.mpc_bustype, "EISA  ", 6);
625                         break;
626                 case 4:
627                 case 7:
628                         memcpy(bus.mpc_bustype, "MCA   ", 6);
629         }
630         MP_bus_info(&bus);
631         if (mpc_default_type > 4) {
632                 bus.mpc_busid = 1;
633                 memcpy(bus.mpc_bustype, "PCI   ", 6);
634                 MP_bus_info(&bus);
635         }
636
637         ioapic.mpc_type = MP_IOAPIC;
638         ioapic.mpc_apicid = 2;
639         ioapic.mpc_apicver = mpc_default_type > 4 ? 0x10 : 0x01;
640         ioapic.mpc_flags = MPC_APIC_USABLE;
641         ioapic.mpc_apicaddr = 0xFEC00000;
642         MP_ioapic_info(&ioapic);
643
644         /*
645          * We set up most of the low 16 IO-APIC pins according to MPS rules.
646          */
647         construct_default_ioirq_mptable(mpc_default_type);
648
649         lintsrc.mpc_type = MP_LINTSRC;
650         lintsrc.mpc_irqflag = 0;                /* conforming */
651         lintsrc.mpc_srcbusid = 0;
652         lintsrc.mpc_srcbusirq = 0;
653         lintsrc.mpc_destapic = MP_APIC_ALL;
654         for (i = 0; i < 2; i++) {
655                 lintsrc.mpc_irqtype = linttypes[i];
656                 lintsrc.mpc_destapiclint = i;
657                 MP_lintsrc_info(&lintsrc);
658         }
659 }
660
661 static struct intel_mp_floating *mpf_found;
662
663 /*
664  * Scan the memory blocks for an SMP configuration block.
665  */
666 void __init get_smp_config (void)
667 {
668         struct intel_mp_floating *mpf = mpf_found;
669
670         /*
671          * ACPI may be used to obtain the entire SMP configuration or just to 
672          * enumerate/configure processors (CONFIG_ACPI_BOOT).  Note that 
673          * ACPI supports both logical (e.g. Hyper-Threading) and physical 
674          * processors, where MPS only supports physical.
675          */
676         if (acpi_lapic && acpi_ioapic) {
677                 printk(KERN_INFO "Using ACPI (MADT) for SMP configuration information\n");
678                 return;
679         }
680         else if (acpi_lapic)
681                 printk(KERN_INFO "Using ACPI for processor (LAPIC) configuration information\n");
682
683         printk(KERN_INFO "Intel MultiProcessor Specification v1.%d\n", mpf->mpf_specification);
684         if (mpf->mpf_feature2 & (1<<7)) {
685                 printk(KERN_INFO "    IMCR and PIC compatibility mode.\n");
686                 pic_mode = 1;
687         } else {
688                 printk(KERN_INFO "    Virtual Wire compatibility mode.\n");
689                 pic_mode = 0;
690         }
691
692         /*
693          * Now see if we need to read further.
694          */
695         if (mpf->mpf_feature1 != 0) {
696
697                 printk(KERN_INFO "Default MP configuration #%d\n", mpf->mpf_feature1);
698                 construct_default_ISA_mptable(mpf->mpf_feature1);
699
700         } else if (mpf->mpf_physptr) {
701
702                 /*
703                  * Read the physical hardware table.  Anything here will
704                  * override the defaults.
705                  */
706                 if (!smp_read_mpc((void *)mpf->mpf_physptr)) {
707                         smp_found_config = 0;
708                         printk(KERN_ERR "BIOS bug, MP table errors detected!...\n");
709                         printk(KERN_ERR "... disabling SMP support. (tell your hw vendor)\n");
710                         return;
711                 }
712                 /*
713                  * If there are no explicit MP IRQ entries, then we are
714                  * broken.  We set up most of the low 16 IO-APIC pins to
715                  * ISA defaults and hope it will work.
716                  */
717                 if (!mp_irq_entries) {
718                         struct mpc_config_bus bus;
719
720                         printk(KERN_ERR "BIOS bug, no explicit IRQ entries, using default mptable. (tell your hw vendor)\n");
721
722                         bus.mpc_type = MP_BUS;
723                         bus.mpc_busid = 0;
724                         memcpy(bus.mpc_bustype, "ISA   ", 6);
725                         MP_bus_info(&bus);
726
727                         construct_default_ioirq_mptable(0);
728                 }
729
730         } else
731                 BUG();
732
733         printk(KERN_INFO "Processors: %d\n", num_processors);
734         /*
735          * Only use the first configuration found.
736          */
737 }
738
739 static int __init smp_scan_config (unsigned long base, unsigned long length)
740 {
741         unsigned long *bp = phys_to_virt(base);
742         struct intel_mp_floating *mpf;
743
744         Dprintk("Scan SMP from %p for %ld bytes.\n", bp,length);
745         if (sizeof(*mpf) != 16)
746                 printk("Error: MPF size\n");
747
748         while (length > 0) {
749                 mpf = (struct intel_mp_floating *)bp;
750                 if ((*bp == SMP_MAGIC_IDENT) &&
751                         (mpf->mpf_length == 1) &&
752                         !mpf_checksum((unsigned char *)bp, 16) &&
753                         ((mpf->mpf_specification == 1)
754                                 || (mpf->mpf_specification == 4)) ) {
755
756                         smp_found_config = 1;
757                         printk(KERN_INFO "found SMP MP-table at %08lx\n",
758                                                 virt_to_phys(mpf));
759                         reserve_bootmem(virt_to_phys(mpf), PAGE_SIZE);
760                         if (mpf->mpf_physptr) {
761                                 /*
762                                  * We cannot access to MPC table to compute
763                                  * table size yet, as only few megabytes from
764                                  * the bottom is mapped now.
765                                  * PC-9800's MPC table places on the very last
766                                  * of physical memory; so that simply reserving
767                                  * PAGE_SIZE from mpg->mpf_physptr yields BUG()
768                                  * in reserve_bootmem.
769                                  */
770                                 unsigned long size = PAGE_SIZE;
771                                 unsigned long end = max_low_pfn * PAGE_SIZE;
772                                 if (mpf->mpf_physptr + size > end)
773                                         size = end - mpf->mpf_physptr;
774                                 reserve_bootmem(mpf->mpf_physptr, size);
775                         }
776
777                         mpf_found = mpf;
778                         return 1;
779                 }
780                 bp += 4;
781                 length -= 16;
782         }
783         return 0;
784 }
785
786 void __init find_smp_config (void)
787 {
788         unsigned int address;
789
790         /*
791          * FIXME: Linux assumes you have 640K of base ram..
792          * this continues the error...
793          *
794          * 1) Scan the bottom 1K for a signature
795          * 2) Scan the top 1K of base RAM
796          * 3) Scan the 64K of bios
797          */
798         if (smp_scan_config(0x0,0x400) ||
799                 smp_scan_config(639*0x400,0x400) ||
800                         smp_scan_config(0xF0000,0x10000))
801                 return;
802         /*
803          * If it is an SMP machine we should know now, unless the
804          * configuration is in an EISA/MCA bus machine with an
805          * extended bios data area.
806          *
807          * there is a real-mode segmented pointer pointing to the
808          * 4K EBDA area at 0x40E, calculate and scan it here.
809          *
810          * NOTE! There are Linux loaders that will corrupt the EBDA
811          * area, and as such this kind of SMP config may be less
812          * trustworthy, simply because the SMP table may have been
813          * stomped on during early boot. These loaders are buggy and
814          * should be fixed.
815          *
816          * MP1.4 SPEC states to only scan first 1K of 4K EBDA.
817          */
818
819         address = get_bios_ebda();
820         if (address)
821                 smp_scan_config(address, 0x400);
822 }
823
824 /* --------------------------------------------------------------------------
825                             ACPI-based MP Configuration
826    -------------------------------------------------------------------------- */
827
828 #ifdef CONFIG_ACPI_BOOT
829
830 void __init mp_register_lapic_address (
831         u64                     address)
832 {
833         mp_lapic_addr = (unsigned long) address;
834
835         set_fixmap_nocache(FIX_APIC_BASE, mp_lapic_addr);
836
837         if (boot_cpu_physical_apicid == -1U)
838                 boot_cpu_physical_apicid = GET_APIC_ID(apic_read(APIC_ID));
839
840         Dprintk("Boot CPU = %d\n", boot_cpu_physical_apicid);
841 }
842
843
844 void __init mp_register_lapic (
845         u8                      id, 
846         u8                      enabled)
847 {
848         struct mpc_config_processor processor;
849         int                     boot_cpu = 0;
850         
851         if (MAX_APICS - id <= 0) {
852                 printk(KERN_WARNING "Processor #%d invalid (max %d)\n",
853                         id, MAX_APICS);
854                 return;
855         }
856
857         if (id == boot_cpu_physical_apicid)
858                 boot_cpu = 1;
859
860         processor.mpc_type = MP_PROCESSOR;
861         processor.mpc_apicid = id;
862         processor.mpc_apicver = GET_APIC_VERSION(apic_read(APIC_LVR));
863         processor.mpc_cpuflag = (enabled ? CPU_ENABLED : 0);
864         processor.mpc_cpuflag |= (boot_cpu ? CPU_BOOTPROCESSOR : 0);
865         processor.mpc_cpufeature = (boot_cpu_data.x86 << 8) | 
866                 (boot_cpu_data.x86_model << 4) | boot_cpu_data.x86_mask;
867         processor.mpc_featureflag = boot_cpu_data.x86_capability[0];
868         processor.mpc_reserved[0] = 0;
869         processor.mpc_reserved[1] = 0;
870
871         MP_processor_info(&processor);
872 }
873
874 #if defined(CONFIG_X86_IO_APIC) && (defined(CONFIG_ACPI_INTERPRETER) || defined(CONFIG_ACPI_BOOT))
875
876 #define MP_ISA_BUS              0
877 #define MP_MAX_IOAPIC_PIN       127
878
879 static struct mp_ioapic_routing {
880         int                     apic_id;
881         int                     gsi_base;
882         int                     gsi_end;
883         u32                     pin_programmed[4];
884 } mp_ioapic_routing[MAX_IO_APICS];
885
886
887 static int mp_find_ioapic (
888         int                     gsi)
889 {
890         int                     i = 0;
891
892         /* Find the IOAPIC that manages this GSI. */
893         for (i = 0; i < nr_ioapics; i++) {
894                 if ((gsi >= mp_ioapic_routing[i].gsi_base)
895                         && (gsi <= mp_ioapic_routing[i].gsi_end))
896                         return i;
897         }
898
899         printk(KERN_ERR "ERROR: Unable to locate IOAPIC for GSI %d\n", gsi);
900
901         return -1;
902 }
903         
904
905 void __init mp_register_ioapic (
906         u8                      id, 
907         u32                     address,
908         u32                     gsi_base)
909 {
910         int                     idx = 0;
911
912         if (nr_ioapics >= MAX_IO_APICS) {
913                 printk(KERN_ERR "ERROR: Max # of I/O APICs (%d) exceeded "
914                         "(found %d)\n", MAX_IO_APICS, nr_ioapics);
915                 panic("Recompile kernel with bigger MAX_IO_APICS!\n");
916         }
917         if (!address) {
918                 printk(KERN_ERR "WARNING: Bogus (zero) I/O APIC address"
919                         " found in MADT table, skipping!\n");
920                 return;
921         }
922
923         idx = nr_ioapics++;
924
925         mp_ioapics[idx].mpc_type = MP_IOAPIC;
926         mp_ioapics[idx].mpc_flags = MPC_APIC_USABLE;
927         mp_ioapics[idx].mpc_apicaddr = address;
928
929         set_fixmap_nocache(FIX_IO_APIC_BASE_0 + idx, address);
930         if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) && (boot_cpu_data.x86 < 15))
931                 mp_ioapics[idx].mpc_apicid = io_apic_get_unique_id(idx, id);
932         else
933                 mp_ioapics[idx].mpc_apicid = id;
934         mp_ioapics[idx].mpc_apicver = io_apic_get_version(idx);
935         
936         /* 
937          * Build basic GSI lookup table to facilitate gsi->io_apic lookups
938          * and to prevent reprogramming of IOAPIC pins (PCI GSIs).
939          */
940         mp_ioapic_routing[idx].apic_id = mp_ioapics[idx].mpc_apicid;
941         mp_ioapic_routing[idx].gsi_base = gsi_base;
942         mp_ioapic_routing[idx].gsi_end = gsi_base + 
943                 io_apic_get_redir_entries(idx);
944
945         printk("IOAPIC[%d]: apic_id %d, version %d, address 0x%lx, "
946                 "GSI %d-%d\n", idx, mp_ioapics[idx].mpc_apicid, 
947                 mp_ioapics[idx].mpc_apicver, mp_ioapics[idx].mpc_apicaddr,
948                 mp_ioapic_routing[idx].gsi_base,
949                 mp_ioapic_routing[idx].gsi_end);
950
951         return;
952 }
953
954
955 void __init mp_override_legacy_irq (
956         u8                      bus_irq,
957         u8                      polarity, 
958         u8                      trigger, 
959         u32                     gsi)
960 {
961         struct mpc_config_intsrc intsrc;
962         int                     ioapic = -1;
963         int                     pin = -1;
964
965         /* 
966          * Convert 'gsi' to 'ioapic.pin'.
967          */
968         ioapic = mp_find_ioapic(gsi);
969         if (ioapic < 0)
970                 return;
971         pin = gsi - mp_ioapic_routing[ioapic].gsi_base;
972
973         /*
974          * TBD: This check is for faulty timer entries, where the override
975          *      erroneously sets the trigger to level, resulting in a HUGE 
976          *      increase of timer interrupts!
977          */
978         if ((bus_irq == 0) && (trigger == 3))
979                 trigger = 1;
980
981         intsrc.mpc_type = MP_INTSRC;
982         intsrc.mpc_irqtype = mp_INT;
983         intsrc.mpc_irqflag = (trigger << 2) | polarity;
984         intsrc.mpc_srcbus = MP_ISA_BUS;
985         intsrc.mpc_srcbusirq = bus_irq;                                /* IRQ */
986         intsrc.mpc_dstapic = mp_ioapics[ioapic].mpc_apicid;        /* APIC ID */
987         intsrc.mpc_dstirq = pin;                                    /* INTIN# */
988
989         Dprintk("Int: type %d, pol %d, trig %d, bus %d, irq %d, %d-%d\n",
990                 intsrc.mpc_irqtype, intsrc.mpc_irqflag & 3, 
991                 (intsrc.mpc_irqflag >> 2) & 3, intsrc.mpc_srcbus, 
992                 intsrc.mpc_srcbusirq, intsrc.mpc_dstapic, intsrc.mpc_dstirq);
993
994         mp_irqs[mp_irq_entries] = intsrc;
995         if (++mp_irq_entries == MAX_IRQ_SOURCES)
996                 panic("Max # of irq sources exceeded!\n");
997
998         return;
999 }
1000
1001 int es7000_plat;
1002
1003 void __init mp_config_acpi_legacy_irqs (void)
1004 {
1005         struct mpc_config_intsrc intsrc;
1006         int                     i = 0;
1007         int                     ioapic = -1;
1008
1009         /* 
1010          * Fabricate the legacy ISA bus (bus #31).
1011          */
1012         mp_bus_id_to_type[MP_ISA_BUS] = MP_BUS_ISA;
1013         Dprintk("Bus #%d is ISA\n", MP_ISA_BUS);
1014
1015         /*
1016          * Older generations of ES7000 have no legacy identity mappings
1017          */
1018         if (es7000_plat == 1)
1019                 return;
1020
1021         /* 
1022          * Locate the IOAPIC that manages the ISA IRQs (0-15). 
1023          */
1024         ioapic = mp_find_ioapic(0);
1025         if (ioapic < 0)
1026                 return;
1027
1028         intsrc.mpc_type = MP_INTSRC;
1029         intsrc.mpc_irqflag = 0;                                 /* Conforming */
1030         intsrc.mpc_srcbus = MP_ISA_BUS;
1031         intsrc.mpc_dstapic = mp_ioapics[ioapic].mpc_apicid;
1032
1033         /* 
1034          * Use the default configuration for the IRQs 0-15.  Unless
1035          * overriden by (MADT) interrupt source override entries.
1036          */
1037         for (i = 0; i < 16; i++) {
1038                 int idx;
1039
1040                 for (idx = 0; idx < mp_irq_entries; idx++) {
1041                         struct mpc_config_intsrc *irq = mp_irqs + idx;
1042
1043                         /* Do we already have a mapping for this ISA IRQ? */
1044                         if (irq->mpc_srcbus == MP_ISA_BUS && irq->mpc_srcbusirq == i)
1045                                 break;
1046
1047                         /* Do we already have a mapping for this IOAPIC pin */
1048                         if ((irq->mpc_dstapic == intsrc.mpc_dstapic) &&
1049                                 (irq->mpc_dstirq == i))
1050                                 break;
1051                 }
1052
1053                 if (idx != mp_irq_entries) {
1054                         printk(KERN_DEBUG "ACPI: IRQ%d used by override.\n", i);
1055                         continue;                       /* IRQ already used */
1056                 }
1057
1058                 intsrc.mpc_irqtype = mp_INT;
1059                 intsrc.mpc_srcbusirq = i;                  /* Identity mapped */
1060                 intsrc.mpc_dstirq = i;
1061
1062                 Dprintk("Int: type %d, pol %d, trig %d, bus %d, irq %d, "
1063                         "%d-%d\n", intsrc.mpc_irqtype, intsrc.mpc_irqflag & 3, 
1064                         (intsrc.mpc_irqflag >> 2) & 3, intsrc.mpc_srcbus, 
1065                         intsrc.mpc_srcbusirq, intsrc.mpc_dstapic, 
1066                         intsrc.mpc_dstirq);
1067
1068                 mp_irqs[mp_irq_entries] = intsrc;
1069                 if (++mp_irq_entries == MAX_IRQ_SOURCES)
1070                         panic("Max # of irq sources exceeded!\n");
1071         }
1072 }
1073
1074 #define MAX_GSI_NUM     4096
1075
1076 int mp_register_gsi (u32 gsi, int edge_level, int active_high_low)
1077 {
1078         int                     ioapic = -1;
1079         int                     ioapic_pin = 0;
1080         int                     idx, bit = 0;
1081         static int              pci_irq = 16;
1082         /*
1083          * Mapping between Global System Interrups, which
1084          * represent all possible interrupts, and IRQs
1085          * assigned to actual devices.
1086          */
1087         static int              gsi_to_irq[MAX_GSI_NUM];
1088
1089 #ifdef CONFIG_ACPI_BUS
1090         /* Don't set up the ACPI SCI because it's already set up */
1091         if (acpi_fadt.sci_int == gsi)
1092                 return gsi;
1093 #endif
1094
1095         ioapic = mp_find_ioapic(gsi);
1096         if (ioapic < 0) {
1097                 printk(KERN_WARNING "No IOAPIC for GSI %u\n", gsi);
1098                 return gsi;
1099         }
1100
1101         ioapic_pin = gsi - mp_ioapic_routing[ioapic].gsi_base;
1102
1103         if (ioapic_renumber_irq)
1104                 gsi = ioapic_renumber_irq(ioapic, gsi);
1105
1106         /* 
1107          * Avoid pin reprogramming.  PRTs typically include entries  
1108          * with redundant pin->gsi mappings (but unique PCI devices);
1109          * we only program the IOAPIC on the first.
1110          */
1111         bit = ioapic_pin % 32;
1112         idx = (ioapic_pin < 32) ? 0 : (ioapic_pin / 32);
1113         if (idx > 3) {
1114                 printk(KERN_ERR "Invalid reference to IOAPIC pin "
1115                         "%d-%d\n", mp_ioapic_routing[ioapic].apic_id, 
1116                         ioapic_pin);
1117                 return gsi;
1118         }
1119         if ((1<<bit) & mp_ioapic_routing[ioapic].pin_programmed[idx]) {
1120                 Dprintk(KERN_DEBUG "Pin %d-%d already programmed\n",
1121                         mp_ioapic_routing[ioapic].apic_id, ioapic_pin);
1122                 return gsi_to_irq[gsi];
1123         }
1124
1125         mp_ioapic_routing[ioapic].pin_programmed[idx] |= (1<<bit);
1126
1127         if (edge_level) {
1128                 /*
1129                  * For PCI devices assign IRQs in order, avoiding gaps
1130                  * due to unused I/O APIC pins.
1131                  */
1132                 int irq = gsi;
1133                 if (gsi < MAX_GSI_NUM) {
1134                         if (gsi > 15)
1135                                 gsi = pci_irq++;
1136 #ifdef CONFIG_ACPI_BUS
1137                         /*
1138                          * Don't assign IRQ used by ACPI SCI
1139                          */
1140                         if (gsi == acpi_fadt.sci_int)
1141                                 gsi = pci_irq++;
1142 #endif
1143                         gsi_to_irq[irq] = gsi;
1144                 } else {
1145                         printk(KERN_ERR "GSI %u is too high\n", gsi);
1146                         return gsi;
1147                 }
1148         }
1149
1150         io_apic_set_pci_routing(ioapic, ioapic_pin, gsi,
1151                     edge_level == ACPI_EDGE_SENSITIVE ? 0 : 1,
1152                     active_high_low == ACPI_ACTIVE_HIGH ? 0 : 1);
1153         return gsi;
1154 }
1155
1156 #endif /*CONFIG_X86_IO_APIC && (CONFIG_ACPI_INTERPRETER || CONFIG_ACPI_BOOT)*/
1157 #endif /*CONFIG_ACPI_BOOT*/