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