blob: 7db15e161aa02954034c4a659789d34ba1991101 [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>
Yinghai Lua31f8202009-05-06 10:06:15 -070036#include <linux/pci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38#include <asm/pgtable.h>
39#include <asm/io_apic.h>
40#include <asm/apic.h>
41#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
Adrian Bunke8924ac2006-09-26 10:52:35 +020045static int __initdata acpi_force = 0;
Zhao Yakui237889b2008-12-17 16:55:18 +080046u32 acpi_rsdt_forced;
Len Brownc636f752009-05-19 23:47:38 -040047int acpi_disabled;
Andi Kleendf3bb572006-09-26 10:52:33 +020048EXPORT_SYMBOL(acpi_disabled);
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#ifdef CONFIG_X86_64
Ingo Molnar1dcdd3d2009-01-28 17:55:37 +010051# include <asm/proto.h>
Haicheng Li0271f912010-02-04 19:06:33 +080052# include <asm/numa_64.h>
Len Brown4be44fc2005-08-05 00:44:28 -040053#endif /* X86 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55#define BAD_MADT_ENTRY(entry, end) ( \
56 (!entry) || (unsigned long)entry + sizeof(*entry) > end || \
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +030057 ((struct acpi_subtable_header *)entry)->length < sizeof(*entry))
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59#define PREFIX "ACPI: "
60
Andrew Morton90d53902006-11-02 22:07:18 -080061int acpi_noirq; /* skip ACPI IRQ initialization */
Yinghai Lu6e4be1f2008-02-05 00:01:48 -080062int acpi_pci_disabled; /* skip ACPI PCI scan and IRQ initialization */
63EXPORT_SYMBOL(acpi_pci_disabled);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064int acpi_ht __initdata = 1; /* enable HT */
65
66int acpi_lapic;
67int acpi_ioapic;
68int acpi_strict;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +030070u8 acpi_sci_flags __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071int acpi_sci_override_gsi __initdata;
72int acpi_skip_timer_override __initdata;
Andi Kleenfa18f472006-11-14 16:57:46 +010073int acpi_use_timer_override __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75#ifdef CONFIG_X86_LOCAL_APIC
76static u64 acpi_lapic_addr __initdata = APIC_DEFAULT_PHYS_BASE;
77#endif
78
79#ifndef __HAVE_ARCH_CMPXCHG
80#warning ACPI uses CMPXCHG, i486 and later hardware
81#endif
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083/* --------------------------------------------------------------------------
84 Boot-time Configuration
85 -------------------------------------------------------------------------- */
86
87/*
88 * The default interrupt routing model is PIC (8259). This gets
Simon Arlott27b46d72007-10-20 01:13:56 +020089 * overridden if IOAPICs are enumerated (below).
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 */
Len Brown4be44fc2005-08-05 00:44:28 -040091enum acpi_irq_model_id acpi_irq_model = ACPI_IRQ_MODEL_PIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94/*
95 * Temporarily use the virtual area starting from FIX_IO_APIC_BASE_END,
96 * to map the target physical address. The problem is that set_fixmap()
97 * provides a single page, and it is possible that the page is not
98 * sufficient.
99 * By using this area, we can map up to MAX_IO_APICS pages temporarily,
100 * i.e. until the next __va_range() call.
101 *
102 * Important Safety Note: The fixed I/O APIC page numbers are *subtracted*
103 * from the fixed base. That's why we start at FIX_IO_APIC_BASE_END and
104 * count idx down while incrementing the phys address.
105 */
Jan Beulich2fdf0742007-12-13 08:33:59 +0000106char *__init __acpi_map_table(unsigned long phys, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Yinghai Luf34fa822008-07-09 20:16:36 -0700109 if (!phys || !size)
110 return NULL;
111
Yinghai Lu7d972772009-02-07 15:39:41 -0800112 return early_ioremap(phys, size);
113}
114void __init __acpi_unmap_table(char *map, unsigned long size)
115{
116 if (!map || !size)
117 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Yinghai Lu7d972772009-02-07 15:39:41 -0800119 early_iounmap(map, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122#ifdef CONFIG_X86_LOCAL_APIC
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +0300123static int __init acpi_parse_madt(struct acpi_table_header *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
Len Brown4be44fc2005-08-05 00:44:28 -0400125 struct acpi_table_madt *madt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +0300127 if (!cpu_has_apic)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 return -EINVAL;
129
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +0300130 madt = (struct acpi_table_madt *)table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 if (!madt) {
132 printk(KERN_WARNING PREFIX "Unable to map MADT\n");
133 return -ENODEV;
134 }
135
Alexey Starikovskiyad363f82007-02-02 19:48:22 +0300136 if (madt->address) {
137 acpi_lapic_addr = (u64) madt->address;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
139 printk(KERN_DEBUG PREFIX "Local APIC address 0x%08x\n",
Alexey Starikovskiyad363f82007-02-02 19:48:22 +0300140 madt->address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 }
142
Ingo Molnar306db032009-01-28 03:43:47 +0100143 default_acpi_madt_oem_check(madt->header.oem_id,
144 madt->header.oem_table_id);
Len Brown4be44fc2005-08-05 00:44:28 -0400145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 return 0;
147}
148
Alexey Starikovskiydfac2182008-04-04 23:41:50 +0400149static void __cpuinit acpi_register_lapic(int id, u8 enabled)
150{
Yinghai Lufb3bbd62008-05-22 18:22:30 -0700151 unsigned int ver = 0;
152
Alexey Starikovskiydfac2182008-04-04 23:41:50 +0400153 if (!enabled) {
154 ++disabled_cpus;
155 return;
156 }
157
Yinghai Lufb3bbd62008-05-22 18:22:30 -0700158 if (boot_cpu_physical_apicid != -1U)
159 ver = apic_version[boot_cpu_physical_apicid];
Yinghai Lufb3bbd62008-05-22 18:22:30 -0700160
161 generic_processor_info(id, ver);
Alexey Starikovskiydfac2182008-04-04 23:41:50 +0400162}
163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164static int __init
Suresh Siddha7237d3d2009-03-30 13:55:30 -0800165acpi_parse_x2apic(struct acpi_subtable_header *header, const unsigned long end)
166{
167 struct acpi_madt_local_x2apic *processor = NULL;
168
169 processor = (struct acpi_madt_local_x2apic *)header;
170
171 if (BAD_MADT_ENTRY(processor, end))
172 return -EINVAL;
173
174 acpi_table_print_madt_entry(header);
175
176#ifdef CONFIG_X86_X2APIC
177 /*
178 * We need to register disabled CPU as well to permit
179 * counting disabled CPUs. This allows us to size
180 * cpus_possible_map more accurately, to permit
181 * to not preallocating memory for all NR_CPUS
182 * when we use CPU hotplug.
183 */
184 acpi_register_lapic(processor->local_apic_id, /* APIC ID */
185 processor->lapic_flags & ACPI_MADT_ENABLED);
186#else
187 printk(KERN_WARNING PREFIX "x2apic entry ignored\n");
188#endif
189
190 return 0;
191}
192
193static int __init
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300194acpi_parse_lapic(struct acpi_subtable_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195{
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300196 struct acpi_madt_local_apic *processor = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300198 processor = (struct acpi_madt_local_apic *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200 if (BAD_MADT_ENTRY(processor, end))
201 return -EINVAL;
202
203 acpi_table_print_madt_entry(header);
204
Ashok Raj7f66ae42006-02-03 21:51:50 +0100205 /*
206 * We need to register disabled CPU as well to permit
207 * counting disabled CPUs. This allows us to size
208 * cpus_possible_map more accurately, to permit
209 * to not preallocating memory for all NR_CPUS
210 * when we use CPU hotplug.
211 */
Alexey Starikovskiydfac2182008-04-04 23:41:50 +0400212 acpi_register_lapic(processor->id, /* APIC ID */
213 processor->lapic_flags & ACPI_MADT_ENABLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
215 return 0;
216}
217
218static int __init
Jack Steinerac049c12008-03-28 14:12:09 -0500219acpi_parse_sapic(struct acpi_subtable_header *header, const unsigned long end)
220{
221 struct acpi_madt_local_sapic *processor = NULL;
222
223 processor = (struct acpi_madt_local_sapic *)header;
224
225 if (BAD_MADT_ENTRY(processor, end))
226 return -EINVAL;
227
228 acpi_table_print_madt_entry(header);
229
Alexey Starikovskiydfac2182008-04-04 23:41:50 +0400230 acpi_register_lapic((processor->id << 8) | processor->eid,/* APIC ID */
231 processor->lapic_flags & ACPI_MADT_ENABLED);
Jack Steinerac049c12008-03-28 14:12:09 -0500232
233 return 0;
234}
235
236static int __init
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300237acpi_parse_lapic_addr_ovr(struct acpi_subtable_header * header,
Len Brown4be44fc2005-08-05 00:44:28 -0400238 const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239{
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300240 struct acpi_madt_local_apic_override *lapic_addr_ovr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300242 lapic_addr_ovr = (struct acpi_madt_local_apic_override *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
244 if (BAD_MADT_ENTRY(lapic_addr_ovr, end))
245 return -EINVAL;
246
247 acpi_lapic_addr = lapic_addr_ovr->address;
248
249 return 0;
250}
251
252static int __init
Suresh Siddha7237d3d2009-03-30 13:55:30 -0800253acpi_parse_x2apic_nmi(struct acpi_subtable_header *header,
254 const unsigned long end)
255{
256 struct acpi_madt_local_x2apic_nmi *x2apic_nmi = NULL;
257
258 x2apic_nmi = (struct acpi_madt_local_x2apic_nmi *)header;
259
260 if (BAD_MADT_ENTRY(x2apic_nmi, end))
261 return -EINVAL;
262
263 acpi_table_print_madt_entry(header);
264
265 if (x2apic_nmi->lint != 1)
266 printk(KERN_WARNING PREFIX "NMI not connected to LINT 1!\n");
267
268 return 0;
269}
270
271static int __init
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300272acpi_parse_lapic_nmi(struct acpi_subtable_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273{
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300274 struct acpi_madt_local_apic_nmi *lapic_nmi = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300276 lapic_nmi = (struct acpi_madt_local_apic_nmi *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
278 if (BAD_MADT_ENTRY(lapic_nmi, end))
279 return -EINVAL;
280
281 acpi_table_print_madt_entry(header);
282
283 if (lapic_nmi->lint != 1)
284 printk(KERN_WARNING PREFIX "NMI not connected to LINT 1!\n");
285
286 return 0;
287}
288
Len Brown4be44fc2005-08-05 00:44:28 -0400289#endif /*CONFIG_X86_LOCAL_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
Len Brown84663612005-08-24 12:09:07 -0400291#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
293static int __init
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300294acpi_parse_ioapic(struct acpi_subtable_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295{
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300296 struct acpi_madt_io_apic *ioapic = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300298 ioapic = (struct acpi_madt_io_apic *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
300 if (BAD_MADT_ENTRY(ioapic, end))
301 return -EINVAL;
Len Brown4be44fc2005-08-05 00:44:28 -0400302
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 acpi_table_print_madt_entry(header);
304
Len Brown4be44fc2005-08-05 00:44:28 -0400305 mp_register_ioapic(ioapic->id,
306 ioapic->address, ioapic->global_irq_base);
307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 return 0;
309}
310
311/*
312 * Parse Interrupt Source Override for the ACPI SCI
313 */
Len Browne82c3542006-12-21 01:29:59 -0500314static void __init acpi_sci_ioapic_setup(u32 gsi, u16 polarity, u16 trigger)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315{
316 if (trigger == 0) /* compatible SCI trigger is level */
317 trigger = 3;
318
319 if (polarity == 0) /* compatible SCI polarity is low */
320 polarity = 3;
321
322 /* Command-line over-ride via acpi_sci= */
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300323 if (acpi_sci_flags & ACPI_MADT_TRIGGER_MASK)
324 trigger = (acpi_sci_flags & ACPI_MADT_TRIGGER_MASK) >> 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300326 if (acpi_sci_flags & ACPI_MADT_POLARITY_MASK)
327 polarity = acpi_sci_flags & ACPI_MADT_POLARITY_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
329 /*
Len Brown4be44fc2005-08-05 00:44:28 -0400330 * mp_config_acpi_legacy_irqs() already setup IRQs < 16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 * If GSI is < 16, this will update its flags,
332 * else it will create a new mp_irqs[] entry.
333 */
Len Brown7bdd21c2006-12-02 02:27:46 -0500334 mp_override_legacy_irq(gsi, polarity, trigger, gsi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
336 /*
337 * stash over-ride to indicate we've been here
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300338 * and for later update of acpi_gbl_FADT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 */
Len Brown7bdd21c2006-12-02 02:27:46 -0500340 acpi_sci_override_gsi = gsi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 return;
342}
343
344static int __init
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300345acpi_parse_int_src_ovr(struct acpi_subtable_header * header,
Len Brown4be44fc2005-08-05 00:44:28 -0400346 const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347{
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300348 struct acpi_madt_interrupt_override *intsrc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300350 intsrc = (struct acpi_madt_interrupt_override *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
352 if (BAD_MADT_ENTRY(intsrc, end))
353 return -EINVAL;
354
355 acpi_table_print_madt_entry(header);
356
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300357 if (intsrc->source_irq == acpi_gbl_FADT.sci_interrupt) {
Len Brown7bdd21c2006-12-02 02:27:46 -0500358 acpi_sci_ioapic_setup(intsrc->global_irq,
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300359 intsrc->inti_flags & ACPI_MADT_POLARITY_MASK,
360 (intsrc->inti_flags & ACPI_MADT_TRIGGER_MASK) >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 return 0;
362 }
363
364 if (acpi_skip_timer_override &&
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300365 intsrc->source_irq == 0 && intsrc->global_irq == 2) {
Len Brown4be44fc2005-08-05 00:44:28 -0400366 printk(PREFIX "BIOS IRQ0 pin2 override ignored.\n");
367 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 }
369
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300370 mp_override_legacy_irq(intsrc->source_irq,
371 intsrc->inti_flags & ACPI_MADT_POLARITY_MASK,
372 (intsrc->inti_flags & ACPI_MADT_TRIGGER_MASK) >> 2,
373 intsrc->global_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
375 return 0;
376}
377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378static int __init
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300379acpi_parse_nmi_src(struct acpi_subtable_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300381 struct acpi_madt_nmi_source *nmi_src = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300383 nmi_src = (struct acpi_madt_nmi_source *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
385 if (BAD_MADT_ENTRY(nmi_src, end))
386 return -EINVAL;
387
388 acpi_table_print_madt_entry(header);
389
390 /* TBD: Support nimsrc entries? */
391
392 return 0;
393}
394
Len Brown4be44fc2005-08-05 00:44:28 -0400395#endif /* CONFIG_X86_IO_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397/*
398 * acpi_pic_sci_set_trigger()
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300399 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 * use ELCR to set PIC-mode trigger type for SCI
401 *
402 * If a PIC-mode SCI is not recognized or gives spurious IRQ7's
403 * it may require Edge Trigger -- use "acpi_sci=edge"
404 *
405 * Port 0x4d0-4d1 are ECLR1 and ECLR2, the Edge/Level Control Registers
406 * for the 8259 PIC. bit[n] = 1 means irq[n] is Level, otherwise Edge.
Simon Arlott27b46d72007-10-20 01:13:56 +0200407 * ECLR1 is IRQs 0-7 (IRQ 0, 1, 2 must be 0)
408 * ECLR2 is IRQs 8-15 (IRQ 8, 13 must be 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 */
410
Len Brown4be44fc2005-08-05 00:44:28 -0400411void __init acpi_pic_sci_set_trigger(unsigned int irq, u16 trigger)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412{
413 unsigned int mask = 1 << irq;
414 unsigned int old, new;
415
416 /* Real old ELCR mask */
417 old = inb(0x4d0) | (inb(0x4d1) << 8);
418
419 /*
Simon Arlott27b46d72007-10-20 01:13:56 +0200420 * If we use ACPI to set PCI IRQs, then we should clear ELCR
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 * since we will set it correctly as we enable the PCI irq
422 * routing.
423 */
424 new = acpi_noirq ? old : 0;
425
426 /*
427 * Update SCI information in the ELCR, it isn't in the PCI
428 * routing tables..
429 */
430 switch (trigger) {
Len Brown4be44fc2005-08-05 00:44:28 -0400431 case 1: /* Edge - clear */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 new &= ~mask;
433 break;
Len Brown4be44fc2005-08-05 00:44:28 -0400434 case 3: /* Level - set */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 new |= mask;
436 break;
437 }
438
439 if (old == new)
440 return;
441
442 printk(PREFIX "setting ELCR to %04x (from %04x)\n", new, old);
443 outb(new, 0x4d0);
444 outb(new >> 8, 0x4d1);
445}
446
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447int acpi_gsi_to_irq(u32 gsi, unsigned int *irq)
448{
Eric W. Biedermanf023d762006-10-04 02:16:52 -0700449 *irq = gsi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 return 0;
451}
452
Kenji Kaneshige1f3a6a12005-07-28 14:42:00 -0400453/*
454 * success: return IRQ number (>=0)
455 * failure: return < 0
456 */
Yinghai Lue5198072009-05-15 13:05:16 -0700457int acpi_register_gsi(struct device *dev, u32 gsi, int trigger, int polarity)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458{
459 unsigned int irq;
460 unsigned int plat_gsi = gsi;
461
462#ifdef CONFIG_PCI
463 /*
464 * Make sure all (legacy) PCI IRQs are set as level-triggered.
465 */
466 if (acpi_irq_model == ACPI_IRQ_MODEL_PIC) {
Yinghai Lue5198072009-05-15 13:05:16 -0700467 if (trigger == ACPI_LEVEL_SENSITIVE)
Len Brown4be44fc2005-08-05 00:44:28 -0400468 eisa_set_level_irq(gsi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 }
470#endif
471
472#ifdef CONFIG_X86_IO_APIC
473 if (acpi_irq_model == ACPI_IRQ_MODEL_IOAPIC) {
Yinghai Lue5198072009-05-15 13:05:16 -0700474 plat_gsi = mp_register_gsi(dev, gsi, trigger, polarity);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 }
476#endif
477 acpi_gsi_to_irq(plat_gsi, &irq);
478 return irq;
479}
Len Brown4be44fc2005-08-05 00:44:28 -0400480
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481/*
482 * ACPI based hotplug support for CPU
483 */
484#ifdef CONFIG_ACPI_HOTPLUG_CPU
Sam Ravnborg009cbad2008-02-01 17:49:42 +0100485
Haicheng Li0271f912010-02-04 19:06:33 +0800486static void acpi_map_cpu2node(acpi_handle handle, int cpu, int physid)
487{
488#ifdef CONFIG_ACPI_NUMA
489 int nid;
490
491 nid = acpi_get_node(handle);
492 if (nid == -1 || !node_online(nid))
493 return;
494#ifdef CONFIG_X86_64
495 apicid_to_node[physid] = nid;
496 numa_set_node(cpu, nid);
497#else /* CONFIG_X86_32 */
498 apicid_2_node[physid] = nid;
499 cpu_to_node_map[cpu] = nid;
500#endif
501
502#endif
503}
504
Sam Ravnborg009cbad2008-02-01 17:49:42 +0100505static int __cpuinit _acpi_map_lsapic(acpi_handle handle, int *pcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506{
Ashok Raj73fea172006-09-26 10:52:35 +0200507 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
508 union acpi_object *obj;
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300509 struct acpi_madt_local_apic *lapic;
Rusty Russellee943a82008-12-31 18:08:47 -0800510 cpumask_var_t tmp_map, new_map;
Ashok Raj73fea172006-09-26 10:52:35 +0200511 u8 physid;
512 int cpu;
Rusty Russellee943a82008-12-31 18:08:47 -0800513 int retval = -ENOMEM;
Ashok Raj73fea172006-09-26 10:52:35 +0200514
515 if (ACPI_FAILURE(acpi_evaluate_object(handle, "_MAT", NULL, &buffer)))
516 return -EINVAL;
517
518 if (!buffer.length || !buffer.pointer)
519 return -EINVAL;
520
521 obj = buffer.pointer;
522 if (obj->type != ACPI_TYPE_BUFFER ||
523 obj->buffer.length < sizeof(*lapic)) {
524 kfree(buffer.pointer);
525 return -EINVAL;
526 }
527
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300528 lapic = (struct acpi_madt_local_apic *)obj->buffer.pointer;
Ashok Raj73fea172006-09-26 10:52:35 +0200529
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300530 if (lapic->header.type != ACPI_MADT_TYPE_LOCAL_APIC ||
531 !(lapic->lapic_flags & ACPI_MADT_ENABLED)) {
Ashok Raj73fea172006-09-26 10:52:35 +0200532 kfree(buffer.pointer);
533 return -EINVAL;
534 }
535
536 physid = lapic->id;
537
538 kfree(buffer.pointer);
539 buffer.length = ACPI_ALLOCATE_BUFFER;
540 buffer.pointer = NULL;
541
Rusty Russellee943a82008-12-31 18:08:47 -0800542 if (!alloc_cpumask_var(&tmp_map, GFP_KERNEL))
543 goto out;
544
545 if (!alloc_cpumask_var(&new_map, GFP_KERNEL))
546 goto free_tmp_map;
547
548 cpumask_copy(tmp_map, cpu_present_mask);
Alexey Starikovskiydfac2182008-04-04 23:41:50 +0400549 acpi_register_lapic(physid, lapic->lapic_flags & ACPI_MADT_ENABLED);
Ashok Raj73fea172006-09-26 10:52:35 +0200550
551 /*
552 * If mp_register_lapic successfully generates a new logical cpu
553 * number, then the following will get us exactly what was mapped
554 */
Rusty Russellee943a82008-12-31 18:08:47 -0800555 cpumask_andnot(new_map, cpu_present_mask, tmp_map);
556 if (cpumask_empty(new_map)) {
Ashok Raj73fea172006-09-26 10:52:35 +0200557 printk ("Unable to map lapic to logical cpu number\n");
Rusty Russellee943a82008-12-31 18:08:47 -0800558 retval = -EINVAL;
559 goto free_new_map;
Ashok Raj73fea172006-09-26 10:52:35 +0200560 }
561
Rusty Russellee943a82008-12-31 18:08:47 -0800562 cpu = cpumask_first(new_map);
Haicheng Li0271f912010-02-04 19:06:33 +0800563 acpi_map_cpu2node(handle, cpu, physid);
Ashok Raj73fea172006-09-26 10:52:35 +0200564
565 *pcpu = cpu;
Rusty Russellee943a82008-12-31 18:08:47 -0800566 retval = 0;
567
568free_new_map:
569 free_cpumask_var(new_map);
570free_tmp_map:
571 free_cpumask_var(tmp_map);
572out:
573 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574}
Len Brown4be44fc2005-08-05 00:44:28 -0400575
Sam Ravnborg009cbad2008-02-01 17:49:42 +0100576/* wrapper to silence section mismatch warning */
577int __ref acpi_map_lsapic(acpi_handle handle, int *pcpu)
578{
579 return _acpi_map_lsapic(handle, pcpu);
580}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581EXPORT_SYMBOL(acpi_map_lsapic);
582
Len Brown4be44fc2005-08-05 00:44:28 -0400583int acpi_unmap_lsapic(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584{
Mike Travis71fff5e2007-10-19 20:35:03 +0200585 per_cpu(x86_cpu_to_apicid, cpu) = -1;
Mike Travis96289372008-12-31 18:08:46 -0800586 set_cpu_present(cpu, false);
Ashok Raj73fea172006-09-26 10:52:35 +0200587 num_processors--;
588
589 return (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590}
Len Brown4be44fc2005-08-05 00:44:28 -0400591
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592EXPORT_SYMBOL(acpi_unmap_lsapic);
Len Brown4be44fc2005-08-05 00:44:28 -0400593#endif /* CONFIG_ACPI_HOTPLUG_CPU */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Len Brown4be44fc2005-08-05 00:44:28 -0400595int acpi_register_ioapic(acpi_handle handle, u64 phys_addr, u32 gsi_base)
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700596{
597 /* TBD */
598 return -EINVAL;
599}
Len Brown4be44fc2005-08-05 00:44:28 -0400600
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700601EXPORT_SYMBOL(acpi_register_ioapic);
602
Len Brown4be44fc2005-08-05 00:44:28 -0400603int acpi_unregister_ioapic(acpi_handle handle, u32 gsi_base)
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700604{
605 /* TBD */
606 return -EINVAL;
607}
Len Brown4be44fc2005-08-05 00:44:28 -0400608
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700609EXPORT_SYMBOL(acpi_unregister_ioapic);
610
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300611static int __init acpi_parse_sbf(struct acpi_table_header *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612{
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300613 struct acpi_table_boot *sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300615 sb = (struct acpi_table_boot *)table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 if (!sb) {
617 printk(KERN_WARNING PREFIX "Unable to map SBF\n");
618 return -ENODEV;
619 }
620
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300621 sbf_port = sb->cmos_index; /* Save CMOS port */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
623 return 0;
624}
625
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626#ifdef CONFIG_HPET_TIMER
john stultz2d0c87c2007-02-16 01:28:18 -0800627#include <asm/hpet.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Aaron Durbina1dfd852007-07-21 17:11:39 +0200629static struct __initdata resource *hpet_res;
630
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300631static int __init acpi_parse_hpet(struct acpi_table_header *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632{
633 struct acpi_table_hpet *hpet_tbl;
634
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300635 hpet_tbl = (struct acpi_table_hpet *)table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 if (!hpet_tbl) {
637 printk(KERN_WARNING PREFIX "Unable to map HPET\n");
638 return -ENODEV;
639 }
640
Alexey Starikovskiyad363f82007-02-02 19:48:22 +0300641 if (hpet_tbl->address.space_id != ACPI_SPACE_MEM) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 printk(KERN_WARNING PREFIX "HPET timers must be located in "
643 "memory.\n");
644 return -1;
645 }
adurbin@google.comf0f4c342006-09-26 10:52:39 +0200646
john stultz2d0c87c2007-02-16 01:28:18 -0800647 hpet_address = hpet_tbl->address.address;
Suresh Siddhac8bc6f32009-08-04 12:07:09 -0700648 hpet_blockid = hpet_tbl->sequence;
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;
Suresh Siddha7237d3d2009-03-30 13:55:30 -0800797 int x2count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
Andi Kleen0fcd2702006-04-11 12:54:36 +0200799 if (!cpu_has_apic)
800 return -ENODEV;
801
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300802 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 * Note that the LAPIC address is obtained from the MADT (32-bit value)
804 * and (optionally) overriden by a LAPIC_ADDR_OVR entry (64-bit value).
805 */
806
Len Brown4be44fc2005-08-05 00:44:28 -0400807 count =
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300808 acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_APIC_OVERRIDE,
Len Brown4be44fc2005-08-05 00:44:28 -0400809 acpi_parse_lapic_addr_ovr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 if (count < 0) {
Len Brown4be44fc2005-08-05 00:44:28 -0400811 printk(KERN_ERR PREFIX
812 "Error parsing LAPIC address override entry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 return count;
814 }
815
Alexey Starikovskiy31d20922008-04-04 23:41:57 +0400816 acpi_register_lapic_address(acpi_lapic_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
Jack Steinerac049c12008-03-28 14:12:09 -0500818 count = acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_SAPIC,
819 acpi_parse_sapic, MAX_APICS);
820
Suresh Siddha7237d3d2009-03-30 13:55:30 -0800821 if (!count) {
822 x2count = acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_X2APIC,
823 acpi_parse_x2apic, MAX_APICS);
Jack Steinerac049c12008-03-28 14:12:09 -0500824 count = acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_APIC,
825 acpi_parse_lapic, MAX_APICS);
Suresh Siddha7237d3d2009-03-30 13:55:30 -0800826 }
827 if (!count && !x2count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 printk(KERN_ERR PREFIX "No LAPIC entries present\n");
829 /* TBD: Cleanup to allow fallback to MPS */
830 return -ENODEV;
Suresh Siddha7237d3d2009-03-30 13:55:30 -0800831 } else if (count < 0 || x2count < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 printk(KERN_ERR PREFIX "Error parsing LAPIC entry\n");
833 /* TBD: Cleanup to allow fallback to MPS */
834 return count;
835 }
836
Suresh Siddha7237d3d2009-03-30 13:55:30 -0800837 x2count =
838 acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_X2APIC_NMI,
839 acpi_parse_x2apic_nmi, 0);
Len Brown4be44fc2005-08-05 00:44:28 -0400840 count =
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300841 acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_APIC_NMI, acpi_parse_lapic_nmi, 0);
Suresh Siddha7237d3d2009-03-30 13:55:30 -0800842 if (count < 0 || x2count < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 printk(KERN_ERR PREFIX "Error parsing LAPIC NMI entry\n");
844 /* TBD: Cleanup to allow fallback to MPS */
845 return count;
846 }
847 return 0;
848}
Len Brown4be44fc2005-08-05 00:44:28 -0400849#endif /* CONFIG_X86_LOCAL_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
Len Brown84663612005-08-24 12:09:07 -0400851#ifdef CONFIG_X86_IO_APIC
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400852#define MP_ISA_BUS 0
853
Yinghai Lud49c4282008-06-08 18:31:54 -0700854#ifdef CONFIG_X86_ES7000
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400855extern int es7000_plat;
856#endif
857
Yinghai Lu3f4a7392009-02-08 16:18:03 -0800858int __init acpi_probe_gsi(void)
859{
860 int idx;
861 int gsi;
862 int max_gsi = 0;
863
864 if (acpi_disabled)
865 return 0;
866
867 if (!acpi_ioapic)
868 return 0;
869
870 max_gsi = 0;
871 for (idx = 0; idx < nr_ioapics; idx++) {
Feng Tang2a4ab642009-07-07 23:01:15 -0400872 gsi = mp_gsi_routing[idx].gsi_end;
Yinghai Lu3f4a7392009-02-08 16:18:03 -0800873
874 if (gsi > max_gsi)
875 max_gsi = gsi;
876 }
877
878 return max_gsi + 1;
879}
880
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530881static void assign_to_mp_irq(struct mpc_intsrc *m,
882 struct mpc_intsrc *mp_irq)
Yinghai Lufcfa1462008-06-18 17:29:31 -0700883{
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530884 memcpy(mp_irq, m, sizeof(struct mpc_intsrc));
Yinghai Lufcfa1462008-06-18 17:29:31 -0700885}
886
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530887static int mp_irq_cmp(struct mpc_intsrc *mp_irq,
888 struct mpc_intsrc *m)
Yinghai Lufcfa1462008-06-18 17:29:31 -0700889{
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530890 return memcmp(mp_irq, m, sizeof(struct mpc_intsrc));
Yinghai Lufcfa1462008-06-18 17:29:31 -0700891}
892
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530893static void save_mp_irq(struct mpc_intsrc *m)
Yinghai Lufcfa1462008-06-18 17:29:31 -0700894{
895 int i;
896
897 for (i = 0; i < mp_irq_entries; i++) {
898 if (!mp_irq_cmp(&mp_irqs[i], m))
899 return;
900 }
901
902 assign_to_mp_irq(m, &mp_irqs[mp_irq_entries]);
903 if (++mp_irq_entries == MAX_IRQ_SOURCES)
904 panic("Max # of irq sources exceeded!!\n");
905}
906
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400907void __init mp_override_legacy_irq(u8 bus_irq, u8 polarity, u8 trigger, u32 gsi)
908{
Yinghai Lu6df88092008-06-15 18:19:46 -0700909 int ioapic;
910 int pin;
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530911 struct mpc_intsrc mp_irq;
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400912
913 /*
914 * Convert 'gsi' to 'ioapic.pin'.
915 */
916 ioapic = mp_find_ioapic(gsi);
917 if (ioapic < 0)
918 return;
Jeremy Fitzhardingec3e137d2009-02-09 12:05:47 -0800919 pin = mp_find_ioapic_pin(ioapic, gsi);
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400920
921 /*
922 * TBD: This check is for faulty timer entries, where the override
923 * erroneously sets the trigger to level, resulting in a HUGE
924 * increase of timer interrupts!
925 */
926 if ((bus_irq == 0) && (trigger == 3))
927 trigger = 1;
928
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530929 mp_irq.type = MP_INTSRC;
930 mp_irq.irqtype = mp_INT;
931 mp_irq.irqflag = (trigger << 2) | polarity;
932 mp_irq.srcbus = MP_ISA_BUS;
933 mp_irq.srcbusirq = bus_irq; /* IRQ */
934 mp_irq.dstapic = mp_ioapics[ioapic].apicid; /* APIC ID */
935 mp_irq.dstirq = pin; /* INTIN# */
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400936
Yinghai Lufcfa1462008-06-18 17:29:31 -0700937 save_mp_irq(&mp_irq);
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400938}
939
940void __init mp_config_acpi_legacy_irqs(void)
941{
Yinghai Lu6df88092008-06-15 18:19:46 -0700942 int i;
943 int ioapic;
944 unsigned int dstapic;
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530945 struct mpc_intsrc mp_irq;
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400946
947#if defined (CONFIG_MCA) || defined (CONFIG_EISA)
948 /*
949 * Fabricate the legacy ISA bus (bus #31).
950 */
951 mp_bus_id_to_type[MP_ISA_BUS] = MP_BUS_ISA;
952#endif
953 set_bit(MP_ISA_BUS, mp_bus_not_pci);
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200954 pr_debug("Bus #%d is ISA\n", MP_ISA_BUS);
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400955
Yinghai Lud49c4282008-06-08 18:31:54 -0700956#ifdef CONFIG_X86_ES7000
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400957 /*
958 * Older generations of ES7000 have no legacy identity mappings
959 */
960 if (es7000_plat == 1)
961 return;
962#endif
963
964 /*
965 * Locate the IOAPIC that manages the ISA IRQs (0-15).
966 */
967 ioapic = mp_find_ioapic(0);
968 if (ioapic < 0)
969 return;
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +0530970 dstapic = mp_ioapics[ioapic].apicid;
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400971
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400972 /*
973 * Use the default configuration for the IRQs 0-15. Unless
974 * overridden by (MADT) interrupt source override entries.
975 */
976 for (i = 0; i < 16; i++) {
977 int idx;
978
979 for (idx = 0; idx < mp_irq_entries; idx++) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530980 struct mpc_intsrc *irq = mp_irqs + idx;
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400981
982 /* Do we already have a mapping for this ISA IRQ? */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530983 if (irq->srcbus == MP_ISA_BUS && irq->srcbusirq == i)
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400984 break;
985
986 /* Do we already have a mapping for this IOAPIC pin */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530987 if (irq->dstapic == dstapic && irq->dstirq == i)
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400988 break;
989 }
990
991 if (idx != mp_irq_entries) {
992 printk(KERN_DEBUG "ACPI: IRQ%d used by override.\n", i);
993 continue; /* IRQ already used */
994 }
995
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530996 mp_irq.type = MP_INTSRC;
997 mp_irq.irqflag = 0; /* Conforming */
998 mp_irq.srcbus = MP_ISA_BUS;
999 mp_irq.dstapic = dstapic;
1000 mp_irq.irqtype = mp_INT;
1001 mp_irq.srcbusirq = i; /* Identity mapped */
1002 mp_irq.dstirq = i;
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001003
Yinghai Lufcfa1462008-06-18 17:29:31 -07001004 save_mp_irq(&mp_irq);
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001005 }
1006}
1007
Yinghai Lue5198072009-05-15 13:05:16 -07001008static int mp_config_acpi_gsi(struct device *dev, u32 gsi, int trigger,
Yinghai Lua31f8202009-05-06 10:06:15 -07001009 int polarity)
1010{
1011#ifdef CONFIG_X86_MPPARSE
1012 struct mpc_intsrc mp_irq;
1013 struct pci_dev *pdev;
1014 unsigned char number;
1015 unsigned int devfn;
1016 int ioapic;
1017 u8 pin;
1018
1019 if (!acpi_ioapic)
1020 return 0;
1021 if (!dev)
1022 return 0;
1023 if (dev->bus != &pci_bus_type)
1024 return 0;
1025
1026 pdev = to_pci_dev(dev);
1027 number = pdev->bus->number;
1028 devfn = pdev->devfn;
1029 pin = pdev->pin;
1030 /* print the entry should happen on mptable identically */
1031 mp_irq.type = MP_INTSRC;
1032 mp_irq.irqtype = mp_INT;
Yinghai Lue5198072009-05-15 13:05:16 -07001033 mp_irq.irqflag = (trigger == ACPI_EDGE_SENSITIVE ? 4 : 0x0c) |
Yinghai Lua31f8202009-05-06 10:06:15 -07001034 (polarity == ACPI_ACTIVE_HIGH ? 1 : 3);
1035 mp_irq.srcbus = number;
1036 mp_irq.srcbusirq = (((devfn >> 3) & 0x1f) << 2) | ((pin - 1) & 3);
1037 ioapic = mp_find_ioapic(gsi);
Yinghai Lubdfe8ac2009-05-06 10:07:41 -07001038 mp_irq.dstapic = mp_ioapics[ioapic].apicid;
Yinghai Lua31f8202009-05-06 10:06:15 -07001039 mp_irq.dstirq = mp_find_ioapic_pin(ioapic, gsi);
1040
1041 save_mp_irq(&mp_irq);
1042#endif
1043 return 0;
1044}
1045
Yinghai Lue5198072009-05-15 13:05:16 -07001046int mp_register_gsi(struct device *dev, u32 gsi, int trigger, int polarity)
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001047{
1048 int ioapic;
1049 int ioapic_pin;
Yinghai Lue5198072009-05-15 13:05:16 -07001050 struct io_apic_irq_attr irq_attr;
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001051
1052 if (acpi_irq_model != ACPI_IRQ_MODEL_IOAPIC)
1053 return gsi;
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001054
1055 /* Don't set up the ACPI SCI because it's already set up */
1056 if (acpi_gbl_FADT.sci_interrupt == gsi)
1057 return gsi;
1058
1059 ioapic = mp_find_ioapic(gsi);
1060 if (ioapic < 0) {
1061 printk(KERN_WARNING "No IOAPIC for GSI %u\n", gsi);
1062 return gsi;
1063 }
1064
Jeremy Fitzhardingec3e137d2009-02-09 12:05:47 -08001065 ioapic_pin = mp_find_ioapic_pin(ioapic, gsi);
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001066
1067#ifdef CONFIG_X86_32
1068 if (ioapic_renumber_irq)
1069 gsi = ioapic_renumber_irq(ioapic, gsi);
1070#endif
1071
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001072 if (ioapic_pin > MP_MAX_IOAPIC_PIN) {
1073 printk(KERN_ERR "Invalid reference to IOAPIC pin "
Yinghai Lubdfe8ac2009-05-06 10:07:41 -07001074 "%d-%d\n", mp_ioapics[ioapic].apicid,
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001075 ioapic_pin);
1076 return gsi;
1077 }
Yinghai Luf1bdb522009-05-15 13:05:16 -07001078
1079 if (enable_update_mptable)
1080 mp_config_acpi_gsi(dev, gsi, trigger, polarity);
Yinghai Lub9e03532009-05-06 10:05:32 -07001081
Yinghai Lue5198072009-05-15 13:05:16 -07001082 set_io_apic_irq_attr(&irq_attr, ioapic, ioapic_pin,
1083 trigger == ACPI_EDGE_SENSITIVE ? 0 : 1,
1084 polarity == ACPI_ACTIVE_HIGH ? 0 : 1);
1085 io_apic_set_pci_routing(dev, gsi, &irq_attr);
Yinghai Lub9e03532009-05-06 10:05:32 -07001086
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001087 return gsi;
1088}
1089
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090/*
1091 * Parse IOAPIC related entries in MADT
1092 * returns 0 on success, < 0 on error
1093 */
Len Brown4be44fc2005-08-05 00:44:28 -04001094static int __init acpi_parse_madt_ioapic_entries(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095{
1096 int count;
1097
1098 /*
1099 * ACPI interpreter is required to complete interrupt setup,
1100 * so if it is off, don't enumerate the io-apics with ACPI.
1101 * If MPS is present, it will handle them,
1102 * otherwise the system will stay in PIC mode
1103 */
Jeremy Fitzhardinge6b2b1712009-06-08 02:53:50 -07001104 if (acpi_disabled || acpi_noirq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001107 if (!cpu_has_apic)
Andi Kleend3b6a342006-04-07 19:49:39 +02001108 return -ENODEV;
1109
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 /*
Len Brown4be44fc2005-08-05 00:44:28 -04001111 * if "noapic" boot option, don't look for IO-APICs
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 */
1113 if (skip_ioapic_setup) {
1114 printk(KERN_INFO PREFIX "Skipping IOAPIC probe "
Len Brown4be44fc2005-08-05 00:44:28 -04001115 "due to 'noapic' option.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 return -ENODEV;
1117 }
1118
Len Brown4be44fc2005-08-05 00:44:28 -04001119 count =
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001120 acpi_table_parse_madt(ACPI_MADT_TYPE_IO_APIC, acpi_parse_ioapic,
Len Brown4be44fc2005-08-05 00:44:28 -04001121 MAX_IO_APICS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 if (!count) {
1123 printk(KERN_ERR PREFIX "No IOAPIC entries present\n");
1124 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -04001125 } else if (count < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 printk(KERN_ERR PREFIX "Error parsing IOAPIC entry\n");
1127 return count;
1128 }
1129
Len Brown4be44fc2005-08-05 00:44:28 -04001130 count =
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001131 acpi_table_parse_madt(ACPI_MADT_TYPE_INTERRUPT_OVERRIDE, acpi_parse_int_src_ovr,
Yinghai Lu71f521b2008-08-19 20:50:03 -07001132 nr_irqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 if (count < 0) {
Len Brown4be44fc2005-08-05 00:44:28 -04001134 printk(KERN_ERR PREFIX
1135 "Error parsing interrupt source overrides entry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 /* TBD: Cleanup to allow fallback to MPS */
1137 return count;
1138 }
1139
1140 /*
1141 * If BIOS did not supply an INT_SRC_OVR for the SCI
1142 * pretend we got one so we can set the SCI flags.
1143 */
1144 if (!acpi_sci_override_gsi)
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001145 acpi_sci_ioapic_setup(acpi_gbl_FADT.sci_interrupt, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001147 /* Fill in identity legacy mappings where no override */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 mp_config_acpi_legacy_irqs();
1149
Len Brown4be44fc2005-08-05 00:44:28 -04001150 count =
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001151 acpi_table_parse_madt(ACPI_MADT_TYPE_NMI_SOURCE, acpi_parse_nmi_src,
Yinghai Lu71f521b2008-08-19 20:50:03 -07001152 nr_irqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 if (count < 0) {
1154 printk(KERN_ERR PREFIX "Error parsing NMI SRC entry\n");
1155 /* TBD: Cleanup to allow fallback to MPS */
1156 return count;
1157 }
1158
1159 return 0;
1160}
1161#else
1162static inline int acpi_parse_madt_ioapic_entries(void)
1163{
1164 return -1;
1165}
Len Brown84663612005-08-24 12:09:07 -04001166#endif /* !CONFIG_X86_IO_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
Yinghai Lucbf9bd62008-02-19 03:21:06 -08001168static void __init early_acpi_process_madt(void)
1169{
1170#ifdef CONFIG_X86_LOCAL_APIC
1171 int error;
1172
1173 if (!acpi_table_parse(ACPI_SIG_MADT, acpi_parse_madt)) {
1174
1175 /*
1176 * Parse MADT LAPIC entries
1177 */
1178 error = early_acpi_parse_madt_lapic_addr_ovr();
1179 if (!error) {
1180 acpi_lapic = 1;
1181 smp_found_config = 1;
1182 }
1183 if (error == -EINVAL) {
1184 /*
1185 * Dell Precision Workstation 410, 610 come here.
1186 */
1187 printk(KERN_ERR PREFIX
1188 "Invalid BIOS MADT, disabling ACPI\n");
1189 disable_acpi();
1190 }
1191 }
1192#endif
1193}
1194
Len Brown4be44fc2005-08-05 00:44:28 -04001195static void __init acpi_process_madt(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196{
1197#ifdef CONFIG_X86_LOCAL_APIC
Len Brown7f8f97c2007-02-10 21:28:03 -05001198 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
Len Brown7f8f97c2007-02-10 21:28:03 -05001200 if (!acpi_table_parse(ACPI_SIG_MADT, acpi_parse_madt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
1202 /*
1203 * Parse MADT LAPIC entries
1204 */
1205 error = acpi_parse_madt_lapic_entries();
1206 if (!error) {
1207 acpi_lapic = 1;
1208
Yinghai Lu26f7ef12009-01-29 14:19:22 -08001209#ifdef CONFIG_X86_BIGSMP
Venkatesh Pallipadi911a62d2005-09-03 15:56:31 -07001210 generic_bigsmp_probe();
1211#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 /*
1213 * Parse MADT IO-APIC entries
1214 */
1215 error = acpi_parse_madt_ioapic_entries();
1216 if (!error) {
1217 acpi_irq_model = ACPI_IRQ_MODEL_IOAPIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 acpi_ioapic = 1;
1219
1220 smp_found_config = 1;
Ingo Molnar72ce0162009-01-28 06:50:47 +01001221 if (apic->setup_apic_routing)
1222 apic->setup_apic_routing();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 }
1224 }
1225 if (error == -EINVAL) {
1226 /*
1227 * Dell Precision Workstation 410, 610 come here.
1228 */
Len Brown4be44fc2005-08-05 00:44:28 -04001229 printk(KERN_ERR PREFIX
1230 "Invalid BIOS MADT, disabling ACPI\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 disable_acpi();
1232 }
Len Brown7b37b5f2008-12-23 01:47:42 -05001233 } else {
1234 /*
1235 * ACPI found no MADT, and so ACPI wants UP PIC mode.
1236 * In the event an MPS table was found, forget it.
1237 * Boot with "acpi=off" to use MPS on such a system.
1238 */
1239 if (smp_found_config) {
1240 printk(KERN_WARNING PREFIX
1241 "No APIC-table, disabling MPS\n");
1242 smp_found_config = 0;
1243 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 }
Yinghai Lu69b88af2008-12-05 22:45:50 -08001245
1246 /*
1247 * ACPI supports both logical (e.g. Hyper-Threading) and physical
1248 * processors, where MPS only supports physical.
1249 */
1250 if (acpi_lapic && acpi_ioapic)
1251 printk(KERN_INFO "Using ACPI (MADT) for SMP configuration "
1252 "information\n");
1253 else if (acpi_lapic)
1254 printk(KERN_INFO "Using ACPI for processor (LAPIC) "
1255 "configuration information\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256#endif
1257 return;
1258}
1259
Jeff Garzik18552562007-10-03 15:15:40 -04001260static int __init disable_acpi_irq(const struct dmi_system_id *d)
Andrey Paninaea00142005-06-25 14:54:42 -07001261{
1262 if (!acpi_force) {
1263 printk(KERN_NOTICE "%s detected: force use of acpi=noirq\n",
1264 d->ident);
1265 acpi_noirq_set();
1266 }
1267 return 0;
1268}
1269
Jeff Garzik18552562007-10-03 15:15:40 -04001270static int __init disable_acpi_pci(const struct dmi_system_id *d)
Andrey Paninaea00142005-06-25 14:54:42 -07001271{
1272 if (!acpi_force) {
1273 printk(KERN_NOTICE "%s detected: force use of pci=noacpi\n",
1274 d->ident);
1275 acpi_disable_pci();
1276 }
1277 return 0;
1278}
Andrey Paninaea00142005-06-25 14:54:42 -07001279
Jeff Garzik18552562007-10-03 15:15:40 -04001280static int __init dmi_disable_acpi(const struct dmi_system_id *d)
Andrey Paninaea00142005-06-25 14:54:42 -07001281{
1282 if (!acpi_force) {
Len Brown4be44fc2005-08-05 00:44:28 -04001283 printk(KERN_NOTICE "%s detected: acpi off\n", d->ident);
Andrey Paninaea00142005-06-25 14:54:42 -07001284 disable_acpi();
1285 } else {
1286 printk(KERN_NOTICE
1287 "Warning: DMI blacklist says broken, but acpi forced\n");
1288 }
1289 return 0;
1290}
1291
1292/*
1293 * Limit ACPI to CPU enumeration for HT
1294 */
Jeff Garzik18552562007-10-03 15:15:40 -04001295static int __init force_acpi_ht(const struct dmi_system_id *d)
Andrey Paninaea00142005-06-25 14:54:42 -07001296{
1297 if (!acpi_force) {
Len Brown4be44fc2005-08-05 00:44:28 -04001298 printk(KERN_NOTICE "%s detected: force use of acpi=ht\n",
1299 d->ident);
Andrey Paninaea00142005-06-25 14:54:42 -07001300 disable_acpi();
1301 acpi_ht = 1;
1302 } else {
1303 printk(KERN_NOTICE
1304 "Warning: acpi=force overrules DMI blacklist: acpi=ht\n");
1305 }
1306 return 0;
1307}
1308
1309/*
Rafael J. Wysockie2079c42008-07-08 16:12:26 +02001310 * Force ignoring BIOS IRQ0 pin2 override
1311 */
1312static int __init dmi_ignore_irq0_timer_override(const struct dmi_system_id *d)
1313{
Ingo Molnar8d89adf2008-10-07 06:47:52 +02001314 /*
1315 * The ati_ixp4x0_rev() early PCI quirk should have set
1316 * the acpi_skip_timer_override flag already:
1317 */
1318 if (!acpi_skip_timer_override) {
1319 WARN(1, KERN_ERR "ati_ixp4x0 quirk not complete.\n");
1320 pr_notice("%s detected: Ignoring BIOS IRQ0 pin2 override\n",
1321 d->ident);
1322 acpi_skip_timer_override = 1;
1323 }
Rafael J. Wysockie2079c42008-07-08 16:12:26 +02001324 return 0;
1325}
1326
1327/*
Andrey Paninaea00142005-06-25 14:54:42 -07001328 * If your system is blacklisted here, but you find that acpi=force
Zhang Rui5b4c0b62009-04-01 01:49:42 -04001329 * works for you, please contact linux-acpi@vger.kernel.org
Andrey Paninaea00142005-06-25 14:54:42 -07001330 */
1331static struct dmi_system_id __initdata acpi_dmi_table[] = {
1332 /*
1333 * Boxes that need ACPI disabled
1334 */
1335 {
Len Brown4be44fc2005-08-05 00:44:28 -04001336 .callback = dmi_disable_acpi,
1337 .ident = "IBM Thinkpad",
1338 .matches = {
1339 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1340 DMI_MATCH(DMI_BOARD_NAME, "2629H1G"),
1341 },
1342 },
Andrey Paninaea00142005-06-25 14:54:42 -07001343
1344 /*
1345 * Boxes that need acpi=ht
1346 */
1347 {
Len Brown4be44fc2005-08-05 00:44:28 -04001348 .callback = force_acpi_ht,
1349 .ident = "FSC Primergy T850",
1350 .matches = {
1351 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
1352 DMI_MATCH(DMI_PRODUCT_NAME, "PRIMERGY T850"),
1353 },
1354 },
Andrey Paninaea00142005-06-25 14:54:42 -07001355 {
Len Brown4be44fc2005-08-05 00:44:28 -04001356 .callback = force_acpi_ht,
Len Brown4be44fc2005-08-05 00:44:28 -04001357 .ident = "HP VISUALIZE NT Workstation",
1358 .matches = {
1359 DMI_MATCH(DMI_BOARD_VENDOR, "Hewlett-Packard"),
1360 DMI_MATCH(DMI_PRODUCT_NAME, "HP VISUALIZE NT Workstation"),
1361 },
1362 },
Andrey Paninaea00142005-06-25 14:54:42 -07001363 {
Len Brown4be44fc2005-08-05 00:44:28 -04001364 .callback = force_acpi_ht,
1365 .ident = "Compaq Workstation W8000",
1366 .matches = {
1367 DMI_MATCH(DMI_SYS_VENDOR, "Compaq"),
1368 DMI_MATCH(DMI_PRODUCT_NAME, "Workstation W8000"),
1369 },
1370 },
Andrey Paninaea00142005-06-25 14:54:42 -07001371 {
Len Brown4be44fc2005-08-05 00:44:28 -04001372 .callback = force_acpi_ht,
Len Brown4be44fc2005-08-05 00:44:28 -04001373 .ident = "ASUS P2B-DS",
1374 .matches = {
1375 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1376 DMI_MATCH(DMI_BOARD_NAME, "P2B-DS"),
1377 },
1378 },
Andrey Paninaea00142005-06-25 14:54:42 -07001379 {
Len Brown4be44fc2005-08-05 00:44:28 -04001380 .callback = force_acpi_ht,
1381 .ident = "ASUS CUR-DLS",
1382 .matches = {
1383 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1384 DMI_MATCH(DMI_BOARD_NAME, "CUR-DLS"),
1385 },
1386 },
Andrey Paninaea00142005-06-25 14:54:42 -07001387 {
Len Brown4be44fc2005-08-05 00:44:28 -04001388 .callback = force_acpi_ht,
1389 .ident = "ABIT i440BX-W83977",
1390 .matches = {
1391 DMI_MATCH(DMI_BOARD_VENDOR, "ABIT <http://www.abit.com>"),
1392 DMI_MATCH(DMI_BOARD_NAME, "i440BX-W83977 (BP6)"),
1393 },
1394 },
Andrey Paninaea00142005-06-25 14:54:42 -07001395 {
Len Brown4be44fc2005-08-05 00:44:28 -04001396 .callback = force_acpi_ht,
1397 .ident = "IBM Bladecenter",
1398 .matches = {
1399 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1400 DMI_MATCH(DMI_BOARD_NAME, "IBM eServer BladeCenter HS20"),
1401 },
1402 },
Andrey Paninaea00142005-06-25 14:54:42 -07001403 {
Len Brown4be44fc2005-08-05 00:44:28 -04001404 .callback = force_acpi_ht,
1405 .ident = "IBM eServer xSeries 360",
1406 .matches = {
1407 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1408 DMI_MATCH(DMI_BOARD_NAME, "eServer xSeries 360"),
1409 },
1410 },
Andrey Paninaea00142005-06-25 14:54:42 -07001411 {
Len Brown4be44fc2005-08-05 00:44:28 -04001412 .callback = force_acpi_ht,
1413 .ident = "IBM eserver xSeries 330",
1414 .matches = {
1415 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1416 DMI_MATCH(DMI_BOARD_NAME, "eserver xSeries 330"),
1417 },
1418 },
Andrey Paninaea00142005-06-25 14:54:42 -07001419 {
Len Brown4be44fc2005-08-05 00:44:28 -04001420 .callback = force_acpi_ht,
1421 .ident = "IBM eserver xSeries 440",
1422 .matches = {
1423 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1424 DMI_MATCH(DMI_PRODUCT_NAME, "eserver xSeries 440"),
1425 },
1426 },
Andrey Paninaea00142005-06-25 14:54:42 -07001427
Andrey Paninaea00142005-06-25 14:54:42 -07001428 /*
1429 * Boxes that need ACPI PCI IRQ routing disabled
1430 */
1431 {
Len Brown4be44fc2005-08-05 00:44:28 -04001432 .callback = disable_acpi_irq,
1433 .ident = "ASUS A7V",
1434 .matches = {
1435 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC"),
1436 DMI_MATCH(DMI_BOARD_NAME, "<A7V>"),
1437 /* newer BIOS, Revision 1011, does work */
1438 DMI_MATCH(DMI_BIOS_VERSION,
1439 "ASUS A7V ACPI BIOS Revision 1007"),
1440 },
1441 },
Len Brown74586fc2007-03-08 02:48:30 -05001442 {
1443 /*
1444 * Latest BIOS for IBM 600E (1.16) has bad pcinum
1445 * for LPC bridge, which is needed for the PCI
1446 * interrupt links to work. DSDT fix is in bug 5966.
1447 * 2645, 2646 model numbers are shared with 600/600E/600X
1448 */
1449 .callback = disable_acpi_irq,
1450 .ident = "IBM Thinkpad 600 Series 2645",
1451 .matches = {
1452 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1453 DMI_MATCH(DMI_BOARD_NAME, "2645"),
1454 },
1455 },
1456 {
1457 .callback = disable_acpi_irq,
1458 .ident = "IBM Thinkpad 600 Series 2646",
1459 .matches = {
1460 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1461 DMI_MATCH(DMI_BOARD_NAME, "2646"),
1462 },
1463 },
Andrey Paninaea00142005-06-25 14:54:42 -07001464 /*
1465 * Boxes that need ACPI PCI IRQ routing and PCI scan disabled
1466 */
Len Brown4be44fc2005-08-05 00:44:28 -04001467 { /* _BBN 0 bug */
1468 .callback = disable_acpi_pci,
1469 .ident = "ASUS PR-DLS",
1470 .matches = {
1471 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1472 DMI_MATCH(DMI_BOARD_NAME, "PR-DLS"),
1473 DMI_MATCH(DMI_BIOS_VERSION,
1474 "ASUS PR-DLS ACPI BIOS Revision 1010"),
1475 DMI_MATCH(DMI_BIOS_DATE, "03/21/2003")
1476 },
1477 },
Andrey Paninaea00142005-06-25 14:54:42 -07001478 {
Len Brown4be44fc2005-08-05 00:44:28 -04001479 .callback = disable_acpi_pci,
1480 .ident = "Acer TravelMate 36x Laptop",
1481 .matches = {
1482 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
1483 DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 360"),
1484 },
1485 },
Andreas Herrmann35af2822008-10-22 13:08:31 +02001486 {}
1487};
1488
1489/* second table for DMI checks that should run after early-quirks */
1490static struct dmi_system_id __initdata acpi_dmi_table_late[] = {
Matthew Garrett9340e1c2008-07-01 01:12:06 +01001491 /*
1492 * HP laptops which use a DSDT reporting as HP/SB400/10000,
1493 * which includes some code which overrides all temperature
1494 * trip points to 16C if the INTIN2 input of the I/O APIC
1495 * is enabled. This input is incorrectly designated the
1496 * ISA IRQ 0 via an interrupt source override even though
1497 * it is wired to the output of the master 8259A and INTIN0
Rafael J. Wysockie2079c42008-07-08 16:12:26 +02001498 * is not connected at all. Force ignoring BIOS IRQ0 pin2
1499 * override in that cases.
1500 */
1501 {
1502 .callback = dmi_ignore_irq0_timer_override,
Rafael J. Wysockie84956f2008-10-06 11:59:29 +02001503 .ident = "HP nx6115 laptop",
1504 .matches = {
1505 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
1506 DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq nx6115"),
1507 },
1508 },
1509 {
1510 .callback = dmi_ignore_irq0_timer_override,
Rafael J. Wysockie2079c42008-07-08 16:12:26 +02001511 .ident = "HP NX6125 laptop",
1512 .matches = {
1513 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
1514 DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq nx6125"),
1515 },
1516 },
1517 {
1518 .callback = dmi_ignore_irq0_timer_override,
1519 .ident = "HP NX6325 laptop",
1520 .matches = {
1521 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
1522 DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq nx6325"),
1523 },
1524 },
Rafael J. Wysockie84956f2008-10-06 11:59:29 +02001525 {
1526 .callback = dmi_ignore_irq0_timer_override,
1527 .ident = "HP 6715b laptop",
1528 .matches = {
1529 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
1530 DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq 6715b"),
1531 },
1532 },
Len Brown4be44fc2005-08-05 00:44:28 -04001533 {}
Andrey Paninaea00142005-06-25 14:54:42 -07001534};
1535
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536/*
1537 * acpi_boot_table_init() and acpi_boot_init()
1538 * called from setup_arch(), always.
1539 * 1. checksums all tables
1540 * 2. enumerates lapics
1541 * 3. enumerates io-apics
1542 *
1543 * acpi_table_init() is separate to allow reading SRAT without
1544 * other side effects.
1545 *
1546 * side effects of acpi_boot_init:
1547 * acpi_lapic = 1 if LAPIC found
1548 * acpi_ioapic = 1 if IOAPIC found
1549 * if (acpi_lapic && acpi_ioapic) smp_found_config = 1;
1550 * if acpi_blacklisted() acpi_disabled = 1;
1551 * acpi_irq_model=...
1552 * ...
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 */
1554
Len Brown8558e392010-01-06 16:11:06 -05001555void __init acpi_boot_table_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556{
Andrey Paninaea00142005-06-25 14:54:42 -07001557 dmi_check_system(acpi_dmi_table);
Andrey Paninaea00142005-06-25 14:54:42 -07001558
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 /*
1560 * If acpi_disabled, bail out
1561 * One exception: acpi=ht continues far enough to enumerate LAPICs
1562 */
1563 if (acpi_disabled && !acpi_ht)
Len Brown8558e392010-01-06 16:11:06 -05001564 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001566 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 * Initialize the ACPI boot-time table parser.
1568 */
Len Brown8558e392010-01-06 16:11:06 -05001569 if (acpi_table_init()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 disable_acpi();
Len Brown8558e392010-01-06 16:11:06 -05001571 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001574 acpi_table_parse(ACPI_SIG_BOOT, acpi_parse_sbf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575
1576 /*
1577 * blacklist may disable ACPI entirely
1578 */
Len Brown8558e392010-01-06 16:11:06 -05001579 if (acpi_blacklisted()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 if (acpi_force) {
1581 printk(KERN_WARNING PREFIX "acpi=force override\n");
1582 } else {
1583 printk(KERN_WARNING PREFIX "Disabling ACPI support\n");
1584 disable_acpi();
Len Brown8558e392010-01-06 16:11:06 -05001585 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 }
1587 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588}
1589
Yinghai Lucbf9bd62008-02-19 03:21:06 -08001590int __init early_acpi_boot_init(void)
1591{
1592 /*
1593 * If acpi_disabled, bail out
1594 * One exception: acpi=ht continues far enough to enumerate LAPICs
1595 */
1596 if (acpi_disabled && !acpi_ht)
1597 return 1;
1598
1599 /*
1600 * Process the Multiple APIC Description Table (MADT), if present
1601 */
1602 early_acpi_process_madt();
1603
1604 return 0;
1605}
1606
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607int __init acpi_boot_init(void)
1608{
Andreas Herrmann35af2822008-10-22 13:08:31 +02001609 /* those are executed after early-quirks are executed */
1610 dmi_check_system(acpi_dmi_table_late);
1611
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 /*
1613 * If acpi_disabled, bail out
1614 * One exception: acpi=ht continues far enough to enumerate LAPICs
1615 */
1616 if (acpi_disabled && !acpi_ht)
Len Brown4be44fc2005-08-05 00:44:28 -04001617 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001619 acpi_table_parse(ACPI_SIG_BOOT, acpi_parse_sbf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620
1621 /*
1622 * set sci_int and PM timer address
1623 */
Alexey Starikovskiyceb6c462007-02-02 19:48:22 +03001624 acpi_table_parse(ACPI_SIG_FADT, acpi_parse_fadt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
1626 /*
1627 * Process the Multiple APIC Description Table (MADT), if present
1628 */
1629 acpi_process_madt();
1630
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001631 acpi_table_parse(ACPI_SIG_HPET, acpi_parse_hpet);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
1633 return 0;
1634}
Rusty Russell1a3f2392006-09-26 10:52:32 +02001635
1636static int __init parse_acpi(char *arg)
1637{
1638 if (!arg)
1639 return -EINVAL;
1640
1641 /* "acpi=off" disables both ACPI table parsing and interpreter */
1642 if (strcmp(arg, "off") == 0) {
1643 disable_acpi();
1644 }
1645 /* acpi=force to over-ride black-list */
1646 else if (strcmp(arg, "force") == 0) {
1647 acpi_force = 1;
1648 acpi_ht = 1;
1649 acpi_disabled = 0;
1650 }
1651 /* acpi=strict disables out-of-spec workarounds */
1652 else if (strcmp(arg, "strict") == 0) {
1653 acpi_strict = 1;
1654 }
1655 /* Limit ACPI just to boot-time to enable HT */
1656 else if (strcmp(arg, "ht") == 0) {
1657 if (!acpi_force)
1658 disable_acpi();
1659 acpi_ht = 1;
1660 }
Zhao Yakui237889b2008-12-17 16:55:18 +08001661 /* acpi=rsdt use RSDT instead of XSDT */
1662 else if (strcmp(arg, "rsdt") == 0) {
1663 acpi_rsdt_forced = 1;
1664 }
Rusty Russell1a3f2392006-09-26 10:52:32 +02001665 /* "acpi=noirq" disables ACPI interrupt routing */
1666 else if (strcmp(arg, "noirq") == 0) {
1667 acpi_noirq_set();
1668 } else {
1669 /* Core will printk when we return error. */
1670 return -EINVAL;
1671 }
1672 return 0;
1673}
1674early_param("acpi", parse_acpi);
1675
1676/* FIXME: Using pci= for an ACPI parameter is a travesty. */
1677static int __init parse_pci(char *arg)
1678{
1679 if (arg && strcmp(arg, "noacpi") == 0)
1680 acpi_disable_pci();
1681 return 0;
1682}
1683early_param("pci", parse_pci);
1684
Yinghai Lu3c999f12008-06-20 16:11:20 -07001685int __init acpi_mps_check(void)
1686{
1687#if defined(CONFIG_X86_LOCAL_APIC) && !defined(CONFIG_X86_MPPARSE)
1688/* mptable code is not built-in*/
1689 if (acpi_disabled || acpi_noirq) {
1690 printk(KERN_WARNING "MPS support code is not built-in.\n"
1691 "Using acpi=off or acpi=noirq or pci=noacpi "
1692 "may have problem\n");
1693 return 1;
1694 }
1695#endif
1696 return 0;
1697}
1698
Rusty Russell1a3f2392006-09-26 10:52:32 +02001699#ifdef CONFIG_X86_IO_APIC
1700static int __init parse_acpi_skip_timer_override(char *arg)
1701{
1702 acpi_skip_timer_override = 1;
1703 return 0;
1704}
1705early_param("acpi_skip_timer_override", parse_acpi_skip_timer_override);
Andi Kleenfa18f472006-11-14 16:57:46 +01001706
1707static int __init parse_acpi_use_timer_override(char *arg)
1708{
1709 acpi_use_timer_override = 1;
1710 return 0;
1711}
1712early_param("acpi_use_timer_override", parse_acpi_use_timer_override);
Rusty Russell1a3f2392006-09-26 10:52:32 +02001713#endif /* CONFIG_X86_IO_APIC */
1714
1715static int __init setup_acpi_sci(char *s)
1716{
1717 if (!s)
1718 return -EINVAL;
1719 if (!strcmp(s, "edge"))
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001720 acpi_sci_flags = ACPI_MADT_TRIGGER_EDGE |
1721 (acpi_sci_flags & ~ACPI_MADT_TRIGGER_MASK);
Rusty Russell1a3f2392006-09-26 10:52:32 +02001722 else if (!strcmp(s, "level"))
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001723 acpi_sci_flags = ACPI_MADT_TRIGGER_LEVEL |
1724 (acpi_sci_flags & ~ACPI_MADT_TRIGGER_MASK);
Rusty Russell1a3f2392006-09-26 10:52:32 +02001725 else if (!strcmp(s, "high"))
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001726 acpi_sci_flags = ACPI_MADT_POLARITY_ACTIVE_HIGH |
1727 (acpi_sci_flags & ~ACPI_MADT_POLARITY_MASK);
Rusty Russell1a3f2392006-09-26 10:52:32 +02001728 else if (!strcmp(s, "low"))
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001729 acpi_sci_flags = ACPI_MADT_POLARITY_ACTIVE_LOW |
1730 (acpi_sci_flags & ~ACPI_MADT_POLARITY_MASK);
Rusty Russell1a3f2392006-09-26 10:52:32 +02001731 else
1732 return -EINVAL;
1733 return 0;
1734}
1735early_param("acpi_sci", setup_acpi_sci);
Andrew Mortond0a90812006-10-20 14:30:27 -07001736
1737int __acpi_acquire_global_lock(unsigned int *lock)
1738{
1739 unsigned int old, new, val;
1740 do {
1741 old = *lock;
1742 new = (((old & ~0x3) + 2) + ((old >> 1) & 0x1));
1743 val = cmpxchg(lock, old, new);
1744 } while (unlikely (val != old));
1745 return (new < 3) ? -1 : 0;
1746}
1747
1748int __acpi_release_global_lock(unsigned int *lock)
1749{
1750 unsigned int old, new, val;
1751 do {
1752 old = *lock;
1753 new = old & ~0x3;
1754 val = cmpxchg(lock, old, new);
1755 } while (unlikely (val != old));
1756 return old & 0x1;
1757}