blob: d0980c79a5d274b0a7fa19c320d36c1582f1c601 [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>
27#include <linux/config.h>
28#include <linux/acpi.h>
29#include <linux/efi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/module.h>
Andrey Paninaea00142005-06-25 14:54:42 -070031#include <linux/dmi.h>
Nick Pigginb33fa1f2005-10-01 02:34:42 +100032#include <linux/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34#include <asm/pgtable.h>
35#include <asm/io_apic.h>
36#include <asm/apic.h>
37#include <asm/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <asm/mpspec.h>
39
40#ifdef CONFIG_X86_64
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042extern void __init clustered_apic_check(void);
Len Brown4be44fc2005-08-05 00:44:28 -040043
James Cleverdon6004e1b2005-11-05 17:25:53 +010044extern int gsi_irq_sharing(int gsi);
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <asm/proto.h>
46
Linus Torvalds637029c2006-02-27 20:41:56 -080047static inline int acpi_madt_oem_check(char *oem_id, char *oem_table_id) { return 0; }
48
49
Len Brown4be44fc2005-08-05 00:44:28 -040050#else /* X86 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52#ifdef CONFIG_X86_LOCAL_APIC
53#include <mach_apic.h>
54#include <mach_mpparse.h>
Len Brown4be44fc2005-08-05 00:44:28 -040055#endif /* CONFIG_X86_LOCAL_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
James Cleverdon6004e1b2005-11-05 17:25:53 +010057static inline int gsi_irq_sharing(int gsi) { return gsi; }
58
Len Brown4be44fc2005-08-05 00:44:28 -040059#endif /* X86 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61#define BAD_MADT_ENTRY(entry, end) ( \
62 (!entry) || (unsigned long)entry + sizeof(*entry) > end || \
63 ((acpi_table_entry_header *)entry)->length != sizeof(*entry))
64
65#define PREFIX "ACPI: "
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067int acpi_noirq __initdata; /* skip ACPI IRQ initialization */
Len Brown4be44fc2005-08-05 00:44:28 -040068int acpi_pci_disabled __initdata; /* skip ACPI PCI scan and IRQ initialization */
Linus Torvalds1da177e2005-04-16 15:20:36 -070069int acpi_ht __initdata = 1; /* enable HT */
70
71int acpi_lapic;
72int acpi_ioapic;
73int acpi_strict;
74EXPORT_SYMBOL(acpi_strict);
75
76acpi_interrupt_flags acpi_sci_flags __initdata;
77int acpi_sci_override_gsi __initdata;
78int acpi_skip_timer_override __initdata;
79
80#ifdef CONFIG_X86_LOCAL_APIC
81static u64 acpi_lapic_addr __initdata = APIC_DEFAULT_PHYS_BASE;
82#endif
83
84#ifndef __HAVE_ARCH_CMPXCHG
85#warning ACPI uses CMPXCHG, i486 and later hardware
86#endif
87
88#define MAX_MADT_ENTRIES 256
89u8 x86_acpiid_to_apicid[MAX_MADT_ENTRIES] =
Len Brown1f3a7302005-08-05 03:33:14 -040090 {[0 ... MAX_MADT_ENTRIES - 1] = 0xff };
Linus Torvalds1da177e2005-04-16 15:20:36 -070091EXPORT_SYMBOL(x86_acpiid_to_apicid);
92
93/* --------------------------------------------------------------------------
94 Boot-time Configuration
95 -------------------------------------------------------------------------- */
96
97/*
98 * The default interrupt routing model is PIC (8259). This gets
99 * overriden if IOAPICs are enumerated (below).
100 */
Len Brown4be44fc2005-08-05 00:44:28 -0400101enum acpi_irq_model_id acpi_irq_model = ACPI_IRQ_MODEL_PIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103#ifdef CONFIG_X86_64
104
105/* rely on all ACPI tables being in the direct mapping */
106char *__acpi_map_table(unsigned long phys_addr, unsigned long size)
107{
108 if (!phys_addr || !size)
Len Brown4be44fc2005-08-05 00:44:28 -0400109 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Andi Kleen7a4a76c2006-01-11 22:43:39 +0100111 if (phys_addr+size <= (end_pfn_map << PAGE_SHIFT) + PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 return __va(phys_addr);
113
114 return NULL;
115}
116
117#else
118
119/*
120 * Temporarily use the virtual area starting from FIX_IO_APIC_BASE_END,
121 * to map the target physical address. The problem is that set_fixmap()
122 * provides a single page, and it is possible that the page is not
123 * sufficient.
124 * By using this area, we can map up to MAX_IO_APICS pages temporarily,
125 * i.e. until the next __va_range() call.
126 *
127 * Important Safety Note: The fixed I/O APIC page numbers are *subtracted*
128 * from the fixed base. That's why we start at FIX_IO_APIC_BASE_END and
129 * count idx down while incrementing the phys address.
130 */
131char *__acpi_map_table(unsigned long phys, unsigned long size)
132{
133 unsigned long base, offset, mapped_size;
134 int idx;
135
Len Brown4be44fc2005-08-05 00:44:28 -0400136 if (phys + size < 8 * 1024 * 1024)
137 return __va(phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
139 offset = phys & (PAGE_SIZE - 1);
140 mapped_size = PAGE_SIZE - offset;
141 set_fixmap(FIX_ACPI_END, phys);
142 base = fix_to_virt(FIX_ACPI_END);
143
144 /*
145 * Most cases can be covered by the below.
146 */
147 idx = FIX_ACPI_END;
148 while (mapped_size < size) {
149 if (--idx < FIX_ACPI_BEGIN)
150 return NULL; /* cannot handle this */
151 phys += PAGE_SIZE;
152 set_fixmap(idx, phys);
153 mapped_size += PAGE_SIZE;
154 }
155
Len Brown4be44fc2005-08-05 00:44:28 -0400156 return ((unsigned char *)base + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157}
158#endif
159
160#ifdef CONFIG_PCI_MMCONFIG
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700161/* The physical address of the MMCONFIG aperture. Set from ACPI tables. */
162struct acpi_table_mcfg_config *pci_mmcfg_config;
163int pci_mmcfg_config_num;
164
165int __init acpi_parse_mcfg(unsigned long phys_addr, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166{
167 struct acpi_table_mcfg *mcfg;
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700168 unsigned long i;
169 int config_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
171 if (!phys_addr || !size)
172 return -EINVAL;
173
Len Brown4be44fc2005-08-05 00:44:28 -0400174 mcfg = (struct acpi_table_mcfg *)__acpi_map_table(phys_addr, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 if (!mcfg) {
176 printk(KERN_WARNING PREFIX "Unable to map MCFG\n");
177 return -ENODEV;
178 }
179
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700180 /* how many config structures do we have */
181 pci_mmcfg_config_num = 0;
182 i = size - sizeof(struct acpi_table_mcfg);
183 while (i >= sizeof(struct acpi_table_mcfg_config)) {
184 ++pci_mmcfg_config_num;
185 i -= sizeof(struct acpi_table_mcfg_config);
186 };
187 if (pci_mmcfg_config_num == 0) {
188 printk(KERN_ERR PREFIX "MMCONFIG has no entries\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 return -ENODEV;
190 }
191
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700192 config_size = pci_mmcfg_config_num * sizeof(*pci_mmcfg_config);
193 pci_mmcfg_config = kmalloc(config_size, GFP_KERNEL);
194 if (!pci_mmcfg_config) {
195 printk(KERN_WARNING PREFIX
196 "No memory for MCFG config tables\n");
197 return -ENOMEM;
198 }
199
200 memcpy(pci_mmcfg_config, &mcfg->config, config_size);
201 for (i = 0; i < pci_mmcfg_config_num; ++i) {
202 if (mcfg->config[i].base_reserved) {
203 printk(KERN_ERR PREFIX
204 "MMCONFIG not in low 4GB of memory\n");
205 return -ENODEV;
206 }
207 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
209 return 0;
210}
Len Brown4be44fc2005-08-05 00:44:28 -0400211#endif /* CONFIG_PCI_MMCONFIG */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213#ifdef CONFIG_X86_LOCAL_APIC
Len Brown4be44fc2005-08-05 00:44:28 -0400214static int __init acpi_parse_madt(unsigned long phys_addr, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215{
Len Brown4be44fc2005-08-05 00:44:28 -0400216 struct acpi_table_madt *madt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Andi Kleen9cfda2c2006-03-27 02:24:32 -0500218 if (!phys_addr || !size || !cpu_has_apic)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 return -EINVAL;
220
Len Brown4be44fc2005-08-05 00:44:28 -0400221 madt = (struct acpi_table_madt *)__acpi_map_table(phys_addr, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 if (!madt) {
223 printk(KERN_WARNING PREFIX "Unable to map MADT\n");
224 return -ENODEV;
225 }
226
227 if (madt->lapic_address) {
228 acpi_lapic_addr = (u64) madt->lapic_address;
229
230 printk(KERN_DEBUG PREFIX "Local APIC address 0x%08x\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400231 madt->lapic_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 }
233
234 acpi_madt_oem_check(madt->header.oem_id, madt->header.oem_table_id);
Len Brown4be44fc2005-08-05 00:44:28 -0400235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 return 0;
237}
238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239static int __init
Len Brown4be44fc2005-08-05 00:44:28 -0400240acpi_parse_lapic(acpi_table_entry_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241{
Len Brown4be44fc2005-08-05 00:44:28 -0400242 struct acpi_table_lapic *processor = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Len Brown4be44fc2005-08-05 00:44:28 -0400244 processor = (struct acpi_table_lapic *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
246 if (BAD_MADT_ENTRY(processor, end))
247 return -EINVAL;
248
249 acpi_table_print_madt_entry(header);
250
Ashok Raj7f66ae42006-02-03 21:51:50 +0100251 /* Record local apic id only when enabled */
252 if (processor->flags.enabled)
253 x86_acpiid_to_apicid[processor->acpi_id] = processor->id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Ashok Raj7f66ae42006-02-03 21:51:50 +0100255 /*
256 * We need to register disabled CPU as well to permit
257 * counting disabled CPUs. This allows us to size
258 * cpus_possible_map more accurately, to permit
259 * to not preallocating memory for all NR_CPUS
260 * when we use CPU hotplug.
261 */
Len Brown4be44fc2005-08-05 00:44:28 -0400262 mp_register_lapic(processor->id, /* APIC ID */
263 processor->flags.enabled); /* Enabled? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
265 return 0;
266}
267
268static int __init
Len Brown4be44fc2005-08-05 00:44:28 -0400269acpi_parse_lapic_addr_ovr(acpi_table_entry_header * header,
270 const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271{
272 struct acpi_table_lapic_addr_ovr *lapic_addr_ovr = NULL;
273
Len Brown4be44fc2005-08-05 00:44:28 -0400274 lapic_addr_ovr = (struct acpi_table_lapic_addr_ovr *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
276 if (BAD_MADT_ENTRY(lapic_addr_ovr, end))
277 return -EINVAL;
278
279 acpi_lapic_addr = lapic_addr_ovr->address;
280
281 return 0;
282}
283
284static int __init
Len Brown4be44fc2005-08-05 00:44:28 -0400285acpi_parse_lapic_nmi(acpi_table_entry_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286{
287 struct acpi_table_lapic_nmi *lapic_nmi = NULL;
288
Len Brown4be44fc2005-08-05 00:44:28 -0400289 lapic_nmi = (struct acpi_table_lapic_nmi *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
291 if (BAD_MADT_ENTRY(lapic_nmi, end))
292 return -EINVAL;
293
294 acpi_table_print_madt_entry(header);
295
296 if (lapic_nmi->lint != 1)
297 printk(KERN_WARNING PREFIX "NMI not connected to LINT 1!\n");
298
299 return 0;
300}
301
Len Brown4be44fc2005-08-05 00:44:28 -0400302#endif /*CONFIG_X86_LOCAL_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Len Brown84663612005-08-24 12:09:07 -0400304#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
306static int __init
Len Brown4be44fc2005-08-05 00:44:28 -0400307acpi_parse_ioapic(acpi_table_entry_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
309 struct acpi_table_ioapic *ioapic = NULL;
310
Len Brown4be44fc2005-08-05 00:44:28 -0400311 ioapic = (struct acpi_table_ioapic *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
313 if (BAD_MADT_ENTRY(ioapic, end))
314 return -EINVAL;
Len Brown4be44fc2005-08-05 00:44:28 -0400315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 acpi_table_print_madt_entry(header);
317
Len Brown4be44fc2005-08-05 00:44:28 -0400318 mp_register_ioapic(ioapic->id,
319 ioapic->address, ioapic->global_irq_base);
320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 return 0;
322}
323
324/*
325 * Parse Interrupt Source Override for the ACPI SCI
326 */
Len Brown4be44fc2005-08-05 00:44:28 -0400327static void acpi_sci_ioapic_setup(u32 gsi, u16 polarity, u16 trigger)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
329 if (trigger == 0) /* compatible SCI trigger is level */
330 trigger = 3;
331
332 if (polarity == 0) /* compatible SCI polarity is low */
333 polarity = 3;
334
335 /* Command-line over-ride via acpi_sci= */
336 if (acpi_sci_flags.trigger)
337 trigger = acpi_sci_flags.trigger;
338
339 if (acpi_sci_flags.polarity)
340 polarity = acpi_sci_flags.polarity;
341
342 /*
Len Brown4be44fc2005-08-05 00:44:28 -0400343 * mp_config_acpi_legacy_irqs() already setup IRQs < 16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 * If GSI is < 16, this will update its flags,
345 * else it will create a new mp_irqs[] entry.
346 */
347 mp_override_legacy_irq(gsi, polarity, trigger, gsi);
348
349 /*
350 * stash over-ride to indicate we've been here
351 * and for later update of acpi_fadt
352 */
353 acpi_sci_override_gsi = gsi;
354 return;
355}
356
357static int __init
Len Brown4be44fc2005-08-05 00:44:28 -0400358acpi_parse_int_src_ovr(acpi_table_entry_header * header,
359 const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360{
361 struct acpi_table_int_src_ovr *intsrc = NULL;
362
Len Brown4be44fc2005-08-05 00:44:28 -0400363 intsrc = (struct acpi_table_int_src_ovr *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365 if (BAD_MADT_ENTRY(intsrc, end))
366 return -EINVAL;
367
368 acpi_table_print_madt_entry(header);
369
370 if (intsrc->bus_irq == acpi_fadt.sci_int) {
371 acpi_sci_ioapic_setup(intsrc->global_irq,
Len Brown4be44fc2005-08-05 00:44:28 -0400372 intsrc->flags.polarity,
373 intsrc->flags.trigger);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 return 0;
375 }
376
377 if (acpi_skip_timer_override &&
Len Brown4be44fc2005-08-05 00:44:28 -0400378 intsrc->bus_irq == 0 && intsrc->global_irq == 2) {
379 printk(PREFIX "BIOS IRQ0 pin2 override ignored.\n");
380 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 }
382
Len Brown4be44fc2005-08-05 00:44:28 -0400383 mp_override_legacy_irq(intsrc->bus_irq,
384 intsrc->flags.polarity,
385 intsrc->flags.trigger, intsrc->global_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
387 return 0;
388}
389
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390static int __init
Len Brown4be44fc2005-08-05 00:44:28 -0400391acpi_parse_nmi_src(acpi_table_entry_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392{
393 struct acpi_table_nmi_src *nmi_src = NULL;
394
Len Brown4be44fc2005-08-05 00:44:28 -0400395 nmi_src = (struct acpi_table_nmi_src *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
397 if (BAD_MADT_ENTRY(nmi_src, end))
398 return -EINVAL;
399
400 acpi_table_print_madt_entry(header);
401
402 /* TBD: Support nimsrc entries? */
403
404 return 0;
405}
406
Len Brown4be44fc2005-08-05 00:44:28 -0400407#endif /* CONFIG_X86_IO_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409/*
410 * acpi_pic_sci_set_trigger()
411 *
412 * use ELCR to set PIC-mode trigger type for SCI
413 *
414 * If a PIC-mode SCI is not recognized or gives spurious IRQ7's
415 * it may require Edge Trigger -- use "acpi_sci=edge"
416 *
417 * Port 0x4d0-4d1 are ECLR1 and ECLR2, the Edge/Level Control Registers
418 * for the 8259 PIC. bit[n] = 1 means irq[n] is Level, otherwise Edge.
419 * ECLR1 is IRQ's 0-7 (IRQ 0, 1, 2 must be 0)
420 * ECLR2 is IRQ's 8-15 (IRQ 8, 13 must be 0)
421 */
422
Len Brown4be44fc2005-08-05 00:44:28 -0400423void __init acpi_pic_sci_set_trigger(unsigned int irq, u16 trigger)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424{
425 unsigned int mask = 1 << irq;
426 unsigned int old, new;
427
428 /* Real old ELCR mask */
429 old = inb(0x4d0) | (inb(0x4d1) << 8);
430
431 /*
432 * If we use ACPI to set PCI irq's, then we should clear ELCR
433 * since we will set it correctly as we enable the PCI irq
434 * routing.
435 */
436 new = acpi_noirq ? old : 0;
437
438 /*
439 * Update SCI information in the ELCR, it isn't in the PCI
440 * routing tables..
441 */
442 switch (trigger) {
Len Brown4be44fc2005-08-05 00:44:28 -0400443 case 1: /* Edge - clear */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 new &= ~mask;
445 break;
Len Brown4be44fc2005-08-05 00:44:28 -0400446 case 3: /* Level - set */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 new |= mask;
448 break;
449 }
450
451 if (old == new)
452 return;
453
454 printk(PREFIX "setting ELCR to %04x (from %04x)\n", new, old);
455 outb(new, 0x4d0);
456 outb(new >> 8, 0x4d1);
457}
458
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459int acpi_gsi_to_irq(u32 gsi, unsigned int *irq)
460{
461#ifdef CONFIG_X86_IO_APIC
462 if (use_pci_vector() && !platform_legacy_irq(gsi))
Len Brown4be44fc2005-08-05 00:44:28 -0400463 *irq = IO_APIC_VECTOR(gsi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 else
465#endif
James Cleverdon6004e1b2005-11-05 17:25:53 +0100466 *irq = gsi_irq_sharing(gsi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 return 0;
468}
469
Kenji Kaneshige1f3a6a12005-07-28 14:42:00 -0400470/*
471 * success: return IRQ number (>=0)
472 * failure: return < 0
473 */
Len Browncb654692005-12-28 02:43:51 -0500474int acpi_register_gsi(u32 gsi, int triggering, int polarity)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475{
476 unsigned int irq;
477 unsigned int plat_gsi = gsi;
478
479#ifdef CONFIG_PCI
480 /*
481 * Make sure all (legacy) PCI IRQs are set as level-triggered.
482 */
483 if (acpi_irq_model == ACPI_IRQ_MODEL_PIC) {
484 extern void eisa_set_level_irq(unsigned int irq);
485
Len Browncb654692005-12-28 02:43:51 -0500486 if (triggering == ACPI_LEVEL_SENSITIVE)
Len Brown4be44fc2005-08-05 00:44:28 -0400487 eisa_set_level_irq(gsi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 }
489#endif
490
491#ifdef CONFIG_X86_IO_APIC
492 if (acpi_irq_model == ACPI_IRQ_MODEL_IOAPIC) {
Len Browncb654692005-12-28 02:43:51 -0500493 plat_gsi = mp_register_gsi(gsi, triggering, polarity);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 }
495#endif
496 acpi_gsi_to_irq(plat_gsi, &irq);
497 return irq;
498}
Len Brown4be44fc2005-08-05 00:44:28 -0400499
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500EXPORT_SYMBOL(acpi_register_gsi);
501
502/*
503 * ACPI based hotplug support for CPU
504 */
505#ifdef CONFIG_ACPI_HOTPLUG_CPU
Len Brown4be44fc2005-08-05 00:44:28 -0400506int acpi_map_lsapic(acpi_handle handle, int *pcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507{
508 /* TBD */
509 return -EINVAL;
510}
Len Brown4be44fc2005-08-05 00:44:28 -0400511
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512EXPORT_SYMBOL(acpi_map_lsapic);
513
Len Brown4be44fc2005-08-05 00:44:28 -0400514int acpi_unmap_lsapic(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515{
516 /* TBD */
517 return -EINVAL;
518}
Len Brown4be44fc2005-08-05 00:44:28 -0400519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520EXPORT_SYMBOL(acpi_unmap_lsapic);
Len Brown4be44fc2005-08-05 00:44:28 -0400521#endif /* CONFIG_ACPI_HOTPLUG_CPU */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Len Brown4be44fc2005-08-05 00:44:28 -0400523int acpi_register_ioapic(acpi_handle handle, u64 phys_addr, u32 gsi_base)
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700524{
525 /* TBD */
526 return -EINVAL;
527}
Len Brown4be44fc2005-08-05 00:44:28 -0400528
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700529EXPORT_SYMBOL(acpi_register_ioapic);
530
Len Brown4be44fc2005-08-05 00:44:28 -0400531int acpi_unregister_ioapic(acpi_handle handle, u32 gsi_base)
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700532{
533 /* TBD */
534 return -EINVAL;
535}
Len Brown4be44fc2005-08-05 00:44:28 -0400536
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700537EXPORT_SYMBOL(acpi_unregister_ioapic);
538
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539static unsigned long __init
Len Brown4be44fc2005-08-05 00:44:28 -0400540acpi_scan_rsdp(unsigned long start, unsigned long length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541{
Len Brown4be44fc2005-08-05 00:44:28 -0400542 unsigned long offset = 0;
543 unsigned long sig_len = sizeof("RSD PTR ") - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
545 /*
546 * Scan all 16-byte boundaries of the physical memory region for the
547 * RSDP signature.
548 */
549 for (offset = 0; offset < length; offset += 16) {
Siddha, Suresh Bf6c2e332005-11-05 17:25:53 +0100550 if (strncmp((char *)(phys_to_virt(start) + offset), "RSD PTR ", sig_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 continue;
552 return (start + offset);
553 }
554
555 return 0;
556}
557
558static int __init acpi_parse_sbf(unsigned long phys_addr, unsigned long size)
559{
560 struct acpi_table_sbf *sb;
561
562 if (!phys_addr || !size)
Len Brown4be44fc2005-08-05 00:44:28 -0400563 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
Len Brown4be44fc2005-08-05 00:44:28 -0400565 sb = (struct acpi_table_sbf *)__acpi_map_table(phys_addr, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 if (!sb) {
567 printk(KERN_WARNING PREFIX "Unable to map SBF\n");
568 return -ENODEV;
569 }
570
Len Brown4be44fc2005-08-05 00:44:28 -0400571 sbf_port = sb->sbf_cmos; /* Save CMOS port */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
573 return 0;
574}
575
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576#ifdef CONFIG_HPET_TIMER
577
578static int __init acpi_parse_hpet(unsigned long phys, unsigned long size)
579{
580 struct acpi_table_hpet *hpet_tbl;
581
582 if (!phys || !size)
583 return -EINVAL;
584
Len Brown4be44fc2005-08-05 00:44:28 -0400585 hpet_tbl = (struct acpi_table_hpet *)__acpi_map_table(phys, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 if (!hpet_tbl) {
587 printk(KERN_WARNING PREFIX "Unable to map HPET\n");
588 return -ENODEV;
589 }
590
591 if (hpet_tbl->addr.space_id != ACPI_SPACE_MEM) {
592 printk(KERN_WARNING PREFIX "HPET timers must be located in "
593 "memory.\n");
594 return -1;
595 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596#ifdef CONFIG_X86_64
Len Brown4be44fc2005-08-05 00:44:28 -0400597 vxtime.hpet_address = hpet_tbl->addr.addrl |
598 ((long)hpet_tbl->addr.addrh << 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Len Brown4be44fc2005-08-05 00:44:28 -0400600 printk(KERN_INFO PREFIX "HPET id: %#x base: %#lx\n",
601 hpet_tbl->id, vxtime.hpet_address);
602#else /* X86 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 {
604 extern unsigned long hpet_address;
605
606 hpet_address = hpet_tbl->addr.addrl;
607 printk(KERN_INFO PREFIX "HPET id: %#x base: %#lx\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400608 hpet_tbl->id, hpet_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 }
Len Brown4be44fc2005-08-05 00:44:28 -0400610#endif /* X86 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
612 return 0;
613}
614#else
615#define acpi_parse_hpet NULL
616#endif
617
618#ifdef CONFIG_X86_PM_TIMER
619extern u32 pmtmr_ioport;
620#endif
621
622static int __init acpi_parse_fadt(unsigned long phys, unsigned long size)
623{
624 struct fadt_descriptor_rev2 *fadt = NULL;
625
Len Brown4be44fc2005-08-05 00:44:28 -0400626 fadt = (struct fadt_descriptor_rev2 *)__acpi_map_table(phys, size);
627 if (!fadt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 printk(KERN_WARNING PREFIX "Unable to map FADT\n");
629 return 0;
630 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 /* initialize sci_int early for INT_SRC_OVR MADT parsing */
632 acpi_fadt.sci_int = fadt->sci_int;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
Jason Davis90660ec2005-04-16 15:24:53 -0700634 /* initialize rev and apic_phys_dest_mode for x86_64 genapic */
635 acpi_fadt.revision = fadt->revision;
Len Brown4be44fc2005-08-05 00:44:28 -0400636 acpi_fadt.force_apic_physical_destination_mode =
637 fadt->force_apic_physical_destination_mode;
Jason Davis90660ec2005-04-16 15:24:53 -0700638
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639#ifdef CONFIG_X86_PM_TIMER
640 /* detect the location of the ACPI PM Timer */
641 if (fadt->revision >= FADT2_REVISION_ID) {
642 /* FADT rev. 2 */
Len Brown4be44fc2005-08-05 00:44:28 -0400643 if (fadt->xpm_tmr_blk.address_space_id !=
644 ACPI_ADR_SPACE_SYSTEM_IO)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 return 0;
646
647 pmtmr_ioport = fadt->xpm_tmr_blk.address;
David Shaohua Lie6e87b42005-09-21 01:35:00 -0400648 /*
649 * "X" fields are optional extensions to the original V1.0
650 * fields, so we must selectively expand V1.0 fields if the
651 * corresponding X field is zero.
652 */
653 if (!pmtmr_ioport)
654 pmtmr_ioport = fadt->V1_pm_tmr_blk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 } else {
656 /* FADT rev. 1 */
657 pmtmr_ioport = fadt->V1_pm_tmr_blk;
658 }
659 if (pmtmr_ioport)
Len Brown4be44fc2005-08-05 00:44:28 -0400660 printk(KERN_INFO PREFIX "PM-Timer IO Port: %#x\n",
661 pmtmr_ioport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662#endif
663 return 0;
664}
665
Len Brown4be44fc2005-08-05 00:44:28 -0400666unsigned long __init acpi_find_rsdp(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667{
Len Brown4be44fc2005-08-05 00:44:28 -0400668 unsigned long rsdp_phys = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
670 if (efi_enabled) {
Bjorn Helgaasb2c99e32006-03-26 01:37:08 -0800671 if (efi.acpi20 != EFI_INVALID_TABLE_ADDR)
672 return efi.acpi20;
673 else if (efi.acpi != EFI_INVALID_TABLE_ADDR)
674 return efi.acpi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 }
676 /*
677 * Scan memory looking for the RSDP signature. First search EBDA (low
678 * memory) paragraphs and then search upper memory (E0000-FFFFF).
679 */
Len Brown4be44fc2005-08-05 00:44:28 -0400680 rsdp_phys = acpi_scan_rsdp(0, 0x400);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 if (!rsdp_phys)
Len Brown4be44fc2005-08-05 00:44:28 -0400682 rsdp_phys = acpi_scan_rsdp(0xE0000, 0x20000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
684 return rsdp_phys;
685}
686
687#ifdef CONFIG_X86_LOCAL_APIC
688/*
689 * Parse LAPIC entries in MADT
690 * returns 0 on success, < 0 on error
691 */
Len Brown4be44fc2005-08-05 00:44:28 -0400692static int __init acpi_parse_madt_lapic_entries(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693{
694 int count;
695
696 /*
697 * Note that the LAPIC address is obtained from the MADT (32-bit value)
698 * and (optionally) overriden by a LAPIC_ADDR_OVR entry (64-bit value).
699 */
700
Len Brown4be44fc2005-08-05 00:44:28 -0400701 count =
702 acpi_table_parse_madt(ACPI_MADT_LAPIC_ADDR_OVR,
703 acpi_parse_lapic_addr_ovr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 if (count < 0) {
Len Brown4be44fc2005-08-05 00:44:28 -0400705 printk(KERN_ERR PREFIX
706 "Error parsing LAPIC address override entry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 return count;
708 }
709
710 mp_register_lapic_address(acpi_lapic_addr);
711
712 count = acpi_table_parse_madt(ACPI_MADT_LAPIC, acpi_parse_lapic,
Len Brown4be44fc2005-08-05 00:44:28 -0400713 MAX_APICS);
714 if (!count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 printk(KERN_ERR PREFIX "No LAPIC entries present\n");
716 /* TBD: Cleanup to allow fallback to MPS */
717 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400718 } else if (count < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 printk(KERN_ERR PREFIX "Error parsing LAPIC entry\n");
720 /* TBD: Cleanup to allow fallback to MPS */
721 return count;
722 }
723
Len Brown4be44fc2005-08-05 00:44:28 -0400724 count =
725 acpi_table_parse_madt(ACPI_MADT_LAPIC_NMI, acpi_parse_lapic_nmi, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 if (count < 0) {
727 printk(KERN_ERR PREFIX "Error parsing LAPIC NMI entry\n");
728 /* TBD: Cleanup to allow fallback to MPS */
729 return count;
730 }
731 return 0;
732}
Len Brown4be44fc2005-08-05 00:44:28 -0400733#endif /* CONFIG_X86_LOCAL_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
Len Brown84663612005-08-24 12:09:07 -0400735#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736/*
737 * Parse IOAPIC related entries in MADT
738 * returns 0 on success, < 0 on error
739 */
Len Brown4be44fc2005-08-05 00:44:28 -0400740static int __init acpi_parse_madt_ioapic_entries(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741{
742 int count;
743
744 /*
745 * ACPI interpreter is required to complete interrupt setup,
746 * so if it is off, don't enumerate the io-apics with ACPI.
747 * If MPS is present, it will handle them,
748 * otherwise the system will stay in PIC mode
749 */
750 if (acpi_disabled || acpi_noirq) {
751 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400752 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
Andi Kleen9cfda2c2006-03-27 02:24:32 -0500754 if (!cpu_has_apic)
755 return -ENODEV;
756
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 /*
Len Brown4be44fc2005-08-05 00:44:28 -0400758 * if "noapic" boot option, don't look for IO-APICs
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 */
760 if (skip_ioapic_setup) {
761 printk(KERN_INFO PREFIX "Skipping IOAPIC probe "
Len Brown4be44fc2005-08-05 00:44:28 -0400762 "due to 'noapic' option.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 return -ENODEV;
764 }
765
Len Brown4be44fc2005-08-05 00:44:28 -0400766 count =
767 acpi_table_parse_madt(ACPI_MADT_IOAPIC, acpi_parse_ioapic,
768 MAX_IO_APICS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 if (!count) {
770 printk(KERN_ERR PREFIX "No IOAPIC entries present\n");
771 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400772 } else if (count < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 printk(KERN_ERR PREFIX "Error parsing IOAPIC entry\n");
774 return count;
775 }
776
Len Brown4be44fc2005-08-05 00:44:28 -0400777 count =
778 acpi_table_parse_madt(ACPI_MADT_INT_SRC_OVR, acpi_parse_int_src_ovr,
779 NR_IRQ_VECTORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 if (count < 0) {
Len Brown4be44fc2005-08-05 00:44:28 -0400781 printk(KERN_ERR PREFIX
782 "Error parsing interrupt source overrides entry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 /* TBD: Cleanup to allow fallback to MPS */
784 return count;
785 }
786
787 /*
788 * If BIOS did not supply an INT_SRC_OVR for the SCI
789 * pretend we got one so we can set the SCI flags.
790 */
791 if (!acpi_sci_override_gsi)
792 acpi_sci_ioapic_setup(acpi_fadt.sci_int, 0, 0);
793
794 /* Fill in identity legacy mapings where no override */
795 mp_config_acpi_legacy_irqs();
796
Len Brown4be44fc2005-08-05 00:44:28 -0400797 count =
798 acpi_table_parse_madt(ACPI_MADT_NMI_SRC, acpi_parse_nmi_src,
799 NR_IRQ_VECTORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 if (count < 0) {
801 printk(KERN_ERR PREFIX "Error parsing NMI SRC entry\n");
802 /* TBD: Cleanup to allow fallback to MPS */
803 return count;
804 }
805
806 return 0;
807}
808#else
809static inline int acpi_parse_madt_ioapic_entries(void)
810{
811 return -1;
812}
Len Brown84663612005-08-24 12:09:07 -0400813#endif /* !CONFIG_X86_IO_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
Len Brown4be44fc2005-08-05 00:44:28 -0400815static void __init acpi_process_madt(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816{
817#ifdef CONFIG_X86_LOCAL_APIC
818 int count, error;
819
820 count = acpi_table_parse(ACPI_APIC, acpi_parse_madt);
821 if (count >= 1) {
822
823 /*
824 * Parse MADT LAPIC entries
825 */
826 error = acpi_parse_madt_lapic_entries();
827 if (!error) {
828 acpi_lapic = 1;
829
Venkatesh Pallipadi911a62d2005-09-03 15:56:31 -0700830#ifdef CONFIG_X86_GENERICARCH
831 generic_bigsmp_probe();
832#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 /*
834 * Parse MADT IO-APIC entries
835 */
836 error = acpi_parse_madt_ioapic_entries();
837 if (!error) {
838 acpi_irq_model = ACPI_IRQ_MODEL_IOAPIC;
839 acpi_irq_balance_set(NULL);
840 acpi_ioapic = 1;
841
842 smp_found_config = 1;
843 clustered_apic_check();
844 }
845 }
846 if (error == -EINVAL) {
847 /*
848 * Dell Precision Workstation 410, 610 come here.
849 */
Len Brown4be44fc2005-08-05 00:44:28 -0400850 printk(KERN_ERR PREFIX
851 "Invalid BIOS MADT, disabling ACPI\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 disable_acpi();
853 }
854 }
855#endif
856 return;
857}
858
Andrey Paninaea00142005-06-25 14:54:42 -0700859extern int acpi_force;
860
861#ifdef __i386__
862
Andrey Paninaea00142005-06-25 14:54:42 -0700863static int __init disable_acpi_irq(struct dmi_system_id *d)
864{
865 if (!acpi_force) {
866 printk(KERN_NOTICE "%s detected: force use of acpi=noirq\n",
867 d->ident);
868 acpi_noirq_set();
869 }
870 return 0;
871}
872
873static int __init disable_acpi_pci(struct dmi_system_id *d)
874{
875 if (!acpi_force) {
876 printk(KERN_NOTICE "%s detected: force use of pci=noacpi\n",
877 d->ident);
878 acpi_disable_pci();
879 }
880 return 0;
881}
Andrey Paninaea00142005-06-25 14:54:42 -0700882
883static int __init dmi_disable_acpi(struct dmi_system_id *d)
884{
885 if (!acpi_force) {
Len Brown4be44fc2005-08-05 00:44:28 -0400886 printk(KERN_NOTICE "%s detected: acpi off\n", d->ident);
Andrey Paninaea00142005-06-25 14:54:42 -0700887 disable_acpi();
888 } else {
889 printk(KERN_NOTICE
890 "Warning: DMI blacklist says broken, but acpi forced\n");
891 }
892 return 0;
893}
894
895/*
896 * Limit ACPI to CPU enumeration for HT
897 */
898static int __init force_acpi_ht(struct dmi_system_id *d)
899{
900 if (!acpi_force) {
Len Brown4be44fc2005-08-05 00:44:28 -0400901 printk(KERN_NOTICE "%s detected: force use of acpi=ht\n",
902 d->ident);
Andrey Paninaea00142005-06-25 14:54:42 -0700903 disable_acpi();
904 acpi_ht = 1;
905 } else {
906 printk(KERN_NOTICE
907 "Warning: acpi=force overrules DMI blacklist: acpi=ht\n");
908 }
909 return 0;
910}
911
912/*
913 * If your system is blacklisted here, but you find that acpi=force
914 * works for you, please contact acpi-devel@sourceforge.net
915 */
916static struct dmi_system_id __initdata acpi_dmi_table[] = {
917 /*
918 * Boxes that need ACPI disabled
919 */
920 {
Len Brown4be44fc2005-08-05 00:44:28 -0400921 .callback = dmi_disable_acpi,
922 .ident = "IBM Thinkpad",
923 .matches = {
924 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
925 DMI_MATCH(DMI_BOARD_NAME, "2629H1G"),
926 },
927 },
Andrey Paninaea00142005-06-25 14:54:42 -0700928
929 /*
930 * Boxes that need acpi=ht
931 */
932 {
Len Brown4be44fc2005-08-05 00:44:28 -0400933 .callback = force_acpi_ht,
934 .ident = "FSC Primergy T850",
935 .matches = {
936 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
937 DMI_MATCH(DMI_PRODUCT_NAME, "PRIMERGY T850"),
938 },
939 },
Andrey Paninaea00142005-06-25 14:54:42 -0700940 {
Len Brown4be44fc2005-08-05 00:44:28 -0400941 .callback = force_acpi_ht,
942 .ident = "DELL GX240",
943 .matches = {
944 DMI_MATCH(DMI_BOARD_VENDOR, "Dell Computer Corporation"),
945 DMI_MATCH(DMI_BOARD_NAME, "OptiPlex GX240"),
946 },
947 },
Andrey Paninaea00142005-06-25 14:54:42 -0700948 {
Len Brown4be44fc2005-08-05 00:44:28 -0400949 .callback = force_acpi_ht,
950 .ident = "HP VISUALIZE NT Workstation",
951 .matches = {
952 DMI_MATCH(DMI_BOARD_VENDOR, "Hewlett-Packard"),
953 DMI_MATCH(DMI_PRODUCT_NAME, "HP VISUALIZE NT Workstation"),
954 },
955 },
Andrey Paninaea00142005-06-25 14:54:42 -0700956 {
Len Brown4be44fc2005-08-05 00:44:28 -0400957 .callback = force_acpi_ht,
958 .ident = "Compaq Workstation W8000",
959 .matches = {
960 DMI_MATCH(DMI_SYS_VENDOR, "Compaq"),
961 DMI_MATCH(DMI_PRODUCT_NAME, "Workstation W8000"),
962 },
963 },
Andrey Paninaea00142005-06-25 14:54:42 -0700964 {
Len Brown4be44fc2005-08-05 00:44:28 -0400965 .callback = force_acpi_ht,
966 .ident = "ASUS P4B266",
967 .matches = {
968 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
969 DMI_MATCH(DMI_BOARD_NAME, "P4B266"),
970 },
971 },
Andrey Paninaea00142005-06-25 14:54:42 -0700972 {
Len Brown4be44fc2005-08-05 00:44:28 -0400973 .callback = force_acpi_ht,
974 .ident = "ASUS P2B-DS",
975 .matches = {
976 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
977 DMI_MATCH(DMI_BOARD_NAME, "P2B-DS"),
978 },
979 },
Andrey Paninaea00142005-06-25 14:54:42 -0700980 {
Len Brown4be44fc2005-08-05 00:44:28 -0400981 .callback = force_acpi_ht,
982 .ident = "ASUS CUR-DLS",
983 .matches = {
984 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
985 DMI_MATCH(DMI_BOARD_NAME, "CUR-DLS"),
986 },
987 },
Andrey Paninaea00142005-06-25 14:54:42 -0700988 {
Len Brown4be44fc2005-08-05 00:44:28 -0400989 .callback = force_acpi_ht,
990 .ident = "ABIT i440BX-W83977",
991 .matches = {
992 DMI_MATCH(DMI_BOARD_VENDOR, "ABIT <http://www.abit.com>"),
993 DMI_MATCH(DMI_BOARD_NAME, "i440BX-W83977 (BP6)"),
994 },
995 },
Andrey Paninaea00142005-06-25 14:54:42 -0700996 {
Len Brown4be44fc2005-08-05 00:44:28 -0400997 .callback = force_acpi_ht,
998 .ident = "IBM Bladecenter",
999 .matches = {
1000 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1001 DMI_MATCH(DMI_BOARD_NAME, "IBM eServer BladeCenter HS20"),
1002 },
1003 },
Andrey Paninaea00142005-06-25 14:54:42 -07001004 {
Len Brown4be44fc2005-08-05 00:44:28 -04001005 .callback = force_acpi_ht,
1006 .ident = "IBM eServer xSeries 360",
1007 .matches = {
1008 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1009 DMI_MATCH(DMI_BOARD_NAME, "eServer xSeries 360"),
1010 },
1011 },
Andrey Paninaea00142005-06-25 14:54:42 -07001012 {
Len Brown4be44fc2005-08-05 00:44:28 -04001013 .callback = force_acpi_ht,
1014 .ident = "IBM eserver xSeries 330",
1015 .matches = {
1016 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1017 DMI_MATCH(DMI_BOARD_NAME, "eserver xSeries 330"),
1018 },
1019 },
Andrey Paninaea00142005-06-25 14:54:42 -07001020 {
Len Brown4be44fc2005-08-05 00:44:28 -04001021 .callback = force_acpi_ht,
1022 .ident = "IBM eserver xSeries 440",
1023 .matches = {
1024 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1025 DMI_MATCH(DMI_PRODUCT_NAME, "eserver xSeries 440"),
1026 },
1027 },
Andrey Paninaea00142005-06-25 14:54:42 -07001028
Andrey Paninaea00142005-06-25 14:54:42 -07001029 /*
1030 * Boxes that need ACPI PCI IRQ routing disabled
1031 */
1032 {
Len Brown4be44fc2005-08-05 00:44:28 -04001033 .callback = disable_acpi_irq,
1034 .ident = "ASUS A7V",
1035 .matches = {
1036 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC"),
1037 DMI_MATCH(DMI_BOARD_NAME, "<A7V>"),
1038 /* newer BIOS, Revision 1011, does work */
1039 DMI_MATCH(DMI_BIOS_VERSION,
1040 "ASUS A7V ACPI BIOS Revision 1007"),
1041 },
1042 },
Andrey Paninaea00142005-06-25 14:54:42 -07001043
1044 /*
1045 * Boxes that need ACPI PCI IRQ routing and PCI scan disabled
1046 */
Len Brown4be44fc2005-08-05 00:44:28 -04001047 { /* _BBN 0 bug */
1048 .callback = disable_acpi_pci,
1049 .ident = "ASUS PR-DLS",
1050 .matches = {
1051 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1052 DMI_MATCH(DMI_BOARD_NAME, "PR-DLS"),
1053 DMI_MATCH(DMI_BIOS_VERSION,
1054 "ASUS PR-DLS ACPI BIOS Revision 1010"),
1055 DMI_MATCH(DMI_BIOS_DATE, "03/21/2003")
1056 },
1057 },
Andrey Paninaea00142005-06-25 14:54:42 -07001058 {
Len Brown4be44fc2005-08-05 00:44:28 -04001059 .callback = disable_acpi_pci,
1060 .ident = "Acer TravelMate 36x Laptop",
1061 .matches = {
1062 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
1063 DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 360"),
1064 },
1065 },
Len Brown4be44fc2005-08-05 00:44:28 -04001066 {}
Andrey Paninaea00142005-06-25 14:54:42 -07001067};
1068
Len Brown4be44fc2005-08-05 00:44:28 -04001069#endif /* __i386__ */
Andrey Paninaea00142005-06-25 14:54:42 -07001070
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071/*
1072 * acpi_boot_table_init() and acpi_boot_init()
1073 * called from setup_arch(), always.
1074 * 1. checksums all tables
1075 * 2. enumerates lapics
1076 * 3. enumerates io-apics
1077 *
1078 * acpi_table_init() is separate to allow reading SRAT without
1079 * other side effects.
1080 *
1081 * side effects of acpi_boot_init:
1082 * acpi_lapic = 1 if LAPIC found
1083 * acpi_ioapic = 1 if IOAPIC found
1084 * if (acpi_lapic && acpi_ioapic) smp_found_config = 1;
1085 * if acpi_blacklisted() acpi_disabled = 1;
1086 * acpi_irq_model=...
1087 * ...
1088 *
1089 * return value: (currently ignored)
1090 * 0: success
1091 * !0: failure
1092 */
1093
Len Brown4be44fc2005-08-05 00:44:28 -04001094int __init acpi_boot_table_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095{
1096 int error;
1097
Andrey Paninaea00142005-06-25 14:54:42 -07001098#ifdef __i386__
1099 dmi_check_system(acpi_dmi_table);
1100#endif
1101
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 /*
1103 * If acpi_disabled, bail out
1104 * One exception: acpi=ht continues far enough to enumerate LAPICs
1105 */
1106 if (acpi_disabled && !acpi_ht)
Len Brown4be44fc2005-08-05 00:44:28 -04001107 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
1109 /*
1110 * Initialize the ACPI boot-time table parser.
1111 */
1112 error = acpi_table_init();
1113 if (error) {
1114 disable_acpi();
1115 return error;
1116 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
1118 acpi_table_parse(ACPI_BOOT, acpi_parse_sbf);
1119
1120 /*
1121 * blacklist may disable ACPI entirely
1122 */
1123 error = acpi_blacklisted();
1124 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 if (acpi_force) {
1126 printk(KERN_WARNING PREFIX "acpi=force override\n");
1127 } else {
1128 printk(KERN_WARNING PREFIX "Disabling ACPI support\n");
1129 disable_acpi();
1130 return error;
1131 }
1132 }
1133
1134 return 0;
1135}
1136
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137int __init acpi_boot_init(void)
1138{
1139 /*
1140 * If acpi_disabled, bail out
1141 * One exception: acpi=ht continues far enough to enumerate LAPICs
1142 */
1143 if (acpi_disabled && !acpi_ht)
Len Brown4be44fc2005-08-05 00:44:28 -04001144 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
1146 acpi_table_parse(ACPI_BOOT, acpi_parse_sbf);
1147
1148 /*
1149 * set sci_int and PM timer address
1150 */
1151 acpi_table_parse(ACPI_FADT, acpi_parse_fadt);
1152
1153 /*
1154 * Process the Multiple APIC Description Table (MADT), if present
1155 */
1156 acpi_process_madt();
1157
1158 acpi_table_parse(ACPI_HPET, acpi_parse_hpet);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
1160 return 0;
1161}