blob: 2147511ea78d278835fa031851b501c7bb36be76 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/acpi.h>
28#include <linux/efi.h>
Ashok Raj73fea172006-09-26 10:52:35 +020029#include <linux/cpumask.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>
adurbin@google.comf0f4c342006-09-26 10:52:39 +020033#include <linux/bootmem.h>
34#include <linux/ioport.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36#include <asm/pgtable.h>
37#include <asm/io_apic.h>
38#include <asm/apic.h>
39#include <asm/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <asm/mpspec.h>
41
Adrian Bunke8924ac2006-09-26 10:52:35 +020042static int __initdata acpi_force = 0;
Rusty Russell1a3f2392006-09-26 10:52:32 +020043
Andi Kleendf3bb572006-09-26 10:52:33 +020044#ifdef CONFIG_ACPI
45int acpi_disabled = 0;
46#else
47int acpi_disabled = 1;
48#endif
49EXPORT_SYMBOL(acpi_disabled);
50
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#ifdef CONFIG_X86_64
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include <asm/proto.h>
54
Linus Torvalds637029c2006-02-27 20:41:56 -080055static inline int acpi_madt_oem_check(char *oem_id, char *oem_table_id) { return 0; }
56
57
Len Brown4be44fc2005-08-05 00:44:28 -040058#else /* X86 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60#ifdef CONFIG_X86_LOCAL_APIC
61#include <mach_apic.h>
62#include <mach_mpparse.h>
Len Brown4be44fc2005-08-05 00:44:28 -040063#endif /* CONFIG_X86_LOCAL_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Len Brown4be44fc2005-08-05 00:44:28 -040065#endif /* X86 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67#define BAD_MADT_ENTRY(entry, end) ( \
68 (!entry) || (unsigned long)entry + sizeof(*entry) > end || \
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +030069 ((struct acpi_subtable_header *)entry)->length < sizeof(*entry))
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
71#define PREFIX "ACPI: "
72
Andrew Morton90d53902006-11-02 22:07:18 -080073int acpi_noirq; /* skip ACPI IRQ initialization */
Len Brown4be44fc2005-08-05 00:44:28 -040074int acpi_pci_disabled __initdata; /* skip ACPI PCI scan and IRQ initialization */
Linus Torvalds1da177e2005-04-16 15:20:36 -070075int acpi_ht __initdata = 1; /* enable HT */
76
77int acpi_lapic;
78int acpi_ioapic;
79int acpi_strict;
80EXPORT_SYMBOL(acpi_strict);
81
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +030082u8 acpi_sci_flags __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083int acpi_sci_override_gsi __initdata;
84int acpi_skip_timer_override __initdata;
Andi Kleenfa18f472006-11-14 16:57:46 +010085int acpi_use_timer_override __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
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
Andi Kleen7a4a76c2006-01-11 22:43:39 +0100118 if (phys_addr+size <= (end_pfn_map << PAGE_SHIFT) + PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 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. */
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +0300169struct acpi_mcfg_allocation *pci_mmcfg_config;
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700170int pci_mmcfg_config_num;
171
Alexey Starikovskiyceb6c462007-02-02 19:48:22 +0300172int __init acpi_parse_mcfg(struct acpi_table_header *header)
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
Alexey Starikovskiyceb6c462007-02-02 19:48:22 +0300178 if (!header)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 return -EINVAL;
180
Alexey Starikovskiyceb6c462007-02-02 19:48:22 +0300181 mcfg = (struct acpi_table_mcfg *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700183 /* how many config structures do we have */
184 pci_mmcfg_config_num = 0;
Alexey Starikovskiyceb6c462007-02-02 19:48:22 +0300185 i = header->length - sizeof(struct acpi_table_mcfg);
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +0300186 while (i >= sizeof(struct acpi_mcfg_allocation)) {
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700187 ++pci_mmcfg_config_num;
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +0300188 i -= sizeof(struct acpi_mcfg_allocation);
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700189 };
190 if (pci_mmcfg_config_num == 0) {
191 printk(KERN_ERR PREFIX "MMCONFIG has no entries\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 return -ENODEV;
193 }
194
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700195 config_size = pci_mmcfg_config_num * sizeof(*pci_mmcfg_config);
196 pci_mmcfg_config = kmalloc(config_size, GFP_KERNEL);
197 if (!pci_mmcfg_config) {
198 printk(KERN_WARNING PREFIX
199 "No memory for MCFG config tables\n");
200 return -ENOMEM;
201 }
202
Alexey Starikovskiyad363f82007-02-02 19:48:22 +0300203 memcpy(pci_mmcfg_config, &mcfg[1], config_size);
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700204 for (i = 0; i < pci_mmcfg_config_num; ++i) {
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +0300205 if (pci_mmcfg_config[i].address > 0xFFFFFFFF) {
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700206 printk(KERN_ERR PREFIX
207 "MMCONFIG not in low 4GB of memory\n");
Konrad Rzeszutekacc7c2e2006-06-15 12:08:30 -0400208 kfree(pci_mmcfg_config);
209 pci_mmcfg_config_num = 0;
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700210 return -ENODEV;
211 }
212 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
214 return 0;
215}
Len Brown4be44fc2005-08-05 00:44:28 -0400216#endif /* CONFIG_PCI_MMCONFIG */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
218#ifdef CONFIG_X86_LOCAL_APIC
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +0300219static int __init acpi_parse_madt(struct acpi_table_header *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220{
Len Brown4be44fc2005-08-05 00:44:28 -0400221 struct acpi_table_madt *madt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +0300223 if (!cpu_has_apic)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 return -EINVAL;
225
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +0300226 madt = (struct acpi_table_madt *)table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 if (!madt) {
228 printk(KERN_WARNING PREFIX "Unable to map MADT\n");
229 return -ENODEV;
230 }
231
Alexey Starikovskiyad363f82007-02-02 19:48:22 +0300232 if (madt->address) {
233 acpi_lapic_addr = (u64) madt->address;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
235 printk(KERN_DEBUG PREFIX "Local APIC address 0x%08x\n",
Alexey Starikovskiyad363f82007-02-02 19:48:22 +0300236 madt->address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 }
238
239 acpi_madt_oem_check(madt->header.oem_id, madt->header.oem_table_id);
Len Brown4be44fc2005-08-05 00:44:28 -0400240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 return 0;
242}
243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244static int __init
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300245acpi_parse_lapic(struct acpi_subtable_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246{
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300247 struct acpi_madt_local_apic *processor = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300249 processor = (struct acpi_madt_local_apic *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251 if (BAD_MADT_ENTRY(processor, end))
252 return -EINVAL;
253
254 acpi_table_print_madt_entry(header);
255
Ashok Raj7f66ae42006-02-03 21:51:50 +0100256 /* Record local apic id only when enabled */
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300257 if (processor->lapic_flags & ACPI_MADT_ENABLED)
258 x86_acpiid_to_apicid[processor->processor_id] = processor->id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Ashok Raj7f66ae42006-02-03 21:51:50 +0100260 /*
261 * We need to register disabled CPU as well to permit
262 * counting disabled CPUs. This allows us to size
263 * cpus_possible_map more accurately, to permit
264 * to not preallocating memory for all NR_CPUS
265 * when we use CPU hotplug.
266 */
Len Brown4be44fc2005-08-05 00:44:28 -0400267 mp_register_lapic(processor->id, /* APIC ID */
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300268 processor->lapic_flags & ACPI_MADT_ENABLED); /* Enabled? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
270 return 0;
271}
272
273static int __init
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300274acpi_parse_lapic_addr_ovr(struct acpi_subtable_header * header,
Len Brown4be44fc2005-08-05 00:44:28 -0400275 const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300277 struct acpi_madt_local_apic_override *lapic_addr_ovr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300279 lapic_addr_ovr = (struct acpi_madt_local_apic_override *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
281 if (BAD_MADT_ENTRY(lapic_addr_ovr, end))
282 return -EINVAL;
283
284 acpi_lapic_addr = lapic_addr_ovr->address;
285
286 return 0;
287}
288
289static int __init
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300290acpi_parse_lapic_nmi(struct acpi_subtable_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291{
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300292 struct acpi_madt_local_apic_nmi *lapic_nmi = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300294 lapic_nmi = (struct acpi_madt_local_apic_nmi *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
296 if (BAD_MADT_ENTRY(lapic_nmi, end))
297 return -EINVAL;
298
299 acpi_table_print_madt_entry(header);
300
301 if (lapic_nmi->lint != 1)
302 printk(KERN_WARNING PREFIX "NMI not connected to LINT 1!\n");
303
304 return 0;
305}
306
Len Brown4be44fc2005-08-05 00:44:28 -0400307#endif /*CONFIG_X86_LOCAL_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Len Brown84663612005-08-24 12:09:07 -0400309#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
311static int __init
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300312acpi_parse_ioapic(struct acpi_subtable_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300314 struct acpi_madt_io_apic *ioapic = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300316 ioapic = (struct acpi_madt_io_apic *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
318 if (BAD_MADT_ENTRY(ioapic, end))
319 return -EINVAL;
Len Brown4be44fc2005-08-05 00:44:28 -0400320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 acpi_table_print_madt_entry(header);
322
Len Brown4be44fc2005-08-05 00:44:28 -0400323 mp_register_ioapic(ioapic->id,
324 ioapic->address, ioapic->global_irq_base);
325
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 return 0;
327}
328
329/*
330 * Parse Interrupt Source Override for the ACPI SCI
331 */
Len Browne82c3542006-12-21 01:29:59 -0500332static void __init acpi_sci_ioapic_setup(u32 gsi, u16 polarity, u16 trigger)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333{
334 if (trigger == 0) /* compatible SCI trigger is level */
335 trigger = 3;
336
337 if (polarity == 0) /* compatible SCI polarity is low */
338 polarity = 3;
339
340 /* Command-line over-ride via acpi_sci= */
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300341 if (acpi_sci_flags & ACPI_MADT_TRIGGER_MASK)
342 trigger = (acpi_sci_flags & ACPI_MADT_TRIGGER_MASK) >> 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300344 if (acpi_sci_flags & ACPI_MADT_POLARITY_MASK)
345 polarity = acpi_sci_flags & ACPI_MADT_POLARITY_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
347 /*
Len Brown4be44fc2005-08-05 00:44:28 -0400348 * mp_config_acpi_legacy_irqs() already setup IRQs < 16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 * If GSI is < 16, this will update its flags,
350 * else it will create a new mp_irqs[] entry.
351 */
Len Brown7bdd21c2006-12-02 02:27:46 -0500352 mp_override_legacy_irq(gsi, polarity, trigger, gsi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
354 /*
355 * stash over-ride to indicate we've been here
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300356 * and for later update of acpi_gbl_FADT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 */
Len Brown7bdd21c2006-12-02 02:27:46 -0500358 acpi_sci_override_gsi = gsi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 return;
360}
361
362static int __init
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300363acpi_parse_int_src_ovr(struct acpi_subtable_header * header,
Len Brown4be44fc2005-08-05 00:44:28 -0400364 const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365{
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300366 struct acpi_madt_interrupt_override *intsrc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300368 intsrc = (struct acpi_madt_interrupt_override *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
370 if (BAD_MADT_ENTRY(intsrc, end))
371 return -EINVAL;
372
373 acpi_table_print_madt_entry(header);
374
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300375 if (intsrc->source_irq == acpi_gbl_FADT.sci_interrupt) {
Len Brown7bdd21c2006-12-02 02:27:46 -0500376 acpi_sci_ioapic_setup(intsrc->global_irq,
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300377 intsrc->inti_flags & ACPI_MADT_POLARITY_MASK,
378 (intsrc->inti_flags & ACPI_MADT_TRIGGER_MASK) >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 return 0;
380 }
381
382 if (acpi_skip_timer_override &&
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300383 intsrc->source_irq == 0 && intsrc->global_irq == 2) {
Len Brown4be44fc2005-08-05 00:44:28 -0400384 printk(PREFIX "BIOS IRQ0 pin2 override ignored.\n");
385 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 }
387
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300388 mp_override_legacy_irq(intsrc->source_irq,
389 intsrc->inti_flags & ACPI_MADT_POLARITY_MASK,
390 (intsrc->inti_flags & ACPI_MADT_TRIGGER_MASK) >> 2,
391 intsrc->global_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
393 return 0;
394}
395
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396static int __init
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300397acpi_parse_nmi_src(struct acpi_subtable_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398{
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300399 struct acpi_madt_nmi_source *nmi_src = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300401 nmi_src = (struct acpi_madt_nmi_source *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
403 if (BAD_MADT_ENTRY(nmi_src, end))
404 return -EINVAL;
405
406 acpi_table_print_madt_entry(header);
407
408 /* TBD: Support nimsrc entries? */
409
410 return 0;
411}
412
Len Brown4be44fc2005-08-05 00:44:28 -0400413#endif /* CONFIG_X86_IO_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415/*
416 * acpi_pic_sci_set_trigger()
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300417 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 * use ELCR to set PIC-mode trigger type for SCI
419 *
420 * If a PIC-mode SCI is not recognized or gives spurious IRQ7's
421 * it may require Edge Trigger -- use "acpi_sci=edge"
422 *
423 * Port 0x4d0-4d1 are ECLR1 and ECLR2, the Edge/Level Control Registers
424 * for the 8259 PIC. bit[n] = 1 means irq[n] is Level, otherwise Edge.
425 * ECLR1 is IRQ's 0-7 (IRQ 0, 1, 2 must be 0)
426 * ECLR2 is IRQ's 8-15 (IRQ 8, 13 must be 0)
427 */
428
Len Brown4be44fc2005-08-05 00:44:28 -0400429void __init acpi_pic_sci_set_trigger(unsigned int irq, u16 trigger)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430{
431 unsigned int mask = 1 << irq;
432 unsigned int old, new;
433
434 /* Real old ELCR mask */
435 old = inb(0x4d0) | (inb(0x4d1) << 8);
436
437 /*
438 * If we use ACPI to set PCI irq's, then we should clear ELCR
439 * since we will set it correctly as we enable the PCI irq
440 * routing.
441 */
442 new = acpi_noirq ? old : 0;
443
444 /*
445 * Update SCI information in the ELCR, it isn't in the PCI
446 * routing tables..
447 */
448 switch (trigger) {
Len Brown4be44fc2005-08-05 00:44:28 -0400449 case 1: /* Edge - clear */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 new &= ~mask;
451 break;
Len Brown4be44fc2005-08-05 00:44:28 -0400452 case 3: /* Level - set */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 new |= mask;
454 break;
455 }
456
457 if (old == new)
458 return;
459
460 printk(PREFIX "setting ELCR to %04x (from %04x)\n", new, old);
461 outb(new, 0x4d0);
462 outb(new >> 8, 0x4d1);
463}
464
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465int acpi_gsi_to_irq(u32 gsi, unsigned int *irq)
466{
Eric W. Biedermanf023d762006-10-04 02:16:52 -0700467 *irq = gsi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 return 0;
469}
470
Kenji Kaneshige1f3a6a12005-07-28 14:42:00 -0400471/*
472 * success: return IRQ number (>=0)
473 * failure: return < 0
474 */
Len Browncb654692005-12-28 02:43:51 -0500475int acpi_register_gsi(u32 gsi, int triggering, int polarity)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476{
477 unsigned int irq;
478 unsigned int plat_gsi = gsi;
479
480#ifdef CONFIG_PCI
481 /*
482 * Make sure all (legacy) PCI IRQs are set as level-triggered.
483 */
484 if (acpi_irq_model == ACPI_IRQ_MODEL_PIC) {
485 extern void eisa_set_level_irq(unsigned int irq);
486
Len Browncb654692005-12-28 02:43:51 -0500487 if (triggering == ACPI_LEVEL_SENSITIVE)
Len Brown4be44fc2005-08-05 00:44:28 -0400488 eisa_set_level_irq(gsi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 }
490#endif
491
492#ifdef CONFIG_X86_IO_APIC
493 if (acpi_irq_model == ACPI_IRQ_MODEL_IOAPIC) {
Len Browncb654692005-12-28 02:43:51 -0500494 plat_gsi = mp_register_gsi(gsi, triggering, polarity);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 }
496#endif
497 acpi_gsi_to_irq(plat_gsi, &irq);
498 return irq;
499}
Len Brown4be44fc2005-08-05 00:44:28 -0400500
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501EXPORT_SYMBOL(acpi_register_gsi);
502
503/*
504 * ACPI based hotplug support for CPU
505 */
506#ifdef CONFIG_ACPI_HOTPLUG_CPU
Len Brown4be44fc2005-08-05 00:44:28 -0400507int acpi_map_lsapic(acpi_handle handle, int *pcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508{
Ashok Raj73fea172006-09-26 10:52:35 +0200509 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
510 union acpi_object *obj;
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300511 struct acpi_madt_local_apic *lapic;
Ashok Raj73fea172006-09-26 10:52:35 +0200512 cpumask_t tmp_map, new_map;
513 u8 physid;
514 int cpu;
515
516 if (ACPI_FAILURE(acpi_evaluate_object(handle, "_MAT", NULL, &buffer)))
517 return -EINVAL;
518
519 if (!buffer.length || !buffer.pointer)
520 return -EINVAL;
521
522 obj = buffer.pointer;
523 if (obj->type != ACPI_TYPE_BUFFER ||
524 obj->buffer.length < sizeof(*lapic)) {
525 kfree(buffer.pointer);
526 return -EINVAL;
527 }
528
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300529 lapic = (struct acpi_madt_local_apic *)obj->buffer.pointer;
Ashok Raj73fea172006-09-26 10:52:35 +0200530
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300531 if (lapic->header.type != ACPI_MADT_TYPE_LOCAL_APIC ||
532 !(lapic->lapic_flags & ACPI_MADT_ENABLED)) {
Ashok Raj73fea172006-09-26 10:52:35 +0200533 kfree(buffer.pointer);
534 return -EINVAL;
535 }
536
537 physid = lapic->id;
538
539 kfree(buffer.pointer);
540 buffer.length = ACPI_ALLOCATE_BUFFER;
541 buffer.pointer = NULL;
542
543 tmp_map = cpu_present_map;
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300544 mp_register_lapic(physid, lapic->lapic_flags & ACPI_MADT_ENABLED);
Ashok Raj73fea172006-09-26 10:52:35 +0200545
546 /*
547 * If mp_register_lapic successfully generates a new logical cpu
548 * number, then the following will get us exactly what was mapped
549 */
550 cpus_andnot(new_map, cpu_present_map, tmp_map);
551 if (cpus_empty(new_map)) {
552 printk ("Unable to map lapic to logical cpu number\n");
553 return -EINVAL;
554 }
555
556 cpu = first_cpu(new_map);
557
558 *pcpu = cpu;
559 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560}
Len Brown4be44fc2005-08-05 00:44:28 -0400561
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562EXPORT_SYMBOL(acpi_map_lsapic);
563
Len Brown4be44fc2005-08-05 00:44:28 -0400564int acpi_unmap_lsapic(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565{
Ashok Raj73fea172006-09-26 10:52:35 +0200566 int i;
567
568 for_each_possible_cpu(i) {
569 if (x86_acpiid_to_apicid[i] == x86_cpu_to_apicid[cpu]) {
570 x86_acpiid_to_apicid[i] = -1;
571 break;
572 }
573 }
574 x86_cpu_to_apicid[cpu] = -1;
575 cpu_clear(cpu, cpu_present_map);
576 num_processors--;
577
578 return (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579}
Len Brown4be44fc2005-08-05 00:44:28 -0400580
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581EXPORT_SYMBOL(acpi_unmap_lsapic);
Len Brown4be44fc2005-08-05 00:44:28 -0400582#endif /* CONFIG_ACPI_HOTPLUG_CPU */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Len Brown4be44fc2005-08-05 00:44:28 -0400584int acpi_register_ioapic(acpi_handle handle, u64 phys_addr, u32 gsi_base)
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700585{
586 /* TBD */
587 return -EINVAL;
588}
Len Brown4be44fc2005-08-05 00:44:28 -0400589
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700590EXPORT_SYMBOL(acpi_register_ioapic);
591
Len Brown4be44fc2005-08-05 00:44:28 -0400592int acpi_unregister_ioapic(acpi_handle handle, u32 gsi_base)
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700593{
594 /* TBD */
595 return -EINVAL;
596}
Len Brown4be44fc2005-08-05 00:44:28 -0400597
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700598EXPORT_SYMBOL(acpi_unregister_ioapic);
599
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600static unsigned long __init
Len Brown4be44fc2005-08-05 00:44:28 -0400601acpi_scan_rsdp(unsigned long start, unsigned long length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602{
Len Brown4be44fc2005-08-05 00:44:28 -0400603 unsigned long offset = 0;
604 unsigned long sig_len = sizeof("RSD PTR ") - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
606 /*
607 * Scan all 16-byte boundaries of the physical memory region for the
608 * RSDP signature.
609 */
610 for (offset = 0; offset < length; offset += 16) {
Siddha, Suresh Bf6c2e332005-11-05 17:25:53 +0100611 if (strncmp((char *)(phys_to_virt(start) + offset), "RSD PTR ", sig_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 continue;
613 return (start + offset);
614 }
615
616 return 0;
617}
618
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300619static int __init acpi_parse_sbf(struct acpi_table_header *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620{
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300621 struct acpi_table_boot *sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300623 sb = (struct acpi_table_boot *)table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 if (!sb) {
625 printk(KERN_WARNING PREFIX "Unable to map SBF\n");
626 return -ENODEV;
627 }
628
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300629 sbf_port = sb->cmos_index; /* Save CMOS port */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
631 return 0;
632}
633
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634#ifdef CONFIG_HPET_TIMER
635
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300636static int __init acpi_parse_hpet(struct acpi_table_header *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637{
638 struct acpi_table_hpet *hpet_tbl;
adurbin@google.comf0f4c342006-09-26 10:52:39 +0200639 struct resource *hpet_res;
640 resource_size_t res_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300642 hpet_tbl = (struct acpi_table_hpet *)table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 if (!hpet_tbl) {
644 printk(KERN_WARNING PREFIX "Unable to map HPET\n");
645 return -ENODEV;
646 }
647
Alexey Starikovskiyad363f82007-02-02 19:48:22 +0300648 if (hpet_tbl->address.space_id != ACPI_SPACE_MEM) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 printk(KERN_WARNING PREFIX "HPET timers must be located in "
650 "memory.\n");
651 return -1;
652 }
adurbin@google.comf0f4c342006-09-26 10:52:39 +0200653
654#define HPET_RESOURCE_NAME_SIZE 9
655 hpet_res = alloc_bootmem(sizeof(*hpet_res) + HPET_RESOURCE_NAME_SIZE);
656 if (hpet_res) {
657 memset(hpet_res, 0, sizeof(*hpet_res));
658 hpet_res->name = (void *)&hpet_res[1];
659 hpet_res->flags = IORESOURCE_MEM | IORESOURCE_BUSY;
660 snprintf((char *)hpet_res->name, HPET_RESOURCE_NAME_SIZE,
Alexey Starikovskiyad363f82007-02-02 19:48:22 +0300661 "HPET %u", hpet_tbl->sequence);
adurbin@google.comf0f4c342006-09-26 10:52:39 +0200662 hpet_res->end = (1 * 1024) - 1;
663 }
664
Alexey Starikovskiyad363f82007-02-02 19:48:22 +0300665#ifdef CONFIG_X86_64
666 vxtime.hpet_address = hpet_tbl->address.address;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
Len Brown4be44fc2005-08-05 00:44:28 -0400668 printk(KERN_INFO PREFIX "HPET id: %#x base: %#lx\n",
Alexey Starikovskiyad363f82007-02-02 19:48:22 +0300669 hpet_tbl->id, vxtime.hpet_address);
adurbin@google.comf0f4c342006-09-26 10:52:39 +0200670
671 res_start = vxtime.hpet_address;
Alexey Starikovskiyad363f82007-02-02 19:48:22 +0300672#else /* X86 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 {
674 extern unsigned long hpet_address;
675
Alexey Starikovskiyad363f82007-02-02 19:48:22 +0300676 hpet_address = hpet_tbl->address.address;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 printk(KERN_INFO PREFIX "HPET id: %#x base: %#lx\n",
Alexey Starikovskiyad363f82007-02-02 19:48:22 +0300678 hpet_tbl->id, hpet_address);
adurbin@google.comf0f4c342006-09-26 10:52:39 +0200679
680 res_start = hpet_address;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 }
Alexey Starikovskiyad363f82007-02-02 19:48:22 +0300682#endif /* X86 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
adurbin@google.comf0f4c342006-09-26 10:52:39 +0200684 if (hpet_res) {
685 hpet_res->start = res_start;
686 hpet_res->end += res_start;
687 insert_resource(&iomem_resource, hpet_res);
688 }
689
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 return 0;
691}
692#else
693#define acpi_parse_hpet NULL
694#endif
695
696#ifdef CONFIG_X86_PM_TIMER
697extern u32 pmtmr_ioport;
698#endif
699
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300700static int __init acpi_parse_fadt(struct acpi_table_header *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701{
Jason Davis90660ec2005-04-16 15:24:53 -0700702
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703#ifdef CONFIG_X86_PM_TIMER
704 /* detect the location of the ACPI PM Timer */
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300705 if (acpi_gbl_FADT.header.revision >= FADT2_REVISION_ID) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 /* FADT rev. 2 */
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300707 if (acpi_gbl_FADT.xpm_timer_block.space_id !=
Len Brown4be44fc2005-08-05 00:44:28 -0400708 ACPI_ADR_SPACE_SYSTEM_IO)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 return 0;
710
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300711 pmtmr_ioport = acpi_gbl_FADT.xpm_timer_block.address;
David Shaohua Lie6e87b42005-09-21 01:35:00 -0400712 /*
713 * "X" fields are optional extensions to the original V1.0
714 * fields, so we must selectively expand V1.0 fields if the
715 * corresponding X field is zero.
716 */
717 if (!pmtmr_ioport)
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300718 pmtmr_ioport = acpi_gbl_FADT.pm_timer_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 } else {
720 /* FADT rev. 1 */
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300721 pmtmr_ioport = acpi_gbl_FADT.pm_timer_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 }
723 if (pmtmr_ioport)
Len Brown4be44fc2005-08-05 00:44:28 -0400724 printk(KERN_INFO PREFIX "PM-Timer IO Port: %#x\n",
725 pmtmr_ioport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726#endif
727 return 0;
728}
729
Len Brown4be44fc2005-08-05 00:44:28 -0400730unsigned long __init acpi_find_rsdp(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731{
Len Brown4be44fc2005-08-05 00:44:28 -0400732 unsigned long rsdp_phys = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
734 if (efi_enabled) {
Bjorn Helgaasb2c99e32006-03-26 01:37:08 -0800735 if (efi.acpi20 != EFI_INVALID_TABLE_ADDR)
736 return efi.acpi20;
737 else if (efi.acpi != EFI_INVALID_TABLE_ADDR)
738 return efi.acpi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 }
740 /*
741 * Scan memory looking for the RSDP signature. First search EBDA (low
742 * memory) paragraphs and then search upper memory (E0000-FFFFF).
743 */
Len Brown4be44fc2005-08-05 00:44:28 -0400744 rsdp_phys = acpi_scan_rsdp(0, 0x400);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 if (!rsdp_phys)
Len Brown4be44fc2005-08-05 00:44:28 -0400746 rsdp_phys = acpi_scan_rsdp(0xE0000, 0x20000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
748 return rsdp_phys;
749}
750
751#ifdef CONFIG_X86_LOCAL_APIC
752/*
753 * Parse LAPIC entries in MADT
754 * returns 0 on success, < 0 on error
755 */
Len Brown4be44fc2005-08-05 00:44:28 -0400756static int __init acpi_parse_madt_lapic_entries(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757{
758 int count;
759
Andi Kleen0fcd2702006-04-11 12:54:36 +0200760 if (!cpu_has_apic)
761 return -ENODEV;
762
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300763 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 * Note that the LAPIC address is obtained from the MADT (32-bit value)
765 * and (optionally) overriden by a LAPIC_ADDR_OVR entry (64-bit value).
766 */
767
Len Brown4be44fc2005-08-05 00:44:28 -0400768 count =
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300769 acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_APIC_OVERRIDE,
Len Brown4be44fc2005-08-05 00:44:28 -0400770 acpi_parse_lapic_addr_ovr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 if (count < 0) {
Len Brown4be44fc2005-08-05 00:44:28 -0400772 printk(KERN_ERR PREFIX
773 "Error parsing LAPIC address override entry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 return count;
775 }
776
777 mp_register_lapic_address(acpi_lapic_addr);
778
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300779 count = acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_APIC, acpi_parse_lapic,
Len Brown4be44fc2005-08-05 00:44:28 -0400780 MAX_APICS);
781 if (!count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 printk(KERN_ERR PREFIX "No LAPIC entries present\n");
783 /* TBD: Cleanup to allow fallback to MPS */
784 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400785 } else if (count < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 printk(KERN_ERR PREFIX "Error parsing LAPIC entry\n");
787 /* TBD: Cleanup to allow fallback to MPS */
788 return count;
789 }
790
Len Brown4be44fc2005-08-05 00:44:28 -0400791 count =
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300792 acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_APIC_NMI, acpi_parse_lapic_nmi, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 if (count < 0) {
794 printk(KERN_ERR PREFIX "Error parsing LAPIC NMI entry\n");
795 /* TBD: Cleanup to allow fallback to MPS */
796 return count;
797 }
798 return 0;
799}
Len Brown4be44fc2005-08-05 00:44:28 -0400800#endif /* CONFIG_X86_LOCAL_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
Len Brown84663612005-08-24 12:09:07 -0400802#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803/*
804 * Parse IOAPIC related entries in MADT
805 * returns 0 on success, < 0 on error
806 */
Len Brown4be44fc2005-08-05 00:44:28 -0400807static int __init acpi_parse_madt_ioapic_entries(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808{
809 int count;
810
811 /*
812 * ACPI interpreter is required to complete interrupt setup,
813 * so if it is off, don't enumerate the io-apics with ACPI.
814 * If MPS is present, it will handle them,
815 * otherwise the system will stay in PIC mode
816 */
817 if (acpi_disabled || acpi_noirq) {
818 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400819 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300821 if (!cpu_has_apic)
Andi Kleend3b6a342006-04-07 19:49:39 +0200822 return -ENODEV;
823
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 /*
Len Brown4be44fc2005-08-05 00:44:28 -0400825 * if "noapic" boot option, don't look for IO-APICs
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 */
827 if (skip_ioapic_setup) {
828 printk(KERN_INFO PREFIX "Skipping IOAPIC probe "
Len Brown4be44fc2005-08-05 00:44:28 -0400829 "due to 'noapic' option.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 return -ENODEV;
831 }
832
Len Brown4be44fc2005-08-05 00:44:28 -0400833 count =
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300834 acpi_table_parse_madt(ACPI_MADT_TYPE_IO_APIC, acpi_parse_ioapic,
Len Brown4be44fc2005-08-05 00:44:28 -0400835 MAX_IO_APICS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 if (!count) {
837 printk(KERN_ERR PREFIX "No IOAPIC entries present\n");
838 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400839 } else if (count < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 printk(KERN_ERR PREFIX "Error parsing IOAPIC entry\n");
841 return count;
842 }
843
Len Brown4be44fc2005-08-05 00:44:28 -0400844 count =
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300845 acpi_table_parse_madt(ACPI_MADT_TYPE_INTERRUPT_OVERRIDE, acpi_parse_int_src_ovr,
Len Brown4be44fc2005-08-05 00:44:28 -0400846 NR_IRQ_VECTORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 if (count < 0) {
Len Brown4be44fc2005-08-05 00:44:28 -0400848 printk(KERN_ERR PREFIX
849 "Error parsing interrupt source overrides entry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 /* TBD: Cleanup to allow fallback to MPS */
851 return count;
852 }
853
854 /*
855 * If BIOS did not supply an INT_SRC_OVR for the SCI
856 * pretend we got one so we can set the SCI flags.
857 */
858 if (!acpi_sci_override_gsi)
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300859 acpi_sci_ioapic_setup(acpi_gbl_FADT.sci_interrupt, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
861 /* Fill in identity legacy mapings where no override */
862 mp_config_acpi_legacy_irqs();
863
Len Brown4be44fc2005-08-05 00:44:28 -0400864 count =
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300865 acpi_table_parse_madt(ACPI_MADT_TYPE_NMI_SOURCE, acpi_parse_nmi_src,
Len Brown4be44fc2005-08-05 00:44:28 -0400866 NR_IRQ_VECTORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 if (count < 0) {
868 printk(KERN_ERR PREFIX "Error parsing NMI SRC entry\n");
869 /* TBD: Cleanup to allow fallback to MPS */
870 return count;
871 }
872
873 return 0;
874}
875#else
876static inline int acpi_parse_madt_ioapic_entries(void)
877{
878 return -1;
879}
Len Brown84663612005-08-24 12:09:07 -0400880#endif /* !CONFIG_X86_IO_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
Len Brown4be44fc2005-08-05 00:44:28 -0400882static void __init acpi_process_madt(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883{
884#ifdef CONFIG_X86_LOCAL_APIC
885 int count, error;
886
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300887 count = acpi_table_parse(ACPI_SIG_MADT, acpi_parse_madt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 if (count >= 1) {
889
890 /*
891 * Parse MADT LAPIC entries
892 */
893 error = acpi_parse_madt_lapic_entries();
894 if (!error) {
895 acpi_lapic = 1;
896
Venkatesh Pallipadi911a62d2005-09-03 15:56:31 -0700897#ifdef CONFIG_X86_GENERICARCH
898 generic_bigsmp_probe();
899#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 /*
901 * Parse MADT IO-APIC entries
902 */
903 error = acpi_parse_madt_ioapic_entries();
904 if (!error) {
905 acpi_irq_model = ACPI_IRQ_MODEL_IOAPIC;
906 acpi_irq_balance_set(NULL);
907 acpi_ioapic = 1;
908
909 smp_found_config = 1;
910 clustered_apic_check();
911 }
912 }
913 if (error == -EINVAL) {
914 /*
915 * Dell Precision Workstation 410, 610 come here.
916 */
Len Brown4be44fc2005-08-05 00:44:28 -0400917 printk(KERN_ERR PREFIX
918 "Invalid BIOS MADT, disabling ACPI\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 disable_acpi();
920 }
921 }
922#endif
923 return;
924}
925
Andrey Paninaea00142005-06-25 14:54:42 -0700926#ifdef __i386__
927
Andrey Paninaea00142005-06-25 14:54:42 -0700928static int __init disable_acpi_irq(struct dmi_system_id *d)
929{
930 if (!acpi_force) {
931 printk(KERN_NOTICE "%s detected: force use of acpi=noirq\n",
932 d->ident);
933 acpi_noirq_set();
934 }
935 return 0;
936}
937
938static int __init disable_acpi_pci(struct dmi_system_id *d)
939{
940 if (!acpi_force) {
941 printk(KERN_NOTICE "%s detected: force use of pci=noacpi\n",
942 d->ident);
943 acpi_disable_pci();
944 }
945 return 0;
946}
Andrey Paninaea00142005-06-25 14:54:42 -0700947
948static int __init dmi_disable_acpi(struct dmi_system_id *d)
949{
950 if (!acpi_force) {
Len Brown4be44fc2005-08-05 00:44:28 -0400951 printk(KERN_NOTICE "%s detected: acpi off\n", d->ident);
Andrey Paninaea00142005-06-25 14:54:42 -0700952 disable_acpi();
953 } else {
954 printk(KERN_NOTICE
955 "Warning: DMI blacklist says broken, but acpi forced\n");
956 }
957 return 0;
958}
959
960/*
961 * Limit ACPI to CPU enumeration for HT
962 */
963static int __init force_acpi_ht(struct dmi_system_id *d)
964{
965 if (!acpi_force) {
Len Brown4be44fc2005-08-05 00:44:28 -0400966 printk(KERN_NOTICE "%s detected: force use of acpi=ht\n",
967 d->ident);
Andrey Paninaea00142005-06-25 14:54:42 -0700968 disable_acpi();
969 acpi_ht = 1;
970 } else {
971 printk(KERN_NOTICE
972 "Warning: acpi=force overrules DMI blacklist: acpi=ht\n");
973 }
974 return 0;
975}
976
977/*
978 * If your system is blacklisted here, but you find that acpi=force
979 * works for you, please contact acpi-devel@sourceforge.net
980 */
981static struct dmi_system_id __initdata acpi_dmi_table[] = {
982 /*
983 * Boxes that need ACPI disabled
984 */
985 {
Len Brown4be44fc2005-08-05 00:44:28 -0400986 .callback = dmi_disable_acpi,
987 .ident = "IBM Thinkpad",
988 .matches = {
989 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
990 DMI_MATCH(DMI_BOARD_NAME, "2629H1G"),
991 },
992 },
Andrey Paninaea00142005-06-25 14:54:42 -0700993
994 /*
995 * Boxes that need acpi=ht
996 */
997 {
Len Brown4be44fc2005-08-05 00:44:28 -0400998 .callback = force_acpi_ht,
999 .ident = "FSC Primergy T850",
1000 .matches = {
1001 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
1002 DMI_MATCH(DMI_PRODUCT_NAME, "PRIMERGY T850"),
1003 },
1004 },
Andrey Paninaea00142005-06-25 14:54:42 -07001005 {
Len Brown4be44fc2005-08-05 00:44:28 -04001006 .callback = force_acpi_ht,
1007 .ident = "DELL GX240",
1008 .matches = {
1009 DMI_MATCH(DMI_BOARD_VENDOR, "Dell Computer Corporation"),
1010 DMI_MATCH(DMI_BOARD_NAME, "OptiPlex GX240"),
1011 },
1012 },
Andrey Paninaea00142005-06-25 14:54:42 -07001013 {
Len Brown4be44fc2005-08-05 00:44:28 -04001014 .callback = force_acpi_ht,
1015 .ident = "HP VISUALIZE NT Workstation",
1016 .matches = {
1017 DMI_MATCH(DMI_BOARD_VENDOR, "Hewlett-Packard"),
1018 DMI_MATCH(DMI_PRODUCT_NAME, "HP VISUALIZE NT Workstation"),
1019 },
1020 },
Andrey Paninaea00142005-06-25 14:54:42 -07001021 {
Len Brown4be44fc2005-08-05 00:44:28 -04001022 .callback = force_acpi_ht,
1023 .ident = "Compaq Workstation W8000",
1024 .matches = {
1025 DMI_MATCH(DMI_SYS_VENDOR, "Compaq"),
1026 DMI_MATCH(DMI_PRODUCT_NAME, "Workstation W8000"),
1027 },
1028 },
Andrey Paninaea00142005-06-25 14:54:42 -07001029 {
Len Brown4be44fc2005-08-05 00:44:28 -04001030 .callback = force_acpi_ht,
1031 .ident = "ASUS P4B266",
1032 .matches = {
1033 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1034 DMI_MATCH(DMI_BOARD_NAME, "P4B266"),
1035 },
1036 },
Andrey Paninaea00142005-06-25 14:54:42 -07001037 {
Len Brown4be44fc2005-08-05 00:44:28 -04001038 .callback = force_acpi_ht,
1039 .ident = "ASUS P2B-DS",
1040 .matches = {
1041 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1042 DMI_MATCH(DMI_BOARD_NAME, "P2B-DS"),
1043 },
1044 },
Andrey Paninaea00142005-06-25 14:54:42 -07001045 {
Len Brown4be44fc2005-08-05 00:44:28 -04001046 .callback = force_acpi_ht,
1047 .ident = "ASUS CUR-DLS",
1048 .matches = {
1049 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1050 DMI_MATCH(DMI_BOARD_NAME, "CUR-DLS"),
1051 },
1052 },
Andrey Paninaea00142005-06-25 14:54:42 -07001053 {
Len Brown4be44fc2005-08-05 00:44:28 -04001054 .callback = force_acpi_ht,
1055 .ident = "ABIT i440BX-W83977",
1056 .matches = {
1057 DMI_MATCH(DMI_BOARD_VENDOR, "ABIT <http://www.abit.com>"),
1058 DMI_MATCH(DMI_BOARD_NAME, "i440BX-W83977 (BP6)"),
1059 },
1060 },
Andrey Paninaea00142005-06-25 14:54:42 -07001061 {
Len Brown4be44fc2005-08-05 00:44:28 -04001062 .callback = force_acpi_ht,
1063 .ident = "IBM Bladecenter",
1064 .matches = {
1065 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1066 DMI_MATCH(DMI_BOARD_NAME, "IBM eServer BladeCenter HS20"),
1067 },
1068 },
Andrey Paninaea00142005-06-25 14:54:42 -07001069 {
Len Brown4be44fc2005-08-05 00:44:28 -04001070 .callback = force_acpi_ht,
1071 .ident = "IBM eServer xSeries 360",
1072 .matches = {
1073 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1074 DMI_MATCH(DMI_BOARD_NAME, "eServer xSeries 360"),
1075 },
1076 },
Andrey Paninaea00142005-06-25 14:54:42 -07001077 {
Len Brown4be44fc2005-08-05 00:44:28 -04001078 .callback = force_acpi_ht,
1079 .ident = "IBM eserver xSeries 330",
1080 .matches = {
1081 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1082 DMI_MATCH(DMI_BOARD_NAME, "eserver xSeries 330"),
1083 },
1084 },
Andrey Paninaea00142005-06-25 14:54:42 -07001085 {
Len Brown4be44fc2005-08-05 00:44:28 -04001086 .callback = force_acpi_ht,
1087 .ident = "IBM eserver xSeries 440",
1088 .matches = {
1089 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1090 DMI_MATCH(DMI_PRODUCT_NAME, "eserver xSeries 440"),
1091 },
1092 },
Andrey Paninaea00142005-06-25 14:54:42 -07001093
Andrey Paninaea00142005-06-25 14:54:42 -07001094 /*
1095 * Boxes that need ACPI PCI IRQ routing disabled
1096 */
1097 {
Len Brown4be44fc2005-08-05 00:44:28 -04001098 .callback = disable_acpi_irq,
1099 .ident = "ASUS A7V",
1100 .matches = {
1101 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC"),
1102 DMI_MATCH(DMI_BOARD_NAME, "<A7V>"),
1103 /* newer BIOS, Revision 1011, does work */
1104 DMI_MATCH(DMI_BIOS_VERSION,
1105 "ASUS A7V ACPI BIOS Revision 1007"),
1106 },
1107 },
Andrey Paninaea00142005-06-25 14:54:42 -07001108
1109 /*
1110 * Boxes that need ACPI PCI IRQ routing and PCI scan disabled
1111 */
Len Brown4be44fc2005-08-05 00:44:28 -04001112 { /* _BBN 0 bug */
1113 .callback = disable_acpi_pci,
1114 .ident = "ASUS PR-DLS",
1115 .matches = {
1116 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1117 DMI_MATCH(DMI_BOARD_NAME, "PR-DLS"),
1118 DMI_MATCH(DMI_BIOS_VERSION,
1119 "ASUS PR-DLS ACPI BIOS Revision 1010"),
1120 DMI_MATCH(DMI_BIOS_DATE, "03/21/2003")
1121 },
1122 },
Andrey Paninaea00142005-06-25 14:54:42 -07001123 {
Len Brown4be44fc2005-08-05 00:44:28 -04001124 .callback = disable_acpi_pci,
1125 .ident = "Acer TravelMate 36x Laptop",
1126 .matches = {
1127 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
1128 DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 360"),
1129 },
1130 },
Len Brown4be44fc2005-08-05 00:44:28 -04001131 {}
Andrey Paninaea00142005-06-25 14:54:42 -07001132};
1133
Len Brown4be44fc2005-08-05 00:44:28 -04001134#endif /* __i386__ */
Andrey Paninaea00142005-06-25 14:54:42 -07001135
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136/*
1137 * acpi_boot_table_init() and acpi_boot_init()
1138 * called from setup_arch(), always.
1139 * 1. checksums all tables
1140 * 2. enumerates lapics
1141 * 3. enumerates io-apics
1142 *
1143 * acpi_table_init() is separate to allow reading SRAT without
1144 * other side effects.
1145 *
1146 * side effects of acpi_boot_init:
1147 * acpi_lapic = 1 if LAPIC found
1148 * acpi_ioapic = 1 if IOAPIC found
1149 * if (acpi_lapic && acpi_ioapic) smp_found_config = 1;
1150 * if acpi_blacklisted() acpi_disabled = 1;
1151 * acpi_irq_model=...
1152 * ...
1153 *
1154 * return value: (currently ignored)
1155 * 0: success
1156 * !0: failure
1157 */
1158
Len Brown4be44fc2005-08-05 00:44:28 -04001159int __init acpi_boot_table_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160{
1161 int error;
1162
Andrey Paninaea00142005-06-25 14:54:42 -07001163#ifdef __i386__
1164 dmi_check_system(acpi_dmi_table);
1165#endif
1166
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 /*
1168 * If acpi_disabled, bail out
1169 * One exception: acpi=ht continues far enough to enumerate LAPICs
1170 */
1171 if (acpi_disabled && !acpi_ht)
Len Brown4be44fc2005-08-05 00:44:28 -04001172 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001174 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 * Initialize the ACPI boot-time table parser.
1176 */
1177 error = acpi_table_init();
1178 if (error) {
1179 disable_acpi();
1180 return error;
1181 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001183 acpi_table_parse(ACPI_SIG_BOOT, acpi_parse_sbf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184
1185 /*
1186 * blacklist may disable ACPI entirely
1187 */
1188 error = acpi_blacklisted();
1189 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 if (acpi_force) {
1191 printk(KERN_WARNING PREFIX "acpi=force override\n");
1192 } else {
1193 printk(KERN_WARNING PREFIX "Disabling ACPI support\n");
1194 disable_acpi();
1195 return error;
1196 }
1197 }
1198
1199 return 0;
1200}
1201
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202int __init acpi_boot_init(void)
1203{
1204 /*
1205 * If acpi_disabled, bail out
1206 * One exception: acpi=ht continues far enough to enumerate LAPICs
1207 */
1208 if (acpi_disabled && !acpi_ht)
Len Brown4be44fc2005-08-05 00:44:28 -04001209 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001211 acpi_table_parse(ACPI_SIG_BOOT, acpi_parse_sbf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
1213 /*
1214 * set sci_int and PM timer address
1215 */
Alexey Starikovskiyceb6c462007-02-02 19:48:22 +03001216 acpi_table_parse(ACPI_SIG_FADT, acpi_parse_fadt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217
1218 /*
1219 * Process the Multiple APIC Description Table (MADT), if present
1220 */
1221 acpi_process_madt();
1222
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001223 acpi_table_parse(ACPI_SIG_HPET, acpi_parse_hpet);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
1225 return 0;
1226}
Rusty Russell1a3f2392006-09-26 10:52:32 +02001227
1228static int __init parse_acpi(char *arg)
1229{
1230 if (!arg)
1231 return -EINVAL;
1232
1233 /* "acpi=off" disables both ACPI table parsing and interpreter */
1234 if (strcmp(arg, "off") == 0) {
1235 disable_acpi();
1236 }
1237 /* acpi=force to over-ride black-list */
1238 else if (strcmp(arg, "force") == 0) {
1239 acpi_force = 1;
1240 acpi_ht = 1;
1241 acpi_disabled = 0;
1242 }
1243 /* acpi=strict disables out-of-spec workarounds */
1244 else if (strcmp(arg, "strict") == 0) {
1245 acpi_strict = 1;
1246 }
1247 /* Limit ACPI just to boot-time to enable HT */
1248 else if (strcmp(arg, "ht") == 0) {
1249 if (!acpi_force)
1250 disable_acpi();
1251 acpi_ht = 1;
1252 }
1253 /* "acpi=noirq" disables ACPI interrupt routing */
1254 else if (strcmp(arg, "noirq") == 0) {
1255 acpi_noirq_set();
1256 } else {
1257 /* Core will printk when we return error. */
1258 return -EINVAL;
1259 }
1260 return 0;
1261}
1262early_param("acpi", parse_acpi);
1263
1264/* FIXME: Using pci= for an ACPI parameter is a travesty. */
1265static int __init parse_pci(char *arg)
1266{
1267 if (arg && strcmp(arg, "noacpi") == 0)
1268 acpi_disable_pci();
1269 return 0;
1270}
1271early_param("pci", parse_pci);
1272
1273#ifdef CONFIG_X86_IO_APIC
1274static int __init parse_acpi_skip_timer_override(char *arg)
1275{
1276 acpi_skip_timer_override = 1;
1277 return 0;
1278}
1279early_param("acpi_skip_timer_override", parse_acpi_skip_timer_override);
Andi Kleenfa18f472006-11-14 16:57:46 +01001280
1281static int __init parse_acpi_use_timer_override(char *arg)
1282{
1283 acpi_use_timer_override = 1;
1284 return 0;
1285}
1286early_param("acpi_use_timer_override", parse_acpi_use_timer_override);
Rusty Russell1a3f2392006-09-26 10:52:32 +02001287#endif /* CONFIG_X86_IO_APIC */
1288
1289static int __init setup_acpi_sci(char *s)
1290{
1291 if (!s)
1292 return -EINVAL;
1293 if (!strcmp(s, "edge"))
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001294 acpi_sci_flags = ACPI_MADT_TRIGGER_EDGE |
1295 (acpi_sci_flags & ~ACPI_MADT_TRIGGER_MASK);
Rusty Russell1a3f2392006-09-26 10:52:32 +02001296 else if (!strcmp(s, "level"))
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001297 acpi_sci_flags = ACPI_MADT_TRIGGER_LEVEL |
1298 (acpi_sci_flags & ~ACPI_MADT_TRIGGER_MASK);
Rusty Russell1a3f2392006-09-26 10:52:32 +02001299 else if (!strcmp(s, "high"))
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001300 acpi_sci_flags = ACPI_MADT_POLARITY_ACTIVE_HIGH |
1301 (acpi_sci_flags & ~ACPI_MADT_POLARITY_MASK);
Rusty Russell1a3f2392006-09-26 10:52:32 +02001302 else if (!strcmp(s, "low"))
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001303 acpi_sci_flags = ACPI_MADT_POLARITY_ACTIVE_LOW |
1304 (acpi_sci_flags & ~ACPI_MADT_POLARITY_MASK);
Rusty Russell1a3f2392006-09-26 10:52:32 +02001305 else
1306 return -EINVAL;
1307 return 0;
1308}
1309early_param("acpi_sci", setup_acpi_sci);
Andrew Mortond0a90812006-10-20 14:30:27 -07001310
1311int __acpi_acquire_global_lock(unsigned int *lock)
1312{
1313 unsigned int old, new, val;
1314 do {
1315 old = *lock;
1316 new = (((old & ~0x3) + 2) + ((old >> 1) & 0x1));
1317 val = cmpxchg(lock, old, new);
1318 } while (unlikely (val != old));
1319 return (new < 3) ? -1 : 0;
1320}
1321
1322int __acpi_release_global_lock(unsigned int *lock)
1323{
1324 unsigned int old, new, val;
1325 do {
1326 old = *lock;
1327 new = old & ~0x3;
1328 val = cmpxchg(lock, old, new);
1329 } while (unlikely (val != old));
1330 return old & 0x1;
1331}