]> pilppa.org Git - linux-2.6-omap-h63xx.git/blob - arch/x86/kernel/acpi/boot.c
d9770a56511a06448f73e629f61d83be324f8c18
[linux-2.6-omap-h63xx.git] / arch / x86 / 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/acpi.h>
28 #include <linux/acpi_pmtmr.h>
29 #include <linux/efi.h>
30 #include <linux/cpumask.h>
31 #include <linux/module.h>
32 #include <linux/dmi.h>
33 #include <linux/irq.h>
34 #include <linux/bootmem.h>
35 #include <linux/ioport.h>
36
37 #include <asm/pgtable.h>
38 #include <asm/io_apic.h>
39 #include <asm/apic.h>
40 #include <asm/genapic.h>
41 #include <asm/io.h>
42 #include <asm/mpspec.h>
43 #include <asm/smp.h>
44
45 #ifdef CONFIG_X86_LOCAL_APIC
46 # include <mach_apic.h>
47 #endif
48
49 static int __initdata acpi_force = 0;
50
51 #ifdef  CONFIG_ACPI
52 int acpi_disabled = 0;
53 #else
54 int acpi_disabled = 1;
55 #endif
56 EXPORT_SYMBOL(acpi_disabled);
57
58 #ifdef  CONFIG_X86_64
59
60 #include <asm/proto.h>
61 #include <asm/genapic.h>
62
63 #else                           /* X86 */
64
65 #ifdef  CONFIG_X86_LOCAL_APIC
66 #include <mach_apic.h>
67 #include <mach_mpparse.h>
68 #endif                          /* CONFIG_X86_LOCAL_APIC */
69
70 #endif                          /* X86 */
71
72 #define BAD_MADT_ENTRY(entry, end) (                                        \
73                 (!entry) || (unsigned long)entry + sizeof(*entry) > end ||  \
74                 ((struct acpi_subtable_header *)entry)->length < sizeof(*entry))
75
76 #define PREFIX                  "ACPI: "
77
78 int acpi_noirq;                         /* skip ACPI IRQ initialization */
79 int acpi_pci_disabled;          /* skip ACPI PCI scan and IRQ initialization */
80 EXPORT_SYMBOL(acpi_pci_disabled);
81 int acpi_ht __initdata = 1;     /* enable HT */
82
83 int acpi_lapic;
84 int acpi_ioapic;
85 int acpi_strict;
86
87 u8 acpi_sci_flags __initdata;
88 int acpi_sci_override_gsi __initdata;
89 int acpi_skip_timer_override __initdata;
90 int acpi_use_timer_override __initdata;
91
92 #ifdef CONFIG_X86_LOCAL_APIC
93 static u64 acpi_lapic_addr __initdata = APIC_DEFAULT_PHYS_BASE;
94 #endif
95
96 #ifndef __HAVE_ARCH_CMPXCHG
97 #warning ACPI uses CMPXCHG, i486 and later hardware
98 #endif
99
100 /* --------------------------------------------------------------------------
101                               Boot-time Configuration
102    -------------------------------------------------------------------------- */
103
104 /*
105  * The default interrupt routing model is PIC (8259).  This gets
106  * overridden if IOAPICs are enumerated (below).
107  */
108 enum acpi_irq_model_id acpi_irq_model = ACPI_IRQ_MODEL_PIC;
109
110
111 /*
112  * Temporarily use the virtual area starting from FIX_IO_APIC_BASE_END,
113  * to map the target physical address. The problem is that set_fixmap()
114  * provides a single page, and it is possible that the page is not
115  * sufficient.
116  * By using this area, we can map up to MAX_IO_APICS pages temporarily,
117  * i.e. until the next __va_range() call.
118  *
119  * Important Safety Note:  The fixed I/O APIC page numbers are *subtracted*
120  * from the fixed base.  That's why we start at FIX_IO_APIC_BASE_END and
121  * count idx down while incrementing the phys address.
122  */
123 char *__init __acpi_map_table(unsigned long phys, unsigned long size)
124 {
125         unsigned long base, offset, mapped_size;
126         int idx;
127
128         if (!phys || !size)
129                 return NULL;
130
131         if (phys+size <= (max_low_pfn_mapped << PAGE_SHIFT))
132                 return __va(phys);
133
134         offset = phys & (PAGE_SIZE - 1);
135         mapped_size = PAGE_SIZE - offset;
136         clear_fixmap(FIX_ACPI_END);
137         set_fixmap(FIX_ACPI_END, phys);
138         base = fix_to_virt(FIX_ACPI_END);
139
140         /*
141          * Most cases can be covered by the below.
142          */
143         idx = FIX_ACPI_END;
144         while (mapped_size < size) {
145                 if (--idx < FIX_ACPI_BEGIN)
146                         return NULL;    /* cannot handle this */
147                 phys += PAGE_SIZE;
148                 clear_fixmap(idx);
149                 set_fixmap(idx, phys);
150                 mapped_size += PAGE_SIZE;
151         }
152
153         return ((unsigned char *)base + offset);
154 }
155
156 #ifdef CONFIG_PCI_MMCONFIG
157 /* The physical address of the MMCONFIG aperture.  Set from ACPI tables. */
158 struct acpi_mcfg_allocation *pci_mmcfg_config;
159 int pci_mmcfg_config_num;
160
161 int __init acpi_parse_mcfg(struct acpi_table_header *header)
162 {
163         struct acpi_table_mcfg *mcfg;
164         unsigned long i;
165         int config_size;
166
167         if (!header)
168                 return -EINVAL;
169
170         mcfg = (struct acpi_table_mcfg *)header;
171
172         /* how many config structures do we have */
173         pci_mmcfg_config_num = 0;
174         i = header->length - sizeof(struct acpi_table_mcfg);
175         while (i >= sizeof(struct acpi_mcfg_allocation)) {
176                 ++pci_mmcfg_config_num;
177                 i -= sizeof(struct acpi_mcfg_allocation);
178         };
179         if (pci_mmcfg_config_num == 0) {
180                 printk(KERN_ERR PREFIX "MMCONFIG has no entries\n");
181                 return -ENODEV;
182         }
183
184         config_size = pci_mmcfg_config_num * sizeof(*pci_mmcfg_config);
185         pci_mmcfg_config = kmalloc(config_size, GFP_KERNEL);
186         if (!pci_mmcfg_config) {
187                 printk(KERN_WARNING PREFIX
188                        "No memory for MCFG config tables\n");
189                 return -ENOMEM;
190         }
191
192         memcpy(pci_mmcfg_config, &mcfg[1], config_size);
193         for (i = 0; i < pci_mmcfg_config_num; ++i) {
194                 if (pci_mmcfg_config[i].address > 0xFFFFFFFF) {
195                         printk(KERN_ERR PREFIX
196                                "MMCONFIG not in low 4GB of memory\n");
197                         kfree(pci_mmcfg_config);
198                         pci_mmcfg_config_num = 0;
199                         return -ENODEV;
200                 }
201         }
202
203         return 0;
204 }
205 #endif                          /* CONFIG_PCI_MMCONFIG */
206
207 #ifdef CONFIG_X86_LOCAL_APIC
208 static int __init acpi_parse_madt(struct acpi_table_header *table)
209 {
210         struct acpi_table_madt *madt = NULL;
211
212         if (!cpu_has_apic)
213                 return -EINVAL;
214
215         madt = (struct acpi_table_madt *)table;
216         if (!madt) {
217                 printk(KERN_WARNING PREFIX "Unable to map MADT\n");
218                 return -ENODEV;
219         }
220
221         if (madt->address) {
222                 acpi_lapic_addr = (u64) madt->address;
223
224                 printk(KERN_DEBUG PREFIX "Local APIC address 0x%08x\n",
225                        madt->address);
226         }
227
228         acpi_madt_oem_check(madt->header.oem_id, madt->header.oem_table_id);
229
230         return 0;
231 }
232
233 static void __cpuinit acpi_register_lapic(int id, u8 enabled)
234 {
235         unsigned int ver = 0;
236
237         if (!enabled) {
238                 ++disabled_cpus;
239                 return;
240         }
241
242         if (boot_cpu_physical_apicid != -1U)
243                 ver = apic_version[boot_cpu_physical_apicid];
244
245         generic_processor_info(id, ver);
246 }
247
248 static int __init
249 acpi_parse_lapic(struct acpi_subtable_header * header, const unsigned long end)
250 {
251         struct acpi_madt_local_apic *processor = NULL;
252
253         processor = (struct acpi_madt_local_apic *)header;
254
255         if (BAD_MADT_ENTRY(processor, end))
256                 return -EINVAL;
257
258         acpi_table_print_madt_entry(header);
259
260         /*
261          * We need to register disabled CPU as well to permit
262          * counting disabled CPUs. This allows us to size
263          * cpus_possible_map more accurately, to permit
264          * to not preallocating memory for all NR_CPUS
265          * when we use CPU hotplug.
266          */
267         acpi_register_lapic(processor->id,      /* APIC ID */
268                             processor->lapic_flags & ACPI_MADT_ENABLED);
269
270         return 0;
271 }
272
273 static int __init
274 acpi_parse_sapic(struct acpi_subtable_header *header, const unsigned long end)
275 {
276         struct acpi_madt_local_sapic *processor = NULL;
277
278         processor = (struct acpi_madt_local_sapic *)header;
279
280         if (BAD_MADT_ENTRY(processor, end))
281                 return -EINVAL;
282
283         acpi_table_print_madt_entry(header);
284
285         acpi_register_lapic((processor->id << 8) | processor->eid,/* APIC ID */
286                             processor->lapic_flags & ACPI_MADT_ENABLED);
287
288         return 0;
289 }
290
291 static int __init
292 acpi_parse_lapic_addr_ovr(struct acpi_subtable_header * header,
293                           const unsigned long end)
294 {
295         struct acpi_madt_local_apic_override *lapic_addr_ovr = NULL;
296
297         lapic_addr_ovr = (struct acpi_madt_local_apic_override *)header;
298
299         if (BAD_MADT_ENTRY(lapic_addr_ovr, end))
300                 return -EINVAL;
301
302         acpi_lapic_addr = lapic_addr_ovr->address;
303
304         return 0;
305 }
306
307 static int __init
308 acpi_parse_lapic_nmi(struct acpi_subtable_header * header, const unsigned long end)
309 {
310         struct acpi_madt_local_apic_nmi *lapic_nmi = NULL;
311
312         lapic_nmi = (struct acpi_madt_local_apic_nmi *)header;
313
314         if (BAD_MADT_ENTRY(lapic_nmi, end))
315                 return -EINVAL;
316
317         acpi_table_print_madt_entry(header);
318
319         if (lapic_nmi->lint != 1)
320                 printk(KERN_WARNING PREFIX "NMI not connected to LINT 1!\n");
321
322         return 0;
323 }
324
325 #endif                          /*CONFIG_X86_LOCAL_APIC */
326
327 #ifdef CONFIG_X86_IO_APIC
328
329 static int __init
330 acpi_parse_ioapic(struct acpi_subtable_header * header, const unsigned long end)
331 {
332         struct acpi_madt_io_apic *ioapic = NULL;
333
334         ioapic = (struct acpi_madt_io_apic *)header;
335
336         if (BAD_MADT_ENTRY(ioapic, end))
337                 return -EINVAL;
338
339         acpi_table_print_madt_entry(header);
340
341         mp_register_ioapic(ioapic->id,
342                            ioapic->address, ioapic->global_irq_base);
343
344         return 0;
345 }
346
347 /*
348  * Parse Interrupt Source Override for the ACPI SCI
349  */
350 static void __init acpi_sci_ioapic_setup(u32 gsi, u16 polarity, u16 trigger)
351 {
352         if (trigger == 0)       /* compatible SCI trigger is level */
353                 trigger = 3;
354
355         if (polarity == 0)      /* compatible SCI polarity is low */
356                 polarity = 3;
357
358         /* Command-line over-ride via acpi_sci= */
359         if (acpi_sci_flags & ACPI_MADT_TRIGGER_MASK)
360                 trigger = (acpi_sci_flags & ACPI_MADT_TRIGGER_MASK) >> 2;
361
362         if (acpi_sci_flags & ACPI_MADT_POLARITY_MASK)
363                 polarity = acpi_sci_flags & ACPI_MADT_POLARITY_MASK;
364
365         /*
366          * mp_config_acpi_legacy_irqs() already setup IRQs < 16
367          * If GSI is < 16, this will update its flags,
368          * else it will create a new mp_irqs[] entry.
369          */
370         mp_override_legacy_irq(gsi, polarity, trigger, gsi);
371
372         /*
373          * stash over-ride to indicate we've been here
374          * and for later update of acpi_gbl_FADT
375          */
376         acpi_sci_override_gsi = gsi;
377         return;
378 }
379
380 static int __init
381 acpi_parse_int_src_ovr(struct acpi_subtable_header * header,
382                        const unsigned long end)
383 {
384         struct acpi_madt_interrupt_override *intsrc = NULL;
385
386         intsrc = (struct acpi_madt_interrupt_override *)header;
387
388         if (BAD_MADT_ENTRY(intsrc, end))
389                 return -EINVAL;
390
391         acpi_table_print_madt_entry(header);
392
393         if (intsrc->source_irq == acpi_gbl_FADT.sci_interrupt) {
394                 acpi_sci_ioapic_setup(intsrc->global_irq,
395                                       intsrc->inti_flags & ACPI_MADT_POLARITY_MASK,
396                                       (intsrc->inti_flags & ACPI_MADT_TRIGGER_MASK) >> 2);
397                 return 0;
398         }
399
400         if (acpi_skip_timer_override &&
401             intsrc->source_irq == 0 && intsrc->global_irq == 2) {
402                 printk(PREFIX "BIOS IRQ0 pin2 override ignored.\n");
403                 return 0;
404         }
405
406         mp_override_legacy_irq(intsrc->source_irq,
407                                 intsrc->inti_flags & ACPI_MADT_POLARITY_MASK,
408                                 (intsrc->inti_flags & ACPI_MADT_TRIGGER_MASK) >> 2,
409                                 intsrc->global_irq);
410
411         return 0;
412 }
413
414 static int __init
415 acpi_parse_nmi_src(struct acpi_subtable_header * header, const unsigned long end)
416 {
417         struct acpi_madt_nmi_source *nmi_src = NULL;
418
419         nmi_src = (struct acpi_madt_nmi_source *)header;
420
421         if (BAD_MADT_ENTRY(nmi_src, end))
422                 return -EINVAL;
423
424         acpi_table_print_madt_entry(header);
425
426         /* TBD: Support nimsrc entries? */
427
428         return 0;
429 }
430
431 #endif                          /* CONFIG_X86_IO_APIC */
432
433 /*
434  * acpi_pic_sci_set_trigger()
435  *
436  * use ELCR to set PIC-mode trigger type for SCI
437  *
438  * If a PIC-mode SCI is not recognized or gives spurious IRQ7's
439  * it may require Edge Trigger -- use "acpi_sci=edge"
440  *
441  * Port 0x4d0-4d1 are ECLR1 and ECLR2, the Edge/Level Control Registers
442  * for the 8259 PIC.  bit[n] = 1 means irq[n] is Level, otherwise Edge.
443  * ECLR1 is IRQs 0-7 (IRQ 0, 1, 2 must be 0)
444  * ECLR2 is IRQs 8-15 (IRQ 8, 13 must be 0)
445  */
446
447 void __init acpi_pic_sci_set_trigger(unsigned int irq, u16 trigger)
448 {
449         unsigned int mask = 1 << irq;
450         unsigned int old, new;
451
452         /* Real old ELCR mask */
453         old = inb(0x4d0) | (inb(0x4d1) << 8);
454
455         /*
456          * If we use ACPI to set PCI IRQs, then we should clear ELCR
457          * since we will set it correctly as we enable the PCI irq
458          * routing.
459          */
460         new = acpi_noirq ? old : 0;
461
462         /*
463          * Update SCI information in the ELCR, it isn't in the PCI
464          * routing tables..
465          */
466         switch (trigger) {
467         case 1:         /* Edge - clear */
468                 new &= ~mask;
469                 break;
470         case 3:         /* Level - set */
471                 new |= mask;
472                 break;
473         }
474
475         if (old == new)
476                 return;
477
478         printk(PREFIX "setting ELCR to %04x (from %04x)\n", new, old);
479         outb(new, 0x4d0);
480         outb(new >> 8, 0x4d1);
481 }
482
483 int acpi_gsi_to_irq(u32 gsi, unsigned int *irq)
484 {
485         *irq = gsi;
486         return 0;
487 }
488
489 /*
490  * success: return IRQ number (>=0)
491  * failure: return < 0
492  */
493 int acpi_register_gsi(u32 gsi, int triggering, int polarity)
494 {
495         unsigned int irq;
496         unsigned int plat_gsi = gsi;
497
498 #ifdef CONFIG_PCI
499         /*
500          * Make sure all (legacy) PCI IRQs are set as level-triggered.
501          */
502         if (acpi_irq_model == ACPI_IRQ_MODEL_PIC) {
503                 if (triggering == ACPI_LEVEL_SENSITIVE)
504                         eisa_set_level_irq(gsi);
505         }
506 #endif
507
508 #ifdef CONFIG_X86_IO_APIC
509         if (acpi_irq_model == ACPI_IRQ_MODEL_IOAPIC) {
510                 plat_gsi = mp_register_gsi(gsi, triggering, polarity);
511         }
512 #endif
513         acpi_gsi_to_irq(plat_gsi, &irq);
514         return irq;
515 }
516
517 /*
518  *  ACPI based hotplug support for CPU
519  */
520 #ifdef CONFIG_ACPI_HOTPLUG_CPU
521
522 static int __cpuinit _acpi_map_lsapic(acpi_handle handle, int *pcpu)
523 {
524         struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
525         union acpi_object *obj;
526         struct acpi_madt_local_apic *lapic;
527         cpumask_t tmp_map, new_map;
528         u8 physid;
529         int cpu;
530
531         if (ACPI_FAILURE(acpi_evaluate_object(handle, "_MAT", NULL, &buffer)))
532                 return -EINVAL;
533
534         if (!buffer.length || !buffer.pointer)
535                 return -EINVAL;
536
537         obj = buffer.pointer;
538         if (obj->type != ACPI_TYPE_BUFFER ||
539             obj->buffer.length < sizeof(*lapic)) {
540                 kfree(buffer.pointer);
541                 return -EINVAL;
542         }
543
544         lapic = (struct acpi_madt_local_apic *)obj->buffer.pointer;
545
546         if (lapic->header.type != ACPI_MADT_TYPE_LOCAL_APIC ||
547             !(lapic->lapic_flags & ACPI_MADT_ENABLED)) {
548                 kfree(buffer.pointer);
549                 return -EINVAL;
550         }
551
552         physid = lapic->id;
553
554         kfree(buffer.pointer);
555         buffer.length = ACPI_ALLOCATE_BUFFER;
556         buffer.pointer = NULL;
557
558         tmp_map = cpu_present_map;
559         acpi_register_lapic(physid, lapic->lapic_flags & ACPI_MADT_ENABLED);
560
561         /*
562          * If mp_register_lapic successfully generates a new logical cpu
563          * number, then the following will get us exactly what was mapped
564          */
565         cpus_andnot(new_map, cpu_present_map, tmp_map);
566         if (cpus_empty(new_map)) {
567                 printk ("Unable to map lapic to logical cpu number\n");
568                 return -EINVAL;
569         }
570
571         cpu = first_cpu(new_map);
572
573         *pcpu = cpu;
574         return 0;
575 }
576
577 /* wrapper to silence section mismatch warning */
578 int __ref acpi_map_lsapic(acpi_handle handle, int *pcpu)
579 {
580         return _acpi_map_lsapic(handle, pcpu);
581 }
582 EXPORT_SYMBOL(acpi_map_lsapic);
583
584 int acpi_unmap_lsapic(int cpu)
585 {
586         per_cpu(x86_cpu_to_apicid, cpu) = -1;
587         cpu_clear(cpu, cpu_present_map);
588         num_processors--;
589
590         return (0);
591 }
592
593 EXPORT_SYMBOL(acpi_unmap_lsapic);
594 #endif                          /* CONFIG_ACPI_HOTPLUG_CPU */
595
596 int acpi_register_ioapic(acpi_handle handle, u64 phys_addr, u32 gsi_base)
597 {
598         /* TBD */
599         return -EINVAL;
600 }
601
602 EXPORT_SYMBOL(acpi_register_ioapic);
603
604 int acpi_unregister_ioapic(acpi_handle handle, u32 gsi_base)
605 {
606         /* TBD */
607         return -EINVAL;
608 }
609
610 EXPORT_SYMBOL(acpi_unregister_ioapic);
611
612 static int __init acpi_parse_sbf(struct acpi_table_header *table)
613 {
614         struct acpi_table_boot *sb;
615
616         sb = (struct acpi_table_boot *)table;
617         if (!sb) {
618                 printk(KERN_WARNING PREFIX "Unable to map SBF\n");
619                 return -ENODEV;
620         }
621
622         sbf_port = sb->cmos_index;      /* Save CMOS port */
623
624         return 0;
625 }
626
627 #ifdef CONFIG_HPET_TIMER
628 #include <asm/hpet.h>
629
630 static struct __initdata resource *hpet_res;
631
632 static int __init acpi_parse_hpet(struct acpi_table_header *table)
633 {
634         struct acpi_table_hpet *hpet_tbl;
635
636         hpet_tbl = (struct acpi_table_hpet *)table;
637         if (!hpet_tbl) {
638                 printk(KERN_WARNING PREFIX "Unable to map HPET\n");
639                 return -ENODEV;
640         }
641
642         if (hpet_tbl->address.space_id != ACPI_SPACE_MEM) {
643                 printk(KERN_WARNING PREFIX "HPET timers must be located in "
644                        "memory.\n");
645                 return -1;
646         }
647
648         hpet_address = hpet_tbl->address.address;
649
650         /*
651          * Some broken BIOSes advertise HPET at 0x0. We really do not
652          * want to allocate a resource there.
653          */
654         if (!hpet_address) {
655                 printk(KERN_WARNING PREFIX
656                        "HPET id: %#x base: %#lx is invalid\n",
657                        hpet_tbl->id, hpet_address);
658                 return 0;
659         }
660 #ifdef CONFIG_X86_64
661         /*
662          * Some even more broken BIOSes advertise HPET at
663          * 0xfed0000000000000 instead of 0xfed00000. Fix it up and add
664          * some noise:
665          */
666         if (hpet_address == 0xfed0000000000000UL) {
667                 if (!hpet_force_user) {
668                         printk(KERN_WARNING PREFIX "HPET id: %#x "
669                                "base: 0xfed0000000000000 is bogus\n "
670                                "try hpet=force on the kernel command line to "
671                                "fix it up to 0xfed00000.\n", hpet_tbl->id);
672                         hpet_address = 0;
673                         return 0;
674                 }
675                 printk(KERN_WARNING PREFIX
676                        "HPET id: %#x base: 0xfed0000000000000 fixed up "
677                        "to 0xfed00000.\n", hpet_tbl->id);
678                 hpet_address >>= 32;
679         }
680 #endif
681         printk(KERN_INFO PREFIX "HPET id: %#x base: %#lx\n",
682                hpet_tbl->id, hpet_address);
683
684         /*
685          * Allocate and initialize the HPET firmware resource for adding into
686          * the resource tree during the lateinit timeframe.
687          */
688 #define HPET_RESOURCE_NAME_SIZE 9
689         hpet_res = alloc_bootmem(sizeof(*hpet_res) + HPET_RESOURCE_NAME_SIZE);
690
691         hpet_res->name = (void *)&hpet_res[1];
692         hpet_res->flags = IORESOURCE_MEM;
693         snprintf((char *)hpet_res->name, HPET_RESOURCE_NAME_SIZE, "HPET %u",
694                  hpet_tbl->sequence);
695
696         hpet_res->start = hpet_address;
697         hpet_res->end = hpet_address + (1 * 1024) - 1;
698
699         return 0;
700 }
701
702 /*
703  * hpet_insert_resource inserts the HPET resources used into the resource
704  * tree.
705  */
706 static __init int hpet_insert_resource(void)
707 {
708         if (!hpet_res)
709                 return 1;
710
711         return insert_resource(&iomem_resource, hpet_res);
712 }
713
714 late_initcall(hpet_insert_resource);
715
716 #else
717 #define acpi_parse_hpet NULL
718 #endif
719
720 static int __init acpi_parse_fadt(struct acpi_table_header *table)
721 {
722
723 #ifdef CONFIG_X86_PM_TIMER
724         /* detect the location of the ACPI PM Timer */
725         if (acpi_gbl_FADT.header.revision >= FADT2_REVISION_ID) {
726                 /* FADT rev. 2 */
727                 if (acpi_gbl_FADT.xpm_timer_block.space_id !=
728                     ACPI_ADR_SPACE_SYSTEM_IO)
729                         return 0;
730
731                 pmtmr_ioport = acpi_gbl_FADT.xpm_timer_block.address;
732                 /*
733                  * "X" fields are optional extensions to the original V1.0
734                  * fields, so we must selectively expand V1.0 fields if the
735                  * corresponding X field is zero.
736                  */
737                 if (!pmtmr_ioport)
738                         pmtmr_ioport = acpi_gbl_FADT.pm_timer_block;
739         } else {
740                 /* FADT rev. 1 */
741                 pmtmr_ioport = acpi_gbl_FADT.pm_timer_block;
742         }
743         if (pmtmr_ioport)
744                 printk(KERN_INFO PREFIX "PM-Timer IO Port: %#x\n",
745                        pmtmr_ioport);
746 #endif
747         return 0;
748 }
749
750 #ifdef  CONFIG_X86_LOCAL_APIC
751 /*
752  * Parse LAPIC entries in MADT
753  * returns 0 on success, < 0 on error
754  */
755
756 static void __init acpi_register_lapic_address(unsigned long address)
757 {
758         mp_lapic_addr = address;
759
760         set_fixmap_nocache(FIX_APIC_BASE, address);
761         if (boot_cpu_physical_apicid == -1U) {
762                 boot_cpu_physical_apicid  = read_apic_id();
763                 apic_version[boot_cpu_physical_apicid] =
764                          GET_APIC_VERSION(apic_read(APIC_LVR));
765         }
766 }
767
768 static int __init early_acpi_parse_madt_lapic_addr_ovr(void)
769 {
770         int count;
771
772         if (!cpu_has_apic)
773                 return -ENODEV;
774
775         /*
776          * Note that the LAPIC address is obtained from the MADT (32-bit value)
777          * and (optionally) overriden by a LAPIC_ADDR_OVR entry (64-bit value).
778          */
779
780         count =
781             acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_APIC_OVERRIDE,
782                                   acpi_parse_lapic_addr_ovr, 0);
783         if (count < 0) {
784                 printk(KERN_ERR PREFIX
785                        "Error parsing LAPIC address override entry\n");
786                 return count;
787         }
788
789         acpi_register_lapic_address(acpi_lapic_addr);
790
791         return count;
792 }
793
794 static int __init acpi_parse_madt_lapic_entries(void)
795 {
796         int count;
797
798         if (!cpu_has_apic)
799                 return -ENODEV;
800
801         /*
802          * Note that the LAPIC address is obtained from the MADT (32-bit value)
803          * and (optionally) overriden by a LAPIC_ADDR_OVR entry (64-bit value).
804          */
805
806         count =
807             acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_APIC_OVERRIDE,
808                                   acpi_parse_lapic_addr_ovr, 0);
809         if (count < 0) {
810                 printk(KERN_ERR PREFIX
811                        "Error parsing LAPIC address override entry\n");
812                 return count;
813         }
814
815         acpi_register_lapic_address(acpi_lapic_addr);
816
817         count = acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_SAPIC,
818                                       acpi_parse_sapic, MAX_APICS);
819
820         if (!count)
821                 count = acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_APIC,
822                                               acpi_parse_lapic, MAX_APICS);
823         if (!count) {
824                 printk(KERN_ERR PREFIX "No LAPIC entries present\n");
825                 /* TBD: Cleanup to allow fallback to MPS */
826                 return -ENODEV;
827         } else if (count < 0) {
828                 printk(KERN_ERR PREFIX "Error parsing LAPIC entry\n");
829                 /* TBD: Cleanup to allow fallback to MPS */
830                 return count;
831         }
832
833         count =
834             acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_APIC_NMI, acpi_parse_lapic_nmi, 0);
835         if (count < 0) {
836                 printk(KERN_ERR PREFIX "Error parsing LAPIC NMI entry\n");
837                 /* TBD: Cleanup to allow fallback to MPS */
838                 return count;
839         }
840         return 0;
841 }
842 #endif                          /* CONFIG_X86_LOCAL_APIC */
843
844 #ifdef  CONFIG_X86_IO_APIC
845 #define MP_ISA_BUS              0
846
847 #ifdef CONFIG_X86_ES7000
848 extern int es7000_plat;
849 #endif
850
851 static struct {
852         int apic_id;
853         int gsi_base;
854         int gsi_end;
855         DECLARE_BITMAP(pin_programmed, MP_MAX_IOAPIC_PIN + 1);
856 } mp_ioapic_routing[MAX_IO_APICS];
857
858 static int mp_find_ioapic(int gsi)
859 {
860         int i = 0;
861
862         /* Find the IOAPIC that manages this GSI. */
863         for (i = 0; i < nr_ioapics; i++) {
864                 if ((gsi >= mp_ioapic_routing[i].gsi_base)
865                     && (gsi <= mp_ioapic_routing[i].gsi_end))
866                         return i;
867         }
868
869         printk(KERN_ERR "ERROR: Unable to locate IOAPIC for GSI %d\n", gsi);
870         return -1;
871 }
872
873 static u8 __init uniq_ioapic_id(u8 id)
874 {
875 #ifdef CONFIG_X86_32
876         if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
877             !APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
878                 return io_apic_get_unique_id(nr_ioapics, id);
879         else
880                 return id;
881 #else
882         int i;
883         DECLARE_BITMAP(used, 256);
884         bitmap_zero(used, 256);
885         for (i = 0; i < nr_ioapics; i++) {
886                 struct mp_config_ioapic *ia = &mp_ioapics[i];
887                 __set_bit(ia->mp_apicid, used);
888         }
889         if (!test_bit(id, used))
890                 return id;
891         return find_first_zero_bit(used, 256);
892 #endif
893 }
894
895 static int bad_ioapic(unsigned long address)
896 {
897         if (nr_ioapics >= MAX_IO_APICS) {
898                 printk(KERN_ERR "ERROR: Max # of I/O APICs (%d) exceeded "
899                        "(found %d)\n", MAX_IO_APICS, nr_ioapics);
900                 panic("Recompile kernel with bigger MAX_IO_APICS!\n");
901         }
902         if (!address) {
903                 printk(KERN_ERR "WARNING: Bogus (zero) I/O APIC address"
904                        " found in table, skipping!\n");
905                 return 1;
906         }
907         return 0;
908 }
909
910 void __init mp_register_ioapic(int id, u32 address, u32 gsi_base)
911 {
912         int idx = 0;
913
914         if (bad_ioapic(address))
915                 return;
916
917         idx = nr_ioapics;
918
919         mp_ioapics[idx].mp_type = MP_IOAPIC;
920         mp_ioapics[idx].mp_flags = MPC_APIC_USABLE;
921         mp_ioapics[idx].mp_apicaddr = address;
922
923         set_fixmap_nocache(FIX_IO_APIC_BASE_0 + idx, address);
924         mp_ioapics[idx].mp_apicid = uniq_ioapic_id(id);
925 #ifdef CONFIG_X86_32
926         mp_ioapics[idx].mp_apicver = io_apic_get_version(idx);
927 #else
928         mp_ioapics[idx].mp_apicver = 0;
929 #endif
930         /*
931          * Build basic GSI lookup table to facilitate gsi->io_apic lookups
932          * and to prevent reprogramming of IOAPIC pins (PCI GSIs).
933          */
934         mp_ioapic_routing[idx].apic_id = mp_ioapics[idx].mp_apicid;
935         mp_ioapic_routing[idx].gsi_base = gsi_base;
936         mp_ioapic_routing[idx].gsi_end = gsi_base +
937             io_apic_get_redir_entries(idx);
938
939         printk(KERN_INFO "IOAPIC[%d]: apic_id %d, version %d, address 0x%lx, "
940                "GSI %d-%d\n", idx, mp_ioapics[idx].mp_apicid,
941                mp_ioapics[idx].mp_apicver, mp_ioapics[idx].mp_apicaddr,
942                mp_ioapic_routing[idx].gsi_base, mp_ioapic_routing[idx].gsi_end);
943
944         nr_ioapics++;
945 }
946
947 static void assign_to_mp_irq(struct mp_config_intsrc *m,
948                                     struct mp_config_intsrc *mp_irq)
949 {
950         memcpy(mp_irq, m, sizeof(struct mp_config_intsrc));
951 }
952
953 static int mp_irq_cmp(struct mp_config_intsrc *mp_irq,
954                                 struct mp_config_intsrc *m)
955 {
956         return memcmp(mp_irq, m, sizeof(struct mp_config_intsrc));
957 }
958
959 static void save_mp_irq(struct mp_config_intsrc *m)
960 {
961         int i;
962
963         for (i = 0; i < mp_irq_entries; i++) {
964                 if (!mp_irq_cmp(&mp_irqs[i], m))
965                         return;
966         }
967
968         assign_to_mp_irq(m, &mp_irqs[mp_irq_entries]);
969         if (++mp_irq_entries == MAX_IRQ_SOURCES)
970                 panic("Max # of irq sources exceeded!!\n");
971 }
972
973 void __init mp_override_legacy_irq(u8 bus_irq, u8 polarity, u8 trigger, u32 gsi)
974 {
975         int ioapic;
976         int pin;
977         struct mp_config_intsrc mp_irq;
978
979         /*
980          * Convert 'gsi' to 'ioapic.pin'.
981          */
982         ioapic = mp_find_ioapic(gsi);
983         if (ioapic < 0)
984                 return;
985         pin = gsi - mp_ioapic_routing[ioapic].gsi_base;
986
987         /*
988          * TBD: This check is for faulty timer entries, where the override
989          *      erroneously sets the trigger to level, resulting in a HUGE
990          *      increase of timer interrupts!
991          */
992         if ((bus_irq == 0) && (trigger == 3))
993                 trigger = 1;
994
995         mp_irq.mp_type = MP_INTSRC;
996         mp_irq.mp_irqtype = mp_INT;
997         mp_irq.mp_irqflag = (trigger << 2) | polarity;
998         mp_irq.mp_srcbus = MP_ISA_BUS;
999         mp_irq.mp_srcbusirq = bus_irq;  /* IRQ */
1000         mp_irq.mp_dstapic = mp_ioapics[ioapic].mp_apicid; /* APIC ID */
1001         mp_irq.mp_dstirq = pin; /* INTIN# */
1002
1003         save_mp_irq(&mp_irq);
1004 }
1005
1006 void __init mp_config_acpi_legacy_irqs(void)
1007 {
1008         int i;
1009         int ioapic;
1010         unsigned int dstapic;
1011         struct mp_config_intsrc mp_irq;
1012
1013 #if defined (CONFIG_MCA) || defined (CONFIG_EISA)
1014         /*
1015          * Fabricate the legacy ISA bus (bus #31).
1016          */
1017         mp_bus_id_to_type[MP_ISA_BUS] = MP_BUS_ISA;
1018 #endif
1019         set_bit(MP_ISA_BUS, mp_bus_not_pci);
1020         pr_debug("Bus #%d is ISA\n", MP_ISA_BUS);
1021
1022 #ifdef CONFIG_X86_ES7000
1023         /*
1024          * Older generations of ES7000 have no legacy identity mappings
1025          */
1026         if (es7000_plat == 1)
1027                 return;
1028 #endif
1029
1030         /*
1031          * Locate the IOAPIC that manages the ISA IRQs (0-15).
1032          */
1033         ioapic = mp_find_ioapic(0);
1034         if (ioapic < 0)
1035                 return;
1036         dstapic = mp_ioapics[ioapic].mp_apicid;
1037
1038         /*
1039          * Use the default configuration for the IRQs 0-15.  Unless
1040          * overridden by (MADT) interrupt source override entries.
1041          */
1042         for (i = 0; i < 16; i++) {
1043                 int idx;
1044
1045                 for (idx = 0; idx < mp_irq_entries; idx++) {
1046                         struct mp_config_intsrc *irq = mp_irqs + idx;
1047
1048                         /* Do we already have a mapping for this ISA IRQ? */
1049                         if (irq->mp_srcbus == MP_ISA_BUS
1050                             && irq->mp_srcbusirq == i)
1051                                 break;
1052
1053                         /* Do we already have a mapping for this IOAPIC pin */
1054                         if (irq->mp_dstapic == dstapic &&
1055                             irq->mp_dstirq == i)
1056                                 break;
1057                 }
1058
1059                 if (idx != mp_irq_entries) {
1060                         printk(KERN_DEBUG "ACPI: IRQ%d used by override.\n", i);
1061                         continue;       /* IRQ already used */
1062                 }
1063
1064                 mp_irq.mp_type = MP_INTSRC;
1065                 mp_irq.mp_irqflag = 0;  /* Conforming */
1066                 mp_irq.mp_srcbus = MP_ISA_BUS;
1067                 mp_irq.mp_dstapic = dstapic;
1068                 mp_irq.mp_irqtype = mp_INT;
1069                 mp_irq.mp_srcbusirq = i; /* Identity mapped */
1070                 mp_irq.mp_dstirq = i;
1071
1072                 save_mp_irq(&mp_irq);
1073         }
1074 }
1075
1076 int mp_register_gsi(u32 gsi, int triggering, int polarity)
1077 {
1078         int ioapic;
1079         int ioapic_pin;
1080 #ifdef CONFIG_X86_32
1081 #define MAX_GSI_NUM     4096
1082 #define IRQ_COMPRESSION_START   64
1083
1084         static int pci_irq = IRQ_COMPRESSION_START;
1085         /*
1086          * Mapping between Global System Interrupts, which
1087          * represent all possible interrupts, and IRQs
1088          * assigned to actual devices.
1089          */
1090         static int gsi_to_irq[MAX_GSI_NUM];
1091 #else
1092
1093         if (acpi_irq_model != ACPI_IRQ_MODEL_IOAPIC)
1094                 return gsi;
1095 #endif
1096
1097         /* Don't set up the ACPI SCI because it's already set up */
1098         if (acpi_gbl_FADT.sci_interrupt == gsi)
1099                 return gsi;
1100
1101         ioapic = mp_find_ioapic(gsi);
1102         if (ioapic < 0) {
1103                 printk(KERN_WARNING "No IOAPIC for GSI %u\n", gsi);
1104                 return gsi;
1105         }
1106
1107         ioapic_pin = gsi - mp_ioapic_routing[ioapic].gsi_base;
1108
1109 #ifdef CONFIG_X86_32
1110         if (ioapic_renumber_irq)
1111                 gsi = ioapic_renumber_irq(ioapic, gsi);
1112 #endif
1113
1114         /*
1115          * Avoid pin reprogramming.  PRTs typically include entries
1116          * with redundant pin->gsi mappings (but unique PCI devices);
1117          * we only program the IOAPIC on the first.
1118          */
1119         if (ioapic_pin > MP_MAX_IOAPIC_PIN) {
1120                 printk(KERN_ERR "Invalid reference to IOAPIC pin "
1121                        "%d-%d\n", mp_ioapic_routing[ioapic].apic_id,
1122                        ioapic_pin);
1123                 return gsi;
1124         }
1125         if (test_bit(ioapic_pin, mp_ioapic_routing[ioapic].pin_programmed)) {
1126                 pr_debug(KERN_DEBUG "Pin %d-%d already programmed\n",
1127                          mp_ioapic_routing[ioapic].apic_id, ioapic_pin);
1128 #ifdef CONFIG_X86_32
1129                 return (gsi < IRQ_COMPRESSION_START ? gsi : gsi_to_irq[gsi]);
1130 #else
1131                 return gsi;
1132 #endif
1133         }
1134
1135         set_bit(ioapic_pin, mp_ioapic_routing[ioapic].pin_programmed);
1136 #ifdef CONFIG_X86_32
1137         /*
1138          * For GSI >= 64, use IRQ compression
1139          */
1140         if ((gsi >= IRQ_COMPRESSION_START)
1141             && (triggering == ACPI_LEVEL_SENSITIVE)) {
1142                 /*
1143                  * For PCI devices assign IRQs in order, avoiding gaps
1144                  * due to unused I/O APIC pins.
1145                  */
1146                 int irq = gsi;
1147                 if (gsi < MAX_GSI_NUM) {
1148                         /*
1149                          * Retain the VIA chipset work-around (gsi > 15), but
1150                          * avoid a problem where the 8254 timer (IRQ0) is setup
1151                          * via an override (so it's not on pin 0 of the ioapic),
1152                          * and at the same time, the pin 0 interrupt is a PCI
1153                          * type.  The gsi > 15 test could cause these two pins
1154                          * to be shared as IRQ0, and they are not shareable.
1155                          * So test for this condition, and if necessary, avoid
1156                          * the pin collision.
1157                          */
1158                         gsi = pci_irq++;
1159                         /*
1160                          * Don't assign IRQ used by ACPI SCI
1161                          */
1162                         if (gsi == acpi_gbl_FADT.sci_interrupt)
1163                                 gsi = pci_irq++;
1164                         gsi_to_irq[irq] = gsi;
1165                 } else {
1166                         printk(KERN_ERR "GSI %u is too high\n", gsi);
1167                         return gsi;
1168                 }
1169         }
1170 #endif
1171         io_apic_set_pci_routing(ioapic, ioapic_pin, gsi,
1172                                 triggering == ACPI_EDGE_SENSITIVE ? 0 : 1,
1173                                 polarity == ACPI_ACTIVE_HIGH ? 0 : 1);
1174         return gsi;
1175 }
1176
1177 int mp_config_acpi_gsi(unsigned char number, unsigned int devfn, u8 pin,
1178                         u32 gsi, int triggering, int polarity)
1179 {
1180 #ifdef CONFIG_X86_MPPARSE
1181         struct mp_config_intsrc mp_irq;
1182         int ioapic;
1183
1184         if (!acpi_ioapic)
1185                 return 0;
1186
1187         /* print the entry should happen on mptable identically */
1188         mp_irq.mp_type = MP_INTSRC;
1189         mp_irq.mp_irqtype = mp_INT;
1190         mp_irq.mp_irqflag = (triggering == ACPI_EDGE_SENSITIVE ? 4 : 0x0c) |
1191                                 (polarity == ACPI_ACTIVE_HIGH ? 1 : 3);
1192         mp_irq.mp_srcbus = number;
1193         mp_irq.mp_srcbusirq = (((devfn >> 3) & 0x1f) << 2) | ((pin - 1) & 3);
1194         ioapic = mp_find_ioapic(gsi);
1195         mp_irq.mp_dstapic = mp_ioapic_routing[ioapic].apic_id;
1196         mp_irq.mp_dstirq = gsi - mp_ioapic_routing[ioapic].gsi_base;
1197
1198         save_mp_irq(&mp_irq);
1199 #endif
1200         return 0;
1201 }
1202
1203 /*
1204  * Parse IOAPIC related entries in MADT
1205  * returns 0 on success, < 0 on error
1206  */
1207 static int __init acpi_parse_madt_ioapic_entries(void)
1208 {
1209         int count;
1210
1211         /*
1212          * ACPI interpreter is required to complete interrupt setup,
1213          * so if it is off, don't enumerate the io-apics with ACPI.
1214          * If MPS is present, it will handle them,
1215          * otherwise the system will stay in PIC mode
1216          */
1217         if (acpi_disabled || acpi_noirq) {
1218                 return -ENODEV;
1219         }
1220
1221         if (!cpu_has_apic)
1222                 return -ENODEV;
1223
1224         /*
1225          * if "noapic" boot option, don't look for IO-APICs
1226          */
1227         if (skip_ioapic_setup) {
1228                 printk(KERN_INFO PREFIX "Skipping IOAPIC probe "
1229                        "due to 'noapic' option.\n");
1230                 return -ENODEV;
1231         }
1232
1233         count =
1234             acpi_table_parse_madt(ACPI_MADT_TYPE_IO_APIC, acpi_parse_ioapic,
1235                                   MAX_IO_APICS);
1236         if (!count) {
1237                 printk(KERN_ERR PREFIX "No IOAPIC entries present\n");
1238                 return -ENODEV;
1239         } else if (count < 0) {
1240                 printk(KERN_ERR PREFIX "Error parsing IOAPIC entry\n");
1241                 return count;
1242         }
1243
1244         count =
1245             acpi_table_parse_madt(ACPI_MADT_TYPE_INTERRUPT_OVERRIDE, acpi_parse_int_src_ovr,
1246                                   NR_IRQ_VECTORS);
1247         if (count < 0) {
1248                 printk(KERN_ERR PREFIX
1249                        "Error parsing interrupt source overrides entry\n");
1250                 /* TBD: Cleanup to allow fallback to MPS */
1251                 return count;
1252         }
1253
1254         /*
1255          * If BIOS did not supply an INT_SRC_OVR for the SCI
1256          * pretend we got one so we can set the SCI flags.
1257          */
1258         if (!acpi_sci_override_gsi)
1259                 acpi_sci_ioapic_setup(acpi_gbl_FADT.sci_interrupt, 0, 0);
1260
1261         /* Fill in identity legacy mapings where no override */
1262         mp_config_acpi_legacy_irqs();
1263
1264         count =
1265             acpi_table_parse_madt(ACPI_MADT_TYPE_NMI_SOURCE, acpi_parse_nmi_src,
1266                                   NR_IRQ_VECTORS);
1267         if (count < 0) {
1268                 printk(KERN_ERR PREFIX "Error parsing NMI SRC entry\n");
1269                 /* TBD: Cleanup to allow fallback to MPS */
1270                 return count;
1271         }
1272
1273         return 0;
1274 }
1275 #else
1276 static inline int acpi_parse_madt_ioapic_entries(void)
1277 {
1278         return -1;
1279 }
1280 #endif  /* !CONFIG_X86_IO_APIC */
1281
1282 static void __init early_acpi_process_madt(void)
1283 {
1284 #ifdef CONFIG_X86_LOCAL_APIC
1285         int error;
1286
1287         if (!acpi_table_parse(ACPI_SIG_MADT, acpi_parse_madt)) {
1288
1289                 /*
1290                  * Parse MADT LAPIC entries
1291                  */
1292                 error = early_acpi_parse_madt_lapic_addr_ovr();
1293                 if (!error) {
1294                         acpi_lapic = 1;
1295                         smp_found_config = 1;
1296                 }
1297                 if (error == -EINVAL) {
1298                         /*
1299                          * Dell Precision Workstation 410, 610 come here.
1300                          */
1301                         printk(KERN_ERR PREFIX
1302                                "Invalid BIOS MADT, disabling ACPI\n");
1303                         disable_acpi();
1304                 }
1305         }
1306 #endif
1307 }
1308
1309 static void __init acpi_process_madt(void)
1310 {
1311 #ifdef CONFIG_X86_LOCAL_APIC
1312         int error;
1313
1314         if (!acpi_table_parse(ACPI_SIG_MADT, acpi_parse_madt)) {
1315
1316                 /*
1317                  * Parse MADT LAPIC entries
1318                  */
1319                 error = acpi_parse_madt_lapic_entries();
1320                 if (!error) {
1321                         acpi_lapic = 1;
1322
1323 #ifdef CONFIG_X86_GENERICARCH
1324                         generic_bigsmp_probe();
1325 #endif
1326                         /*
1327                          * Parse MADT IO-APIC entries
1328                          */
1329                         error = acpi_parse_madt_ioapic_entries();
1330                         if (!error) {
1331                                 acpi_irq_model = ACPI_IRQ_MODEL_IOAPIC;
1332                                 acpi_irq_balance_set(NULL);
1333                                 acpi_ioapic = 1;
1334
1335                                 smp_found_config = 1;
1336 #ifdef CONFIG_X86_32
1337                                 setup_apic_routing();
1338 #endif
1339                         }
1340                 }
1341                 if (error == -EINVAL) {
1342                         /*
1343                          * Dell Precision Workstation 410, 610 come here.
1344                          */
1345                         printk(KERN_ERR PREFIX
1346                                "Invalid BIOS MADT, disabling ACPI\n");
1347                         disable_acpi();
1348                 }
1349         }
1350 #endif
1351         return;
1352 }
1353
1354 static int __init disable_acpi_irq(const struct dmi_system_id *d)
1355 {
1356         if (!acpi_force) {
1357                 printk(KERN_NOTICE "%s detected: force use of acpi=noirq\n",
1358                        d->ident);
1359                 acpi_noirq_set();
1360         }
1361         return 0;
1362 }
1363
1364 static int __init disable_acpi_pci(const struct dmi_system_id *d)
1365 {
1366         if (!acpi_force) {
1367                 printk(KERN_NOTICE "%s detected: force use of pci=noacpi\n",
1368                        d->ident);
1369                 acpi_disable_pci();
1370         }
1371         return 0;
1372 }
1373
1374 static int __init dmi_disable_acpi(const struct dmi_system_id *d)
1375 {
1376         if (!acpi_force) {
1377                 printk(KERN_NOTICE "%s detected: acpi off\n", d->ident);
1378                 disable_acpi();
1379         } else {
1380                 printk(KERN_NOTICE
1381                        "Warning: DMI blacklist says broken, but acpi forced\n");
1382         }
1383         return 0;
1384 }
1385
1386 /*
1387  * Limit ACPI to CPU enumeration for HT
1388  */
1389 static int __init force_acpi_ht(const struct dmi_system_id *d)
1390 {
1391         if (!acpi_force) {
1392                 printk(KERN_NOTICE "%s detected: force use of acpi=ht\n",
1393                        d->ident);
1394                 disable_acpi();
1395                 acpi_ht = 1;
1396         } else {
1397                 printk(KERN_NOTICE
1398                        "Warning: acpi=force overrules DMI blacklist: acpi=ht\n");
1399         }
1400         return 0;
1401 }
1402
1403 /*
1404  * Force ignoring BIOS IRQ0 pin2 override
1405  */
1406 static int __init dmi_ignore_irq0_timer_override(const struct dmi_system_id *d)
1407 {
1408         pr_notice("%s detected: Ignoring BIOS IRQ0 pin2 override\n", d->ident);
1409         acpi_skip_timer_override = 1;
1410         return 0;
1411 }
1412
1413 /*
1414  * If your system is blacklisted here, but you find that acpi=force
1415  * works for you, please contact acpi-devel@sourceforge.net
1416  */
1417 static struct dmi_system_id __initdata acpi_dmi_table[] = {
1418         /*
1419          * Boxes that need ACPI disabled
1420          */
1421         {
1422          .callback = dmi_disable_acpi,
1423          .ident = "IBM Thinkpad",
1424          .matches = {
1425                      DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1426                      DMI_MATCH(DMI_BOARD_NAME, "2629H1G"),
1427                      },
1428          },
1429
1430         /*
1431          * Boxes that need acpi=ht
1432          */
1433         {
1434          .callback = force_acpi_ht,
1435          .ident = "FSC Primergy T850",
1436          .matches = {
1437                      DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
1438                      DMI_MATCH(DMI_PRODUCT_NAME, "PRIMERGY T850"),
1439                      },
1440          },
1441         {
1442          .callback = force_acpi_ht,
1443          .ident = "HP VISUALIZE NT Workstation",
1444          .matches = {
1445                      DMI_MATCH(DMI_BOARD_VENDOR, "Hewlett-Packard"),
1446                      DMI_MATCH(DMI_PRODUCT_NAME, "HP VISUALIZE NT Workstation"),
1447                      },
1448          },
1449         {
1450          .callback = force_acpi_ht,
1451          .ident = "Compaq Workstation W8000",
1452          .matches = {
1453                      DMI_MATCH(DMI_SYS_VENDOR, "Compaq"),
1454                      DMI_MATCH(DMI_PRODUCT_NAME, "Workstation W8000"),
1455                      },
1456          },
1457         {
1458          .callback = force_acpi_ht,
1459          .ident = "ASUS P4B266",
1460          .matches = {
1461                      DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1462                      DMI_MATCH(DMI_BOARD_NAME, "P4B266"),
1463                      },
1464          },
1465         {
1466          .callback = force_acpi_ht,
1467          .ident = "ASUS P2B-DS",
1468          .matches = {
1469                      DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1470                      DMI_MATCH(DMI_BOARD_NAME, "P2B-DS"),
1471                      },
1472          },
1473         {
1474          .callback = force_acpi_ht,
1475          .ident = "ASUS CUR-DLS",
1476          .matches = {
1477                      DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1478                      DMI_MATCH(DMI_BOARD_NAME, "CUR-DLS"),
1479                      },
1480          },
1481         {
1482          .callback = force_acpi_ht,
1483          .ident = "ABIT i440BX-W83977",
1484          .matches = {
1485                      DMI_MATCH(DMI_BOARD_VENDOR, "ABIT <http://www.abit.com>"),
1486                      DMI_MATCH(DMI_BOARD_NAME, "i440BX-W83977 (BP6)"),
1487                      },
1488          },
1489         {
1490          .callback = force_acpi_ht,
1491          .ident = "IBM Bladecenter",
1492          .matches = {
1493                      DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1494                      DMI_MATCH(DMI_BOARD_NAME, "IBM eServer BladeCenter HS20"),
1495                      },
1496          },
1497         {
1498          .callback = force_acpi_ht,
1499          .ident = "IBM eServer xSeries 360",
1500          .matches = {
1501                      DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1502                      DMI_MATCH(DMI_BOARD_NAME, "eServer xSeries 360"),
1503                      },
1504          },
1505         {
1506          .callback = force_acpi_ht,
1507          .ident = "IBM eserver xSeries 330",
1508          .matches = {
1509                      DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1510                      DMI_MATCH(DMI_BOARD_NAME, "eserver xSeries 330"),
1511                      },
1512          },
1513         {
1514          .callback = force_acpi_ht,
1515          .ident = "IBM eserver xSeries 440",
1516          .matches = {
1517                      DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1518                      DMI_MATCH(DMI_PRODUCT_NAME, "eserver xSeries 440"),
1519                      },
1520          },
1521
1522         /*
1523          * Boxes that need ACPI PCI IRQ routing disabled
1524          */
1525         {
1526          .callback = disable_acpi_irq,
1527          .ident = "ASUS A7V",
1528          .matches = {
1529                      DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC"),
1530                      DMI_MATCH(DMI_BOARD_NAME, "<A7V>"),
1531                      /* newer BIOS, Revision 1011, does work */
1532                      DMI_MATCH(DMI_BIOS_VERSION,
1533                                "ASUS A7V ACPI BIOS Revision 1007"),
1534                      },
1535          },
1536         {
1537                 /*
1538                  * Latest BIOS for IBM 600E (1.16) has bad pcinum
1539                  * for LPC bridge, which is needed for the PCI
1540                  * interrupt links to work. DSDT fix is in bug 5966.
1541                  * 2645, 2646 model numbers are shared with 600/600E/600X
1542                  */
1543          .callback = disable_acpi_irq,
1544          .ident = "IBM Thinkpad 600 Series 2645",
1545          .matches = {
1546                      DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1547                      DMI_MATCH(DMI_BOARD_NAME, "2645"),
1548                      },
1549          },
1550         {
1551          .callback = disable_acpi_irq,
1552          .ident = "IBM Thinkpad 600 Series 2646",
1553          .matches = {
1554                      DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1555                      DMI_MATCH(DMI_BOARD_NAME, "2646"),
1556                      },
1557          },
1558         /*
1559          * Boxes that need ACPI PCI IRQ routing and PCI scan disabled
1560          */
1561         {                       /* _BBN 0 bug */
1562          .callback = disable_acpi_pci,
1563          .ident = "ASUS PR-DLS",
1564          .matches = {
1565                      DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1566                      DMI_MATCH(DMI_BOARD_NAME, "PR-DLS"),
1567                      DMI_MATCH(DMI_BIOS_VERSION,
1568                                "ASUS PR-DLS ACPI BIOS Revision 1010"),
1569                      DMI_MATCH(DMI_BIOS_DATE, "03/21/2003")
1570                      },
1571          },
1572         {
1573          .callback = disable_acpi_pci,
1574          .ident = "Acer TravelMate 36x Laptop",
1575          .matches = {
1576                      DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
1577                      DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 360"),
1578                      },
1579          },
1580         /*
1581          * HP laptops which use a DSDT reporting as HP/SB400/10000,
1582          * which includes some code which overrides all temperature
1583          * trip points to 16C if the INTIN2 input of the I/O APIC
1584          * is enabled.  This input is incorrectly designated the
1585          * ISA IRQ 0 via an interrupt source override even though
1586          * it is wired to the output of the master 8259A and INTIN0
1587          * is not connected at all.  Force ignoring BIOS IRQ0 pin2
1588          * override in that cases.
1589          */
1590         {
1591          .callback = dmi_ignore_irq0_timer_override,
1592          .ident = "HP NX6125 laptop",
1593          .matches = {
1594                      DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
1595                      DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq nx6125"),
1596                      },
1597          },
1598         {
1599          .callback = dmi_ignore_irq0_timer_override,
1600          .ident = "HP NX6325 laptop",
1601          .matches = {
1602                      DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
1603                      DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq nx6325"),
1604                      },
1605          },
1606         {}
1607 };
1608
1609 /*
1610  * acpi_boot_table_init() and acpi_boot_init()
1611  *  called from setup_arch(), always.
1612  *      1. checksums all tables
1613  *      2. enumerates lapics
1614  *      3. enumerates io-apics
1615  *
1616  * acpi_table_init() is separate to allow reading SRAT without
1617  * other side effects.
1618  *
1619  * side effects of acpi_boot_init:
1620  *      acpi_lapic = 1 if LAPIC found
1621  *      acpi_ioapic = 1 if IOAPIC found
1622  *      if (acpi_lapic && acpi_ioapic) smp_found_config = 1;
1623  *      if acpi_blacklisted() acpi_disabled = 1;
1624  *      acpi_irq_model=...
1625  *      ...
1626  *
1627  * return value: (currently ignored)
1628  *      0: success
1629  *      !0: failure
1630  */
1631
1632 int __init acpi_boot_table_init(void)
1633 {
1634         int error;
1635
1636         dmi_check_system(acpi_dmi_table);
1637
1638         /*
1639          * If acpi_disabled, bail out
1640          * One exception: acpi=ht continues far enough to enumerate LAPICs
1641          */
1642         if (acpi_disabled && !acpi_ht)
1643                 return 1;
1644
1645         /*
1646          * Initialize the ACPI boot-time table parser.
1647          */
1648         error = acpi_table_init();
1649         if (error) {
1650                 disable_acpi();
1651                 return error;
1652         }
1653
1654         acpi_table_parse(ACPI_SIG_BOOT, acpi_parse_sbf);
1655
1656         /*
1657          * blacklist may disable ACPI entirely
1658          */
1659         error = acpi_blacklisted();
1660         if (error) {
1661                 if (acpi_force) {
1662                         printk(KERN_WARNING PREFIX "acpi=force override\n");
1663                 } else {
1664                         printk(KERN_WARNING PREFIX "Disabling ACPI support\n");
1665                         disable_acpi();
1666                         return error;
1667                 }
1668         }
1669
1670         return 0;
1671 }
1672
1673 int __init early_acpi_boot_init(void)
1674 {
1675         /*
1676          * If acpi_disabled, bail out
1677          * One exception: acpi=ht continues far enough to enumerate LAPICs
1678          */
1679         if (acpi_disabled && !acpi_ht)
1680                 return 1;
1681
1682         /*
1683          * Process the Multiple APIC Description Table (MADT), if present
1684          */
1685         early_acpi_process_madt();
1686
1687         return 0;
1688 }
1689
1690 int __init acpi_boot_init(void)
1691 {
1692         /*
1693          * If acpi_disabled, bail out
1694          * One exception: acpi=ht continues far enough to enumerate LAPICs
1695          */
1696         if (acpi_disabled && !acpi_ht)
1697                 return 1;
1698
1699         acpi_table_parse(ACPI_SIG_BOOT, acpi_parse_sbf);
1700
1701         /*
1702          * set sci_int and PM timer address
1703          */
1704         acpi_table_parse(ACPI_SIG_FADT, acpi_parse_fadt);
1705
1706         /*
1707          * Process the Multiple APIC Description Table (MADT), if present
1708          */
1709         acpi_process_madt();
1710
1711         acpi_table_parse(ACPI_SIG_HPET, acpi_parse_hpet);
1712
1713         return 0;
1714 }
1715
1716 static int __init parse_acpi(char *arg)
1717 {
1718         if (!arg)
1719                 return -EINVAL;
1720
1721         /* "acpi=off" disables both ACPI table parsing and interpreter */
1722         if (strcmp(arg, "off") == 0) {
1723                 disable_acpi();
1724         }
1725         /* acpi=force to over-ride black-list */
1726         else if (strcmp(arg, "force") == 0) {
1727                 acpi_force = 1;
1728                 acpi_ht = 1;
1729                 acpi_disabled = 0;
1730         }
1731         /* acpi=strict disables out-of-spec workarounds */
1732         else if (strcmp(arg, "strict") == 0) {
1733                 acpi_strict = 1;
1734         }
1735         /* Limit ACPI just to boot-time to enable HT */
1736         else if (strcmp(arg, "ht") == 0) {
1737                 if (!acpi_force)
1738                         disable_acpi();
1739                 acpi_ht = 1;
1740         }
1741         /* "acpi=noirq" disables ACPI interrupt routing */
1742         else if (strcmp(arg, "noirq") == 0) {
1743                 acpi_noirq_set();
1744         } else {
1745                 /* Core will printk when we return error. */
1746                 return -EINVAL;
1747         }
1748         return 0;
1749 }
1750 early_param("acpi", parse_acpi);
1751
1752 /* FIXME: Using pci= for an ACPI parameter is a travesty. */
1753 static int __init parse_pci(char *arg)
1754 {
1755         if (arg && strcmp(arg, "noacpi") == 0)
1756                 acpi_disable_pci();
1757         return 0;
1758 }
1759 early_param("pci", parse_pci);
1760
1761 int __init acpi_mps_check(void)
1762 {
1763 #if defined(CONFIG_X86_LOCAL_APIC) && !defined(CONFIG_X86_MPPARSE)
1764 /* mptable code is not built-in*/
1765         if (acpi_disabled || acpi_noirq) {
1766                 printk(KERN_WARNING "MPS support code is not built-in.\n"
1767                        "Using acpi=off or acpi=noirq or pci=noacpi "
1768                        "may have problem\n");
1769                 return 1;
1770         }
1771 #endif
1772         return 0;
1773 }
1774
1775 #ifdef CONFIG_X86_IO_APIC
1776 static int __init parse_acpi_skip_timer_override(char *arg)
1777 {
1778         acpi_skip_timer_override = 1;
1779         return 0;
1780 }
1781 early_param("acpi_skip_timer_override", parse_acpi_skip_timer_override);
1782
1783 static int __init parse_acpi_use_timer_override(char *arg)
1784 {
1785         acpi_use_timer_override = 1;
1786         return 0;
1787 }
1788 early_param("acpi_use_timer_override", parse_acpi_use_timer_override);
1789 #endif /* CONFIG_X86_IO_APIC */
1790
1791 static int __init setup_acpi_sci(char *s)
1792 {
1793         if (!s)
1794                 return -EINVAL;
1795         if (!strcmp(s, "edge"))
1796                 acpi_sci_flags =  ACPI_MADT_TRIGGER_EDGE |
1797                         (acpi_sci_flags & ~ACPI_MADT_TRIGGER_MASK);
1798         else if (!strcmp(s, "level"))
1799                 acpi_sci_flags = ACPI_MADT_TRIGGER_LEVEL |
1800                         (acpi_sci_flags & ~ACPI_MADT_TRIGGER_MASK);
1801         else if (!strcmp(s, "high"))
1802                 acpi_sci_flags = ACPI_MADT_POLARITY_ACTIVE_HIGH |
1803                         (acpi_sci_flags & ~ACPI_MADT_POLARITY_MASK);
1804         else if (!strcmp(s, "low"))
1805                 acpi_sci_flags = ACPI_MADT_POLARITY_ACTIVE_LOW |
1806                         (acpi_sci_flags & ~ACPI_MADT_POLARITY_MASK);
1807         else
1808                 return -EINVAL;
1809         return 0;
1810 }
1811 early_param("acpi_sci", setup_acpi_sci);
1812
1813 int __acpi_acquire_global_lock(unsigned int *lock)
1814 {
1815         unsigned int old, new, val;
1816         do {
1817                 old = *lock;
1818                 new = (((old & ~0x3) + 2) + ((old >> 1) & 0x1));
1819                 val = cmpxchg(lock, old, new);
1820         } while (unlikely (val != old));
1821         return (new < 3) ? -1 : 0;
1822 }
1823
1824 int __acpi_release_global_lock(unsigned int *lock)
1825 {
1826         unsigned int old, new, val;
1827         do {
1828                 old = *lock;
1829                 new = old & ~0x3;
1830                 val = cmpxchg(lock, old, new);
1831         } while (unlikely (val != old));
1832         return old & 0x1;
1833 }