blob: b66c13c0cc0f8b45742021e35119067b3778d6dc [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
Len Brown4be44fc2005-08-05 00:44:28 -040042static inline void acpi_madt_oem_check(char *oem_id, char *oem_table_id)
43{
44}
Linus Torvalds1da177e2005-04-16 15:20:36 -070045extern void __init clustered_apic_check(void);
Len Brown4be44fc2005-08-05 00:44:28 -040046static inline int ioapic_setup_disabled(void)
47{
48 return 0;
49}
50
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <asm/proto.h>
52
Len Brown4be44fc2005-08-05 00:44:28 -040053#else /* X86 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55#ifdef CONFIG_X86_LOCAL_APIC
56#include <mach_apic.h>
57#include <mach_mpparse.h>
Len Brown4be44fc2005-08-05 00:44:28 -040058#endif /* CONFIG_X86_LOCAL_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Len Brown4be44fc2005-08-05 00:44:28 -040060#endif /* X86 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62#define BAD_MADT_ENTRY(entry, end) ( \
63 (!entry) || (unsigned long)entry + sizeof(*entry) > end || \
64 ((acpi_table_entry_header *)entry)->length != sizeof(*entry))
65
66#define PREFIX "ACPI: "
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068int acpi_noirq __initdata; /* skip ACPI IRQ initialization */
Len Brown4be44fc2005-08-05 00:44:28 -040069int acpi_pci_disabled __initdata; /* skip ACPI PCI scan and IRQ initialization */
Linus Torvalds1da177e2005-04-16 15:20:36 -070070int acpi_ht __initdata = 1; /* enable HT */
71
72int acpi_lapic;
73int acpi_ioapic;
74int acpi_strict;
75EXPORT_SYMBOL(acpi_strict);
76
77acpi_interrupt_flags acpi_sci_flags __initdata;
78int acpi_sci_override_gsi __initdata;
79int acpi_skip_timer_override __initdata;
80
81#ifdef CONFIG_X86_LOCAL_APIC
82static u64 acpi_lapic_addr __initdata = APIC_DEFAULT_PHYS_BASE;
83#endif
84
85#ifndef __HAVE_ARCH_CMPXCHG
86#warning ACPI uses CMPXCHG, i486 and later hardware
87#endif
88
89#define MAX_MADT_ENTRIES 256
90u8 x86_acpiid_to_apicid[MAX_MADT_ENTRIES] =
Len Brown1f3a7302005-08-05 03:33:14 -040091 {[0 ... MAX_MADT_ENTRIES - 1] = 0xff };
Linus Torvalds1da177e2005-04-16 15:20:36 -070092EXPORT_SYMBOL(x86_acpiid_to_apicid);
93
94/* --------------------------------------------------------------------------
95 Boot-time Configuration
96 -------------------------------------------------------------------------- */
97
98/*
99 * The default interrupt routing model is PIC (8259). This gets
100 * overriden if IOAPICs are enumerated (below).
101 */
Len Brown4be44fc2005-08-05 00:44:28 -0400102enum acpi_irq_model_id acpi_irq_model = ACPI_IRQ_MODEL_PIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
104#ifdef CONFIG_X86_64
105
106/* rely on all ACPI tables being in the direct mapping */
107char *__acpi_map_table(unsigned long phys_addr, unsigned long size)
108{
109 if (!phys_addr || !size)
Len Brown4be44fc2005-08-05 00:44:28 -0400110 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
112 if (phys_addr < (end_pfn_map << PAGE_SHIFT))
113 return __va(phys_addr);
114
115 return NULL;
116}
117
118#else
119
120/*
121 * Temporarily use the virtual area starting from FIX_IO_APIC_BASE_END,
122 * to map the target physical address. The problem is that set_fixmap()
123 * provides a single page, and it is possible that the page is not
124 * sufficient.
125 * By using this area, we can map up to MAX_IO_APICS pages temporarily,
126 * i.e. until the next __va_range() call.
127 *
128 * Important Safety Note: The fixed I/O APIC page numbers are *subtracted*
129 * from the fixed base. That's why we start at FIX_IO_APIC_BASE_END and
130 * count idx down while incrementing the phys address.
131 */
132char *__acpi_map_table(unsigned long phys, unsigned long size)
133{
134 unsigned long base, offset, mapped_size;
135 int idx;
136
Len Brown4be44fc2005-08-05 00:44:28 -0400137 if (phys + size < 8 * 1024 * 1024)
138 return __va(phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
140 offset = phys & (PAGE_SIZE - 1);
141 mapped_size = PAGE_SIZE - offset;
142 set_fixmap(FIX_ACPI_END, phys);
143 base = fix_to_virt(FIX_ACPI_END);
144
145 /*
146 * Most cases can be covered by the below.
147 */
148 idx = FIX_ACPI_END;
149 while (mapped_size < size) {
150 if (--idx < FIX_ACPI_BEGIN)
151 return NULL; /* cannot handle this */
152 phys += PAGE_SIZE;
153 set_fixmap(idx, phys);
154 mapped_size += PAGE_SIZE;
155 }
156
Len Brown4be44fc2005-08-05 00:44:28 -0400157 return ((unsigned char *)base + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158}
159#endif
160
161#ifdef CONFIG_PCI_MMCONFIG
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700162/* The physical address of the MMCONFIG aperture. Set from ACPI tables. */
163struct acpi_table_mcfg_config *pci_mmcfg_config;
164int pci_mmcfg_config_num;
165
166int __init acpi_parse_mcfg(unsigned long phys_addr, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167{
168 struct acpi_table_mcfg *mcfg;
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700169 unsigned long i;
170 int config_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
172 if (!phys_addr || !size)
173 return -EINVAL;
174
Len Brown4be44fc2005-08-05 00:44:28 -0400175 mcfg = (struct acpi_table_mcfg *)__acpi_map_table(phys_addr, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 if (!mcfg) {
177 printk(KERN_WARNING PREFIX "Unable to map MCFG\n");
178 return -ENODEV;
179 }
180
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700181 /* how many config structures do we have */
182 pci_mmcfg_config_num = 0;
183 i = size - sizeof(struct acpi_table_mcfg);
184 while (i >= sizeof(struct acpi_table_mcfg_config)) {
185 ++pci_mmcfg_config_num;
186 i -= sizeof(struct acpi_table_mcfg_config);
187 };
188 if (pci_mmcfg_config_num == 0) {
189 printk(KERN_ERR PREFIX "MMCONFIG has no entries\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 return -ENODEV;
191 }
192
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700193 config_size = pci_mmcfg_config_num * sizeof(*pci_mmcfg_config);
194 pci_mmcfg_config = kmalloc(config_size, GFP_KERNEL);
195 if (!pci_mmcfg_config) {
196 printk(KERN_WARNING PREFIX
197 "No memory for MCFG config tables\n");
198 return -ENOMEM;
199 }
200
201 memcpy(pci_mmcfg_config, &mcfg->config, config_size);
202 for (i = 0; i < pci_mmcfg_config_num; ++i) {
203 if (mcfg->config[i].base_reserved) {
204 printk(KERN_ERR PREFIX
205 "MMCONFIG not in low 4GB of memory\n");
206 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
219 if (!phys_addr || !size)
220 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
252 /* no utility in registering a disabled processor */
253 if (processor->flags.enabled == 0)
254 return 0;
255
256 x86_acpiid_to_apicid[processor->acpi_id] = processor->id;
257
Len Brown4be44fc2005-08-05 00:44:28 -0400258 mp_register_lapic(processor->id, /* APIC ID */
259 processor->flags.enabled); /* Enabled? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
261 return 0;
262}
263
264static int __init
Len Brown4be44fc2005-08-05 00:44:28 -0400265acpi_parse_lapic_addr_ovr(acpi_table_entry_header * header,
266 const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267{
268 struct acpi_table_lapic_addr_ovr *lapic_addr_ovr = NULL;
269
Len Brown4be44fc2005-08-05 00:44:28 -0400270 lapic_addr_ovr = (struct acpi_table_lapic_addr_ovr *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
272 if (BAD_MADT_ENTRY(lapic_addr_ovr, end))
273 return -EINVAL;
274
275 acpi_lapic_addr = lapic_addr_ovr->address;
276
277 return 0;
278}
279
280static int __init
Len Brown4be44fc2005-08-05 00:44:28 -0400281acpi_parse_lapic_nmi(acpi_table_entry_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282{
283 struct acpi_table_lapic_nmi *lapic_nmi = NULL;
284
Len Brown4be44fc2005-08-05 00:44:28 -0400285 lapic_nmi = (struct acpi_table_lapic_nmi *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
287 if (BAD_MADT_ENTRY(lapic_nmi, end))
288 return -EINVAL;
289
290 acpi_table_print_madt_entry(header);
291
292 if (lapic_nmi->lint != 1)
293 printk(KERN_WARNING PREFIX "NMI not connected to LINT 1!\n");
294
295 return 0;
296}
297
Len Brown4be44fc2005-08-05 00:44:28 -0400298#endif /*CONFIG_X86_LOCAL_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Len Brown84663612005-08-24 12:09:07 -0400300#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
302static int __init
Len Brown4be44fc2005-08-05 00:44:28 -0400303acpi_parse_ioapic(acpi_table_entry_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304{
305 struct acpi_table_ioapic *ioapic = NULL;
306
Len Brown4be44fc2005-08-05 00:44:28 -0400307 ioapic = (struct acpi_table_ioapic *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
309 if (BAD_MADT_ENTRY(ioapic, end))
310 return -EINVAL;
Len Brown4be44fc2005-08-05 00:44:28 -0400311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 acpi_table_print_madt_entry(header);
313
Len Brown4be44fc2005-08-05 00:44:28 -0400314 mp_register_ioapic(ioapic->id,
315 ioapic->address, ioapic->global_irq_base);
316
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 return 0;
318}
319
320/*
321 * Parse Interrupt Source Override for the ACPI SCI
322 */
Len Brown4be44fc2005-08-05 00:44:28 -0400323static void acpi_sci_ioapic_setup(u32 gsi, u16 polarity, u16 trigger)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324{
325 if (trigger == 0) /* compatible SCI trigger is level */
326 trigger = 3;
327
328 if (polarity == 0) /* compatible SCI polarity is low */
329 polarity = 3;
330
331 /* Command-line over-ride via acpi_sci= */
332 if (acpi_sci_flags.trigger)
333 trigger = acpi_sci_flags.trigger;
334
335 if (acpi_sci_flags.polarity)
336 polarity = acpi_sci_flags.polarity;
337
338 /*
Len Brown4be44fc2005-08-05 00:44:28 -0400339 * mp_config_acpi_legacy_irqs() already setup IRQs < 16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 * If GSI is < 16, this will update its flags,
341 * else it will create a new mp_irqs[] entry.
342 */
343 mp_override_legacy_irq(gsi, polarity, trigger, gsi);
344
345 /*
346 * stash over-ride to indicate we've been here
347 * and for later update of acpi_fadt
348 */
349 acpi_sci_override_gsi = gsi;
350 return;
351}
352
353static int __init
Len Brown4be44fc2005-08-05 00:44:28 -0400354acpi_parse_int_src_ovr(acpi_table_entry_header * header,
355 const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
357 struct acpi_table_int_src_ovr *intsrc = NULL;
358
Len Brown4be44fc2005-08-05 00:44:28 -0400359 intsrc = (struct acpi_table_int_src_ovr *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
361 if (BAD_MADT_ENTRY(intsrc, end))
362 return -EINVAL;
363
364 acpi_table_print_madt_entry(header);
365
366 if (intsrc->bus_irq == acpi_fadt.sci_int) {
367 acpi_sci_ioapic_setup(intsrc->global_irq,
Len Brown4be44fc2005-08-05 00:44:28 -0400368 intsrc->flags.polarity,
369 intsrc->flags.trigger);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 return 0;
371 }
372
373 if (acpi_skip_timer_override &&
Len Brown4be44fc2005-08-05 00:44:28 -0400374 intsrc->bus_irq == 0 && intsrc->global_irq == 2) {
375 printk(PREFIX "BIOS IRQ0 pin2 override ignored.\n");
376 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 }
378
Len Brown4be44fc2005-08-05 00:44:28 -0400379 mp_override_legacy_irq(intsrc->bus_irq,
380 intsrc->flags.polarity,
381 intsrc->flags.trigger, intsrc->global_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
383 return 0;
384}
385
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386static int __init
Len Brown4be44fc2005-08-05 00:44:28 -0400387acpi_parse_nmi_src(acpi_table_entry_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388{
389 struct acpi_table_nmi_src *nmi_src = NULL;
390
Len Brown4be44fc2005-08-05 00:44:28 -0400391 nmi_src = (struct acpi_table_nmi_src *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
393 if (BAD_MADT_ENTRY(nmi_src, end))
394 return -EINVAL;
395
396 acpi_table_print_madt_entry(header);
397
398 /* TBD: Support nimsrc entries? */
399
400 return 0;
401}
402
Len Brown4be44fc2005-08-05 00:44:28 -0400403#endif /* CONFIG_X86_IO_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405/*
406 * acpi_pic_sci_set_trigger()
407 *
408 * use ELCR to set PIC-mode trigger type for SCI
409 *
410 * If a PIC-mode SCI is not recognized or gives spurious IRQ7's
411 * it may require Edge Trigger -- use "acpi_sci=edge"
412 *
413 * Port 0x4d0-4d1 are ECLR1 and ECLR2, the Edge/Level Control Registers
414 * for the 8259 PIC. bit[n] = 1 means irq[n] is Level, otherwise Edge.
415 * ECLR1 is IRQ's 0-7 (IRQ 0, 1, 2 must be 0)
416 * ECLR2 is IRQ's 8-15 (IRQ 8, 13 must be 0)
417 */
418
Len Brown4be44fc2005-08-05 00:44:28 -0400419void __init acpi_pic_sci_set_trigger(unsigned int irq, u16 trigger)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420{
421 unsigned int mask = 1 << irq;
422 unsigned int old, new;
423
424 /* Real old ELCR mask */
425 old = inb(0x4d0) | (inb(0x4d1) << 8);
426
427 /*
428 * If we use ACPI to set PCI irq's, then we should clear ELCR
429 * since we will set it correctly as we enable the PCI irq
430 * routing.
431 */
432 new = acpi_noirq ? old : 0;
433
434 /*
435 * Update SCI information in the ELCR, it isn't in the PCI
436 * routing tables..
437 */
438 switch (trigger) {
Len Brown4be44fc2005-08-05 00:44:28 -0400439 case 1: /* Edge - clear */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 new &= ~mask;
441 break;
Len Brown4be44fc2005-08-05 00:44:28 -0400442 case 3: /* Level - set */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 new |= mask;
444 break;
445 }
446
447 if (old == new)
448 return;
449
450 printk(PREFIX "setting ELCR to %04x (from %04x)\n", new, old);
451 outb(new, 0x4d0);
452 outb(new >> 8, 0x4d1);
453}
454
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455int acpi_gsi_to_irq(u32 gsi, unsigned int *irq)
456{
457#ifdef CONFIG_X86_IO_APIC
458 if (use_pci_vector() && !platform_legacy_irq(gsi))
Len Brown4be44fc2005-08-05 00:44:28 -0400459 *irq = IO_APIC_VECTOR(gsi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 else
461#endif
462 *irq = gsi;
463 return 0;
464}
465
Kenji Kaneshige1f3a6a12005-07-28 14:42:00 -0400466/*
467 * success: return IRQ number (>=0)
468 * failure: return < 0
469 */
470int acpi_register_gsi(u32 gsi, int edge_level, int active_high_low)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471{
472 unsigned int irq;
473 unsigned int plat_gsi = gsi;
474
475#ifdef CONFIG_PCI
476 /*
477 * Make sure all (legacy) PCI IRQs are set as level-triggered.
478 */
479 if (acpi_irq_model == ACPI_IRQ_MODEL_PIC) {
480 extern void eisa_set_level_irq(unsigned int irq);
481
482 if (edge_level == ACPI_LEVEL_SENSITIVE)
Len Brown4be44fc2005-08-05 00:44:28 -0400483 eisa_set_level_irq(gsi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 }
485#endif
486
487#ifdef CONFIG_X86_IO_APIC
488 if (acpi_irq_model == ACPI_IRQ_MODEL_IOAPIC) {
489 plat_gsi = mp_register_gsi(gsi, edge_level, active_high_low);
490 }
491#endif
492 acpi_gsi_to_irq(plat_gsi, &irq);
493 return irq;
494}
Len Brown4be44fc2005-08-05 00:44:28 -0400495
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496EXPORT_SYMBOL(acpi_register_gsi);
497
498/*
499 * ACPI based hotplug support for CPU
500 */
501#ifdef CONFIG_ACPI_HOTPLUG_CPU
Len Brown4be44fc2005-08-05 00:44:28 -0400502int acpi_map_lsapic(acpi_handle handle, int *pcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503{
504 /* TBD */
505 return -EINVAL;
506}
Len Brown4be44fc2005-08-05 00:44:28 -0400507
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508EXPORT_SYMBOL(acpi_map_lsapic);
509
Len Brown4be44fc2005-08-05 00:44:28 -0400510int acpi_unmap_lsapic(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511{
512 /* TBD */
513 return -EINVAL;
514}
Len Brown4be44fc2005-08-05 00:44:28 -0400515
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516EXPORT_SYMBOL(acpi_unmap_lsapic);
Len Brown4be44fc2005-08-05 00:44:28 -0400517#endif /* CONFIG_ACPI_HOTPLUG_CPU */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
Len Brown4be44fc2005-08-05 00:44:28 -0400519int acpi_register_ioapic(acpi_handle handle, u64 phys_addr, u32 gsi_base)
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700520{
521 /* TBD */
522 return -EINVAL;
523}
Len Brown4be44fc2005-08-05 00:44:28 -0400524
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700525EXPORT_SYMBOL(acpi_register_ioapic);
526
Len Brown4be44fc2005-08-05 00:44:28 -0400527int acpi_unregister_ioapic(acpi_handle handle, u32 gsi_base)
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700528{
529 /* TBD */
530 return -EINVAL;
531}
Len Brown4be44fc2005-08-05 00:44:28 -0400532
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700533EXPORT_SYMBOL(acpi_unregister_ioapic);
534
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535static unsigned long __init
Len Brown4be44fc2005-08-05 00:44:28 -0400536acpi_scan_rsdp(unsigned long start, unsigned long length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537{
Len Brown4be44fc2005-08-05 00:44:28 -0400538 unsigned long offset = 0;
539 unsigned long sig_len = sizeof("RSD PTR ") - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
541 /*
542 * Scan all 16-byte boundaries of the physical memory region for the
543 * RSDP signature.
544 */
545 for (offset = 0; offset < length; offset += 16) {
Len Brown4be44fc2005-08-05 00:44:28 -0400546 if (strncmp((char *)(start + offset), "RSD PTR ", sig_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 continue;
548 return (start + offset);
549 }
550
551 return 0;
552}
553
554static int __init acpi_parse_sbf(unsigned long phys_addr, unsigned long size)
555{
556 struct acpi_table_sbf *sb;
557
558 if (!phys_addr || !size)
Len Brown4be44fc2005-08-05 00:44:28 -0400559 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
Len Brown4be44fc2005-08-05 00:44:28 -0400561 sb = (struct acpi_table_sbf *)__acpi_map_table(phys_addr, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 if (!sb) {
563 printk(KERN_WARNING PREFIX "Unable to map SBF\n");
564 return -ENODEV;
565 }
566
Len Brown4be44fc2005-08-05 00:44:28 -0400567 sbf_port = sb->sbf_cmos; /* Save CMOS port */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
569 return 0;
570}
571
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572#ifdef CONFIG_HPET_TIMER
573
574static int __init acpi_parse_hpet(unsigned long phys, unsigned long size)
575{
576 struct acpi_table_hpet *hpet_tbl;
577
578 if (!phys || !size)
579 return -EINVAL;
580
Len Brown4be44fc2005-08-05 00:44:28 -0400581 hpet_tbl = (struct acpi_table_hpet *)__acpi_map_table(phys, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 if (!hpet_tbl) {
583 printk(KERN_WARNING PREFIX "Unable to map HPET\n");
584 return -ENODEV;
585 }
586
587 if (hpet_tbl->addr.space_id != ACPI_SPACE_MEM) {
588 printk(KERN_WARNING PREFIX "HPET timers must be located in "
589 "memory.\n");
590 return -1;
591 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592#ifdef CONFIG_X86_64
Len Brown4be44fc2005-08-05 00:44:28 -0400593 vxtime.hpet_address = hpet_tbl->addr.addrl |
594 ((long)hpet_tbl->addr.addrh << 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Len Brown4be44fc2005-08-05 00:44:28 -0400596 printk(KERN_INFO PREFIX "HPET id: %#x base: %#lx\n",
597 hpet_tbl->id, vxtime.hpet_address);
598#else /* X86 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 {
600 extern unsigned long hpet_address;
601
602 hpet_address = hpet_tbl->addr.addrl;
603 printk(KERN_INFO PREFIX "HPET id: %#x base: %#lx\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400604 hpet_tbl->id, hpet_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 }
Len Brown4be44fc2005-08-05 00:44:28 -0400606#endif /* X86 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
608 return 0;
609}
610#else
611#define acpi_parse_hpet NULL
612#endif
613
614#ifdef CONFIG_X86_PM_TIMER
615extern u32 pmtmr_ioport;
616#endif
617
618static int __init acpi_parse_fadt(unsigned long phys, unsigned long size)
619{
620 struct fadt_descriptor_rev2 *fadt = NULL;
621
Len Brown4be44fc2005-08-05 00:44:28 -0400622 fadt = (struct fadt_descriptor_rev2 *)__acpi_map_table(phys, size);
623 if (!fadt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 printk(KERN_WARNING PREFIX "Unable to map FADT\n");
625 return 0;
626 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 /* initialize sci_int early for INT_SRC_OVR MADT parsing */
628 acpi_fadt.sci_int = fadt->sci_int;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
Jason Davis90660ec2005-04-16 15:24:53 -0700630 /* initialize rev and apic_phys_dest_mode for x86_64 genapic */
631 acpi_fadt.revision = fadt->revision;
Len Brown4be44fc2005-08-05 00:44:28 -0400632 acpi_fadt.force_apic_physical_destination_mode =
633 fadt->force_apic_physical_destination_mode;
Jason Davis90660ec2005-04-16 15:24:53 -0700634
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635#ifdef CONFIG_X86_PM_TIMER
636 /* detect the location of the ACPI PM Timer */
637 if (fadt->revision >= FADT2_REVISION_ID) {
638 /* FADT rev. 2 */
Len Brown4be44fc2005-08-05 00:44:28 -0400639 if (fadt->xpm_tmr_blk.address_space_id !=
640 ACPI_ADR_SPACE_SYSTEM_IO)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 return 0;
642
643 pmtmr_ioport = fadt->xpm_tmr_blk.address;
644 } else {
645 /* FADT rev. 1 */
646 pmtmr_ioport = fadt->V1_pm_tmr_blk;
647 }
648 if (pmtmr_ioport)
Len Brown4be44fc2005-08-05 00:44:28 -0400649 printk(KERN_INFO PREFIX "PM-Timer IO Port: %#x\n",
650 pmtmr_ioport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651#endif
652 return 0;
653}
654
Len Brown4be44fc2005-08-05 00:44:28 -0400655unsigned long __init acpi_find_rsdp(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656{
Len Brown4be44fc2005-08-05 00:44:28 -0400657 unsigned long rsdp_phys = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
659 if (efi_enabled) {
660 if (efi.acpi20)
661 return __pa(efi.acpi20);
662 else if (efi.acpi)
663 return __pa(efi.acpi);
664 }
665 /*
666 * Scan memory looking for the RSDP signature. First search EBDA (low
667 * memory) paragraphs and then search upper memory (E0000-FFFFF).
668 */
Len Brown4be44fc2005-08-05 00:44:28 -0400669 rsdp_phys = acpi_scan_rsdp(0, 0x400);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 if (!rsdp_phys)
Len Brown4be44fc2005-08-05 00:44:28 -0400671 rsdp_phys = acpi_scan_rsdp(0xE0000, 0x20000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
673 return rsdp_phys;
674}
675
676#ifdef CONFIG_X86_LOCAL_APIC
677/*
678 * Parse LAPIC entries in MADT
679 * returns 0 on success, < 0 on error
680 */
Len Brown4be44fc2005-08-05 00:44:28 -0400681static int __init acpi_parse_madt_lapic_entries(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682{
683 int count;
684
685 /*
686 * Note that the LAPIC address is obtained from the MADT (32-bit value)
687 * and (optionally) overriden by a LAPIC_ADDR_OVR entry (64-bit value).
688 */
689
Len Brown4be44fc2005-08-05 00:44:28 -0400690 count =
691 acpi_table_parse_madt(ACPI_MADT_LAPIC_ADDR_OVR,
692 acpi_parse_lapic_addr_ovr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 if (count < 0) {
Len Brown4be44fc2005-08-05 00:44:28 -0400694 printk(KERN_ERR PREFIX
695 "Error parsing LAPIC address override entry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 return count;
697 }
698
699 mp_register_lapic_address(acpi_lapic_addr);
700
701 count = acpi_table_parse_madt(ACPI_MADT_LAPIC, acpi_parse_lapic,
Len Brown4be44fc2005-08-05 00:44:28 -0400702 MAX_APICS);
703 if (!count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 printk(KERN_ERR PREFIX "No LAPIC entries present\n");
705 /* TBD: Cleanup to allow fallback to MPS */
706 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400707 } else if (count < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 printk(KERN_ERR PREFIX "Error parsing LAPIC entry\n");
709 /* TBD: Cleanup to allow fallback to MPS */
710 return count;
711 }
712
Len Brown4be44fc2005-08-05 00:44:28 -0400713 count =
714 acpi_table_parse_madt(ACPI_MADT_LAPIC_NMI, acpi_parse_lapic_nmi, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 if (count < 0) {
716 printk(KERN_ERR PREFIX "Error parsing LAPIC NMI entry\n");
717 /* TBD: Cleanup to allow fallback to MPS */
718 return count;
719 }
720 return 0;
721}
Len Brown4be44fc2005-08-05 00:44:28 -0400722#endif /* CONFIG_X86_LOCAL_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
Len Brown84663612005-08-24 12:09:07 -0400724#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725/*
726 * Parse IOAPIC related entries in MADT
727 * returns 0 on success, < 0 on error
728 */
Len Brown4be44fc2005-08-05 00:44:28 -0400729static int __init acpi_parse_madt_ioapic_entries(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730{
731 int count;
732
733 /*
734 * ACPI interpreter is required to complete interrupt setup,
735 * so if it is off, don't enumerate the io-apics with ACPI.
736 * If MPS is present, it will handle them,
737 * otherwise the system will stay in PIC mode
738 */
739 if (acpi_disabled || acpi_noirq) {
740 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400741 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
743 /*
Len Brown4be44fc2005-08-05 00:44:28 -0400744 * if "noapic" boot option, don't look for IO-APICs
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 */
746 if (skip_ioapic_setup) {
747 printk(KERN_INFO PREFIX "Skipping IOAPIC probe "
Len Brown4be44fc2005-08-05 00:44:28 -0400748 "due to 'noapic' option.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 return -ENODEV;
750 }
751
Len Brown4be44fc2005-08-05 00:44:28 -0400752 count =
753 acpi_table_parse_madt(ACPI_MADT_IOAPIC, acpi_parse_ioapic,
754 MAX_IO_APICS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 if (!count) {
756 printk(KERN_ERR PREFIX "No IOAPIC entries present\n");
757 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400758 } else if (count < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 printk(KERN_ERR PREFIX "Error parsing IOAPIC entry\n");
760 return count;
761 }
762
Len Brown4be44fc2005-08-05 00:44:28 -0400763 count =
764 acpi_table_parse_madt(ACPI_MADT_INT_SRC_OVR, acpi_parse_int_src_ovr,
765 NR_IRQ_VECTORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 if (count < 0) {
Len Brown4be44fc2005-08-05 00:44:28 -0400767 printk(KERN_ERR PREFIX
768 "Error parsing interrupt source overrides entry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 /* TBD: Cleanup to allow fallback to MPS */
770 return count;
771 }
772
773 /*
774 * If BIOS did not supply an INT_SRC_OVR for the SCI
775 * pretend we got one so we can set the SCI flags.
776 */
777 if (!acpi_sci_override_gsi)
778 acpi_sci_ioapic_setup(acpi_fadt.sci_int, 0, 0);
779
780 /* Fill in identity legacy mapings where no override */
781 mp_config_acpi_legacy_irqs();
782
Len Brown4be44fc2005-08-05 00:44:28 -0400783 count =
784 acpi_table_parse_madt(ACPI_MADT_NMI_SRC, acpi_parse_nmi_src,
785 NR_IRQ_VECTORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 if (count < 0) {
787 printk(KERN_ERR PREFIX "Error parsing NMI SRC entry\n");
788 /* TBD: Cleanup to allow fallback to MPS */
789 return count;
790 }
791
792 return 0;
793}
794#else
795static inline int acpi_parse_madt_ioapic_entries(void)
796{
797 return -1;
798}
Len Brown84663612005-08-24 12:09:07 -0400799#endif /* !CONFIG_X86_IO_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
Len Brown4be44fc2005-08-05 00:44:28 -0400801static void __init acpi_process_madt(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802{
803#ifdef CONFIG_X86_LOCAL_APIC
804 int count, error;
805
806 count = acpi_table_parse(ACPI_APIC, acpi_parse_madt);
807 if (count >= 1) {
808
809 /*
810 * Parse MADT LAPIC entries
811 */
812 error = acpi_parse_madt_lapic_entries();
813 if (!error) {
814 acpi_lapic = 1;
815
Venkatesh Pallipadi911a62d2005-09-03 15:56:31 -0700816#ifdef CONFIG_X86_GENERICARCH
817 generic_bigsmp_probe();
818#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 /*
820 * Parse MADT IO-APIC entries
821 */
822 error = acpi_parse_madt_ioapic_entries();
823 if (!error) {
824 acpi_irq_model = ACPI_IRQ_MODEL_IOAPIC;
825 acpi_irq_balance_set(NULL);
826 acpi_ioapic = 1;
827
828 smp_found_config = 1;
829 clustered_apic_check();
830 }
831 }
832 if (error == -EINVAL) {
833 /*
834 * Dell Precision Workstation 410, 610 come here.
835 */
Len Brown4be44fc2005-08-05 00:44:28 -0400836 printk(KERN_ERR PREFIX
837 "Invalid BIOS MADT, disabling ACPI\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 disable_acpi();
839 }
840 }
841#endif
842 return;
843}
844
Andrey Paninaea00142005-06-25 14:54:42 -0700845extern int acpi_force;
846
847#ifdef __i386__
848
Andrey Paninaea00142005-06-25 14:54:42 -0700849static int __init disable_acpi_irq(struct dmi_system_id *d)
850{
851 if (!acpi_force) {
852 printk(KERN_NOTICE "%s detected: force use of acpi=noirq\n",
853 d->ident);
854 acpi_noirq_set();
855 }
856 return 0;
857}
858
859static int __init disable_acpi_pci(struct dmi_system_id *d)
860{
861 if (!acpi_force) {
862 printk(KERN_NOTICE "%s detected: force use of pci=noacpi\n",
863 d->ident);
864 acpi_disable_pci();
865 }
866 return 0;
867}
Andrey Paninaea00142005-06-25 14:54:42 -0700868
869static int __init dmi_disable_acpi(struct dmi_system_id *d)
870{
871 if (!acpi_force) {
Len Brown4be44fc2005-08-05 00:44:28 -0400872 printk(KERN_NOTICE "%s detected: acpi off\n", d->ident);
Andrey Paninaea00142005-06-25 14:54:42 -0700873 disable_acpi();
874 } else {
875 printk(KERN_NOTICE
876 "Warning: DMI blacklist says broken, but acpi forced\n");
877 }
878 return 0;
879}
880
881/*
882 * Limit ACPI to CPU enumeration for HT
883 */
884static int __init force_acpi_ht(struct dmi_system_id *d)
885{
886 if (!acpi_force) {
Len Brown4be44fc2005-08-05 00:44:28 -0400887 printk(KERN_NOTICE "%s detected: force use of acpi=ht\n",
888 d->ident);
Andrey Paninaea00142005-06-25 14:54:42 -0700889 disable_acpi();
890 acpi_ht = 1;
891 } else {
892 printk(KERN_NOTICE
893 "Warning: acpi=force overrules DMI blacklist: acpi=ht\n");
894 }
895 return 0;
896}
897
898/*
899 * If your system is blacklisted here, but you find that acpi=force
900 * works for you, please contact acpi-devel@sourceforge.net
901 */
902static struct dmi_system_id __initdata acpi_dmi_table[] = {
903 /*
904 * Boxes that need ACPI disabled
905 */
906 {
Len Brown4be44fc2005-08-05 00:44:28 -0400907 .callback = dmi_disable_acpi,
908 .ident = "IBM Thinkpad",
909 .matches = {
910 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
911 DMI_MATCH(DMI_BOARD_NAME, "2629H1G"),
912 },
913 },
Andrey Paninaea00142005-06-25 14:54:42 -0700914
915 /*
916 * Boxes that need acpi=ht
917 */
918 {
Len Brown4be44fc2005-08-05 00:44:28 -0400919 .callback = force_acpi_ht,
920 .ident = "FSC Primergy T850",
921 .matches = {
922 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
923 DMI_MATCH(DMI_PRODUCT_NAME, "PRIMERGY T850"),
924 },
925 },
Andrey Paninaea00142005-06-25 14:54:42 -0700926 {
Len Brown4be44fc2005-08-05 00:44:28 -0400927 .callback = force_acpi_ht,
928 .ident = "DELL GX240",
929 .matches = {
930 DMI_MATCH(DMI_BOARD_VENDOR, "Dell Computer Corporation"),
931 DMI_MATCH(DMI_BOARD_NAME, "OptiPlex GX240"),
932 },
933 },
Andrey Paninaea00142005-06-25 14:54:42 -0700934 {
Len Brown4be44fc2005-08-05 00:44:28 -0400935 .callback = force_acpi_ht,
936 .ident = "HP VISUALIZE NT Workstation",
937 .matches = {
938 DMI_MATCH(DMI_BOARD_VENDOR, "Hewlett-Packard"),
939 DMI_MATCH(DMI_PRODUCT_NAME, "HP VISUALIZE NT Workstation"),
940 },
941 },
Andrey Paninaea00142005-06-25 14:54:42 -0700942 {
Len Brown4be44fc2005-08-05 00:44:28 -0400943 .callback = force_acpi_ht,
944 .ident = "Compaq Workstation W8000",
945 .matches = {
946 DMI_MATCH(DMI_SYS_VENDOR, "Compaq"),
947 DMI_MATCH(DMI_PRODUCT_NAME, "Workstation W8000"),
948 },
949 },
Andrey Paninaea00142005-06-25 14:54:42 -0700950 {
Len Brown4be44fc2005-08-05 00:44:28 -0400951 .callback = force_acpi_ht,
952 .ident = "ASUS P4B266",
953 .matches = {
954 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
955 DMI_MATCH(DMI_BOARD_NAME, "P4B266"),
956 },
957 },
Andrey Paninaea00142005-06-25 14:54:42 -0700958 {
Len Brown4be44fc2005-08-05 00:44:28 -0400959 .callback = force_acpi_ht,
960 .ident = "ASUS P2B-DS",
961 .matches = {
962 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
963 DMI_MATCH(DMI_BOARD_NAME, "P2B-DS"),
964 },
965 },
Andrey Paninaea00142005-06-25 14:54:42 -0700966 {
Len Brown4be44fc2005-08-05 00:44:28 -0400967 .callback = force_acpi_ht,
968 .ident = "ASUS CUR-DLS",
969 .matches = {
970 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
971 DMI_MATCH(DMI_BOARD_NAME, "CUR-DLS"),
972 },
973 },
Andrey Paninaea00142005-06-25 14:54:42 -0700974 {
Len Brown4be44fc2005-08-05 00:44:28 -0400975 .callback = force_acpi_ht,
976 .ident = "ABIT i440BX-W83977",
977 .matches = {
978 DMI_MATCH(DMI_BOARD_VENDOR, "ABIT <http://www.abit.com>"),
979 DMI_MATCH(DMI_BOARD_NAME, "i440BX-W83977 (BP6)"),
980 },
981 },
Andrey Paninaea00142005-06-25 14:54:42 -0700982 {
Len Brown4be44fc2005-08-05 00:44:28 -0400983 .callback = force_acpi_ht,
984 .ident = "IBM Bladecenter",
985 .matches = {
986 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
987 DMI_MATCH(DMI_BOARD_NAME, "IBM eServer BladeCenter HS20"),
988 },
989 },
Andrey Paninaea00142005-06-25 14:54:42 -0700990 {
Len Brown4be44fc2005-08-05 00:44:28 -0400991 .callback = force_acpi_ht,
992 .ident = "IBM eServer xSeries 360",
993 .matches = {
994 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
995 DMI_MATCH(DMI_BOARD_NAME, "eServer xSeries 360"),
996 },
997 },
Andrey Paninaea00142005-06-25 14:54:42 -0700998 {
Len Brown4be44fc2005-08-05 00:44:28 -0400999 .callback = force_acpi_ht,
1000 .ident = "IBM eserver xSeries 330",
1001 .matches = {
1002 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1003 DMI_MATCH(DMI_BOARD_NAME, "eserver xSeries 330"),
1004 },
1005 },
Andrey Paninaea00142005-06-25 14:54:42 -07001006 {
Len Brown4be44fc2005-08-05 00:44:28 -04001007 .callback = force_acpi_ht,
1008 .ident = "IBM eserver xSeries 440",
1009 .matches = {
1010 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1011 DMI_MATCH(DMI_PRODUCT_NAME, "eserver xSeries 440"),
1012 },
1013 },
Andrey Paninaea00142005-06-25 14:54:42 -07001014
Andrey Paninaea00142005-06-25 14:54:42 -07001015 /*
1016 * Boxes that need ACPI PCI IRQ routing disabled
1017 */
1018 {
Len Brown4be44fc2005-08-05 00:44:28 -04001019 .callback = disable_acpi_irq,
1020 .ident = "ASUS A7V",
1021 .matches = {
1022 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC"),
1023 DMI_MATCH(DMI_BOARD_NAME, "<A7V>"),
1024 /* newer BIOS, Revision 1011, does work */
1025 DMI_MATCH(DMI_BIOS_VERSION,
1026 "ASUS A7V ACPI BIOS Revision 1007"),
1027 },
1028 },
Andrey Paninaea00142005-06-25 14:54:42 -07001029
1030 /*
1031 * Boxes that need ACPI PCI IRQ routing and PCI scan disabled
1032 */
Len Brown4be44fc2005-08-05 00:44:28 -04001033 { /* _BBN 0 bug */
1034 .callback = disable_acpi_pci,
1035 .ident = "ASUS PR-DLS",
1036 .matches = {
1037 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1038 DMI_MATCH(DMI_BOARD_NAME, "PR-DLS"),
1039 DMI_MATCH(DMI_BIOS_VERSION,
1040 "ASUS PR-DLS ACPI BIOS Revision 1010"),
1041 DMI_MATCH(DMI_BIOS_DATE, "03/21/2003")
1042 },
1043 },
Andrey Paninaea00142005-06-25 14:54:42 -07001044 {
Len Brown4be44fc2005-08-05 00:44:28 -04001045 .callback = disable_acpi_pci,
1046 .ident = "Acer TravelMate 36x Laptop",
1047 .matches = {
1048 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
1049 DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 360"),
1050 },
1051 },
Len Brown4be44fc2005-08-05 00:44:28 -04001052 {}
Andrey Paninaea00142005-06-25 14:54:42 -07001053};
1054
Len Brown4be44fc2005-08-05 00:44:28 -04001055#endif /* __i386__ */
Andrey Paninaea00142005-06-25 14:54:42 -07001056
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057/*
1058 * acpi_boot_table_init() and acpi_boot_init()
1059 * called from setup_arch(), always.
1060 * 1. checksums all tables
1061 * 2. enumerates lapics
1062 * 3. enumerates io-apics
1063 *
1064 * acpi_table_init() is separate to allow reading SRAT without
1065 * other side effects.
1066 *
1067 * side effects of acpi_boot_init:
1068 * acpi_lapic = 1 if LAPIC found
1069 * acpi_ioapic = 1 if IOAPIC found
1070 * if (acpi_lapic && acpi_ioapic) smp_found_config = 1;
1071 * if acpi_blacklisted() acpi_disabled = 1;
1072 * acpi_irq_model=...
1073 * ...
1074 *
1075 * return value: (currently ignored)
1076 * 0: success
1077 * !0: failure
1078 */
1079
Len Brown4be44fc2005-08-05 00:44:28 -04001080int __init acpi_boot_table_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081{
1082 int error;
1083
Andrey Paninaea00142005-06-25 14:54:42 -07001084#ifdef __i386__
1085 dmi_check_system(acpi_dmi_table);
1086#endif
1087
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 /*
1089 * If acpi_disabled, bail out
1090 * One exception: acpi=ht continues far enough to enumerate LAPICs
1091 */
1092 if (acpi_disabled && !acpi_ht)
Len Brown4be44fc2005-08-05 00:44:28 -04001093 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
1095 /*
1096 * Initialize the ACPI boot-time table parser.
1097 */
1098 error = acpi_table_init();
1099 if (error) {
1100 disable_acpi();
1101 return error;
1102 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103#ifdef __i386__
1104 check_acpi_pci();
1105#endif
1106
1107 acpi_table_parse(ACPI_BOOT, acpi_parse_sbf);
1108
1109 /*
1110 * blacklist may disable ACPI entirely
1111 */
1112 error = acpi_blacklisted();
1113 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 if (acpi_force) {
1115 printk(KERN_WARNING PREFIX "acpi=force override\n");
1116 } else {
1117 printk(KERN_WARNING PREFIX "Disabling ACPI support\n");
1118 disable_acpi();
1119 return error;
1120 }
1121 }
1122
1123 return 0;
1124}
1125
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126int __init acpi_boot_init(void)
1127{
1128 /*
1129 * If acpi_disabled, bail out
1130 * One exception: acpi=ht continues far enough to enumerate LAPICs
1131 */
1132 if (acpi_disabled && !acpi_ht)
Len Brown4be44fc2005-08-05 00:44:28 -04001133 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134
1135 acpi_table_parse(ACPI_BOOT, acpi_parse_sbf);
1136
1137 /*
1138 * set sci_int and PM timer address
1139 */
1140 acpi_table_parse(ACPI_FADT, acpi_parse_fadt);
1141
1142 /*
1143 * Process the Multiple APIC Description Table (MADT), if present
1144 */
1145 acpi_process_madt();
1146
1147 acpi_table_parse(ACPI_HPET, acpi_parse_hpet);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
1149 return 0;
1150}