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