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