blob: 76b1135d401a6eb3b4851fe344fe6f052f70300f [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
James Cleverdon6004e1b2005-11-05 17:25:53 +010047static 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
111 if (phys_addr < (end_pfn_map << PAGE_SHIFT))
112 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
218 if (!phys_addr || !size)
219 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 Rajfbe83e22005-11-20 18:49:06 +0100251 /* Register even disabled CPUs for cpu hotplug */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
253 x86_acpiid_to_apicid[processor->acpi_id] = processor->id;
254
Len Brown4be44fc2005-08-05 00:44:28 -0400255 mp_register_lapic(processor->id, /* APIC ID */
256 processor->flags.enabled); /* Enabled? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
258 return 0;
259}
260
261static int __init
Len Brown4be44fc2005-08-05 00:44:28 -0400262acpi_parse_lapic_addr_ovr(acpi_table_entry_header * header,
263 const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264{
265 struct acpi_table_lapic_addr_ovr *lapic_addr_ovr = NULL;
266
Len Brown4be44fc2005-08-05 00:44:28 -0400267 lapic_addr_ovr = (struct acpi_table_lapic_addr_ovr *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
269 if (BAD_MADT_ENTRY(lapic_addr_ovr, end))
270 return -EINVAL;
271
272 acpi_lapic_addr = lapic_addr_ovr->address;
273
274 return 0;
275}
276
277static int __init
Len Brown4be44fc2005-08-05 00:44:28 -0400278acpi_parse_lapic_nmi(acpi_table_entry_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279{
280 struct acpi_table_lapic_nmi *lapic_nmi = NULL;
281
Len Brown4be44fc2005-08-05 00:44:28 -0400282 lapic_nmi = (struct acpi_table_lapic_nmi *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
284 if (BAD_MADT_ENTRY(lapic_nmi, end))
285 return -EINVAL;
286
287 acpi_table_print_madt_entry(header);
288
289 if (lapic_nmi->lint != 1)
290 printk(KERN_WARNING PREFIX "NMI not connected to LINT 1!\n");
291
292 return 0;
293}
294
Len Brown4be44fc2005-08-05 00:44:28 -0400295#endif /*CONFIG_X86_LOCAL_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Len Brown84663612005-08-24 12:09:07 -0400297#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
299static int __init
Len Brown4be44fc2005-08-05 00:44:28 -0400300acpi_parse_ioapic(acpi_table_entry_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301{
302 struct acpi_table_ioapic *ioapic = NULL;
303
Len Brown4be44fc2005-08-05 00:44:28 -0400304 ioapic = (struct acpi_table_ioapic *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
306 if (BAD_MADT_ENTRY(ioapic, end))
307 return -EINVAL;
Len Brown4be44fc2005-08-05 00:44:28 -0400308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 acpi_table_print_madt_entry(header);
310
Len Brown4be44fc2005-08-05 00:44:28 -0400311 mp_register_ioapic(ioapic->id,
312 ioapic->address, ioapic->global_irq_base);
313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 return 0;
315}
316
317/*
318 * Parse Interrupt Source Override for the ACPI SCI
319 */
Len Brown4be44fc2005-08-05 00:44:28 -0400320static void acpi_sci_ioapic_setup(u32 gsi, u16 polarity, u16 trigger)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321{
322 if (trigger == 0) /* compatible SCI trigger is level */
323 trigger = 3;
324
325 if (polarity == 0) /* compatible SCI polarity is low */
326 polarity = 3;
327
328 /* Command-line over-ride via acpi_sci= */
329 if (acpi_sci_flags.trigger)
330 trigger = acpi_sci_flags.trigger;
331
332 if (acpi_sci_flags.polarity)
333 polarity = acpi_sci_flags.polarity;
334
335 /*
Len Brown4be44fc2005-08-05 00:44:28 -0400336 * mp_config_acpi_legacy_irqs() already setup IRQs < 16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 * If GSI is < 16, this will update its flags,
338 * else it will create a new mp_irqs[] entry.
339 */
340 mp_override_legacy_irq(gsi, polarity, trigger, gsi);
341
342 /*
343 * stash over-ride to indicate we've been here
344 * and for later update of acpi_fadt
345 */
346 acpi_sci_override_gsi = gsi;
347 return;
348}
349
350static int __init
Len Brown4be44fc2005-08-05 00:44:28 -0400351acpi_parse_int_src_ovr(acpi_table_entry_header * header,
352 const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353{
354 struct acpi_table_int_src_ovr *intsrc = NULL;
355
Len Brown4be44fc2005-08-05 00:44:28 -0400356 intsrc = (struct acpi_table_int_src_ovr *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
358 if (BAD_MADT_ENTRY(intsrc, end))
359 return -EINVAL;
360
361 acpi_table_print_madt_entry(header);
362
363 if (intsrc->bus_irq == acpi_fadt.sci_int) {
364 acpi_sci_ioapic_setup(intsrc->global_irq,
Len Brown4be44fc2005-08-05 00:44:28 -0400365 intsrc->flags.polarity,
366 intsrc->flags.trigger);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 return 0;
368 }
369
370 if (acpi_skip_timer_override &&
Len Brown4be44fc2005-08-05 00:44:28 -0400371 intsrc->bus_irq == 0 && intsrc->global_irq == 2) {
372 printk(PREFIX "BIOS IRQ0 pin2 override ignored.\n");
373 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 }
375
Len Brown4be44fc2005-08-05 00:44:28 -0400376 mp_override_legacy_irq(intsrc->bus_irq,
377 intsrc->flags.polarity,
378 intsrc->flags.trigger, intsrc->global_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
380 return 0;
381}
382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383static int __init
Len Brown4be44fc2005-08-05 00:44:28 -0400384acpi_parse_nmi_src(acpi_table_entry_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385{
386 struct acpi_table_nmi_src *nmi_src = NULL;
387
Len Brown4be44fc2005-08-05 00:44:28 -0400388 nmi_src = (struct acpi_table_nmi_src *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
390 if (BAD_MADT_ENTRY(nmi_src, end))
391 return -EINVAL;
392
393 acpi_table_print_madt_entry(header);
394
395 /* TBD: Support nimsrc entries? */
396
397 return 0;
398}
399
Len Brown4be44fc2005-08-05 00:44:28 -0400400#endif /* CONFIG_X86_IO_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402/*
403 * acpi_pic_sci_set_trigger()
404 *
405 * use ELCR to set PIC-mode trigger type for SCI
406 *
407 * If a PIC-mode SCI is not recognized or gives spurious IRQ7's
408 * it may require Edge Trigger -- use "acpi_sci=edge"
409 *
410 * Port 0x4d0-4d1 are ECLR1 and ECLR2, the Edge/Level Control Registers
411 * for the 8259 PIC. bit[n] = 1 means irq[n] is Level, otherwise Edge.
412 * ECLR1 is IRQ's 0-7 (IRQ 0, 1, 2 must be 0)
413 * ECLR2 is IRQ's 8-15 (IRQ 8, 13 must be 0)
414 */
415
Len Brown4be44fc2005-08-05 00:44:28 -0400416void __init acpi_pic_sci_set_trigger(unsigned int irq, u16 trigger)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417{
418 unsigned int mask = 1 << irq;
419 unsigned int old, new;
420
421 /* Real old ELCR mask */
422 old = inb(0x4d0) | (inb(0x4d1) << 8);
423
424 /*
425 * If we use ACPI to set PCI irq's, then we should clear ELCR
426 * since we will set it correctly as we enable the PCI irq
427 * routing.
428 */
429 new = acpi_noirq ? old : 0;
430
431 /*
432 * Update SCI information in the ELCR, it isn't in the PCI
433 * routing tables..
434 */
435 switch (trigger) {
Len Brown4be44fc2005-08-05 00:44:28 -0400436 case 1: /* Edge - clear */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 new &= ~mask;
438 break;
Len Brown4be44fc2005-08-05 00:44:28 -0400439 case 3: /* Level - set */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 new |= mask;
441 break;
442 }
443
444 if (old == new)
445 return;
446
447 printk(PREFIX "setting ELCR to %04x (from %04x)\n", new, old);
448 outb(new, 0x4d0);
449 outb(new >> 8, 0x4d1);
450}
451
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452int acpi_gsi_to_irq(u32 gsi, unsigned int *irq)
453{
454#ifdef CONFIG_X86_IO_APIC
455 if (use_pci_vector() && !platform_legacy_irq(gsi))
Len Brown4be44fc2005-08-05 00:44:28 -0400456 *irq = IO_APIC_VECTOR(gsi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 else
458#endif
James Cleverdon6004e1b2005-11-05 17:25:53 +0100459 *irq = gsi_irq_sharing(gsi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 return 0;
461}
462
Kenji Kaneshige1f3a6a12005-07-28 14:42:00 -0400463/*
464 * success: return IRQ number (>=0)
465 * failure: return < 0
466 */
467int acpi_register_gsi(u32 gsi, int edge_level, int active_high_low)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468{
469 unsigned int irq;
470 unsigned int plat_gsi = gsi;
471
472#ifdef CONFIG_PCI
473 /*
474 * Make sure all (legacy) PCI IRQs are set as level-triggered.
475 */
476 if (acpi_irq_model == ACPI_IRQ_MODEL_PIC) {
477 extern void eisa_set_level_irq(unsigned int irq);
478
479 if (edge_level == ACPI_LEVEL_SENSITIVE)
Len Brown4be44fc2005-08-05 00:44:28 -0400480 eisa_set_level_irq(gsi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 }
482#endif
483
484#ifdef CONFIG_X86_IO_APIC
485 if (acpi_irq_model == ACPI_IRQ_MODEL_IOAPIC) {
486 plat_gsi = mp_register_gsi(gsi, edge_level, active_high_low);
487 }
488#endif
489 acpi_gsi_to_irq(plat_gsi, &irq);
490 return irq;
491}
Len Brown4be44fc2005-08-05 00:44:28 -0400492
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493EXPORT_SYMBOL(acpi_register_gsi);
494
495/*
496 * ACPI based hotplug support for CPU
497 */
498#ifdef CONFIG_ACPI_HOTPLUG_CPU
Len Brown4be44fc2005-08-05 00:44:28 -0400499int acpi_map_lsapic(acpi_handle handle, int *pcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500{
501 /* TBD */
502 return -EINVAL;
503}
Len Brown4be44fc2005-08-05 00:44:28 -0400504
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505EXPORT_SYMBOL(acpi_map_lsapic);
506
Len Brown4be44fc2005-08-05 00:44:28 -0400507int acpi_unmap_lsapic(int cpu)
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_unmap_lsapic);
Len Brown4be44fc2005-08-05 00:44:28 -0400514#endif /* CONFIG_ACPI_HOTPLUG_CPU */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
Len Brown4be44fc2005-08-05 00:44:28 -0400516int acpi_register_ioapic(acpi_handle handle, u64 phys_addr, u32 gsi_base)
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700517{
518 /* TBD */
519 return -EINVAL;
520}
Len Brown4be44fc2005-08-05 00:44:28 -0400521
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700522EXPORT_SYMBOL(acpi_register_ioapic);
523
Len Brown4be44fc2005-08-05 00:44:28 -0400524int acpi_unregister_ioapic(acpi_handle handle, 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_unregister_ioapic);
531
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532static unsigned long __init
Len Brown4be44fc2005-08-05 00:44:28 -0400533acpi_scan_rsdp(unsigned long start, unsigned long length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534{
Len Brown4be44fc2005-08-05 00:44:28 -0400535 unsigned long offset = 0;
536 unsigned long sig_len = sizeof("RSD PTR ") - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
538 /*
539 * Scan all 16-byte boundaries of the physical memory region for the
540 * RSDP signature.
541 */
542 for (offset = 0; offset < length; offset += 16) {
Siddha, Suresh Bf6c2e332005-11-05 17:25:53 +0100543 if (strncmp((char *)(phys_to_virt(start) + offset), "RSD PTR ", sig_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 continue;
545 return (start + offset);
546 }
547
548 return 0;
549}
550
551static int __init acpi_parse_sbf(unsigned long phys_addr, unsigned long size)
552{
553 struct acpi_table_sbf *sb;
554
555 if (!phys_addr || !size)
Len Brown4be44fc2005-08-05 00:44:28 -0400556 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
Len Brown4be44fc2005-08-05 00:44:28 -0400558 sb = (struct acpi_table_sbf *)__acpi_map_table(phys_addr, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 if (!sb) {
560 printk(KERN_WARNING PREFIX "Unable to map SBF\n");
561 return -ENODEV;
562 }
563
Len Brown4be44fc2005-08-05 00:44:28 -0400564 sbf_port = sb->sbf_cmos; /* Save CMOS port */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
566 return 0;
567}
568
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569#ifdef CONFIG_HPET_TIMER
570
571static int __init acpi_parse_hpet(unsigned long phys, unsigned long size)
572{
573 struct acpi_table_hpet *hpet_tbl;
574
575 if (!phys || !size)
576 return -EINVAL;
577
Len Brown4be44fc2005-08-05 00:44:28 -0400578 hpet_tbl = (struct acpi_table_hpet *)__acpi_map_table(phys, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 if (!hpet_tbl) {
580 printk(KERN_WARNING PREFIX "Unable to map HPET\n");
581 return -ENODEV;
582 }
583
584 if (hpet_tbl->addr.space_id != ACPI_SPACE_MEM) {
585 printk(KERN_WARNING PREFIX "HPET timers must be located in "
586 "memory.\n");
587 return -1;
588 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589#ifdef CONFIG_X86_64
Len Brown4be44fc2005-08-05 00:44:28 -0400590 vxtime.hpet_address = hpet_tbl->addr.addrl |
591 ((long)hpet_tbl->addr.addrh << 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Len Brown4be44fc2005-08-05 00:44:28 -0400593 printk(KERN_INFO PREFIX "HPET id: %#x base: %#lx\n",
594 hpet_tbl->id, vxtime.hpet_address);
595#else /* X86 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 {
597 extern unsigned long hpet_address;
598
599 hpet_address = hpet_tbl->addr.addrl;
600 printk(KERN_INFO PREFIX "HPET id: %#x base: %#lx\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400601 hpet_tbl->id, hpet_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 }
Len Brown4be44fc2005-08-05 00:44:28 -0400603#endif /* X86 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
605 return 0;
606}
607#else
608#define acpi_parse_hpet NULL
609#endif
610
611#ifdef CONFIG_X86_PM_TIMER
612extern u32 pmtmr_ioport;
613#endif
614
615static int __init acpi_parse_fadt(unsigned long phys, unsigned long size)
616{
617 struct fadt_descriptor_rev2 *fadt = NULL;
618
Len Brown4be44fc2005-08-05 00:44:28 -0400619 fadt = (struct fadt_descriptor_rev2 *)__acpi_map_table(phys, size);
620 if (!fadt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 printk(KERN_WARNING PREFIX "Unable to map FADT\n");
622 return 0;
623 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 /* initialize sci_int early for INT_SRC_OVR MADT parsing */
625 acpi_fadt.sci_int = fadt->sci_int;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
Jason Davis90660ec2005-04-16 15:24:53 -0700627 /* initialize rev and apic_phys_dest_mode for x86_64 genapic */
628 acpi_fadt.revision = fadt->revision;
Len Brown4be44fc2005-08-05 00:44:28 -0400629 acpi_fadt.force_apic_physical_destination_mode =
630 fadt->force_apic_physical_destination_mode;
Jason Davis90660ec2005-04-16 15:24:53 -0700631
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632#ifdef CONFIG_X86_PM_TIMER
633 /* detect the location of the ACPI PM Timer */
634 if (fadt->revision >= FADT2_REVISION_ID) {
635 /* FADT rev. 2 */
Len Brown4be44fc2005-08-05 00:44:28 -0400636 if (fadt->xpm_tmr_blk.address_space_id !=
637 ACPI_ADR_SPACE_SYSTEM_IO)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 return 0;
639
640 pmtmr_ioport = fadt->xpm_tmr_blk.address;
641 } else {
642 /* FADT rev. 1 */
643 pmtmr_ioport = fadt->V1_pm_tmr_blk;
644 }
645 if (pmtmr_ioport)
Len Brown4be44fc2005-08-05 00:44:28 -0400646 printk(KERN_INFO PREFIX "PM-Timer IO Port: %#x\n",
647 pmtmr_ioport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648#endif
649 return 0;
650}
651
Len Brown4be44fc2005-08-05 00:44:28 -0400652unsigned long __init acpi_find_rsdp(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653{
Len Brown4be44fc2005-08-05 00:44:28 -0400654 unsigned long rsdp_phys = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
656 if (efi_enabled) {
657 if (efi.acpi20)
658 return __pa(efi.acpi20);
659 else if (efi.acpi)
660 return __pa(efi.acpi);
661 }
662 /*
663 * Scan memory looking for the RSDP signature. First search EBDA (low
664 * memory) paragraphs and then search upper memory (E0000-FFFFF).
665 */
Len Brown4be44fc2005-08-05 00:44:28 -0400666 rsdp_phys = acpi_scan_rsdp(0, 0x400);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 if (!rsdp_phys)
Len Brown4be44fc2005-08-05 00:44:28 -0400668 rsdp_phys = acpi_scan_rsdp(0xE0000, 0x20000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
670 return rsdp_phys;
671}
672
673#ifdef CONFIG_X86_LOCAL_APIC
674/*
675 * Parse LAPIC entries in MADT
676 * returns 0 on success, < 0 on error
677 */
Len Brown4be44fc2005-08-05 00:44:28 -0400678static int __init acpi_parse_madt_lapic_entries(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679{
680 int count;
681
682 /*
683 * Note that the LAPIC address is obtained from the MADT (32-bit value)
684 * and (optionally) overriden by a LAPIC_ADDR_OVR entry (64-bit value).
685 */
686
Len Brown4be44fc2005-08-05 00:44:28 -0400687 count =
688 acpi_table_parse_madt(ACPI_MADT_LAPIC_ADDR_OVR,
689 acpi_parse_lapic_addr_ovr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 if (count < 0) {
Len Brown4be44fc2005-08-05 00:44:28 -0400691 printk(KERN_ERR PREFIX
692 "Error parsing LAPIC address override entry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 return count;
694 }
695
696 mp_register_lapic_address(acpi_lapic_addr);
697
698 count = acpi_table_parse_madt(ACPI_MADT_LAPIC, acpi_parse_lapic,
Len Brown4be44fc2005-08-05 00:44:28 -0400699 MAX_APICS);
700 if (!count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 printk(KERN_ERR PREFIX "No LAPIC entries present\n");
702 /* TBD: Cleanup to allow fallback to MPS */
703 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400704 } else if (count < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 printk(KERN_ERR PREFIX "Error parsing LAPIC entry\n");
706 /* TBD: Cleanup to allow fallback to MPS */
707 return count;
708 }
709
Len Brown4be44fc2005-08-05 00:44:28 -0400710 count =
711 acpi_table_parse_madt(ACPI_MADT_LAPIC_NMI, acpi_parse_lapic_nmi, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 if (count < 0) {
713 printk(KERN_ERR PREFIX "Error parsing LAPIC NMI entry\n");
714 /* TBD: Cleanup to allow fallback to MPS */
715 return count;
716 }
717 return 0;
718}
Len Brown4be44fc2005-08-05 00:44:28 -0400719#endif /* CONFIG_X86_LOCAL_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Len Brown84663612005-08-24 12:09:07 -0400721#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722/*
723 * Parse IOAPIC related entries in MADT
724 * returns 0 on success, < 0 on error
725 */
Len Brown4be44fc2005-08-05 00:44:28 -0400726static int __init acpi_parse_madt_ioapic_entries(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727{
728 int count;
729
730 /*
731 * ACPI interpreter is required to complete interrupt setup,
732 * so if it is off, don't enumerate the io-apics with ACPI.
733 * If MPS is present, it will handle them,
734 * otherwise the system will stay in PIC mode
735 */
736 if (acpi_disabled || acpi_noirq) {
737 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400738 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
740 /*
Len Brown4be44fc2005-08-05 00:44:28 -0400741 * if "noapic" boot option, don't look for IO-APICs
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 */
743 if (skip_ioapic_setup) {
744 printk(KERN_INFO PREFIX "Skipping IOAPIC probe "
Len Brown4be44fc2005-08-05 00:44:28 -0400745 "due to 'noapic' option.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 return -ENODEV;
747 }
748
Len Brown4be44fc2005-08-05 00:44:28 -0400749 count =
750 acpi_table_parse_madt(ACPI_MADT_IOAPIC, acpi_parse_ioapic,
751 MAX_IO_APICS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 if (!count) {
753 printk(KERN_ERR PREFIX "No IOAPIC entries present\n");
754 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400755 } else if (count < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 printk(KERN_ERR PREFIX "Error parsing IOAPIC entry\n");
757 return count;
758 }
759
Len Brown4be44fc2005-08-05 00:44:28 -0400760 count =
761 acpi_table_parse_madt(ACPI_MADT_INT_SRC_OVR, acpi_parse_int_src_ovr,
762 NR_IRQ_VECTORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 if (count < 0) {
Len Brown4be44fc2005-08-05 00:44:28 -0400764 printk(KERN_ERR PREFIX
765 "Error parsing interrupt source overrides entry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 /* TBD: Cleanup to allow fallback to MPS */
767 return count;
768 }
769
770 /*
771 * If BIOS did not supply an INT_SRC_OVR for the SCI
772 * pretend we got one so we can set the SCI flags.
773 */
774 if (!acpi_sci_override_gsi)
775 acpi_sci_ioapic_setup(acpi_fadt.sci_int, 0, 0);
776
777 /* Fill in identity legacy mapings where no override */
778 mp_config_acpi_legacy_irqs();
779
Len Brown4be44fc2005-08-05 00:44:28 -0400780 count =
781 acpi_table_parse_madt(ACPI_MADT_NMI_SRC, acpi_parse_nmi_src,
782 NR_IRQ_VECTORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 if (count < 0) {
784 printk(KERN_ERR PREFIX "Error parsing NMI SRC entry\n");
785 /* TBD: Cleanup to allow fallback to MPS */
786 return count;
787 }
788
789 return 0;
790}
791#else
792static inline int acpi_parse_madt_ioapic_entries(void)
793{
794 return -1;
795}
Len Brown84663612005-08-24 12:09:07 -0400796#endif /* !CONFIG_X86_IO_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
Len Brown4be44fc2005-08-05 00:44:28 -0400798static void __init acpi_process_madt(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799{
800#ifdef CONFIG_X86_LOCAL_APIC
801 int count, error;
802
803 count = acpi_table_parse(ACPI_APIC, acpi_parse_madt);
804 if (count >= 1) {
805
806 /*
807 * Parse MADT LAPIC entries
808 */
809 error = acpi_parse_madt_lapic_entries();
810 if (!error) {
811 acpi_lapic = 1;
812
Venkatesh Pallipadi911a62d2005-09-03 15:56:31 -0700813#ifdef CONFIG_X86_GENERICARCH
814 generic_bigsmp_probe();
815#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 /*
817 * Parse MADT IO-APIC entries
818 */
819 error = acpi_parse_madt_ioapic_entries();
820 if (!error) {
821 acpi_irq_model = ACPI_IRQ_MODEL_IOAPIC;
822 acpi_irq_balance_set(NULL);
823 acpi_ioapic = 1;
824
825 smp_found_config = 1;
826 clustered_apic_check();
827 }
828 }
829 if (error == -EINVAL) {
830 /*
831 * Dell Precision Workstation 410, 610 come here.
832 */
Len Brown4be44fc2005-08-05 00:44:28 -0400833 printk(KERN_ERR PREFIX
834 "Invalid BIOS MADT, disabling ACPI\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 disable_acpi();
836 }
837 }
838#endif
839 return;
840}
841
Andrey Paninaea00142005-06-25 14:54:42 -0700842extern int acpi_force;
843
844#ifdef __i386__
845
Andrey Paninaea00142005-06-25 14:54:42 -0700846static int __init disable_acpi_irq(struct dmi_system_id *d)
847{
848 if (!acpi_force) {
849 printk(KERN_NOTICE "%s detected: force use of acpi=noirq\n",
850 d->ident);
851 acpi_noirq_set();
852 }
853 return 0;
854}
855
856static int __init disable_acpi_pci(struct dmi_system_id *d)
857{
858 if (!acpi_force) {
859 printk(KERN_NOTICE "%s detected: force use of pci=noacpi\n",
860 d->ident);
861 acpi_disable_pci();
862 }
863 return 0;
864}
Andrey Paninaea00142005-06-25 14:54:42 -0700865
866static int __init dmi_disable_acpi(struct dmi_system_id *d)
867{
868 if (!acpi_force) {
Len Brown4be44fc2005-08-05 00:44:28 -0400869 printk(KERN_NOTICE "%s detected: acpi off\n", d->ident);
Andrey Paninaea00142005-06-25 14:54:42 -0700870 disable_acpi();
871 } else {
872 printk(KERN_NOTICE
873 "Warning: DMI blacklist says broken, but acpi forced\n");
874 }
875 return 0;
876}
877
878/*
879 * Limit ACPI to CPU enumeration for HT
880 */
881static int __init force_acpi_ht(struct dmi_system_id *d)
882{
883 if (!acpi_force) {
Len Brown4be44fc2005-08-05 00:44:28 -0400884 printk(KERN_NOTICE "%s detected: force use of acpi=ht\n",
885 d->ident);
Andrey Paninaea00142005-06-25 14:54:42 -0700886 disable_acpi();
887 acpi_ht = 1;
888 } else {
889 printk(KERN_NOTICE
890 "Warning: acpi=force overrules DMI blacklist: acpi=ht\n");
891 }
892 return 0;
893}
894
895/*
896 * If your system is blacklisted here, but you find that acpi=force
897 * works for you, please contact acpi-devel@sourceforge.net
898 */
899static struct dmi_system_id __initdata acpi_dmi_table[] = {
900 /*
901 * Boxes that need ACPI disabled
902 */
903 {
Len Brown4be44fc2005-08-05 00:44:28 -0400904 .callback = dmi_disable_acpi,
905 .ident = "IBM Thinkpad",
906 .matches = {
907 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
908 DMI_MATCH(DMI_BOARD_NAME, "2629H1G"),
909 },
910 },
Andrey Paninaea00142005-06-25 14:54:42 -0700911
912 /*
913 * Boxes that need acpi=ht
914 */
915 {
Len Brown4be44fc2005-08-05 00:44:28 -0400916 .callback = force_acpi_ht,
917 .ident = "FSC Primergy T850",
918 .matches = {
919 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
920 DMI_MATCH(DMI_PRODUCT_NAME, "PRIMERGY T850"),
921 },
922 },
Andrey Paninaea00142005-06-25 14:54:42 -0700923 {
Len Brown4be44fc2005-08-05 00:44:28 -0400924 .callback = force_acpi_ht,
925 .ident = "DELL GX240",
926 .matches = {
927 DMI_MATCH(DMI_BOARD_VENDOR, "Dell Computer Corporation"),
928 DMI_MATCH(DMI_BOARD_NAME, "OptiPlex GX240"),
929 },
930 },
Andrey Paninaea00142005-06-25 14:54:42 -0700931 {
Len Brown4be44fc2005-08-05 00:44:28 -0400932 .callback = force_acpi_ht,
933 .ident = "HP VISUALIZE NT Workstation",
934 .matches = {
935 DMI_MATCH(DMI_BOARD_VENDOR, "Hewlett-Packard"),
936 DMI_MATCH(DMI_PRODUCT_NAME, "HP VISUALIZE NT Workstation"),
937 },
938 },
Andrey Paninaea00142005-06-25 14:54:42 -0700939 {
Len Brown4be44fc2005-08-05 00:44:28 -0400940 .callback = force_acpi_ht,
941 .ident = "Compaq Workstation W8000",
942 .matches = {
943 DMI_MATCH(DMI_SYS_VENDOR, "Compaq"),
944 DMI_MATCH(DMI_PRODUCT_NAME, "Workstation W8000"),
945 },
946 },
Andrey Paninaea00142005-06-25 14:54:42 -0700947 {
Len Brown4be44fc2005-08-05 00:44:28 -0400948 .callback = force_acpi_ht,
949 .ident = "ASUS P4B266",
950 .matches = {
951 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
952 DMI_MATCH(DMI_BOARD_NAME, "P4B266"),
953 },
954 },
Andrey Paninaea00142005-06-25 14:54:42 -0700955 {
Len Brown4be44fc2005-08-05 00:44:28 -0400956 .callback = force_acpi_ht,
957 .ident = "ASUS P2B-DS",
958 .matches = {
959 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
960 DMI_MATCH(DMI_BOARD_NAME, "P2B-DS"),
961 },
962 },
Andrey Paninaea00142005-06-25 14:54:42 -0700963 {
Len Brown4be44fc2005-08-05 00:44:28 -0400964 .callback = force_acpi_ht,
965 .ident = "ASUS CUR-DLS",
966 .matches = {
967 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
968 DMI_MATCH(DMI_BOARD_NAME, "CUR-DLS"),
969 },
970 },
Andrey Paninaea00142005-06-25 14:54:42 -0700971 {
Len Brown4be44fc2005-08-05 00:44:28 -0400972 .callback = force_acpi_ht,
973 .ident = "ABIT i440BX-W83977",
974 .matches = {
975 DMI_MATCH(DMI_BOARD_VENDOR, "ABIT <http://www.abit.com>"),
976 DMI_MATCH(DMI_BOARD_NAME, "i440BX-W83977 (BP6)"),
977 },
978 },
Andrey Paninaea00142005-06-25 14:54:42 -0700979 {
Len Brown4be44fc2005-08-05 00:44:28 -0400980 .callback = force_acpi_ht,
981 .ident = "IBM Bladecenter",
982 .matches = {
983 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
984 DMI_MATCH(DMI_BOARD_NAME, "IBM eServer BladeCenter HS20"),
985 },
986 },
Andrey Paninaea00142005-06-25 14:54:42 -0700987 {
Len Brown4be44fc2005-08-05 00:44:28 -0400988 .callback = force_acpi_ht,
989 .ident = "IBM eServer xSeries 360",
990 .matches = {
991 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
992 DMI_MATCH(DMI_BOARD_NAME, "eServer xSeries 360"),
993 },
994 },
Andrey Paninaea00142005-06-25 14:54:42 -0700995 {
Len Brown4be44fc2005-08-05 00:44:28 -0400996 .callback = force_acpi_ht,
997 .ident = "IBM eserver xSeries 330",
998 .matches = {
999 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1000 DMI_MATCH(DMI_BOARD_NAME, "eserver xSeries 330"),
1001 },
1002 },
Andrey Paninaea00142005-06-25 14:54:42 -07001003 {
Len Brown4be44fc2005-08-05 00:44:28 -04001004 .callback = force_acpi_ht,
1005 .ident = "IBM eserver xSeries 440",
1006 .matches = {
1007 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1008 DMI_MATCH(DMI_PRODUCT_NAME, "eserver xSeries 440"),
1009 },
1010 },
Andrey Paninaea00142005-06-25 14:54:42 -07001011
Andrey Paninaea00142005-06-25 14:54:42 -07001012 /*
1013 * Boxes that need ACPI PCI IRQ routing disabled
1014 */
1015 {
Len Brown4be44fc2005-08-05 00:44:28 -04001016 .callback = disable_acpi_irq,
1017 .ident = "ASUS A7V",
1018 .matches = {
1019 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC"),
1020 DMI_MATCH(DMI_BOARD_NAME, "<A7V>"),
1021 /* newer BIOS, Revision 1011, does work */
1022 DMI_MATCH(DMI_BIOS_VERSION,
1023 "ASUS A7V ACPI BIOS Revision 1007"),
1024 },
1025 },
Andrey Paninaea00142005-06-25 14:54:42 -07001026
1027 /*
1028 * Boxes that need ACPI PCI IRQ routing and PCI scan disabled
1029 */
Len Brown4be44fc2005-08-05 00:44:28 -04001030 { /* _BBN 0 bug */
1031 .callback = disable_acpi_pci,
1032 .ident = "ASUS PR-DLS",
1033 .matches = {
1034 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1035 DMI_MATCH(DMI_BOARD_NAME, "PR-DLS"),
1036 DMI_MATCH(DMI_BIOS_VERSION,
1037 "ASUS PR-DLS ACPI BIOS Revision 1010"),
1038 DMI_MATCH(DMI_BIOS_DATE, "03/21/2003")
1039 },
1040 },
Andrey Paninaea00142005-06-25 14:54:42 -07001041 {
Len Brown4be44fc2005-08-05 00:44:28 -04001042 .callback = disable_acpi_pci,
1043 .ident = "Acer TravelMate 36x Laptop",
1044 .matches = {
1045 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
1046 DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 360"),
1047 },
1048 },
Len Brown4be44fc2005-08-05 00:44:28 -04001049 {}
Andrey Paninaea00142005-06-25 14:54:42 -07001050};
1051
Len Brown4be44fc2005-08-05 00:44:28 -04001052#endif /* __i386__ */
Andrey Paninaea00142005-06-25 14:54:42 -07001053
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054/*
1055 * acpi_boot_table_init() and acpi_boot_init()
1056 * called from setup_arch(), always.
1057 * 1. checksums all tables
1058 * 2. enumerates lapics
1059 * 3. enumerates io-apics
1060 *
1061 * acpi_table_init() is separate to allow reading SRAT without
1062 * other side effects.
1063 *
1064 * side effects of acpi_boot_init:
1065 * acpi_lapic = 1 if LAPIC found
1066 * acpi_ioapic = 1 if IOAPIC found
1067 * if (acpi_lapic && acpi_ioapic) smp_found_config = 1;
1068 * if acpi_blacklisted() acpi_disabled = 1;
1069 * acpi_irq_model=...
1070 * ...
1071 *
1072 * return value: (currently ignored)
1073 * 0: success
1074 * !0: failure
1075 */
1076
Len Brown4be44fc2005-08-05 00:44:28 -04001077int __init acpi_boot_table_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078{
1079 int error;
1080
Andrey Paninaea00142005-06-25 14:54:42 -07001081#ifdef __i386__
1082 dmi_check_system(acpi_dmi_table);
1083#endif
1084
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 /*
1086 * If acpi_disabled, bail out
1087 * One exception: acpi=ht continues far enough to enumerate LAPICs
1088 */
1089 if (acpi_disabled && !acpi_ht)
Len Brown4be44fc2005-08-05 00:44:28 -04001090 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091
1092 /*
1093 * Initialize the ACPI boot-time table parser.
1094 */
1095 error = acpi_table_init();
1096 if (error) {
1097 disable_acpi();
1098 return error;
1099 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100#ifdef __i386__
1101 check_acpi_pci();
1102#endif
1103
1104 acpi_table_parse(ACPI_BOOT, acpi_parse_sbf);
1105
1106 /*
1107 * blacklist may disable ACPI entirely
1108 */
1109 error = acpi_blacklisted();
1110 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 if (acpi_force) {
1112 printk(KERN_WARNING PREFIX "acpi=force override\n");
1113 } else {
1114 printk(KERN_WARNING PREFIX "Disabling ACPI support\n");
1115 disable_acpi();
1116 return error;
1117 }
1118 }
1119
1120 return 0;
1121}
1122
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123int __init acpi_boot_init(void)
1124{
1125 /*
1126 * If acpi_disabled, bail out
1127 * One exception: acpi=ht continues far enough to enumerate LAPICs
1128 */
1129 if (acpi_disabled && !acpi_ht)
Len Brown4be44fc2005-08-05 00:44:28 -04001130 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131
1132 acpi_table_parse(ACPI_BOOT, acpi_parse_sbf);
1133
1134 /*
1135 * set sci_int and PM timer address
1136 */
1137 acpi_table_parse(ACPI_FADT, acpi_parse_fadt);
1138
1139 /*
1140 * Process the Multiple APIC Description Table (MADT), if present
1141 */
1142 acpi_process_madt();
1143
1144 acpi_table_parse(ACPI_HPET, acpi_parse_hpet);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
1146 return 0;
1147}