blob: a63351c085c66dceeafb990ba75214963fad1cea [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>
30#include <linux/irq.h>
31#include <linux/module.h>
Andrey Paninaea00142005-06-25 14:54:42 -070032#include <linux/dmi.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>
38#include <asm/irq.h>
39#include <asm/mpspec.h>
40
41#ifdef CONFIG_X86_64
42
Len Brown4be44fc2005-08-05 00:44:28 -040043static inline void acpi_madt_oem_check(char *oem_id, char *oem_table_id)
44{
45}
Linus Torvalds1da177e2005-04-16 15:20:36 -070046extern void __init clustered_apic_check(void);
Len Brown4be44fc2005-08-05 00:44:28 -040047static inline int ioapic_setup_disabled(void)
48{
49 return 0;
50}
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <asm/proto.h>
53
Len Brown4be44fc2005-08-05 00:44:28 -040054#else /* X86 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56#ifdef CONFIG_X86_LOCAL_APIC
57#include <mach_apic.h>
58#include <mach_mpparse.h>
Len Brown4be44fc2005-08-05 00:44:28 -040059#endif /* CONFIG_X86_LOCAL_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Len Brown4be44fc2005-08-05 00:44:28 -040061#endif /* X86 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63#define BAD_MADT_ENTRY(entry, end) ( \
64 (!entry) || (unsigned long)entry + sizeof(*entry) > end || \
65 ((acpi_table_entry_header *)entry)->length != sizeof(*entry))
66
67#define PREFIX "ACPI: "
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069int acpi_noirq __initdata; /* skip ACPI IRQ initialization */
Len Brown4be44fc2005-08-05 00:44:28 -040070int acpi_pci_disabled __initdata; /* skip ACPI PCI scan and IRQ initialization */
Linus Torvalds1da177e2005-04-16 15:20:36 -070071int acpi_ht __initdata = 1; /* enable HT */
72
73int acpi_lapic;
74int acpi_ioapic;
75int acpi_strict;
76EXPORT_SYMBOL(acpi_strict);
77
78acpi_interrupt_flags acpi_sci_flags __initdata;
79int acpi_sci_override_gsi __initdata;
80int acpi_skip_timer_override __initdata;
81
82#ifdef CONFIG_X86_LOCAL_APIC
83static u64 acpi_lapic_addr __initdata = APIC_DEFAULT_PHYS_BASE;
84#endif
85
86#ifndef __HAVE_ARCH_CMPXCHG
87#warning ACPI uses CMPXCHG, i486 and later hardware
88#endif
89
90#define MAX_MADT_ENTRIES 256
91u8 x86_acpiid_to_apicid[MAX_MADT_ENTRIES] =
Len Brown1f3a7302005-08-05 03:33:14 -040092 {[0 ... MAX_MADT_ENTRIES - 1] = 0xff };
Linus Torvalds1da177e2005-04-16 15:20:36 -070093EXPORT_SYMBOL(x86_acpiid_to_apicid);
94
95/* --------------------------------------------------------------------------
96 Boot-time Configuration
97 -------------------------------------------------------------------------- */
98
99/*
100 * The default interrupt routing model is PIC (8259). This gets
101 * overriden if IOAPICs are enumerated (below).
102 */
Len Brown4be44fc2005-08-05 00:44:28 -0400103enum acpi_irq_model_id acpi_irq_model = ACPI_IRQ_MODEL_PIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
105#ifdef CONFIG_X86_64
106
107/* rely on all ACPI tables being in the direct mapping */
108char *__acpi_map_table(unsigned long phys_addr, unsigned long size)
109{
110 if (!phys_addr || !size)
Len Brown4be44fc2005-08-05 00:44:28 -0400111 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
113 if (phys_addr < (end_pfn_map << PAGE_SHIFT))
114 return __va(phys_addr);
115
116 return NULL;
117}
118
119#else
120
121/*
122 * Temporarily use the virtual area starting from FIX_IO_APIC_BASE_END,
123 * to map the target physical address. The problem is that set_fixmap()
124 * provides a single page, and it is possible that the page is not
125 * sufficient.
126 * By using this area, we can map up to MAX_IO_APICS pages temporarily,
127 * i.e. until the next __va_range() call.
128 *
129 * Important Safety Note: The fixed I/O APIC page numbers are *subtracted*
130 * from the fixed base. That's why we start at FIX_IO_APIC_BASE_END and
131 * count idx down while incrementing the phys address.
132 */
133char *__acpi_map_table(unsigned long phys, unsigned long size)
134{
135 unsigned long base, offset, mapped_size;
136 int idx;
137
Len Brown4be44fc2005-08-05 00:44:28 -0400138 if (phys + size < 8 * 1024 * 1024)
139 return __va(phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
141 offset = phys & (PAGE_SIZE - 1);
142 mapped_size = PAGE_SIZE - offset;
143 set_fixmap(FIX_ACPI_END, phys);
144 base = fix_to_virt(FIX_ACPI_END);
145
146 /*
147 * Most cases can be covered by the below.
148 */
149 idx = FIX_ACPI_END;
150 while (mapped_size < size) {
151 if (--idx < FIX_ACPI_BEGIN)
152 return NULL; /* cannot handle this */
153 phys += PAGE_SIZE;
154 set_fixmap(idx, phys);
155 mapped_size += PAGE_SIZE;
156 }
157
Len Brown4be44fc2005-08-05 00:44:28 -0400158 return ((unsigned char *)base + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159}
160#endif
161
162#ifdef CONFIG_PCI_MMCONFIG
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700163/* The physical address of the MMCONFIG aperture. Set from ACPI tables. */
164struct acpi_table_mcfg_config *pci_mmcfg_config;
165int pci_mmcfg_config_num;
166
167int __init acpi_parse_mcfg(unsigned long phys_addr, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168{
169 struct acpi_table_mcfg *mcfg;
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700170 unsigned long i;
171 int config_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173 if (!phys_addr || !size)
174 return -EINVAL;
175
Len Brown4be44fc2005-08-05 00:44:28 -0400176 mcfg = (struct acpi_table_mcfg *)__acpi_map_table(phys_addr, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 if (!mcfg) {
178 printk(KERN_WARNING PREFIX "Unable to map MCFG\n");
179 return -ENODEV;
180 }
181
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700182 /* how many config structures do we have */
183 pci_mmcfg_config_num = 0;
184 i = size - sizeof(struct acpi_table_mcfg);
185 while (i >= sizeof(struct acpi_table_mcfg_config)) {
186 ++pci_mmcfg_config_num;
187 i -= sizeof(struct acpi_table_mcfg_config);
188 };
189 if (pci_mmcfg_config_num == 0) {
190 printk(KERN_ERR PREFIX "MMCONFIG has no entries\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 return -ENODEV;
192 }
193
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700194 config_size = pci_mmcfg_config_num * sizeof(*pci_mmcfg_config);
195 pci_mmcfg_config = kmalloc(config_size, GFP_KERNEL);
196 if (!pci_mmcfg_config) {
197 printk(KERN_WARNING PREFIX
198 "No memory for MCFG config tables\n");
199 return -ENOMEM;
200 }
201
202 memcpy(pci_mmcfg_config, &mcfg->config, config_size);
203 for (i = 0; i < pci_mmcfg_config_num; ++i) {
204 if (mcfg->config[i].base_reserved) {
205 printk(KERN_ERR PREFIX
206 "MMCONFIG not in low 4GB of memory\n");
207 return -ENODEV;
208 }
209 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
211 return 0;
212}
Len Brown4be44fc2005-08-05 00:44:28 -0400213#endif /* CONFIG_PCI_MMCONFIG */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
215#ifdef CONFIG_X86_LOCAL_APIC
Len Brown4be44fc2005-08-05 00:44:28 -0400216static int __init acpi_parse_madt(unsigned long phys_addr, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217{
Len Brown4be44fc2005-08-05 00:44:28 -0400218 struct acpi_table_madt *madt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220 if (!phys_addr || !size)
221 return -EINVAL;
222
Len Brown4be44fc2005-08-05 00:44:28 -0400223 madt = (struct acpi_table_madt *)__acpi_map_table(phys_addr, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 if (!madt) {
225 printk(KERN_WARNING PREFIX "Unable to map MADT\n");
226 return -ENODEV;
227 }
228
229 if (madt->lapic_address) {
230 acpi_lapic_addr = (u64) madt->lapic_address;
231
232 printk(KERN_DEBUG PREFIX "Local APIC address 0x%08x\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400233 madt->lapic_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 }
235
236 acpi_madt_oem_check(madt->header.oem_id, madt->header.oem_table_id);
Len Brown4be44fc2005-08-05 00:44:28 -0400237
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 return 0;
239}
240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241static int __init
Len Brown4be44fc2005-08-05 00:44:28 -0400242acpi_parse_lapic(acpi_table_entry_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243{
Len Brown4be44fc2005-08-05 00:44:28 -0400244 struct acpi_table_lapic *processor = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Len Brown4be44fc2005-08-05 00:44:28 -0400246 processor = (struct acpi_table_lapic *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
248 if (BAD_MADT_ENTRY(processor, end))
249 return -EINVAL;
250
251 acpi_table_print_madt_entry(header);
252
253 /* no utility in registering a disabled processor */
254 if (processor->flags.enabled == 0)
255 return 0;
256
257 x86_acpiid_to_apicid[processor->acpi_id] = processor->id;
258
Len Brown4be44fc2005-08-05 00:44:28 -0400259 mp_register_lapic(processor->id, /* APIC ID */
260 processor->flags.enabled); /* Enabled? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
262 return 0;
263}
264
265static int __init
Len Brown4be44fc2005-08-05 00:44:28 -0400266acpi_parse_lapic_addr_ovr(acpi_table_entry_header * header,
267 const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
269 struct acpi_table_lapic_addr_ovr *lapic_addr_ovr = NULL;
270
Len Brown4be44fc2005-08-05 00:44:28 -0400271 lapic_addr_ovr = (struct acpi_table_lapic_addr_ovr *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
273 if (BAD_MADT_ENTRY(lapic_addr_ovr, end))
274 return -EINVAL;
275
276 acpi_lapic_addr = lapic_addr_ovr->address;
277
278 return 0;
279}
280
281static int __init
Len Brown4be44fc2005-08-05 00:44:28 -0400282acpi_parse_lapic_nmi(acpi_table_entry_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283{
284 struct acpi_table_lapic_nmi *lapic_nmi = NULL;
285
Len Brown4be44fc2005-08-05 00:44:28 -0400286 lapic_nmi = (struct acpi_table_lapic_nmi *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288 if (BAD_MADT_ENTRY(lapic_nmi, end))
289 return -EINVAL;
290
291 acpi_table_print_madt_entry(header);
292
293 if (lapic_nmi->lint != 1)
294 printk(KERN_WARNING PREFIX "NMI not connected to LINT 1!\n");
295
296 return 0;
297}
298
Len Brown4be44fc2005-08-05 00:44:28 -0400299#endif /*CONFIG_X86_LOCAL_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Len Brown84663612005-08-24 12:09:07 -0400301#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
303static int __init
Len Brown4be44fc2005-08-05 00:44:28 -0400304acpi_parse_ioapic(acpi_table_entry_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305{
306 struct acpi_table_ioapic *ioapic = NULL;
307
Len Brown4be44fc2005-08-05 00:44:28 -0400308 ioapic = (struct acpi_table_ioapic *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
310 if (BAD_MADT_ENTRY(ioapic, end))
311 return -EINVAL;
Len Brown4be44fc2005-08-05 00:44:28 -0400312
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 acpi_table_print_madt_entry(header);
314
Len Brown4be44fc2005-08-05 00:44:28 -0400315 mp_register_ioapic(ioapic->id,
316 ioapic->address, ioapic->global_irq_base);
317
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 return 0;
319}
320
321/*
322 * Parse Interrupt Source Override for the ACPI SCI
323 */
Len Brown4be44fc2005-08-05 00:44:28 -0400324static void acpi_sci_ioapic_setup(u32 gsi, u16 polarity, u16 trigger)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325{
326 if (trigger == 0) /* compatible SCI trigger is level */
327 trigger = 3;
328
329 if (polarity == 0) /* compatible SCI polarity is low */
330 polarity = 3;
331
332 /* Command-line over-ride via acpi_sci= */
333 if (acpi_sci_flags.trigger)
334 trigger = acpi_sci_flags.trigger;
335
336 if (acpi_sci_flags.polarity)
337 polarity = acpi_sci_flags.polarity;
338
339 /*
Len Brown4be44fc2005-08-05 00:44:28 -0400340 * mp_config_acpi_legacy_irqs() already setup IRQs < 16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 * If GSI is < 16, this will update its flags,
342 * else it will create a new mp_irqs[] entry.
343 */
344 mp_override_legacy_irq(gsi, polarity, trigger, gsi);
345
346 /*
347 * stash over-ride to indicate we've been here
348 * and for later update of acpi_fadt
349 */
350 acpi_sci_override_gsi = gsi;
351 return;
352}
353
354static int __init
Len Brown4be44fc2005-08-05 00:44:28 -0400355acpi_parse_int_src_ovr(acpi_table_entry_header * header,
356 const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357{
358 struct acpi_table_int_src_ovr *intsrc = NULL;
359
Len Brown4be44fc2005-08-05 00:44:28 -0400360 intsrc = (struct acpi_table_int_src_ovr *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
362 if (BAD_MADT_ENTRY(intsrc, end))
363 return -EINVAL;
364
365 acpi_table_print_madt_entry(header);
366
367 if (intsrc->bus_irq == acpi_fadt.sci_int) {
368 acpi_sci_ioapic_setup(intsrc->global_irq,
Len Brown4be44fc2005-08-05 00:44:28 -0400369 intsrc->flags.polarity,
370 intsrc->flags.trigger);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 return 0;
372 }
373
374 if (acpi_skip_timer_override &&
Len Brown4be44fc2005-08-05 00:44:28 -0400375 intsrc->bus_irq == 0 && intsrc->global_irq == 2) {
376 printk(PREFIX "BIOS IRQ0 pin2 override ignored.\n");
377 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 }
379
Len Brown4be44fc2005-08-05 00:44:28 -0400380 mp_override_legacy_irq(intsrc->bus_irq,
381 intsrc->flags.polarity,
382 intsrc->flags.trigger, intsrc->global_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
384 return 0;
385}
386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387static int __init
Len Brown4be44fc2005-08-05 00:44:28 -0400388acpi_parse_nmi_src(acpi_table_entry_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389{
390 struct acpi_table_nmi_src *nmi_src = NULL;
391
Len Brown4be44fc2005-08-05 00:44:28 -0400392 nmi_src = (struct acpi_table_nmi_src *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
394 if (BAD_MADT_ENTRY(nmi_src, end))
395 return -EINVAL;
396
397 acpi_table_print_madt_entry(header);
398
399 /* TBD: Support nimsrc entries? */
400
401 return 0;
402}
403
Len Brown4be44fc2005-08-05 00:44:28 -0400404#endif /* CONFIG_X86_IO_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406/*
407 * acpi_pic_sci_set_trigger()
408 *
409 * use ELCR to set PIC-mode trigger type for SCI
410 *
411 * If a PIC-mode SCI is not recognized or gives spurious IRQ7's
412 * it may require Edge Trigger -- use "acpi_sci=edge"
413 *
414 * Port 0x4d0-4d1 are ECLR1 and ECLR2, the Edge/Level Control Registers
415 * for the 8259 PIC. bit[n] = 1 means irq[n] is Level, otherwise Edge.
416 * ECLR1 is IRQ's 0-7 (IRQ 0, 1, 2 must be 0)
417 * ECLR2 is IRQ's 8-15 (IRQ 8, 13 must be 0)
418 */
419
Len Brown4be44fc2005-08-05 00:44:28 -0400420void __init acpi_pic_sci_set_trigger(unsigned int irq, u16 trigger)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421{
422 unsigned int mask = 1 << irq;
423 unsigned int old, new;
424
425 /* Real old ELCR mask */
426 old = inb(0x4d0) | (inb(0x4d1) << 8);
427
428 /*
429 * If we use ACPI to set PCI irq's, then we should clear ELCR
430 * since we will set it correctly as we enable the PCI irq
431 * routing.
432 */
433 new = acpi_noirq ? old : 0;
434
435 /*
436 * Update SCI information in the ELCR, it isn't in the PCI
437 * routing tables..
438 */
439 switch (trigger) {
Len Brown4be44fc2005-08-05 00:44:28 -0400440 case 1: /* Edge - clear */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 new &= ~mask;
442 break;
Len Brown4be44fc2005-08-05 00:44:28 -0400443 case 3: /* Level - set */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 new |= mask;
445 break;
446 }
447
448 if (old == new)
449 return;
450
451 printk(PREFIX "setting ELCR to %04x (from %04x)\n", new, old);
452 outb(new, 0x4d0);
453 outb(new >> 8, 0x4d1);
454}
455
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456int acpi_gsi_to_irq(u32 gsi, unsigned int *irq)
457{
458#ifdef CONFIG_X86_IO_APIC
459 if (use_pci_vector() && !platform_legacy_irq(gsi))
Len Brown4be44fc2005-08-05 00:44:28 -0400460 *irq = IO_APIC_VECTOR(gsi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 else
462#endif
463 *irq = gsi;
464 return 0;
465}
466
Kenji Kaneshige1f3a6a12005-07-28 14:42:00 -0400467/*
468 * success: return IRQ number (>=0)
469 * failure: return < 0
470 */
471int acpi_register_gsi(u32 gsi, int edge_level, int active_high_low)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472{
473 unsigned int irq;
474 unsigned int plat_gsi = gsi;
475
476#ifdef CONFIG_PCI
477 /*
478 * Make sure all (legacy) PCI IRQs are set as level-triggered.
479 */
480 if (acpi_irq_model == ACPI_IRQ_MODEL_PIC) {
481 extern void eisa_set_level_irq(unsigned int irq);
482
483 if (edge_level == ACPI_LEVEL_SENSITIVE)
Len Brown4be44fc2005-08-05 00:44:28 -0400484 eisa_set_level_irq(gsi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 }
486#endif
487
488#ifdef CONFIG_X86_IO_APIC
489 if (acpi_irq_model == ACPI_IRQ_MODEL_IOAPIC) {
490 plat_gsi = mp_register_gsi(gsi, edge_level, active_high_low);
491 }
492#endif
493 acpi_gsi_to_irq(plat_gsi, &irq);
494 return irq;
495}
Len Brown4be44fc2005-08-05 00:44:28 -0400496
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497EXPORT_SYMBOL(acpi_register_gsi);
498
499/*
500 * ACPI based hotplug support for CPU
501 */
502#ifdef CONFIG_ACPI_HOTPLUG_CPU
Len Brown4be44fc2005-08-05 00:44:28 -0400503int acpi_map_lsapic(acpi_handle handle, int *pcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504{
505 /* TBD */
506 return -EINVAL;
507}
Len Brown4be44fc2005-08-05 00:44:28 -0400508
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509EXPORT_SYMBOL(acpi_map_lsapic);
510
Len Brown4be44fc2005-08-05 00:44:28 -0400511int acpi_unmap_lsapic(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512{
513 /* TBD */
514 return -EINVAL;
515}
Len Brown4be44fc2005-08-05 00:44:28 -0400516
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517EXPORT_SYMBOL(acpi_unmap_lsapic);
Len Brown4be44fc2005-08-05 00:44:28 -0400518#endif /* CONFIG_ACPI_HOTPLUG_CPU */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
Len Brown4be44fc2005-08-05 00:44:28 -0400520int acpi_register_ioapic(acpi_handle handle, u64 phys_addr, u32 gsi_base)
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700521{
522 /* TBD */
523 return -EINVAL;
524}
Len Brown4be44fc2005-08-05 00:44:28 -0400525
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700526EXPORT_SYMBOL(acpi_register_ioapic);
527
Len Brown4be44fc2005-08-05 00:44:28 -0400528int acpi_unregister_ioapic(acpi_handle handle, u32 gsi_base)
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700529{
530 /* TBD */
531 return -EINVAL;
532}
Len Brown4be44fc2005-08-05 00:44:28 -0400533
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700534EXPORT_SYMBOL(acpi_unregister_ioapic);
535
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536static unsigned long __init
Len Brown4be44fc2005-08-05 00:44:28 -0400537acpi_scan_rsdp(unsigned long start, unsigned long length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538{
Len Brown4be44fc2005-08-05 00:44:28 -0400539 unsigned long offset = 0;
540 unsigned long sig_len = sizeof("RSD PTR ") - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
542 /*
543 * Scan all 16-byte boundaries of the physical memory region for the
544 * RSDP signature.
545 */
546 for (offset = 0; offset < length; offset += 16) {
Len Brown4be44fc2005-08-05 00:44:28 -0400547 if (strncmp((char *)(start + offset), "RSD PTR ", sig_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 continue;
549 return (start + offset);
550 }
551
552 return 0;
553}
554
555static int __init acpi_parse_sbf(unsigned long phys_addr, unsigned long size)
556{
557 struct acpi_table_sbf *sb;
558
559 if (!phys_addr || !size)
Len Brown4be44fc2005-08-05 00:44:28 -0400560 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Len Brown4be44fc2005-08-05 00:44:28 -0400562 sb = (struct acpi_table_sbf *)__acpi_map_table(phys_addr, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 if (!sb) {
564 printk(KERN_WARNING PREFIX "Unable to map SBF\n");
565 return -ENODEV;
566 }
567
Len Brown4be44fc2005-08-05 00:44:28 -0400568 sbf_port = sb->sbf_cmos; /* Save CMOS port */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
570 return 0;
571}
572
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573#ifdef CONFIG_HPET_TIMER
574
575static int __init acpi_parse_hpet(unsigned long phys, unsigned long size)
576{
577 struct acpi_table_hpet *hpet_tbl;
578
579 if (!phys || !size)
580 return -EINVAL;
581
Len Brown4be44fc2005-08-05 00:44:28 -0400582 hpet_tbl = (struct acpi_table_hpet *)__acpi_map_table(phys, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 if (!hpet_tbl) {
584 printk(KERN_WARNING PREFIX "Unable to map HPET\n");
585 return -ENODEV;
586 }
587
588 if (hpet_tbl->addr.space_id != ACPI_SPACE_MEM) {
589 printk(KERN_WARNING PREFIX "HPET timers must be located in "
590 "memory.\n");
591 return -1;
592 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593#ifdef CONFIG_X86_64
Len Brown4be44fc2005-08-05 00:44:28 -0400594 vxtime.hpet_address = hpet_tbl->addr.addrl |
595 ((long)hpet_tbl->addr.addrh << 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
Len Brown4be44fc2005-08-05 00:44:28 -0400597 printk(KERN_INFO PREFIX "HPET id: %#x base: %#lx\n",
598 hpet_tbl->id, vxtime.hpet_address);
599#else /* X86 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 {
601 extern unsigned long hpet_address;
602
603 hpet_address = hpet_tbl->addr.addrl;
604 printk(KERN_INFO PREFIX "HPET id: %#x base: %#lx\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400605 hpet_tbl->id, hpet_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 }
Len Brown4be44fc2005-08-05 00:44:28 -0400607#endif /* X86 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
609 return 0;
610}
611#else
612#define acpi_parse_hpet NULL
613#endif
614
615#ifdef CONFIG_X86_PM_TIMER
616extern u32 pmtmr_ioport;
617#endif
618
619static int __init acpi_parse_fadt(unsigned long phys, unsigned long size)
620{
621 struct fadt_descriptor_rev2 *fadt = NULL;
622
Len Brown4be44fc2005-08-05 00:44:28 -0400623 fadt = (struct fadt_descriptor_rev2 *)__acpi_map_table(phys, size);
624 if (!fadt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 printk(KERN_WARNING PREFIX "Unable to map FADT\n");
626 return 0;
627 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 /* initialize sci_int early for INT_SRC_OVR MADT parsing */
629 acpi_fadt.sci_int = fadt->sci_int;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Jason Davis90660ec2005-04-16 15:24:53 -0700631 /* initialize rev and apic_phys_dest_mode for x86_64 genapic */
632 acpi_fadt.revision = fadt->revision;
Len Brown4be44fc2005-08-05 00:44:28 -0400633 acpi_fadt.force_apic_physical_destination_mode =
634 fadt->force_apic_physical_destination_mode;
Jason Davis90660ec2005-04-16 15:24:53 -0700635
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636#ifdef CONFIG_X86_PM_TIMER
637 /* detect the location of the ACPI PM Timer */
638 if (fadt->revision >= FADT2_REVISION_ID) {
639 /* FADT rev. 2 */
Len Brown4be44fc2005-08-05 00:44:28 -0400640 if (fadt->xpm_tmr_blk.address_space_id !=
641 ACPI_ADR_SPACE_SYSTEM_IO)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 return 0;
643
644 pmtmr_ioport = fadt->xpm_tmr_blk.address;
645 } else {
646 /* FADT rev. 1 */
647 pmtmr_ioport = fadt->V1_pm_tmr_blk;
648 }
649 if (pmtmr_ioport)
Len Brown4be44fc2005-08-05 00:44:28 -0400650 printk(KERN_INFO PREFIX "PM-Timer IO Port: %#x\n",
651 pmtmr_ioport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652#endif
653 return 0;
654}
655
Len Brown4be44fc2005-08-05 00:44:28 -0400656unsigned long __init acpi_find_rsdp(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657{
Len Brown4be44fc2005-08-05 00:44:28 -0400658 unsigned long rsdp_phys = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
660 if (efi_enabled) {
661 if (efi.acpi20)
662 return __pa(efi.acpi20);
663 else if (efi.acpi)
664 return __pa(efi.acpi);
665 }
666 /*
667 * Scan memory looking for the RSDP signature. First search EBDA (low
668 * memory) paragraphs and then search upper memory (E0000-FFFFF).
669 */
Len Brown4be44fc2005-08-05 00:44:28 -0400670 rsdp_phys = acpi_scan_rsdp(0, 0x400);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 if (!rsdp_phys)
Len Brown4be44fc2005-08-05 00:44:28 -0400672 rsdp_phys = acpi_scan_rsdp(0xE0000, 0x20000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
674 return rsdp_phys;
675}
676
677#ifdef CONFIG_X86_LOCAL_APIC
678/*
679 * Parse LAPIC entries in MADT
680 * returns 0 on success, < 0 on error
681 */
Len Brown4be44fc2005-08-05 00:44:28 -0400682static int __init acpi_parse_madt_lapic_entries(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683{
684 int count;
685
686 /*
687 * Note that the LAPIC address is obtained from the MADT (32-bit value)
688 * and (optionally) overriden by a LAPIC_ADDR_OVR entry (64-bit value).
689 */
690
Len Brown4be44fc2005-08-05 00:44:28 -0400691 count =
692 acpi_table_parse_madt(ACPI_MADT_LAPIC_ADDR_OVR,
693 acpi_parse_lapic_addr_ovr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 if (count < 0) {
Len Brown4be44fc2005-08-05 00:44:28 -0400695 printk(KERN_ERR PREFIX
696 "Error parsing LAPIC address override entry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 return count;
698 }
699
700 mp_register_lapic_address(acpi_lapic_addr);
701
702 count = acpi_table_parse_madt(ACPI_MADT_LAPIC, acpi_parse_lapic,
Len Brown4be44fc2005-08-05 00:44:28 -0400703 MAX_APICS);
704 if (!count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 printk(KERN_ERR PREFIX "No LAPIC entries present\n");
706 /* TBD: Cleanup to allow fallback to MPS */
707 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400708 } else if (count < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 printk(KERN_ERR PREFIX "Error parsing LAPIC entry\n");
710 /* TBD: Cleanup to allow fallback to MPS */
711 return count;
712 }
713
Len Brown4be44fc2005-08-05 00:44:28 -0400714 count =
715 acpi_table_parse_madt(ACPI_MADT_LAPIC_NMI, acpi_parse_lapic_nmi, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 if (count < 0) {
717 printk(KERN_ERR PREFIX "Error parsing LAPIC NMI entry\n");
718 /* TBD: Cleanup to allow fallback to MPS */
719 return count;
720 }
721 return 0;
722}
Len Brown4be44fc2005-08-05 00:44:28 -0400723#endif /* CONFIG_X86_LOCAL_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
Len Brown84663612005-08-24 12:09:07 -0400725#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726/*
727 * Parse IOAPIC related entries in MADT
728 * returns 0 on success, < 0 on error
729 */
Len Brown4be44fc2005-08-05 00:44:28 -0400730static int __init acpi_parse_madt_ioapic_entries(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731{
732 int count;
733
734 /*
735 * ACPI interpreter is required to complete interrupt setup,
736 * so if it is off, don't enumerate the io-apics with ACPI.
737 * If MPS is present, it will handle them,
738 * otherwise the system will stay in PIC mode
739 */
740 if (acpi_disabled || acpi_noirq) {
741 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400742 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
744 /*
Len Brown4be44fc2005-08-05 00:44:28 -0400745 * if "noapic" boot option, don't look for IO-APICs
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 */
747 if (skip_ioapic_setup) {
748 printk(KERN_INFO PREFIX "Skipping IOAPIC probe "
Len Brown4be44fc2005-08-05 00:44:28 -0400749 "due to 'noapic' option.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 return -ENODEV;
751 }
752
Len Brown4be44fc2005-08-05 00:44:28 -0400753 count =
754 acpi_table_parse_madt(ACPI_MADT_IOAPIC, acpi_parse_ioapic,
755 MAX_IO_APICS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 if (!count) {
757 printk(KERN_ERR PREFIX "No IOAPIC entries present\n");
758 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400759 } else if (count < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 printk(KERN_ERR PREFIX "Error parsing IOAPIC entry\n");
761 return count;
762 }
763
Len Brown4be44fc2005-08-05 00:44:28 -0400764 count =
765 acpi_table_parse_madt(ACPI_MADT_INT_SRC_OVR, acpi_parse_int_src_ovr,
766 NR_IRQ_VECTORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 if (count < 0) {
Len Brown4be44fc2005-08-05 00:44:28 -0400768 printk(KERN_ERR PREFIX
769 "Error parsing interrupt source overrides entry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 /* TBD: Cleanup to allow fallback to MPS */
771 return count;
772 }
773
774 /*
775 * If BIOS did not supply an INT_SRC_OVR for the SCI
776 * pretend we got one so we can set the SCI flags.
777 */
778 if (!acpi_sci_override_gsi)
779 acpi_sci_ioapic_setup(acpi_fadt.sci_int, 0, 0);
780
781 /* Fill in identity legacy mapings where no override */
782 mp_config_acpi_legacy_irqs();
783
Len Brown4be44fc2005-08-05 00:44:28 -0400784 count =
785 acpi_table_parse_madt(ACPI_MADT_NMI_SRC, acpi_parse_nmi_src,
786 NR_IRQ_VECTORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 if (count < 0) {
788 printk(KERN_ERR PREFIX "Error parsing NMI SRC entry\n");
789 /* TBD: Cleanup to allow fallback to MPS */
790 return count;
791 }
792
793 return 0;
794}
795#else
796static inline int acpi_parse_madt_ioapic_entries(void)
797{
798 return -1;
799}
Len Brown84663612005-08-24 12:09:07 -0400800#endif /* !CONFIG_X86_IO_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
Len Brown4be44fc2005-08-05 00:44:28 -0400802static void __init acpi_process_madt(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803{
804#ifdef CONFIG_X86_LOCAL_APIC
805 int count, error;
806
807 count = acpi_table_parse(ACPI_APIC, acpi_parse_madt);
808 if (count >= 1) {
809
810 /*
811 * Parse MADT LAPIC entries
812 */
813 error = acpi_parse_madt_lapic_entries();
814 if (!error) {
815 acpi_lapic = 1;
816
Venkatesh Pallipadi911a62d2005-09-03 15:56:31 -0700817#ifdef CONFIG_X86_GENERICARCH
818 generic_bigsmp_probe();
819#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 /*
821 * Parse MADT IO-APIC entries
822 */
823 error = acpi_parse_madt_ioapic_entries();
824 if (!error) {
825 acpi_irq_model = ACPI_IRQ_MODEL_IOAPIC;
826 acpi_irq_balance_set(NULL);
827 acpi_ioapic = 1;
828
829 smp_found_config = 1;
830 clustered_apic_check();
831 }
832 }
833 if (error == -EINVAL) {
834 /*
835 * Dell Precision Workstation 410, 610 come here.
836 */
Len Brown4be44fc2005-08-05 00:44:28 -0400837 printk(KERN_ERR PREFIX
838 "Invalid BIOS MADT, disabling ACPI\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 disable_acpi();
840 }
841 }
842#endif
843 return;
844}
845
Andrey Paninaea00142005-06-25 14:54:42 -0700846extern int acpi_force;
847
848#ifdef __i386__
849
Andrey Paninaea00142005-06-25 14:54:42 -0700850static int __init disable_acpi_irq(struct dmi_system_id *d)
851{
852 if (!acpi_force) {
853 printk(KERN_NOTICE "%s detected: force use of acpi=noirq\n",
854 d->ident);
855 acpi_noirq_set();
856 }
857 return 0;
858}
859
860static int __init disable_acpi_pci(struct dmi_system_id *d)
861{
862 if (!acpi_force) {
863 printk(KERN_NOTICE "%s detected: force use of pci=noacpi\n",
864 d->ident);
865 acpi_disable_pci();
866 }
867 return 0;
868}
Andrey Paninaea00142005-06-25 14:54:42 -0700869
870static int __init dmi_disable_acpi(struct dmi_system_id *d)
871{
872 if (!acpi_force) {
Len Brown4be44fc2005-08-05 00:44:28 -0400873 printk(KERN_NOTICE "%s detected: acpi off\n", d->ident);
Andrey Paninaea00142005-06-25 14:54:42 -0700874 disable_acpi();
875 } else {
876 printk(KERN_NOTICE
877 "Warning: DMI blacklist says broken, but acpi forced\n");
878 }
879 return 0;
880}
881
882/*
883 * Limit ACPI to CPU enumeration for HT
884 */
885static int __init force_acpi_ht(struct dmi_system_id *d)
886{
887 if (!acpi_force) {
Len Brown4be44fc2005-08-05 00:44:28 -0400888 printk(KERN_NOTICE "%s detected: force use of acpi=ht\n",
889 d->ident);
Andrey Paninaea00142005-06-25 14:54:42 -0700890 disable_acpi();
891 acpi_ht = 1;
892 } else {
893 printk(KERN_NOTICE
894 "Warning: acpi=force overrules DMI blacklist: acpi=ht\n");
895 }
896 return 0;
897}
898
899/*
900 * If your system is blacklisted here, but you find that acpi=force
901 * works for you, please contact acpi-devel@sourceforge.net
902 */
903static struct dmi_system_id __initdata acpi_dmi_table[] = {
904 /*
905 * Boxes that need ACPI disabled
906 */
907 {
Len Brown4be44fc2005-08-05 00:44:28 -0400908 .callback = dmi_disable_acpi,
909 .ident = "IBM Thinkpad",
910 .matches = {
911 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
912 DMI_MATCH(DMI_BOARD_NAME, "2629H1G"),
913 },
914 },
Andrey Paninaea00142005-06-25 14:54:42 -0700915
916 /*
917 * Boxes that need acpi=ht
918 */
919 {
Len Brown4be44fc2005-08-05 00:44:28 -0400920 .callback = force_acpi_ht,
921 .ident = "FSC Primergy T850",
922 .matches = {
923 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
924 DMI_MATCH(DMI_PRODUCT_NAME, "PRIMERGY T850"),
925 },
926 },
Andrey Paninaea00142005-06-25 14:54:42 -0700927 {
Len Brown4be44fc2005-08-05 00:44:28 -0400928 .callback = force_acpi_ht,
929 .ident = "DELL GX240",
930 .matches = {
931 DMI_MATCH(DMI_BOARD_VENDOR, "Dell Computer Corporation"),
932 DMI_MATCH(DMI_BOARD_NAME, "OptiPlex GX240"),
933 },
934 },
Andrey Paninaea00142005-06-25 14:54:42 -0700935 {
Len Brown4be44fc2005-08-05 00:44:28 -0400936 .callback = force_acpi_ht,
937 .ident = "HP VISUALIZE NT Workstation",
938 .matches = {
939 DMI_MATCH(DMI_BOARD_VENDOR, "Hewlett-Packard"),
940 DMI_MATCH(DMI_PRODUCT_NAME, "HP VISUALIZE NT Workstation"),
941 },
942 },
Andrey Paninaea00142005-06-25 14:54:42 -0700943 {
Len Brown4be44fc2005-08-05 00:44:28 -0400944 .callback = force_acpi_ht,
945 .ident = "Compaq Workstation W8000",
946 .matches = {
947 DMI_MATCH(DMI_SYS_VENDOR, "Compaq"),
948 DMI_MATCH(DMI_PRODUCT_NAME, "Workstation W8000"),
949 },
950 },
Andrey Paninaea00142005-06-25 14:54:42 -0700951 {
Len Brown4be44fc2005-08-05 00:44:28 -0400952 .callback = force_acpi_ht,
953 .ident = "ASUS P4B266",
954 .matches = {
955 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
956 DMI_MATCH(DMI_BOARD_NAME, "P4B266"),
957 },
958 },
Andrey Paninaea00142005-06-25 14:54:42 -0700959 {
Len Brown4be44fc2005-08-05 00:44:28 -0400960 .callback = force_acpi_ht,
961 .ident = "ASUS P2B-DS",
962 .matches = {
963 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
964 DMI_MATCH(DMI_BOARD_NAME, "P2B-DS"),
965 },
966 },
Andrey Paninaea00142005-06-25 14:54:42 -0700967 {
Len Brown4be44fc2005-08-05 00:44:28 -0400968 .callback = force_acpi_ht,
969 .ident = "ASUS CUR-DLS",
970 .matches = {
971 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
972 DMI_MATCH(DMI_BOARD_NAME, "CUR-DLS"),
973 },
974 },
Andrey Paninaea00142005-06-25 14:54:42 -0700975 {
Len Brown4be44fc2005-08-05 00:44:28 -0400976 .callback = force_acpi_ht,
977 .ident = "ABIT i440BX-W83977",
978 .matches = {
979 DMI_MATCH(DMI_BOARD_VENDOR, "ABIT <http://www.abit.com>"),
980 DMI_MATCH(DMI_BOARD_NAME, "i440BX-W83977 (BP6)"),
981 },
982 },
Andrey Paninaea00142005-06-25 14:54:42 -0700983 {
Len Brown4be44fc2005-08-05 00:44:28 -0400984 .callback = force_acpi_ht,
985 .ident = "IBM Bladecenter",
986 .matches = {
987 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
988 DMI_MATCH(DMI_BOARD_NAME, "IBM eServer BladeCenter HS20"),
989 },
990 },
Andrey Paninaea00142005-06-25 14:54:42 -0700991 {
Len Brown4be44fc2005-08-05 00:44:28 -0400992 .callback = force_acpi_ht,
993 .ident = "IBM eServer xSeries 360",
994 .matches = {
995 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
996 DMI_MATCH(DMI_BOARD_NAME, "eServer xSeries 360"),
997 },
998 },
Andrey Paninaea00142005-06-25 14:54:42 -0700999 {
Len Brown4be44fc2005-08-05 00:44:28 -04001000 .callback = force_acpi_ht,
1001 .ident = "IBM eserver xSeries 330",
1002 .matches = {
1003 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1004 DMI_MATCH(DMI_BOARD_NAME, "eserver xSeries 330"),
1005 },
1006 },
Andrey Paninaea00142005-06-25 14:54:42 -07001007 {
Len Brown4be44fc2005-08-05 00:44:28 -04001008 .callback = force_acpi_ht,
1009 .ident = "IBM eserver xSeries 440",
1010 .matches = {
1011 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1012 DMI_MATCH(DMI_PRODUCT_NAME, "eserver xSeries 440"),
1013 },
1014 },
Andrey Paninaea00142005-06-25 14:54:42 -07001015
Andrey Paninaea00142005-06-25 14:54:42 -07001016 /*
1017 * Boxes that need ACPI PCI IRQ routing disabled
1018 */
1019 {
Len Brown4be44fc2005-08-05 00:44:28 -04001020 .callback = disable_acpi_irq,
1021 .ident = "ASUS A7V",
1022 .matches = {
1023 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC"),
1024 DMI_MATCH(DMI_BOARD_NAME, "<A7V>"),
1025 /* newer BIOS, Revision 1011, does work */
1026 DMI_MATCH(DMI_BIOS_VERSION,
1027 "ASUS A7V ACPI BIOS Revision 1007"),
1028 },
1029 },
Andrey Paninaea00142005-06-25 14:54:42 -07001030
1031 /*
1032 * Boxes that need ACPI PCI IRQ routing and PCI scan disabled
1033 */
Len Brown4be44fc2005-08-05 00:44:28 -04001034 { /* _BBN 0 bug */
1035 .callback = disable_acpi_pci,
1036 .ident = "ASUS PR-DLS",
1037 .matches = {
1038 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1039 DMI_MATCH(DMI_BOARD_NAME, "PR-DLS"),
1040 DMI_MATCH(DMI_BIOS_VERSION,
1041 "ASUS PR-DLS ACPI BIOS Revision 1010"),
1042 DMI_MATCH(DMI_BIOS_DATE, "03/21/2003")
1043 },
1044 },
Andrey Paninaea00142005-06-25 14:54:42 -07001045 {
Len Brown4be44fc2005-08-05 00:44:28 -04001046 .callback = disable_acpi_pci,
1047 .ident = "Acer TravelMate 36x Laptop",
1048 .matches = {
1049 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
1050 DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 360"),
1051 },
1052 },
Len Brown4be44fc2005-08-05 00:44:28 -04001053 {}
Andrey Paninaea00142005-06-25 14:54:42 -07001054};
1055
Len Brown4be44fc2005-08-05 00:44:28 -04001056#endif /* __i386__ */
Andrey Paninaea00142005-06-25 14:54:42 -07001057
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058/*
1059 * acpi_boot_table_init() and acpi_boot_init()
1060 * called from setup_arch(), always.
1061 * 1. checksums all tables
1062 * 2. enumerates lapics
1063 * 3. enumerates io-apics
1064 *
1065 * acpi_table_init() is separate to allow reading SRAT without
1066 * other side effects.
1067 *
1068 * side effects of acpi_boot_init:
1069 * acpi_lapic = 1 if LAPIC found
1070 * acpi_ioapic = 1 if IOAPIC found
1071 * if (acpi_lapic && acpi_ioapic) smp_found_config = 1;
1072 * if acpi_blacklisted() acpi_disabled = 1;
1073 * acpi_irq_model=...
1074 * ...
1075 *
1076 * return value: (currently ignored)
1077 * 0: success
1078 * !0: failure
1079 */
1080
Len Brown4be44fc2005-08-05 00:44:28 -04001081int __init acpi_boot_table_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082{
1083 int error;
1084
Andrey Paninaea00142005-06-25 14:54:42 -07001085#ifdef __i386__
1086 dmi_check_system(acpi_dmi_table);
1087#endif
1088
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 /*
1090 * If acpi_disabled, bail out
1091 * One exception: acpi=ht continues far enough to enumerate LAPICs
1092 */
1093 if (acpi_disabled && !acpi_ht)
Len Brown4be44fc2005-08-05 00:44:28 -04001094 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
1096 /*
1097 * Initialize the ACPI boot-time table parser.
1098 */
1099 error = acpi_table_init();
1100 if (error) {
1101 disable_acpi();
1102 return error;
1103 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104#ifdef __i386__
1105 check_acpi_pci();
1106#endif
1107
1108 acpi_table_parse(ACPI_BOOT, acpi_parse_sbf);
1109
1110 /*
1111 * blacklist may disable ACPI entirely
1112 */
1113 error = acpi_blacklisted();
1114 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 if (acpi_force) {
1116 printk(KERN_WARNING PREFIX "acpi=force override\n");
1117 } else {
1118 printk(KERN_WARNING PREFIX "Disabling ACPI support\n");
1119 disable_acpi();
1120 return error;
1121 }
1122 }
1123
1124 return 0;
1125}
1126
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127int __init acpi_boot_init(void)
1128{
1129 /*
1130 * If acpi_disabled, bail out
1131 * One exception: acpi=ht continues far enough to enumerate LAPICs
1132 */
1133 if (acpi_disabled && !acpi_ht)
Len Brown4be44fc2005-08-05 00:44:28 -04001134 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135
1136 acpi_table_parse(ACPI_BOOT, acpi_parse_sbf);
1137
1138 /*
1139 * set sci_int and PM timer address
1140 */
1141 acpi_table_parse(ACPI_FADT, acpi_parse_fadt);
1142
1143 /*
1144 * Process the Multiple APIC Description Table (MADT), if present
1145 */
1146 acpi_process_madt();
1147
1148 acpi_table_parse(ACPI_HPET, acpi_parse_hpet);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149
1150 return 0;
1151}