blob: 5c96b75c6ea8433baebd1c3b92dee16cf34c71df [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;
Yinghai Lu18dce6b2010-02-10 01:20:05 -0800449
450#ifdef CONFIG_X86_IO_APIC
451 if (acpi_irq_model == ACPI_IRQ_MODEL_IOAPIC)
452 setup_IO_APIC_irq_extra(gsi);
453#endif
454
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 return 0;
456}
457
Kenji Kaneshige1f3a6a12005-07-28 14:42:00 -0400458/*
459 * success: return IRQ number (>=0)
460 * failure: return < 0
461 */
Yinghai Lue5198072009-05-15 13:05:16 -0700462int acpi_register_gsi(struct device *dev, u32 gsi, int trigger, int polarity)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463{
464 unsigned int irq;
465 unsigned int plat_gsi = gsi;
466
467#ifdef CONFIG_PCI
468 /*
469 * Make sure all (legacy) PCI IRQs are set as level-triggered.
470 */
471 if (acpi_irq_model == ACPI_IRQ_MODEL_PIC) {
Yinghai Lue5198072009-05-15 13:05:16 -0700472 if (trigger == ACPI_LEVEL_SENSITIVE)
Len Brown4be44fc2005-08-05 00:44:28 -0400473 eisa_set_level_irq(gsi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 }
475#endif
476
477#ifdef CONFIG_X86_IO_APIC
478 if (acpi_irq_model == ACPI_IRQ_MODEL_IOAPIC) {
Yinghai Lue5198072009-05-15 13:05:16 -0700479 plat_gsi = mp_register_gsi(dev, gsi, trigger, polarity);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 }
481#endif
Yinghai Lu18dce6b2010-02-10 01:20:05 -0800482 irq = plat_gsi;
483
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 return irq;
485}
Len Brown4be44fc2005-08-05 00:44:28 -0400486
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487/*
488 * ACPI based hotplug support for CPU
489 */
490#ifdef CONFIG_ACPI_HOTPLUG_CPU
Sam Ravnborg009cbad2008-02-01 17:49:42 +0100491
492static int __cpuinit _acpi_map_lsapic(acpi_handle handle, int *pcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493{
Ashok Raj73fea172006-09-26 10:52:35 +0200494 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
495 union acpi_object *obj;
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300496 struct acpi_madt_local_apic *lapic;
Rusty Russellee943a82008-12-31 18:08:47 -0800497 cpumask_var_t tmp_map, new_map;
Ashok Raj73fea172006-09-26 10:52:35 +0200498 u8 physid;
499 int cpu;
Rusty Russellee943a82008-12-31 18:08:47 -0800500 int retval = -ENOMEM;
Ashok Raj73fea172006-09-26 10:52:35 +0200501
502 if (ACPI_FAILURE(acpi_evaluate_object(handle, "_MAT", NULL, &buffer)))
503 return -EINVAL;
504
505 if (!buffer.length || !buffer.pointer)
506 return -EINVAL;
507
508 obj = buffer.pointer;
509 if (obj->type != ACPI_TYPE_BUFFER ||
510 obj->buffer.length < sizeof(*lapic)) {
511 kfree(buffer.pointer);
512 return -EINVAL;
513 }
514
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300515 lapic = (struct acpi_madt_local_apic *)obj->buffer.pointer;
Ashok Raj73fea172006-09-26 10:52:35 +0200516
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300517 if (lapic->header.type != ACPI_MADT_TYPE_LOCAL_APIC ||
518 !(lapic->lapic_flags & ACPI_MADT_ENABLED)) {
Ashok Raj73fea172006-09-26 10:52:35 +0200519 kfree(buffer.pointer);
520 return -EINVAL;
521 }
522
523 physid = lapic->id;
524
525 kfree(buffer.pointer);
526 buffer.length = ACPI_ALLOCATE_BUFFER;
527 buffer.pointer = NULL;
528
Rusty Russellee943a82008-12-31 18:08:47 -0800529 if (!alloc_cpumask_var(&tmp_map, GFP_KERNEL))
530 goto out;
531
532 if (!alloc_cpumask_var(&new_map, GFP_KERNEL))
533 goto free_tmp_map;
534
535 cpumask_copy(tmp_map, cpu_present_mask);
Alexey Starikovskiydfac2182008-04-04 23:41:50 +0400536 acpi_register_lapic(physid, lapic->lapic_flags & ACPI_MADT_ENABLED);
Ashok Raj73fea172006-09-26 10:52:35 +0200537
538 /*
539 * If mp_register_lapic successfully generates a new logical cpu
540 * number, then the following will get us exactly what was mapped
541 */
Rusty Russellee943a82008-12-31 18:08:47 -0800542 cpumask_andnot(new_map, cpu_present_mask, tmp_map);
543 if (cpumask_empty(new_map)) {
Ashok Raj73fea172006-09-26 10:52:35 +0200544 printk ("Unable to map lapic to logical cpu number\n");
Rusty Russellee943a82008-12-31 18:08:47 -0800545 retval = -EINVAL;
546 goto free_new_map;
Ashok Raj73fea172006-09-26 10:52:35 +0200547 }
548
Rusty Russellee943a82008-12-31 18:08:47 -0800549 cpu = cpumask_first(new_map);
Ashok Raj73fea172006-09-26 10:52:35 +0200550
551 *pcpu = cpu;
Rusty Russellee943a82008-12-31 18:08:47 -0800552 retval = 0;
553
554free_new_map:
555 free_cpumask_var(new_map);
556free_tmp_map:
557 free_cpumask_var(tmp_map);
558out:
559 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560}
Len Brown4be44fc2005-08-05 00:44:28 -0400561
Sam Ravnborg009cbad2008-02-01 17:49:42 +0100562/* wrapper to silence section mismatch warning */
563int __ref acpi_map_lsapic(acpi_handle handle, int *pcpu)
564{
565 return _acpi_map_lsapic(handle, pcpu);
566}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567EXPORT_SYMBOL(acpi_map_lsapic);
568
Len Brown4be44fc2005-08-05 00:44:28 -0400569int acpi_unmap_lsapic(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570{
Mike Travis71fff5e2007-10-19 20:35:03 +0200571 per_cpu(x86_cpu_to_apicid, cpu) = -1;
Mike Travis96289372008-12-31 18:08:46 -0800572 set_cpu_present(cpu, false);
Ashok Raj73fea172006-09-26 10:52:35 +0200573 num_processors--;
574
575 return (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576}
Len Brown4be44fc2005-08-05 00:44:28 -0400577
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578EXPORT_SYMBOL(acpi_unmap_lsapic);
Len Brown4be44fc2005-08-05 00:44:28 -0400579#endif /* CONFIG_ACPI_HOTPLUG_CPU */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Len Brown4be44fc2005-08-05 00:44:28 -0400581int acpi_register_ioapic(acpi_handle handle, u64 phys_addr, u32 gsi_base)
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700582{
583 /* TBD */
584 return -EINVAL;
585}
Len Brown4be44fc2005-08-05 00:44:28 -0400586
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700587EXPORT_SYMBOL(acpi_register_ioapic);
588
Len Brown4be44fc2005-08-05 00:44:28 -0400589int acpi_unregister_ioapic(acpi_handle handle, u32 gsi_base)
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700590{
591 /* TBD */
592 return -EINVAL;
593}
Len Brown4be44fc2005-08-05 00:44:28 -0400594
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700595EXPORT_SYMBOL(acpi_unregister_ioapic);
596
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300597static int __init acpi_parse_sbf(struct acpi_table_header *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598{
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300599 struct acpi_table_boot *sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300601 sb = (struct acpi_table_boot *)table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 if (!sb) {
603 printk(KERN_WARNING PREFIX "Unable to map SBF\n");
604 return -ENODEV;
605 }
606
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300607 sbf_port = sb->cmos_index; /* Save CMOS port */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
609 return 0;
610}
611
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612#ifdef CONFIG_HPET_TIMER
john stultz2d0c87c2007-02-16 01:28:18 -0800613#include <asm/hpet.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
Aaron Durbina1dfd852007-07-21 17:11:39 +0200615static struct __initdata resource *hpet_res;
616
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300617static int __init acpi_parse_hpet(struct acpi_table_header *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618{
619 struct acpi_table_hpet *hpet_tbl;
620
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300621 hpet_tbl = (struct acpi_table_hpet *)table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 if (!hpet_tbl) {
623 printk(KERN_WARNING PREFIX "Unable to map HPET\n");
624 return -ENODEV;
625 }
626
Alexey Starikovskiyad363f82007-02-02 19:48:22 +0300627 if (hpet_tbl->address.space_id != ACPI_SPACE_MEM) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 printk(KERN_WARNING PREFIX "HPET timers must be located in "
629 "memory.\n");
630 return -1;
631 }
adurbin@google.comf0f4c342006-09-26 10:52:39 +0200632
john stultz2d0c87c2007-02-16 01:28:18 -0800633 hpet_address = hpet_tbl->address.address;
Suresh Siddhac8bc6f32009-08-04 12:07:09 -0700634 hpet_blockid = hpet_tbl->sequence;
Thomas Gleixnerf4df73c2007-11-15 21:41:50 -0500635
636 /*
637 * Some broken BIOSes advertise HPET at 0x0. We really do not
638 * want to allocate a resource there.
639 */
640 if (!hpet_address) {
641 printk(KERN_WARNING PREFIX
642 "HPET id: %#x base: %#lx is invalid\n",
643 hpet_tbl->id, hpet_address);
644 return 0;
645 }
646#ifdef CONFIG_X86_64
647 /*
648 * Some even more broken BIOSes advertise HPET at
649 * 0xfed0000000000000 instead of 0xfed00000. Fix it up and add
650 * some noise:
651 */
652 if (hpet_address == 0xfed0000000000000UL) {
653 if (!hpet_force_user) {
654 printk(KERN_WARNING PREFIX "HPET id: %#x "
655 "base: 0xfed0000000000000 is bogus\n "
656 "try hpet=force on the kernel command line to "
657 "fix it up to 0xfed00000.\n", hpet_tbl->id);
658 hpet_address = 0;
659 return 0;
660 }
661 printk(KERN_WARNING PREFIX
662 "HPET id: %#x base: 0xfed0000000000000 fixed up "
663 "to 0xfed00000.\n", hpet_tbl->id);
664 hpet_address >>= 32;
665 }
666#endif
Len Brown4be44fc2005-08-05 00:44:28 -0400667 printk(KERN_INFO PREFIX "HPET id: %#x base: %#lx\n",
john stultz2d0c87c2007-02-16 01:28:18 -0800668 hpet_tbl->id, hpet_address);
adurbin@google.comf0f4c342006-09-26 10:52:39 +0200669
Aaron Durbina1dfd852007-07-21 17:11:39 +0200670 /*
671 * Allocate and initialize the HPET firmware resource for adding into
672 * the resource tree during the lateinit timeframe.
673 */
674#define HPET_RESOURCE_NAME_SIZE 9
675 hpet_res = alloc_bootmem(sizeof(*hpet_res) + HPET_RESOURCE_NAME_SIZE);
676
Aaron Durbina1dfd852007-07-21 17:11:39 +0200677 hpet_res->name = (void *)&hpet_res[1];
678 hpet_res->flags = IORESOURCE_MEM;
679 snprintf((char *)hpet_res->name, HPET_RESOURCE_NAME_SIZE, "HPET %u",
680 hpet_tbl->sequence);
681
682 hpet_res->start = hpet_address;
683 hpet_res->end = hpet_address + (1 * 1024) - 1;
684
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 return 0;
686}
Aaron Durbina1dfd852007-07-21 17:11:39 +0200687
688/*
689 * hpet_insert_resource inserts the HPET resources used into the resource
690 * tree.
691 */
692static __init int hpet_insert_resource(void)
693{
694 if (!hpet_res)
695 return 1;
696
697 return insert_resource(&iomem_resource, hpet_res);
698}
699
700late_initcall(hpet_insert_resource);
701
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702#else
703#define acpi_parse_hpet NULL
704#endif
705
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300706static int __init acpi_parse_fadt(struct acpi_table_header *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707{
Jason Davis90660ec2005-04-16 15:24:53 -0700708
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709#ifdef CONFIG_X86_PM_TIMER
710 /* detect the location of the ACPI PM Timer */
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300711 if (acpi_gbl_FADT.header.revision >= FADT2_REVISION_ID) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 /* FADT rev. 2 */
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300713 if (acpi_gbl_FADT.xpm_timer_block.space_id !=
Len Brown4be44fc2005-08-05 00:44:28 -0400714 ACPI_ADR_SPACE_SYSTEM_IO)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 return 0;
716
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300717 pmtmr_ioport = acpi_gbl_FADT.xpm_timer_block.address;
David Shaohua Lie6e87b42005-09-21 01:35:00 -0400718 /*
719 * "X" fields are optional extensions to the original V1.0
720 * fields, so we must selectively expand V1.0 fields if the
721 * corresponding X field is zero.
722 */
723 if (!pmtmr_ioport)
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300724 pmtmr_ioport = acpi_gbl_FADT.pm_timer_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 } else {
726 /* FADT rev. 1 */
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300727 pmtmr_ioport = acpi_gbl_FADT.pm_timer_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 }
729 if (pmtmr_ioport)
Len Brown4be44fc2005-08-05 00:44:28 -0400730 printk(KERN_INFO PREFIX "PM-Timer IO Port: %#x\n",
731 pmtmr_ioport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732#endif
733 return 0;
734}
735
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736#ifdef CONFIG_X86_LOCAL_APIC
737/*
738 * Parse LAPIC entries in MADT
739 * returns 0 on success, < 0 on error
740 */
Alexey Starikovskiy31d20922008-04-04 23:41:57 +0400741
742static void __init acpi_register_lapic_address(unsigned long address)
743{
744 mp_lapic_addr = address;
745
746 set_fixmap_nocache(FIX_APIC_BASE, address);
Yinghai Lufb3bbd62008-05-22 18:22:30 -0700747 if (boot_cpu_physical_apicid == -1U) {
Yinghai Lu4c9961d2008-07-11 18:44:16 -0700748 boot_cpu_physical_apicid = read_apic_id();
Yinghai Lufb3bbd62008-05-22 18:22:30 -0700749 apic_version[boot_cpu_physical_apicid] =
750 GET_APIC_VERSION(apic_read(APIC_LVR));
Yinghai Lufb3bbd62008-05-22 18:22:30 -0700751 }
Alexey Starikovskiy31d20922008-04-04 23:41:57 +0400752}
753
Yinghai Lucbf9bd62008-02-19 03:21:06 -0800754static int __init early_acpi_parse_madt_lapic_addr_ovr(void)
755{
756 int count;
757
758 if (!cpu_has_apic)
759 return -ENODEV;
760
761 /*
762 * Note that the LAPIC address is obtained from the MADT (32-bit value)
763 * and (optionally) overriden by a LAPIC_ADDR_OVR entry (64-bit value).
764 */
765
766 count =
767 acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_APIC_OVERRIDE,
768 acpi_parse_lapic_addr_ovr, 0);
769 if (count < 0) {
770 printk(KERN_ERR PREFIX
771 "Error parsing LAPIC address override entry\n");
772 return count;
773 }
774
775 acpi_register_lapic_address(acpi_lapic_addr);
776
777 return count;
778}
779
Len Brown4be44fc2005-08-05 00:44:28 -0400780static int __init acpi_parse_madt_lapic_entries(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781{
782 int count;
Suresh Siddha7237d3d2009-03-30 13:55:30 -0800783 int x2count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
Andi Kleen0fcd2702006-04-11 12:54:36 +0200785 if (!cpu_has_apic)
786 return -ENODEV;
787
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300788 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 * Note that the LAPIC address is obtained from the MADT (32-bit value)
790 * and (optionally) overriden by a LAPIC_ADDR_OVR entry (64-bit value).
791 */
792
Len Brown4be44fc2005-08-05 00:44:28 -0400793 count =
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300794 acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_APIC_OVERRIDE,
Len Brown4be44fc2005-08-05 00:44:28 -0400795 acpi_parse_lapic_addr_ovr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 if (count < 0) {
Len Brown4be44fc2005-08-05 00:44:28 -0400797 printk(KERN_ERR PREFIX
798 "Error parsing LAPIC address override entry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 return count;
800 }
801
Alexey Starikovskiy31d20922008-04-04 23:41:57 +0400802 acpi_register_lapic_address(acpi_lapic_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
Jack Steinerac049c12008-03-28 14:12:09 -0500804 count = acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_SAPIC,
805 acpi_parse_sapic, MAX_APICS);
806
Suresh Siddha7237d3d2009-03-30 13:55:30 -0800807 if (!count) {
808 x2count = acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_X2APIC,
809 acpi_parse_x2apic, MAX_APICS);
Jack Steinerac049c12008-03-28 14:12:09 -0500810 count = acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_APIC,
811 acpi_parse_lapic, MAX_APICS);
Suresh Siddha7237d3d2009-03-30 13:55:30 -0800812 }
813 if (!count && !x2count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 printk(KERN_ERR PREFIX "No LAPIC entries present\n");
815 /* TBD: Cleanup to allow fallback to MPS */
816 return -ENODEV;
Suresh Siddha7237d3d2009-03-30 13:55:30 -0800817 } else if (count < 0 || x2count < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 printk(KERN_ERR PREFIX "Error parsing LAPIC entry\n");
819 /* TBD: Cleanup to allow fallback to MPS */
820 return count;
821 }
822
Suresh Siddha7237d3d2009-03-30 13:55:30 -0800823 x2count =
824 acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_X2APIC_NMI,
825 acpi_parse_x2apic_nmi, 0);
Len Brown4be44fc2005-08-05 00:44:28 -0400826 count =
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300827 acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_APIC_NMI, acpi_parse_lapic_nmi, 0);
Suresh Siddha7237d3d2009-03-30 13:55:30 -0800828 if (count < 0 || x2count < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 printk(KERN_ERR PREFIX "Error parsing LAPIC NMI entry\n");
830 /* TBD: Cleanup to allow fallback to MPS */
831 return count;
832 }
833 return 0;
834}
Len Brown4be44fc2005-08-05 00:44:28 -0400835#endif /* CONFIG_X86_LOCAL_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
Len Brown84663612005-08-24 12:09:07 -0400837#ifdef CONFIG_X86_IO_APIC
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400838#define MP_ISA_BUS 0
839
Yinghai Lud49c4282008-06-08 18:31:54 -0700840#ifdef CONFIG_X86_ES7000
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400841extern int es7000_plat;
842#endif
843
Yinghai Lu3f4a7392009-02-08 16:18:03 -0800844int __init acpi_probe_gsi(void)
845{
846 int idx;
847 int gsi;
848 int max_gsi = 0;
849
850 if (acpi_disabled)
851 return 0;
852
853 if (!acpi_ioapic)
854 return 0;
855
856 max_gsi = 0;
857 for (idx = 0; idx < nr_ioapics; idx++) {
Feng Tang2a4ab642009-07-07 23:01:15 -0400858 gsi = mp_gsi_routing[idx].gsi_end;
Yinghai Lu3f4a7392009-02-08 16:18:03 -0800859
860 if (gsi > max_gsi)
861 max_gsi = gsi;
862 }
863
864 return max_gsi + 1;
865}
866
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530867static void assign_to_mp_irq(struct mpc_intsrc *m,
868 struct mpc_intsrc *mp_irq)
Yinghai Lufcfa1462008-06-18 17:29:31 -0700869{
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530870 memcpy(mp_irq, m, sizeof(struct mpc_intsrc));
Yinghai Lufcfa1462008-06-18 17:29:31 -0700871}
872
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530873static int mp_irq_cmp(struct mpc_intsrc *mp_irq,
874 struct mpc_intsrc *m)
Yinghai Lufcfa1462008-06-18 17:29:31 -0700875{
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530876 return memcmp(mp_irq, m, sizeof(struct mpc_intsrc));
Yinghai Lufcfa1462008-06-18 17:29:31 -0700877}
878
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530879static void save_mp_irq(struct mpc_intsrc *m)
Yinghai Lufcfa1462008-06-18 17:29:31 -0700880{
881 int i;
882
883 for (i = 0; i < mp_irq_entries; i++) {
884 if (!mp_irq_cmp(&mp_irqs[i], m))
885 return;
886 }
887
888 assign_to_mp_irq(m, &mp_irqs[mp_irq_entries]);
889 if (++mp_irq_entries == MAX_IRQ_SOURCES)
890 panic("Max # of irq sources exceeded!!\n");
891}
892
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400893void __init mp_override_legacy_irq(u8 bus_irq, u8 polarity, u8 trigger, u32 gsi)
894{
Yinghai Lu6df88092008-06-15 18:19:46 -0700895 int ioapic;
896 int pin;
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530897 struct mpc_intsrc mp_irq;
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400898
899 /*
900 * Convert 'gsi' to 'ioapic.pin'.
901 */
902 ioapic = mp_find_ioapic(gsi);
903 if (ioapic < 0)
904 return;
Jeremy Fitzhardingec3e137d2009-02-09 12:05:47 -0800905 pin = mp_find_ioapic_pin(ioapic, gsi);
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400906
907 /*
908 * TBD: This check is for faulty timer entries, where the override
909 * erroneously sets the trigger to level, resulting in a HUGE
910 * increase of timer interrupts!
911 */
912 if ((bus_irq == 0) && (trigger == 3))
913 trigger = 1;
914
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530915 mp_irq.type = MP_INTSRC;
916 mp_irq.irqtype = mp_INT;
917 mp_irq.irqflag = (trigger << 2) | polarity;
918 mp_irq.srcbus = MP_ISA_BUS;
919 mp_irq.srcbusirq = bus_irq; /* IRQ */
920 mp_irq.dstapic = mp_ioapics[ioapic].apicid; /* APIC ID */
921 mp_irq.dstirq = pin; /* INTIN# */
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400922
Yinghai Lufcfa1462008-06-18 17:29:31 -0700923 save_mp_irq(&mp_irq);
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400924}
925
926void __init mp_config_acpi_legacy_irqs(void)
927{
Yinghai Lu6df88092008-06-15 18:19:46 -0700928 int i;
929 int ioapic;
930 unsigned int dstapic;
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530931 struct mpc_intsrc mp_irq;
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400932
933#if defined (CONFIG_MCA) || defined (CONFIG_EISA)
934 /*
935 * Fabricate the legacy ISA bus (bus #31).
936 */
937 mp_bus_id_to_type[MP_ISA_BUS] = MP_BUS_ISA;
938#endif
939 set_bit(MP_ISA_BUS, mp_bus_not_pci);
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200940 pr_debug("Bus #%d is ISA\n", MP_ISA_BUS);
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400941
Yinghai Lud49c4282008-06-08 18:31:54 -0700942#ifdef CONFIG_X86_ES7000
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400943 /*
944 * Older generations of ES7000 have no legacy identity mappings
945 */
946 if (es7000_plat == 1)
947 return;
948#endif
949
950 /*
951 * Locate the IOAPIC that manages the ISA IRQs (0-15).
952 */
953 ioapic = mp_find_ioapic(0);
954 if (ioapic < 0)
955 return;
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +0530956 dstapic = mp_ioapics[ioapic].apicid;
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400957
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400958 /*
959 * Use the default configuration for the IRQs 0-15. Unless
960 * overridden by (MADT) interrupt source override entries.
961 */
962 for (i = 0; i < 16; i++) {
963 int idx;
964
965 for (idx = 0; idx < mp_irq_entries; idx++) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530966 struct mpc_intsrc *irq = mp_irqs + idx;
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400967
968 /* Do we already have a mapping for this ISA IRQ? */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530969 if (irq->srcbus == MP_ISA_BUS && irq->srcbusirq == i)
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400970 break;
971
972 /* Do we already have a mapping for this IOAPIC pin */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530973 if (irq->dstapic == dstapic && irq->dstirq == i)
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400974 break;
975 }
976
977 if (idx != mp_irq_entries) {
978 printk(KERN_DEBUG "ACPI: IRQ%d used by override.\n", i);
979 continue; /* IRQ already used */
980 }
981
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530982 mp_irq.type = MP_INTSRC;
983 mp_irq.irqflag = 0; /* Conforming */
984 mp_irq.srcbus = MP_ISA_BUS;
985 mp_irq.dstapic = dstapic;
986 mp_irq.irqtype = mp_INT;
987 mp_irq.srcbusirq = i; /* Identity mapped */
988 mp_irq.dstirq = i;
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400989
Yinghai Lufcfa1462008-06-18 17:29:31 -0700990 save_mp_irq(&mp_irq);
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400991 }
992}
993
Yinghai Lue5198072009-05-15 13:05:16 -0700994static int mp_config_acpi_gsi(struct device *dev, u32 gsi, int trigger,
Yinghai Lua31f8202009-05-06 10:06:15 -0700995 int polarity)
996{
997#ifdef CONFIG_X86_MPPARSE
998 struct mpc_intsrc mp_irq;
999 struct pci_dev *pdev;
1000 unsigned char number;
1001 unsigned int devfn;
1002 int ioapic;
1003 u8 pin;
1004
1005 if (!acpi_ioapic)
1006 return 0;
1007 if (!dev)
1008 return 0;
1009 if (dev->bus != &pci_bus_type)
1010 return 0;
1011
1012 pdev = to_pci_dev(dev);
1013 number = pdev->bus->number;
1014 devfn = pdev->devfn;
1015 pin = pdev->pin;
1016 /* print the entry should happen on mptable identically */
1017 mp_irq.type = MP_INTSRC;
1018 mp_irq.irqtype = mp_INT;
Yinghai Lue5198072009-05-15 13:05:16 -07001019 mp_irq.irqflag = (trigger == ACPI_EDGE_SENSITIVE ? 4 : 0x0c) |
Yinghai Lua31f8202009-05-06 10:06:15 -07001020 (polarity == ACPI_ACTIVE_HIGH ? 1 : 3);
1021 mp_irq.srcbus = number;
1022 mp_irq.srcbusirq = (((devfn >> 3) & 0x1f) << 2) | ((pin - 1) & 3);
1023 ioapic = mp_find_ioapic(gsi);
Yinghai Lubdfe8ac2009-05-06 10:07:41 -07001024 mp_irq.dstapic = mp_ioapics[ioapic].apicid;
Yinghai Lua31f8202009-05-06 10:06:15 -07001025 mp_irq.dstirq = mp_find_ioapic_pin(ioapic, gsi);
1026
1027 save_mp_irq(&mp_irq);
1028#endif
1029 return 0;
1030}
1031
Yinghai Lue5198072009-05-15 13:05:16 -07001032int mp_register_gsi(struct device *dev, u32 gsi, int trigger, int polarity)
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001033{
1034 int ioapic;
1035 int ioapic_pin;
Yinghai Lue5198072009-05-15 13:05:16 -07001036 struct io_apic_irq_attr irq_attr;
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001037
1038 if (acpi_irq_model != ACPI_IRQ_MODEL_IOAPIC)
1039 return gsi;
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001040
1041 /* Don't set up the ACPI SCI because it's already set up */
1042 if (acpi_gbl_FADT.sci_interrupt == gsi)
1043 return gsi;
1044
1045 ioapic = mp_find_ioapic(gsi);
1046 if (ioapic < 0) {
1047 printk(KERN_WARNING "No IOAPIC for GSI %u\n", gsi);
1048 return gsi;
1049 }
1050
Jeremy Fitzhardingec3e137d2009-02-09 12:05:47 -08001051 ioapic_pin = mp_find_ioapic_pin(ioapic, gsi);
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001052
1053#ifdef CONFIG_X86_32
1054 if (ioapic_renumber_irq)
1055 gsi = ioapic_renumber_irq(ioapic, gsi);
1056#endif
1057
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001058 if (ioapic_pin > MP_MAX_IOAPIC_PIN) {
1059 printk(KERN_ERR "Invalid reference to IOAPIC pin "
Yinghai Lubdfe8ac2009-05-06 10:07:41 -07001060 "%d-%d\n", mp_ioapics[ioapic].apicid,
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001061 ioapic_pin);
1062 return gsi;
1063 }
Yinghai Luf1bdb522009-05-15 13:05:16 -07001064
1065 if (enable_update_mptable)
1066 mp_config_acpi_gsi(dev, gsi, trigger, polarity);
Yinghai Lub9e03532009-05-06 10:05:32 -07001067
Yinghai Lue5198072009-05-15 13:05:16 -07001068 set_io_apic_irq_attr(&irq_attr, ioapic, ioapic_pin,
1069 trigger == ACPI_EDGE_SENSITIVE ? 0 : 1,
1070 polarity == ACPI_ACTIVE_HIGH ? 0 : 1);
1071 io_apic_set_pci_routing(dev, gsi, &irq_attr);
Yinghai Lub9e03532009-05-06 10:05:32 -07001072
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001073 return gsi;
1074}
1075
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076/*
1077 * Parse IOAPIC related entries in MADT
1078 * returns 0 on success, < 0 on error
1079 */
Len Brown4be44fc2005-08-05 00:44:28 -04001080static int __init acpi_parse_madt_ioapic_entries(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081{
1082 int count;
1083
1084 /*
1085 * ACPI interpreter is required to complete interrupt setup,
1086 * so if it is off, don't enumerate the io-apics with ACPI.
1087 * If MPS is present, it will handle them,
1088 * otherwise the system will stay in PIC mode
1089 */
Jeremy Fitzhardinge6b2b1712009-06-08 02:53:50 -07001090 if (acpi_disabled || acpi_noirq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001093 if (!cpu_has_apic)
Andi Kleend3b6a342006-04-07 19:49:39 +02001094 return -ENODEV;
1095
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 /*
Len Brown4be44fc2005-08-05 00:44:28 -04001097 * if "noapic" boot option, don't look for IO-APICs
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 */
1099 if (skip_ioapic_setup) {
1100 printk(KERN_INFO PREFIX "Skipping IOAPIC probe "
Len Brown4be44fc2005-08-05 00:44:28 -04001101 "due to 'noapic' option.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 return -ENODEV;
1103 }
1104
Len Brown4be44fc2005-08-05 00:44:28 -04001105 count =
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001106 acpi_table_parse_madt(ACPI_MADT_TYPE_IO_APIC, acpi_parse_ioapic,
Len Brown4be44fc2005-08-05 00:44:28 -04001107 MAX_IO_APICS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 if (!count) {
1109 printk(KERN_ERR PREFIX "No IOAPIC entries present\n");
1110 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -04001111 } else if (count < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 printk(KERN_ERR PREFIX "Error parsing IOAPIC entry\n");
1113 return count;
1114 }
1115
Len Brown4be44fc2005-08-05 00:44:28 -04001116 count =
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001117 acpi_table_parse_madt(ACPI_MADT_TYPE_INTERRUPT_OVERRIDE, acpi_parse_int_src_ovr,
Yinghai Lu71f521b2008-08-19 20:50:03 -07001118 nr_irqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 if (count < 0) {
Len Brown4be44fc2005-08-05 00:44:28 -04001120 printk(KERN_ERR PREFIX
1121 "Error parsing interrupt source overrides entry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 /* TBD: Cleanup to allow fallback to MPS */
1123 return count;
1124 }
1125
1126 /*
1127 * If BIOS did not supply an INT_SRC_OVR for the SCI
1128 * pretend we got one so we can set the SCI flags.
1129 */
1130 if (!acpi_sci_override_gsi)
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001131 acpi_sci_ioapic_setup(acpi_gbl_FADT.sci_interrupt, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001133 /* Fill in identity legacy mappings where no override */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 mp_config_acpi_legacy_irqs();
1135
Len Brown4be44fc2005-08-05 00:44:28 -04001136 count =
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001137 acpi_table_parse_madt(ACPI_MADT_TYPE_NMI_SOURCE, acpi_parse_nmi_src,
Yinghai Lu71f521b2008-08-19 20:50:03 -07001138 nr_irqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 if (count < 0) {
1140 printk(KERN_ERR PREFIX "Error parsing NMI SRC entry\n");
1141 /* TBD: Cleanup to allow fallback to MPS */
1142 return count;
1143 }
1144
1145 return 0;
1146}
1147#else
1148static inline int acpi_parse_madt_ioapic_entries(void)
1149{
1150 return -1;
1151}
Len Brown84663612005-08-24 12:09:07 -04001152#endif /* !CONFIG_X86_IO_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
Yinghai Lucbf9bd62008-02-19 03:21:06 -08001154static void __init early_acpi_process_madt(void)
1155{
1156#ifdef CONFIG_X86_LOCAL_APIC
1157 int error;
1158
1159 if (!acpi_table_parse(ACPI_SIG_MADT, acpi_parse_madt)) {
1160
1161 /*
1162 * Parse MADT LAPIC entries
1163 */
1164 error = early_acpi_parse_madt_lapic_addr_ovr();
1165 if (!error) {
1166 acpi_lapic = 1;
1167 smp_found_config = 1;
1168 }
1169 if (error == -EINVAL) {
1170 /*
1171 * Dell Precision Workstation 410, 610 come here.
1172 */
1173 printk(KERN_ERR PREFIX
1174 "Invalid BIOS MADT, disabling ACPI\n");
1175 disable_acpi();
1176 }
1177 }
1178#endif
1179}
1180
Len Brown4be44fc2005-08-05 00:44:28 -04001181static void __init acpi_process_madt(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182{
1183#ifdef CONFIG_X86_LOCAL_APIC
Len Brown7f8f97c2007-02-10 21:28:03 -05001184 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
Len Brown7f8f97c2007-02-10 21:28:03 -05001186 if (!acpi_table_parse(ACPI_SIG_MADT, acpi_parse_madt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
1188 /*
1189 * Parse MADT LAPIC entries
1190 */
1191 error = acpi_parse_madt_lapic_entries();
1192 if (!error) {
1193 acpi_lapic = 1;
1194
1195 /*
1196 * Parse MADT IO-APIC entries
1197 */
1198 error = acpi_parse_madt_ioapic_entries();
1199 if (!error) {
1200 acpi_irq_model = ACPI_IRQ_MODEL_IOAPIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 acpi_ioapic = 1;
1202
1203 smp_found_config = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 }
1205 }
1206 if (error == -EINVAL) {
1207 /*
1208 * Dell Precision Workstation 410, 610 come here.
1209 */
Len Brown4be44fc2005-08-05 00:44:28 -04001210 printk(KERN_ERR PREFIX
1211 "Invalid BIOS MADT, disabling ACPI\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 disable_acpi();
1213 }
Len Brown7b37b5f2008-12-23 01:47:42 -05001214 } else {
1215 /*
1216 * ACPI found no MADT, and so ACPI wants UP PIC mode.
1217 * In the event an MPS table was found, forget it.
1218 * Boot with "acpi=off" to use MPS on such a system.
1219 */
1220 if (smp_found_config) {
1221 printk(KERN_WARNING PREFIX
1222 "No APIC-table, disabling MPS\n");
1223 smp_found_config = 0;
1224 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 }
Yinghai Lu69b88af2008-12-05 22:45:50 -08001226
1227 /*
1228 * ACPI supports both logical (e.g. Hyper-Threading) and physical
1229 * processors, where MPS only supports physical.
1230 */
1231 if (acpi_lapic && acpi_ioapic)
1232 printk(KERN_INFO "Using ACPI (MADT) for SMP configuration "
1233 "information\n");
1234 else if (acpi_lapic)
1235 printk(KERN_INFO "Using ACPI for processor (LAPIC) "
1236 "configuration information\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237#endif
1238 return;
1239}
1240
Jeff Garzik18552562007-10-03 15:15:40 -04001241static int __init disable_acpi_irq(const struct dmi_system_id *d)
Andrey Paninaea00142005-06-25 14:54:42 -07001242{
1243 if (!acpi_force) {
1244 printk(KERN_NOTICE "%s detected: force use of acpi=noirq\n",
1245 d->ident);
1246 acpi_noirq_set();
1247 }
1248 return 0;
1249}
1250
Jeff Garzik18552562007-10-03 15:15:40 -04001251static int __init disable_acpi_pci(const struct dmi_system_id *d)
Andrey Paninaea00142005-06-25 14:54:42 -07001252{
1253 if (!acpi_force) {
1254 printk(KERN_NOTICE "%s detected: force use of pci=noacpi\n",
1255 d->ident);
1256 acpi_disable_pci();
1257 }
1258 return 0;
1259}
Andrey Paninaea00142005-06-25 14:54:42 -07001260
Jeff Garzik18552562007-10-03 15:15:40 -04001261static int __init dmi_disable_acpi(const struct dmi_system_id *d)
Andrey Paninaea00142005-06-25 14:54:42 -07001262{
1263 if (!acpi_force) {
Len Brown4be44fc2005-08-05 00:44:28 -04001264 printk(KERN_NOTICE "%s detected: acpi off\n", d->ident);
Andrey Paninaea00142005-06-25 14:54:42 -07001265 disable_acpi();
1266 } else {
1267 printk(KERN_NOTICE
1268 "Warning: DMI blacklist says broken, but acpi forced\n");
1269 }
1270 return 0;
1271}
1272
1273/*
1274 * Limit ACPI to CPU enumeration for HT
1275 */
Jeff Garzik18552562007-10-03 15:15:40 -04001276static int __init force_acpi_ht(const struct dmi_system_id *d)
Andrey Paninaea00142005-06-25 14:54:42 -07001277{
1278 if (!acpi_force) {
Len Brown4be44fc2005-08-05 00:44:28 -04001279 printk(KERN_NOTICE "%s detected: force use of acpi=ht\n",
1280 d->ident);
Andrey Paninaea00142005-06-25 14:54:42 -07001281 disable_acpi();
1282 acpi_ht = 1;
1283 } else {
1284 printk(KERN_NOTICE
1285 "Warning: acpi=force overrules DMI blacklist: acpi=ht\n");
1286 }
1287 return 0;
1288}
1289
1290/*
Rafael J. Wysockie2079c42008-07-08 16:12:26 +02001291 * Force ignoring BIOS IRQ0 pin2 override
1292 */
1293static int __init dmi_ignore_irq0_timer_override(const struct dmi_system_id *d)
1294{
Ingo Molnar8d89adf2008-10-07 06:47:52 +02001295 /*
1296 * The ati_ixp4x0_rev() early PCI quirk should have set
1297 * the acpi_skip_timer_override flag already:
1298 */
1299 if (!acpi_skip_timer_override) {
1300 WARN(1, KERN_ERR "ati_ixp4x0 quirk not complete.\n");
1301 pr_notice("%s detected: Ignoring BIOS IRQ0 pin2 override\n",
1302 d->ident);
1303 acpi_skip_timer_override = 1;
1304 }
Rafael J. Wysockie2079c42008-07-08 16:12:26 +02001305 return 0;
1306}
1307
1308/*
Andrey Paninaea00142005-06-25 14:54:42 -07001309 * If your system is blacklisted here, but you find that acpi=force
Zhang Rui5b4c0b62009-04-01 01:49:42 -04001310 * works for you, please contact linux-acpi@vger.kernel.org
Andrey Paninaea00142005-06-25 14:54:42 -07001311 */
1312static struct dmi_system_id __initdata acpi_dmi_table[] = {
1313 /*
1314 * Boxes that need ACPI disabled
1315 */
1316 {
Len Brown4be44fc2005-08-05 00:44:28 -04001317 .callback = dmi_disable_acpi,
1318 .ident = "IBM Thinkpad",
1319 .matches = {
1320 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1321 DMI_MATCH(DMI_BOARD_NAME, "2629H1G"),
1322 },
1323 },
Andrey Paninaea00142005-06-25 14:54:42 -07001324
1325 /*
1326 * Boxes that need acpi=ht
1327 */
1328 {
Len Brown4be44fc2005-08-05 00:44:28 -04001329 .callback = force_acpi_ht,
1330 .ident = "FSC Primergy T850",
1331 .matches = {
1332 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
1333 DMI_MATCH(DMI_PRODUCT_NAME, "PRIMERGY T850"),
1334 },
1335 },
Andrey Paninaea00142005-06-25 14:54:42 -07001336 {
Len Brown4be44fc2005-08-05 00:44:28 -04001337 .callback = force_acpi_ht,
Len Brown4be44fc2005-08-05 00:44:28 -04001338 .ident = "HP VISUALIZE NT Workstation",
1339 .matches = {
1340 DMI_MATCH(DMI_BOARD_VENDOR, "Hewlett-Packard"),
1341 DMI_MATCH(DMI_PRODUCT_NAME, "HP VISUALIZE NT Workstation"),
1342 },
1343 },
Andrey Paninaea00142005-06-25 14:54:42 -07001344 {
Len Brown4be44fc2005-08-05 00:44:28 -04001345 .callback = force_acpi_ht,
1346 .ident = "Compaq Workstation W8000",
1347 .matches = {
1348 DMI_MATCH(DMI_SYS_VENDOR, "Compaq"),
1349 DMI_MATCH(DMI_PRODUCT_NAME, "Workstation W8000"),
1350 },
1351 },
Andrey Paninaea00142005-06-25 14:54:42 -07001352 {
Len Brown4be44fc2005-08-05 00:44:28 -04001353 .callback = force_acpi_ht,
Len Brown4be44fc2005-08-05 00:44:28 -04001354 .ident = "ASUS P2B-DS",
1355 .matches = {
1356 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1357 DMI_MATCH(DMI_BOARD_NAME, "P2B-DS"),
1358 },
1359 },
Andrey Paninaea00142005-06-25 14:54:42 -07001360 {
Len Brown4be44fc2005-08-05 00:44:28 -04001361 .callback = force_acpi_ht,
1362 .ident = "ASUS CUR-DLS",
1363 .matches = {
1364 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1365 DMI_MATCH(DMI_BOARD_NAME, "CUR-DLS"),
1366 },
1367 },
Andrey Paninaea00142005-06-25 14:54:42 -07001368 {
Len Brown4be44fc2005-08-05 00:44:28 -04001369 .callback = force_acpi_ht,
1370 .ident = "ABIT i440BX-W83977",
1371 .matches = {
1372 DMI_MATCH(DMI_BOARD_VENDOR, "ABIT <http://www.abit.com>"),
1373 DMI_MATCH(DMI_BOARD_NAME, "i440BX-W83977 (BP6)"),
1374 },
1375 },
Andrey Paninaea00142005-06-25 14:54:42 -07001376 {
Len Brown4be44fc2005-08-05 00:44:28 -04001377 .callback = force_acpi_ht,
1378 .ident = "IBM Bladecenter",
1379 .matches = {
1380 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1381 DMI_MATCH(DMI_BOARD_NAME, "IBM eServer BladeCenter HS20"),
1382 },
1383 },
Andrey Paninaea00142005-06-25 14:54:42 -07001384 {
Len Brown4be44fc2005-08-05 00:44:28 -04001385 .callback = force_acpi_ht,
1386 .ident = "IBM eServer xSeries 360",
1387 .matches = {
1388 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1389 DMI_MATCH(DMI_BOARD_NAME, "eServer xSeries 360"),
1390 },
1391 },
Andrey Paninaea00142005-06-25 14:54:42 -07001392 {
Len Brown4be44fc2005-08-05 00:44:28 -04001393 .callback = force_acpi_ht,
1394 .ident = "IBM eserver xSeries 330",
1395 .matches = {
1396 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1397 DMI_MATCH(DMI_BOARD_NAME, "eserver xSeries 330"),
1398 },
1399 },
Andrey Paninaea00142005-06-25 14:54:42 -07001400 {
Len Brown4be44fc2005-08-05 00:44:28 -04001401 .callback = force_acpi_ht,
1402 .ident = "IBM eserver xSeries 440",
1403 .matches = {
1404 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1405 DMI_MATCH(DMI_PRODUCT_NAME, "eserver xSeries 440"),
1406 },
1407 },
Andrey Paninaea00142005-06-25 14:54:42 -07001408
Andrey Paninaea00142005-06-25 14:54:42 -07001409 /*
1410 * Boxes that need ACPI PCI IRQ routing disabled
1411 */
1412 {
Len Brown4be44fc2005-08-05 00:44:28 -04001413 .callback = disable_acpi_irq,
1414 .ident = "ASUS A7V",
1415 .matches = {
1416 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC"),
1417 DMI_MATCH(DMI_BOARD_NAME, "<A7V>"),
1418 /* newer BIOS, Revision 1011, does work */
1419 DMI_MATCH(DMI_BIOS_VERSION,
1420 "ASUS A7V ACPI BIOS Revision 1007"),
1421 },
1422 },
Len Brown74586fc2007-03-08 02:48:30 -05001423 {
1424 /*
1425 * Latest BIOS for IBM 600E (1.16) has bad pcinum
1426 * for LPC bridge, which is needed for the PCI
1427 * interrupt links to work. DSDT fix is in bug 5966.
1428 * 2645, 2646 model numbers are shared with 600/600E/600X
1429 */
1430 .callback = disable_acpi_irq,
1431 .ident = "IBM Thinkpad 600 Series 2645",
1432 .matches = {
1433 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1434 DMI_MATCH(DMI_BOARD_NAME, "2645"),
1435 },
1436 },
1437 {
1438 .callback = disable_acpi_irq,
1439 .ident = "IBM Thinkpad 600 Series 2646",
1440 .matches = {
1441 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1442 DMI_MATCH(DMI_BOARD_NAME, "2646"),
1443 },
1444 },
Andrey Paninaea00142005-06-25 14:54:42 -07001445 /*
1446 * Boxes that need ACPI PCI IRQ routing and PCI scan disabled
1447 */
Len Brown4be44fc2005-08-05 00:44:28 -04001448 { /* _BBN 0 bug */
1449 .callback = disable_acpi_pci,
1450 .ident = "ASUS PR-DLS",
1451 .matches = {
1452 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1453 DMI_MATCH(DMI_BOARD_NAME, "PR-DLS"),
1454 DMI_MATCH(DMI_BIOS_VERSION,
1455 "ASUS PR-DLS ACPI BIOS Revision 1010"),
1456 DMI_MATCH(DMI_BIOS_DATE, "03/21/2003")
1457 },
1458 },
Andrey Paninaea00142005-06-25 14:54:42 -07001459 {
Len Brown4be44fc2005-08-05 00:44:28 -04001460 .callback = disable_acpi_pci,
1461 .ident = "Acer TravelMate 36x Laptop",
1462 .matches = {
1463 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
1464 DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 360"),
1465 },
1466 },
Andreas Herrmann35af2822008-10-22 13:08:31 +02001467 {}
1468};
1469
1470/* second table for DMI checks that should run after early-quirks */
1471static struct dmi_system_id __initdata acpi_dmi_table_late[] = {
Matthew Garrett9340e1c2008-07-01 01:12:06 +01001472 /*
1473 * HP laptops which use a DSDT reporting as HP/SB400/10000,
1474 * which includes some code which overrides all temperature
1475 * trip points to 16C if the INTIN2 input of the I/O APIC
1476 * is enabled. This input is incorrectly designated the
1477 * ISA IRQ 0 via an interrupt source override even though
1478 * it is wired to the output of the master 8259A and INTIN0
Rafael J. Wysockie2079c42008-07-08 16:12:26 +02001479 * is not connected at all. Force ignoring BIOS IRQ0 pin2
1480 * override in that cases.
1481 */
1482 {
1483 .callback = dmi_ignore_irq0_timer_override,
Rafael J. Wysockie84956f2008-10-06 11:59:29 +02001484 .ident = "HP nx6115 laptop",
1485 .matches = {
1486 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
1487 DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq nx6115"),
1488 },
1489 },
1490 {
1491 .callback = dmi_ignore_irq0_timer_override,
Rafael J. Wysockie2079c42008-07-08 16:12:26 +02001492 .ident = "HP NX6125 laptop",
1493 .matches = {
1494 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
1495 DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq nx6125"),
1496 },
1497 },
1498 {
1499 .callback = dmi_ignore_irq0_timer_override,
1500 .ident = "HP NX6325 laptop",
1501 .matches = {
1502 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
1503 DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq nx6325"),
1504 },
1505 },
Rafael J. Wysockie84956f2008-10-06 11:59:29 +02001506 {
1507 .callback = dmi_ignore_irq0_timer_override,
1508 .ident = "HP 6715b laptop",
1509 .matches = {
1510 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
1511 DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq 6715b"),
1512 },
1513 },
Len Brown4be44fc2005-08-05 00:44:28 -04001514 {}
Andrey Paninaea00142005-06-25 14:54:42 -07001515};
1516
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517/*
1518 * acpi_boot_table_init() and acpi_boot_init()
1519 * called from setup_arch(), always.
1520 * 1. checksums all tables
1521 * 2. enumerates lapics
1522 * 3. enumerates io-apics
1523 *
1524 * acpi_table_init() is separate to allow reading SRAT without
1525 * other side effects.
1526 *
1527 * side effects of acpi_boot_init:
1528 * acpi_lapic = 1 if LAPIC found
1529 * acpi_ioapic = 1 if IOAPIC found
1530 * if (acpi_lapic && acpi_ioapic) smp_found_config = 1;
1531 * if acpi_blacklisted() acpi_disabled = 1;
1532 * acpi_irq_model=...
1533 * ...
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 */
1535
Len Brown8558e392010-01-06 16:11:06 -05001536void __init acpi_boot_table_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537{
Andrey Paninaea00142005-06-25 14:54:42 -07001538 dmi_check_system(acpi_dmi_table);
Andrey Paninaea00142005-06-25 14:54:42 -07001539
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 /*
1541 * If acpi_disabled, bail out
1542 * One exception: acpi=ht continues far enough to enumerate LAPICs
1543 */
1544 if (acpi_disabled && !acpi_ht)
Len Brown8558e392010-01-06 16:11:06 -05001545 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001547 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 * Initialize the ACPI boot-time table parser.
1549 */
Len Brown8558e392010-01-06 16:11:06 -05001550 if (acpi_table_init()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 disable_acpi();
Len Brown8558e392010-01-06 16:11:06 -05001552 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001555 acpi_table_parse(ACPI_SIG_BOOT, acpi_parse_sbf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556
1557 /*
1558 * blacklist may disable ACPI entirely
1559 */
Len Brown8558e392010-01-06 16:11:06 -05001560 if (acpi_blacklisted()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 if (acpi_force) {
1562 printk(KERN_WARNING PREFIX "acpi=force override\n");
1563 } else {
1564 printk(KERN_WARNING PREFIX "Disabling ACPI support\n");
1565 disable_acpi();
Len Brown8558e392010-01-06 16:11:06 -05001566 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 }
1568 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569}
1570
Yinghai Lucbf9bd62008-02-19 03:21:06 -08001571int __init early_acpi_boot_init(void)
1572{
1573 /*
1574 * If acpi_disabled, bail out
1575 * One exception: acpi=ht continues far enough to enumerate LAPICs
1576 */
1577 if (acpi_disabled && !acpi_ht)
1578 return 1;
1579
1580 /*
1581 * Process the Multiple APIC Description Table (MADT), if present
1582 */
1583 early_acpi_process_madt();
1584
1585 return 0;
1586}
1587
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588int __init acpi_boot_init(void)
1589{
Andreas Herrmann35af2822008-10-22 13:08:31 +02001590 /* those are executed after early-quirks are executed */
1591 dmi_check_system(acpi_dmi_table_late);
1592
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 /*
1594 * If acpi_disabled, bail out
1595 * One exception: acpi=ht continues far enough to enumerate LAPICs
1596 */
1597 if (acpi_disabled && !acpi_ht)
Len Brown4be44fc2005-08-05 00:44:28 -04001598 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001600 acpi_table_parse(ACPI_SIG_BOOT, acpi_parse_sbf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
1602 /*
1603 * set sci_int and PM timer address
1604 */
Alexey Starikovskiyceb6c462007-02-02 19:48:22 +03001605 acpi_table_parse(ACPI_SIG_FADT, acpi_parse_fadt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606
1607 /*
1608 * Process the Multiple APIC Description Table (MADT), if present
1609 */
1610 acpi_process_madt();
1611
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001612 acpi_table_parse(ACPI_SIG_HPET, acpi_parse_hpet);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613
1614 return 0;
1615}
Rusty Russell1a3f2392006-09-26 10:52:32 +02001616
1617static int __init parse_acpi(char *arg)
1618{
1619 if (!arg)
1620 return -EINVAL;
1621
1622 /* "acpi=off" disables both ACPI table parsing and interpreter */
1623 if (strcmp(arg, "off") == 0) {
1624 disable_acpi();
1625 }
1626 /* acpi=force to over-ride black-list */
1627 else if (strcmp(arg, "force") == 0) {
1628 acpi_force = 1;
1629 acpi_ht = 1;
1630 acpi_disabled = 0;
1631 }
1632 /* acpi=strict disables out-of-spec workarounds */
1633 else if (strcmp(arg, "strict") == 0) {
1634 acpi_strict = 1;
1635 }
1636 /* Limit ACPI just to boot-time to enable HT */
1637 else if (strcmp(arg, "ht") == 0) {
1638 if (!acpi_force)
1639 disable_acpi();
1640 acpi_ht = 1;
1641 }
Zhao Yakui237889b2008-12-17 16:55:18 +08001642 /* acpi=rsdt use RSDT instead of XSDT */
1643 else if (strcmp(arg, "rsdt") == 0) {
1644 acpi_rsdt_forced = 1;
1645 }
Rusty Russell1a3f2392006-09-26 10:52:32 +02001646 /* "acpi=noirq" disables ACPI interrupt routing */
1647 else if (strcmp(arg, "noirq") == 0) {
1648 acpi_noirq_set();
1649 } else {
1650 /* Core will printk when we return error. */
1651 return -EINVAL;
1652 }
1653 return 0;
1654}
1655early_param("acpi", parse_acpi);
1656
1657/* FIXME: Using pci= for an ACPI parameter is a travesty. */
1658static int __init parse_pci(char *arg)
1659{
1660 if (arg && strcmp(arg, "noacpi") == 0)
1661 acpi_disable_pci();
1662 return 0;
1663}
1664early_param("pci", parse_pci);
1665
Yinghai Lu3c999f12008-06-20 16:11:20 -07001666int __init acpi_mps_check(void)
1667{
1668#if defined(CONFIG_X86_LOCAL_APIC) && !defined(CONFIG_X86_MPPARSE)
1669/* mptable code is not built-in*/
1670 if (acpi_disabled || acpi_noirq) {
1671 printk(KERN_WARNING "MPS support code is not built-in.\n"
1672 "Using acpi=off or acpi=noirq or pci=noacpi "
1673 "may have problem\n");
1674 return 1;
1675 }
1676#endif
1677 return 0;
1678}
1679
Rusty Russell1a3f2392006-09-26 10:52:32 +02001680#ifdef CONFIG_X86_IO_APIC
1681static int __init parse_acpi_skip_timer_override(char *arg)
1682{
1683 acpi_skip_timer_override = 1;
1684 return 0;
1685}
1686early_param("acpi_skip_timer_override", parse_acpi_skip_timer_override);
Andi Kleenfa18f472006-11-14 16:57:46 +01001687
1688static int __init parse_acpi_use_timer_override(char *arg)
1689{
1690 acpi_use_timer_override = 1;
1691 return 0;
1692}
1693early_param("acpi_use_timer_override", parse_acpi_use_timer_override);
Rusty Russell1a3f2392006-09-26 10:52:32 +02001694#endif /* CONFIG_X86_IO_APIC */
1695
1696static int __init setup_acpi_sci(char *s)
1697{
1698 if (!s)
1699 return -EINVAL;
1700 if (!strcmp(s, "edge"))
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001701 acpi_sci_flags = ACPI_MADT_TRIGGER_EDGE |
1702 (acpi_sci_flags & ~ACPI_MADT_TRIGGER_MASK);
Rusty Russell1a3f2392006-09-26 10:52:32 +02001703 else if (!strcmp(s, "level"))
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001704 acpi_sci_flags = ACPI_MADT_TRIGGER_LEVEL |
1705 (acpi_sci_flags & ~ACPI_MADT_TRIGGER_MASK);
Rusty Russell1a3f2392006-09-26 10:52:32 +02001706 else if (!strcmp(s, "high"))
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001707 acpi_sci_flags = ACPI_MADT_POLARITY_ACTIVE_HIGH |
1708 (acpi_sci_flags & ~ACPI_MADT_POLARITY_MASK);
Rusty Russell1a3f2392006-09-26 10:52:32 +02001709 else if (!strcmp(s, "low"))
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001710 acpi_sci_flags = ACPI_MADT_POLARITY_ACTIVE_LOW |
1711 (acpi_sci_flags & ~ACPI_MADT_POLARITY_MASK);
Rusty Russell1a3f2392006-09-26 10:52:32 +02001712 else
1713 return -EINVAL;
1714 return 0;
1715}
1716early_param("acpi_sci", setup_acpi_sci);
Andrew Mortond0a90812006-10-20 14:30:27 -07001717
1718int __acpi_acquire_global_lock(unsigned int *lock)
1719{
1720 unsigned int old, new, val;
1721 do {
1722 old = *lock;
1723 new = (((old & ~0x3) + 2) + ((old >> 1) & 0x1));
1724 val = cmpxchg(lock, old, new);
1725 } while (unlikely (val != old));
1726 return (new < 3) ? -1 : 0;
1727}
1728
1729int __acpi_release_global_lock(unsigned int *lock)
1730{
1731 unsigned int old, new, val;
1732 do {
1733 old = *lock;
1734 new = old & ~0x3;
1735 val = cmpxchg(lock, old, new);
1736 } while (unlikely (val != old));
1737 return old & 0x1;
1738}