Merge branch 'irq-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git...
[sfrench/cifs-2.6.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 #include <acpi/processor.h>
494
495 static void acpi_map_cpu2node(acpi_handle handle, int cpu, int physid)
496 {
497 #ifdef CONFIG_ACPI_NUMA
498         int nid;
499
500         nid = acpi_get_node(handle);
501         if (nid == -1 || !node_online(nid))
502                 return;
503 #ifdef CONFIG_X86_64
504         apicid_to_node[physid] = nid;
505         numa_set_node(cpu, nid);
506 #else /* CONFIG_X86_32 */
507         apicid_2_node[physid] = nid;
508         cpu_to_node_map[cpu] = nid;
509 #endif
510
511 #endif
512 }
513
514 static int __cpuinit _acpi_map_lsapic(acpi_handle handle, int *pcpu)
515 {
516         struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
517         union acpi_object *obj;
518         struct acpi_madt_local_apic *lapic;
519         cpumask_var_t tmp_map, new_map;
520         u8 physid;
521         int cpu;
522         int retval = -ENOMEM;
523
524         if (ACPI_FAILURE(acpi_evaluate_object(handle, "_MAT", NULL, &buffer)))
525                 return -EINVAL;
526
527         if (!buffer.length || !buffer.pointer)
528                 return -EINVAL;
529
530         obj = buffer.pointer;
531         if (obj->type != ACPI_TYPE_BUFFER ||
532             obj->buffer.length < sizeof(*lapic)) {
533                 kfree(buffer.pointer);
534                 return -EINVAL;
535         }
536
537         lapic = (struct acpi_madt_local_apic *)obj->buffer.pointer;
538
539         if (lapic->header.type != ACPI_MADT_TYPE_LOCAL_APIC ||
540             !(lapic->lapic_flags & ACPI_MADT_ENABLED)) {
541                 kfree(buffer.pointer);
542                 return -EINVAL;
543         }
544
545         physid = lapic->id;
546
547         kfree(buffer.pointer);
548         buffer.length = ACPI_ALLOCATE_BUFFER;
549         buffer.pointer = NULL;
550
551         if (!alloc_cpumask_var(&tmp_map, GFP_KERNEL))
552                 goto out;
553
554         if (!alloc_cpumask_var(&new_map, GFP_KERNEL))
555                 goto free_tmp_map;
556
557         cpumask_copy(tmp_map, cpu_present_mask);
558         acpi_register_lapic(physid, lapic->lapic_flags & ACPI_MADT_ENABLED);
559
560         /*
561          * If mp_register_lapic successfully generates a new logical cpu
562          * number, then the following will get us exactly what was mapped
563          */
564         cpumask_andnot(new_map, cpu_present_mask, tmp_map);
565         if (cpumask_empty(new_map)) {
566                 printk ("Unable to map lapic to logical cpu number\n");
567                 retval = -EINVAL;
568                 goto free_new_map;
569         }
570
571         acpi_processor_set_pdc(handle);
572
573         cpu = cpumask_first(new_map);
574         acpi_map_cpu2node(handle, cpu, physid);
575
576         *pcpu = cpu;
577         retval = 0;
578
579 free_new_map:
580         free_cpumask_var(new_map);
581 free_tmp_map:
582         free_cpumask_var(tmp_map);
583 out:
584         return retval;
585 }
586
587 /* wrapper to silence section mismatch warning */
588 int __ref acpi_map_lsapic(acpi_handle handle, int *pcpu)
589 {
590         return _acpi_map_lsapic(handle, pcpu);
591 }
592 EXPORT_SYMBOL(acpi_map_lsapic);
593
594 int acpi_unmap_lsapic(int cpu)
595 {
596         per_cpu(x86_cpu_to_apicid, cpu) = -1;
597         set_cpu_present(cpu, false);
598         num_processors--;
599
600         return (0);
601 }
602
603 EXPORT_SYMBOL(acpi_unmap_lsapic);
604 #endif                          /* CONFIG_ACPI_HOTPLUG_CPU */
605
606 int acpi_register_ioapic(acpi_handle handle, u64 phys_addr, u32 gsi_base)
607 {
608         /* TBD */
609         return -EINVAL;
610 }
611
612 EXPORT_SYMBOL(acpi_register_ioapic);
613
614 int acpi_unregister_ioapic(acpi_handle handle, u32 gsi_base)
615 {
616         /* TBD */
617         return -EINVAL;
618 }
619
620 EXPORT_SYMBOL(acpi_unregister_ioapic);
621
622 static int __init acpi_parse_sbf(struct acpi_table_header *table)
623 {
624         struct acpi_table_boot *sb;
625
626         sb = (struct acpi_table_boot *)table;
627         if (!sb) {
628                 printk(KERN_WARNING PREFIX "Unable to map SBF\n");
629                 return -ENODEV;
630         }
631
632         sbf_port = sb->cmos_index;      /* Save CMOS port */
633
634         return 0;
635 }
636
637 #ifdef CONFIG_HPET_TIMER
638 #include <asm/hpet.h>
639
640 static struct __initdata resource *hpet_res;
641
642 static int __init acpi_parse_hpet(struct acpi_table_header *table)
643 {
644         struct acpi_table_hpet *hpet_tbl;
645
646         hpet_tbl = (struct acpi_table_hpet *)table;
647         if (!hpet_tbl) {
648                 printk(KERN_WARNING PREFIX "Unable to map HPET\n");
649                 return -ENODEV;
650         }
651
652         if (hpet_tbl->address.space_id != ACPI_SPACE_MEM) {
653                 printk(KERN_WARNING PREFIX "HPET timers must be located in "
654                        "memory.\n");
655                 return -1;
656         }
657
658         hpet_address = hpet_tbl->address.address;
659         hpet_blockid = hpet_tbl->sequence;
660
661         /*
662          * Some broken BIOSes advertise HPET at 0x0. We really do not
663          * want to allocate a resource there.
664          */
665         if (!hpet_address) {
666                 printk(KERN_WARNING PREFIX
667                        "HPET id: %#x base: %#lx is invalid\n",
668                        hpet_tbl->id, hpet_address);
669                 return 0;
670         }
671 #ifdef CONFIG_X86_64
672         /*
673          * Some even more broken BIOSes advertise HPET at
674          * 0xfed0000000000000 instead of 0xfed00000. Fix it up and add
675          * some noise:
676          */
677         if (hpet_address == 0xfed0000000000000UL) {
678                 if (!hpet_force_user) {
679                         printk(KERN_WARNING PREFIX "HPET id: %#x "
680                                "base: 0xfed0000000000000 is bogus\n "
681                                "try hpet=force on the kernel command line to "
682                                "fix it up to 0xfed00000.\n", hpet_tbl->id);
683                         hpet_address = 0;
684                         return 0;
685                 }
686                 printk(KERN_WARNING PREFIX
687                        "HPET id: %#x base: 0xfed0000000000000 fixed up "
688                        "to 0xfed00000.\n", hpet_tbl->id);
689                 hpet_address >>= 32;
690         }
691 #endif
692         printk(KERN_INFO PREFIX "HPET id: %#x base: %#lx\n",
693                hpet_tbl->id, hpet_address);
694
695         /*
696          * Allocate and initialize the HPET firmware resource for adding into
697          * the resource tree during the lateinit timeframe.
698          */
699 #define HPET_RESOURCE_NAME_SIZE 9
700         hpet_res = alloc_bootmem(sizeof(*hpet_res) + HPET_RESOURCE_NAME_SIZE);
701
702         hpet_res->name = (void *)&hpet_res[1];
703         hpet_res->flags = IORESOURCE_MEM;
704         snprintf((char *)hpet_res->name, HPET_RESOURCE_NAME_SIZE, "HPET %u",
705                  hpet_tbl->sequence);
706
707         hpet_res->start = hpet_address;
708         hpet_res->end = hpet_address + (1 * 1024) - 1;
709
710         return 0;
711 }
712
713 /*
714  * hpet_insert_resource inserts the HPET resources used into the resource
715  * tree.
716  */
717 static __init int hpet_insert_resource(void)
718 {
719         if (!hpet_res)
720                 return 1;
721
722         return insert_resource(&iomem_resource, hpet_res);
723 }
724
725 late_initcall(hpet_insert_resource);
726
727 #else
728 #define acpi_parse_hpet NULL
729 #endif
730
731 static int __init acpi_parse_fadt(struct acpi_table_header *table)
732 {
733
734 #ifdef CONFIG_X86_PM_TIMER
735         /* detect the location of the ACPI PM Timer */
736         if (acpi_gbl_FADT.header.revision >= FADT2_REVISION_ID) {
737                 /* FADT rev. 2 */
738                 if (acpi_gbl_FADT.xpm_timer_block.space_id !=
739                     ACPI_ADR_SPACE_SYSTEM_IO)
740                         return 0;
741
742                 pmtmr_ioport = acpi_gbl_FADT.xpm_timer_block.address;
743                 /*
744                  * "X" fields are optional extensions to the original V1.0
745                  * fields, so we must selectively expand V1.0 fields if the
746                  * corresponding X field is zero.
747                  */
748                 if (!pmtmr_ioport)
749                         pmtmr_ioport = acpi_gbl_FADT.pm_timer_block;
750         } else {
751                 /* FADT rev. 1 */
752                 pmtmr_ioport = acpi_gbl_FADT.pm_timer_block;
753         }
754         if (pmtmr_ioport)
755                 printk(KERN_INFO PREFIX "PM-Timer IO Port: %#x\n",
756                        pmtmr_ioport);
757 #endif
758         return 0;
759 }
760
761 #ifdef  CONFIG_X86_LOCAL_APIC
762 /*
763  * Parse LAPIC entries in MADT
764  * returns 0 on success, < 0 on error
765  */
766
767 static void __init acpi_register_lapic_address(unsigned long address)
768 {
769         mp_lapic_addr = address;
770
771         set_fixmap_nocache(FIX_APIC_BASE, address);
772         if (boot_cpu_physical_apicid == -1U) {
773                 boot_cpu_physical_apicid  = read_apic_id();
774                 apic_version[boot_cpu_physical_apicid] =
775                          GET_APIC_VERSION(apic_read(APIC_LVR));
776         }
777 }
778
779 static int __init early_acpi_parse_madt_lapic_addr_ovr(void)
780 {
781         int count;
782
783         if (!cpu_has_apic)
784                 return -ENODEV;
785
786         /*
787          * Note that the LAPIC address is obtained from the MADT (32-bit value)
788          * and (optionally) overriden by a LAPIC_ADDR_OVR entry (64-bit value).
789          */
790
791         count =
792             acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_APIC_OVERRIDE,
793                                   acpi_parse_lapic_addr_ovr, 0);
794         if (count < 0) {
795                 printk(KERN_ERR PREFIX
796                        "Error parsing LAPIC address override entry\n");
797                 return count;
798         }
799
800         acpi_register_lapic_address(acpi_lapic_addr);
801
802         return count;
803 }
804
805 static int __init acpi_parse_madt_lapic_entries(void)
806 {
807         int count;
808         int x2count = 0;
809
810         if (!cpu_has_apic)
811                 return -ENODEV;
812
813         /*
814          * Note that the LAPIC address is obtained from the MADT (32-bit value)
815          * and (optionally) overriden by a LAPIC_ADDR_OVR entry (64-bit value).
816          */
817
818         count =
819             acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_APIC_OVERRIDE,
820                                   acpi_parse_lapic_addr_ovr, 0);
821         if (count < 0) {
822                 printk(KERN_ERR PREFIX
823                        "Error parsing LAPIC address override entry\n");
824                 return count;
825         }
826
827         acpi_register_lapic_address(acpi_lapic_addr);
828
829         count = acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_SAPIC,
830                                       acpi_parse_sapic, MAX_APICS);
831
832         if (!count) {
833                 x2count = acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_X2APIC,
834                                                 acpi_parse_x2apic, MAX_APICS);
835                 count = acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_APIC,
836                                               acpi_parse_lapic, MAX_APICS);
837         }
838         if (!count && !x2count) {
839                 printk(KERN_ERR PREFIX "No LAPIC entries present\n");
840                 /* TBD: Cleanup to allow fallback to MPS */
841                 return -ENODEV;
842         } else if (count < 0 || x2count < 0) {
843                 printk(KERN_ERR PREFIX "Error parsing LAPIC entry\n");
844                 /* TBD: Cleanup to allow fallback to MPS */
845                 return count;
846         }
847
848         x2count =
849             acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_X2APIC_NMI,
850                                   acpi_parse_x2apic_nmi, 0);
851         count =
852             acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_APIC_NMI, acpi_parse_lapic_nmi, 0);
853         if (count < 0 || x2count < 0) {
854                 printk(KERN_ERR PREFIX "Error parsing LAPIC NMI entry\n");
855                 /* TBD: Cleanup to allow fallback to MPS */
856                 return count;
857         }
858         return 0;
859 }
860 #endif                          /* CONFIG_X86_LOCAL_APIC */
861
862 #ifdef  CONFIG_X86_IO_APIC
863 #define MP_ISA_BUS              0
864
865 #ifdef CONFIG_X86_ES7000
866 extern int es7000_plat;
867 #endif
868
869 int __init acpi_probe_gsi(void)
870 {
871         int idx;
872         int gsi;
873         int max_gsi = 0;
874
875         if (acpi_disabled)
876                 return 0;
877
878         if (!acpi_ioapic)
879                 return 0;
880
881         max_gsi = 0;
882         for (idx = 0; idx < nr_ioapics; idx++) {
883                 gsi = mp_gsi_routing[idx].gsi_end;
884
885                 if (gsi > max_gsi)
886                         max_gsi = gsi;
887         }
888
889         return max_gsi + 1;
890 }
891
892 static void assign_to_mp_irq(struct mpc_intsrc *m,
893                                     struct mpc_intsrc *mp_irq)
894 {
895         memcpy(mp_irq, m, sizeof(struct mpc_intsrc));
896 }
897
898 static int mp_irq_cmp(struct mpc_intsrc *mp_irq,
899                                 struct mpc_intsrc *m)
900 {
901         return memcmp(mp_irq, m, sizeof(struct mpc_intsrc));
902 }
903
904 static void save_mp_irq(struct mpc_intsrc *m)
905 {
906         int i;
907
908         for (i = 0; i < mp_irq_entries; i++) {
909                 if (!mp_irq_cmp(&mp_irqs[i], m))
910                         return;
911         }
912
913         assign_to_mp_irq(m, &mp_irqs[mp_irq_entries]);
914         if (++mp_irq_entries == MAX_IRQ_SOURCES)
915                 panic("Max # of irq sources exceeded!!\n");
916 }
917
918 void __init mp_override_legacy_irq(u8 bus_irq, u8 polarity, u8 trigger, u32 gsi)
919 {
920         int ioapic;
921         int pin;
922         struct mpc_intsrc mp_irq;
923
924         /*
925          * Convert 'gsi' to 'ioapic.pin'.
926          */
927         ioapic = mp_find_ioapic(gsi);
928         if (ioapic < 0)
929                 return;
930         pin = mp_find_ioapic_pin(ioapic, gsi);
931
932         /*
933          * TBD: This check is for faulty timer entries, where the override
934          *      erroneously sets the trigger to level, resulting in a HUGE
935          *      increase of timer interrupts!
936          */
937         if ((bus_irq == 0) && (trigger == 3))
938                 trigger = 1;
939
940         mp_irq.type = MP_INTSRC;
941         mp_irq.irqtype = mp_INT;
942         mp_irq.irqflag = (trigger << 2) | polarity;
943         mp_irq.srcbus = MP_ISA_BUS;
944         mp_irq.srcbusirq = bus_irq;     /* IRQ */
945         mp_irq.dstapic = mp_ioapics[ioapic].apicid; /* APIC ID */
946         mp_irq.dstirq = pin;    /* INTIN# */
947
948         save_mp_irq(&mp_irq);
949 }
950
951 void __init mp_config_acpi_legacy_irqs(void)
952 {
953         int i;
954         int ioapic;
955         unsigned int dstapic;
956         struct mpc_intsrc mp_irq;
957
958 #if defined (CONFIG_MCA) || defined (CONFIG_EISA)
959         /*
960          * Fabricate the legacy ISA bus (bus #31).
961          */
962         mp_bus_id_to_type[MP_ISA_BUS] = MP_BUS_ISA;
963 #endif
964         set_bit(MP_ISA_BUS, mp_bus_not_pci);
965         pr_debug("Bus #%d is ISA\n", MP_ISA_BUS);
966
967 #ifdef CONFIG_X86_ES7000
968         /*
969          * Older generations of ES7000 have no legacy identity mappings
970          */
971         if (es7000_plat == 1)
972                 return;
973 #endif
974
975         /*
976          * Locate the IOAPIC that manages the ISA IRQs (0-15).
977          */
978         ioapic = mp_find_ioapic(0);
979         if (ioapic < 0)
980                 return;
981         dstapic = mp_ioapics[ioapic].apicid;
982
983         /*
984          * Use the default configuration for the IRQs 0-15.  Unless
985          * overridden by (MADT) interrupt source override entries.
986          */
987         for (i = 0; i < 16; i++) {
988                 int idx;
989
990                 for (idx = 0; idx < mp_irq_entries; idx++) {
991                         struct mpc_intsrc *irq = mp_irqs + idx;
992
993                         /* Do we already have a mapping for this ISA IRQ? */
994                         if (irq->srcbus == MP_ISA_BUS && irq->srcbusirq == i)
995                                 break;
996
997                         /* Do we already have a mapping for this IOAPIC pin */
998                         if (irq->dstapic == dstapic && irq->dstirq == i)
999                                 break;
1000                 }
1001
1002                 if (idx != mp_irq_entries) {
1003                         printk(KERN_DEBUG "ACPI: IRQ%d used by override.\n", i);
1004                         continue;       /* IRQ already used */
1005                 }
1006
1007                 mp_irq.type = MP_INTSRC;
1008                 mp_irq.irqflag = 0;     /* Conforming */
1009                 mp_irq.srcbus = MP_ISA_BUS;
1010                 mp_irq.dstapic = dstapic;
1011                 mp_irq.irqtype = mp_INT;
1012                 mp_irq.srcbusirq = i; /* Identity mapped */
1013                 mp_irq.dstirq = i;
1014
1015                 save_mp_irq(&mp_irq);
1016         }
1017 }
1018
1019 static int mp_config_acpi_gsi(struct device *dev, u32 gsi, int trigger,
1020                         int polarity)
1021 {
1022 #ifdef CONFIG_X86_MPPARSE
1023         struct mpc_intsrc mp_irq;
1024         struct pci_dev *pdev;
1025         unsigned char number;
1026         unsigned int devfn;
1027         int ioapic;
1028         u8 pin;
1029
1030         if (!acpi_ioapic)
1031                 return 0;
1032         if (!dev)
1033                 return 0;
1034         if (dev->bus != &pci_bus_type)
1035                 return 0;
1036
1037         pdev = to_pci_dev(dev);
1038         number = pdev->bus->number;
1039         devfn = pdev->devfn;
1040         pin = pdev->pin;
1041         /* print the entry should happen on mptable identically */
1042         mp_irq.type = MP_INTSRC;
1043         mp_irq.irqtype = mp_INT;
1044         mp_irq.irqflag = (trigger == ACPI_EDGE_SENSITIVE ? 4 : 0x0c) |
1045                                 (polarity == ACPI_ACTIVE_HIGH ? 1 : 3);
1046         mp_irq.srcbus = number;
1047         mp_irq.srcbusirq = (((devfn >> 3) & 0x1f) << 2) | ((pin - 1) & 3);
1048         ioapic = mp_find_ioapic(gsi);
1049         mp_irq.dstapic = mp_ioapics[ioapic].apicid;
1050         mp_irq.dstirq = mp_find_ioapic_pin(ioapic, gsi);
1051
1052         save_mp_irq(&mp_irq);
1053 #endif
1054         return 0;
1055 }
1056
1057 int mp_register_gsi(struct device *dev, u32 gsi, int trigger, int polarity)
1058 {
1059         int ioapic;
1060         int ioapic_pin;
1061         struct io_apic_irq_attr irq_attr;
1062
1063         if (acpi_irq_model != ACPI_IRQ_MODEL_IOAPIC)
1064                 return gsi;
1065
1066         /* Don't set up the ACPI SCI because it's already set up */
1067         if (acpi_gbl_FADT.sci_interrupt == gsi)
1068                 return gsi;
1069
1070         ioapic = mp_find_ioapic(gsi);
1071         if (ioapic < 0) {
1072                 printk(KERN_WARNING "No IOAPIC for GSI %u\n", gsi);
1073                 return gsi;
1074         }
1075
1076         ioapic_pin = mp_find_ioapic_pin(ioapic, gsi);
1077
1078 #ifdef CONFIG_X86_32
1079         if (ioapic_renumber_irq)
1080                 gsi = ioapic_renumber_irq(ioapic, gsi);
1081 #endif
1082
1083         if (ioapic_pin > MP_MAX_IOAPIC_PIN) {
1084                 printk(KERN_ERR "Invalid reference to IOAPIC pin "
1085                        "%d-%d\n", mp_ioapics[ioapic].apicid,
1086                        ioapic_pin);
1087                 return gsi;
1088         }
1089
1090         if (enable_update_mptable)
1091                 mp_config_acpi_gsi(dev, gsi, trigger, polarity);
1092
1093         set_io_apic_irq_attr(&irq_attr, ioapic, ioapic_pin,
1094                              trigger == ACPI_EDGE_SENSITIVE ? 0 : 1,
1095                              polarity == ACPI_ACTIVE_HIGH ? 0 : 1);
1096         io_apic_set_pci_routing(dev, gsi, &irq_attr);
1097
1098         return gsi;
1099 }
1100
1101 /*
1102  * Parse IOAPIC related entries in MADT
1103  * returns 0 on success, < 0 on error
1104  */
1105 static int __init acpi_parse_madt_ioapic_entries(void)
1106 {
1107         int count;
1108
1109         /*
1110          * ACPI interpreter is required to complete interrupt setup,
1111          * so if it is off, don't enumerate the io-apics with ACPI.
1112          * If MPS is present, it will handle them,
1113          * otherwise the system will stay in PIC mode
1114          */
1115         if (acpi_disabled || acpi_noirq)
1116                 return -ENODEV;
1117
1118         if (!cpu_has_apic)
1119                 return -ENODEV;
1120
1121         /*
1122          * if "noapic" boot option, don't look for IO-APICs
1123          */
1124         if (skip_ioapic_setup) {
1125                 printk(KERN_INFO PREFIX "Skipping IOAPIC probe "
1126                        "due to 'noapic' option.\n");
1127                 return -ENODEV;
1128         }
1129
1130         count =
1131             acpi_table_parse_madt(ACPI_MADT_TYPE_IO_APIC, acpi_parse_ioapic,
1132                                   MAX_IO_APICS);
1133         if (!count) {
1134                 printk(KERN_ERR PREFIX "No IOAPIC entries present\n");
1135                 return -ENODEV;
1136         } else if (count < 0) {
1137                 printk(KERN_ERR PREFIX "Error parsing IOAPIC entry\n");
1138                 return count;
1139         }
1140
1141         count =
1142             acpi_table_parse_madt(ACPI_MADT_TYPE_INTERRUPT_OVERRIDE, acpi_parse_int_src_ovr,
1143                                   nr_irqs);
1144         if (count < 0) {
1145                 printk(KERN_ERR PREFIX
1146                        "Error parsing interrupt source overrides entry\n");
1147                 /* TBD: Cleanup to allow fallback to MPS */
1148                 return count;
1149         }
1150
1151         /*
1152          * If BIOS did not supply an INT_SRC_OVR for the SCI
1153          * pretend we got one so we can set the SCI flags.
1154          */
1155         if (!acpi_sci_override_gsi)
1156                 acpi_sci_ioapic_setup(acpi_gbl_FADT.sci_interrupt, 0, 0);
1157
1158         /* Fill in identity legacy mappings where no override */
1159         mp_config_acpi_legacy_irqs();
1160
1161         count =
1162             acpi_table_parse_madt(ACPI_MADT_TYPE_NMI_SOURCE, acpi_parse_nmi_src,
1163                                   nr_irqs);
1164         if (count < 0) {
1165                 printk(KERN_ERR PREFIX "Error parsing NMI SRC entry\n");
1166                 /* TBD: Cleanup to allow fallback to MPS */
1167                 return count;
1168         }
1169
1170         return 0;
1171 }
1172 #else
1173 static inline int acpi_parse_madt_ioapic_entries(void)
1174 {
1175         return -1;
1176 }
1177 #endif  /* !CONFIG_X86_IO_APIC */
1178
1179 static void __init early_acpi_process_madt(void)
1180 {
1181 #ifdef CONFIG_X86_LOCAL_APIC
1182         int error;
1183
1184         if (!acpi_table_parse(ACPI_SIG_MADT, acpi_parse_madt)) {
1185
1186                 /*
1187                  * Parse MADT LAPIC entries
1188                  */
1189                 error = early_acpi_parse_madt_lapic_addr_ovr();
1190                 if (!error) {
1191                         acpi_lapic = 1;
1192                         smp_found_config = 1;
1193                 }
1194                 if (error == -EINVAL) {
1195                         /*
1196                          * Dell Precision Workstation 410, 610 come here.
1197                          */
1198                         printk(KERN_ERR PREFIX
1199                                "Invalid BIOS MADT, disabling ACPI\n");
1200                         disable_acpi();
1201                 }
1202         }
1203 #endif
1204 }
1205
1206 static void __init acpi_process_madt(void)
1207 {
1208 #ifdef CONFIG_X86_LOCAL_APIC
1209         int error;
1210
1211         if (!acpi_table_parse(ACPI_SIG_MADT, acpi_parse_madt)) {
1212
1213                 /*
1214                  * Parse MADT LAPIC entries
1215                  */
1216                 error = acpi_parse_madt_lapic_entries();
1217                 if (!error) {
1218                         acpi_lapic = 1;
1219
1220                         /*
1221                          * Parse MADT IO-APIC entries
1222                          */
1223                         error = acpi_parse_madt_ioapic_entries();
1224                         if (!error) {
1225                                 acpi_irq_model = ACPI_IRQ_MODEL_IOAPIC;
1226                                 acpi_ioapic = 1;
1227
1228                                 smp_found_config = 1;
1229                         }
1230                 }
1231                 if (error == -EINVAL) {
1232                         /*
1233                          * Dell Precision Workstation 410, 610 come here.
1234                          */
1235                         printk(KERN_ERR PREFIX
1236                                "Invalid BIOS MADT, disabling ACPI\n");
1237                         disable_acpi();
1238                 }
1239         } else {
1240                 /*
1241                  * ACPI found no MADT, and so ACPI wants UP PIC mode.
1242                  * In the event an MPS table was found, forget it.
1243                  * Boot with "acpi=off" to use MPS on such a system.
1244                  */
1245                 if (smp_found_config) {
1246                         printk(KERN_WARNING PREFIX
1247                                 "No APIC-table, disabling MPS\n");
1248                         smp_found_config = 0;
1249                 }
1250         }
1251
1252         /*
1253          * ACPI supports both logical (e.g. Hyper-Threading) and physical
1254          * processors, where MPS only supports physical.
1255          */
1256         if (acpi_lapic && acpi_ioapic)
1257                 printk(KERN_INFO "Using ACPI (MADT) for SMP configuration "
1258                        "information\n");
1259         else if (acpi_lapic)
1260                 printk(KERN_INFO "Using ACPI for processor (LAPIC) "
1261                        "configuration information\n");
1262 #endif
1263         return;
1264 }
1265
1266 static int __init disable_acpi_irq(const struct dmi_system_id *d)
1267 {
1268         if (!acpi_force) {
1269                 printk(KERN_NOTICE "%s detected: force use of acpi=noirq\n",
1270                        d->ident);
1271                 acpi_noirq_set();
1272         }
1273         return 0;
1274 }
1275
1276 static int __init disable_acpi_pci(const struct dmi_system_id *d)
1277 {
1278         if (!acpi_force) {
1279                 printk(KERN_NOTICE "%s detected: force use of pci=noacpi\n",
1280                        d->ident);
1281                 acpi_disable_pci();
1282         }
1283         return 0;
1284 }
1285
1286 static int __init dmi_disable_acpi(const struct dmi_system_id *d)
1287 {
1288         if (!acpi_force) {
1289                 printk(KERN_NOTICE "%s detected: acpi off\n", d->ident);
1290                 disable_acpi();
1291         } else {
1292                 printk(KERN_NOTICE
1293                        "Warning: DMI blacklist says broken, but acpi forced\n");
1294         }
1295         return 0;
1296 }
1297
1298 /*
1299  * Force ignoring BIOS IRQ0 pin2 override
1300  */
1301 static int __init dmi_ignore_irq0_timer_override(const struct dmi_system_id *d)
1302 {
1303         /*
1304          * The ati_ixp4x0_rev() early PCI quirk should have set
1305          * the acpi_skip_timer_override flag already:
1306          */
1307         if (!acpi_skip_timer_override) {
1308                 WARN(1, KERN_ERR "ati_ixp4x0 quirk not complete.\n");
1309                 pr_notice("%s detected: Ignoring BIOS IRQ0 pin2 override\n",
1310                         d->ident);
1311                 acpi_skip_timer_override = 1;
1312         }
1313         return 0;
1314 }
1315
1316 /*
1317  * If your system is blacklisted here, but you find that acpi=force
1318  * works for you, please contact linux-acpi@vger.kernel.org
1319  */
1320 static struct dmi_system_id __initdata acpi_dmi_table[] = {
1321         /*
1322          * Boxes that need ACPI disabled
1323          */
1324         {
1325          .callback = dmi_disable_acpi,
1326          .ident = "IBM Thinkpad",
1327          .matches = {
1328                      DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1329                      DMI_MATCH(DMI_BOARD_NAME, "2629H1G"),
1330                      },
1331          },
1332
1333         /*
1334          * Boxes that need ACPI PCI IRQ routing disabled
1335          */
1336         {
1337          .callback = disable_acpi_irq,
1338          .ident = "ASUS A7V",
1339          .matches = {
1340                      DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC"),
1341                      DMI_MATCH(DMI_BOARD_NAME, "<A7V>"),
1342                      /* newer BIOS, Revision 1011, does work */
1343                      DMI_MATCH(DMI_BIOS_VERSION,
1344                                "ASUS A7V ACPI BIOS Revision 1007"),
1345                      },
1346          },
1347         {
1348                 /*
1349                  * Latest BIOS for IBM 600E (1.16) has bad pcinum
1350                  * for LPC bridge, which is needed for the PCI
1351                  * interrupt links to work. DSDT fix is in bug 5966.
1352                  * 2645, 2646 model numbers are shared with 600/600E/600X
1353                  */
1354          .callback = disable_acpi_irq,
1355          .ident = "IBM Thinkpad 600 Series 2645",
1356          .matches = {
1357                      DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1358                      DMI_MATCH(DMI_BOARD_NAME, "2645"),
1359                      },
1360          },
1361         {
1362          .callback = disable_acpi_irq,
1363          .ident = "IBM Thinkpad 600 Series 2646",
1364          .matches = {
1365                      DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1366                      DMI_MATCH(DMI_BOARD_NAME, "2646"),
1367                      },
1368          },
1369         /*
1370          * Boxes that need ACPI PCI IRQ routing and PCI scan disabled
1371          */
1372         {                       /* _BBN 0 bug */
1373          .callback = disable_acpi_pci,
1374          .ident = "ASUS PR-DLS",
1375          .matches = {
1376                      DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1377                      DMI_MATCH(DMI_BOARD_NAME, "PR-DLS"),
1378                      DMI_MATCH(DMI_BIOS_VERSION,
1379                                "ASUS PR-DLS ACPI BIOS Revision 1010"),
1380                      DMI_MATCH(DMI_BIOS_DATE, "03/21/2003")
1381                      },
1382          },
1383         {
1384          .callback = disable_acpi_pci,
1385          .ident = "Acer TravelMate 36x Laptop",
1386          .matches = {
1387                      DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
1388                      DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 360"),
1389                      },
1390          },
1391         {}
1392 };
1393
1394 /* second table for DMI checks that should run after early-quirks */
1395 static struct dmi_system_id __initdata acpi_dmi_table_late[] = {
1396         /*
1397          * HP laptops which use a DSDT reporting as HP/SB400/10000,
1398          * which includes some code which overrides all temperature
1399          * trip points to 16C if the INTIN2 input of the I/O APIC
1400          * is enabled.  This input is incorrectly designated the
1401          * ISA IRQ 0 via an interrupt source override even though
1402          * it is wired to the output of the master 8259A and INTIN0
1403          * is not connected at all.  Force ignoring BIOS IRQ0 pin2
1404          * override in that cases.
1405          */
1406         {
1407          .callback = dmi_ignore_irq0_timer_override,
1408          .ident = "HP nx6115 laptop",
1409          .matches = {
1410                      DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
1411                      DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq nx6115"),
1412                      },
1413          },
1414         {
1415          .callback = dmi_ignore_irq0_timer_override,
1416          .ident = "HP NX6125 laptop",
1417          .matches = {
1418                      DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
1419                      DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq nx6125"),
1420                      },
1421          },
1422         {
1423          .callback = dmi_ignore_irq0_timer_override,
1424          .ident = "HP NX6325 laptop",
1425          .matches = {
1426                      DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
1427                      DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq nx6325"),
1428                      },
1429          },
1430         {
1431          .callback = dmi_ignore_irq0_timer_override,
1432          .ident = "HP 6715b laptop",
1433          .matches = {
1434                      DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
1435                      DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq 6715b"),
1436                      },
1437          },
1438         {}
1439 };
1440
1441 /*
1442  * acpi_boot_table_init() and acpi_boot_init()
1443  *  called from setup_arch(), always.
1444  *      1. checksums all tables
1445  *      2. enumerates lapics
1446  *      3. enumerates io-apics
1447  *
1448  * acpi_table_init() is separate to allow reading SRAT without
1449  * other side effects.
1450  *
1451  * side effects of acpi_boot_init:
1452  *      acpi_lapic = 1 if LAPIC found
1453  *      acpi_ioapic = 1 if IOAPIC found
1454  *      if (acpi_lapic && acpi_ioapic) smp_found_config = 1;
1455  *      if acpi_blacklisted() acpi_disabled = 1;
1456  *      acpi_irq_model=...
1457  *      ...
1458  */
1459
1460 void __init acpi_boot_table_init(void)
1461 {
1462         dmi_check_system(acpi_dmi_table);
1463
1464         /*
1465          * If acpi_disabled, bail out
1466          * One exception: acpi=ht continues far enough to enumerate LAPICs
1467          */
1468         if (acpi_disabled && !acpi_ht)
1469                 return; 
1470
1471         /*
1472          * Initialize the ACPI boot-time table parser.
1473          */
1474         if (acpi_table_init()) {
1475                 disable_acpi();
1476                 return;
1477         }
1478
1479         acpi_table_parse(ACPI_SIG_BOOT, acpi_parse_sbf);
1480
1481         /*
1482          * blacklist may disable ACPI entirely
1483          */
1484         if (acpi_blacklisted()) {
1485                 if (acpi_force) {
1486                         printk(KERN_WARNING PREFIX "acpi=force override\n");
1487                 } else {
1488                         printk(KERN_WARNING PREFIX "Disabling ACPI support\n");
1489                         disable_acpi();
1490                         return;
1491                 }
1492         }
1493 }
1494
1495 int __init early_acpi_boot_init(void)
1496 {
1497         /*
1498          * If acpi_disabled, bail out
1499          * One exception: acpi=ht continues far enough to enumerate LAPICs
1500          */
1501         if (acpi_disabled && !acpi_ht)
1502                 return 1;
1503
1504         /*
1505          * Process the Multiple APIC Description Table (MADT), if present
1506          */
1507         early_acpi_process_madt();
1508
1509         return 0;
1510 }
1511
1512 int __init acpi_boot_init(void)
1513 {
1514         /* those are executed after early-quirks are executed */
1515         dmi_check_system(acpi_dmi_table_late);
1516
1517         /*
1518          * If acpi_disabled, bail out
1519          * One exception: acpi=ht continues far enough to enumerate LAPICs
1520          */
1521         if (acpi_disabled && !acpi_ht)
1522                 return 1;
1523
1524         acpi_table_parse(ACPI_SIG_BOOT, acpi_parse_sbf);
1525
1526         /*
1527          * set sci_int and PM timer address
1528          */
1529         acpi_table_parse(ACPI_SIG_FADT, acpi_parse_fadt);
1530
1531         /*
1532          * Process the Multiple APIC Description Table (MADT), if present
1533          */
1534         acpi_process_madt();
1535
1536         acpi_table_parse(ACPI_SIG_HPET, acpi_parse_hpet);
1537
1538         if (!acpi_noirq)
1539                 x86_init.pci.init = pci_acpi_init;
1540
1541         return 0;
1542 }
1543
1544 static int __init parse_acpi(char *arg)
1545 {
1546         if (!arg)
1547                 return -EINVAL;
1548
1549         /* "acpi=off" disables both ACPI table parsing and interpreter */
1550         if (strcmp(arg, "off") == 0) {
1551                 disable_acpi();
1552         }
1553         /* acpi=force to over-ride black-list */
1554         else if (strcmp(arg, "force") == 0) {
1555                 acpi_force = 1;
1556                 acpi_ht = 1;
1557                 acpi_disabled = 0;
1558         }
1559         /* acpi=strict disables out-of-spec workarounds */
1560         else if (strcmp(arg, "strict") == 0) {
1561                 acpi_strict = 1;
1562         }
1563         /* Limit ACPI just to boot-time to enable HT */
1564         else if (strcmp(arg, "ht") == 0) {
1565                 if (!acpi_force) {
1566                         printk(KERN_WARNING "acpi=ht will be removed in Linux-2.6.35\n");
1567                         disable_acpi();
1568                 }
1569                 acpi_ht = 1;
1570         }
1571         /* acpi=rsdt use RSDT instead of XSDT */
1572         else if (strcmp(arg, "rsdt") == 0) {
1573                 acpi_rsdt_forced = 1;
1574         }
1575         /* "acpi=noirq" disables ACPI interrupt routing */
1576         else if (strcmp(arg, "noirq") == 0) {
1577                 acpi_noirq_set();
1578         } else {
1579                 /* Core will printk when we return error. */
1580                 return -EINVAL;
1581         }
1582         return 0;
1583 }
1584 early_param("acpi", parse_acpi);
1585
1586 /* FIXME: Using pci= for an ACPI parameter is a travesty. */
1587 static int __init parse_pci(char *arg)
1588 {
1589         if (arg && strcmp(arg, "noacpi") == 0)
1590                 acpi_disable_pci();
1591         return 0;
1592 }
1593 early_param("pci", parse_pci);
1594
1595 int __init acpi_mps_check(void)
1596 {
1597 #if defined(CONFIG_X86_LOCAL_APIC) && !defined(CONFIG_X86_MPPARSE)
1598 /* mptable code is not built-in*/
1599         if (acpi_disabled || acpi_noirq) {
1600                 printk(KERN_WARNING "MPS support code is not built-in.\n"
1601                        "Using acpi=off or acpi=noirq or pci=noacpi "
1602                        "may have problem\n");
1603                 return 1;
1604         }
1605 #endif
1606         return 0;
1607 }
1608
1609 #ifdef CONFIG_X86_IO_APIC
1610 static int __init parse_acpi_skip_timer_override(char *arg)
1611 {
1612         acpi_skip_timer_override = 1;
1613         return 0;
1614 }
1615 early_param("acpi_skip_timer_override", parse_acpi_skip_timer_override);
1616
1617 static int __init parse_acpi_use_timer_override(char *arg)
1618 {
1619         acpi_use_timer_override = 1;
1620         return 0;
1621 }
1622 early_param("acpi_use_timer_override", parse_acpi_use_timer_override);
1623 #endif /* CONFIG_X86_IO_APIC */
1624
1625 static int __init setup_acpi_sci(char *s)
1626 {
1627         if (!s)
1628                 return -EINVAL;
1629         if (!strcmp(s, "edge"))
1630                 acpi_sci_flags =  ACPI_MADT_TRIGGER_EDGE |
1631                         (acpi_sci_flags & ~ACPI_MADT_TRIGGER_MASK);
1632         else if (!strcmp(s, "level"))
1633                 acpi_sci_flags = ACPI_MADT_TRIGGER_LEVEL |
1634                         (acpi_sci_flags & ~ACPI_MADT_TRIGGER_MASK);
1635         else if (!strcmp(s, "high"))
1636                 acpi_sci_flags = ACPI_MADT_POLARITY_ACTIVE_HIGH |
1637                         (acpi_sci_flags & ~ACPI_MADT_POLARITY_MASK);
1638         else if (!strcmp(s, "low"))
1639                 acpi_sci_flags = ACPI_MADT_POLARITY_ACTIVE_LOW |
1640                         (acpi_sci_flags & ~ACPI_MADT_POLARITY_MASK);
1641         else
1642                 return -EINVAL;
1643         return 0;
1644 }
1645 early_param("acpi_sci", setup_acpi_sci);
1646
1647 int __acpi_acquire_global_lock(unsigned int *lock)
1648 {
1649         unsigned int old, new, val;
1650         do {
1651                 old = *lock;
1652                 new = (((old & ~0x3) + 2) + ((old >> 1) & 0x1));
1653                 val = cmpxchg(lock, old, new);
1654         } while (unlikely (val != old));
1655         return (new < 3) ? -1 : 0;
1656 }
1657
1658 int __acpi_release_global_lock(unsigned int *lock)
1659 {
1660         unsigned int old, new, val;
1661         do {
1662                 old = *lock;
1663                 new = old & ~0x3;
1664                 val = cmpxchg(lock, old, new);
1665         } while (unlikely (val != old));
1666         return old & 0x1;
1667 }