blob: ee003bc0e8b114ba754b4fc5f6ce70da0b206338 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/acpi.h>
28#include <linux/efi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/module.h>
Andrey Paninaea00142005-06-25 14:54:42 -070030#include <linux/dmi.h>
Nick Pigginb33fa1f2005-10-01 02:34:42 +100031#include <linux/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33#include <asm/pgtable.h>
34#include <asm/io_apic.h>
35#include <asm/apic.h>
36#include <asm/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <asm/mpspec.h>
38
39#ifdef CONFIG_X86_64
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041extern void __init clustered_apic_check(void);
Len Brown4be44fc2005-08-05 00:44:28 -040042
James Cleverdon6004e1b2005-11-05 17:25:53 +010043extern int gsi_irq_sharing(int gsi);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <asm/proto.h>
45
Linus Torvalds637029c2006-02-27 20:41:56 -080046static inline int acpi_madt_oem_check(char *oem_id, char *oem_table_id) { return 0; }
47
48
Len Brown4be44fc2005-08-05 00:44:28 -040049#else /* X86 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51#ifdef CONFIG_X86_LOCAL_APIC
52#include <mach_apic.h>
53#include <mach_mpparse.h>
Len Brown4be44fc2005-08-05 00:44:28 -040054#endif /* CONFIG_X86_LOCAL_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
James Cleverdon6004e1b2005-11-05 17:25:53 +010056static inline int gsi_irq_sharing(int gsi) { return gsi; }
57
Len Brown4be44fc2005-08-05 00:44:28 -040058#endif /* X86 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60#define BAD_MADT_ENTRY(entry, end) ( \
61 (!entry) || (unsigned long)entry + sizeof(*entry) > end || \
Starikovskiy, Alexey Ydf6fd312006-08-18 11:23:00 -040062 ((acpi_table_entry_header *)entry)->length < sizeof(*entry))
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64#define PREFIX "ACPI: "
65
Linus Torvalds1da177e2005-04-16 15:20:36 -070066int acpi_noirq __initdata; /* skip ACPI IRQ initialization */
Len Brown4be44fc2005-08-05 00:44:28 -040067int acpi_pci_disabled __initdata; /* skip ACPI PCI scan and IRQ initialization */
Linus Torvalds1da177e2005-04-16 15:20:36 -070068int acpi_ht __initdata = 1; /* enable HT */
69
70int acpi_lapic;
71int acpi_ioapic;
72int acpi_strict;
73EXPORT_SYMBOL(acpi_strict);
74
75acpi_interrupt_flags acpi_sci_flags __initdata;
76int acpi_sci_override_gsi __initdata;
77int acpi_skip_timer_override __initdata;
78
79#ifdef CONFIG_X86_LOCAL_APIC
80static u64 acpi_lapic_addr __initdata = APIC_DEFAULT_PHYS_BASE;
81#endif
82
83#ifndef __HAVE_ARCH_CMPXCHG
84#warning ACPI uses CMPXCHG, i486 and later hardware
85#endif
86
87#define MAX_MADT_ENTRIES 256
88u8 x86_acpiid_to_apicid[MAX_MADT_ENTRIES] =
Len Brown1f3a7302005-08-05 03:33:14 -040089 {[0 ... MAX_MADT_ENTRIES - 1] = 0xff };
Linus Torvalds1da177e2005-04-16 15:20:36 -070090EXPORT_SYMBOL(x86_acpiid_to_apicid);
91
92/* --------------------------------------------------------------------------
93 Boot-time Configuration
94 -------------------------------------------------------------------------- */
95
96/*
97 * The default interrupt routing model is PIC (8259). This gets
98 * overriden if IOAPICs are enumerated (below).
99 */
Len Brown4be44fc2005-08-05 00:44:28 -0400100enum acpi_irq_model_id acpi_irq_model = ACPI_IRQ_MODEL_PIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
102#ifdef CONFIG_X86_64
103
104/* rely on all ACPI tables being in the direct mapping */
105char *__acpi_map_table(unsigned long phys_addr, unsigned long size)
106{
107 if (!phys_addr || !size)
Len Brown4be44fc2005-08-05 00:44:28 -0400108 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Andi Kleen7a4a76c2006-01-11 22:43:39 +0100110 if (phys_addr+size <= (end_pfn_map << PAGE_SHIFT) + PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 return __va(phys_addr);
112
113 return NULL;
114}
115
116#else
117
118/*
119 * Temporarily use the virtual area starting from FIX_IO_APIC_BASE_END,
120 * to map the target physical address. The problem is that set_fixmap()
121 * provides a single page, and it is possible that the page is not
122 * sufficient.
123 * By using this area, we can map up to MAX_IO_APICS pages temporarily,
124 * i.e. until the next __va_range() call.
125 *
126 * Important Safety Note: The fixed I/O APIC page numbers are *subtracted*
127 * from the fixed base. That's why we start at FIX_IO_APIC_BASE_END and
128 * count idx down while incrementing the phys address.
129 */
130char *__acpi_map_table(unsigned long phys, unsigned long size)
131{
132 unsigned long base, offset, mapped_size;
133 int idx;
134
Len Brown4be44fc2005-08-05 00:44:28 -0400135 if (phys + size < 8 * 1024 * 1024)
136 return __va(phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
138 offset = phys & (PAGE_SIZE - 1);
139 mapped_size = PAGE_SIZE - offset;
140 set_fixmap(FIX_ACPI_END, phys);
141 base = fix_to_virt(FIX_ACPI_END);
142
143 /*
144 * Most cases can be covered by the below.
145 */
146 idx = FIX_ACPI_END;
147 while (mapped_size < size) {
148 if (--idx < FIX_ACPI_BEGIN)
149 return NULL; /* cannot handle this */
150 phys += PAGE_SIZE;
151 set_fixmap(idx, phys);
152 mapped_size += PAGE_SIZE;
153 }
154
Len Brown4be44fc2005-08-05 00:44:28 -0400155 return ((unsigned char *)base + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156}
157#endif
158
159#ifdef CONFIG_PCI_MMCONFIG
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700160/* The physical address of the MMCONFIG aperture. Set from ACPI tables. */
161struct acpi_table_mcfg_config *pci_mmcfg_config;
162int pci_mmcfg_config_num;
163
164int __init acpi_parse_mcfg(unsigned long phys_addr, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165{
166 struct acpi_table_mcfg *mcfg;
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700167 unsigned long i;
168 int config_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Andi Kleen87cb23a2006-04-18 12:35:10 +0200170 if (!phys_addr || !size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 return -EINVAL;
172
Len Brown4be44fc2005-08-05 00:44:28 -0400173 mcfg = (struct acpi_table_mcfg *)__acpi_map_table(phys_addr, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 if (!mcfg) {
175 printk(KERN_WARNING PREFIX "Unable to map MCFG\n");
176 return -ENODEV;
177 }
178
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700179 /* how many config structures do we have */
180 pci_mmcfg_config_num = 0;
181 i = size - sizeof(struct acpi_table_mcfg);
182 while (i >= sizeof(struct acpi_table_mcfg_config)) {
183 ++pci_mmcfg_config_num;
184 i -= sizeof(struct acpi_table_mcfg_config);
185 };
186 if (pci_mmcfg_config_num == 0) {
187 printk(KERN_ERR PREFIX "MMCONFIG has no entries\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 return -ENODEV;
189 }
190
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700191 config_size = pci_mmcfg_config_num * sizeof(*pci_mmcfg_config);
192 pci_mmcfg_config = kmalloc(config_size, GFP_KERNEL);
193 if (!pci_mmcfg_config) {
194 printk(KERN_WARNING PREFIX
195 "No memory for MCFG config tables\n");
196 return -ENOMEM;
197 }
198
199 memcpy(pci_mmcfg_config, &mcfg->config, config_size);
200 for (i = 0; i < pci_mmcfg_config_num; ++i) {
201 if (mcfg->config[i].base_reserved) {
202 printk(KERN_ERR PREFIX
203 "MMCONFIG not in low 4GB of memory\n");
Konrad Rzeszutekacc7c2e2006-06-15 12:08:30 -0400204 kfree(pci_mmcfg_config);
205 pci_mmcfg_config_num = 0;
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700206 return -ENODEV;
207 }
208 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210 return 0;
211}
Len Brown4be44fc2005-08-05 00:44:28 -0400212#endif /* CONFIG_PCI_MMCONFIG */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
214#ifdef CONFIG_X86_LOCAL_APIC
Len Brown4be44fc2005-08-05 00:44:28 -0400215static int __init acpi_parse_madt(unsigned long phys_addr, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216{
Len Brown4be44fc2005-08-05 00:44:28 -0400217 struct acpi_table_madt *madt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Andi Kleen9cfda2c2006-03-27 02:24:32 -0500219 if (!phys_addr || !size || !cpu_has_apic)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 return -EINVAL;
221
Len Brown4be44fc2005-08-05 00:44:28 -0400222 madt = (struct acpi_table_madt *)__acpi_map_table(phys_addr, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 if (!madt) {
224 printk(KERN_WARNING PREFIX "Unable to map MADT\n");
225 return -ENODEV;
226 }
227
228 if (madt->lapic_address) {
229 acpi_lapic_addr = (u64) madt->lapic_address;
230
231 printk(KERN_DEBUG PREFIX "Local APIC address 0x%08x\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400232 madt->lapic_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 }
234
235 acpi_madt_oem_check(madt->header.oem_id, madt->header.oem_table_id);
Len Brown4be44fc2005-08-05 00:44:28 -0400236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 return 0;
238}
239
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240static int __init
Len Brown4be44fc2005-08-05 00:44:28 -0400241acpi_parse_lapic(acpi_table_entry_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242{
Len Brown4be44fc2005-08-05 00:44:28 -0400243 struct acpi_table_lapic *processor = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Len Brown4be44fc2005-08-05 00:44:28 -0400245 processor = (struct acpi_table_lapic *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
247 if (BAD_MADT_ENTRY(processor, end))
248 return -EINVAL;
249
250 acpi_table_print_madt_entry(header);
251
Ashok Raj7f66ae42006-02-03 21:51:50 +0100252 /* Record local apic id only when enabled */
253 if (processor->flags.enabled)
254 x86_acpiid_to_apicid[processor->acpi_id] = processor->id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Ashok Raj7f66ae42006-02-03 21:51:50 +0100256 /*
257 * We need to register disabled CPU as well to permit
258 * counting disabled CPUs. This allows us to size
259 * cpus_possible_map more accurately, to permit
260 * to not preallocating memory for all NR_CPUS
261 * when we use CPU hotplug.
262 */
Len Brown4be44fc2005-08-05 00:44:28 -0400263 mp_register_lapic(processor->id, /* APIC ID */
264 processor->flags.enabled); /* Enabled? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
266 return 0;
267}
268
269static int __init
Len Brown4be44fc2005-08-05 00:44:28 -0400270acpi_parse_lapic_addr_ovr(acpi_table_entry_header * header,
271 const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272{
273 struct acpi_table_lapic_addr_ovr *lapic_addr_ovr = NULL;
274
Len Brown4be44fc2005-08-05 00:44:28 -0400275 lapic_addr_ovr = (struct acpi_table_lapic_addr_ovr *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
277 if (BAD_MADT_ENTRY(lapic_addr_ovr, end))
278 return -EINVAL;
279
280 acpi_lapic_addr = lapic_addr_ovr->address;
281
282 return 0;
283}
284
285static int __init
Len Brown4be44fc2005-08-05 00:44:28 -0400286acpi_parse_lapic_nmi(acpi_table_entry_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287{
288 struct acpi_table_lapic_nmi *lapic_nmi = NULL;
289
Len Brown4be44fc2005-08-05 00:44:28 -0400290 lapic_nmi = (struct acpi_table_lapic_nmi *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
292 if (BAD_MADT_ENTRY(lapic_nmi, end))
293 return -EINVAL;
294
295 acpi_table_print_madt_entry(header);
296
297 if (lapic_nmi->lint != 1)
298 printk(KERN_WARNING PREFIX "NMI not connected to LINT 1!\n");
299
300 return 0;
301}
302
Len Brown4be44fc2005-08-05 00:44:28 -0400303#endif /*CONFIG_X86_LOCAL_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Len Brown84663612005-08-24 12:09:07 -0400305#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
307static int __init
Len Brown4be44fc2005-08-05 00:44:28 -0400308acpi_parse_ioapic(acpi_table_entry_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
310 struct acpi_table_ioapic *ioapic = NULL;
311
Len Brown4be44fc2005-08-05 00:44:28 -0400312 ioapic = (struct acpi_table_ioapic *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
314 if (BAD_MADT_ENTRY(ioapic, end))
315 return -EINVAL;
Len Brown4be44fc2005-08-05 00:44:28 -0400316
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 acpi_table_print_madt_entry(header);
318
Len Brown4be44fc2005-08-05 00:44:28 -0400319 mp_register_ioapic(ioapic->id,
320 ioapic->address, ioapic->global_irq_base);
321
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 return 0;
323}
324
325/*
326 * Parse Interrupt Source Override for the ACPI SCI
327 */
Len Brown4be44fc2005-08-05 00:44:28 -0400328static void acpi_sci_ioapic_setup(u32 gsi, u16 polarity, u16 trigger)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329{
330 if (trigger == 0) /* compatible SCI trigger is level */
331 trigger = 3;
332
333 if (polarity == 0) /* compatible SCI polarity is low */
334 polarity = 3;
335
336 /* Command-line over-ride via acpi_sci= */
337 if (acpi_sci_flags.trigger)
338 trigger = acpi_sci_flags.trigger;
339
340 if (acpi_sci_flags.polarity)
341 polarity = acpi_sci_flags.polarity;
342
343 /*
Len Brown4be44fc2005-08-05 00:44:28 -0400344 * mp_config_acpi_legacy_irqs() already setup IRQs < 16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 * If GSI is < 16, this will update its flags,
346 * else it will create a new mp_irqs[] entry.
347 */
348 mp_override_legacy_irq(gsi, polarity, trigger, gsi);
349
350 /*
351 * stash over-ride to indicate we've been here
352 * and for later update of acpi_fadt
353 */
354 acpi_sci_override_gsi = gsi;
355 return;
356}
357
358static int __init
Len Brown4be44fc2005-08-05 00:44:28 -0400359acpi_parse_int_src_ovr(acpi_table_entry_header * header,
360 const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361{
362 struct acpi_table_int_src_ovr *intsrc = NULL;
363
Len Brown4be44fc2005-08-05 00:44:28 -0400364 intsrc = (struct acpi_table_int_src_ovr *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
366 if (BAD_MADT_ENTRY(intsrc, end))
367 return -EINVAL;
368
369 acpi_table_print_madt_entry(header);
370
371 if (intsrc->bus_irq == acpi_fadt.sci_int) {
372 acpi_sci_ioapic_setup(intsrc->global_irq,
Len Brown4be44fc2005-08-05 00:44:28 -0400373 intsrc->flags.polarity,
374 intsrc->flags.trigger);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 return 0;
376 }
377
378 if (acpi_skip_timer_override &&
Len Brown4be44fc2005-08-05 00:44:28 -0400379 intsrc->bus_irq == 0 && intsrc->global_irq == 2) {
380 printk(PREFIX "BIOS IRQ0 pin2 override ignored.\n");
381 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 }
383
Len Brown4be44fc2005-08-05 00:44:28 -0400384 mp_override_legacy_irq(intsrc->bus_irq,
385 intsrc->flags.polarity,
386 intsrc->flags.trigger, intsrc->global_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
388 return 0;
389}
390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391static int __init
Len Brown4be44fc2005-08-05 00:44:28 -0400392acpi_parse_nmi_src(acpi_table_entry_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393{
394 struct acpi_table_nmi_src *nmi_src = NULL;
395
Len Brown4be44fc2005-08-05 00:44:28 -0400396 nmi_src = (struct acpi_table_nmi_src *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
398 if (BAD_MADT_ENTRY(nmi_src, end))
399 return -EINVAL;
400
401 acpi_table_print_madt_entry(header);
402
403 /* TBD: Support nimsrc entries? */
404
405 return 0;
406}
407
Len Brown4be44fc2005-08-05 00:44:28 -0400408#endif /* CONFIG_X86_IO_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410/*
411 * acpi_pic_sci_set_trigger()
412 *
413 * use ELCR to set PIC-mode trigger type for SCI
414 *
415 * If a PIC-mode SCI is not recognized or gives spurious IRQ7's
416 * it may require Edge Trigger -- use "acpi_sci=edge"
417 *
418 * Port 0x4d0-4d1 are ECLR1 and ECLR2, the Edge/Level Control Registers
419 * for the 8259 PIC. bit[n] = 1 means irq[n] is Level, otherwise Edge.
420 * ECLR1 is IRQ's 0-7 (IRQ 0, 1, 2 must be 0)
421 * ECLR2 is IRQ's 8-15 (IRQ 8, 13 must be 0)
422 */
423
Len Brown4be44fc2005-08-05 00:44:28 -0400424void __init acpi_pic_sci_set_trigger(unsigned int irq, u16 trigger)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425{
426 unsigned int mask = 1 << irq;
427 unsigned int old, new;
428
429 /* Real old ELCR mask */
430 old = inb(0x4d0) | (inb(0x4d1) << 8);
431
432 /*
433 * If we use ACPI to set PCI irq's, then we should clear ELCR
434 * since we will set it correctly as we enable the PCI irq
435 * routing.
436 */
437 new = acpi_noirq ? old : 0;
438
439 /*
440 * Update SCI information in the ELCR, it isn't in the PCI
441 * routing tables..
442 */
443 switch (trigger) {
Len Brown4be44fc2005-08-05 00:44:28 -0400444 case 1: /* Edge - clear */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 new &= ~mask;
446 break;
Len Brown4be44fc2005-08-05 00:44:28 -0400447 case 3: /* Level - set */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 new |= mask;
449 break;
450 }
451
452 if (old == new)
453 return;
454
455 printk(PREFIX "setting ELCR to %04x (from %04x)\n", new, old);
456 outb(new, 0x4d0);
457 outb(new >> 8, 0x4d1);
458}
459
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460int acpi_gsi_to_irq(u32 gsi, unsigned int *irq)
461{
462#ifdef CONFIG_X86_IO_APIC
463 if (use_pci_vector() && !platform_legacy_irq(gsi))
Len Brown4be44fc2005-08-05 00:44:28 -0400464 *irq = IO_APIC_VECTOR(gsi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 else
466#endif
James Cleverdon6004e1b2005-11-05 17:25:53 +0100467 *irq = gsi_irq_sharing(gsi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 return 0;
469}
470
Kenji Kaneshige1f3a6a12005-07-28 14:42:00 -0400471/*
472 * success: return IRQ number (>=0)
473 * failure: return < 0
474 */
Len Browncb654692005-12-28 02:43:51 -0500475int acpi_register_gsi(u32 gsi, int triggering, int polarity)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476{
477 unsigned int irq;
478 unsigned int plat_gsi = gsi;
479
480#ifdef CONFIG_PCI
481 /*
482 * Make sure all (legacy) PCI IRQs are set as level-triggered.
483 */
484 if (acpi_irq_model == ACPI_IRQ_MODEL_PIC) {
485 extern void eisa_set_level_irq(unsigned int irq);
486
Len Browncb654692005-12-28 02:43:51 -0500487 if (triggering == ACPI_LEVEL_SENSITIVE)
Len Brown4be44fc2005-08-05 00:44:28 -0400488 eisa_set_level_irq(gsi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 }
490#endif
491
492#ifdef CONFIG_X86_IO_APIC
493 if (acpi_irq_model == ACPI_IRQ_MODEL_IOAPIC) {
Len Browncb654692005-12-28 02:43:51 -0500494 plat_gsi = mp_register_gsi(gsi, triggering, polarity);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 }
496#endif
497 acpi_gsi_to_irq(plat_gsi, &irq);
498 return irq;
499}
Len Brown4be44fc2005-08-05 00:44:28 -0400500
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501EXPORT_SYMBOL(acpi_register_gsi);
502
503/*
504 * ACPI based hotplug support for CPU
505 */
506#ifdef CONFIG_ACPI_HOTPLUG_CPU
Len Brown4be44fc2005-08-05 00:44:28 -0400507int acpi_map_lsapic(acpi_handle handle, int *pcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508{
509 /* TBD */
510 return -EINVAL;
511}
Len Brown4be44fc2005-08-05 00:44:28 -0400512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513EXPORT_SYMBOL(acpi_map_lsapic);
514
Len Brown4be44fc2005-08-05 00:44:28 -0400515int acpi_unmap_lsapic(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516{
517 /* TBD */
518 return -EINVAL;
519}
Len Brown4be44fc2005-08-05 00:44:28 -0400520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521EXPORT_SYMBOL(acpi_unmap_lsapic);
Len Brown4be44fc2005-08-05 00:44:28 -0400522#endif /* CONFIG_ACPI_HOTPLUG_CPU */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
Len Brown4be44fc2005-08-05 00:44:28 -0400524int acpi_register_ioapic(acpi_handle handle, u64 phys_addr, u32 gsi_base)
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700525{
526 /* TBD */
527 return -EINVAL;
528}
Len Brown4be44fc2005-08-05 00:44:28 -0400529
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700530EXPORT_SYMBOL(acpi_register_ioapic);
531
Len Brown4be44fc2005-08-05 00:44:28 -0400532int acpi_unregister_ioapic(acpi_handle handle, u32 gsi_base)
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700533{
534 /* TBD */
535 return -EINVAL;
536}
Len Brown4be44fc2005-08-05 00:44:28 -0400537
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700538EXPORT_SYMBOL(acpi_unregister_ioapic);
539
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540static unsigned long __init
Len Brown4be44fc2005-08-05 00:44:28 -0400541acpi_scan_rsdp(unsigned long start, unsigned long length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542{
Len Brown4be44fc2005-08-05 00:44:28 -0400543 unsigned long offset = 0;
544 unsigned long sig_len = sizeof("RSD PTR ") - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
546 /*
547 * Scan all 16-byte boundaries of the physical memory region for the
548 * RSDP signature.
549 */
550 for (offset = 0; offset < length; offset += 16) {
Siddha, Suresh Bf6c2e332005-11-05 17:25:53 +0100551 if (strncmp((char *)(phys_to_virt(start) + offset), "RSD PTR ", sig_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 continue;
553 return (start + offset);
554 }
555
556 return 0;
557}
558
559static int __init acpi_parse_sbf(unsigned long phys_addr, unsigned long size)
560{
561 struct acpi_table_sbf *sb;
562
563 if (!phys_addr || !size)
Len Brown4be44fc2005-08-05 00:44:28 -0400564 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Len Brown4be44fc2005-08-05 00:44:28 -0400566 sb = (struct acpi_table_sbf *)__acpi_map_table(phys_addr, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 if (!sb) {
568 printk(KERN_WARNING PREFIX "Unable to map SBF\n");
569 return -ENODEV;
570 }
571
Len Brown4be44fc2005-08-05 00:44:28 -0400572 sbf_port = sb->sbf_cmos; /* Save CMOS port */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
574 return 0;
575}
576
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577#ifdef CONFIG_HPET_TIMER
578
579static int __init acpi_parse_hpet(unsigned long phys, unsigned long size)
580{
581 struct acpi_table_hpet *hpet_tbl;
582
583 if (!phys || !size)
584 return -EINVAL;
585
Len Brown4be44fc2005-08-05 00:44:28 -0400586 hpet_tbl = (struct acpi_table_hpet *)__acpi_map_table(phys, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 if (!hpet_tbl) {
588 printk(KERN_WARNING PREFIX "Unable to map HPET\n");
589 return -ENODEV;
590 }
591
592 if (hpet_tbl->addr.space_id != ACPI_SPACE_MEM) {
593 printk(KERN_WARNING PREFIX "HPET timers must be located in "
594 "memory.\n");
595 return -1;
596 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597#ifdef CONFIG_X86_64
Len Brown4be44fc2005-08-05 00:44:28 -0400598 vxtime.hpet_address = hpet_tbl->addr.addrl |
599 ((long)hpet_tbl->addr.addrh << 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Len Brown4be44fc2005-08-05 00:44:28 -0400601 printk(KERN_INFO PREFIX "HPET id: %#x base: %#lx\n",
602 hpet_tbl->id, vxtime.hpet_address);
603#else /* X86 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 {
605 extern unsigned long hpet_address;
606
607 hpet_address = hpet_tbl->addr.addrl;
608 printk(KERN_INFO PREFIX "HPET id: %#x base: %#lx\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400609 hpet_tbl->id, hpet_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 }
Len Brown4be44fc2005-08-05 00:44:28 -0400611#endif /* X86 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
613 return 0;
614}
615#else
616#define acpi_parse_hpet NULL
617#endif
618
619#ifdef CONFIG_X86_PM_TIMER
620extern u32 pmtmr_ioport;
621#endif
622
623static int __init acpi_parse_fadt(unsigned long phys, unsigned long size)
624{
Bob Moore793c2382006-03-31 00:00:00 -0500625 struct fadt_descriptor *fadt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
Bob Moore793c2382006-03-31 00:00:00 -0500627 fadt = (struct fadt_descriptor *)__acpi_map_table(phys, size);
Len Brown4be44fc2005-08-05 00:44:28 -0400628 if (!fadt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 printk(KERN_WARNING PREFIX "Unable to map FADT\n");
630 return 0;
631 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 /* initialize sci_int early for INT_SRC_OVR MADT parsing */
633 acpi_fadt.sci_int = fadt->sci_int;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
Jason Davis90660ec2005-04-16 15:24:53 -0700635 /* initialize rev and apic_phys_dest_mode for x86_64 genapic */
636 acpi_fadt.revision = fadt->revision;
Len Brown4be44fc2005-08-05 00:44:28 -0400637 acpi_fadt.force_apic_physical_destination_mode =
638 fadt->force_apic_physical_destination_mode;
Jason Davis90660ec2005-04-16 15:24:53 -0700639
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640#ifdef CONFIG_X86_PM_TIMER
641 /* detect the location of the ACPI PM Timer */
642 if (fadt->revision >= FADT2_REVISION_ID) {
643 /* FADT rev. 2 */
Len Brown4be44fc2005-08-05 00:44:28 -0400644 if (fadt->xpm_tmr_blk.address_space_id !=
645 ACPI_ADR_SPACE_SYSTEM_IO)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 return 0;
647
648 pmtmr_ioport = fadt->xpm_tmr_blk.address;
David Shaohua Lie6e87b42005-09-21 01:35:00 -0400649 /*
650 * "X" fields are optional extensions to the original V1.0
651 * fields, so we must selectively expand V1.0 fields if the
652 * corresponding X field is zero.
653 */
654 if (!pmtmr_ioport)
655 pmtmr_ioport = fadt->V1_pm_tmr_blk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 } else {
657 /* FADT rev. 1 */
658 pmtmr_ioport = fadt->V1_pm_tmr_blk;
659 }
660 if (pmtmr_ioport)
Len Brown4be44fc2005-08-05 00:44:28 -0400661 printk(KERN_INFO PREFIX "PM-Timer IO Port: %#x\n",
662 pmtmr_ioport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663#endif
664 return 0;
665}
666
Len Brown4be44fc2005-08-05 00:44:28 -0400667unsigned long __init acpi_find_rsdp(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668{
Len Brown4be44fc2005-08-05 00:44:28 -0400669 unsigned long rsdp_phys = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
671 if (efi_enabled) {
Bjorn Helgaasb2c99e32006-03-26 01:37:08 -0800672 if (efi.acpi20 != EFI_INVALID_TABLE_ADDR)
673 return efi.acpi20;
674 else if (efi.acpi != EFI_INVALID_TABLE_ADDR)
675 return efi.acpi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 }
677 /*
678 * Scan memory looking for the RSDP signature. First search EBDA (low
679 * memory) paragraphs and then search upper memory (E0000-FFFFF).
680 */
Len Brown4be44fc2005-08-05 00:44:28 -0400681 rsdp_phys = acpi_scan_rsdp(0, 0x400);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 if (!rsdp_phys)
Len Brown4be44fc2005-08-05 00:44:28 -0400683 rsdp_phys = acpi_scan_rsdp(0xE0000, 0x20000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
685 return rsdp_phys;
686}
687
688#ifdef CONFIG_X86_LOCAL_APIC
689/*
690 * Parse LAPIC entries in MADT
691 * returns 0 on success, < 0 on error
692 */
Len Brown4be44fc2005-08-05 00:44:28 -0400693static int __init acpi_parse_madt_lapic_entries(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694{
695 int count;
696
Andi Kleen0fcd2702006-04-11 12:54:36 +0200697 if (!cpu_has_apic)
698 return -ENODEV;
699
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 /*
701 * Note that the LAPIC address is obtained from the MADT (32-bit value)
702 * and (optionally) overriden by a LAPIC_ADDR_OVR entry (64-bit value).
703 */
704
Len Brown4be44fc2005-08-05 00:44:28 -0400705 count =
706 acpi_table_parse_madt(ACPI_MADT_LAPIC_ADDR_OVR,
707 acpi_parse_lapic_addr_ovr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 if (count < 0) {
Len Brown4be44fc2005-08-05 00:44:28 -0400709 printk(KERN_ERR PREFIX
710 "Error parsing LAPIC address override entry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 return count;
712 }
713
714 mp_register_lapic_address(acpi_lapic_addr);
715
716 count = acpi_table_parse_madt(ACPI_MADT_LAPIC, acpi_parse_lapic,
Len Brown4be44fc2005-08-05 00:44:28 -0400717 MAX_APICS);
718 if (!count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 printk(KERN_ERR PREFIX "No LAPIC entries present\n");
720 /* TBD: Cleanup to allow fallback to MPS */
721 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400722 } else if (count < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 printk(KERN_ERR PREFIX "Error parsing LAPIC entry\n");
724 /* TBD: Cleanup to allow fallback to MPS */
725 return count;
726 }
727
Len Brown4be44fc2005-08-05 00:44:28 -0400728 count =
729 acpi_table_parse_madt(ACPI_MADT_LAPIC_NMI, acpi_parse_lapic_nmi, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 if (count < 0) {
731 printk(KERN_ERR PREFIX "Error parsing LAPIC NMI entry\n");
732 /* TBD: Cleanup to allow fallback to MPS */
733 return count;
734 }
735 return 0;
736}
Len Brown4be44fc2005-08-05 00:44:28 -0400737#endif /* CONFIG_X86_LOCAL_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
Len Brown84663612005-08-24 12:09:07 -0400739#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740/*
741 * Parse IOAPIC related entries in MADT
742 * returns 0 on success, < 0 on error
743 */
Len Brown4be44fc2005-08-05 00:44:28 -0400744static int __init acpi_parse_madt_ioapic_entries(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745{
746 int count;
747
748 /*
749 * ACPI interpreter is required to complete interrupt setup,
750 * so if it is off, don't enumerate the io-apics with ACPI.
751 * If MPS is present, it will handle them,
752 * otherwise the system will stay in PIC mode
753 */
754 if (acpi_disabled || acpi_noirq) {
755 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400756 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
Andi Kleen9cfda2c2006-03-27 02:24:32 -0500758 if (!cpu_has_apic)
Andi Kleend3b6a342006-04-07 19:49:39 +0200759 return -ENODEV;
760
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 /*
Len Brown4be44fc2005-08-05 00:44:28 -0400762 * if "noapic" boot option, don't look for IO-APICs
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 */
764 if (skip_ioapic_setup) {
765 printk(KERN_INFO PREFIX "Skipping IOAPIC probe "
Len Brown4be44fc2005-08-05 00:44:28 -0400766 "due to 'noapic' option.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 return -ENODEV;
768 }
769
Len Brown4be44fc2005-08-05 00:44:28 -0400770 count =
771 acpi_table_parse_madt(ACPI_MADT_IOAPIC, acpi_parse_ioapic,
772 MAX_IO_APICS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 if (!count) {
774 printk(KERN_ERR PREFIX "No IOAPIC entries present\n");
775 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400776 } else if (count < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 printk(KERN_ERR PREFIX "Error parsing IOAPIC entry\n");
778 return count;
779 }
780
Len Brown4be44fc2005-08-05 00:44:28 -0400781 count =
782 acpi_table_parse_madt(ACPI_MADT_INT_SRC_OVR, acpi_parse_int_src_ovr,
783 NR_IRQ_VECTORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 if (count < 0) {
Len Brown4be44fc2005-08-05 00:44:28 -0400785 printk(KERN_ERR PREFIX
786 "Error parsing interrupt source overrides entry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 /* TBD: Cleanup to allow fallback to MPS */
788 return count;
789 }
790
791 /*
792 * If BIOS did not supply an INT_SRC_OVR for the SCI
793 * pretend we got one so we can set the SCI flags.
794 */
795 if (!acpi_sci_override_gsi)
796 acpi_sci_ioapic_setup(acpi_fadt.sci_int, 0, 0);
797
798 /* Fill in identity legacy mapings where no override */
799 mp_config_acpi_legacy_irqs();
800
Len Brown4be44fc2005-08-05 00:44:28 -0400801 count =
802 acpi_table_parse_madt(ACPI_MADT_NMI_SRC, acpi_parse_nmi_src,
803 NR_IRQ_VECTORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 if (count < 0) {
805 printk(KERN_ERR PREFIX "Error parsing NMI SRC entry\n");
806 /* TBD: Cleanup to allow fallback to MPS */
807 return count;
808 }
809
810 return 0;
811}
812#else
813static inline int acpi_parse_madt_ioapic_entries(void)
814{
815 return -1;
816}
Len Brown84663612005-08-24 12:09:07 -0400817#endif /* !CONFIG_X86_IO_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
Len Brown4be44fc2005-08-05 00:44:28 -0400819static void __init acpi_process_madt(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820{
821#ifdef CONFIG_X86_LOCAL_APIC
822 int count, error;
823
824 count = acpi_table_parse(ACPI_APIC, acpi_parse_madt);
825 if (count >= 1) {
826
827 /*
828 * Parse MADT LAPIC entries
829 */
830 error = acpi_parse_madt_lapic_entries();
831 if (!error) {
832 acpi_lapic = 1;
833
Venkatesh Pallipadi911a62d2005-09-03 15:56:31 -0700834#ifdef CONFIG_X86_GENERICARCH
835 generic_bigsmp_probe();
836#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 /*
838 * Parse MADT IO-APIC entries
839 */
840 error = acpi_parse_madt_ioapic_entries();
841 if (!error) {
842 acpi_irq_model = ACPI_IRQ_MODEL_IOAPIC;
843 acpi_irq_balance_set(NULL);
844 acpi_ioapic = 1;
845
846 smp_found_config = 1;
847 clustered_apic_check();
848 }
849 }
850 if (error == -EINVAL) {
851 /*
852 * Dell Precision Workstation 410, 610 come here.
853 */
Len Brown4be44fc2005-08-05 00:44:28 -0400854 printk(KERN_ERR PREFIX
855 "Invalid BIOS MADT, disabling ACPI\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 disable_acpi();
857 }
858 }
859#endif
860 return;
861}
862
Andrey Paninaea00142005-06-25 14:54:42 -0700863extern int acpi_force;
864
865#ifdef __i386__
866
Andrey Paninaea00142005-06-25 14:54:42 -0700867static int __init disable_acpi_irq(struct dmi_system_id *d)
868{
869 if (!acpi_force) {
870 printk(KERN_NOTICE "%s detected: force use of acpi=noirq\n",
871 d->ident);
872 acpi_noirq_set();
873 }
874 return 0;
875}
876
877static int __init disable_acpi_pci(struct dmi_system_id *d)
878{
879 if (!acpi_force) {
880 printk(KERN_NOTICE "%s detected: force use of pci=noacpi\n",
881 d->ident);
882 acpi_disable_pci();
883 }
884 return 0;
885}
Andrey Paninaea00142005-06-25 14:54:42 -0700886
887static int __init dmi_disable_acpi(struct dmi_system_id *d)
888{
889 if (!acpi_force) {
Len Brown4be44fc2005-08-05 00:44:28 -0400890 printk(KERN_NOTICE "%s detected: acpi off\n", d->ident);
Andrey Paninaea00142005-06-25 14:54:42 -0700891 disable_acpi();
892 } else {
893 printk(KERN_NOTICE
894 "Warning: DMI blacklist says broken, but acpi forced\n");
895 }
896 return 0;
897}
898
899/*
900 * Limit ACPI to CPU enumeration for HT
901 */
902static int __init force_acpi_ht(struct dmi_system_id *d)
903{
904 if (!acpi_force) {
Len Brown4be44fc2005-08-05 00:44:28 -0400905 printk(KERN_NOTICE "%s detected: force use of acpi=ht\n",
906 d->ident);
Andrey Paninaea00142005-06-25 14:54:42 -0700907 disable_acpi();
908 acpi_ht = 1;
909 } else {
910 printk(KERN_NOTICE
911 "Warning: acpi=force overrules DMI blacklist: acpi=ht\n");
912 }
913 return 0;
914}
915
916/*
917 * If your system is blacklisted here, but you find that acpi=force
918 * works for you, please contact acpi-devel@sourceforge.net
919 */
920static struct dmi_system_id __initdata acpi_dmi_table[] = {
921 /*
922 * Boxes that need ACPI disabled
923 */
924 {
Len Brown4be44fc2005-08-05 00:44:28 -0400925 .callback = dmi_disable_acpi,
926 .ident = "IBM Thinkpad",
927 .matches = {
928 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
929 DMI_MATCH(DMI_BOARD_NAME, "2629H1G"),
930 },
931 },
Andrey Paninaea00142005-06-25 14:54:42 -0700932
933 /*
934 * Boxes that need acpi=ht
935 */
936 {
Len Brown4be44fc2005-08-05 00:44:28 -0400937 .callback = force_acpi_ht,
938 .ident = "FSC Primergy T850",
939 .matches = {
940 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
941 DMI_MATCH(DMI_PRODUCT_NAME, "PRIMERGY T850"),
942 },
943 },
Andrey Paninaea00142005-06-25 14:54:42 -0700944 {
Len Brown4be44fc2005-08-05 00:44:28 -0400945 .callback = force_acpi_ht,
946 .ident = "DELL GX240",
947 .matches = {
948 DMI_MATCH(DMI_BOARD_VENDOR, "Dell Computer Corporation"),
949 DMI_MATCH(DMI_BOARD_NAME, "OptiPlex GX240"),
950 },
951 },
Andrey Paninaea00142005-06-25 14:54:42 -0700952 {
Len Brown4be44fc2005-08-05 00:44:28 -0400953 .callback = force_acpi_ht,
954 .ident = "HP VISUALIZE NT Workstation",
955 .matches = {
956 DMI_MATCH(DMI_BOARD_VENDOR, "Hewlett-Packard"),
957 DMI_MATCH(DMI_PRODUCT_NAME, "HP VISUALIZE NT Workstation"),
958 },
959 },
Andrey Paninaea00142005-06-25 14:54:42 -0700960 {
Len Brown4be44fc2005-08-05 00:44:28 -0400961 .callback = force_acpi_ht,
962 .ident = "Compaq Workstation W8000",
963 .matches = {
964 DMI_MATCH(DMI_SYS_VENDOR, "Compaq"),
965 DMI_MATCH(DMI_PRODUCT_NAME, "Workstation W8000"),
966 },
967 },
Andrey Paninaea00142005-06-25 14:54:42 -0700968 {
Len Brown4be44fc2005-08-05 00:44:28 -0400969 .callback = force_acpi_ht,
970 .ident = "ASUS P4B266",
971 .matches = {
972 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
973 DMI_MATCH(DMI_BOARD_NAME, "P4B266"),
974 },
975 },
Andrey Paninaea00142005-06-25 14:54:42 -0700976 {
Len Brown4be44fc2005-08-05 00:44:28 -0400977 .callback = force_acpi_ht,
978 .ident = "ASUS P2B-DS",
979 .matches = {
980 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
981 DMI_MATCH(DMI_BOARD_NAME, "P2B-DS"),
982 },
983 },
Andrey Paninaea00142005-06-25 14:54:42 -0700984 {
Len Brown4be44fc2005-08-05 00:44:28 -0400985 .callback = force_acpi_ht,
986 .ident = "ASUS CUR-DLS",
987 .matches = {
988 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
989 DMI_MATCH(DMI_BOARD_NAME, "CUR-DLS"),
990 },
991 },
Andrey Paninaea00142005-06-25 14:54:42 -0700992 {
Len Brown4be44fc2005-08-05 00:44:28 -0400993 .callback = force_acpi_ht,
994 .ident = "ABIT i440BX-W83977",
995 .matches = {
996 DMI_MATCH(DMI_BOARD_VENDOR, "ABIT <http://www.abit.com>"),
997 DMI_MATCH(DMI_BOARD_NAME, "i440BX-W83977 (BP6)"),
998 },
999 },
Andrey Paninaea00142005-06-25 14:54:42 -07001000 {
Len Brown4be44fc2005-08-05 00:44:28 -04001001 .callback = force_acpi_ht,
1002 .ident = "IBM Bladecenter",
1003 .matches = {
1004 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1005 DMI_MATCH(DMI_BOARD_NAME, "IBM eServer BladeCenter HS20"),
1006 },
1007 },
Andrey Paninaea00142005-06-25 14:54:42 -07001008 {
Len Brown4be44fc2005-08-05 00:44:28 -04001009 .callback = force_acpi_ht,
1010 .ident = "IBM eServer xSeries 360",
1011 .matches = {
1012 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1013 DMI_MATCH(DMI_BOARD_NAME, "eServer xSeries 360"),
1014 },
1015 },
Andrey Paninaea00142005-06-25 14:54:42 -07001016 {
Len Brown4be44fc2005-08-05 00:44:28 -04001017 .callback = force_acpi_ht,
1018 .ident = "IBM eserver xSeries 330",
1019 .matches = {
1020 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1021 DMI_MATCH(DMI_BOARD_NAME, "eserver xSeries 330"),
1022 },
1023 },
Andrey Paninaea00142005-06-25 14:54:42 -07001024 {
Len Brown4be44fc2005-08-05 00:44:28 -04001025 .callback = force_acpi_ht,
1026 .ident = "IBM eserver xSeries 440",
1027 .matches = {
1028 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1029 DMI_MATCH(DMI_PRODUCT_NAME, "eserver xSeries 440"),
1030 },
1031 },
Andrey Paninaea00142005-06-25 14:54:42 -07001032
Andrey Paninaea00142005-06-25 14:54:42 -07001033 /*
1034 * Boxes that need ACPI PCI IRQ routing disabled
1035 */
1036 {
Len Brown4be44fc2005-08-05 00:44:28 -04001037 .callback = disable_acpi_irq,
1038 .ident = "ASUS A7V",
1039 .matches = {
1040 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC"),
1041 DMI_MATCH(DMI_BOARD_NAME, "<A7V>"),
1042 /* newer BIOS, Revision 1011, does work */
1043 DMI_MATCH(DMI_BIOS_VERSION,
1044 "ASUS A7V ACPI BIOS Revision 1007"),
1045 },
1046 },
Andrey Paninaea00142005-06-25 14:54:42 -07001047
1048 /*
1049 * Boxes that need ACPI PCI IRQ routing and PCI scan disabled
1050 */
Len Brown4be44fc2005-08-05 00:44:28 -04001051 { /* _BBN 0 bug */
1052 .callback = disable_acpi_pci,
1053 .ident = "ASUS PR-DLS",
1054 .matches = {
1055 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1056 DMI_MATCH(DMI_BOARD_NAME, "PR-DLS"),
1057 DMI_MATCH(DMI_BIOS_VERSION,
1058 "ASUS PR-DLS ACPI BIOS Revision 1010"),
1059 DMI_MATCH(DMI_BIOS_DATE, "03/21/2003")
1060 },
1061 },
Andrey Paninaea00142005-06-25 14:54:42 -07001062 {
Len Brown4be44fc2005-08-05 00:44:28 -04001063 .callback = disable_acpi_pci,
1064 .ident = "Acer TravelMate 36x Laptop",
1065 .matches = {
1066 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
1067 DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 360"),
1068 },
1069 },
Len Brown4be44fc2005-08-05 00:44:28 -04001070 {}
Andrey Paninaea00142005-06-25 14:54:42 -07001071};
1072
Len Brown4be44fc2005-08-05 00:44:28 -04001073#endif /* __i386__ */
Andrey Paninaea00142005-06-25 14:54:42 -07001074
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075/*
1076 * acpi_boot_table_init() and acpi_boot_init()
1077 * called from setup_arch(), always.
1078 * 1. checksums all tables
1079 * 2. enumerates lapics
1080 * 3. enumerates io-apics
1081 *
1082 * acpi_table_init() is separate to allow reading SRAT without
1083 * other side effects.
1084 *
1085 * side effects of acpi_boot_init:
1086 * acpi_lapic = 1 if LAPIC found
1087 * acpi_ioapic = 1 if IOAPIC found
1088 * if (acpi_lapic && acpi_ioapic) smp_found_config = 1;
1089 * if acpi_blacklisted() acpi_disabled = 1;
1090 * acpi_irq_model=...
1091 * ...
1092 *
1093 * return value: (currently ignored)
1094 * 0: success
1095 * !0: failure
1096 */
1097
Len Brown4be44fc2005-08-05 00:44:28 -04001098int __init acpi_boot_table_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099{
1100 int error;
1101
Andrey Paninaea00142005-06-25 14:54:42 -07001102#ifdef __i386__
1103 dmi_check_system(acpi_dmi_table);
1104#endif
1105
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 /*
1107 * If acpi_disabled, bail out
1108 * One exception: acpi=ht continues far enough to enumerate LAPICs
1109 */
1110 if (acpi_disabled && !acpi_ht)
Len Brown4be44fc2005-08-05 00:44:28 -04001111 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
1113 /*
1114 * Initialize the ACPI boot-time table parser.
1115 */
1116 error = acpi_table_init();
1117 if (error) {
1118 disable_acpi();
1119 return error;
1120 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
1122 acpi_table_parse(ACPI_BOOT, acpi_parse_sbf);
1123
1124 /*
1125 * blacklist may disable ACPI entirely
1126 */
1127 error = acpi_blacklisted();
1128 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 if (acpi_force) {
1130 printk(KERN_WARNING PREFIX "acpi=force override\n");
1131 } else {
1132 printk(KERN_WARNING PREFIX "Disabling ACPI support\n");
1133 disable_acpi();
1134 return error;
1135 }
1136 }
1137
1138 return 0;
1139}
1140
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141int __init acpi_boot_init(void)
1142{
1143 /*
1144 * If acpi_disabled, bail out
1145 * One exception: acpi=ht continues far enough to enumerate LAPICs
1146 */
1147 if (acpi_disabled && !acpi_ht)
Len Brown4be44fc2005-08-05 00:44:28 -04001148 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149
1150 acpi_table_parse(ACPI_BOOT, acpi_parse_sbf);
1151
1152 /*
1153 * set sci_int and PM timer address
1154 */
1155 acpi_table_parse(ACPI_FADT, acpi_parse_fadt);
1156
1157 /*
1158 * Process the Multiple APIC Description Table (MADT), if present
1159 */
1160 acpi_process_madt();
1161
1162 acpi_table_parse(ACPI_HPET, acpi_parse_hpet);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
1164 return 0;
1165}