blob: d9770a56511a06448f73e629f61d83be324f8c18 [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>
Thomas Gleixnerd66bea52007-02-16 01:27:57 -080028#include <linux/acpi_pmtmr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/efi.h>
Ashok Raj73fea172006-09-26 10:52:35 +020030#include <linux/cpumask.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/module.h>
Andrey Paninaea00142005-06-25 14:54:42 -070032#include <linux/dmi.h>
Nick Pigginb33fa1f2005-10-01 02:34:42 +100033#include <linux/irq.h>
adurbin@google.comf0f4c342006-09-26 10:52:39 +020034#include <linux/bootmem.h>
35#include <linux/ioport.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37#include <asm/pgtable.h>
38#include <asm/io_apic.h>
39#include <asm/apic.h>
Ingo Molnar183fe062008-07-09 11:32:10 +020040#include <asm/genapic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <asm/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <asm/mpspec.h>
Alexey Starikovskiydfac2182008-04-04 23:41:50 +040043#include <asm/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Glauber de Oliveira Costaf6bc4022008-03-19 14:25:53 -030045#ifdef CONFIG_X86_LOCAL_APIC
46# include <mach_apic.h>
47#endif
48
Adrian Bunke8924ac2006-09-26 10:52:35 +020049static int __initdata acpi_force = 0;
Rusty Russell1a3f2392006-09-26 10:52:32 +020050
Andi Kleendf3bb572006-09-26 10:52:33 +020051#ifdef CONFIG_ACPI
52int acpi_disabled = 0;
53#else
54int acpi_disabled = 1;
55#endif
56EXPORT_SYMBOL(acpi_disabled);
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#ifdef CONFIG_X86_64
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include <asm/proto.h>
Jack Steinerae261862008-03-28 14:12:06 -050061#include <asm/genapic.h>
Linus Torvalds637029c2006-02-27 20:41:56 -080062
Len Brown4be44fc2005-08-05 00:44:28 -040063#else /* X86 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65#ifdef CONFIG_X86_LOCAL_APIC
66#include <mach_apic.h>
67#include <mach_mpparse.h>
Len Brown4be44fc2005-08-05 00:44:28 -040068#endif /* CONFIG_X86_LOCAL_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Len Brown4be44fc2005-08-05 00:44:28 -040070#endif /* X86 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72#define BAD_MADT_ENTRY(entry, end) ( \
73 (!entry) || (unsigned long)entry + sizeof(*entry) > end || \
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +030074 ((struct acpi_subtable_header *)entry)->length < sizeof(*entry))
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76#define PREFIX "ACPI: "
77
Andrew Morton90d53902006-11-02 22:07:18 -080078int acpi_noirq; /* skip ACPI IRQ initialization */
Yinghai Lu6e4be1f2008-02-05 00:01:48 -080079int acpi_pci_disabled; /* skip ACPI PCI scan and IRQ initialization */
80EXPORT_SYMBOL(acpi_pci_disabled);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081int acpi_ht __initdata = 1; /* enable HT */
82
83int acpi_lapic;
84int acpi_ioapic;
85int acpi_strict;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +030087u8 acpi_sci_flags __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088int acpi_sci_override_gsi __initdata;
89int acpi_skip_timer_override __initdata;
Andi Kleenfa18f472006-11-14 16:57:46 +010090int acpi_use_timer_override __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92#ifdef CONFIG_X86_LOCAL_APIC
93static u64 acpi_lapic_addr __initdata = APIC_DEFAULT_PHYS_BASE;
94#endif
95
96#ifndef __HAVE_ARCH_CMPXCHG
97#warning ACPI uses CMPXCHG, i486 and later hardware
98#endif
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100/* --------------------------------------------------------------------------
101 Boot-time Configuration
102 -------------------------------------------------------------------------- */
103
104/*
105 * The default interrupt routing model is PIC (8259). This gets
Simon Arlott27b46d72007-10-20 01:13:56 +0200106 * overridden if IOAPICs are enumerated (below).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 */
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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111/*
112 * Temporarily use the virtual area starting from FIX_IO_APIC_BASE_END,
113 * to map the target physical address. The problem is that set_fixmap()
114 * provides a single page, and it is possible that the page is not
115 * sufficient.
116 * By using this area, we can map up to MAX_IO_APICS pages temporarily,
117 * i.e. until the next __va_range() call.
118 *
119 * Important Safety Note: The fixed I/O APIC page numbers are *subtracted*
120 * from the fixed base. That's why we start at FIX_IO_APIC_BASE_END and
121 * count idx down while incrementing the phys address.
122 */
Jan Beulich2fdf0742007-12-13 08:33:59 +0000123char *__init __acpi_map_table(unsigned long phys, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
125 unsigned long base, offset, mapped_size;
126 int idx;
127
Yinghai Luf34fa822008-07-09 20:16:36 -0700128 if (!phys || !size)
129 return NULL;
130
Yinghai Luf361a452008-07-10 20:38:26 -0700131 if (phys+size <= (max_low_pfn_mapped << PAGE_SHIFT))
Len Brown4be44fc2005-08-05 00:44:28 -0400132 return __va(phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
134 offset = phys & (PAGE_SIZE - 1);
135 mapped_size = PAGE_SIZE - offset;
Yinghai Luf34fa822008-07-09 20:16:36 -0700136 clear_fixmap(FIX_ACPI_END);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 set_fixmap(FIX_ACPI_END, phys);
138 base = fix_to_virt(FIX_ACPI_END);
139
140 /*
141 * Most cases can be covered by the below.
142 */
143 idx = FIX_ACPI_END;
144 while (mapped_size < size) {
145 if (--idx < FIX_ACPI_BEGIN)
146 return NULL; /* cannot handle this */
147 phys += PAGE_SIZE;
Yinghai Luf34fa822008-07-09 20:16:36 -0700148 clear_fixmap(idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 set_fixmap(idx, phys);
150 mapped_size += PAGE_SIZE;
151 }
152
Len Brown4be44fc2005-08-05 00:44:28 -0400153 return ((unsigned char *)base + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156#ifdef CONFIG_PCI_MMCONFIG
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700157/* The physical address of the MMCONFIG aperture. Set from ACPI tables. */
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +0300158struct acpi_mcfg_allocation *pci_mmcfg_config;
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700159int pci_mmcfg_config_num;
160
Alexey Starikovskiyceb6c462007-02-02 19:48:22 +0300161int __init acpi_parse_mcfg(struct acpi_table_header *header)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162{
163 struct acpi_table_mcfg *mcfg;
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700164 unsigned long i;
165 int config_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Alexey Starikovskiyceb6c462007-02-02 19:48:22 +0300167 if (!header)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 return -EINVAL;
169
Alexey Starikovskiyceb6c462007-02-02 19:48:22 +0300170 mcfg = (struct acpi_table_mcfg *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700172 /* how many config structures do we have */
173 pci_mmcfg_config_num = 0;
Alexey Starikovskiyceb6c462007-02-02 19:48:22 +0300174 i = header->length - sizeof(struct acpi_table_mcfg);
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +0300175 while (i >= sizeof(struct acpi_mcfg_allocation)) {
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700176 ++pci_mmcfg_config_num;
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +0300177 i -= sizeof(struct acpi_mcfg_allocation);
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700178 };
179 if (pci_mmcfg_config_num == 0) {
180 printk(KERN_ERR PREFIX "MMCONFIG has no entries\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 return -ENODEV;
182 }
183
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700184 config_size = pci_mmcfg_config_num * sizeof(*pci_mmcfg_config);
185 pci_mmcfg_config = kmalloc(config_size, GFP_KERNEL);
186 if (!pci_mmcfg_config) {
187 printk(KERN_WARNING PREFIX
188 "No memory for MCFG config tables\n");
189 return -ENOMEM;
190 }
191
Alexey Starikovskiyad363f82007-02-02 19:48:22 +0300192 memcpy(pci_mmcfg_config, &mcfg[1], config_size);
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700193 for (i = 0; i < pci_mmcfg_config_num; ++i) {
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +0300194 if (pci_mmcfg_config[i].address > 0xFFFFFFFF) {
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700195 printk(KERN_ERR PREFIX
196 "MMCONFIG not in low 4GB of memory\n");
Konrad Rzeszutekacc7c2e2006-06-15 12:08:30 -0400197 kfree(pci_mmcfg_config);
198 pci_mmcfg_config_num = 0;
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700199 return -ENODEV;
200 }
201 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
203 return 0;
204}
Len Brown4be44fc2005-08-05 00:44:28 -0400205#endif /* CONFIG_PCI_MMCONFIG */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
207#ifdef CONFIG_X86_LOCAL_APIC
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +0300208static int __init acpi_parse_madt(struct acpi_table_header *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209{
Len Brown4be44fc2005-08-05 00:44:28 -0400210 struct acpi_table_madt *madt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +0300212 if (!cpu_has_apic)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 return -EINVAL;
214
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +0300215 madt = (struct acpi_table_madt *)table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 if (!madt) {
217 printk(KERN_WARNING PREFIX "Unable to map MADT\n");
218 return -ENODEV;
219 }
220
Alexey Starikovskiyad363f82007-02-02 19:48:22 +0300221 if (madt->address) {
222 acpi_lapic_addr = (u64) madt->address;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
224 printk(KERN_DEBUG PREFIX "Local APIC address 0x%08x\n",
Alexey Starikovskiyad363f82007-02-02 19:48:22 +0300225 madt->address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 }
227
228 acpi_madt_oem_check(madt->header.oem_id, madt->header.oem_table_id);
Len Brown4be44fc2005-08-05 00:44:28 -0400229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 return 0;
231}
232
Alexey Starikovskiydfac2182008-04-04 23:41:50 +0400233static void __cpuinit acpi_register_lapic(int id, u8 enabled)
234{
Yinghai Lufb3bbd62008-05-22 18:22:30 -0700235 unsigned int ver = 0;
236
Alexey Starikovskiydfac2182008-04-04 23:41:50 +0400237 if (!enabled) {
238 ++disabled_cpus;
239 return;
240 }
241
Yinghai Lufb3bbd62008-05-22 18:22:30 -0700242 if (boot_cpu_physical_apicid != -1U)
243 ver = apic_version[boot_cpu_physical_apicid];
Yinghai Lufb3bbd62008-05-22 18:22:30 -0700244
245 generic_processor_info(id, ver);
Alexey Starikovskiydfac2182008-04-04 23:41:50 +0400246}
247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248static int __init
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300249acpi_parse_lapic(struct acpi_subtable_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250{
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300251 struct acpi_madt_local_apic *processor = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300253 processor = (struct acpi_madt_local_apic *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
255 if (BAD_MADT_ENTRY(processor, end))
256 return -EINVAL;
257
258 acpi_table_print_madt_entry(header);
259
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 */
Alexey Starikovskiydfac2182008-04-04 23:41:50 +0400267 acpi_register_lapic(processor->id, /* APIC ID */
268 processor->lapic_flags & ACPI_MADT_ENABLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
270 return 0;
271}
272
273static int __init
Jack Steinerac049c12008-03-28 14:12:09 -0500274acpi_parse_sapic(struct acpi_subtable_header *header, const unsigned long end)
275{
276 struct acpi_madt_local_sapic *processor = NULL;
277
278 processor = (struct acpi_madt_local_sapic *)header;
279
280 if (BAD_MADT_ENTRY(processor, end))
281 return -EINVAL;
282
283 acpi_table_print_madt_entry(header);
284
Alexey Starikovskiydfac2182008-04-04 23:41:50 +0400285 acpi_register_lapic((processor->id << 8) | processor->eid,/* APIC ID */
286 processor->lapic_flags & ACPI_MADT_ENABLED);
Jack Steinerac049c12008-03-28 14:12:09 -0500287
288 return 0;
289}
290
291static int __init
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300292acpi_parse_lapic_addr_ovr(struct acpi_subtable_header * header,
Len Brown4be44fc2005-08-05 00:44:28 -0400293 const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294{
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300295 struct acpi_madt_local_apic_override *lapic_addr_ovr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300297 lapic_addr_ovr = (struct acpi_madt_local_apic_override *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
299 if (BAD_MADT_ENTRY(lapic_addr_ovr, end))
300 return -EINVAL;
301
302 acpi_lapic_addr = lapic_addr_ovr->address;
303
304 return 0;
305}
306
307static int __init
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300308acpi_parse_lapic_nmi(struct acpi_subtable_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300310 struct acpi_madt_local_apic_nmi *lapic_nmi = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300312 lapic_nmi = (struct acpi_madt_local_apic_nmi *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
314 if (BAD_MADT_ENTRY(lapic_nmi, end))
315 return -EINVAL;
316
317 acpi_table_print_madt_entry(header);
318
319 if (lapic_nmi->lint != 1)
320 printk(KERN_WARNING PREFIX "NMI not connected to LINT 1!\n");
321
322 return 0;
323}
324
Len Brown4be44fc2005-08-05 00:44:28 -0400325#endif /*CONFIG_X86_LOCAL_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Len Brown84663612005-08-24 12:09:07 -0400327#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
329static int __init
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300330acpi_parse_ioapic(struct acpi_subtable_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331{
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300332 struct acpi_madt_io_apic *ioapic = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300334 ioapic = (struct acpi_madt_io_apic *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
336 if (BAD_MADT_ENTRY(ioapic, end))
337 return -EINVAL;
Len Brown4be44fc2005-08-05 00:44:28 -0400338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 acpi_table_print_madt_entry(header);
340
Len Brown4be44fc2005-08-05 00:44:28 -0400341 mp_register_ioapic(ioapic->id,
342 ioapic->address, ioapic->global_irq_base);
343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 return 0;
345}
346
347/*
348 * Parse Interrupt Source Override for the ACPI SCI
349 */
Len Browne82c3542006-12-21 01:29:59 -0500350static void __init acpi_sci_ioapic_setup(u32 gsi, u16 polarity, u16 trigger)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351{
352 if (trigger == 0) /* compatible SCI trigger is level */
353 trigger = 3;
354
355 if (polarity == 0) /* compatible SCI polarity is low */
356 polarity = 3;
357
358 /* Command-line over-ride via acpi_sci= */
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300359 if (acpi_sci_flags & ACPI_MADT_TRIGGER_MASK)
360 trigger = (acpi_sci_flags & ACPI_MADT_TRIGGER_MASK) >> 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300362 if (acpi_sci_flags & ACPI_MADT_POLARITY_MASK)
363 polarity = acpi_sci_flags & ACPI_MADT_POLARITY_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365 /*
Len Brown4be44fc2005-08-05 00:44:28 -0400366 * mp_config_acpi_legacy_irqs() already setup IRQs < 16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 * If GSI is < 16, this will update its flags,
368 * else it will create a new mp_irqs[] entry.
369 */
Len Brown7bdd21c2006-12-02 02:27:46 -0500370 mp_override_legacy_irq(gsi, polarity, trigger, gsi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
372 /*
373 * stash over-ride to indicate we've been here
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300374 * and for later update of acpi_gbl_FADT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 */
Len Brown7bdd21c2006-12-02 02:27:46 -0500376 acpi_sci_override_gsi = gsi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 return;
378}
379
380static int __init
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300381acpi_parse_int_src_ovr(struct acpi_subtable_header * header,
Len Brown4be44fc2005-08-05 00:44:28 -0400382 const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383{
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300384 struct acpi_madt_interrupt_override *intsrc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300386 intsrc = (struct acpi_madt_interrupt_override *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
388 if (BAD_MADT_ENTRY(intsrc, end))
389 return -EINVAL;
390
391 acpi_table_print_madt_entry(header);
392
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300393 if (intsrc->source_irq == acpi_gbl_FADT.sci_interrupt) {
Len Brown7bdd21c2006-12-02 02:27:46 -0500394 acpi_sci_ioapic_setup(intsrc->global_irq,
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300395 intsrc->inti_flags & ACPI_MADT_POLARITY_MASK,
396 (intsrc->inti_flags & ACPI_MADT_TRIGGER_MASK) >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 return 0;
398 }
399
400 if (acpi_skip_timer_override &&
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300401 intsrc->source_irq == 0 && intsrc->global_irq == 2) {
Len Brown4be44fc2005-08-05 00:44:28 -0400402 printk(PREFIX "BIOS IRQ0 pin2 override ignored.\n");
403 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 }
405
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300406 mp_override_legacy_irq(intsrc->source_irq,
407 intsrc->inti_flags & ACPI_MADT_POLARITY_MASK,
408 (intsrc->inti_flags & ACPI_MADT_TRIGGER_MASK) >> 2,
409 intsrc->global_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
411 return 0;
412}
413
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414static int __init
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300415acpi_parse_nmi_src(struct acpi_subtable_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416{
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300417 struct acpi_madt_nmi_source *nmi_src = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300419 nmi_src = (struct acpi_madt_nmi_source *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
421 if (BAD_MADT_ENTRY(nmi_src, end))
422 return -EINVAL;
423
424 acpi_table_print_madt_entry(header);
425
426 /* TBD: Support nimsrc entries? */
427
428 return 0;
429}
430
Len Brown4be44fc2005-08-05 00:44:28 -0400431#endif /* CONFIG_X86_IO_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433/*
434 * acpi_pic_sci_set_trigger()
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300435 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 * use ELCR to set PIC-mode trigger type for SCI
437 *
438 * If a PIC-mode SCI is not recognized or gives spurious IRQ7's
439 * it may require Edge Trigger -- use "acpi_sci=edge"
440 *
441 * Port 0x4d0-4d1 are ECLR1 and ECLR2, the Edge/Level Control Registers
442 * for the 8259 PIC. bit[n] = 1 means irq[n] is Level, otherwise Edge.
Simon Arlott27b46d72007-10-20 01:13:56 +0200443 * ECLR1 is IRQs 0-7 (IRQ 0, 1, 2 must be 0)
444 * ECLR2 is IRQs 8-15 (IRQ 8, 13 must be 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 */
446
Len Brown4be44fc2005-08-05 00:44:28 -0400447void __init acpi_pic_sci_set_trigger(unsigned int irq, u16 trigger)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448{
449 unsigned int mask = 1 << irq;
450 unsigned int old, new;
451
452 /* Real old ELCR mask */
453 old = inb(0x4d0) | (inb(0x4d1) << 8);
454
455 /*
Simon Arlott27b46d72007-10-20 01:13:56 +0200456 * If we use ACPI to set PCI IRQs, then we should clear ELCR
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 * since we will set it correctly as we enable the PCI irq
458 * routing.
459 */
460 new = acpi_noirq ? old : 0;
461
462 /*
463 * Update SCI information in the ELCR, it isn't in the PCI
464 * routing tables..
465 */
466 switch (trigger) {
Len Brown4be44fc2005-08-05 00:44:28 -0400467 case 1: /* Edge - clear */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 new &= ~mask;
469 break;
Len Brown4be44fc2005-08-05 00:44:28 -0400470 case 3: /* Level - set */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 new |= mask;
472 break;
473 }
474
475 if (old == new)
476 return;
477
478 printk(PREFIX "setting ELCR to %04x (from %04x)\n", new, old);
479 outb(new, 0x4d0);
480 outb(new >> 8, 0x4d1);
481}
482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483int acpi_gsi_to_irq(u32 gsi, unsigned int *irq)
484{
Eric W. Biedermanf023d762006-10-04 02:16:52 -0700485 *irq = gsi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 return 0;
487}
488
Kenji Kaneshige1f3a6a12005-07-28 14:42:00 -0400489/*
490 * success: return IRQ number (>=0)
491 * failure: return < 0
492 */
Len Browncb654692005-12-28 02:43:51 -0500493int acpi_register_gsi(u32 gsi, int triggering, int polarity)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494{
495 unsigned int irq;
496 unsigned int plat_gsi = gsi;
497
498#ifdef CONFIG_PCI
499 /*
500 * Make sure all (legacy) PCI IRQs are set as level-triggered.
501 */
502 if (acpi_irq_model == ACPI_IRQ_MODEL_PIC) {
Len Browncb654692005-12-28 02:43:51 -0500503 if (triggering == ACPI_LEVEL_SENSITIVE)
Len Brown4be44fc2005-08-05 00:44:28 -0400504 eisa_set_level_irq(gsi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 }
506#endif
507
508#ifdef CONFIG_X86_IO_APIC
509 if (acpi_irq_model == ACPI_IRQ_MODEL_IOAPIC) {
Len Browncb654692005-12-28 02:43:51 -0500510 plat_gsi = mp_register_gsi(gsi, triggering, polarity);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 }
512#endif
513 acpi_gsi_to_irq(plat_gsi, &irq);
514 return irq;
515}
Len Brown4be44fc2005-08-05 00:44:28 -0400516
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517/*
518 * ACPI based hotplug support for CPU
519 */
520#ifdef CONFIG_ACPI_HOTPLUG_CPU
Sam Ravnborg009cbad2008-02-01 17:49:42 +0100521
522static int __cpuinit _acpi_map_lsapic(acpi_handle handle, int *pcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523{
Ashok Raj73fea172006-09-26 10:52:35 +0200524 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
525 union acpi_object *obj;
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300526 struct acpi_madt_local_apic *lapic;
Ashok Raj73fea172006-09-26 10:52:35 +0200527 cpumask_t tmp_map, new_map;
528 u8 physid;
529 int cpu;
530
531 if (ACPI_FAILURE(acpi_evaluate_object(handle, "_MAT", NULL, &buffer)))
532 return -EINVAL;
533
534 if (!buffer.length || !buffer.pointer)
535 return -EINVAL;
536
537 obj = buffer.pointer;
538 if (obj->type != ACPI_TYPE_BUFFER ||
539 obj->buffer.length < sizeof(*lapic)) {
540 kfree(buffer.pointer);
541 return -EINVAL;
542 }
543
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300544 lapic = (struct acpi_madt_local_apic *)obj->buffer.pointer;
Ashok Raj73fea172006-09-26 10:52:35 +0200545
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300546 if (lapic->header.type != ACPI_MADT_TYPE_LOCAL_APIC ||
547 !(lapic->lapic_flags & ACPI_MADT_ENABLED)) {
Ashok Raj73fea172006-09-26 10:52:35 +0200548 kfree(buffer.pointer);
549 return -EINVAL;
550 }
551
552 physid = lapic->id;
553
554 kfree(buffer.pointer);
555 buffer.length = ACPI_ALLOCATE_BUFFER;
556 buffer.pointer = NULL;
557
558 tmp_map = cpu_present_map;
Alexey Starikovskiydfac2182008-04-04 23:41:50 +0400559 acpi_register_lapic(physid, lapic->lapic_flags & ACPI_MADT_ENABLED);
Ashok Raj73fea172006-09-26 10:52:35 +0200560
561 /*
562 * If mp_register_lapic successfully generates a new logical cpu
563 * number, then the following will get us exactly what was mapped
564 */
565 cpus_andnot(new_map, cpu_present_map, tmp_map);
566 if (cpus_empty(new_map)) {
567 printk ("Unable to map lapic to logical cpu number\n");
568 return -EINVAL;
569 }
570
571 cpu = first_cpu(new_map);
572
573 *pcpu = cpu;
574 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575}
Len Brown4be44fc2005-08-05 00:44:28 -0400576
Sam Ravnborg009cbad2008-02-01 17:49:42 +0100577/* wrapper to silence section mismatch warning */
578int __ref acpi_map_lsapic(acpi_handle handle, int *pcpu)
579{
580 return _acpi_map_lsapic(handle, pcpu);
581}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582EXPORT_SYMBOL(acpi_map_lsapic);
583
Len Brown4be44fc2005-08-05 00:44:28 -0400584int acpi_unmap_lsapic(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585{
Mike Travis71fff5e2007-10-19 20:35:03 +0200586 per_cpu(x86_cpu_to_apicid, cpu) = -1;
Ashok Raj73fea172006-09-26 10:52:35 +0200587 cpu_clear(cpu, cpu_present_map);
588 num_processors--;
589
590 return (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591}
Len Brown4be44fc2005-08-05 00:44:28 -0400592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593EXPORT_SYMBOL(acpi_unmap_lsapic);
Len Brown4be44fc2005-08-05 00:44:28 -0400594#endif /* CONFIG_ACPI_HOTPLUG_CPU */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Len Brown4be44fc2005-08-05 00:44:28 -0400596int acpi_register_ioapic(acpi_handle handle, u64 phys_addr, u32 gsi_base)
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700597{
598 /* TBD */
599 return -EINVAL;
600}
Len Brown4be44fc2005-08-05 00:44:28 -0400601
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700602EXPORT_SYMBOL(acpi_register_ioapic);
603
Len Brown4be44fc2005-08-05 00:44:28 -0400604int acpi_unregister_ioapic(acpi_handle handle, u32 gsi_base)
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700605{
606 /* TBD */
607 return -EINVAL;
608}
Len Brown4be44fc2005-08-05 00:44:28 -0400609
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700610EXPORT_SYMBOL(acpi_unregister_ioapic);
611
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300612static int __init acpi_parse_sbf(struct acpi_table_header *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613{
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300614 struct acpi_table_boot *sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300616 sb = (struct acpi_table_boot *)table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 if (!sb) {
618 printk(KERN_WARNING PREFIX "Unable to map SBF\n");
619 return -ENODEV;
620 }
621
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300622 sbf_port = sb->cmos_index; /* Save CMOS port */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
624 return 0;
625}
626
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627#ifdef CONFIG_HPET_TIMER
john stultz2d0c87c2007-02-16 01:28:18 -0800628#include <asm/hpet.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
Aaron Durbina1dfd852007-07-21 17:11:39 +0200630static struct __initdata resource *hpet_res;
631
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300632static int __init acpi_parse_hpet(struct acpi_table_header *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633{
634 struct acpi_table_hpet *hpet_tbl;
635
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300636 hpet_tbl = (struct acpi_table_hpet *)table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 if (!hpet_tbl) {
638 printk(KERN_WARNING PREFIX "Unable to map HPET\n");
639 return -ENODEV;
640 }
641
Alexey Starikovskiyad363f82007-02-02 19:48:22 +0300642 if (hpet_tbl->address.space_id != ACPI_SPACE_MEM) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 printk(KERN_WARNING PREFIX "HPET timers must be located in "
644 "memory.\n");
645 return -1;
646 }
adurbin@google.comf0f4c342006-09-26 10:52:39 +0200647
john stultz2d0c87c2007-02-16 01:28:18 -0800648 hpet_address = hpet_tbl->address.address;
Thomas Gleixnerf4df73c2007-11-15 21:41:50 -0500649
650 /*
651 * Some broken BIOSes advertise HPET at 0x0. We really do not
652 * want to allocate a resource there.
653 */
654 if (!hpet_address) {
655 printk(KERN_WARNING PREFIX
656 "HPET id: %#x base: %#lx is invalid\n",
657 hpet_tbl->id, hpet_address);
658 return 0;
659 }
660#ifdef CONFIG_X86_64
661 /*
662 * Some even more broken BIOSes advertise HPET at
663 * 0xfed0000000000000 instead of 0xfed00000. Fix it up and add
664 * some noise:
665 */
666 if (hpet_address == 0xfed0000000000000UL) {
667 if (!hpet_force_user) {
668 printk(KERN_WARNING PREFIX "HPET id: %#x "
669 "base: 0xfed0000000000000 is bogus\n "
670 "try hpet=force on the kernel command line to "
671 "fix it up to 0xfed00000.\n", hpet_tbl->id);
672 hpet_address = 0;
673 return 0;
674 }
675 printk(KERN_WARNING PREFIX
676 "HPET id: %#x base: 0xfed0000000000000 fixed up "
677 "to 0xfed00000.\n", hpet_tbl->id);
678 hpet_address >>= 32;
679 }
680#endif
Len Brown4be44fc2005-08-05 00:44:28 -0400681 printk(KERN_INFO PREFIX "HPET id: %#x base: %#lx\n",
john stultz2d0c87c2007-02-16 01:28:18 -0800682 hpet_tbl->id, hpet_address);
adurbin@google.comf0f4c342006-09-26 10:52:39 +0200683
Aaron Durbina1dfd852007-07-21 17:11:39 +0200684 /*
685 * Allocate and initialize the HPET firmware resource for adding into
686 * the resource tree during the lateinit timeframe.
687 */
688#define HPET_RESOURCE_NAME_SIZE 9
689 hpet_res = alloc_bootmem(sizeof(*hpet_res) + HPET_RESOURCE_NAME_SIZE);
690
Aaron Durbina1dfd852007-07-21 17:11:39 +0200691 hpet_res->name = (void *)&hpet_res[1];
692 hpet_res->flags = IORESOURCE_MEM;
693 snprintf((char *)hpet_res->name, HPET_RESOURCE_NAME_SIZE, "HPET %u",
694 hpet_tbl->sequence);
695
696 hpet_res->start = hpet_address;
697 hpet_res->end = hpet_address + (1 * 1024) - 1;
698
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 return 0;
700}
Aaron Durbina1dfd852007-07-21 17:11:39 +0200701
702/*
703 * hpet_insert_resource inserts the HPET resources used into the resource
704 * tree.
705 */
706static __init int hpet_insert_resource(void)
707{
708 if (!hpet_res)
709 return 1;
710
711 return insert_resource(&iomem_resource, hpet_res);
712}
713
714late_initcall(hpet_insert_resource);
715
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716#else
717#define acpi_parse_hpet NULL
718#endif
719
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300720static int __init acpi_parse_fadt(struct acpi_table_header *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721{
Jason Davis90660ec2005-04-16 15:24:53 -0700722
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723#ifdef CONFIG_X86_PM_TIMER
724 /* detect the location of the ACPI PM Timer */
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300725 if (acpi_gbl_FADT.header.revision >= FADT2_REVISION_ID) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 /* FADT rev. 2 */
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300727 if (acpi_gbl_FADT.xpm_timer_block.space_id !=
Len Brown4be44fc2005-08-05 00:44:28 -0400728 ACPI_ADR_SPACE_SYSTEM_IO)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 return 0;
730
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300731 pmtmr_ioport = acpi_gbl_FADT.xpm_timer_block.address;
David Shaohua Lie6e87b42005-09-21 01:35:00 -0400732 /*
733 * "X" fields are optional extensions to the original V1.0
734 * fields, so we must selectively expand V1.0 fields if the
735 * corresponding X field is zero.
736 */
737 if (!pmtmr_ioport)
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300738 pmtmr_ioport = acpi_gbl_FADT.pm_timer_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 } else {
740 /* FADT rev. 1 */
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300741 pmtmr_ioport = acpi_gbl_FADT.pm_timer_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 }
743 if (pmtmr_ioport)
Len Brown4be44fc2005-08-05 00:44:28 -0400744 printk(KERN_INFO PREFIX "PM-Timer IO Port: %#x\n",
745 pmtmr_ioport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746#endif
747 return 0;
748}
749
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750#ifdef CONFIG_X86_LOCAL_APIC
751/*
752 * Parse LAPIC entries in MADT
753 * returns 0 on success, < 0 on error
754 */
Alexey Starikovskiy31d20922008-04-04 23:41:57 +0400755
756static void __init acpi_register_lapic_address(unsigned long address)
757{
758 mp_lapic_addr = address;
759
760 set_fixmap_nocache(FIX_APIC_BASE, address);
Yinghai Lufb3bbd62008-05-22 18:22:30 -0700761 if (boot_cpu_physical_apicid == -1U) {
Yinghai Lu4c9961d2008-07-11 18:44:16 -0700762 boot_cpu_physical_apicid = read_apic_id();
Yinghai Lufb3bbd62008-05-22 18:22:30 -0700763 apic_version[boot_cpu_physical_apicid] =
764 GET_APIC_VERSION(apic_read(APIC_LVR));
Yinghai Lufb3bbd62008-05-22 18:22:30 -0700765 }
Alexey Starikovskiy31d20922008-04-04 23:41:57 +0400766}
767
Yinghai Lucbf9bd62008-02-19 03:21:06 -0800768static int __init early_acpi_parse_madt_lapic_addr_ovr(void)
769{
770 int count;
771
772 if (!cpu_has_apic)
773 return -ENODEV;
774
775 /*
776 * Note that the LAPIC address is obtained from the MADT (32-bit value)
777 * and (optionally) overriden by a LAPIC_ADDR_OVR entry (64-bit value).
778 */
779
780 count =
781 acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_APIC_OVERRIDE,
782 acpi_parse_lapic_addr_ovr, 0);
783 if (count < 0) {
784 printk(KERN_ERR PREFIX
785 "Error parsing LAPIC address override entry\n");
786 return count;
787 }
788
789 acpi_register_lapic_address(acpi_lapic_addr);
790
791 return count;
792}
793
Len Brown4be44fc2005-08-05 00:44:28 -0400794static int __init acpi_parse_madt_lapic_entries(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795{
796 int count;
797
Andi Kleen0fcd2702006-04-11 12:54:36 +0200798 if (!cpu_has_apic)
799 return -ENODEV;
800
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300801 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 * Note that the LAPIC address is obtained from the MADT (32-bit value)
803 * and (optionally) overriden by a LAPIC_ADDR_OVR entry (64-bit value).
804 */
805
Len Brown4be44fc2005-08-05 00:44:28 -0400806 count =
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300807 acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_APIC_OVERRIDE,
Len Brown4be44fc2005-08-05 00:44:28 -0400808 acpi_parse_lapic_addr_ovr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 if (count < 0) {
Len Brown4be44fc2005-08-05 00:44:28 -0400810 printk(KERN_ERR PREFIX
811 "Error parsing LAPIC address override entry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 return count;
813 }
814
Alexey Starikovskiy31d20922008-04-04 23:41:57 +0400815 acpi_register_lapic_address(acpi_lapic_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
Jack Steinerac049c12008-03-28 14:12:09 -0500817 count = acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_SAPIC,
818 acpi_parse_sapic, MAX_APICS);
819
820 if (!count)
821 count = acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_APIC,
822 acpi_parse_lapic, MAX_APICS);
Len Brown4be44fc2005-08-05 00:44:28 -0400823 if (!count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 printk(KERN_ERR PREFIX "No LAPIC entries present\n");
825 /* TBD: Cleanup to allow fallback to MPS */
826 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400827 } else if (count < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 printk(KERN_ERR PREFIX "Error parsing LAPIC entry\n");
829 /* TBD: Cleanup to allow fallback to MPS */
830 return count;
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_LOCAL_APIC_NMI, acpi_parse_lapic_nmi, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 if (count < 0) {
836 printk(KERN_ERR PREFIX "Error parsing LAPIC NMI entry\n");
837 /* TBD: Cleanup to allow fallback to MPS */
838 return count;
839 }
840 return 0;
841}
Len Brown4be44fc2005-08-05 00:44:28 -0400842#endif /* CONFIG_X86_LOCAL_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
Len Brown84663612005-08-24 12:09:07 -0400844#ifdef CONFIG_X86_IO_APIC
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400845#define MP_ISA_BUS 0
846
Yinghai Lud49c4282008-06-08 18:31:54 -0700847#ifdef CONFIG_X86_ES7000
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400848extern int es7000_plat;
849#endif
850
Alexey Starikovskiy5f895142008-05-14 19:03:04 +0400851static struct {
852 int apic_id;
853 int gsi_base;
854 int gsi_end;
855 DECLARE_BITMAP(pin_programmed, MP_MAX_IOAPIC_PIN + 1);
856} mp_ioapic_routing[MAX_IO_APICS];
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400857
858static int mp_find_ioapic(int gsi)
859{
860 int i = 0;
861
862 /* Find the IOAPIC that manages this GSI. */
863 for (i = 0; i < nr_ioapics; i++) {
864 if ((gsi >= mp_ioapic_routing[i].gsi_base)
865 && (gsi <= mp_ioapic_routing[i].gsi_end))
866 return i;
867 }
868
869 printk(KERN_ERR "ERROR: Unable to locate IOAPIC for GSI %d\n", gsi);
870 return -1;
871}
872
873static u8 __init uniq_ioapic_id(u8 id)
874{
875#ifdef CONFIG_X86_32
876 if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
877 !APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
878 return io_apic_get_unique_id(nr_ioapics, id);
879 else
880 return id;
881#else
882 int i;
883 DECLARE_BITMAP(used, 256);
884 bitmap_zero(used, 256);
885 for (i = 0; i < nr_ioapics; i++) {
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +0400886 struct mp_config_ioapic *ia = &mp_ioapics[i];
887 __set_bit(ia->mp_apicid, used);
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400888 }
889 if (!test_bit(id, used))
890 return id;
891 return find_first_zero_bit(used, 256);
892#endif
893}
894
895static int bad_ioapic(unsigned long address)
896{
897 if (nr_ioapics >= MAX_IO_APICS) {
898 printk(KERN_ERR "ERROR: Max # of I/O APICs (%d) exceeded "
899 "(found %d)\n", MAX_IO_APICS, nr_ioapics);
900 panic("Recompile kernel with bigger MAX_IO_APICS!\n");
901 }
902 if (!address) {
903 printk(KERN_ERR "WARNING: Bogus (zero) I/O APIC address"
904 " found in table, skipping!\n");
905 return 1;
906 }
907 return 0;
908}
909
910void __init mp_register_ioapic(int id, u32 address, u32 gsi_base)
911{
912 int idx = 0;
913
914 if (bad_ioapic(address))
915 return;
916
917 idx = nr_ioapics;
918
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +0400919 mp_ioapics[idx].mp_type = MP_IOAPIC;
920 mp_ioapics[idx].mp_flags = MPC_APIC_USABLE;
921 mp_ioapics[idx].mp_apicaddr = address;
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400922
923 set_fixmap_nocache(FIX_IO_APIC_BASE_0 + idx, address);
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +0400924 mp_ioapics[idx].mp_apicid = uniq_ioapic_id(id);
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400925#ifdef CONFIG_X86_32
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +0400926 mp_ioapics[idx].mp_apicver = io_apic_get_version(idx);
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400927#else
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +0400928 mp_ioapics[idx].mp_apicver = 0;
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400929#endif
930 /*
931 * Build basic GSI lookup table to facilitate gsi->io_apic lookups
932 * and to prevent reprogramming of IOAPIC pins (PCI GSIs).
933 */
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +0400934 mp_ioapic_routing[idx].apic_id = mp_ioapics[idx].mp_apicid;
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400935 mp_ioapic_routing[idx].gsi_base = gsi_base;
936 mp_ioapic_routing[idx].gsi_end = gsi_base +
937 io_apic_get_redir_entries(idx);
938
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +0400939 printk(KERN_INFO "IOAPIC[%d]: apic_id %d, version %d, address 0x%lx, "
940 "GSI %d-%d\n", idx, mp_ioapics[idx].mp_apicid,
941 mp_ioapics[idx].mp_apicver, mp_ioapics[idx].mp_apicaddr,
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400942 mp_ioapic_routing[idx].gsi_base, mp_ioapic_routing[idx].gsi_end);
943
944 nr_ioapics++;
945}
946
Yinghai Lufcfa1462008-06-18 17:29:31 -0700947static void assign_to_mp_irq(struct mp_config_intsrc *m,
948 struct mp_config_intsrc *mp_irq)
949{
950 memcpy(mp_irq, m, sizeof(struct mp_config_intsrc));
951}
952
953static int mp_irq_cmp(struct mp_config_intsrc *mp_irq,
954 struct mp_config_intsrc *m)
955{
956 return memcmp(mp_irq, m, sizeof(struct mp_config_intsrc));
957}
958
959static void save_mp_irq(struct mp_config_intsrc *m)
960{
961 int i;
962
963 for (i = 0; i < mp_irq_entries; i++) {
964 if (!mp_irq_cmp(&mp_irqs[i], m))
965 return;
966 }
967
968 assign_to_mp_irq(m, &mp_irqs[mp_irq_entries]);
969 if (++mp_irq_entries == MAX_IRQ_SOURCES)
970 panic("Max # of irq sources exceeded!!\n");
971}
972
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400973void __init mp_override_legacy_irq(u8 bus_irq, u8 polarity, u8 trigger, u32 gsi)
974{
Yinghai Lu6df88092008-06-15 18:19:46 -0700975 int ioapic;
976 int pin;
Yinghai Lufcfa1462008-06-18 17:29:31 -0700977 struct mp_config_intsrc mp_irq;
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400978
979 /*
980 * Convert 'gsi' to 'ioapic.pin'.
981 */
982 ioapic = mp_find_ioapic(gsi);
983 if (ioapic < 0)
984 return;
985 pin = gsi - mp_ioapic_routing[ioapic].gsi_base;
986
987 /*
988 * TBD: This check is for faulty timer entries, where the override
989 * erroneously sets the trigger to level, resulting in a HUGE
990 * increase of timer interrupts!
991 */
992 if ((bus_irq == 0) && (trigger == 3))
993 trigger = 1;
994
Yinghai Lufcfa1462008-06-18 17:29:31 -0700995 mp_irq.mp_type = MP_INTSRC;
996 mp_irq.mp_irqtype = mp_INT;
997 mp_irq.mp_irqflag = (trigger << 2) | polarity;
998 mp_irq.mp_srcbus = MP_ISA_BUS;
999 mp_irq.mp_srcbusirq = bus_irq; /* IRQ */
1000 mp_irq.mp_dstapic = mp_ioapics[ioapic].mp_apicid; /* APIC ID */
1001 mp_irq.mp_dstirq = pin; /* INTIN# */
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001002
Yinghai Lufcfa1462008-06-18 17:29:31 -07001003 save_mp_irq(&mp_irq);
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001004}
1005
1006void __init mp_config_acpi_legacy_irqs(void)
1007{
Yinghai Lu6df88092008-06-15 18:19:46 -07001008 int i;
1009 int ioapic;
1010 unsigned int dstapic;
Yinghai Lufcfa1462008-06-18 17:29:31 -07001011 struct mp_config_intsrc mp_irq;
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001012
1013#if defined (CONFIG_MCA) || defined (CONFIG_EISA)
1014 /*
1015 * Fabricate the legacy ISA bus (bus #31).
1016 */
1017 mp_bus_id_to_type[MP_ISA_BUS] = MP_BUS_ISA;
1018#endif
1019 set_bit(MP_ISA_BUS, mp_bus_not_pci);
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +02001020 pr_debug("Bus #%d is ISA\n", MP_ISA_BUS);
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001021
Yinghai Lud49c4282008-06-08 18:31:54 -07001022#ifdef CONFIG_X86_ES7000
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001023 /*
1024 * Older generations of ES7000 have no legacy identity mappings
1025 */
1026 if (es7000_plat == 1)
1027 return;
1028#endif
1029
1030 /*
1031 * Locate the IOAPIC that manages the ISA IRQs (0-15).
1032 */
1033 ioapic = mp_find_ioapic(0);
1034 if (ioapic < 0)
1035 return;
Yinghai Lu6df88092008-06-15 18:19:46 -07001036 dstapic = mp_ioapics[ioapic].mp_apicid;
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001037
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001038 /*
1039 * Use the default configuration for the IRQs 0-15. Unless
1040 * overridden by (MADT) interrupt source override entries.
1041 */
1042 for (i = 0; i < 16; i++) {
1043 int idx;
1044
1045 for (idx = 0; idx < mp_irq_entries; idx++) {
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +04001046 struct mp_config_intsrc *irq = mp_irqs + idx;
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001047
1048 /* Do we already have a mapping for this ISA IRQ? */
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +04001049 if (irq->mp_srcbus == MP_ISA_BUS
1050 && irq->mp_srcbusirq == i)
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001051 break;
1052
1053 /* Do we already have a mapping for this IOAPIC pin */
Yinghai Lu6df88092008-06-15 18:19:46 -07001054 if (irq->mp_dstapic == dstapic &&
1055 irq->mp_dstirq == i)
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001056 break;
1057 }
1058
1059 if (idx != mp_irq_entries) {
1060 printk(KERN_DEBUG "ACPI: IRQ%d used by override.\n", i);
1061 continue; /* IRQ already used */
1062 }
1063
Yinghai Lufcfa1462008-06-18 17:29:31 -07001064 mp_irq.mp_type = MP_INTSRC;
1065 mp_irq.mp_irqflag = 0; /* Conforming */
1066 mp_irq.mp_srcbus = MP_ISA_BUS;
1067 mp_irq.mp_dstapic = dstapic;
1068 mp_irq.mp_irqtype = mp_INT;
1069 mp_irq.mp_srcbusirq = i; /* Identity mapped */
1070 mp_irq.mp_dstirq = i;
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001071
Yinghai Lufcfa1462008-06-18 17:29:31 -07001072 save_mp_irq(&mp_irq);
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001073 }
1074}
1075
1076int mp_register_gsi(u32 gsi, int triggering, int polarity)
1077{
1078 int ioapic;
1079 int ioapic_pin;
1080#ifdef CONFIG_X86_32
1081#define MAX_GSI_NUM 4096
1082#define IRQ_COMPRESSION_START 64
1083
1084 static int pci_irq = IRQ_COMPRESSION_START;
1085 /*
1086 * Mapping between Global System Interrupts, which
1087 * represent all possible interrupts, and IRQs
1088 * assigned to actual devices.
1089 */
1090 static int gsi_to_irq[MAX_GSI_NUM];
1091#else
1092
1093 if (acpi_irq_model != ACPI_IRQ_MODEL_IOAPIC)
1094 return gsi;
1095#endif
1096
1097 /* Don't set up the ACPI SCI because it's already set up */
1098 if (acpi_gbl_FADT.sci_interrupt == gsi)
1099 return gsi;
1100
1101 ioapic = mp_find_ioapic(gsi);
1102 if (ioapic < 0) {
1103 printk(KERN_WARNING "No IOAPIC for GSI %u\n", gsi);
1104 return gsi;
1105 }
1106
1107 ioapic_pin = gsi - mp_ioapic_routing[ioapic].gsi_base;
1108
1109#ifdef CONFIG_X86_32
1110 if (ioapic_renumber_irq)
1111 gsi = ioapic_renumber_irq(ioapic, gsi);
1112#endif
1113
1114 /*
1115 * Avoid pin reprogramming. PRTs typically include entries
1116 * with redundant pin->gsi mappings (but unique PCI devices);
1117 * we only program the IOAPIC on the first.
1118 */
1119 if (ioapic_pin > MP_MAX_IOAPIC_PIN) {
1120 printk(KERN_ERR "Invalid reference to IOAPIC pin "
1121 "%d-%d\n", mp_ioapic_routing[ioapic].apic_id,
1122 ioapic_pin);
1123 return gsi;
1124 }
1125 if (test_bit(ioapic_pin, mp_ioapic_routing[ioapic].pin_programmed)) {
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +02001126 pr_debug(KERN_DEBUG "Pin %d-%d already programmed\n",
1127 mp_ioapic_routing[ioapic].apic_id, ioapic_pin);
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001128#ifdef CONFIG_X86_32
1129 return (gsi < IRQ_COMPRESSION_START ? gsi : gsi_to_irq[gsi]);
1130#else
1131 return gsi;
1132#endif
1133 }
1134
1135 set_bit(ioapic_pin, mp_ioapic_routing[ioapic].pin_programmed);
1136#ifdef CONFIG_X86_32
1137 /*
1138 * For GSI >= 64, use IRQ compression
1139 */
1140 if ((gsi >= IRQ_COMPRESSION_START)
1141 && (triggering == ACPI_LEVEL_SENSITIVE)) {
1142 /*
1143 * For PCI devices assign IRQs in order, avoiding gaps
1144 * due to unused I/O APIC pins.
1145 */
1146 int irq = gsi;
1147 if (gsi < MAX_GSI_NUM) {
1148 /*
1149 * Retain the VIA chipset work-around (gsi > 15), but
1150 * avoid a problem where the 8254 timer (IRQ0) is setup
1151 * via an override (so it's not on pin 0 of the ioapic),
1152 * and at the same time, the pin 0 interrupt is a PCI
1153 * type. The gsi > 15 test could cause these two pins
1154 * to be shared as IRQ0, and they are not shareable.
1155 * So test for this condition, and if necessary, avoid
1156 * the pin collision.
1157 */
1158 gsi = pci_irq++;
1159 /*
1160 * Don't assign IRQ used by ACPI SCI
1161 */
1162 if (gsi == acpi_gbl_FADT.sci_interrupt)
1163 gsi = pci_irq++;
1164 gsi_to_irq[irq] = gsi;
1165 } else {
1166 printk(KERN_ERR "GSI %u is too high\n", gsi);
1167 return gsi;
1168 }
1169 }
1170#endif
1171 io_apic_set_pci_routing(ioapic, ioapic_pin, gsi,
1172 triggering == ACPI_EDGE_SENSITIVE ? 0 : 1,
1173 polarity == ACPI_ACTIVE_HIGH ? 0 : 1);
1174 return gsi;
1175}
1176
Yinghai Lu2944e162008-06-01 13:17:38 -07001177int mp_config_acpi_gsi(unsigned char number, unsigned int devfn, u8 pin,
1178 u32 gsi, int triggering, int polarity)
1179{
Yinghai Lufcfa1462008-06-18 17:29:31 -07001180#ifdef CONFIG_X86_MPPARSE
1181 struct mp_config_intsrc mp_irq;
Yinghai Lu2944e162008-06-01 13:17:38 -07001182 int ioapic;
1183
Yinghai Lufcfa1462008-06-18 17:29:31 -07001184 if (!acpi_ioapic)
Yinghai Lud867e532008-06-14 01:26:41 -07001185 return 0;
1186
Yinghai Lu2944e162008-06-01 13:17:38 -07001187 /* print the entry should happen on mptable identically */
Yinghai Lufcfa1462008-06-18 17:29:31 -07001188 mp_irq.mp_type = MP_INTSRC;
1189 mp_irq.mp_irqtype = mp_INT;
1190 mp_irq.mp_irqflag = (triggering == ACPI_EDGE_SENSITIVE ? 4 : 0x0c) |
Yinghai Lu2944e162008-06-01 13:17:38 -07001191 (polarity == ACPI_ACTIVE_HIGH ? 1 : 3);
Yinghai Lufcfa1462008-06-18 17:29:31 -07001192 mp_irq.mp_srcbus = number;
1193 mp_irq.mp_srcbusirq = (((devfn >> 3) & 0x1f) << 2) | ((pin - 1) & 3);
Yinghai Lu2944e162008-06-01 13:17:38 -07001194 ioapic = mp_find_ioapic(gsi);
Yinghai Lufcfa1462008-06-18 17:29:31 -07001195 mp_irq.mp_dstapic = mp_ioapic_routing[ioapic].apic_id;
1196 mp_irq.mp_dstirq = gsi - mp_ioapic_routing[ioapic].gsi_base;
Yinghai Lu2944e162008-06-01 13:17:38 -07001197
Yinghai Lufcfa1462008-06-18 17:29:31 -07001198 save_mp_irq(&mp_irq);
1199#endif
Yinghai Lu2944e162008-06-01 13:17:38 -07001200 return 0;
1201}
1202
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203/*
1204 * Parse IOAPIC related entries in MADT
1205 * returns 0 on success, < 0 on error
1206 */
Len Brown4be44fc2005-08-05 00:44:28 -04001207static int __init acpi_parse_madt_ioapic_entries(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208{
1209 int count;
1210
1211 /*
1212 * ACPI interpreter is required to complete interrupt setup,
1213 * so if it is off, don't enumerate the io-apics with ACPI.
1214 * If MPS is present, it will handle them,
1215 * otherwise the system will stay in PIC mode
1216 */
1217 if (acpi_disabled || acpi_noirq) {
1218 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -04001219 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001221 if (!cpu_has_apic)
Andi Kleend3b6a342006-04-07 19:49:39 +02001222 return -ENODEV;
1223
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 /*
Len Brown4be44fc2005-08-05 00:44:28 -04001225 * if "noapic" boot option, don't look for IO-APICs
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 */
1227 if (skip_ioapic_setup) {
1228 printk(KERN_INFO PREFIX "Skipping IOAPIC probe "
Len Brown4be44fc2005-08-05 00:44:28 -04001229 "due to 'noapic' option.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 return -ENODEV;
1231 }
1232
Len Brown4be44fc2005-08-05 00:44:28 -04001233 count =
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001234 acpi_table_parse_madt(ACPI_MADT_TYPE_IO_APIC, acpi_parse_ioapic,
Len Brown4be44fc2005-08-05 00:44:28 -04001235 MAX_IO_APICS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 if (!count) {
1237 printk(KERN_ERR PREFIX "No IOAPIC entries present\n");
1238 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -04001239 } else if (count < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 printk(KERN_ERR PREFIX "Error parsing IOAPIC entry\n");
1241 return count;
1242 }
1243
Len Brown4be44fc2005-08-05 00:44:28 -04001244 count =
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001245 acpi_table_parse_madt(ACPI_MADT_TYPE_INTERRUPT_OVERRIDE, acpi_parse_int_src_ovr,
Len Brown4be44fc2005-08-05 00:44:28 -04001246 NR_IRQ_VECTORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 if (count < 0) {
Len Brown4be44fc2005-08-05 00:44:28 -04001248 printk(KERN_ERR PREFIX
1249 "Error parsing interrupt source overrides entry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 /* TBD: Cleanup to allow fallback to MPS */
1251 return count;
1252 }
1253
1254 /*
1255 * If BIOS did not supply an INT_SRC_OVR for the SCI
1256 * pretend we got one so we can set the SCI flags.
1257 */
1258 if (!acpi_sci_override_gsi)
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001259 acpi_sci_ioapic_setup(acpi_gbl_FADT.sci_interrupt, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260
1261 /* Fill in identity legacy mapings where no override */
1262 mp_config_acpi_legacy_irqs();
1263
Len Brown4be44fc2005-08-05 00:44:28 -04001264 count =
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001265 acpi_table_parse_madt(ACPI_MADT_TYPE_NMI_SOURCE, acpi_parse_nmi_src,
Len Brown4be44fc2005-08-05 00:44:28 -04001266 NR_IRQ_VECTORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 if (count < 0) {
1268 printk(KERN_ERR PREFIX "Error parsing NMI SRC entry\n");
1269 /* TBD: Cleanup to allow fallback to MPS */
1270 return count;
1271 }
1272
1273 return 0;
1274}
1275#else
1276static inline int acpi_parse_madt_ioapic_entries(void)
1277{
1278 return -1;
1279}
Len Brown84663612005-08-24 12:09:07 -04001280#endif /* !CONFIG_X86_IO_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281
Yinghai Lucbf9bd62008-02-19 03:21:06 -08001282static void __init early_acpi_process_madt(void)
1283{
1284#ifdef CONFIG_X86_LOCAL_APIC
1285 int error;
1286
1287 if (!acpi_table_parse(ACPI_SIG_MADT, acpi_parse_madt)) {
1288
1289 /*
1290 * Parse MADT LAPIC entries
1291 */
1292 error = early_acpi_parse_madt_lapic_addr_ovr();
1293 if (!error) {
1294 acpi_lapic = 1;
1295 smp_found_config = 1;
1296 }
1297 if (error == -EINVAL) {
1298 /*
1299 * Dell Precision Workstation 410, 610 come here.
1300 */
1301 printk(KERN_ERR PREFIX
1302 "Invalid BIOS MADT, disabling ACPI\n");
1303 disable_acpi();
1304 }
1305 }
1306#endif
1307}
1308
Len Brown4be44fc2005-08-05 00:44:28 -04001309static void __init acpi_process_madt(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310{
1311#ifdef CONFIG_X86_LOCAL_APIC
Len Brown7f8f97c2007-02-10 21:28:03 -05001312 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
Len Brown7f8f97c2007-02-10 21:28:03 -05001314 if (!acpi_table_parse(ACPI_SIG_MADT, acpi_parse_madt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315
1316 /*
1317 * Parse MADT LAPIC entries
1318 */
1319 error = acpi_parse_madt_lapic_entries();
1320 if (!error) {
1321 acpi_lapic = 1;
1322
Venkatesh Pallipadi911a62d2005-09-03 15:56:31 -07001323#ifdef CONFIG_X86_GENERICARCH
1324 generic_bigsmp_probe();
1325#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 /*
1327 * Parse MADT IO-APIC entries
1328 */
1329 error = acpi_parse_madt_ioapic_entries();
1330 if (!error) {
1331 acpi_irq_model = ACPI_IRQ_MODEL_IOAPIC;
1332 acpi_irq_balance_set(NULL);
1333 acpi_ioapic = 1;
1334
1335 smp_found_config = 1;
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001336#ifdef CONFIG_X86_32
Ingo Molnar3c43f032007-05-02 19:27:04 +02001337 setup_apic_routing();
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001338#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 }
1340 }
1341 if (error == -EINVAL) {
1342 /*
1343 * Dell Precision Workstation 410, 610 come here.
1344 */
Len Brown4be44fc2005-08-05 00:44:28 -04001345 printk(KERN_ERR PREFIX
1346 "Invalid BIOS MADT, disabling ACPI\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 disable_acpi();
1348 }
1349 }
1350#endif
1351 return;
1352}
1353
Jeff Garzik18552562007-10-03 15:15:40 -04001354static int __init disable_acpi_irq(const struct dmi_system_id *d)
Andrey Paninaea00142005-06-25 14:54:42 -07001355{
1356 if (!acpi_force) {
1357 printk(KERN_NOTICE "%s detected: force use of acpi=noirq\n",
1358 d->ident);
1359 acpi_noirq_set();
1360 }
1361 return 0;
1362}
1363
Jeff Garzik18552562007-10-03 15:15:40 -04001364static int __init disable_acpi_pci(const struct dmi_system_id *d)
Andrey Paninaea00142005-06-25 14:54:42 -07001365{
1366 if (!acpi_force) {
1367 printk(KERN_NOTICE "%s detected: force use of pci=noacpi\n",
1368 d->ident);
1369 acpi_disable_pci();
1370 }
1371 return 0;
1372}
Andrey Paninaea00142005-06-25 14:54:42 -07001373
Jeff Garzik18552562007-10-03 15:15:40 -04001374static int __init dmi_disable_acpi(const struct dmi_system_id *d)
Andrey Paninaea00142005-06-25 14:54:42 -07001375{
1376 if (!acpi_force) {
Len Brown4be44fc2005-08-05 00:44:28 -04001377 printk(KERN_NOTICE "%s detected: acpi off\n", d->ident);
Andrey Paninaea00142005-06-25 14:54:42 -07001378 disable_acpi();
1379 } else {
1380 printk(KERN_NOTICE
1381 "Warning: DMI blacklist says broken, but acpi forced\n");
1382 }
1383 return 0;
1384}
1385
1386/*
1387 * Limit ACPI to CPU enumeration for HT
1388 */
Jeff Garzik18552562007-10-03 15:15:40 -04001389static int __init force_acpi_ht(const struct dmi_system_id *d)
Andrey Paninaea00142005-06-25 14:54:42 -07001390{
1391 if (!acpi_force) {
Len Brown4be44fc2005-08-05 00:44:28 -04001392 printk(KERN_NOTICE "%s detected: force use of acpi=ht\n",
1393 d->ident);
Andrey Paninaea00142005-06-25 14:54:42 -07001394 disable_acpi();
1395 acpi_ht = 1;
1396 } else {
1397 printk(KERN_NOTICE
1398 "Warning: acpi=force overrules DMI blacklist: acpi=ht\n");
1399 }
1400 return 0;
1401}
1402
1403/*
Rafael J. Wysockie2079c42008-07-08 16:12:26 +02001404 * Force ignoring BIOS IRQ0 pin2 override
1405 */
1406static int __init dmi_ignore_irq0_timer_override(const struct dmi_system_id *d)
1407{
1408 pr_notice("%s detected: Ignoring BIOS IRQ0 pin2 override\n", d->ident);
1409 acpi_skip_timer_override = 1;
Rafael J. Wysockie2079c42008-07-08 16:12:26 +02001410 return 0;
1411}
1412
1413/*
Andrey Paninaea00142005-06-25 14:54:42 -07001414 * If your system is blacklisted here, but you find that acpi=force
1415 * works for you, please contact acpi-devel@sourceforge.net
1416 */
1417static struct dmi_system_id __initdata acpi_dmi_table[] = {
1418 /*
1419 * Boxes that need ACPI disabled
1420 */
1421 {
Len Brown4be44fc2005-08-05 00:44:28 -04001422 .callback = dmi_disable_acpi,
1423 .ident = "IBM Thinkpad",
1424 .matches = {
1425 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1426 DMI_MATCH(DMI_BOARD_NAME, "2629H1G"),
1427 },
1428 },
Andrey Paninaea00142005-06-25 14:54:42 -07001429
1430 /*
1431 * Boxes that need acpi=ht
1432 */
1433 {
Len Brown4be44fc2005-08-05 00:44:28 -04001434 .callback = force_acpi_ht,
1435 .ident = "FSC Primergy T850",
1436 .matches = {
1437 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
1438 DMI_MATCH(DMI_PRODUCT_NAME, "PRIMERGY T850"),
1439 },
1440 },
Andrey Paninaea00142005-06-25 14:54:42 -07001441 {
Len Brown4be44fc2005-08-05 00:44:28 -04001442 .callback = force_acpi_ht,
Len Brown4be44fc2005-08-05 00:44:28 -04001443 .ident = "HP VISUALIZE NT Workstation",
1444 .matches = {
1445 DMI_MATCH(DMI_BOARD_VENDOR, "Hewlett-Packard"),
1446 DMI_MATCH(DMI_PRODUCT_NAME, "HP VISUALIZE NT Workstation"),
1447 },
1448 },
Andrey Paninaea00142005-06-25 14:54:42 -07001449 {
Len Brown4be44fc2005-08-05 00:44:28 -04001450 .callback = force_acpi_ht,
1451 .ident = "Compaq Workstation W8000",
1452 .matches = {
1453 DMI_MATCH(DMI_SYS_VENDOR, "Compaq"),
1454 DMI_MATCH(DMI_PRODUCT_NAME, "Workstation W8000"),
1455 },
1456 },
Andrey Paninaea00142005-06-25 14:54:42 -07001457 {
Len Brown4be44fc2005-08-05 00:44:28 -04001458 .callback = force_acpi_ht,
1459 .ident = "ASUS P4B266",
1460 .matches = {
1461 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1462 DMI_MATCH(DMI_BOARD_NAME, "P4B266"),
1463 },
1464 },
Andrey Paninaea00142005-06-25 14:54:42 -07001465 {
Len Brown4be44fc2005-08-05 00:44:28 -04001466 .callback = force_acpi_ht,
1467 .ident = "ASUS P2B-DS",
1468 .matches = {
1469 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1470 DMI_MATCH(DMI_BOARD_NAME, "P2B-DS"),
1471 },
1472 },
Andrey Paninaea00142005-06-25 14:54:42 -07001473 {
Len Brown4be44fc2005-08-05 00:44:28 -04001474 .callback = force_acpi_ht,
1475 .ident = "ASUS CUR-DLS",
1476 .matches = {
1477 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1478 DMI_MATCH(DMI_BOARD_NAME, "CUR-DLS"),
1479 },
1480 },
Andrey Paninaea00142005-06-25 14:54:42 -07001481 {
Len Brown4be44fc2005-08-05 00:44:28 -04001482 .callback = force_acpi_ht,
1483 .ident = "ABIT i440BX-W83977",
1484 .matches = {
1485 DMI_MATCH(DMI_BOARD_VENDOR, "ABIT <http://www.abit.com>"),
1486 DMI_MATCH(DMI_BOARD_NAME, "i440BX-W83977 (BP6)"),
1487 },
1488 },
Andrey Paninaea00142005-06-25 14:54:42 -07001489 {
Len Brown4be44fc2005-08-05 00:44:28 -04001490 .callback = force_acpi_ht,
1491 .ident = "IBM Bladecenter",
1492 .matches = {
1493 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1494 DMI_MATCH(DMI_BOARD_NAME, "IBM eServer BladeCenter HS20"),
1495 },
1496 },
Andrey Paninaea00142005-06-25 14:54:42 -07001497 {
Len Brown4be44fc2005-08-05 00:44:28 -04001498 .callback = force_acpi_ht,
1499 .ident = "IBM eServer xSeries 360",
1500 .matches = {
1501 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1502 DMI_MATCH(DMI_BOARD_NAME, "eServer xSeries 360"),
1503 },
1504 },
Andrey Paninaea00142005-06-25 14:54:42 -07001505 {
Len Brown4be44fc2005-08-05 00:44:28 -04001506 .callback = force_acpi_ht,
1507 .ident = "IBM eserver xSeries 330",
1508 .matches = {
1509 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1510 DMI_MATCH(DMI_BOARD_NAME, "eserver xSeries 330"),
1511 },
1512 },
Andrey Paninaea00142005-06-25 14:54:42 -07001513 {
Len Brown4be44fc2005-08-05 00:44:28 -04001514 .callback = force_acpi_ht,
1515 .ident = "IBM eserver xSeries 440",
1516 .matches = {
1517 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1518 DMI_MATCH(DMI_PRODUCT_NAME, "eserver xSeries 440"),
1519 },
1520 },
Andrey Paninaea00142005-06-25 14:54:42 -07001521
Andrey Paninaea00142005-06-25 14:54:42 -07001522 /*
1523 * Boxes that need ACPI PCI IRQ routing disabled
1524 */
1525 {
Len Brown4be44fc2005-08-05 00:44:28 -04001526 .callback = disable_acpi_irq,
1527 .ident = "ASUS A7V",
1528 .matches = {
1529 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC"),
1530 DMI_MATCH(DMI_BOARD_NAME, "<A7V>"),
1531 /* newer BIOS, Revision 1011, does work */
1532 DMI_MATCH(DMI_BIOS_VERSION,
1533 "ASUS A7V ACPI BIOS Revision 1007"),
1534 },
1535 },
Len Brown74586fc2007-03-08 02:48:30 -05001536 {
1537 /*
1538 * Latest BIOS for IBM 600E (1.16) has bad pcinum
1539 * for LPC bridge, which is needed for the PCI
1540 * interrupt links to work. DSDT fix is in bug 5966.
1541 * 2645, 2646 model numbers are shared with 600/600E/600X
1542 */
1543 .callback = disable_acpi_irq,
1544 .ident = "IBM Thinkpad 600 Series 2645",
1545 .matches = {
1546 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1547 DMI_MATCH(DMI_BOARD_NAME, "2645"),
1548 },
1549 },
1550 {
1551 .callback = disable_acpi_irq,
1552 .ident = "IBM Thinkpad 600 Series 2646",
1553 .matches = {
1554 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1555 DMI_MATCH(DMI_BOARD_NAME, "2646"),
1556 },
1557 },
Andrey Paninaea00142005-06-25 14:54:42 -07001558 /*
1559 * Boxes that need ACPI PCI IRQ routing and PCI scan disabled
1560 */
Len Brown4be44fc2005-08-05 00:44:28 -04001561 { /* _BBN 0 bug */
1562 .callback = disable_acpi_pci,
1563 .ident = "ASUS PR-DLS",
1564 .matches = {
1565 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1566 DMI_MATCH(DMI_BOARD_NAME, "PR-DLS"),
1567 DMI_MATCH(DMI_BIOS_VERSION,
1568 "ASUS PR-DLS ACPI BIOS Revision 1010"),
1569 DMI_MATCH(DMI_BIOS_DATE, "03/21/2003")
1570 },
1571 },
Andrey Paninaea00142005-06-25 14:54:42 -07001572 {
Len Brown4be44fc2005-08-05 00:44:28 -04001573 .callback = disable_acpi_pci,
1574 .ident = "Acer TravelMate 36x Laptop",
1575 .matches = {
1576 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
1577 DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 360"),
1578 },
1579 },
Matthew Garrett9340e1c2008-07-01 01:12:06 +01001580 /*
1581 * HP laptops which use a DSDT reporting as HP/SB400/10000,
1582 * which includes some code which overrides all temperature
1583 * trip points to 16C if the INTIN2 input of the I/O APIC
1584 * is enabled. This input is incorrectly designated the
1585 * ISA IRQ 0 via an interrupt source override even though
1586 * it is wired to the output of the master 8259A and INTIN0
Rafael J. Wysockie2079c42008-07-08 16:12:26 +02001587 * is not connected at all. Force ignoring BIOS IRQ0 pin2
1588 * override in that cases.
1589 */
1590 {
1591 .callback = dmi_ignore_irq0_timer_override,
1592 .ident = "HP NX6125 laptop",
1593 .matches = {
1594 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
1595 DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq nx6125"),
1596 },
1597 },
1598 {
1599 .callback = dmi_ignore_irq0_timer_override,
1600 .ident = "HP NX6325 laptop",
1601 .matches = {
1602 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
1603 DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq nx6325"),
1604 },
1605 },
Len Brown4be44fc2005-08-05 00:44:28 -04001606 {}
Andrey Paninaea00142005-06-25 14:54:42 -07001607};
1608
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609/*
1610 * acpi_boot_table_init() and acpi_boot_init()
1611 * called from setup_arch(), always.
1612 * 1. checksums all tables
1613 * 2. enumerates lapics
1614 * 3. enumerates io-apics
1615 *
1616 * acpi_table_init() is separate to allow reading SRAT without
1617 * other side effects.
1618 *
1619 * side effects of acpi_boot_init:
1620 * acpi_lapic = 1 if LAPIC found
1621 * acpi_ioapic = 1 if IOAPIC found
1622 * if (acpi_lapic && acpi_ioapic) smp_found_config = 1;
1623 * if acpi_blacklisted() acpi_disabled = 1;
1624 * acpi_irq_model=...
1625 * ...
1626 *
1627 * return value: (currently ignored)
1628 * 0: success
1629 * !0: failure
1630 */
1631
Len Brown4be44fc2005-08-05 00:44:28 -04001632int __init acpi_boot_table_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633{
1634 int error;
1635
Andrey Paninaea00142005-06-25 14:54:42 -07001636 dmi_check_system(acpi_dmi_table);
Andrey Paninaea00142005-06-25 14:54:42 -07001637
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 /*
1639 * If acpi_disabled, bail out
1640 * One exception: acpi=ht continues far enough to enumerate LAPICs
1641 */
1642 if (acpi_disabled && !acpi_ht)
Len Brown4be44fc2005-08-05 00:44:28 -04001643 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001645 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 * Initialize the ACPI boot-time table parser.
1647 */
1648 error = acpi_table_init();
1649 if (error) {
1650 disable_acpi();
1651 return error;
1652 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001654 acpi_table_parse(ACPI_SIG_BOOT, acpi_parse_sbf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655
1656 /*
1657 * blacklist may disable ACPI entirely
1658 */
1659 error = acpi_blacklisted();
1660 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 if (acpi_force) {
1662 printk(KERN_WARNING PREFIX "acpi=force override\n");
1663 } else {
1664 printk(KERN_WARNING PREFIX "Disabling ACPI support\n");
1665 disable_acpi();
1666 return error;
1667 }
1668 }
1669
1670 return 0;
1671}
1672
Yinghai Lucbf9bd62008-02-19 03:21:06 -08001673int __init early_acpi_boot_init(void)
1674{
1675 /*
1676 * If acpi_disabled, bail out
1677 * One exception: acpi=ht continues far enough to enumerate LAPICs
1678 */
1679 if (acpi_disabled && !acpi_ht)
1680 return 1;
1681
1682 /*
1683 * Process the Multiple APIC Description Table (MADT), if present
1684 */
1685 early_acpi_process_madt();
1686
1687 return 0;
1688}
1689
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690int __init acpi_boot_init(void)
1691{
1692 /*
1693 * If acpi_disabled, bail out
1694 * One exception: acpi=ht continues far enough to enumerate LAPICs
1695 */
1696 if (acpi_disabled && !acpi_ht)
Len Brown4be44fc2005-08-05 00:44:28 -04001697 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001699 acpi_table_parse(ACPI_SIG_BOOT, acpi_parse_sbf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
1701 /*
1702 * set sci_int and PM timer address
1703 */
Alexey Starikovskiyceb6c462007-02-02 19:48:22 +03001704 acpi_table_parse(ACPI_SIG_FADT, acpi_parse_fadt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705
1706 /*
1707 * Process the Multiple APIC Description Table (MADT), if present
1708 */
1709 acpi_process_madt();
1710
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001711 acpi_table_parse(ACPI_SIG_HPET, acpi_parse_hpet);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712
1713 return 0;
1714}
Rusty Russell1a3f2392006-09-26 10:52:32 +02001715
1716static int __init parse_acpi(char *arg)
1717{
1718 if (!arg)
1719 return -EINVAL;
1720
1721 /* "acpi=off" disables both ACPI table parsing and interpreter */
1722 if (strcmp(arg, "off") == 0) {
1723 disable_acpi();
1724 }
1725 /* acpi=force to over-ride black-list */
1726 else if (strcmp(arg, "force") == 0) {
1727 acpi_force = 1;
1728 acpi_ht = 1;
1729 acpi_disabled = 0;
1730 }
1731 /* acpi=strict disables out-of-spec workarounds */
1732 else if (strcmp(arg, "strict") == 0) {
1733 acpi_strict = 1;
1734 }
1735 /* Limit ACPI just to boot-time to enable HT */
1736 else if (strcmp(arg, "ht") == 0) {
1737 if (!acpi_force)
1738 disable_acpi();
1739 acpi_ht = 1;
1740 }
1741 /* "acpi=noirq" disables ACPI interrupt routing */
1742 else if (strcmp(arg, "noirq") == 0) {
1743 acpi_noirq_set();
1744 } else {
1745 /* Core will printk when we return error. */
1746 return -EINVAL;
1747 }
1748 return 0;
1749}
1750early_param("acpi", parse_acpi);
1751
1752/* FIXME: Using pci= for an ACPI parameter is a travesty. */
1753static int __init parse_pci(char *arg)
1754{
1755 if (arg && strcmp(arg, "noacpi") == 0)
1756 acpi_disable_pci();
1757 return 0;
1758}
1759early_param("pci", parse_pci);
1760
Yinghai Lu3c999f12008-06-20 16:11:20 -07001761int __init acpi_mps_check(void)
1762{
1763#if defined(CONFIG_X86_LOCAL_APIC) && !defined(CONFIG_X86_MPPARSE)
1764/* mptable code is not built-in*/
1765 if (acpi_disabled || acpi_noirq) {
1766 printk(KERN_WARNING "MPS support code is not built-in.\n"
1767 "Using acpi=off or acpi=noirq or pci=noacpi "
1768 "may have problem\n");
1769 return 1;
1770 }
1771#endif
1772 return 0;
1773}
1774
Rusty Russell1a3f2392006-09-26 10:52:32 +02001775#ifdef CONFIG_X86_IO_APIC
1776static int __init parse_acpi_skip_timer_override(char *arg)
1777{
1778 acpi_skip_timer_override = 1;
1779 return 0;
1780}
1781early_param("acpi_skip_timer_override", parse_acpi_skip_timer_override);
Andi Kleenfa18f472006-11-14 16:57:46 +01001782
1783static int __init parse_acpi_use_timer_override(char *arg)
1784{
1785 acpi_use_timer_override = 1;
1786 return 0;
1787}
1788early_param("acpi_use_timer_override", parse_acpi_use_timer_override);
Rusty Russell1a3f2392006-09-26 10:52:32 +02001789#endif /* CONFIG_X86_IO_APIC */
1790
1791static int __init setup_acpi_sci(char *s)
1792{
1793 if (!s)
1794 return -EINVAL;
1795 if (!strcmp(s, "edge"))
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001796 acpi_sci_flags = ACPI_MADT_TRIGGER_EDGE |
1797 (acpi_sci_flags & ~ACPI_MADT_TRIGGER_MASK);
Rusty Russell1a3f2392006-09-26 10:52:32 +02001798 else if (!strcmp(s, "level"))
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001799 acpi_sci_flags = ACPI_MADT_TRIGGER_LEVEL |
1800 (acpi_sci_flags & ~ACPI_MADT_TRIGGER_MASK);
Rusty Russell1a3f2392006-09-26 10:52:32 +02001801 else if (!strcmp(s, "high"))
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001802 acpi_sci_flags = ACPI_MADT_POLARITY_ACTIVE_HIGH |
1803 (acpi_sci_flags & ~ACPI_MADT_POLARITY_MASK);
Rusty Russell1a3f2392006-09-26 10:52:32 +02001804 else if (!strcmp(s, "low"))
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001805 acpi_sci_flags = ACPI_MADT_POLARITY_ACTIVE_LOW |
1806 (acpi_sci_flags & ~ACPI_MADT_POLARITY_MASK);
Rusty Russell1a3f2392006-09-26 10:52:32 +02001807 else
1808 return -EINVAL;
1809 return 0;
1810}
1811early_param("acpi_sci", setup_acpi_sci);
Andrew Mortond0a90812006-10-20 14:30:27 -07001812
1813int __acpi_acquire_global_lock(unsigned int *lock)
1814{
1815 unsigned int old, new, val;
1816 do {
1817 old = *lock;
1818 new = (((old & ~0x3) + 2) + ((old >> 1) & 0x1));
1819 val = cmpxchg(lock, old, new);
1820 } while (unlikely (val != old));
1821 return (new < 3) ? -1 : 0;
1822}
1823
1824int __acpi_release_global_lock(unsigned int *lock)
1825{
1826 unsigned int old, new, val;
1827 do {
1828 old = *lock;
1829 new = old & ~0x3;
1830 val = cmpxchg(lock, old, new);
1831 } while (unlikely (val != old));
1832 return old & 0x1;
1833}