blob: 84befaecedf88f706d95e69f8a860d83f0134490 [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
69#ifdef CONFIG_ACPI_PCI
70int acpi_noirq __initdata; /* skip ACPI IRQ initialization */
Len Brown4be44fc2005-08-05 00:44:28 -040071int acpi_pci_disabled __initdata; /* skip ACPI PCI scan and IRQ initialization */
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#else
73int acpi_noirq __initdata = 1;
74int acpi_pci_disabled __initdata = 1;
75#endif
76int acpi_ht __initdata = 1; /* enable HT */
77
78int acpi_lapic;
79int acpi_ioapic;
80int acpi_strict;
81EXPORT_SYMBOL(acpi_strict);
82
83acpi_interrupt_flags acpi_sci_flags __initdata;
84int acpi_sci_override_gsi __initdata;
85int acpi_skip_timer_override __initdata;
86
87#ifdef CONFIG_X86_LOCAL_APIC
88static u64 acpi_lapic_addr __initdata = APIC_DEFAULT_PHYS_BASE;
89#endif
90
91#ifndef __HAVE_ARCH_CMPXCHG
92#warning ACPI uses CMPXCHG, i486 and later hardware
93#endif
94
95#define MAX_MADT_ENTRIES 256
96u8 x86_acpiid_to_apicid[MAX_MADT_ENTRIES] =
Len Brown1f3a7302005-08-05 03:33:14 -040097 {[0 ... MAX_MADT_ENTRIES - 1] = 0xff };
Linus Torvalds1da177e2005-04-16 15:20:36 -070098EXPORT_SYMBOL(x86_acpiid_to_apicid);
99
100/* --------------------------------------------------------------------------
101 Boot-time Configuration
102 -------------------------------------------------------------------------- */
103
104/*
105 * The default interrupt routing model is PIC (8259). This gets
106 * overriden if IOAPICs are enumerated (below).
107 */
Len Brown4be44fc2005-08-05 00:44:28 -0400108enum acpi_irq_model_id acpi_irq_model = ACPI_IRQ_MODEL_PIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110#ifdef CONFIG_X86_64
111
112/* rely on all ACPI tables being in the direct mapping */
113char *__acpi_map_table(unsigned long phys_addr, unsigned long size)
114{
115 if (!phys_addr || !size)
Len Brown4be44fc2005-08-05 00:44:28 -0400116 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118 if (phys_addr < (end_pfn_map << PAGE_SHIFT))
119 return __va(phys_addr);
120
121 return NULL;
122}
123
124#else
125
126/*
127 * Temporarily use the virtual area starting from FIX_IO_APIC_BASE_END,
128 * to map the target physical address. The problem is that set_fixmap()
129 * provides a single page, and it is possible that the page is not
130 * sufficient.
131 * By using this area, we can map up to MAX_IO_APICS pages temporarily,
132 * i.e. until the next __va_range() call.
133 *
134 * Important Safety Note: The fixed I/O APIC page numbers are *subtracted*
135 * from the fixed base. That's why we start at FIX_IO_APIC_BASE_END and
136 * count idx down while incrementing the phys address.
137 */
138char *__acpi_map_table(unsigned long phys, unsigned long size)
139{
140 unsigned long base, offset, mapped_size;
141 int idx;
142
Len Brown4be44fc2005-08-05 00:44:28 -0400143 if (phys + size < 8 * 1024 * 1024)
144 return __va(phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
146 offset = phys & (PAGE_SIZE - 1);
147 mapped_size = PAGE_SIZE - offset;
148 set_fixmap(FIX_ACPI_END, phys);
149 base = fix_to_virt(FIX_ACPI_END);
150
151 /*
152 * Most cases can be covered by the below.
153 */
154 idx = FIX_ACPI_END;
155 while (mapped_size < size) {
156 if (--idx < FIX_ACPI_BEGIN)
157 return NULL; /* cannot handle this */
158 phys += PAGE_SIZE;
159 set_fixmap(idx, phys);
160 mapped_size += PAGE_SIZE;
161 }
162
Len Brown4be44fc2005-08-05 00:44:28 -0400163 return ((unsigned char *)base + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164}
165#endif
166
167#ifdef CONFIG_PCI_MMCONFIG
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700168/* The physical address of the MMCONFIG aperture. Set from ACPI tables. */
169struct acpi_table_mcfg_config *pci_mmcfg_config;
170int pci_mmcfg_config_num;
171
172int __init acpi_parse_mcfg(unsigned long phys_addr, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173{
174 struct acpi_table_mcfg *mcfg;
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700175 unsigned long i;
176 int config_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
178 if (!phys_addr || !size)
179 return -EINVAL;
180
Len Brown4be44fc2005-08-05 00:44:28 -0400181 mcfg = (struct acpi_table_mcfg *)__acpi_map_table(phys_addr, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 if (!mcfg) {
183 printk(KERN_WARNING PREFIX "Unable to map MCFG\n");
184 return -ENODEV;
185 }
186
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700187 /* how many config structures do we have */
188 pci_mmcfg_config_num = 0;
189 i = size - sizeof(struct acpi_table_mcfg);
190 while (i >= sizeof(struct acpi_table_mcfg_config)) {
191 ++pci_mmcfg_config_num;
192 i -= sizeof(struct acpi_table_mcfg_config);
193 };
194 if (pci_mmcfg_config_num == 0) {
195 printk(KERN_ERR PREFIX "MMCONFIG has no entries\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 return -ENODEV;
197 }
198
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700199 config_size = pci_mmcfg_config_num * sizeof(*pci_mmcfg_config);
200 pci_mmcfg_config = kmalloc(config_size, GFP_KERNEL);
201 if (!pci_mmcfg_config) {
202 printk(KERN_WARNING PREFIX
203 "No memory for MCFG config tables\n");
204 return -ENOMEM;
205 }
206
207 memcpy(pci_mmcfg_config, &mcfg->config, config_size);
208 for (i = 0; i < pci_mmcfg_config_num; ++i) {
209 if (mcfg->config[i].base_reserved) {
210 printk(KERN_ERR PREFIX
211 "MMCONFIG not in low 4GB of memory\n");
212 return -ENODEV;
213 }
214 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
216 return 0;
217}
Len Brown4be44fc2005-08-05 00:44:28 -0400218#endif /* CONFIG_PCI_MMCONFIG */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220#ifdef CONFIG_X86_LOCAL_APIC
Len Brown4be44fc2005-08-05 00:44:28 -0400221static int __init acpi_parse_madt(unsigned long phys_addr, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
Len Brown4be44fc2005-08-05 00:44:28 -0400223 struct acpi_table_madt *madt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
225 if (!phys_addr || !size)
226 return -EINVAL;
227
Len Brown4be44fc2005-08-05 00:44:28 -0400228 madt = (struct acpi_table_madt *)__acpi_map_table(phys_addr, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 if (!madt) {
230 printk(KERN_WARNING PREFIX "Unable to map MADT\n");
231 return -ENODEV;
232 }
233
234 if (madt->lapic_address) {
235 acpi_lapic_addr = (u64) madt->lapic_address;
236
237 printk(KERN_DEBUG PREFIX "Local APIC address 0x%08x\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400238 madt->lapic_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 }
240
241 acpi_madt_oem_check(madt->header.oem_id, madt->header.oem_table_id);
Len Brown4be44fc2005-08-05 00:44:28 -0400242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 return 0;
244}
245
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246static int __init
Len Brown4be44fc2005-08-05 00:44:28 -0400247acpi_parse_lapic(acpi_table_entry_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248{
Len Brown4be44fc2005-08-05 00:44:28 -0400249 struct acpi_table_lapic *processor = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Len Brown4be44fc2005-08-05 00:44:28 -0400251 processor = (struct acpi_table_lapic *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
253 if (BAD_MADT_ENTRY(processor, end))
254 return -EINVAL;
255
256 acpi_table_print_madt_entry(header);
257
258 /* no utility in registering a disabled processor */
259 if (processor->flags.enabled == 0)
260 return 0;
261
262 x86_acpiid_to_apicid[processor->acpi_id] = processor->id;
263
Len Brown4be44fc2005-08-05 00:44:28 -0400264 mp_register_lapic(processor->id, /* APIC ID */
265 processor->flags.enabled); /* Enabled? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
267 return 0;
268}
269
270static int __init
Len Brown4be44fc2005-08-05 00:44:28 -0400271acpi_parse_lapic_addr_ovr(acpi_table_entry_header * header,
272 const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273{
274 struct acpi_table_lapic_addr_ovr *lapic_addr_ovr = NULL;
275
Len Brown4be44fc2005-08-05 00:44:28 -0400276 lapic_addr_ovr = (struct acpi_table_lapic_addr_ovr *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
278 if (BAD_MADT_ENTRY(lapic_addr_ovr, end))
279 return -EINVAL;
280
281 acpi_lapic_addr = lapic_addr_ovr->address;
282
283 return 0;
284}
285
286static int __init
Len Brown4be44fc2005-08-05 00:44:28 -0400287acpi_parse_lapic_nmi(acpi_table_entry_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
289 struct acpi_table_lapic_nmi *lapic_nmi = NULL;
290
Len Brown4be44fc2005-08-05 00:44:28 -0400291 lapic_nmi = (struct acpi_table_lapic_nmi *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
293 if (BAD_MADT_ENTRY(lapic_nmi, end))
294 return -EINVAL;
295
296 acpi_table_print_madt_entry(header);
297
298 if (lapic_nmi->lint != 1)
299 printk(KERN_WARNING PREFIX "NMI not connected to LINT 1!\n");
300
301 return 0;
302}
303
Len Brown4be44fc2005-08-05 00:44:28 -0400304#endif /*CONFIG_X86_LOCAL_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Len Brown84663612005-08-24 12:09:07 -0400306#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
308static int __init
Len Brown4be44fc2005-08-05 00:44:28 -0400309acpi_parse_ioapic(acpi_table_entry_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310{
311 struct acpi_table_ioapic *ioapic = NULL;
312
Len Brown4be44fc2005-08-05 00:44:28 -0400313 ioapic = (struct acpi_table_ioapic *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
315 if (BAD_MADT_ENTRY(ioapic, end))
316 return -EINVAL;
Len Brown4be44fc2005-08-05 00:44:28 -0400317
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 acpi_table_print_madt_entry(header);
319
Len Brown4be44fc2005-08-05 00:44:28 -0400320 mp_register_ioapic(ioapic->id,
321 ioapic->address, ioapic->global_irq_base);
322
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 return 0;
324}
325
326/*
327 * Parse Interrupt Source Override for the ACPI SCI
328 */
Len Brown4be44fc2005-08-05 00:44:28 -0400329static void acpi_sci_ioapic_setup(u32 gsi, u16 polarity, u16 trigger)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330{
331 if (trigger == 0) /* compatible SCI trigger is level */
332 trigger = 3;
333
334 if (polarity == 0) /* compatible SCI polarity is low */
335 polarity = 3;
336
337 /* Command-line over-ride via acpi_sci= */
338 if (acpi_sci_flags.trigger)
339 trigger = acpi_sci_flags.trigger;
340
341 if (acpi_sci_flags.polarity)
342 polarity = acpi_sci_flags.polarity;
343
344 /*
Len Brown4be44fc2005-08-05 00:44:28 -0400345 * mp_config_acpi_legacy_irqs() already setup IRQs < 16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 * If GSI is < 16, this will update its flags,
347 * else it will create a new mp_irqs[] entry.
348 */
349 mp_override_legacy_irq(gsi, polarity, trigger, gsi);
350
351 /*
352 * stash over-ride to indicate we've been here
353 * and for later update of acpi_fadt
354 */
355 acpi_sci_override_gsi = gsi;
356 return;
357}
358
359static int __init
Len Brown4be44fc2005-08-05 00:44:28 -0400360acpi_parse_int_src_ovr(acpi_table_entry_header * header,
361 const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362{
363 struct acpi_table_int_src_ovr *intsrc = NULL;
364
Len Brown4be44fc2005-08-05 00:44:28 -0400365 intsrc = (struct acpi_table_int_src_ovr *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
367 if (BAD_MADT_ENTRY(intsrc, end))
368 return -EINVAL;
369
370 acpi_table_print_madt_entry(header);
371
372 if (intsrc->bus_irq == acpi_fadt.sci_int) {
373 acpi_sci_ioapic_setup(intsrc->global_irq,
Len Brown4be44fc2005-08-05 00:44:28 -0400374 intsrc->flags.polarity,
375 intsrc->flags.trigger);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 return 0;
377 }
378
379 if (acpi_skip_timer_override &&
Len Brown4be44fc2005-08-05 00:44:28 -0400380 intsrc->bus_irq == 0 && intsrc->global_irq == 2) {
381 printk(PREFIX "BIOS IRQ0 pin2 override ignored.\n");
382 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 }
384
Len Brown4be44fc2005-08-05 00:44:28 -0400385 mp_override_legacy_irq(intsrc->bus_irq,
386 intsrc->flags.polarity,
387 intsrc->flags.trigger, intsrc->global_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
389 return 0;
390}
391
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392static int __init
Len Brown4be44fc2005-08-05 00:44:28 -0400393acpi_parse_nmi_src(acpi_table_entry_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394{
395 struct acpi_table_nmi_src *nmi_src = NULL;
396
Len Brown4be44fc2005-08-05 00:44:28 -0400397 nmi_src = (struct acpi_table_nmi_src *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
399 if (BAD_MADT_ENTRY(nmi_src, end))
400 return -EINVAL;
401
402 acpi_table_print_madt_entry(header);
403
404 /* TBD: Support nimsrc entries? */
405
406 return 0;
407}
408
Len Brown4be44fc2005-08-05 00:44:28 -0400409#endif /* CONFIG_X86_IO_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
411#ifdef CONFIG_ACPI_BUS
412
413/*
414 * acpi_pic_sci_set_trigger()
415 *
416 * use ELCR to set PIC-mode trigger type for SCI
417 *
418 * If a PIC-mode SCI is not recognized or gives spurious IRQ7's
419 * it may require Edge Trigger -- use "acpi_sci=edge"
420 *
421 * Port 0x4d0-4d1 are ECLR1 and ECLR2, the Edge/Level Control Registers
422 * for the 8259 PIC. bit[n] = 1 means irq[n] is Level, otherwise Edge.
423 * ECLR1 is IRQ's 0-7 (IRQ 0, 1, 2 must be 0)
424 * ECLR2 is IRQ's 8-15 (IRQ 8, 13 must be 0)
425 */
426
Len Brown4be44fc2005-08-05 00:44:28 -0400427void __init acpi_pic_sci_set_trigger(unsigned int irq, u16 trigger)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428{
429 unsigned int mask = 1 << irq;
430 unsigned int old, new;
431
432 /* Real old ELCR mask */
433 old = inb(0x4d0) | (inb(0x4d1) << 8);
434
435 /*
436 * If we use ACPI to set PCI irq's, then we should clear ELCR
437 * since we will set it correctly as we enable the PCI irq
438 * routing.
439 */
440 new = acpi_noirq ? old : 0;
441
442 /*
443 * Update SCI information in the ELCR, it isn't in the PCI
444 * routing tables..
445 */
446 switch (trigger) {
Len Brown4be44fc2005-08-05 00:44:28 -0400447 case 1: /* Edge - clear */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 new &= ~mask;
449 break;
Len Brown4be44fc2005-08-05 00:44:28 -0400450 case 3: /* Level - set */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 new |= mask;
452 break;
453 }
454
455 if (old == new)
456 return;
457
458 printk(PREFIX "setting ELCR to %04x (from %04x)\n", new, old);
459 outb(new, 0x4d0);
460 outb(new >> 8, 0x4d1);
461}
462
Len Brown4be44fc2005-08-05 00:44:28 -0400463#endif /* CONFIG_ACPI_BUS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
465int acpi_gsi_to_irq(u32 gsi, unsigned int *irq)
466{
467#ifdef CONFIG_X86_IO_APIC
468 if (use_pci_vector() && !platform_legacy_irq(gsi))
Len Brown4be44fc2005-08-05 00:44:28 -0400469 *irq = IO_APIC_VECTOR(gsi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 else
471#endif
472 *irq = gsi;
473 return 0;
474}
475
Kenji Kaneshige1f3a6a12005-07-28 14:42:00 -0400476/*
477 * success: return IRQ number (>=0)
478 * failure: return < 0
479 */
480int acpi_register_gsi(u32 gsi, int edge_level, int active_high_low)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481{
482 unsigned int irq;
483 unsigned int plat_gsi = gsi;
484
485#ifdef CONFIG_PCI
486 /*
487 * Make sure all (legacy) PCI IRQs are set as level-triggered.
488 */
489 if (acpi_irq_model == ACPI_IRQ_MODEL_PIC) {
490 extern void eisa_set_level_irq(unsigned int irq);
491
492 if (edge_level == ACPI_LEVEL_SENSITIVE)
Len Brown4be44fc2005-08-05 00:44:28 -0400493 eisa_set_level_irq(gsi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 }
495#endif
496
497#ifdef CONFIG_X86_IO_APIC
498 if (acpi_irq_model == ACPI_IRQ_MODEL_IOAPIC) {
499 plat_gsi = mp_register_gsi(gsi, edge_level, active_high_low);
500 }
501#endif
502 acpi_gsi_to_irq(plat_gsi, &irq);
503 return irq;
504}
Len Brown4be44fc2005-08-05 00:44:28 -0400505
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506EXPORT_SYMBOL(acpi_register_gsi);
507
508/*
509 * ACPI based hotplug support for CPU
510 */
511#ifdef CONFIG_ACPI_HOTPLUG_CPU
Len Brown4be44fc2005-08-05 00:44:28 -0400512int acpi_map_lsapic(acpi_handle handle, int *pcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513{
514 /* TBD */
515 return -EINVAL;
516}
Len Brown4be44fc2005-08-05 00:44:28 -0400517
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518EXPORT_SYMBOL(acpi_map_lsapic);
519
Len Brown4be44fc2005-08-05 00:44:28 -0400520int acpi_unmap_lsapic(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521{
522 /* TBD */
523 return -EINVAL;
524}
Len Brown4be44fc2005-08-05 00:44:28 -0400525
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526EXPORT_SYMBOL(acpi_unmap_lsapic);
Len Brown4be44fc2005-08-05 00:44:28 -0400527#endif /* CONFIG_ACPI_HOTPLUG_CPU */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
Len Brown4be44fc2005-08-05 00:44:28 -0400529int acpi_register_ioapic(acpi_handle handle, u64 phys_addr, u32 gsi_base)
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700530{
531 /* TBD */
532 return -EINVAL;
533}
Len Brown4be44fc2005-08-05 00:44:28 -0400534
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700535EXPORT_SYMBOL(acpi_register_ioapic);
536
Len Brown4be44fc2005-08-05 00:44:28 -0400537int acpi_unregister_ioapic(acpi_handle handle, u32 gsi_base)
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700538{
539 /* TBD */
540 return -EINVAL;
541}
Len Brown4be44fc2005-08-05 00:44:28 -0400542
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700543EXPORT_SYMBOL(acpi_unregister_ioapic);
544
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545static unsigned long __init
Len Brown4be44fc2005-08-05 00:44:28 -0400546acpi_scan_rsdp(unsigned long start, unsigned long length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547{
Len Brown4be44fc2005-08-05 00:44:28 -0400548 unsigned long offset = 0;
549 unsigned long sig_len = sizeof("RSD PTR ") - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
551 /*
552 * Scan all 16-byte boundaries of the physical memory region for the
553 * RSDP signature.
554 */
555 for (offset = 0; offset < length; offset += 16) {
Len Brown4be44fc2005-08-05 00:44:28 -0400556 if (strncmp((char *)(start + offset), "RSD PTR ", sig_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 continue;
558 return (start + offset);
559 }
560
561 return 0;
562}
563
564static int __init acpi_parse_sbf(unsigned long phys_addr, unsigned long size)
565{
566 struct acpi_table_sbf *sb;
567
568 if (!phys_addr || !size)
Len Brown4be44fc2005-08-05 00:44:28 -0400569 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
Len Brown4be44fc2005-08-05 00:44:28 -0400571 sb = (struct acpi_table_sbf *)__acpi_map_table(phys_addr, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 if (!sb) {
573 printk(KERN_WARNING PREFIX "Unable to map SBF\n");
574 return -ENODEV;
575 }
576
Len Brown4be44fc2005-08-05 00:44:28 -0400577 sbf_port = sb->sbf_cmos; /* Save CMOS port */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
579 return 0;
580}
581
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582#ifdef CONFIG_HPET_TIMER
583
584static int __init acpi_parse_hpet(unsigned long phys, unsigned long size)
585{
586 struct acpi_table_hpet *hpet_tbl;
587
588 if (!phys || !size)
589 return -EINVAL;
590
Len Brown4be44fc2005-08-05 00:44:28 -0400591 hpet_tbl = (struct acpi_table_hpet *)__acpi_map_table(phys, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 if (!hpet_tbl) {
593 printk(KERN_WARNING PREFIX "Unable to map HPET\n");
594 return -ENODEV;
595 }
596
597 if (hpet_tbl->addr.space_id != ACPI_SPACE_MEM) {
598 printk(KERN_WARNING PREFIX "HPET timers must be located in "
599 "memory.\n");
600 return -1;
601 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602#ifdef CONFIG_X86_64
Len Brown4be44fc2005-08-05 00:44:28 -0400603 vxtime.hpet_address = hpet_tbl->addr.addrl |
604 ((long)hpet_tbl->addr.addrh << 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
Len Brown4be44fc2005-08-05 00:44:28 -0400606 printk(KERN_INFO PREFIX "HPET id: %#x base: %#lx\n",
607 hpet_tbl->id, vxtime.hpet_address);
608#else /* X86 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 {
610 extern unsigned long hpet_address;
611
612 hpet_address = hpet_tbl->addr.addrl;
613 printk(KERN_INFO PREFIX "HPET id: %#x base: %#lx\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400614 hpet_tbl->id, hpet_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 }
Len Brown4be44fc2005-08-05 00:44:28 -0400616#endif /* X86 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
618 return 0;
619}
620#else
621#define acpi_parse_hpet NULL
622#endif
623
624#ifdef CONFIG_X86_PM_TIMER
625extern u32 pmtmr_ioport;
626#endif
627
628static int __init acpi_parse_fadt(unsigned long phys, unsigned long size)
629{
630 struct fadt_descriptor_rev2 *fadt = NULL;
631
Len Brown4be44fc2005-08-05 00:44:28 -0400632 fadt = (struct fadt_descriptor_rev2 *)__acpi_map_table(phys, size);
633 if (!fadt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 printk(KERN_WARNING PREFIX "Unable to map FADT\n");
635 return 0;
636 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 /* initialize sci_int early for INT_SRC_OVR MADT parsing */
638 acpi_fadt.sci_int = fadt->sci_int;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
Chris Wedgwood15e88692005-04-18 08:01:30 -0700640#ifdef CONFIG_ACPI_BUS
Jason Davis90660ec2005-04-16 15:24:53 -0700641 /* initialize rev and apic_phys_dest_mode for x86_64 genapic */
642 acpi_fadt.revision = fadt->revision;
Len Brown4be44fc2005-08-05 00:44:28 -0400643 acpi_fadt.force_apic_physical_destination_mode =
644 fadt->force_apic_physical_destination_mode;
Chris Wedgwood15e88692005-04-18 08:01:30 -0700645#endif
Jason Davis90660ec2005-04-16 15:24:53 -0700646
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647#ifdef CONFIG_X86_PM_TIMER
648 /* detect the location of the ACPI PM Timer */
649 if (fadt->revision >= FADT2_REVISION_ID) {
650 /* FADT rev. 2 */
Len Brown4be44fc2005-08-05 00:44:28 -0400651 if (fadt->xpm_tmr_blk.address_space_id !=
652 ACPI_ADR_SPACE_SYSTEM_IO)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 return 0;
654
655 pmtmr_ioport = fadt->xpm_tmr_blk.address;
656 } else {
657 /* FADT rev. 1 */
658 pmtmr_ioport = fadt->V1_pm_tmr_blk;
659 }
660 if (pmtmr_ioport)
Len Brown4be44fc2005-08-05 00:44:28 -0400661 printk(KERN_INFO PREFIX "PM-Timer IO Port: %#x\n",
662 pmtmr_ioport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663#endif
664 return 0;
665}
666
Len Brown4be44fc2005-08-05 00:44:28 -0400667unsigned long __init acpi_find_rsdp(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668{
Len Brown4be44fc2005-08-05 00:44:28 -0400669 unsigned long rsdp_phys = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
671 if (efi_enabled) {
672 if (efi.acpi20)
673 return __pa(efi.acpi20);
674 else if (efi.acpi)
675 return __pa(efi.acpi);
676 }
677 /*
678 * Scan memory looking for the RSDP signature. First search EBDA (low
679 * memory) paragraphs and then search upper memory (E0000-FFFFF).
680 */
Len Brown4be44fc2005-08-05 00:44:28 -0400681 rsdp_phys = acpi_scan_rsdp(0, 0x400);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 if (!rsdp_phys)
Len Brown4be44fc2005-08-05 00:44:28 -0400683 rsdp_phys = acpi_scan_rsdp(0xE0000, 0x20000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
685 return rsdp_phys;
686}
687
688#ifdef CONFIG_X86_LOCAL_APIC
689/*
690 * Parse LAPIC entries in MADT
691 * returns 0 on success, < 0 on error
692 */
Len Brown4be44fc2005-08-05 00:44:28 -0400693static int __init acpi_parse_madt_lapic_entries(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694{
695 int count;
696
697 /*
698 * Note that the LAPIC address is obtained from the MADT (32-bit value)
699 * and (optionally) overriden by a LAPIC_ADDR_OVR entry (64-bit value).
700 */
701
Len Brown4be44fc2005-08-05 00:44:28 -0400702 count =
703 acpi_table_parse_madt(ACPI_MADT_LAPIC_ADDR_OVR,
704 acpi_parse_lapic_addr_ovr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 if (count < 0) {
Len Brown4be44fc2005-08-05 00:44:28 -0400706 printk(KERN_ERR PREFIX
707 "Error parsing LAPIC address override entry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 return count;
709 }
710
711 mp_register_lapic_address(acpi_lapic_addr);
712
713 count = acpi_table_parse_madt(ACPI_MADT_LAPIC, acpi_parse_lapic,
Len Brown4be44fc2005-08-05 00:44:28 -0400714 MAX_APICS);
715 if (!count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 printk(KERN_ERR PREFIX "No LAPIC entries present\n");
717 /* TBD: Cleanup to allow fallback to MPS */
718 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400719 } else if (count < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 printk(KERN_ERR PREFIX "Error parsing LAPIC entry\n");
721 /* TBD: Cleanup to allow fallback to MPS */
722 return count;
723 }
724
Len Brown4be44fc2005-08-05 00:44:28 -0400725 count =
726 acpi_table_parse_madt(ACPI_MADT_LAPIC_NMI, acpi_parse_lapic_nmi, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 if (count < 0) {
728 printk(KERN_ERR PREFIX "Error parsing LAPIC NMI entry\n");
729 /* TBD: Cleanup to allow fallback to MPS */
730 return count;
731 }
732 return 0;
733}
Len Brown4be44fc2005-08-05 00:44:28 -0400734#endif /* CONFIG_X86_LOCAL_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
Len Brown84663612005-08-24 12:09:07 -0400736#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737/*
738 * Parse IOAPIC related entries in MADT
739 * returns 0 on success, < 0 on error
740 */
Len Brown4be44fc2005-08-05 00:44:28 -0400741static int __init acpi_parse_madt_ioapic_entries(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742{
743 int count;
744
745 /*
746 * ACPI interpreter is required to complete interrupt setup,
747 * so if it is off, don't enumerate the io-apics with ACPI.
748 * If MPS is present, it will handle them,
749 * otherwise the system will stay in PIC mode
750 */
751 if (acpi_disabled || acpi_noirq) {
752 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400753 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
755 /*
Len Brown4be44fc2005-08-05 00:44:28 -0400756 * if "noapic" boot option, don't look for IO-APICs
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 */
758 if (skip_ioapic_setup) {
759 printk(KERN_INFO PREFIX "Skipping IOAPIC probe "
Len Brown4be44fc2005-08-05 00:44:28 -0400760 "due to 'noapic' option.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 return -ENODEV;
762 }
763
Len Brown4be44fc2005-08-05 00:44:28 -0400764 count =
765 acpi_table_parse_madt(ACPI_MADT_IOAPIC, acpi_parse_ioapic,
766 MAX_IO_APICS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 if (!count) {
768 printk(KERN_ERR PREFIX "No IOAPIC entries present\n");
769 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400770 } else if (count < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 printk(KERN_ERR PREFIX "Error parsing IOAPIC entry\n");
772 return count;
773 }
774
Len Brown4be44fc2005-08-05 00:44:28 -0400775 count =
776 acpi_table_parse_madt(ACPI_MADT_INT_SRC_OVR, acpi_parse_int_src_ovr,
777 NR_IRQ_VECTORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 if (count < 0) {
Len Brown4be44fc2005-08-05 00:44:28 -0400779 printk(KERN_ERR PREFIX
780 "Error parsing interrupt source overrides entry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 /* TBD: Cleanup to allow fallback to MPS */
782 return count;
783 }
784
785 /*
786 * If BIOS did not supply an INT_SRC_OVR for the SCI
787 * pretend we got one so we can set the SCI flags.
788 */
789 if (!acpi_sci_override_gsi)
790 acpi_sci_ioapic_setup(acpi_fadt.sci_int, 0, 0);
791
792 /* Fill in identity legacy mapings where no override */
793 mp_config_acpi_legacy_irqs();
794
Len Brown4be44fc2005-08-05 00:44:28 -0400795 count =
796 acpi_table_parse_madt(ACPI_MADT_NMI_SRC, acpi_parse_nmi_src,
797 NR_IRQ_VECTORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 if (count < 0) {
799 printk(KERN_ERR PREFIX "Error parsing NMI SRC entry\n");
800 /* TBD: Cleanup to allow fallback to MPS */
801 return count;
802 }
803
804 return 0;
805}
806#else
807static inline int acpi_parse_madt_ioapic_entries(void)
808{
809 return -1;
810}
Len Brown84663612005-08-24 12:09:07 -0400811#endif /* !CONFIG_X86_IO_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
Len Brown4be44fc2005-08-05 00:44:28 -0400813static void __init acpi_process_madt(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814{
815#ifdef CONFIG_X86_LOCAL_APIC
816 int count, error;
817
818 count = acpi_table_parse(ACPI_APIC, acpi_parse_madt);
819 if (count >= 1) {
820
821 /*
822 * Parse MADT LAPIC entries
823 */
824 error = acpi_parse_madt_lapic_entries();
825 if (!error) {
826 acpi_lapic = 1;
827
828 /*
829 * Parse MADT IO-APIC entries
830 */
831 error = acpi_parse_madt_ioapic_entries();
832 if (!error) {
833 acpi_irq_model = ACPI_IRQ_MODEL_IOAPIC;
834 acpi_irq_balance_set(NULL);
835 acpi_ioapic = 1;
836
837 smp_found_config = 1;
838 clustered_apic_check();
839 }
840 }
841 if (error == -EINVAL) {
842 /*
843 * Dell Precision Workstation 410, 610 come here.
844 */
Len Brown4be44fc2005-08-05 00:44:28 -0400845 printk(KERN_ERR PREFIX
846 "Invalid BIOS MADT, disabling ACPI\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 disable_acpi();
848 }
849 }
850#endif
851 return;
852}
853
Andrey Paninaea00142005-06-25 14:54:42 -0700854extern int acpi_force;
855
856#ifdef __i386__
857
858#ifdef CONFIG_ACPI_PCI
859static int __init disable_acpi_irq(struct dmi_system_id *d)
860{
861 if (!acpi_force) {
862 printk(KERN_NOTICE "%s detected: force use of acpi=noirq\n",
863 d->ident);
864 acpi_noirq_set();
865 }
866 return 0;
867}
868
869static int __init disable_acpi_pci(struct dmi_system_id *d)
870{
871 if (!acpi_force) {
872 printk(KERN_NOTICE "%s detected: force use of pci=noacpi\n",
873 d->ident);
874 acpi_disable_pci();
875 }
876 return 0;
877}
878#endif
879
880static int __init dmi_disable_acpi(struct dmi_system_id *d)
881{
882 if (!acpi_force) {
Len Brown4be44fc2005-08-05 00:44:28 -0400883 printk(KERN_NOTICE "%s detected: acpi off\n", d->ident);
Andrey Paninaea00142005-06-25 14:54:42 -0700884 disable_acpi();
885 } else {
886 printk(KERN_NOTICE
887 "Warning: DMI blacklist says broken, but acpi forced\n");
888 }
889 return 0;
890}
891
892/*
893 * Limit ACPI to CPU enumeration for HT
894 */
895static int __init force_acpi_ht(struct dmi_system_id *d)
896{
897 if (!acpi_force) {
Len Brown4be44fc2005-08-05 00:44:28 -0400898 printk(KERN_NOTICE "%s detected: force use of acpi=ht\n",
899 d->ident);
Andrey Paninaea00142005-06-25 14:54:42 -0700900 disable_acpi();
901 acpi_ht = 1;
902 } else {
903 printk(KERN_NOTICE
904 "Warning: acpi=force overrules DMI blacklist: acpi=ht\n");
905 }
906 return 0;
907}
908
909/*
910 * If your system is blacklisted here, but you find that acpi=force
911 * works for you, please contact acpi-devel@sourceforge.net
912 */
913static struct dmi_system_id __initdata acpi_dmi_table[] = {
914 /*
915 * Boxes that need ACPI disabled
916 */
917 {
Len Brown4be44fc2005-08-05 00:44:28 -0400918 .callback = dmi_disable_acpi,
919 .ident = "IBM Thinkpad",
920 .matches = {
921 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
922 DMI_MATCH(DMI_BOARD_NAME, "2629H1G"),
923 },
924 },
Andrey Paninaea00142005-06-25 14:54:42 -0700925
926 /*
927 * Boxes that need acpi=ht
928 */
929 {
Len Brown4be44fc2005-08-05 00:44:28 -0400930 .callback = force_acpi_ht,
931 .ident = "FSC Primergy T850",
932 .matches = {
933 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
934 DMI_MATCH(DMI_PRODUCT_NAME, "PRIMERGY T850"),
935 },
936 },
Andrey Paninaea00142005-06-25 14:54:42 -0700937 {
Len Brown4be44fc2005-08-05 00:44:28 -0400938 .callback = force_acpi_ht,
939 .ident = "DELL GX240",
940 .matches = {
941 DMI_MATCH(DMI_BOARD_VENDOR, "Dell Computer Corporation"),
942 DMI_MATCH(DMI_BOARD_NAME, "OptiPlex GX240"),
943 },
944 },
Andrey Paninaea00142005-06-25 14:54:42 -0700945 {
Len Brown4be44fc2005-08-05 00:44:28 -0400946 .callback = force_acpi_ht,
947 .ident = "HP VISUALIZE NT Workstation",
948 .matches = {
949 DMI_MATCH(DMI_BOARD_VENDOR, "Hewlett-Packard"),
950 DMI_MATCH(DMI_PRODUCT_NAME, "HP VISUALIZE NT Workstation"),
951 },
952 },
Andrey Paninaea00142005-06-25 14:54:42 -0700953 {
Len Brown4be44fc2005-08-05 00:44:28 -0400954 .callback = force_acpi_ht,
955 .ident = "Compaq Workstation W8000",
956 .matches = {
957 DMI_MATCH(DMI_SYS_VENDOR, "Compaq"),
958 DMI_MATCH(DMI_PRODUCT_NAME, "Workstation W8000"),
959 },
960 },
Andrey Paninaea00142005-06-25 14:54:42 -0700961 {
Len Brown4be44fc2005-08-05 00:44:28 -0400962 .callback = force_acpi_ht,
963 .ident = "ASUS P4B266",
964 .matches = {
965 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
966 DMI_MATCH(DMI_BOARD_NAME, "P4B266"),
967 },
968 },
Andrey Paninaea00142005-06-25 14:54:42 -0700969 {
Len Brown4be44fc2005-08-05 00:44:28 -0400970 .callback = force_acpi_ht,
971 .ident = "ASUS P2B-DS",
972 .matches = {
973 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
974 DMI_MATCH(DMI_BOARD_NAME, "P2B-DS"),
975 },
976 },
Andrey Paninaea00142005-06-25 14:54:42 -0700977 {
Len Brown4be44fc2005-08-05 00:44:28 -0400978 .callback = force_acpi_ht,
979 .ident = "ASUS CUR-DLS",
980 .matches = {
981 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
982 DMI_MATCH(DMI_BOARD_NAME, "CUR-DLS"),
983 },
984 },
Andrey Paninaea00142005-06-25 14:54:42 -0700985 {
Len Brown4be44fc2005-08-05 00:44:28 -0400986 .callback = force_acpi_ht,
987 .ident = "ABIT i440BX-W83977",
988 .matches = {
989 DMI_MATCH(DMI_BOARD_VENDOR, "ABIT <http://www.abit.com>"),
990 DMI_MATCH(DMI_BOARD_NAME, "i440BX-W83977 (BP6)"),
991 },
992 },
Andrey Paninaea00142005-06-25 14:54:42 -0700993 {
Len Brown4be44fc2005-08-05 00:44:28 -0400994 .callback = force_acpi_ht,
995 .ident = "IBM Bladecenter",
996 .matches = {
997 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
998 DMI_MATCH(DMI_BOARD_NAME, "IBM eServer BladeCenter HS20"),
999 },
1000 },
Andrey Paninaea00142005-06-25 14:54:42 -07001001 {
Len Brown4be44fc2005-08-05 00:44:28 -04001002 .callback = force_acpi_ht,
1003 .ident = "IBM eServer xSeries 360",
1004 .matches = {
1005 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1006 DMI_MATCH(DMI_BOARD_NAME, "eServer xSeries 360"),
1007 },
1008 },
Andrey Paninaea00142005-06-25 14:54:42 -07001009 {
Len Brown4be44fc2005-08-05 00:44:28 -04001010 .callback = force_acpi_ht,
1011 .ident = "IBM eserver xSeries 330",
1012 .matches = {
1013 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1014 DMI_MATCH(DMI_BOARD_NAME, "eserver xSeries 330"),
1015 },
1016 },
Andrey Paninaea00142005-06-25 14:54:42 -07001017 {
Len Brown4be44fc2005-08-05 00:44:28 -04001018 .callback = force_acpi_ht,
1019 .ident = "IBM eserver xSeries 440",
1020 .matches = {
1021 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1022 DMI_MATCH(DMI_PRODUCT_NAME, "eserver xSeries 440"),
1023 },
1024 },
Andrey Paninaea00142005-06-25 14:54:42 -07001025
1026#ifdef CONFIG_ACPI_PCI
1027 /*
1028 * Boxes that need ACPI PCI IRQ routing disabled
1029 */
1030 {
Len Brown4be44fc2005-08-05 00:44:28 -04001031 .callback = disable_acpi_irq,
1032 .ident = "ASUS A7V",
1033 .matches = {
1034 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC"),
1035 DMI_MATCH(DMI_BOARD_NAME, "<A7V>"),
1036 /* newer BIOS, Revision 1011, does work */
1037 DMI_MATCH(DMI_BIOS_VERSION,
1038 "ASUS A7V ACPI BIOS Revision 1007"),
1039 },
1040 },
Andrey Paninaea00142005-06-25 14:54:42 -07001041
1042 /*
1043 * Boxes that need ACPI PCI IRQ routing and PCI scan disabled
1044 */
Len Brown4be44fc2005-08-05 00:44:28 -04001045 { /* _BBN 0 bug */
1046 .callback = disable_acpi_pci,
1047 .ident = "ASUS PR-DLS",
1048 .matches = {
1049 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1050 DMI_MATCH(DMI_BOARD_NAME, "PR-DLS"),
1051 DMI_MATCH(DMI_BIOS_VERSION,
1052 "ASUS PR-DLS ACPI BIOS Revision 1010"),
1053 DMI_MATCH(DMI_BIOS_DATE, "03/21/2003")
1054 },
1055 },
Andrey Paninaea00142005-06-25 14:54:42 -07001056 {
Len Brown4be44fc2005-08-05 00:44:28 -04001057 .callback = disable_acpi_pci,
1058 .ident = "Acer TravelMate 36x Laptop",
1059 .matches = {
1060 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
1061 DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 360"),
1062 },
1063 },
Andrey Paninaea00142005-06-25 14:54:42 -07001064#endif
Len Brown4be44fc2005-08-05 00:44:28 -04001065 {}
Andrey Paninaea00142005-06-25 14:54:42 -07001066};
1067
Len Brown4be44fc2005-08-05 00:44:28 -04001068#endif /* __i386__ */
Andrey Paninaea00142005-06-25 14:54:42 -07001069
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070/*
1071 * acpi_boot_table_init() and acpi_boot_init()
1072 * called from setup_arch(), always.
1073 * 1. checksums all tables
1074 * 2. enumerates lapics
1075 * 3. enumerates io-apics
1076 *
1077 * acpi_table_init() is separate to allow reading SRAT without
1078 * other side effects.
1079 *
1080 * side effects of acpi_boot_init:
1081 * acpi_lapic = 1 if LAPIC found
1082 * acpi_ioapic = 1 if IOAPIC found
1083 * if (acpi_lapic && acpi_ioapic) smp_found_config = 1;
1084 * if acpi_blacklisted() acpi_disabled = 1;
1085 * acpi_irq_model=...
1086 * ...
1087 *
1088 * return value: (currently ignored)
1089 * 0: success
1090 * !0: failure
1091 */
1092
Len Brown4be44fc2005-08-05 00:44:28 -04001093int __init acpi_boot_table_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094{
1095 int error;
1096
Andrey Paninaea00142005-06-25 14:54:42 -07001097#ifdef __i386__
1098 dmi_check_system(acpi_dmi_table);
1099#endif
1100
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 /*
1102 * If acpi_disabled, bail out
1103 * One exception: acpi=ht continues far enough to enumerate LAPICs
1104 */
1105 if (acpi_disabled && !acpi_ht)
Len Brown4be44fc2005-08-05 00:44:28 -04001106 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107
1108 /*
1109 * Initialize the ACPI boot-time table parser.
1110 */
1111 error = acpi_table_init();
1112 if (error) {
1113 disable_acpi();
1114 return error;
1115 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116#ifdef __i386__
1117 check_acpi_pci();
1118#endif
1119
1120 acpi_table_parse(ACPI_BOOT, acpi_parse_sbf);
1121
1122 /*
1123 * blacklist may disable ACPI entirely
1124 */
1125 error = acpi_blacklisted();
1126 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 if (acpi_force) {
1128 printk(KERN_WARNING PREFIX "acpi=force override\n");
1129 } else {
1130 printk(KERN_WARNING PREFIX "Disabling ACPI support\n");
1131 disable_acpi();
1132 return error;
1133 }
1134 }
1135
1136 return 0;
1137}
1138
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139int __init acpi_boot_init(void)
1140{
1141 /*
1142 * If acpi_disabled, bail out
1143 * One exception: acpi=ht continues far enough to enumerate LAPICs
1144 */
1145 if (acpi_disabled && !acpi_ht)
Len Brown4be44fc2005-08-05 00:44:28 -04001146 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
1148 acpi_table_parse(ACPI_BOOT, acpi_parse_sbf);
1149
1150 /*
1151 * set sci_int and PM timer address
1152 */
1153 acpi_table_parse(ACPI_FADT, acpi_parse_fadt);
1154
1155 /*
1156 * Process the Multiple APIC Description Table (MADT), if present
1157 */
1158 acpi_process_madt();
1159
1160 acpi_table_parse(ACPI_HPET, acpi_parse_hpet);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161
1162 return 0;
1163}