blob: 036d28adf59d15336b5a1acc7f754609cb21aded [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>
Len Brown4be44fc2005-08-05 00:44:28 -040052#endif /* X86 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54#define BAD_MADT_ENTRY(entry, end) ( \
55 (!entry) || (unsigned long)entry + sizeof(*entry) > end || \
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +030056 ((struct acpi_subtable_header *)entry)->length < sizeof(*entry))
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58#define PREFIX "ACPI: "
59
Andrew Morton90d53902006-11-02 22:07:18 -080060int acpi_noirq; /* skip ACPI IRQ initialization */
Yinghai Lu6e4be1f2008-02-05 00:01:48 -080061int acpi_pci_disabled; /* skip ACPI PCI scan and IRQ initialization */
62EXPORT_SYMBOL(acpi_pci_disabled);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063int acpi_ht __initdata = 1; /* enable HT */
64
65int acpi_lapic;
66int acpi_ioapic;
67int acpi_strict;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +030069u8 acpi_sci_flags __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070int acpi_sci_override_gsi __initdata;
71int acpi_skip_timer_override __initdata;
Andi Kleenfa18f472006-11-14 16:57:46 +010072int acpi_use_timer_override __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74#ifdef CONFIG_X86_LOCAL_APIC
75static u64 acpi_lapic_addr __initdata = APIC_DEFAULT_PHYS_BASE;
76#endif
77
78#ifndef __HAVE_ARCH_CMPXCHG
79#warning ACPI uses CMPXCHG, i486 and later hardware
80#endif
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082/* --------------------------------------------------------------------------
83 Boot-time Configuration
84 -------------------------------------------------------------------------- */
85
86/*
87 * The default interrupt routing model is PIC (8259). This gets
Simon Arlott27b46d72007-10-20 01:13:56 +020088 * overridden if IOAPICs are enumerated (below).
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 */
Len Brown4be44fc2005-08-05 00:44:28 -040090enum acpi_irq_model_id acpi_irq_model = ACPI_IRQ_MODEL_PIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93/*
94 * Temporarily use the virtual area starting from FIX_IO_APIC_BASE_END,
95 * to map the target physical address. The problem is that set_fixmap()
96 * provides a single page, and it is possible that the page is not
97 * sufficient.
98 * By using this area, we can map up to MAX_IO_APICS pages temporarily,
99 * i.e. until the next __va_range() call.
100 *
101 * Important Safety Note: The fixed I/O APIC page numbers are *subtracted*
102 * from the fixed base. That's why we start at FIX_IO_APIC_BASE_END and
103 * count idx down while incrementing the phys address.
104 */
Jan Beulich2fdf0742007-12-13 08:33:59 +0000105char *__init __acpi_map_table(unsigned long phys, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Yinghai Luf34fa822008-07-09 20:16:36 -0700108 if (!phys || !size)
109 return NULL;
110
Yinghai Lu7d972772009-02-07 15:39:41 -0800111 return early_ioremap(phys, size);
112}
113void __init __acpi_unmap_table(char *map, unsigned long size)
114{
115 if (!map || !size)
116 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Yinghai Lu7d972772009-02-07 15:39:41 -0800118 early_iounmap(map, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121#ifdef CONFIG_X86_LOCAL_APIC
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +0300122static int __init acpi_parse_madt(struct acpi_table_header *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
Len Brown4be44fc2005-08-05 00:44:28 -0400124 struct acpi_table_madt *madt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +0300126 if (!cpu_has_apic)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 return -EINVAL;
128
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +0300129 madt = (struct acpi_table_madt *)table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 if (!madt) {
131 printk(KERN_WARNING PREFIX "Unable to map MADT\n");
132 return -ENODEV;
133 }
134
Alexey Starikovskiyad363f82007-02-02 19:48:22 +0300135 if (madt->address) {
136 acpi_lapic_addr = (u64) madt->address;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
138 printk(KERN_DEBUG PREFIX "Local APIC address 0x%08x\n",
Alexey Starikovskiyad363f82007-02-02 19:48:22 +0300139 madt->address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 }
141
Ingo Molnar306db032009-01-28 03:43:47 +0100142 default_acpi_madt_oem_check(madt->header.oem_id,
143 madt->header.oem_table_id);
Len Brown4be44fc2005-08-05 00:44:28 -0400144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 return 0;
146}
147
Alexey Starikovskiydfac2182008-04-04 23:41:50 +0400148static void __cpuinit acpi_register_lapic(int id, u8 enabled)
149{
Yinghai Lufb3bbd62008-05-22 18:22:30 -0700150 unsigned int ver = 0;
151
Alexey Starikovskiydfac2182008-04-04 23:41:50 +0400152 if (!enabled) {
153 ++disabled_cpus;
154 return;
155 }
156
Yinghai Lufb3bbd62008-05-22 18:22:30 -0700157 if (boot_cpu_physical_apicid != -1U)
158 ver = apic_version[boot_cpu_physical_apicid];
Yinghai Lufb3bbd62008-05-22 18:22:30 -0700159
160 generic_processor_info(id, ver);
Alexey Starikovskiydfac2182008-04-04 23:41:50 +0400161}
162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163static int __init
Suresh Siddha7237d3d2009-03-30 13:55:30 -0800164acpi_parse_x2apic(struct acpi_subtable_header *header, const unsigned long end)
165{
166 struct acpi_madt_local_x2apic *processor = NULL;
167
168 processor = (struct acpi_madt_local_x2apic *)header;
169
170 if (BAD_MADT_ENTRY(processor, end))
171 return -EINVAL;
172
173 acpi_table_print_madt_entry(header);
174
175#ifdef CONFIG_X86_X2APIC
176 /*
177 * We need to register disabled CPU as well to permit
178 * counting disabled CPUs. This allows us to size
179 * cpus_possible_map more accurately, to permit
180 * to not preallocating memory for all NR_CPUS
181 * when we use CPU hotplug.
182 */
183 acpi_register_lapic(processor->local_apic_id, /* APIC ID */
184 processor->lapic_flags & ACPI_MADT_ENABLED);
185#else
186 printk(KERN_WARNING PREFIX "x2apic entry ignored\n");
187#endif
188
189 return 0;
190}
191
192static int __init
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300193acpi_parse_lapic(struct acpi_subtable_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194{
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300195 struct acpi_madt_local_apic *processor = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300197 processor = (struct acpi_madt_local_apic *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
199 if (BAD_MADT_ENTRY(processor, end))
200 return -EINVAL;
201
202 acpi_table_print_madt_entry(header);
203
Ashok Raj7f66ae42006-02-03 21:51:50 +0100204 /*
205 * We need to register disabled CPU as well to permit
206 * counting disabled CPUs. This allows us to size
207 * cpus_possible_map more accurately, to permit
208 * to not preallocating memory for all NR_CPUS
209 * when we use CPU hotplug.
210 */
Alexey Starikovskiydfac2182008-04-04 23:41:50 +0400211 acpi_register_lapic(processor->id, /* APIC ID */
212 processor->lapic_flags & ACPI_MADT_ENABLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
214 return 0;
215}
216
217static int __init
Jack Steinerac049c12008-03-28 14:12:09 -0500218acpi_parse_sapic(struct acpi_subtable_header *header, const unsigned long end)
219{
220 struct acpi_madt_local_sapic *processor = NULL;
221
222 processor = (struct acpi_madt_local_sapic *)header;
223
224 if (BAD_MADT_ENTRY(processor, end))
225 return -EINVAL;
226
227 acpi_table_print_madt_entry(header);
228
Alexey Starikovskiydfac2182008-04-04 23:41:50 +0400229 acpi_register_lapic((processor->id << 8) | processor->eid,/* APIC ID */
230 processor->lapic_flags & ACPI_MADT_ENABLED);
Jack Steinerac049c12008-03-28 14:12:09 -0500231
232 return 0;
233}
234
235static int __init
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300236acpi_parse_lapic_addr_ovr(struct acpi_subtable_header * header,
Len Brown4be44fc2005-08-05 00:44:28 -0400237 const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238{
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300239 struct acpi_madt_local_apic_override *lapic_addr_ovr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300241 lapic_addr_ovr = (struct acpi_madt_local_apic_override *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
243 if (BAD_MADT_ENTRY(lapic_addr_ovr, end))
244 return -EINVAL;
245
246 acpi_lapic_addr = lapic_addr_ovr->address;
247
248 return 0;
249}
250
251static int __init
Suresh Siddha7237d3d2009-03-30 13:55:30 -0800252acpi_parse_x2apic_nmi(struct acpi_subtable_header *header,
253 const unsigned long end)
254{
255 struct acpi_madt_local_x2apic_nmi *x2apic_nmi = NULL;
256
257 x2apic_nmi = (struct acpi_madt_local_x2apic_nmi *)header;
258
259 if (BAD_MADT_ENTRY(x2apic_nmi, end))
260 return -EINVAL;
261
262 acpi_table_print_madt_entry(header);
263
264 if (x2apic_nmi->lint != 1)
265 printk(KERN_WARNING PREFIX "NMI not connected to LINT 1!\n");
266
267 return 0;
268}
269
270static int __init
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300271acpi_parse_lapic_nmi(struct acpi_subtable_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272{
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300273 struct acpi_madt_local_apic_nmi *lapic_nmi = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300275 lapic_nmi = (struct acpi_madt_local_apic_nmi *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
277 if (BAD_MADT_ENTRY(lapic_nmi, end))
278 return -EINVAL;
279
280 acpi_table_print_madt_entry(header);
281
282 if (lapic_nmi->lint != 1)
283 printk(KERN_WARNING PREFIX "NMI not connected to LINT 1!\n");
284
285 return 0;
286}
287
Len Brown4be44fc2005-08-05 00:44:28 -0400288#endif /*CONFIG_X86_LOCAL_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
Len Brown84663612005-08-24 12:09:07 -0400290#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
292static int __init
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300293acpi_parse_ioapic(struct acpi_subtable_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294{
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300295 struct acpi_madt_io_apic *ioapic = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300297 ioapic = (struct acpi_madt_io_apic *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
299 if (BAD_MADT_ENTRY(ioapic, end))
300 return -EINVAL;
Len Brown4be44fc2005-08-05 00:44:28 -0400301
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 acpi_table_print_madt_entry(header);
303
Len Brown4be44fc2005-08-05 00:44:28 -0400304 mp_register_ioapic(ioapic->id,
305 ioapic->address, ioapic->global_irq_base);
306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 return 0;
308}
309
310/*
311 * Parse Interrupt Source Override for the ACPI SCI
312 */
Len Browne82c3542006-12-21 01:29:59 -0500313static void __init acpi_sci_ioapic_setup(u32 gsi, u16 polarity, u16 trigger)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
315 if (trigger == 0) /* compatible SCI trigger is level */
316 trigger = 3;
317
318 if (polarity == 0) /* compatible SCI polarity is low */
319 polarity = 3;
320
321 /* Command-line over-ride via acpi_sci= */
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300322 if (acpi_sci_flags & ACPI_MADT_TRIGGER_MASK)
323 trigger = (acpi_sci_flags & ACPI_MADT_TRIGGER_MASK) >> 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300325 if (acpi_sci_flags & ACPI_MADT_POLARITY_MASK)
326 polarity = acpi_sci_flags & ACPI_MADT_POLARITY_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
328 /*
Len Brown4be44fc2005-08-05 00:44:28 -0400329 * mp_config_acpi_legacy_irqs() already setup IRQs < 16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 * If GSI is < 16, this will update its flags,
331 * else it will create a new mp_irqs[] entry.
332 */
Len Brown7bdd21c2006-12-02 02:27:46 -0500333 mp_override_legacy_irq(gsi, polarity, trigger, gsi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
335 /*
336 * stash over-ride to indicate we've been here
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300337 * and for later update of acpi_gbl_FADT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 */
Len Brown7bdd21c2006-12-02 02:27:46 -0500339 acpi_sci_override_gsi = gsi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 return;
341}
342
343static int __init
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300344acpi_parse_int_src_ovr(struct acpi_subtable_header * header,
Len Brown4be44fc2005-08-05 00:44:28 -0400345 const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346{
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300347 struct acpi_madt_interrupt_override *intsrc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300349 intsrc = (struct acpi_madt_interrupt_override *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
351 if (BAD_MADT_ENTRY(intsrc, end))
352 return -EINVAL;
353
354 acpi_table_print_madt_entry(header);
355
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300356 if (intsrc->source_irq == acpi_gbl_FADT.sci_interrupt) {
Len Brown7bdd21c2006-12-02 02:27:46 -0500357 acpi_sci_ioapic_setup(intsrc->global_irq,
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300358 intsrc->inti_flags & ACPI_MADT_POLARITY_MASK,
359 (intsrc->inti_flags & ACPI_MADT_TRIGGER_MASK) >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 return 0;
361 }
362
363 if (acpi_skip_timer_override &&
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300364 intsrc->source_irq == 0 && intsrc->global_irq == 2) {
Len Brown4be44fc2005-08-05 00:44:28 -0400365 printk(PREFIX "BIOS IRQ0 pin2 override ignored.\n");
366 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 }
368
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300369 mp_override_legacy_irq(intsrc->source_irq,
370 intsrc->inti_flags & ACPI_MADT_POLARITY_MASK,
371 (intsrc->inti_flags & ACPI_MADT_TRIGGER_MASK) >> 2,
372 intsrc->global_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
374 return 0;
375}
376
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377static int __init
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300378acpi_parse_nmi_src(struct acpi_subtable_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379{
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300380 struct acpi_madt_nmi_source *nmi_src = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300382 nmi_src = (struct acpi_madt_nmi_source *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
384 if (BAD_MADT_ENTRY(nmi_src, end))
385 return -EINVAL;
386
387 acpi_table_print_madt_entry(header);
388
389 /* TBD: Support nimsrc entries? */
390
391 return 0;
392}
393
Len Brown4be44fc2005-08-05 00:44:28 -0400394#endif /* CONFIG_X86_IO_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396/*
397 * acpi_pic_sci_set_trigger()
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300398 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 * use ELCR to set PIC-mode trigger type for SCI
400 *
401 * If a PIC-mode SCI is not recognized or gives spurious IRQ7's
402 * it may require Edge Trigger -- use "acpi_sci=edge"
403 *
404 * Port 0x4d0-4d1 are ECLR1 and ECLR2, the Edge/Level Control Registers
405 * for the 8259 PIC. bit[n] = 1 means irq[n] is Level, otherwise Edge.
Simon Arlott27b46d72007-10-20 01:13:56 +0200406 * ECLR1 is IRQs 0-7 (IRQ 0, 1, 2 must be 0)
407 * ECLR2 is IRQs 8-15 (IRQ 8, 13 must be 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 */
409
Len Brown4be44fc2005-08-05 00:44:28 -0400410void __init acpi_pic_sci_set_trigger(unsigned int irq, u16 trigger)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411{
412 unsigned int mask = 1 << irq;
413 unsigned int old, new;
414
415 /* Real old ELCR mask */
416 old = inb(0x4d0) | (inb(0x4d1) << 8);
417
418 /*
Simon Arlott27b46d72007-10-20 01:13:56 +0200419 * If we use ACPI to set PCI IRQs, then we should clear ELCR
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 * since we will set it correctly as we enable the PCI irq
421 * routing.
422 */
423 new = acpi_noirq ? old : 0;
424
425 /*
426 * Update SCI information in the ELCR, it isn't in the PCI
427 * routing tables..
428 */
429 switch (trigger) {
Len Brown4be44fc2005-08-05 00:44:28 -0400430 case 1: /* Edge - clear */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 new &= ~mask;
432 break;
Len Brown4be44fc2005-08-05 00:44:28 -0400433 case 3: /* Level - set */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 new |= mask;
435 break;
436 }
437
438 if (old == new)
439 return;
440
441 printk(PREFIX "setting ELCR to %04x (from %04x)\n", new, old);
442 outb(new, 0x4d0);
443 outb(new >> 8, 0x4d1);
444}
445
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446int acpi_gsi_to_irq(u32 gsi, unsigned int *irq)
447{
Eric W. Biedermanf023d762006-10-04 02:16:52 -0700448 *irq = gsi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 return 0;
450}
451
Kenji Kaneshige1f3a6a12005-07-28 14:42:00 -0400452/*
453 * success: return IRQ number (>=0)
454 * failure: return < 0
455 */
Yinghai Lue5198072009-05-15 13:05:16 -0700456int acpi_register_gsi(struct device *dev, u32 gsi, int trigger, int polarity)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457{
458 unsigned int irq;
459 unsigned int plat_gsi = gsi;
460
461#ifdef CONFIG_PCI
462 /*
463 * Make sure all (legacy) PCI IRQs are set as level-triggered.
464 */
465 if (acpi_irq_model == ACPI_IRQ_MODEL_PIC) {
Yinghai Lue5198072009-05-15 13:05:16 -0700466 if (trigger == ACPI_LEVEL_SENSITIVE)
Len Brown4be44fc2005-08-05 00:44:28 -0400467 eisa_set_level_irq(gsi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 }
469#endif
470
471#ifdef CONFIG_X86_IO_APIC
472 if (acpi_irq_model == ACPI_IRQ_MODEL_IOAPIC) {
Yinghai Lue5198072009-05-15 13:05:16 -0700473 plat_gsi = mp_register_gsi(dev, gsi, trigger, polarity);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 }
475#endif
476 acpi_gsi_to_irq(plat_gsi, &irq);
477 return irq;
478}
Len Brown4be44fc2005-08-05 00:44:28 -0400479
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480/*
481 * ACPI based hotplug support for CPU
482 */
483#ifdef CONFIG_ACPI_HOTPLUG_CPU
Sam Ravnborg009cbad2008-02-01 17:49:42 +0100484
485static int __cpuinit _acpi_map_lsapic(acpi_handle handle, int *pcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486{
Ashok Raj73fea172006-09-26 10:52:35 +0200487 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
488 union acpi_object *obj;
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300489 struct acpi_madt_local_apic *lapic;
Rusty Russellee943a82008-12-31 18:08:47 -0800490 cpumask_var_t tmp_map, new_map;
Ashok Raj73fea172006-09-26 10:52:35 +0200491 u8 physid;
492 int cpu;
Rusty Russellee943a82008-12-31 18:08:47 -0800493 int retval = -ENOMEM;
Ashok Raj73fea172006-09-26 10:52:35 +0200494
495 if (ACPI_FAILURE(acpi_evaluate_object(handle, "_MAT", NULL, &buffer)))
496 return -EINVAL;
497
498 if (!buffer.length || !buffer.pointer)
499 return -EINVAL;
500
501 obj = buffer.pointer;
502 if (obj->type != ACPI_TYPE_BUFFER ||
503 obj->buffer.length < sizeof(*lapic)) {
504 kfree(buffer.pointer);
505 return -EINVAL;
506 }
507
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300508 lapic = (struct acpi_madt_local_apic *)obj->buffer.pointer;
Ashok Raj73fea172006-09-26 10:52:35 +0200509
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300510 if (lapic->header.type != ACPI_MADT_TYPE_LOCAL_APIC ||
511 !(lapic->lapic_flags & ACPI_MADT_ENABLED)) {
Ashok Raj73fea172006-09-26 10:52:35 +0200512 kfree(buffer.pointer);
513 return -EINVAL;
514 }
515
516 physid = lapic->id;
517
518 kfree(buffer.pointer);
519 buffer.length = ACPI_ALLOCATE_BUFFER;
520 buffer.pointer = NULL;
521
Rusty Russellee943a82008-12-31 18:08:47 -0800522 if (!alloc_cpumask_var(&tmp_map, GFP_KERNEL))
523 goto out;
524
525 if (!alloc_cpumask_var(&new_map, GFP_KERNEL))
526 goto free_tmp_map;
527
528 cpumask_copy(tmp_map, cpu_present_mask);
Alexey Starikovskiydfac2182008-04-04 23:41:50 +0400529 acpi_register_lapic(physid, lapic->lapic_flags & ACPI_MADT_ENABLED);
Ashok Raj73fea172006-09-26 10:52:35 +0200530
531 /*
532 * If mp_register_lapic successfully generates a new logical cpu
533 * number, then the following will get us exactly what was mapped
534 */
Rusty Russellee943a82008-12-31 18:08:47 -0800535 cpumask_andnot(new_map, cpu_present_mask, tmp_map);
536 if (cpumask_empty(new_map)) {
Ashok Raj73fea172006-09-26 10:52:35 +0200537 printk ("Unable to map lapic to logical cpu number\n");
Rusty Russellee943a82008-12-31 18:08:47 -0800538 retval = -EINVAL;
539 goto free_new_map;
Ashok Raj73fea172006-09-26 10:52:35 +0200540 }
541
Rusty Russellee943a82008-12-31 18:08:47 -0800542 cpu = cpumask_first(new_map);
Ashok Raj73fea172006-09-26 10:52:35 +0200543
544 *pcpu = cpu;
Rusty Russellee943a82008-12-31 18:08:47 -0800545 retval = 0;
546
547free_new_map:
548 free_cpumask_var(new_map);
549free_tmp_map:
550 free_cpumask_var(tmp_map);
551out:
552 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553}
Len Brown4be44fc2005-08-05 00:44:28 -0400554
Sam Ravnborg009cbad2008-02-01 17:49:42 +0100555/* wrapper to silence section mismatch warning */
556int __ref acpi_map_lsapic(acpi_handle handle, int *pcpu)
557{
558 return _acpi_map_lsapic(handle, pcpu);
559}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560EXPORT_SYMBOL(acpi_map_lsapic);
561
Len Brown4be44fc2005-08-05 00:44:28 -0400562int acpi_unmap_lsapic(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563{
Mike Travis71fff5e2007-10-19 20:35:03 +0200564 per_cpu(x86_cpu_to_apicid, cpu) = -1;
Mike Travis96289372008-12-31 18:08:46 -0800565 set_cpu_present(cpu, false);
Ashok Raj73fea172006-09-26 10:52:35 +0200566 num_processors--;
567
568 return (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569}
Len Brown4be44fc2005-08-05 00:44:28 -0400570
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571EXPORT_SYMBOL(acpi_unmap_lsapic);
Len Brown4be44fc2005-08-05 00:44:28 -0400572#endif /* CONFIG_ACPI_HOTPLUG_CPU */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
Len Brown4be44fc2005-08-05 00:44:28 -0400574int acpi_register_ioapic(acpi_handle handle, u64 phys_addr, u32 gsi_base)
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700575{
576 /* TBD */
577 return -EINVAL;
578}
Len Brown4be44fc2005-08-05 00:44:28 -0400579
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700580EXPORT_SYMBOL(acpi_register_ioapic);
581
Len Brown4be44fc2005-08-05 00:44:28 -0400582int acpi_unregister_ioapic(acpi_handle handle, u32 gsi_base)
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700583{
584 /* TBD */
585 return -EINVAL;
586}
Len Brown4be44fc2005-08-05 00:44:28 -0400587
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700588EXPORT_SYMBOL(acpi_unregister_ioapic);
589
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300590static int __init acpi_parse_sbf(struct acpi_table_header *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591{
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300592 struct acpi_table_boot *sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300594 sb = (struct acpi_table_boot *)table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 if (!sb) {
596 printk(KERN_WARNING PREFIX "Unable to map SBF\n");
597 return -ENODEV;
598 }
599
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300600 sbf_port = sb->cmos_index; /* Save CMOS port */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
602 return 0;
603}
604
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605#ifdef CONFIG_HPET_TIMER
john stultz2d0c87c2007-02-16 01:28:18 -0800606#include <asm/hpet.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
Aaron Durbina1dfd852007-07-21 17:11:39 +0200608static struct __initdata resource *hpet_res;
609
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300610static int __init acpi_parse_hpet(struct acpi_table_header *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611{
612 struct acpi_table_hpet *hpet_tbl;
613
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300614 hpet_tbl = (struct acpi_table_hpet *)table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 if (!hpet_tbl) {
616 printk(KERN_WARNING PREFIX "Unable to map HPET\n");
617 return -ENODEV;
618 }
619
Alexey Starikovskiyad363f82007-02-02 19:48:22 +0300620 if (hpet_tbl->address.space_id != ACPI_SPACE_MEM) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 printk(KERN_WARNING PREFIX "HPET timers must be located in "
622 "memory.\n");
623 return -1;
624 }
adurbin@google.comf0f4c342006-09-26 10:52:39 +0200625
john stultz2d0c87c2007-02-16 01:28:18 -0800626 hpet_address = hpet_tbl->address.address;
Suresh Siddhac8bc6f32009-08-04 12:07:09 -0700627 hpet_blockid = hpet_tbl->sequence;
Thomas Gleixnerf4df73c2007-11-15 21:41:50 -0500628
629 /*
630 * Some broken BIOSes advertise HPET at 0x0. We really do not
631 * want to allocate a resource there.
632 */
633 if (!hpet_address) {
634 printk(KERN_WARNING PREFIX
635 "HPET id: %#x base: %#lx is invalid\n",
636 hpet_tbl->id, hpet_address);
637 return 0;
638 }
639#ifdef CONFIG_X86_64
640 /*
641 * Some even more broken BIOSes advertise HPET at
642 * 0xfed0000000000000 instead of 0xfed00000. Fix it up and add
643 * some noise:
644 */
645 if (hpet_address == 0xfed0000000000000UL) {
646 if (!hpet_force_user) {
647 printk(KERN_WARNING PREFIX "HPET id: %#x "
648 "base: 0xfed0000000000000 is bogus\n "
649 "try hpet=force on the kernel command line to "
650 "fix it up to 0xfed00000.\n", hpet_tbl->id);
651 hpet_address = 0;
652 return 0;
653 }
654 printk(KERN_WARNING PREFIX
655 "HPET id: %#x base: 0xfed0000000000000 fixed up "
656 "to 0xfed00000.\n", hpet_tbl->id);
657 hpet_address >>= 32;
658 }
659#endif
Len Brown4be44fc2005-08-05 00:44:28 -0400660 printk(KERN_INFO PREFIX "HPET id: %#x base: %#lx\n",
john stultz2d0c87c2007-02-16 01:28:18 -0800661 hpet_tbl->id, hpet_address);
adurbin@google.comf0f4c342006-09-26 10:52:39 +0200662
Aaron Durbina1dfd852007-07-21 17:11:39 +0200663 /*
664 * Allocate and initialize the HPET firmware resource for adding into
665 * the resource tree during the lateinit timeframe.
666 */
667#define HPET_RESOURCE_NAME_SIZE 9
668 hpet_res = alloc_bootmem(sizeof(*hpet_res) + HPET_RESOURCE_NAME_SIZE);
669
Aaron Durbina1dfd852007-07-21 17:11:39 +0200670 hpet_res->name = (void *)&hpet_res[1];
671 hpet_res->flags = IORESOURCE_MEM;
672 snprintf((char *)hpet_res->name, HPET_RESOURCE_NAME_SIZE, "HPET %u",
673 hpet_tbl->sequence);
674
675 hpet_res->start = hpet_address;
676 hpet_res->end = hpet_address + (1 * 1024) - 1;
677
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 return 0;
679}
Aaron Durbina1dfd852007-07-21 17:11:39 +0200680
681/*
682 * hpet_insert_resource inserts the HPET resources used into the resource
683 * tree.
684 */
685static __init int hpet_insert_resource(void)
686{
687 if (!hpet_res)
688 return 1;
689
690 return insert_resource(&iomem_resource, hpet_res);
691}
692
693late_initcall(hpet_insert_resource);
694
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695#else
696#define acpi_parse_hpet NULL
697#endif
698
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300699static int __init acpi_parse_fadt(struct acpi_table_header *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700{
Jason Davis90660ec2005-04-16 15:24:53 -0700701
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702#ifdef CONFIG_X86_PM_TIMER
703 /* detect the location of the ACPI PM Timer */
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300704 if (acpi_gbl_FADT.header.revision >= FADT2_REVISION_ID) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 /* FADT rev. 2 */
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300706 if (acpi_gbl_FADT.xpm_timer_block.space_id !=
Len Brown4be44fc2005-08-05 00:44:28 -0400707 ACPI_ADR_SPACE_SYSTEM_IO)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 return 0;
709
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300710 pmtmr_ioport = acpi_gbl_FADT.xpm_timer_block.address;
David Shaohua Lie6e87b42005-09-21 01:35:00 -0400711 /*
712 * "X" fields are optional extensions to the original V1.0
713 * fields, so we must selectively expand V1.0 fields if the
714 * corresponding X field is zero.
715 */
716 if (!pmtmr_ioport)
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300717 pmtmr_ioport = acpi_gbl_FADT.pm_timer_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 } else {
719 /* FADT rev. 1 */
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300720 pmtmr_ioport = acpi_gbl_FADT.pm_timer_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 }
722 if (pmtmr_ioport)
Len Brown4be44fc2005-08-05 00:44:28 -0400723 printk(KERN_INFO PREFIX "PM-Timer IO Port: %#x\n",
724 pmtmr_ioport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725#endif
726 return 0;
727}
728
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729#ifdef CONFIG_X86_LOCAL_APIC
730/*
731 * Parse LAPIC entries in MADT
732 * returns 0 on success, < 0 on error
733 */
Alexey Starikovskiy31d20922008-04-04 23:41:57 +0400734
735static void __init acpi_register_lapic_address(unsigned long address)
736{
737 mp_lapic_addr = address;
738
739 set_fixmap_nocache(FIX_APIC_BASE, address);
Yinghai Lufb3bbd62008-05-22 18:22:30 -0700740 if (boot_cpu_physical_apicid == -1U) {
Yinghai Lu4c9961d2008-07-11 18:44:16 -0700741 boot_cpu_physical_apicid = read_apic_id();
Yinghai Lufb3bbd62008-05-22 18:22:30 -0700742 apic_version[boot_cpu_physical_apicid] =
743 GET_APIC_VERSION(apic_read(APIC_LVR));
Yinghai Lufb3bbd62008-05-22 18:22:30 -0700744 }
Alexey Starikovskiy31d20922008-04-04 23:41:57 +0400745}
746
Yinghai Lucbf9bd62008-02-19 03:21:06 -0800747static int __init early_acpi_parse_madt_lapic_addr_ovr(void)
748{
749 int count;
750
751 if (!cpu_has_apic)
752 return -ENODEV;
753
754 /*
755 * Note that the LAPIC address is obtained from the MADT (32-bit value)
756 * and (optionally) overriden by a LAPIC_ADDR_OVR entry (64-bit value).
757 */
758
759 count =
760 acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_APIC_OVERRIDE,
761 acpi_parse_lapic_addr_ovr, 0);
762 if (count < 0) {
763 printk(KERN_ERR PREFIX
764 "Error parsing LAPIC address override entry\n");
765 return count;
766 }
767
768 acpi_register_lapic_address(acpi_lapic_addr);
769
770 return count;
771}
772
Len Brown4be44fc2005-08-05 00:44:28 -0400773static int __init acpi_parse_madt_lapic_entries(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774{
775 int count;
Suresh Siddha7237d3d2009-03-30 13:55:30 -0800776 int x2count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
Andi Kleen0fcd2702006-04-11 12:54:36 +0200778 if (!cpu_has_apic)
779 return -ENODEV;
780
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300781 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 * Note that the LAPIC address is obtained from the MADT (32-bit value)
783 * and (optionally) overriden by a LAPIC_ADDR_OVR entry (64-bit value).
784 */
785
Len Brown4be44fc2005-08-05 00:44:28 -0400786 count =
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300787 acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_APIC_OVERRIDE,
Len Brown4be44fc2005-08-05 00:44:28 -0400788 acpi_parse_lapic_addr_ovr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 if (count < 0) {
Len Brown4be44fc2005-08-05 00:44:28 -0400790 printk(KERN_ERR PREFIX
791 "Error parsing LAPIC address override entry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 return count;
793 }
794
Alexey Starikovskiy31d20922008-04-04 23:41:57 +0400795 acpi_register_lapic_address(acpi_lapic_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
Jack Steinerac049c12008-03-28 14:12:09 -0500797 count = acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_SAPIC,
798 acpi_parse_sapic, MAX_APICS);
799
Suresh Siddha7237d3d2009-03-30 13:55:30 -0800800 if (!count) {
801 x2count = acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_X2APIC,
802 acpi_parse_x2apic, MAX_APICS);
Jack Steinerac049c12008-03-28 14:12:09 -0500803 count = acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_APIC,
804 acpi_parse_lapic, MAX_APICS);
Suresh Siddha7237d3d2009-03-30 13:55:30 -0800805 }
806 if (!count && !x2count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 printk(KERN_ERR PREFIX "No LAPIC entries present\n");
808 /* TBD: Cleanup to allow fallback to MPS */
809 return -ENODEV;
Suresh Siddha7237d3d2009-03-30 13:55:30 -0800810 } else if (count < 0 || x2count < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 printk(KERN_ERR PREFIX "Error parsing LAPIC entry\n");
812 /* TBD: Cleanup to allow fallback to MPS */
813 return count;
814 }
815
Suresh Siddha7237d3d2009-03-30 13:55:30 -0800816 x2count =
817 acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_X2APIC_NMI,
818 acpi_parse_x2apic_nmi, 0);
Len Brown4be44fc2005-08-05 00:44:28 -0400819 count =
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300820 acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_APIC_NMI, acpi_parse_lapic_nmi, 0);
Suresh Siddha7237d3d2009-03-30 13:55:30 -0800821 if (count < 0 || x2count < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 printk(KERN_ERR PREFIX "Error parsing LAPIC NMI entry\n");
823 /* TBD: Cleanup to allow fallback to MPS */
824 return count;
825 }
826 return 0;
827}
Len Brown4be44fc2005-08-05 00:44:28 -0400828#endif /* CONFIG_X86_LOCAL_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
Len Brown84663612005-08-24 12:09:07 -0400830#ifdef CONFIG_X86_IO_APIC
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400831#define MP_ISA_BUS 0
832
Yinghai Lud49c4282008-06-08 18:31:54 -0700833#ifdef CONFIG_X86_ES7000
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400834extern int es7000_plat;
835#endif
836
Yinghai Lu3f4a7392009-02-08 16:18:03 -0800837int __init acpi_probe_gsi(void)
838{
839 int idx;
840 int gsi;
841 int max_gsi = 0;
842
843 if (acpi_disabled)
844 return 0;
845
846 if (!acpi_ioapic)
847 return 0;
848
849 max_gsi = 0;
850 for (idx = 0; idx < nr_ioapics; idx++) {
Feng Tang2a4ab642009-07-07 23:01:15 -0400851 gsi = mp_gsi_routing[idx].gsi_end;
Yinghai Lu3f4a7392009-02-08 16:18:03 -0800852
853 if (gsi > max_gsi)
854 max_gsi = gsi;
855 }
856
857 return max_gsi + 1;
858}
859
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530860static void assign_to_mp_irq(struct mpc_intsrc *m,
861 struct mpc_intsrc *mp_irq)
Yinghai Lufcfa1462008-06-18 17:29:31 -0700862{
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530863 memcpy(mp_irq, m, sizeof(struct mpc_intsrc));
Yinghai Lufcfa1462008-06-18 17:29:31 -0700864}
865
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530866static int mp_irq_cmp(struct mpc_intsrc *mp_irq,
867 struct mpc_intsrc *m)
Yinghai Lufcfa1462008-06-18 17:29:31 -0700868{
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530869 return memcmp(mp_irq, m, sizeof(struct mpc_intsrc));
Yinghai Lufcfa1462008-06-18 17:29:31 -0700870}
871
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530872static void save_mp_irq(struct mpc_intsrc *m)
Yinghai Lufcfa1462008-06-18 17:29:31 -0700873{
874 int i;
875
876 for (i = 0; i < mp_irq_entries; i++) {
877 if (!mp_irq_cmp(&mp_irqs[i], m))
878 return;
879 }
880
881 assign_to_mp_irq(m, &mp_irqs[mp_irq_entries]);
882 if (++mp_irq_entries == MAX_IRQ_SOURCES)
883 panic("Max # of irq sources exceeded!!\n");
884}
885
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400886void __init mp_override_legacy_irq(u8 bus_irq, u8 polarity, u8 trigger, u32 gsi)
887{
Yinghai Lu6df88092008-06-15 18:19:46 -0700888 int ioapic;
889 int pin;
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530890 struct mpc_intsrc mp_irq;
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400891
892 /*
893 * Convert 'gsi' to 'ioapic.pin'.
894 */
895 ioapic = mp_find_ioapic(gsi);
896 if (ioapic < 0)
897 return;
Jeremy Fitzhardingec3e137d2009-02-09 12:05:47 -0800898 pin = mp_find_ioapic_pin(ioapic, gsi);
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400899
900 /*
901 * TBD: This check is for faulty timer entries, where the override
902 * erroneously sets the trigger to level, resulting in a HUGE
903 * increase of timer interrupts!
904 */
905 if ((bus_irq == 0) && (trigger == 3))
906 trigger = 1;
907
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530908 mp_irq.type = MP_INTSRC;
909 mp_irq.irqtype = mp_INT;
910 mp_irq.irqflag = (trigger << 2) | polarity;
911 mp_irq.srcbus = MP_ISA_BUS;
912 mp_irq.srcbusirq = bus_irq; /* IRQ */
913 mp_irq.dstapic = mp_ioapics[ioapic].apicid; /* APIC ID */
914 mp_irq.dstirq = pin; /* INTIN# */
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400915
Yinghai Lufcfa1462008-06-18 17:29:31 -0700916 save_mp_irq(&mp_irq);
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400917}
918
919void __init mp_config_acpi_legacy_irqs(void)
920{
Yinghai Lu6df88092008-06-15 18:19:46 -0700921 int i;
922 int ioapic;
923 unsigned int dstapic;
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530924 struct mpc_intsrc mp_irq;
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400925
926#if defined (CONFIG_MCA) || defined (CONFIG_EISA)
927 /*
928 * Fabricate the legacy ISA bus (bus #31).
929 */
930 mp_bus_id_to_type[MP_ISA_BUS] = MP_BUS_ISA;
931#endif
932 set_bit(MP_ISA_BUS, mp_bus_not_pci);
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200933 pr_debug("Bus #%d is ISA\n", MP_ISA_BUS);
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400934
Yinghai Lud49c4282008-06-08 18:31:54 -0700935#ifdef CONFIG_X86_ES7000
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400936 /*
937 * Older generations of ES7000 have no legacy identity mappings
938 */
939 if (es7000_plat == 1)
940 return;
941#endif
942
943 /*
944 * Locate the IOAPIC that manages the ISA IRQs (0-15).
945 */
946 ioapic = mp_find_ioapic(0);
947 if (ioapic < 0)
948 return;
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +0530949 dstapic = mp_ioapics[ioapic].apicid;
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400950
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400951 /*
952 * Use the default configuration for the IRQs 0-15. Unless
953 * overridden by (MADT) interrupt source override entries.
954 */
955 for (i = 0; i < 16; i++) {
956 int idx;
957
958 for (idx = 0; idx < mp_irq_entries; idx++) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530959 struct mpc_intsrc *irq = mp_irqs + idx;
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400960
961 /* Do we already have a mapping for this ISA IRQ? */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530962 if (irq->srcbus == MP_ISA_BUS && irq->srcbusirq == i)
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400963 break;
964
965 /* Do we already have a mapping for this IOAPIC pin */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530966 if (irq->dstapic == dstapic && irq->dstirq == i)
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400967 break;
968 }
969
970 if (idx != mp_irq_entries) {
971 printk(KERN_DEBUG "ACPI: IRQ%d used by override.\n", i);
972 continue; /* IRQ already used */
973 }
974
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530975 mp_irq.type = MP_INTSRC;
976 mp_irq.irqflag = 0; /* Conforming */
977 mp_irq.srcbus = MP_ISA_BUS;
978 mp_irq.dstapic = dstapic;
979 mp_irq.irqtype = mp_INT;
980 mp_irq.srcbusirq = i; /* Identity mapped */
981 mp_irq.dstirq = i;
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400982
Yinghai Lufcfa1462008-06-18 17:29:31 -0700983 save_mp_irq(&mp_irq);
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400984 }
985}
986
Yinghai Lue5198072009-05-15 13:05:16 -0700987static int mp_config_acpi_gsi(struct device *dev, u32 gsi, int trigger,
Yinghai Lua31f8202009-05-06 10:06:15 -0700988 int polarity)
989{
990#ifdef CONFIG_X86_MPPARSE
991 struct mpc_intsrc mp_irq;
992 struct pci_dev *pdev;
993 unsigned char number;
994 unsigned int devfn;
995 int ioapic;
996 u8 pin;
997
998 if (!acpi_ioapic)
999 return 0;
1000 if (!dev)
1001 return 0;
1002 if (dev->bus != &pci_bus_type)
1003 return 0;
1004
1005 pdev = to_pci_dev(dev);
1006 number = pdev->bus->number;
1007 devfn = pdev->devfn;
1008 pin = pdev->pin;
1009 /* print the entry should happen on mptable identically */
1010 mp_irq.type = MP_INTSRC;
1011 mp_irq.irqtype = mp_INT;
Yinghai Lue5198072009-05-15 13:05:16 -07001012 mp_irq.irqflag = (trigger == ACPI_EDGE_SENSITIVE ? 4 : 0x0c) |
Yinghai Lua31f8202009-05-06 10:06:15 -07001013 (polarity == ACPI_ACTIVE_HIGH ? 1 : 3);
1014 mp_irq.srcbus = number;
1015 mp_irq.srcbusirq = (((devfn >> 3) & 0x1f) << 2) | ((pin - 1) & 3);
1016 ioapic = mp_find_ioapic(gsi);
Yinghai Lubdfe8ac2009-05-06 10:07:41 -07001017 mp_irq.dstapic = mp_ioapics[ioapic].apicid;
Yinghai Lua31f8202009-05-06 10:06:15 -07001018 mp_irq.dstirq = mp_find_ioapic_pin(ioapic, gsi);
1019
1020 save_mp_irq(&mp_irq);
1021#endif
1022 return 0;
1023}
1024
Yinghai Lue5198072009-05-15 13:05:16 -07001025int mp_register_gsi(struct device *dev, u32 gsi, int trigger, int polarity)
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001026{
1027 int ioapic;
1028 int ioapic_pin;
Yinghai Lue5198072009-05-15 13:05:16 -07001029 struct io_apic_irq_attr irq_attr;
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001030
1031 if (acpi_irq_model != ACPI_IRQ_MODEL_IOAPIC)
1032 return gsi;
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001033
1034 /* Don't set up the ACPI SCI because it's already set up */
1035 if (acpi_gbl_FADT.sci_interrupt == gsi)
1036 return gsi;
1037
1038 ioapic = mp_find_ioapic(gsi);
1039 if (ioapic < 0) {
1040 printk(KERN_WARNING "No IOAPIC for GSI %u\n", gsi);
1041 return gsi;
1042 }
1043
Jeremy Fitzhardingec3e137d2009-02-09 12:05:47 -08001044 ioapic_pin = mp_find_ioapic_pin(ioapic, gsi);
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001045
1046#ifdef CONFIG_X86_32
1047 if (ioapic_renumber_irq)
1048 gsi = ioapic_renumber_irq(ioapic, gsi);
1049#endif
1050
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001051 if (ioapic_pin > MP_MAX_IOAPIC_PIN) {
1052 printk(KERN_ERR "Invalid reference to IOAPIC pin "
Yinghai Lubdfe8ac2009-05-06 10:07:41 -07001053 "%d-%d\n", mp_ioapics[ioapic].apicid,
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001054 ioapic_pin);
1055 return gsi;
1056 }
Yinghai Luf1bdb522009-05-15 13:05:16 -07001057
1058 if (enable_update_mptable)
1059 mp_config_acpi_gsi(dev, gsi, trigger, polarity);
Yinghai Lub9e03532009-05-06 10:05:32 -07001060
Yinghai Lue5198072009-05-15 13:05:16 -07001061 set_io_apic_irq_attr(&irq_attr, ioapic, ioapic_pin,
1062 trigger == ACPI_EDGE_SENSITIVE ? 0 : 1,
1063 polarity == ACPI_ACTIVE_HIGH ? 0 : 1);
1064 io_apic_set_pci_routing(dev, gsi, &irq_attr);
Yinghai Lub9e03532009-05-06 10:05:32 -07001065
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001066 return gsi;
1067}
1068
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069/*
1070 * Parse IOAPIC related entries in MADT
1071 * returns 0 on success, < 0 on error
1072 */
Len Brown4be44fc2005-08-05 00:44:28 -04001073static int __init acpi_parse_madt_ioapic_entries(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074{
1075 int count;
1076
1077 /*
1078 * ACPI interpreter is required to complete interrupt setup,
1079 * so if it is off, don't enumerate the io-apics with ACPI.
1080 * If MPS is present, it will handle them,
1081 * otherwise the system will stay in PIC mode
1082 */
Jeremy Fitzhardinge6b2b1712009-06-08 02:53:50 -07001083 if (acpi_disabled || acpi_noirq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001086 if (!cpu_has_apic)
Andi Kleend3b6a342006-04-07 19:49:39 +02001087 return -ENODEV;
1088
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 /*
Len Brown4be44fc2005-08-05 00:44:28 -04001090 * if "noapic" boot option, don't look for IO-APICs
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 */
1092 if (skip_ioapic_setup) {
1093 printk(KERN_INFO PREFIX "Skipping IOAPIC probe "
Len Brown4be44fc2005-08-05 00:44:28 -04001094 "due to 'noapic' option.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 return -ENODEV;
1096 }
1097
Len Brown4be44fc2005-08-05 00:44:28 -04001098 count =
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001099 acpi_table_parse_madt(ACPI_MADT_TYPE_IO_APIC, acpi_parse_ioapic,
Len Brown4be44fc2005-08-05 00:44:28 -04001100 MAX_IO_APICS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 if (!count) {
1102 printk(KERN_ERR PREFIX "No IOAPIC entries present\n");
1103 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -04001104 } else if (count < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 printk(KERN_ERR PREFIX "Error parsing IOAPIC entry\n");
1106 return count;
1107 }
1108
Len Brown4be44fc2005-08-05 00:44:28 -04001109 count =
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001110 acpi_table_parse_madt(ACPI_MADT_TYPE_INTERRUPT_OVERRIDE, acpi_parse_int_src_ovr,
Yinghai Lu71f521b2008-08-19 20:50:03 -07001111 nr_irqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 if (count < 0) {
Len Brown4be44fc2005-08-05 00:44:28 -04001113 printk(KERN_ERR PREFIX
1114 "Error parsing interrupt source overrides entry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 /* TBD: Cleanup to allow fallback to MPS */
1116 return count;
1117 }
1118
1119 /*
1120 * If BIOS did not supply an INT_SRC_OVR for the SCI
1121 * pretend we got one so we can set the SCI flags.
1122 */
1123 if (!acpi_sci_override_gsi)
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001124 acpi_sci_ioapic_setup(acpi_gbl_FADT.sci_interrupt, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001126 /* Fill in identity legacy mappings where no override */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 mp_config_acpi_legacy_irqs();
1128
Len Brown4be44fc2005-08-05 00:44:28 -04001129 count =
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001130 acpi_table_parse_madt(ACPI_MADT_TYPE_NMI_SOURCE, acpi_parse_nmi_src,
Yinghai Lu71f521b2008-08-19 20:50:03 -07001131 nr_irqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 if (count < 0) {
1133 printk(KERN_ERR PREFIX "Error parsing NMI SRC entry\n");
1134 /* TBD: Cleanup to allow fallback to MPS */
1135 return count;
1136 }
1137
1138 return 0;
1139}
1140#else
1141static inline int acpi_parse_madt_ioapic_entries(void)
1142{
1143 return -1;
1144}
Len Brown84663612005-08-24 12:09:07 -04001145#endif /* !CONFIG_X86_IO_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
Yinghai Lucbf9bd62008-02-19 03:21:06 -08001147static void __init early_acpi_process_madt(void)
1148{
1149#ifdef CONFIG_X86_LOCAL_APIC
1150 int error;
1151
1152 if (!acpi_table_parse(ACPI_SIG_MADT, acpi_parse_madt)) {
1153
1154 /*
1155 * Parse MADT LAPIC entries
1156 */
1157 error = early_acpi_parse_madt_lapic_addr_ovr();
1158 if (!error) {
1159 acpi_lapic = 1;
1160 smp_found_config = 1;
1161 }
1162 if (error == -EINVAL) {
1163 /*
1164 * Dell Precision Workstation 410, 610 come here.
1165 */
1166 printk(KERN_ERR PREFIX
1167 "Invalid BIOS MADT, disabling ACPI\n");
1168 disable_acpi();
1169 }
1170 }
1171#endif
1172}
1173
Len Brown4be44fc2005-08-05 00:44:28 -04001174static void __init acpi_process_madt(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175{
1176#ifdef CONFIG_X86_LOCAL_APIC
Len Brown7f8f97c2007-02-10 21:28:03 -05001177 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178
Len Brown7f8f97c2007-02-10 21:28:03 -05001179 if (!acpi_table_parse(ACPI_SIG_MADT, acpi_parse_madt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180
1181 /*
1182 * Parse MADT LAPIC entries
1183 */
1184 error = acpi_parse_madt_lapic_entries();
1185 if (!error) {
1186 acpi_lapic = 1;
1187
Yinghai Lu26f7ef12009-01-29 14:19:22 -08001188#ifdef CONFIG_X86_BIGSMP
Venkatesh Pallipadi911a62d2005-09-03 15:56:31 -07001189 generic_bigsmp_probe();
1190#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 /*
1192 * Parse MADT IO-APIC entries
1193 */
1194 error = acpi_parse_madt_ioapic_entries();
1195 if (!error) {
1196 acpi_irq_model = ACPI_IRQ_MODEL_IOAPIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 acpi_ioapic = 1;
1198
1199 smp_found_config = 1;
Ingo Molnar72ce0162009-01-28 06:50:47 +01001200 if (apic->setup_apic_routing)
1201 apic->setup_apic_routing();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 }
1203 }
1204 if (error == -EINVAL) {
1205 /*
1206 * Dell Precision Workstation 410, 610 come here.
1207 */
Len Brown4be44fc2005-08-05 00:44:28 -04001208 printk(KERN_ERR PREFIX
1209 "Invalid BIOS MADT, disabling ACPI\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 disable_acpi();
1211 }
Len Brown7b37b5f2008-12-23 01:47:42 -05001212 } else {
1213 /*
1214 * ACPI found no MADT, and so ACPI wants UP PIC mode.
1215 * In the event an MPS table was found, forget it.
1216 * Boot with "acpi=off" to use MPS on such a system.
1217 */
1218 if (smp_found_config) {
1219 printk(KERN_WARNING PREFIX
1220 "No APIC-table, disabling MPS\n");
1221 smp_found_config = 0;
1222 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 }
Yinghai Lu69b88af2008-12-05 22:45:50 -08001224
1225 /*
1226 * ACPI supports both logical (e.g. Hyper-Threading) and physical
1227 * processors, where MPS only supports physical.
1228 */
1229 if (acpi_lapic && acpi_ioapic)
1230 printk(KERN_INFO "Using ACPI (MADT) for SMP configuration "
1231 "information\n");
1232 else if (acpi_lapic)
1233 printk(KERN_INFO "Using ACPI for processor (LAPIC) "
1234 "configuration information\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235#endif
1236 return;
1237}
1238
Jeff Garzik18552562007-10-03 15:15:40 -04001239static int __init disable_acpi_irq(const struct dmi_system_id *d)
Andrey Paninaea00142005-06-25 14:54:42 -07001240{
1241 if (!acpi_force) {
1242 printk(KERN_NOTICE "%s detected: force use of acpi=noirq\n",
1243 d->ident);
1244 acpi_noirq_set();
1245 }
1246 return 0;
1247}
1248
Jeff Garzik18552562007-10-03 15:15:40 -04001249static int __init disable_acpi_pci(const struct dmi_system_id *d)
Andrey Paninaea00142005-06-25 14:54:42 -07001250{
1251 if (!acpi_force) {
1252 printk(KERN_NOTICE "%s detected: force use of pci=noacpi\n",
1253 d->ident);
1254 acpi_disable_pci();
1255 }
1256 return 0;
1257}
Andrey Paninaea00142005-06-25 14:54:42 -07001258
Jeff Garzik18552562007-10-03 15:15:40 -04001259static int __init dmi_disable_acpi(const struct dmi_system_id *d)
Andrey Paninaea00142005-06-25 14:54:42 -07001260{
1261 if (!acpi_force) {
Len Brown4be44fc2005-08-05 00:44:28 -04001262 printk(KERN_NOTICE "%s detected: acpi off\n", d->ident);
Andrey Paninaea00142005-06-25 14:54:42 -07001263 disable_acpi();
1264 } else {
1265 printk(KERN_NOTICE
1266 "Warning: DMI blacklist says broken, but acpi forced\n");
1267 }
1268 return 0;
1269}
1270
1271/*
1272 * Limit ACPI to CPU enumeration for HT
1273 */
Jeff Garzik18552562007-10-03 15:15:40 -04001274static int __init force_acpi_ht(const struct dmi_system_id *d)
Andrey Paninaea00142005-06-25 14:54:42 -07001275{
1276 if (!acpi_force) {
Len Brown4be44fc2005-08-05 00:44:28 -04001277 printk(KERN_NOTICE "%s detected: force use of acpi=ht\n",
1278 d->ident);
Andrey Paninaea00142005-06-25 14:54:42 -07001279 disable_acpi();
1280 acpi_ht = 1;
1281 } else {
1282 printk(KERN_NOTICE
1283 "Warning: acpi=force overrules DMI blacklist: acpi=ht\n");
1284 }
1285 return 0;
1286}
1287
1288/*
Rafael J. Wysockie2079c42008-07-08 16:12:26 +02001289 * Force ignoring BIOS IRQ0 pin2 override
1290 */
1291static int __init dmi_ignore_irq0_timer_override(const struct dmi_system_id *d)
1292{
Ingo Molnar8d89adf2008-10-07 06:47:52 +02001293 /*
1294 * The ati_ixp4x0_rev() early PCI quirk should have set
1295 * the acpi_skip_timer_override flag already:
1296 */
1297 if (!acpi_skip_timer_override) {
1298 WARN(1, KERN_ERR "ati_ixp4x0 quirk not complete.\n");
1299 pr_notice("%s detected: Ignoring BIOS IRQ0 pin2 override\n",
1300 d->ident);
1301 acpi_skip_timer_override = 1;
1302 }
Rafael J. Wysockie2079c42008-07-08 16:12:26 +02001303 return 0;
1304}
1305
1306/*
Andrey Paninaea00142005-06-25 14:54:42 -07001307 * If your system is blacklisted here, but you find that acpi=force
Zhang Rui5b4c0b62009-04-01 01:49:42 -04001308 * works for you, please contact linux-acpi@vger.kernel.org
Andrey Paninaea00142005-06-25 14:54:42 -07001309 */
1310static struct dmi_system_id __initdata acpi_dmi_table[] = {
1311 /*
1312 * Boxes that need ACPI disabled
1313 */
1314 {
Len Brown4be44fc2005-08-05 00:44:28 -04001315 .callback = dmi_disable_acpi,
1316 .ident = "IBM Thinkpad",
1317 .matches = {
1318 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1319 DMI_MATCH(DMI_BOARD_NAME, "2629H1G"),
1320 },
1321 },
Andrey Paninaea00142005-06-25 14:54:42 -07001322
1323 /*
1324 * Boxes that need acpi=ht
1325 */
1326 {
Len Brown4be44fc2005-08-05 00:44:28 -04001327 .callback = force_acpi_ht,
1328 .ident = "FSC Primergy T850",
1329 .matches = {
1330 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
1331 DMI_MATCH(DMI_PRODUCT_NAME, "PRIMERGY T850"),
1332 },
1333 },
Andrey Paninaea00142005-06-25 14:54:42 -07001334 {
Len Brown4be44fc2005-08-05 00:44:28 -04001335 .callback = force_acpi_ht,
Len Brown4be44fc2005-08-05 00:44:28 -04001336 .ident = "HP VISUALIZE NT Workstation",
1337 .matches = {
1338 DMI_MATCH(DMI_BOARD_VENDOR, "Hewlett-Packard"),
1339 DMI_MATCH(DMI_PRODUCT_NAME, "HP VISUALIZE NT Workstation"),
1340 },
1341 },
Andrey Paninaea00142005-06-25 14:54:42 -07001342 {
Len Brown4be44fc2005-08-05 00:44:28 -04001343 .callback = force_acpi_ht,
1344 .ident = "Compaq Workstation W8000",
1345 .matches = {
1346 DMI_MATCH(DMI_SYS_VENDOR, "Compaq"),
1347 DMI_MATCH(DMI_PRODUCT_NAME, "Workstation W8000"),
1348 },
1349 },
Andrey Paninaea00142005-06-25 14:54:42 -07001350 {
Len Brown4be44fc2005-08-05 00:44:28 -04001351 .callback = force_acpi_ht,
Len Brown4be44fc2005-08-05 00:44:28 -04001352 .ident = "ASUS P2B-DS",
1353 .matches = {
1354 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1355 DMI_MATCH(DMI_BOARD_NAME, "P2B-DS"),
1356 },
1357 },
Andrey Paninaea00142005-06-25 14:54:42 -07001358 {
Len Brown4be44fc2005-08-05 00:44:28 -04001359 .callback = force_acpi_ht,
1360 .ident = "ASUS CUR-DLS",
1361 .matches = {
1362 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1363 DMI_MATCH(DMI_BOARD_NAME, "CUR-DLS"),
1364 },
1365 },
Andrey Paninaea00142005-06-25 14:54:42 -07001366 {
Len Brown4be44fc2005-08-05 00:44:28 -04001367 .callback = force_acpi_ht,
1368 .ident = "ABIT i440BX-W83977",
1369 .matches = {
1370 DMI_MATCH(DMI_BOARD_VENDOR, "ABIT <http://www.abit.com>"),
1371 DMI_MATCH(DMI_BOARD_NAME, "i440BX-W83977 (BP6)"),
1372 },
1373 },
Andrey Paninaea00142005-06-25 14:54:42 -07001374 {
Len Brown4be44fc2005-08-05 00:44:28 -04001375 .callback = force_acpi_ht,
1376 .ident = "IBM Bladecenter",
1377 .matches = {
1378 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1379 DMI_MATCH(DMI_BOARD_NAME, "IBM eServer BladeCenter HS20"),
1380 },
1381 },
Andrey Paninaea00142005-06-25 14:54:42 -07001382 {
Len Brown4be44fc2005-08-05 00:44:28 -04001383 .callback = force_acpi_ht,
1384 .ident = "IBM eServer xSeries 360",
1385 .matches = {
1386 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1387 DMI_MATCH(DMI_BOARD_NAME, "eServer xSeries 360"),
1388 },
1389 },
Andrey Paninaea00142005-06-25 14:54:42 -07001390 {
Len Brown4be44fc2005-08-05 00:44:28 -04001391 .callback = force_acpi_ht,
1392 .ident = "IBM eserver xSeries 330",
1393 .matches = {
1394 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1395 DMI_MATCH(DMI_BOARD_NAME, "eserver xSeries 330"),
1396 },
1397 },
Andrey Paninaea00142005-06-25 14:54:42 -07001398 {
Len Brown4be44fc2005-08-05 00:44:28 -04001399 .callback = force_acpi_ht,
1400 .ident = "IBM eserver xSeries 440",
1401 .matches = {
1402 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1403 DMI_MATCH(DMI_PRODUCT_NAME, "eserver xSeries 440"),
1404 },
1405 },
Andrey Paninaea00142005-06-25 14:54:42 -07001406
Andrey Paninaea00142005-06-25 14:54:42 -07001407 /*
1408 * Boxes that need ACPI PCI IRQ routing disabled
1409 */
1410 {
Len Brown4be44fc2005-08-05 00:44:28 -04001411 .callback = disable_acpi_irq,
1412 .ident = "ASUS A7V",
1413 .matches = {
1414 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC"),
1415 DMI_MATCH(DMI_BOARD_NAME, "<A7V>"),
1416 /* newer BIOS, Revision 1011, does work */
1417 DMI_MATCH(DMI_BIOS_VERSION,
1418 "ASUS A7V ACPI BIOS Revision 1007"),
1419 },
1420 },
Len Brown74586fc2007-03-08 02:48:30 -05001421 {
1422 /*
1423 * Latest BIOS for IBM 600E (1.16) has bad pcinum
1424 * for LPC bridge, which is needed for the PCI
1425 * interrupt links to work. DSDT fix is in bug 5966.
1426 * 2645, 2646 model numbers are shared with 600/600E/600X
1427 */
1428 .callback = disable_acpi_irq,
1429 .ident = "IBM Thinkpad 600 Series 2645",
1430 .matches = {
1431 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1432 DMI_MATCH(DMI_BOARD_NAME, "2645"),
1433 },
1434 },
1435 {
1436 .callback = disable_acpi_irq,
1437 .ident = "IBM Thinkpad 600 Series 2646",
1438 .matches = {
1439 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1440 DMI_MATCH(DMI_BOARD_NAME, "2646"),
1441 },
1442 },
Andrey Paninaea00142005-06-25 14:54:42 -07001443 /*
1444 * Boxes that need ACPI PCI IRQ routing and PCI scan disabled
1445 */
Len Brown4be44fc2005-08-05 00:44:28 -04001446 { /* _BBN 0 bug */
1447 .callback = disable_acpi_pci,
1448 .ident = "ASUS PR-DLS",
1449 .matches = {
1450 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1451 DMI_MATCH(DMI_BOARD_NAME, "PR-DLS"),
1452 DMI_MATCH(DMI_BIOS_VERSION,
1453 "ASUS PR-DLS ACPI BIOS Revision 1010"),
1454 DMI_MATCH(DMI_BIOS_DATE, "03/21/2003")
1455 },
1456 },
Andrey Paninaea00142005-06-25 14:54:42 -07001457 {
Len Brown4be44fc2005-08-05 00:44:28 -04001458 .callback = disable_acpi_pci,
1459 .ident = "Acer TravelMate 36x Laptop",
1460 .matches = {
1461 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
1462 DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 360"),
1463 },
1464 },
Andreas Herrmann35af2822008-10-22 13:08:31 +02001465 {}
1466};
1467
1468/* second table for DMI checks that should run after early-quirks */
1469static struct dmi_system_id __initdata acpi_dmi_table_late[] = {
Matthew Garrett9340e1c2008-07-01 01:12:06 +01001470 /*
1471 * HP laptops which use a DSDT reporting as HP/SB400/10000,
1472 * which includes some code which overrides all temperature
1473 * trip points to 16C if the INTIN2 input of the I/O APIC
1474 * is enabled. This input is incorrectly designated the
1475 * ISA IRQ 0 via an interrupt source override even though
1476 * it is wired to the output of the master 8259A and INTIN0
Rafael J. Wysockie2079c42008-07-08 16:12:26 +02001477 * is not connected at all. Force ignoring BIOS IRQ0 pin2
1478 * override in that cases.
1479 */
1480 {
1481 .callback = dmi_ignore_irq0_timer_override,
Rafael J. Wysockie84956f2008-10-06 11:59:29 +02001482 .ident = "HP nx6115 laptop",
1483 .matches = {
1484 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
1485 DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq nx6115"),
1486 },
1487 },
1488 {
1489 .callback = dmi_ignore_irq0_timer_override,
Rafael J. Wysockie2079c42008-07-08 16:12:26 +02001490 .ident = "HP NX6125 laptop",
1491 .matches = {
1492 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
1493 DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq nx6125"),
1494 },
1495 },
1496 {
1497 .callback = dmi_ignore_irq0_timer_override,
1498 .ident = "HP NX6325 laptop",
1499 .matches = {
1500 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
1501 DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq nx6325"),
1502 },
1503 },
Rafael J. Wysockie84956f2008-10-06 11:59:29 +02001504 {
1505 .callback = dmi_ignore_irq0_timer_override,
1506 .ident = "HP 6715b laptop",
1507 .matches = {
1508 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
1509 DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq 6715b"),
1510 },
1511 },
Len Brown4be44fc2005-08-05 00:44:28 -04001512 {}
Andrey Paninaea00142005-06-25 14:54:42 -07001513};
1514
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515/*
1516 * acpi_boot_table_init() and acpi_boot_init()
1517 * called from setup_arch(), always.
1518 * 1. checksums all tables
1519 * 2. enumerates lapics
1520 * 3. enumerates io-apics
1521 *
1522 * acpi_table_init() is separate to allow reading SRAT without
1523 * other side effects.
1524 *
1525 * side effects of acpi_boot_init:
1526 * acpi_lapic = 1 if LAPIC found
1527 * acpi_ioapic = 1 if IOAPIC found
1528 * if (acpi_lapic && acpi_ioapic) smp_found_config = 1;
1529 * if acpi_blacklisted() acpi_disabled = 1;
1530 * acpi_irq_model=...
1531 * ...
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 */
1533
Len Brown8558e392010-01-06 16:11:06 -05001534void __init acpi_boot_table_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535{
Andrey Paninaea00142005-06-25 14:54:42 -07001536 dmi_check_system(acpi_dmi_table);
Andrey Paninaea00142005-06-25 14:54:42 -07001537
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 /*
1539 * If acpi_disabled, bail out
1540 * One exception: acpi=ht continues far enough to enumerate LAPICs
1541 */
1542 if (acpi_disabled && !acpi_ht)
Len Brown8558e392010-01-06 16:11:06 -05001543 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001545 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 * Initialize the ACPI boot-time table parser.
1547 */
Len Brown8558e392010-01-06 16:11:06 -05001548 if (acpi_table_init()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 disable_acpi();
Len Brown8558e392010-01-06 16:11:06 -05001550 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001553 acpi_table_parse(ACPI_SIG_BOOT, acpi_parse_sbf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554
1555 /*
1556 * blacklist may disable ACPI entirely
1557 */
Len Brown8558e392010-01-06 16:11:06 -05001558 if (acpi_blacklisted()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 if (acpi_force) {
1560 printk(KERN_WARNING PREFIX "acpi=force override\n");
1561 } else {
1562 printk(KERN_WARNING PREFIX "Disabling ACPI support\n");
1563 disable_acpi();
Len Brown8558e392010-01-06 16:11:06 -05001564 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 }
1566 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567}
1568
Yinghai Lucbf9bd62008-02-19 03:21:06 -08001569int __init early_acpi_boot_init(void)
1570{
1571 /*
1572 * If acpi_disabled, bail out
1573 * One exception: acpi=ht continues far enough to enumerate LAPICs
1574 */
1575 if (acpi_disabled && !acpi_ht)
1576 return 1;
1577
1578 /*
1579 * Process the Multiple APIC Description Table (MADT), if present
1580 */
1581 early_acpi_process_madt();
1582
1583 return 0;
1584}
1585
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586int __init acpi_boot_init(void)
1587{
Andreas Herrmann35af2822008-10-22 13:08:31 +02001588 /* those are executed after early-quirks are executed */
1589 dmi_check_system(acpi_dmi_table_late);
1590
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 /*
1592 * If acpi_disabled, bail out
1593 * One exception: acpi=ht continues far enough to enumerate LAPICs
1594 */
1595 if (acpi_disabled && !acpi_ht)
Len Brown4be44fc2005-08-05 00:44:28 -04001596 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001598 acpi_table_parse(ACPI_SIG_BOOT, acpi_parse_sbf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599
1600 /*
1601 * set sci_int and PM timer address
1602 */
Alexey Starikovskiyceb6c462007-02-02 19:48:22 +03001603 acpi_table_parse(ACPI_SIG_FADT, acpi_parse_fadt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604
1605 /*
1606 * Process the Multiple APIC Description Table (MADT), if present
1607 */
1608 acpi_process_madt();
1609
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001610 acpi_table_parse(ACPI_SIG_HPET, acpi_parse_hpet);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611
1612 return 0;
1613}
Rusty Russell1a3f2392006-09-26 10:52:32 +02001614
1615static int __init parse_acpi(char *arg)
1616{
1617 if (!arg)
1618 return -EINVAL;
1619
1620 /* "acpi=off" disables both ACPI table parsing and interpreter */
1621 if (strcmp(arg, "off") == 0) {
1622 disable_acpi();
1623 }
1624 /* acpi=force to over-ride black-list */
1625 else if (strcmp(arg, "force") == 0) {
1626 acpi_force = 1;
1627 acpi_ht = 1;
1628 acpi_disabled = 0;
1629 }
1630 /* acpi=strict disables out-of-spec workarounds */
1631 else if (strcmp(arg, "strict") == 0) {
1632 acpi_strict = 1;
1633 }
1634 /* Limit ACPI just to boot-time to enable HT */
1635 else if (strcmp(arg, "ht") == 0) {
1636 if (!acpi_force)
1637 disable_acpi();
1638 acpi_ht = 1;
1639 }
Zhao Yakui237889b2008-12-17 16:55:18 +08001640 /* acpi=rsdt use RSDT instead of XSDT */
1641 else if (strcmp(arg, "rsdt") == 0) {
1642 acpi_rsdt_forced = 1;
1643 }
Rusty Russell1a3f2392006-09-26 10:52:32 +02001644 /* "acpi=noirq" disables ACPI interrupt routing */
1645 else if (strcmp(arg, "noirq") == 0) {
1646 acpi_noirq_set();
1647 } else {
1648 /* Core will printk when we return error. */
1649 return -EINVAL;
1650 }
1651 return 0;
1652}
1653early_param("acpi", parse_acpi);
1654
1655/* FIXME: Using pci= for an ACPI parameter is a travesty. */
1656static int __init parse_pci(char *arg)
1657{
1658 if (arg && strcmp(arg, "noacpi") == 0)
1659 acpi_disable_pci();
1660 return 0;
1661}
1662early_param("pci", parse_pci);
1663
Yinghai Lu3c999f12008-06-20 16:11:20 -07001664int __init acpi_mps_check(void)
1665{
1666#if defined(CONFIG_X86_LOCAL_APIC) && !defined(CONFIG_X86_MPPARSE)
1667/* mptable code is not built-in*/
1668 if (acpi_disabled || acpi_noirq) {
1669 printk(KERN_WARNING "MPS support code is not built-in.\n"
1670 "Using acpi=off or acpi=noirq or pci=noacpi "
1671 "may have problem\n");
1672 return 1;
1673 }
1674#endif
1675 return 0;
1676}
1677
Rusty Russell1a3f2392006-09-26 10:52:32 +02001678#ifdef CONFIG_X86_IO_APIC
1679static int __init parse_acpi_skip_timer_override(char *arg)
1680{
1681 acpi_skip_timer_override = 1;
1682 return 0;
1683}
1684early_param("acpi_skip_timer_override", parse_acpi_skip_timer_override);
Andi Kleenfa18f472006-11-14 16:57:46 +01001685
1686static int __init parse_acpi_use_timer_override(char *arg)
1687{
1688 acpi_use_timer_override = 1;
1689 return 0;
1690}
1691early_param("acpi_use_timer_override", parse_acpi_use_timer_override);
Rusty Russell1a3f2392006-09-26 10:52:32 +02001692#endif /* CONFIG_X86_IO_APIC */
1693
1694static int __init setup_acpi_sci(char *s)
1695{
1696 if (!s)
1697 return -EINVAL;
1698 if (!strcmp(s, "edge"))
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001699 acpi_sci_flags = ACPI_MADT_TRIGGER_EDGE |
1700 (acpi_sci_flags & ~ACPI_MADT_TRIGGER_MASK);
Rusty Russell1a3f2392006-09-26 10:52:32 +02001701 else if (!strcmp(s, "level"))
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001702 acpi_sci_flags = ACPI_MADT_TRIGGER_LEVEL |
1703 (acpi_sci_flags & ~ACPI_MADT_TRIGGER_MASK);
Rusty Russell1a3f2392006-09-26 10:52:32 +02001704 else if (!strcmp(s, "high"))
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001705 acpi_sci_flags = ACPI_MADT_POLARITY_ACTIVE_HIGH |
1706 (acpi_sci_flags & ~ACPI_MADT_POLARITY_MASK);
Rusty Russell1a3f2392006-09-26 10:52:32 +02001707 else if (!strcmp(s, "low"))
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001708 acpi_sci_flags = ACPI_MADT_POLARITY_ACTIVE_LOW |
1709 (acpi_sci_flags & ~ACPI_MADT_POLARITY_MASK);
Rusty Russell1a3f2392006-09-26 10:52:32 +02001710 else
1711 return -EINVAL;
1712 return 0;
1713}
1714early_param("acpi_sci", setup_acpi_sci);
Andrew Mortond0a90812006-10-20 14:30:27 -07001715
1716int __acpi_acquire_global_lock(unsigned int *lock)
1717{
1718 unsigned int old, new, val;
1719 do {
1720 old = *lock;
1721 new = (((old & ~0x3) + 2) + ((old >> 1) & 0x1));
1722 val = cmpxchg(lock, old, new);
1723 } while (unlikely (val != old));
1724 return (new < 3) ? -1 : 0;
1725}
1726
1727int __acpi_release_global_lock(unsigned int *lock)
1728{
1729 unsigned int old, new, val;
1730 do {
1731 old = *lock;
1732 new = old & ~0x3;
1733 val = cmpxchg(lock, old, new);
1734 } while (unlikely (val != old));
1735 return old & 0x1;
1736}