Merge branch 'upstream' of git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik...
[pandora-kernel.git] / arch / i386 / kernel / acpi / boot.c
1 /*
2  *  boot.c - Architecture-Specific Low-Level ACPI Boot Support
3  *
4  *  Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
5  *  Copyright (C) 2001 Jun Nakajima <jun.nakajima@intel.com>
6  *
7  * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
8  *
9  *  This program is free software; you can redistribute it and/or modify
10  *  it under the terms of the GNU General Public License as published by
11  *  the Free Software Foundation; either version 2 of the License, or
12  *  (at your option) any later version.
13  *
14  *  This program is distributed in the hope that it will be useful,
15  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  *  GNU General Public License for more details.
18  *
19  *  You should have received a copy of the GNU General Public License
20  *  along with this program; if not, write to the Free Software
21  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
22  *
23  * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
24  */
25
26 #include <linux/init.h>
27 #include <linux/config.h>
28 #include <linux/acpi.h>
29 #include <linux/efi.h>
30 #include <linux/module.h>
31 #include <linux/dmi.h>
32 #include <linux/irq.h>
33
34 #include <asm/pgtable.h>
35 #include <asm/io_apic.h>
36 #include <asm/apic.h>
37 #include <asm/io.h>
38 #include <asm/mpspec.h>
39
40 #ifdef  CONFIG_X86_64
41
42 extern void __init clustered_apic_check(void);
43
44 extern int gsi_irq_sharing(int gsi);
45 #include <asm/proto.h>
46
47 #else                           /* X86 */
48
49 #ifdef  CONFIG_X86_LOCAL_APIC
50 #include <mach_apic.h>
51 #include <mach_mpparse.h>
52 #endif                          /* CONFIG_X86_LOCAL_APIC */
53
54 static inline int gsi_irq_sharing(int gsi) { return gsi; }
55
56 #endif                          /* X86 */
57
58 #define BAD_MADT_ENTRY(entry, end) (                                        \
59                 (!entry) || (unsigned long)entry + sizeof(*entry) > end ||  \
60                 ((acpi_table_entry_header *)entry)->length != sizeof(*entry))
61
62 #define PREFIX                  "ACPI: "
63
64 int acpi_noirq __initdata;      /* skip ACPI IRQ initialization */
65 int acpi_pci_disabled __initdata;       /* skip ACPI PCI scan and IRQ initialization */
66 int acpi_ht __initdata = 1;     /* enable HT */
67
68 int acpi_lapic;
69 int acpi_ioapic;
70 int acpi_strict;
71 EXPORT_SYMBOL(acpi_strict);
72
73 acpi_interrupt_flags acpi_sci_flags __initdata;
74 int acpi_sci_override_gsi __initdata;
75 int acpi_skip_timer_override __initdata;
76
77 #ifdef CONFIG_X86_LOCAL_APIC
78 static u64 acpi_lapic_addr __initdata = APIC_DEFAULT_PHYS_BASE;
79 #endif
80
81 #ifndef __HAVE_ARCH_CMPXCHG
82 #warning ACPI uses CMPXCHG, i486 and later hardware
83 #endif
84
85 #define MAX_MADT_ENTRIES        256
86 u8 x86_acpiid_to_apicid[MAX_MADT_ENTRIES] =
87     {[0 ... MAX_MADT_ENTRIES - 1] = 0xff };
88 EXPORT_SYMBOL(x86_acpiid_to_apicid);
89
90 /* --------------------------------------------------------------------------
91                               Boot-time Configuration
92    -------------------------------------------------------------------------- */
93
94 /*
95  * The default interrupt routing model is PIC (8259).  This gets
96  * overriden if IOAPICs are enumerated (below).
97  */
98 enum acpi_irq_model_id acpi_irq_model = ACPI_IRQ_MODEL_PIC;
99
100 #ifdef  CONFIG_X86_64
101
102 /* rely on all ACPI tables being in the direct mapping */
103 char *__acpi_map_table(unsigned long phys_addr, unsigned long size)
104 {
105         if (!phys_addr || !size)
106                 return NULL;
107
108         if (phys_addr+size <= (end_pfn_map << PAGE_SHIFT) + PAGE_SIZE)
109                 return __va(phys_addr);
110
111         return NULL;
112 }
113
114 #else
115
116 /*
117  * Temporarily use the virtual area starting from FIX_IO_APIC_BASE_END,
118  * to map the target physical address. The problem is that set_fixmap()
119  * provides a single page, and it is possible that the page is not
120  * sufficient.
121  * By using this area, we can map up to MAX_IO_APICS pages temporarily,
122  * i.e. until the next __va_range() call.
123  *
124  * Important Safety Note:  The fixed I/O APIC page numbers are *subtracted*
125  * from the fixed base.  That's why we start at FIX_IO_APIC_BASE_END and
126  * count idx down while incrementing the phys address.
127  */
128 char *__acpi_map_table(unsigned long phys, unsigned long size)
129 {
130         unsigned long base, offset, mapped_size;
131         int idx;
132
133         if (phys + size < 8 * 1024 * 1024)
134                 return __va(phys);
135
136         offset = phys & (PAGE_SIZE - 1);
137         mapped_size = PAGE_SIZE - offset;
138         set_fixmap(FIX_ACPI_END, phys);
139         base = fix_to_virt(FIX_ACPI_END);
140
141         /*
142          * Most cases can be covered by the below.
143          */
144         idx = FIX_ACPI_END;
145         while (mapped_size < size) {
146                 if (--idx < FIX_ACPI_BEGIN)
147                         return NULL;    /* cannot handle this */
148                 phys += PAGE_SIZE;
149                 set_fixmap(idx, phys);
150                 mapped_size += PAGE_SIZE;
151         }
152
153         return ((unsigned char *)base + offset);
154 }
155 #endif
156
157 #ifdef CONFIG_PCI_MMCONFIG
158 /* The physical address of the MMCONFIG aperture.  Set from ACPI tables. */
159 struct acpi_table_mcfg_config *pci_mmcfg_config;
160 int pci_mmcfg_config_num;
161
162 int __init acpi_parse_mcfg(unsigned long phys_addr, unsigned long size)
163 {
164         struct acpi_table_mcfg *mcfg;
165         unsigned long i;
166         int config_size;
167
168         if (!phys_addr || !size)
169                 return -EINVAL;
170
171         mcfg = (struct acpi_table_mcfg *)__acpi_map_table(phys_addr, size);
172         if (!mcfg) {
173                 printk(KERN_WARNING PREFIX "Unable to map MCFG\n");
174                 return -ENODEV;
175         }
176
177         /* how many config structures do we have */
178         pci_mmcfg_config_num = 0;
179         i = size - sizeof(struct acpi_table_mcfg);
180         while (i >= sizeof(struct acpi_table_mcfg_config)) {
181                 ++pci_mmcfg_config_num;
182                 i -= sizeof(struct acpi_table_mcfg_config);
183         };
184         if (pci_mmcfg_config_num == 0) {
185                 printk(KERN_ERR PREFIX "MMCONFIG has no entries\n");
186                 return -ENODEV;
187         }
188
189         config_size = pci_mmcfg_config_num * sizeof(*pci_mmcfg_config);
190         pci_mmcfg_config = kmalloc(config_size, GFP_KERNEL);
191         if (!pci_mmcfg_config) {
192                 printk(KERN_WARNING PREFIX
193                        "No memory for MCFG config tables\n");
194                 return -ENOMEM;
195         }
196
197         memcpy(pci_mmcfg_config, &mcfg->config, config_size);
198         for (i = 0; i < pci_mmcfg_config_num; ++i) {
199                 if (mcfg->config[i].base_reserved) {
200                         printk(KERN_ERR PREFIX
201                                "MMCONFIG not in low 4GB of memory\n");
202                         return -ENODEV;
203                 }
204         }
205
206         return 0;
207 }
208 #endif                          /* CONFIG_PCI_MMCONFIG */
209
210 #ifdef CONFIG_X86_LOCAL_APIC
211 static int __init acpi_parse_madt(unsigned long phys_addr, unsigned long size)
212 {
213         struct acpi_table_madt *madt = NULL;
214
215         if (!phys_addr || !size)
216                 return -EINVAL;
217
218         madt = (struct acpi_table_madt *)__acpi_map_table(phys_addr, size);
219         if (!madt) {
220                 printk(KERN_WARNING PREFIX "Unable to map MADT\n");
221                 return -ENODEV;
222         }
223
224         if (madt->lapic_address) {
225                 acpi_lapic_addr = (u64) madt->lapic_address;
226
227                 printk(KERN_DEBUG PREFIX "Local APIC address 0x%08x\n",
228                        madt->lapic_address);
229         }
230
231         acpi_madt_oem_check(madt->header.oem_id, madt->header.oem_table_id);
232
233         return 0;
234 }
235
236 static int __init
237 acpi_parse_lapic(acpi_table_entry_header * header, const unsigned long end)
238 {
239         struct acpi_table_lapic *processor = NULL;
240
241         processor = (struct acpi_table_lapic *)header;
242
243         if (BAD_MADT_ENTRY(processor, end))
244                 return -EINVAL;
245
246         acpi_table_print_madt_entry(header);
247
248         /* Record local apic id only when enabled */
249         if (processor->flags.enabled)
250                 x86_acpiid_to_apicid[processor->acpi_id] = processor->id;
251
252         /*
253          * We need to register disabled CPU as well to permit
254          * counting disabled CPUs. This allows us to size
255          * cpus_possible_map more accurately, to permit
256          * to not preallocating memory for all NR_CPUS
257          * when we use CPU hotplug.
258          */
259         mp_register_lapic(processor->id,        /* APIC ID */
260                           processor->flags.enabled);    /* Enabled? */
261
262         return 0;
263 }
264
265 static int __init
266 acpi_parse_lapic_addr_ovr(acpi_table_entry_header * header,
267                           const unsigned long end)
268 {
269         struct acpi_table_lapic_addr_ovr *lapic_addr_ovr = NULL;
270
271         lapic_addr_ovr = (struct acpi_table_lapic_addr_ovr *)header;
272
273         if (BAD_MADT_ENTRY(lapic_addr_ovr, end))
274                 return -EINVAL;
275
276         acpi_lapic_addr = lapic_addr_ovr->address;
277
278         return 0;
279 }
280
281 static int __init
282 acpi_parse_lapic_nmi(acpi_table_entry_header * header, const unsigned long end)
283 {
284         struct acpi_table_lapic_nmi *lapic_nmi = NULL;
285
286         lapic_nmi = (struct acpi_table_lapic_nmi *)header;
287
288         if (BAD_MADT_ENTRY(lapic_nmi, end))
289                 return -EINVAL;
290
291         acpi_table_print_madt_entry(header);
292
293         if (lapic_nmi->lint != 1)
294                 printk(KERN_WARNING PREFIX "NMI not connected to LINT 1!\n");
295
296         return 0;
297 }
298
299 #endif                          /*CONFIG_X86_LOCAL_APIC */
300
301 #ifdef CONFIG_X86_IO_APIC
302
303 static int __init
304 acpi_parse_ioapic(acpi_table_entry_header * header, const unsigned long end)
305 {
306         struct acpi_table_ioapic *ioapic = NULL;
307
308         ioapic = (struct acpi_table_ioapic *)header;
309
310         if (BAD_MADT_ENTRY(ioapic, end))
311                 return -EINVAL;
312
313         acpi_table_print_madt_entry(header);
314
315         mp_register_ioapic(ioapic->id,
316                            ioapic->address, ioapic->global_irq_base);
317
318         return 0;
319 }
320
321 /*
322  * Parse Interrupt Source Override for the ACPI SCI
323  */
324 static void acpi_sci_ioapic_setup(u32 gsi, u16 polarity, u16 trigger)
325 {
326         if (trigger == 0)       /* compatible SCI trigger is level */
327                 trigger = 3;
328
329         if (polarity == 0)      /* compatible SCI polarity is low */
330                 polarity = 3;
331
332         /* Command-line over-ride via acpi_sci= */
333         if (acpi_sci_flags.trigger)
334                 trigger = acpi_sci_flags.trigger;
335
336         if (acpi_sci_flags.polarity)
337                 polarity = acpi_sci_flags.polarity;
338
339         /*
340          * mp_config_acpi_legacy_irqs() already setup IRQs < 16
341          * If GSI is < 16, this will update its flags,
342          * else it will create a new mp_irqs[] entry.
343          */
344         mp_override_legacy_irq(gsi, polarity, trigger, gsi);
345
346         /*
347          * stash over-ride to indicate we've been here
348          * and for later update of acpi_fadt
349          */
350         acpi_sci_override_gsi = gsi;
351         return;
352 }
353
354 static int __init
355 acpi_parse_int_src_ovr(acpi_table_entry_header * header,
356                        const unsigned long end)
357 {
358         struct acpi_table_int_src_ovr *intsrc = NULL;
359
360         intsrc = (struct acpi_table_int_src_ovr *)header;
361
362         if (BAD_MADT_ENTRY(intsrc, end))
363                 return -EINVAL;
364
365         acpi_table_print_madt_entry(header);
366
367         if (intsrc->bus_irq == acpi_fadt.sci_int) {
368                 acpi_sci_ioapic_setup(intsrc->global_irq,
369                                       intsrc->flags.polarity,
370                                       intsrc->flags.trigger);
371                 return 0;
372         }
373
374         if (acpi_skip_timer_override &&
375             intsrc->bus_irq == 0 && intsrc->global_irq == 2) {
376                 printk(PREFIX "BIOS IRQ0 pin2 override ignored.\n");
377                 return 0;
378         }
379
380         mp_override_legacy_irq(intsrc->bus_irq,
381                                intsrc->flags.polarity,
382                                intsrc->flags.trigger, intsrc->global_irq);
383
384         return 0;
385 }
386
387 static int __init
388 acpi_parse_nmi_src(acpi_table_entry_header * header, const unsigned long end)
389 {
390         struct acpi_table_nmi_src *nmi_src = NULL;
391
392         nmi_src = (struct acpi_table_nmi_src *)header;
393
394         if (BAD_MADT_ENTRY(nmi_src, end))
395                 return -EINVAL;
396
397         acpi_table_print_madt_entry(header);
398
399         /* TBD: Support nimsrc entries? */
400
401         return 0;
402 }
403
404 #endif                          /* CONFIG_X86_IO_APIC */
405
406 /*
407  * acpi_pic_sci_set_trigger()
408  * 
409  * use ELCR to set PIC-mode trigger type for SCI
410  *
411  * If a PIC-mode SCI is not recognized or gives spurious IRQ7's
412  * it may require Edge Trigger -- use "acpi_sci=edge"
413  *
414  * Port 0x4d0-4d1 are ECLR1 and ECLR2, the Edge/Level Control Registers
415  * for the 8259 PIC.  bit[n] = 1 means irq[n] is Level, otherwise Edge.
416  * ECLR1 is IRQ's 0-7 (IRQ 0, 1, 2 must be 0)
417  * ECLR2 is IRQ's 8-15 (IRQ 8, 13 must be 0)
418  */
419
420 void __init acpi_pic_sci_set_trigger(unsigned int irq, u16 trigger)
421 {
422         unsigned int mask = 1 << irq;
423         unsigned int old, new;
424
425         /* Real old ELCR mask */
426         old = inb(0x4d0) | (inb(0x4d1) << 8);
427
428         /*
429          * If we use ACPI to set PCI irq's, then we should clear ELCR
430          * since we will set it correctly as we enable the PCI irq
431          * routing.
432          */
433         new = acpi_noirq ? old : 0;
434
435         /*
436          * Update SCI information in the ELCR, it isn't in the PCI
437          * routing tables..
438          */
439         switch (trigger) {
440         case 1:         /* Edge - clear */
441                 new &= ~mask;
442                 break;
443         case 3:         /* Level - set */
444                 new |= mask;
445                 break;
446         }
447
448         if (old == new)
449                 return;
450
451         printk(PREFIX "setting ELCR to %04x (from %04x)\n", new, old);
452         outb(new, 0x4d0);
453         outb(new >> 8, 0x4d1);
454 }
455
456 int acpi_gsi_to_irq(u32 gsi, unsigned int *irq)
457 {
458 #ifdef CONFIG_X86_IO_APIC
459         if (use_pci_vector() && !platform_legacy_irq(gsi))
460                 *irq = IO_APIC_VECTOR(gsi);
461         else
462 #endif
463                 *irq = gsi_irq_sharing(gsi);
464         return 0;
465 }
466
467 /*
468  * success: return IRQ number (>=0)
469  * failure: return < 0
470  */
471 int acpi_register_gsi(u32 gsi, int triggering, int polarity)
472 {
473         unsigned int irq;
474         unsigned int plat_gsi = gsi;
475
476 #ifdef CONFIG_PCI
477         /*
478          * Make sure all (legacy) PCI IRQs are set as level-triggered.
479          */
480         if (acpi_irq_model == ACPI_IRQ_MODEL_PIC) {
481                 extern void eisa_set_level_irq(unsigned int irq);
482
483                 if (triggering == ACPI_LEVEL_SENSITIVE)
484                         eisa_set_level_irq(gsi);
485         }
486 #endif
487
488 #ifdef CONFIG_X86_IO_APIC
489         if (acpi_irq_model == ACPI_IRQ_MODEL_IOAPIC) {
490                 plat_gsi = mp_register_gsi(gsi, triggering, polarity);
491         }
492 #endif
493         acpi_gsi_to_irq(plat_gsi, &irq);
494         return irq;
495 }
496
497 EXPORT_SYMBOL(acpi_register_gsi);
498
499 /*
500  *  ACPI based hotplug support for CPU
501  */
502 #ifdef CONFIG_ACPI_HOTPLUG_CPU
503 int acpi_map_lsapic(acpi_handle handle, int *pcpu)
504 {
505         /* TBD */
506         return -EINVAL;
507 }
508
509 EXPORT_SYMBOL(acpi_map_lsapic);
510
511 int acpi_unmap_lsapic(int cpu)
512 {
513         /* TBD */
514         return -EINVAL;
515 }
516
517 EXPORT_SYMBOL(acpi_unmap_lsapic);
518 #endif                          /* CONFIG_ACPI_HOTPLUG_CPU */
519
520 int acpi_register_ioapic(acpi_handle handle, u64 phys_addr, u32 gsi_base)
521 {
522         /* TBD */
523         return -EINVAL;
524 }
525
526 EXPORT_SYMBOL(acpi_register_ioapic);
527
528 int acpi_unregister_ioapic(acpi_handle handle, u32 gsi_base)
529 {
530         /* TBD */
531         return -EINVAL;
532 }
533
534 EXPORT_SYMBOL(acpi_unregister_ioapic);
535
536 static unsigned long __init
537 acpi_scan_rsdp(unsigned long start, unsigned long length)
538 {
539         unsigned long offset = 0;
540         unsigned long sig_len = sizeof("RSD PTR ") - 1;
541
542         /*
543          * Scan all 16-byte boundaries of the physical memory region for the
544          * RSDP signature.
545          */
546         for (offset = 0; offset < length; offset += 16) {
547                 if (strncmp((char *)(phys_to_virt(start) + offset), "RSD PTR ", sig_len))
548                         continue;
549                 return (start + offset);
550         }
551
552         return 0;
553 }
554
555 static int __init acpi_parse_sbf(unsigned long phys_addr, unsigned long size)
556 {
557         struct acpi_table_sbf *sb;
558
559         if (!phys_addr || !size)
560                 return -EINVAL;
561
562         sb = (struct acpi_table_sbf *)__acpi_map_table(phys_addr, size);
563         if (!sb) {
564                 printk(KERN_WARNING PREFIX "Unable to map SBF\n");
565                 return -ENODEV;
566         }
567
568         sbf_port = sb->sbf_cmos;        /* Save CMOS port */
569
570         return 0;
571 }
572
573 #ifdef CONFIG_HPET_TIMER
574
575 static int __init acpi_parse_hpet(unsigned long phys, unsigned long size)
576 {
577         struct acpi_table_hpet *hpet_tbl;
578
579         if (!phys || !size)
580                 return -EINVAL;
581
582         hpet_tbl = (struct acpi_table_hpet *)__acpi_map_table(phys, size);
583         if (!hpet_tbl) {
584                 printk(KERN_WARNING PREFIX "Unable to map HPET\n");
585                 return -ENODEV;
586         }
587
588         if (hpet_tbl->addr.space_id != ACPI_SPACE_MEM) {
589                 printk(KERN_WARNING PREFIX "HPET timers must be located in "
590                        "memory.\n");
591                 return -1;
592         }
593 #ifdef  CONFIG_X86_64
594         vxtime.hpet_address = hpet_tbl->addr.addrl |
595             ((long)hpet_tbl->addr.addrh << 32);
596
597         printk(KERN_INFO PREFIX "HPET id: %#x base: %#lx\n",
598                hpet_tbl->id, vxtime.hpet_address);
599 #else                           /* X86 */
600         {
601                 extern unsigned long hpet_address;
602
603                 hpet_address = hpet_tbl->addr.addrl;
604                 printk(KERN_INFO PREFIX "HPET id: %#x base: %#lx\n",
605                        hpet_tbl->id, hpet_address);
606         }
607 #endif                          /* X86 */
608
609         return 0;
610 }
611 #else
612 #define acpi_parse_hpet NULL
613 #endif
614
615 #ifdef CONFIG_X86_PM_TIMER
616 extern u32 pmtmr_ioport;
617 #endif
618
619 static int __init acpi_parse_fadt(unsigned long phys, unsigned long size)
620 {
621         struct fadt_descriptor_rev2 *fadt = NULL;
622
623         fadt = (struct fadt_descriptor_rev2 *)__acpi_map_table(phys, size);
624         if (!fadt) {
625                 printk(KERN_WARNING PREFIX "Unable to map FADT\n");
626                 return 0;
627         }
628         /* initialize sci_int early for INT_SRC_OVR MADT parsing */
629         acpi_fadt.sci_int = fadt->sci_int;
630
631         /* initialize rev and apic_phys_dest_mode for x86_64 genapic */
632         acpi_fadt.revision = fadt->revision;
633         acpi_fadt.force_apic_physical_destination_mode =
634             fadt->force_apic_physical_destination_mode;
635
636 #ifdef CONFIG_X86_PM_TIMER
637         /* detect the location of the ACPI PM Timer */
638         if (fadt->revision >= FADT2_REVISION_ID) {
639                 /* FADT rev. 2 */
640                 if (fadt->xpm_tmr_blk.address_space_id !=
641                     ACPI_ADR_SPACE_SYSTEM_IO)
642                         return 0;
643
644                 pmtmr_ioport = fadt->xpm_tmr_blk.address;
645                 /*
646                  * "X" fields are optional extensions to the original V1.0
647                  * fields, so we must selectively expand V1.0 fields if the
648                  * corresponding X field is zero.
649                  */
650                 if (!pmtmr_ioport)
651                         pmtmr_ioport = fadt->V1_pm_tmr_blk;
652         } else {
653                 /* FADT rev. 1 */
654                 pmtmr_ioport = fadt->V1_pm_tmr_blk;
655         }
656         if (pmtmr_ioport)
657                 printk(KERN_INFO PREFIX "PM-Timer IO Port: %#x\n",
658                        pmtmr_ioport);
659 #endif
660         return 0;
661 }
662
663 unsigned long __init acpi_find_rsdp(void)
664 {
665         unsigned long rsdp_phys = 0;
666
667         if (efi_enabled) {
668                 if (efi.acpi20)
669                         return __pa(efi.acpi20);
670                 else if (efi.acpi)
671                         return __pa(efi.acpi);
672         }
673         /*
674          * Scan memory looking for the RSDP signature. First search EBDA (low
675          * memory) paragraphs and then search upper memory (E0000-FFFFF).
676          */
677         rsdp_phys = acpi_scan_rsdp(0, 0x400);
678         if (!rsdp_phys)
679                 rsdp_phys = acpi_scan_rsdp(0xE0000, 0x20000);
680
681         return rsdp_phys;
682 }
683
684 #ifdef  CONFIG_X86_LOCAL_APIC
685 /*
686  * Parse LAPIC entries in MADT
687  * returns 0 on success, < 0 on error
688  */
689 static int __init acpi_parse_madt_lapic_entries(void)
690 {
691         int count;
692
693         /* 
694          * Note that the LAPIC address is obtained from the MADT (32-bit value)
695          * and (optionally) overriden by a LAPIC_ADDR_OVR entry (64-bit value).
696          */
697
698         count =
699             acpi_table_parse_madt(ACPI_MADT_LAPIC_ADDR_OVR,
700                                   acpi_parse_lapic_addr_ovr, 0);
701         if (count < 0) {
702                 printk(KERN_ERR PREFIX
703                        "Error parsing LAPIC address override entry\n");
704                 return count;
705         }
706
707         mp_register_lapic_address(acpi_lapic_addr);
708
709         count = acpi_table_parse_madt(ACPI_MADT_LAPIC, acpi_parse_lapic,
710                                       MAX_APICS);
711         if (!count) {
712                 printk(KERN_ERR PREFIX "No LAPIC entries present\n");
713                 /* TBD: Cleanup to allow fallback to MPS */
714                 return -ENODEV;
715         } else if (count < 0) {
716                 printk(KERN_ERR PREFIX "Error parsing LAPIC entry\n");
717                 /* TBD: Cleanup to allow fallback to MPS */
718                 return count;
719         }
720
721         count =
722             acpi_table_parse_madt(ACPI_MADT_LAPIC_NMI, acpi_parse_lapic_nmi, 0);
723         if (count < 0) {
724                 printk(KERN_ERR PREFIX "Error parsing LAPIC NMI entry\n");
725                 /* TBD: Cleanup to allow fallback to MPS */
726                 return count;
727         }
728         return 0;
729 }
730 #endif                          /* CONFIG_X86_LOCAL_APIC */
731
732 #ifdef  CONFIG_X86_IO_APIC
733 /*
734  * Parse IOAPIC related entries in MADT
735  * returns 0 on success, < 0 on error
736  */
737 static int __init acpi_parse_madt_ioapic_entries(void)
738 {
739         int count;
740
741         /*
742          * ACPI interpreter is required to complete interrupt setup,
743          * so if it is off, don't enumerate the io-apics with ACPI.
744          * If MPS is present, it will handle them,
745          * otherwise the system will stay in PIC mode
746          */
747         if (acpi_disabled || acpi_noirq) {
748                 return -ENODEV;
749         }
750
751         /*
752          * if "noapic" boot option, don't look for IO-APICs
753          */
754         if (skip_ioapic_setup) {
755                 printk(KERN_INFO PREFIX "Skipping IOAPIC probe "
756                        "due to 'noapic' option.\n");
757                 return -ENODEV;
758         }
759
760         count =
761             acpi_table_parse_madt(ACPI_MADT_IOAPIC, acpi_parse_ioapic,
762                                   MAX_IO_APICS);
763         if (!count) {
764                 printk(KERN_ERR PREFIX "No IOAPIC entries present\n");
765                 return -ENODEV;
766         } else if (count < 0) {
767                 printk(KERN_ERR PREFIX "Error parsing IOAPIC entry\n");
768                 return count;
769         }
770
771         count =
772             acpi_table_parse_madt(ACPI_MADT_INT_SRC_OVR, acpi_parse_int_src_ovr,
773                                   NR_IRQ_VECTORS);
774         if (count < 0) {
775                 printk(KERN_ERR PREFIX
776                        "Error parsing interrupt source overrides entry\n");
777                 /* TBD: Cleanup to allow fallback to MPS */
778                 return count;
779         }
780
781         /*
782          * If BIOS did not supply an INT_SRC_OVR for the SCI
783          * pretend we got one so we can set the SCI flags.
784          */
785         if (!acpi_sci_override_gsi)
786                 acpi_sci_ioapic_setup(acpi_fadt.sci_int, 0, 0);
787
788         /* Fill in identity legacy mapings where no override */
789         mp_config_acpi_legacy_irqs();
790
791         count =
792             acpi_table_parse_madt(ACPI_MADT_NMI_SRC, acpi_parse_nmi_src,
793                                   NR_IRQ_VECTORS);
794         if (count < 0) {
795                 printk(KERN_ERR PREFIX "Error parsing NMI SRC entry\n");
796                 /* TBD: Cleanup to allow fallback to MPS */
797                 return count;
798         }
799
800         return 0;
801 }
802 #else
803 static inline int acpi_parse_madt_ioapic_entries(void)
804 {
805         return -1;
806 }
807 #endif  /* !CONFIG_X86_IO_APIC */
808
809 static void __init acpi_process_madt(void)
810 {
811 #ifdef CONFIG_X86_LOCAL_APIC
812         int count, error;
813
814         count = acpi_table_parse(ACPI_APIC, acpi_parse_madt);
815         if (count >= 1) {
816
817                 /*
818                  * Parse MADT LAPIC entries
819                  */
820                 error = acpi_parse_madt_lapic_entries();
821                 if (!error) {
822                         acpi_lapic = 1;
823
824 #ifdef CONFIG_X86_GENERICARCH
825                         generic_bigsmp_probe();
826 #endif
827                         /*
828                          * Parse MADT IO-APIC entries
829                          */
830                         error = acpi_parse_madt_ioapic_entries();
831                         if (!error) {
832                                 acpi_irq_model = ACPI_IRQ_MODEL_IOAPIC;
833                                 acpi_irq_balance_set(NULL);
834                                 acpi_ioapic = 1;
835
836                                 smp_found_config = 1;
837                                 clustered_apic_check();
838                         }
839                 }
840                 if (error == -EINVAL) {
841                         /*
842                          * Dell Precision Workstation 410, 610 come here.
843                          */
844                         printk(KERN_ERR PREFIX
845                                "Invalid BIOS MADT, disabling ACPI\n");
846                         disable_acpi();
847                 }
848         }
849 #endif
850         return;
851 }
852
853 extern int acpi_force;
854
855 #ifdef __i386__
856
857 static int __init disable_acpi_irq(struct dmi_system_id *d)
858 {
859         if (!acpi_force) {
860                 printk(KERN_NOTICE "%s detected: force use of acpi=noirq\n",
861                        d->ident);
862                 acpi_noirq_set();
863         }
864         return 0;
865 }
866
867 static int __init disable_acpi_pci(struct dmi_system_id *d)
868 {
869         if (!acpi_force) {
870                 printk(KERN_NOTICE "%s detected: force use of pci=noacpi\n",
871                        d->ident);
872                 acpi_disable_pci();
873         }
874         return 0;
875 }
876
877 static int __init dmi_disable_acpi(struct dmi_system_id *d)
878 {
879         if (!acpi_force) {
880                 printk(KERN_NOTICE "%s detected: acpi off\n", d->ident);
881                 disable_acpi();
882         } else {
883                 printk(KERN_NOTICE
884                        "Warning: DMI blacklist says broken, but acpi forced\n");
885         }
886         return 0;
887 }
888
889 /*
890  * Limit ACPI to CPU enumeration for HT
891  */
892 static int __init force_acpi_ht(struct dmi_system_id *d)
893 {
894         if (!acpi_force) {
895                 printk(KERN_NOTICE "%s detected: force use of acpi=ht\n",
896                        d->ident);
897                 disable_acpi();
898                 acpi_ht = 1;
899         } else {
900                 printk(KERN_NOTICE
901                        "Warning: acpi=force overrules DMI blacklist: acpi=ht\n");
902         }
903         return 0;
904 }
905
906 /*
907  * If your system is blacklisted here, but you find that acpi=force
908  * works for you, please contact acpi-devel@sourceforge.net
909  */
910 static struct dmi_system_id __initdata acpi_dmi_table[] = {
911         /*
912          * Boxes that need ACPI disabled
913          */
914         {
915          .callback = dmi_disable_acpi,
916          .ident = "IBM Thinkpad",
917          .matches = {
918                      DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
919                      DMI_MATCH(DMI_BOARD_NAME, "2629H1G"),
920                      },
921          },
922
923         /*
924          * Boxes that need acpi=ht
925          */
926         {
927          .callback = force_acpi_ht,
928          .ident = "FSC Primergy T850",
929          .matches = {
930                      DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
931                      DMI_MATCH(DMI_PRODUCT_NAME, "PRIMERGY T850"),
932                      },
933          },
934         {
935          .callback = force_acpi_ht,
936          .ident = "DELL GX240",
937          .matches = {
938                      DMI_MATCH(DMI_BOARD_VENDOR, "Dell Computer Corporation"),
939                      DMI_MATCH(DMI_BOARD_NAME, "OptiPlex GX240"),
940                      },
941          },
942         {
943          .callback = force_acpi_ht,
944          .ident = "HP VISUALIZE NT Workstation",
945          .matches = {
946                      DMI_MATCH(DMI_BOARD_VENDOR, "Hewlett-Packard"),
947                      DMI_MATCH(DMI_PRODUCT_NAME, "HP VISUALIZE NT Workstation"),
948                      },
949          },
950         {
951          .callback = force_acpi_ht,
952          .ident = "Compaq Workstation W8000",
953          .matches = {
954                      DMI_MATCH(DMI_SYS_VENDOR, "Compaq"),
955                      DMI_MATCH(DMI_PRODUCT_NAME, "Workstation W8000"),
956                      },
957          },
958         {
959          .callback = force_acpi_ht,
960          .ident = "ASUS P4B266",
961          .matches = {
962                      DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
963                      DMI_MATCH(DMI_BOARD_NAME, "P4B266"),
964                      },
965          },
966         {
967          .callback = force_acpi_ht,
968          .ident = "ASUS P2B-DS",
969          .matches = {
970                      DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
971                      DMI_MATCH(DMI_BOARD_NAME, "P2B-DS"),
972                      },
973          },
974         {
975          .callback = force_acpi_ht,
976          .ident = "ASUS CUR-DLS",
977          .matches = {
978                      DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
979                      DMI_MATCH(DMI_BOARD_NAME, "CUR-DLS"),
980                      },
981          },
982         {
983          .callback = force_acpi_ht,
984          .ident = "ABIT i440BX-W83977",
985          .matches = {
986                      DMI_MATCH(DMI_BOARD_VENDOR, "ABIT <http://www.abit.com>"),
987                      DMI_MATCH(DMI_BOARD_NAME, "i440BX-W83977 (BP6)"),
988                      },
989          },
990         {
991          .callback = force_acpi_ht,
992          .ident = "IBM Bladecenter",
993          .matches = {
994                      DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
995                      DMI_MATCH(DMI_BOARD_NAME, "IBM eServer BladeCenter HS20"),
996                      },
997          },
998         {
999          .callback = force_acpi_ht,
1000          .ident = "IBM eServer xSeries 360",
1001          .matches = {
1002                      DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1003                      DMI_MATCH(DMI_BOARD_NAME, "eServer xSeries 360"),
1004                      },
1005          },
1006         {
1007          .callback = force_acpi_ht,
1008          .ident = "IBM eserver xSeries 330",
1009          .matches = {
1010                      DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1011                      DMI_MATCH(DMI_BOARD_NAME, "eserver xSeries 330"),
1012                      },
1013          },
1014         {
1015          .callback = force_acpi_ht,
1016          .ident = "IBM eserver xSeries 440",
1017          .matches = {
1018                      DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1019                      DMI_MATCH(DMI_PRODUCT_NAME, "eserver xSeries 440"),
1020                      },
1021          },
1022
1023         /*
1024          * Boxes that need ACPI PCI IRQ routing disabled
1025          */
1026         {
1027          .callback = disable_acpi_irq,
1028          .ident = "ASUS A7V",
1029          .matches = {
1030                      DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC"),
1031                      DMI_MATCH(DMI_BOARD_NAME, "<A7V>"),
1032                      /* newer BIOS, Revision 1011, does work */
1033                      DMI_MATCH(DMI_BIOS_VERSION,
1034                                "ASUS A7V ACPI BIOS Revision 1007"),
1035                      },
1036          },
1037
1038         /*
1039          * Boxes that need ACPI PCI IRQ routing and PCI scan disabled
1040          */
1041         {                       /* _BBN 0 bug */
1042          .callback = disable_acpi_pci,
1043          .ident = "ASUS PR-DLS",
1044          .matches = {
1045                      DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1046                      DMI_MATCH(DMI_BOARD_NAME, "PR-DLS"),
1047                      DMI_MATCH(DMI_BIOS_VERSION,
1048                                "ASUS PR-DLS ACPI BIOS Revision 1010"),
1049                      DMI_MATCH(DMI_BIOS_DATE, "03/21/2003")
1050                      },
1051          },
1052         {
1053          .callback = disable_acpi_pci,
1054          .ident = "Acer TravelMate 36x Laptop",
1055          .matches = {
1056                      DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
1057                      DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 360"),
1058                      },
1059          },
1060         {}
1061 };
1062
1063 #endif                          /* __i386__ */
1064
1065 /*
1066  * acpi_boot_table_init() and acpi_boot_init()
1067  *  called from setup_arch(), always.
1068  *      1. checksums all tables
1069  *      2. enumerates lapics
1070  *      3. enumerates io-apics
1071  *
1072  * acpi_table_init() is separate to allow reading SRAT without
1073  * other side effects.
1074  *
1075  * side effects of acpi_boot_init:
1076  *      acpi_lapic = 1 if LAPIC found
1077  *      acpi_ioapic = 1 if IOAPIC found
1078  *      if (acpi_lapic && acpi_ioapic) smp_found_config = 1;
1079  *      if acpi_blacklisted() acpi_disabled = 1;
1080  *      acpi_irq_model=...
1081  *      ...
1082  *
1083  * return value: (currently ignored)
1084  *      0: success
1085  *      !0: failure
1086  */
1087
1088 int __init acpi_boot_table_init(void)
1089 {
1090         int error;
1091
1092 #ifdef __i386__
1093         dmi_check_system(acpi_dmi_table);
1094 #endif
1095
1096         /*
1097          * If acpi_disabled, bail out
1098          * One exception: acpi=ht continues far enough to enumerate LAPICs
1099          */
1100         if (acpi_disabled && !acpi_ht)
1101                 return 1;
1102
1103         /* 
1104          * Initialize the ACPI boot-time table parser.
1105          */
1106         error = acpi_table_init();
1107         if (error) {
1108                 disable_acpi();
1109                 return error;
1110         }
1111 #ifdef __i386__
1112         check_acpi_pci();
1113 #endif
1114
1115         acpi_table_parse(ACPI_BOOT, acpi_parse_sbf);
1116
1117         /*
1118          * blacklist may disable ACPI entirely
1119          */
1120         error = acpi_blacklisted();
1121         if (error) {
1122                 if (acpi_force) {
1123                         printk(KERN_WARNING PREFIX "acpi=force override\n");
1124                 } else {
1125                         printk(KERN_WARNING PREFIX "Disabling ACPI support\n");
1126                         disable_acpi();
1127                         return error;
1128                 }
1129         }
1130
1131         return 0;
1132 }
1133
1134 int __init acpi_boot_init(void)
1135 {
1136         /*
1137          * If acpi_disabled, bail out
1138          * One exception: acpi=ht continues far enough to enumerate LAPICs
1139          */
1140         if (acpi_disabled && !acpi_ht)
1141                 return 1;
1142
1143         acpi_table_parse(ACPI_BOOT, acpi_parse_sbf);
1144
1145         /*
1146          * set sci_int and PM timer address
1147          */
1148         acpi_table_parse(ACPI_FADT, acpi_parse_fadt);
1149
1150         /*
1151          * Process the Multiple APIC Description Table (MADT), if present
1152          */
1153         acpi_process_madt();
1154
1155         acpi_table_parse(ACPI_HPET, acpi_parse_hpet);
1156
1157         return 0;
1158 }