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