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