blob: f54e0e557cd293b8ee5e84b92b75d0907898223e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * boot.c - Architecture-Specific Low-Level ACPI Boot Support
3 *
4 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
5 * Copyright (C) 2001 Jun Nakajima <jun.nakajima@intel.com>
6 *
7 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 *
23 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
24 */
25
26#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/acpi.h>
Thomas Gleixnerd66bea52007-02-16 01:27:57 -080028#include <linux/acpi_pmtmr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/efi.h>
Ashok Raj73fea172006-09-26 10:52:35 +020030#include <linux/cpumask.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/module.h>
Andrey Paninaea00142005-06-25 14:54:42 -070032#include <linux/dmi.h>
Nick Pigginb33fa1f2005-10-01 02:34:42 +100033#include <linux/irq.h>
adurbin@google.comf0f4c342006-09-26 10:52:39 +020034#include <linux/bootmem.h>
35#include <linux/ioport.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37#include <asm/pgtable.h>
38#include <asm/io_apic.h>
39#include <asm/apic.h>
40#include <asm/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <asm/mpspec.h>
Alexey Starikovskiydfac2182008-04-04 23:41:50 +040042#include <asm/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Adrian Bunke8924ac2006-09-26 10:52:35 +020044static int __initdata acpi_force = 0;
Zhao Yakui237889b2008-12-17 16:55:18 +080045u32 acpi_rsdt_forced;
Len Brownc636f752009-05-19 23:47:38 -040046int acpi_disabled;
Andi Kleendf3bb572006-09-26 10:52:33 +020047EXPORT_SYMBOL(acpi_disabled);
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#ifdef CONFIG_X86_64
Ingo Molnar1dcdd3d2009-01-28 17:55:37 +010050# include <asm/proto.h>
Len Brown4be44fc2005-08-05 00:44:28 -040051#endif /* X86 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53#define BAD_MADT_ENTRY(entry, end) ( \
54 (!entry) || (unsigned long)entry + sizeof(*entry) > end || \
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +030055 ((struct acpi_subtable_header *)entry)->length < sizeof(*entry))
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57#define PREFIX "ACPI: "
58
Andrew Morton90d53902006-11-02 22:07:18 -080059int acpi_noirq; /* skip ACPI IRQ initialization */
Yinghai Lu6e4be1f2008-02-05 00:01:48 -080060int acpi_pci_disabled; /* skip ACPI PCI scan and IRQ initialization */
61EXPORT_SYMBOL(acpi_pci_disabled);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062int acpi_ht __initdata = 1; /* enable HT */
63
64int acpi_lapic;
65int acpi_ioapic;
66int acpi_strict;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +030068u8 acpi_sci_flags __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069int acpi_sci_override_gsi __initdata;
70int acpi_skip_timer_override __initdata;
Andi Kleenfa18f472006-11-14 16:57:46 +010071int acpi_use_timer_override __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73#ifdef CONFIG_X86_LOCAL_APIC
74static u64 acpi_lapic_addr __initdata = APIC_DEFAULT_PHYS_BASE;
75#endif
76
77#ifndef __HAVE_ARCH_CMPXCHG
78#warning ACPI uses CMPXCHG, i486 and later hardware
79#endif
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081/* --------------------------------------------------------------------------
82 Boot-time Configuration
83 -------------------------------------------------------------------------- */
84
85/*
86 * The default interrupt routing model is PIC (8259). This gets
Simon Arlott27b46d72007-10-20 01:13:56 +020087 * overridden if IOAPICs are enumerated (below).
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 */
Len Brown4be44fc2005-08-05 00:44:28 -040089enum acpi_irq_model_id acpi_irq_model = ACPI_IRQ_MODEL_PIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92/*
93 * Temporarily use the virtual area starting from FIX_IO_APIC_BASE_END,
94 * to map the target physical address. The problem is that set_fixmap()
95 * provides a single page, and it is possible that the page is not
96 * sufficient.
97 * By using this area, we can map up to MAX_IO_APICS pages temporarily,
98 * i.e. until the next __va_range() call.
99 *
100 * Important Safety Note: The fixed I/O APIC page numbers are *subtracted*
101 * from the fixed base. That's why we start at FIX_IO_APIC_BASE_END and
102 * count idx down while incrementing the phys address.
103 */
Jan Beulich2fdf0742007-12-13 08:33:59 +0000104char *__init __acpi_map_table(unsigned long phys, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Yinghai Luf34fa822008-07-09 20:16:36 -0700107 if (!phys || !size)
108 return NULL;
109
Yinghai Lu7d972772009-02-07 15:39:41 -0800110 return early_ioremap(phys, size);
111}
112void __init __acpi_unmap_table(char *map, unsigned long size)
113{
114 if (!map || !size)
115 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Yinghai Lu7d972772009-02-07 15:39:41 -0800117 early_iounmap(map, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120#ifdef CONFIG_X86_LOCAL_APIC
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +0300121static int __init acpi_parse_madt(struct acpi_table_header *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122{
Len Brown4be44fc2005-08-05 00:44:28 -0400123 struct acpi_table_madt *madt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +0300125 if (!cpu_has_apic)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 return -EINVAL;
127
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +0300128 madt = (struct acpi_table_madt *)table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 if (!madt) {
130 printk(KERN_WARNING PREFIX "Unable to map MADT\n");
131 return -ENODEV;
132 }
133
Alexey Starikovskiyad363f82007-02-02 19:48:22 +0300134 if (madt->address) {
135 acpi_lapic_addr = (u64) madt->address;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137 printk(KERN_DEBUG PREFIX "Local APIC address 0x%08x\n",
Alexey Starikovskiyad363f82007-02-02 19:48:22 +0300138 madt->address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 }
140
Ingo Molnar306db032009-01-28 03:43:47 +0100141 default_acpi_madt_oem_check(madt->header.oem_id,
142 madt->header.oem_table_id);
Len Brown4be44fc2005-08-05 00:44:28 -0400143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 return 0;
145}
146
Alexey Starikovskiydfac2182008-04-04 23:41:50 +0400147static void __cpuinit acpi_register_lapic(int id, u8 enabled)
148{
Yinghai Lufb3bbd62008-05-22 18:22:30 -0700149 unsigned int ver = 0;
150
Alexey Starikovskiydfac2182008-04-04 23:41:50 +0400151 if (!enabled) {
152 ++disabled_cpus;
153 return;
154 }
155
Yinghai Lufb3bbd62008-05-22 18:22:30 -0700156 if (boot_cpu_physical_apicid != -1U)
157 ver = apic_version[boot_cpu_physical_apicid];
Yinghai Lufb3bbd62008-05-22 18:22:30 -0700158
159 generic_processor_info(id, ver);
Alexey Starikovskiydfac2182008-04-04 23:41:50 +0400160}
161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162static int __init
Suresh Siddha7237d3d2009-03-30 13:55:30 -0800163acpi_parse_x2apic(struct acpi_subtable_header *header, const unsigned long end)
164{
165 struct acpi_madt_local_x2apic *processor = NULL;
166
167 processor = (struct acpi_madt_local_x2apic *)header;
168
169 if (BAD_MADT_ENTRY(processor, end))
170 return -EINVAL;
171
172 acpi_table_print_madt_entry(header);
173
174#ifdef CONFIG_X86_X2APIC
175 /*
176 * We need to register disabled CPU as well to permit
177 * counting disabled CPUs. This allows us to size
178 * cpus_possible_map more accurately, to permit
179 * to not preallocating memory for all NR_CPUS
180 * when we use CPU hotplug.
181 */
182 acpi_register_lapic(processor->local_apic_id, /* APIC ID */
183 processor->lapic_flags & ACPI_MADT_ENABLED);
184#else
185 printk(KERN_WARNING PREFIX "x2apic entry ignored\n");
186#endif
187
188 return 0;
189}
190
191static int __init
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300192acpi_parse_lapic(struct acpi_subtable_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193{
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300194 struct acpi_madt_local_apic *processor = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300196 processor = (struct acpi_madt_local_apic *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
198 if (BAD_MADT_ENTRY(processor, end))
199 return -EINVAL;
200
201 acpi_table_print_madt_entry(header);
202
Ashok Raj7f66ae42006-02-03 21:51:50 +0100203 /*
204 * We need to register disabled CPU as well to permit
205 * counting disabled CPUs. This allows us to size
206 * cpus_possible_map more accurately, to permit
207 * to not preallocating memory for all NR_CPUS
208 * when we use CPU hotplug.
209 */
Alexey Starikovskiydfac2182008-04-04 23:41:50 +0400210 acpi_register_lapic(processor->id, /* APIC ID */
211 processor->lapic_flags & ACPI_MADT_ENABLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213 return 0;
214}
215
216static int __init
Jack Steinerac049c12008-03-28 14:12:09 -0500217acpi_parse_sapic(struct acpi_subtable_header *header, const unsigned long end)
218{
219 struct acpi_madt_local_sapic *processor = NULL;
220
221 processor = (struct acpi_madt_local_sapic *)header;
222
223 if (BAD_MADT_ENTRY(processor, end))
224 return -EINVAL;
225
226 acpi_table_print_madt_entry(header);
227
Alexey Starikovskiydfac2182008-04-04 23:41:50 +0400228 acpi_register_lapic((processor->id << 8) | processor->eid,/* APIC ID */
229 processor->lapic_flags & ACPI_MADT_ENABLED);
Jack Steinerac049c12008-03-28 14:12:09 -0500230
231 return 0;
232}
233
234static int __init
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300235acpi_parse_lapic_addr_ovr(struct acpi_subtable_header * header,
Len Brown4be44fc2005-08-05 00:44:28 -0400236 const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237{
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300238 struct acpi_madt_local_apic_override *lapic_addr_ovr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300240 lapic_addr_ovr = (struct acpi_madt_local_apic_override *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
242 if (BAD_MADT_ENTRY(lapic_addr_ovr, end))
243 return -EINVAL;
244
245 acpi_lapic_addr = lapic_addr_ovr->address;
246
247 return 0;
248}
249
250static int __init
Suresh Siddha7237d3d2009-03-30 13:55:30 -0800251acpi_parse_x2apic_nmi(struct acpi_subtable_header *header,
252 const unsigned long end)
253{
254 struct acpi_madt_local_x2apic_nmi *x2apic_nmi = NULL;
255
256 x2apic_nmi = (struct acpi_madt_local_x2apic_nmi *)header;
257
258 if (BAD_MADT_ENTRY(x2apic_nmi, end))
259 return -EINVAL;
260
261 acpi_table_print_madt_entry(header);
262
263 if (x2apic_nmi->lint != 1)
264 printk(KERN_WARNING PREFIX "NMI not connected to LINT 1!\n");
265
266 return 0;
267}
268
269static int __init
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300270acpi_parse_lapic_nmi(struct acpi_subtable_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271{
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300272 struct acpi_madt_local_apic_nmi *lapic_nmi = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300274 lapic_nmi = (struct acpi_madt_local_apic_nmi *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
276 if (BAD_MADT_ENTRY(lapic_nmi, end))
277 return -EINVAL;
278
279 acpi_table_print_madt_entry(header);
280
281 if (lapic_nmi->lint != 1)
282 printk(KERN_WARNING PREFIX "NMI not connected to LINT 1!\n");
283
284 return 0;
285}
286
Len Brown4be44fc2005-08-05 00:44:28 -0400287#endif /*CONFIG_X86_LOCAL_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Len Brown84663612005-08-24 12:09:07 -0400289#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
291static int __init
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300292acpi_parse_ioapic(struct acpi_subtable_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293{
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300294 struct acpi_madt_io_apic *ioapic = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300296 ioapic = (struct acpi_madt_io_apic *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
298 if (BAD_MADT_ENTRY(ioapic, end))
299 return -EINVAL;
Len Brown4be44fc2005-08-05 00:44:28 -0400300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 acpi_table_print_madt_entry(header);
302
Len Brown4be44fc2005-08-05 00:44:28 -0400303 mp_register_ioapic(ioapic->id,
304 ioapic->address, ioapic->global_irq_base);
305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 return 0;
307}
308
309/*
310 * Parse Interrupt Source Override for the ACPI SCI
311 */
Len Browne82c3542006-12-21 01:29:59 -0500312static void __init acpi_sci_ioapic_setup(u32 gsi, u16 polarity, u16 trigger)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
314 if (trigger == 0) /* compatible SCI trigger is level */
315 trigger = 3;
316
317 if (polarity == 0) /* compatible SCI polarity is low */
318 polarity = 3;
319
320 /* Command-line over-ride via acpi_sci= */
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300321 if (acpi_sci_flags & ACPI_MADT_TRIGGER_MASK)
322 trigger = (acpi_sci_flags & ACPI_MADT_TRIGGER_MASK) >> 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300324 if (acpi_sci_flags & ACPI_MADT_POLARITY_MASK)
325 polarity = acpi_sci_flags & ACPI_MADT_POLARITY_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
327 /*
Len Brown4be44fc2005-08-05 00:44:28 -0400328 * mp_config_acpi_legacy_irqs() already setup IRQs < 16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 * If GSI is < 16, this will update its flags,
330 * else it will create a new mp_irqs[] entry.
331 */
Len Brown7bdd21c2006-12-02 02:27:46 -0500332 mp_override_legacy_irq(gsi, polarity, trigger, gsi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
334 /*
335 * stash over-ride to indicate we've been here
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300336 * and for later update of acpi_gbl_FADT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 */
Len Brown7bdd21c2006-12-02 02:27:46 -0500338 acpi_sci_override_gsi = gsi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 return;
340}
341
342static int __init
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300343acpi_parse_int_src_ovr(struct acpi_subtable_header * header,
Len Brown4be44fc2005-08-05 00:44:28 -0400344 const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345{
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300346 struct acpi_madt_interrupt_override *intsrc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300348 intsrc = (struct acpi_madt_interrupt_override *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
350 if (BAD_MADT_ENTRY(intsrc, end))
351 return -EINVAL;
352
353 acpi_table_print_madt_entry(header);
354
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300355 if (intsrc->source_irq == acpi_gbl_FADT.sci_interrupt) {
Len Brown7bdd21c2006-12-02 02:27:46 -0500356 acpi_sci_ioapic_setup(intsrc->global_irq,
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300357 intsrc->inti_flags & ACPI_MADT_POLARITY_MASK,
358 (intsrc->inti_flags & ACPI_MADT_TRIGGER_MASK) >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 return 0;
360 }
361
362 if (acpi_skip_timer_override &&
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300363 intsrc->source_irq == 0 && intsrc->global_irq == 2) {
Len Brown4be44fc2005-08-05 00:44:28 -0400364 printk(PREFIX "BIOS IRQ0 pin2 override ignored.\n");
365 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 }
367
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300368 mp_override_legacy_irq(intsrc->source_irq,
369 intsrc->inti_flags & ACPI_MADT_POLARITY_MASK,
370 (intsrc->inti_flags & ACPI_MADT_TRIGGER_MASK) >> 2,
371 intsrc->global_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
373 return 0;
374}
375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376static int __init
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300377acpi_parse_nmi_src(struct acpi_subtable_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378{
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300379 struct acpi_madt_nmi_source *nmi_src = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300381 nmi_src = (struct acpi_madt_nmi_source *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
383 if (BAD_MADT_ENTRY(nmi_src, end))
384 return -EINVAL;
385
386 acpi_table_print_madt_entry(header);
387
388 /* TBD: Support nimsrc entries? */
389
390 return 0;
391}
392
Len Brown4be44fc2005-08-05 00:44:28 -0400393#endif /* CONFIG_X86_IO_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395/*
396 * acpi_pic_sci_set_trigger()
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300397 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 * use ELCR to set PIC-mode trigger type for SCI
399 *
400 * If a PIC-mode SCI is not recognized or gives spurious IRQ7's
401 * it may require Edge Trigger -- use "acpi_sci=edge"
402 *
403 * Port 0x4d0-4d1 are ECLR1 and ECLR2, the Edge/Level Control Registers
404 * for the 8259 PIC. bit[n] = 1 means irq[n] is Level, otherwise Edge.
Simon Arlott27b46d72007-10-20 01:13:56 +0200405 * ECLR1 is IRQs 0-7 (IRQ 0, 1, 2 must be 0)
406 * ECLR2 is IRQs 8-15 (IRQ 8, 13 must be 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 */
408
Len Brown4be44fc2005-08-05 00:44:28 -0400409void __init acpi_pic_sci_set_trigger(unsigned int irq, u16 trigger)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410{
411 unsigned int mask = 1 << irq;
412 unsigned int old, new;
413
414 /* Real old ELCR mask */
415 old = inb(0x4d0) | (inb(0x4d1) << 8);
416
417 /*
Simon Arlott27b46d72007-10-20 01:13:56 +0200418 * If we use ACPI to set PCI IRQs, then we should clear ELCR
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 * since we will set it correctly as we enable the PCI irq
420 * routing.
421 */
422 new = acpi_noirq ? old : 0;
423
424 /*
425 * Update SCI information in the ELCR, it isn't in the PCI
426 * routing tables..
427 */
428 switch (trigger) {
Len Brown4be44fc2005-08-05 00:44:28 -0400429 case 1: /* Edge - clear */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 new &= ~mask;
431 break;
Len Brown4be44fc2005-08-05 00:44:28 -0400432 case 3: /* Level - set */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 new |= mask;
434 break;
435 }
436
437 if (old == new)
438 return;
439
440 printk(PREFIX "setting ELCR to %04x (from %04x)\n", new, old);
441 outb(new, 0x4d0);
442 outb(new >> 8, 0x4d1);
443}
444
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445int acpi_gsi_to_irq(u32 gsi, unsigned int *irq)
446{
Eric W. Biedermanf023d762006-10-04 02:16:52 -0700447 *irq = gsi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 return 0;
449}
450
Kenji Kaneshige1f3a6a12005-07-28 14:42:00 -0400451/*
452 * success: return IRQ number (>=0)
453 * failure: return < 0
454 */
Len Browncb654692005-12-28 02:43:51 -0500455int acpi_register_gsi(u32 gsi, int triggering, int polarity)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456{
457 unsigned int irq;
458 unsigned int plat_gsi = gsi;
459
460#ifdef CONFIG_PCI
461 /*
462 * Make sure all (legacy) PCI IRQs are set as level-triggered.
463 */
464 if (acpi_irq_model == ACPI_IRQ_MODEL_PIC) {
Len Browncb654692005-12-28 02:43:51 -0500465 if (triggering == ACPI_LEVEL_SENSITIVE)
Len Brown4be44fc2005-08-05 00:44:28 -0400466 eisa_set_level_irq(gsi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 }
468#endif
469
470#ifdef CONFIG_X86_IO_APIC
471 if (acpi_irq_model == ACPI_IRQ_MODEL_IOAPIC) {
Len Browncb654692005-12-28 02:43:51 -0500472 plat_gsi = mp_register_gsi(gsi, triggering, polarity);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 }
474#endif
475 acpi_gsi_to_irq(plat_gsi, &irq);
476 return irq;
477}
Len Brown4be44fc2005-08-05 00:44:28 -0400478
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479/*
480 * ACPI based hotplug support for CPU
481 */
482#ifdef CONFIG_ACPI_HOTPLUG_CPU
Sam Ravnborg009cbad2008-02-01 17:49:42 +0100483
484static int __cpuinit _acpi_map_lsapic(acpi_handle handle, int *pcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485{
Ashok Raj73fea172006-09-26 10:52:35 +0200486 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
487 union acpi_object *obj;
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300488 struct acpi_madt_local_apic *lapic;
Rusty Russellee943a82008-12-31 18:08:47 -0800489 cpumask_var_t tmp_map, new_map;
Ashok Raj73fea172006-09-26 10:52:35 +0200490 u8 physid;
491 int cpu;
Rusty Russellee943a82008-12-31 18:08:47 -0800492 int retval = -ENOMEM;
Ashok Raj73fea172006-09-26 10:52:35 +0200493
494 if (ACPI_FAILURE(acpi_evaluate_object(handle, "_MAT", NULL, &buffer)))
495 return -EINVAL;
496
497 if (!buffer.length || !buffer.pointer)
498 return -EINVAL;
499
500 obj = buffer.pointer;
501 if (obj->type != ACPI_TYPE_BUFFER ||
502 obj->buffer.length < sizeof(*lapic)) {
503 kfree(buffer.pointer);
504 return -EINVAL;
505 }
506
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300507 lapic = (struct acpi_madt_local_apic *)obj->buffer.pointer;
Ashok Raj73fea172006-09-26 10:52:35 +0200508
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300509 if (lapic->header.type != ACPI_MADT_TYPE_LOCAL_APIC ||
510 !(lapic->lapic_flags & ACPI_MADT_ENABLED)) {
Ashok Raj73fea172006-09-26 10:52:35 +0200511 kfree(buffer.pointer);
512 return -EINVAL;
513 }
514
515 physid = lapic->id;
516
517 kfree(buffer.pointer);
518 buffer.length = ACPI_ALLOCATE_BUFFER;
519 buffer.pointer = NULL;
520
Rusty Russellee943a82008-12-31 18:08:47 -0800521 if (!alloc_cpumask_var(&tmp_map, GFP_KERNEL))
522 goto out;
523
524 if (!alloc_cpumask_var(&new_map, GFP_KERNEL))
525 goto free_tmp_map;
526
527 cpumask_copy(tmp_map, cpu_present_mask);
Alexey Starikovskiydfac2182008-04-04 23:41:50 +0400528 acpi_register_lapic(physid, lapic->lapic_flags & ACPI_MADT_ENABLED);
Ashok Raj73fea172006-09-26 10:52:35 +0200529
530 /*
531 * If mp_register_lapic successfully generates a new logical cpu
532 * number, then the following will get us exactly what was mapped
533 */
Rusty Russellee943a82008-12-31 18:08:47 -0800534 cpumask_andnot(new_map, cpu_present_mask, tmp_map);
535 if (cpumask_empty(new_map)) {
Ashok Raj73fea172006-09-26 10:52:35 +0200536 printk ("Unable to map lapic to logical cpu number\n");
Rusty Russellee943a82008-12-31 18:08:47 -0800537 retval = -EINVAL;
538 goto free_new_map;
Ashok Raj73fea172006-09-26 10:52:35 +0200539 }
540
Rusty Russellee943a82008-12-31 18:08:47 -0800541 cpu = cpumask_first(new_map);
Ashok Raj73fea172006-09-26 10:52:35 +0200542
543 *pcpu = cpu;
Rusty Russellee943a82008-12-31 18:08:47 -0800544 retval = 0;
545
546free_new_map:
547 free_cpumask_var(new_map);
548free_tmp_map:
549 free_cpumask_var(tmp_map);
550out:
551 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552}
Len Brown4be44fc2005-08-05 00:44:28 -0400553
Sam Ravnborg009cbad2008-02-01 17:49:42 +0100554/* wrapper to silence section mismatch warning */
555int __ref acpi_map_lsapic(acpi_handle handle, int *pcpu)
556{
557 return _acpi_map_lsapic(handle, pcpu);
558}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559EXPORT_SYMBOL(acpi_map_lsapic);
560
Len Brown4be44fc2005-08-05 00:44:28 -0400561int acpi_unmap_lsapic(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562{
Mike Travis71fff5e2007-10-19 20:35:03 +0200563 per_cpu(x86_cpu_to_apicid, cpu) = -1;
Mike Travis96289372008-12-31 18:08:46 -0800564 set_cpu_present(cpu, false);
Ashok Raj73fea172006-09-26 10:52:35 +0200565 num_processors--;
566
567 return (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568}
Len Brown4be44fc2005-08-05 00:44:28 -0400569
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570EXPORT_SYMBOL(acpi_unmap_lsapic);
Len Brown4be44fc2005-08-05 00:44:28 -0400571#endif /* CONFIG_ACPI_HOTPLUG_CPU */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
Len Brown4be44fc2005-08-05 00:44:28 -0400573int acpi_register_ioapic(acpi_handle handle, u64 phys_addr, u32 gsi_base)
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700574{
575 /* TBD */
576 return -EINVAL;
577}
Len Brown4be44fc2005-08-05 00:44:28 -0400578
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700579EXPORT_SYMBOL(acpi_register_ioapic);
580
Len Brown4be44fc2005-08-05 00:44:28 -0400581int acpi_unregister_ioapic(acpi_handle handle, 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_unregister_ioapic);
588
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300589static int __init acpi_parse_sbf(struct acpi_table_header *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590{
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300591 struct acpi_table_boot *sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300593 sb = (struct acpi_table_boot *)table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 if (!sb) {
595 printk(KERN_WARNING PREFIX "Unable to map SBF\n");
596 return -ENODEV;
597 }
598
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300599 sbf_port = sb->cmos_index; /* Save CMOS port */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
601 return 0;
602}
603
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604#ifdef CONFIG_HPET_TIMER
john stultz2d0c87c2007-02-16 01:28:18 -0800605#include <asm/hpet.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
Aaron Durbina1dfd852007-07-21 17:11:39 +0200607static struct __initdata resource *hpet_res;
608
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300609static int __init acpi_parse_hpet(struct acpi_table_header *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610{
611 struct acpi_table_hpet *hpet_tbl;
612
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300613 hpet_tbl = (struct acpi_table_hpet *)table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 if (!hpet_tbl) {
615 printk(KERN_WARNING PREFIX "Unable to map HPET\n");
616 return -ENODEV;
617 }
618
Alexey Starikovskiyad363f82007-02-02 19:48:22 +0300619 if (hpet_tbl->address.space_id != ACPI_SPACE_MEM) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 printk(KERN_WARNING PREFIX "HPET timers must be located in "
621 "memory.\n");
622 return -1;
623 }
adurbin@google.comf0f4c342006-09-26 10:52:39 +0200624
john stultz2d0c87c2007-02-16 01:28:18 -0800625 hpet_address = hpet_tbl->address.address;
Thomas Gleixnerf4df73c2007-11-15 21:41:50 -0500626
627 /*
628 * Some broken BIOSes advertise HPET at 0x0. We really do not
629 * want to allocate a resource there.
630 */
631 if (!hpet_address) {
632 printk(KERN_WARNING PREFIX
633 "HPET id: %#x base: %#lx is invalid\n",
634 hpet_tbl->id, hpet_address);
635 return 0;
636 }
637#ifdef CONFIG_X86_64
638 /*
639 * Some even more broken BIOSes advertise HPET at
640 * 0xfed0000000000000 instead of 0xfed00000. Fix it up and add
641 * some noise:
642 */
643 if (hpet_address == 0xfed0000000000000UL) {
644 if (!hpet_force_user) {
645 printk(KERN_WARNING PREFIX "HPET id: %#x "
646 "base: 0xfed0000000000000 is bogus\n "
647 "try hpet=force on the kernel command line to "
648 "fix it up to 0xfed00000.\n", hpet_tbl->id);
649 hpet_address = 0;
650 return 0;
651 }
652 printk(KERN_WARNING PREFIX
653 "HPET id: %#x base: 0xfed0000000000000 fixed up "
654 "to 0xfed00000.\n", hpet_tbl->id);
655 hpet_address >>= 32;
656 }
657#endif
Len Brown4be44fc2005-08-05 00:44:28 -0400658 printk(KERN_INFO PREFIX "HPET id: %#x base: %#lx\n",
john stultz2d0c87c2007-02-16 01:28:18 -0800659 hpet_tbl->id, hpet_address);
adurbin@google.comf0f4c342006-09-26 10:52:39 +0200660
Aaron Durbina1dfd852007-07-21 17:11:39 +0200661 /*
662 * Allocate and initialize the HPET firmware resource for adding into
663 * the resource tree during the lateinit timeframe.
664 */
665#define HPET_RESOURCE_NAME_SIZE 9
666 hpet_res = alloc_bootmem(sizeof(*hpet_res) + HPET_RESOURCE_NAME_SIZE);
667
Aaron Durbina1dfd852007-07-21 17:11:39 +0200668 hpet_res->name = (void *)&hpet_res[1];
669 hpet_res->flags = IORESOURCE_MEM;
670 snprintf((char *)hpet_res->name, HPET_RESOURCE_NAME_SIZE, "HPET %u",
671 hpet_tbl->sequence);
672
673 hpet_res->start = hpet_address;
674 hpet_res->end = hpet_address + (1 * 1024) - 1;
675
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 return 0;
677}
Aaron Durbina1dfd852007-07-21 17:11:39 +0200678
679/*
680 * hpet_insert_resource inserts the HPET resources used into the resource
681 * tree.
682 */
683static __init int hpet_insert_resource(void)
684{
685 if (!hpet_res)
686 return 1;
687
688 return insert_resource(&iomem_resource, hpet_res);
689}
690
691late_initcall(hpet_insert_resource);
692
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693#else
694#define acpi_parse_hpet NULL
695#endif
696
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300697static int __init acpi_parse_fadt(struct acpi_table_header *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698{
Jason Davis90660ec2005-04-16 15:24:53 -0700699
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700#ifdef CONFIG_X86_PM_TIMER
701 /* detect the location of the ACPI PM Timer */
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300702 if (acpi_gbl_FADT.header.revision >= FADT2_REVISION_ID) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 /* FADT rev. 2 */
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300704 if (acpi_gbl_FADT.xpm_timer_block.space_id !=
Len Brown4be44fc2005-08-05 00:44:28 -0400705 ACPI_ADR_SPACE_SYSTEM_IO)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 return 0;
707
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300708 pmtmr_ioport = acpi_gbl_FADT.xpm_timer_block.address;
David Shaohua Lie6e87b42005-09-21 01:35:00 -0400709 /*
710 * "X" fields are optional extensions to the original V1.0
711 * fields, so we must selectively expand V1.0 fields if the
712 * corresponding X field is zero.
713 */
714 if (!pmtmr_ioport)
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300715 pmtmr_ioport = acpi_gbl_FADT.pm_timer_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 } else {
717 /* FADT rev. 1 */
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300718 pmtmr_ioport = acpi_gbl_FADT.pm_timer_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 }
720 if (pmtmr_ioport)
Len Brown4be44fc2005-08-05 00:44:28 -0400721 printk(KERN_INFO PREFIX "PM-Timer IO Port: %#x\n",
722 pmtmr_ioport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723#endif
724 return 0;
725}
726
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727#ifdef CONFIG_X86_LOCAL_APIC
728/*
729 * Parse LAPIC entries in MADT
730 * returns 0 on success, < 0 on error
731 */
Alexey Starikovskiy31d20922008-04-04 23:41:57 +0400732
733static void __init acpi_register_lapic_address(unsigned long address)
734{
735 mp_lapic_addr = address;
736
737 set_fixmap_nocache(FIX_APIC_BASE, address);
Yinghai Lufb3bbd62008-05-22 18:22:30 -0700738 if (boot_cpu_physical_apicid == -1U) {
Yinghai Lu4c9961d2008-07-11 18:44:16 -0700739 boot_cpu_physical_apicid = read_apic_id();
Yinghai Lufb3bbd62008-05-22 18:22:30 -0700740 apic_version[boot_cpu_physical_apicid] =
741 GET_APIC_VERSION(apic_read(APIC_LVR));
Yinghai Lufb3bbd62008-05-22 18:22:30 -0700742 }
Alexey Starikovskiy31d20922008-04-04 23:41:57 +0400743}
744
Yinghai Lucbf9bd62008-02-19 03:21:06 -0800745static int __init early_acpi_parse_madt_lapic_addr_ovr(void)
746{
747 int count;
748
749 if (!cpu_has_apic)
750 return -ENODEV;
751
752 /*
753 * Note that the LAPIC address is obtained from the MADT (32-bit value)
754 * and (optionally) overriden by a LAPIC_ADDR_OVR entry (64-bit value).
755 */
756
757 count =
758 acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_APIC_OVERRIDE,
759 acpi_parse_lapic_addr_ovr, 0);
760 if (count < 0) {
761 printk(KERN_ERR PREFIX
762 "Error parsing LAPIC address override entry\n");
763 return count;
764 }
765
766 acpi_register_lapic_address(acpi_lapic_addr);
767
768 return count;
769}
770
Len Brown4be44fc2005-08-05 00:44:28 -0400771static int __init acpi_parse_madt_lapic_entries(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772{
773 int count;
Suresh Siddha7237d3d2009-03-30 13:55:30 -0800774 int x2count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
Andi Kleen0fcd2702006-04-11 12:54:36 +0200776 if (!cpu_has_apic)
777 return -ENODEV;
778
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300779 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 * Note that the LAPIC address is obtained from the MADT (32-bit value)
781 * and (optionally) overriden by a LAPIC_ADDR_OVR entry (64-bit value).
782 */
783
Len Brown4be44fc2005-08-05 00:44:28 -0400784 count =
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300785 acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_APIC_OVERRIDE,
Len Brown4be44fc2005-08-05 00:44:28 -0400786 acpi_parse_lapic_addr_ovr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 if (count < 0) {
Len Brown4be44fc2005-08-05 00:44:28 -0400788 printk(KERN_ERR PREFIX
789 "Error parsing LAPIC address override entry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 return count;
791 }
792
Alexey Starikovskiy31d20922008-04-04 23:41:57 +0400793 acpi_register_lapic_address(acpi_lapic_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
Jack Steinerac049c12008-03-28 14:12:09 -0500795 count = acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_SAPIC,
796 acpi_parse_sapic, MAX_APICS);
797
Suresh Siddha7237d3d2009-03-30 13:55:30 -0800798 if (!count) {
799 x2count = acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_X2APIC,
800 acpi_parse_x2apic, MAX_APICS);
Jack Steinerac049c12008-03-28 14:12:09 -0500801 count = acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_APIC,
802 acpi_parse_lapic, MAX_APICS);
Suresh Siddha7237d3d2009-03-30 13:55:30 -0800803 }
804 if (!count && !x2count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 printk(KERN_ERR PREFIX "No LAPIC entries present\n");
806 /* TBD: Cleanup to allow fallback to MPS */
807 return -ENODEV;
Suresh Siddha7237d3d2009-03-30 13:55:30 -0800808 } else if (count < 0 || x2count < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 printk(KERN_ERR PREFIX "Error parsing LAPIC entry\n");
810 /* TBD: Cleanup to allow fallback to MPS */
811 return count;
812 }
813
Suresh Siddha7237d3d2009-03-30 13:55:30 -0800814 x2count =
815 acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_X2APIC_NMI,
816 acpi_parse_x2apic_nmi, 0);
Len Brown4be44fc2005-08-05 00:44:28 -0400817 count =
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300818 acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_APIC_NMI, acpi_parse_lapic_nmi, 0);
Suresh Siddha7237d3d2009-03-30 13:55:30 -0800819 if (count < 0 || x2count < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 printk(KERN_ERR PREFIX "Error parsing LAPIC NMI entry\n");
821 /* TBD: Cleanup to allow fallback to MPS */
822 return count;
823 }
824 return 0;
825}
Len Brown4be44fc2005-08-05 00:44:28 -0400826#endif /* CONFIG_X86_LOCAL_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827
Len Brown84663612005-08-24 12:09:07 -0400828#ifdef CONFIG_X86_IO_APIC
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400829#define MP_ISA_BUS 0
830
Yinghai Lud49c4282008-06-08 18:31:54 -0700831#ifdef CONFIG_X86_ES7000
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400832extern int es7000_plat;
833#endif
834
Alexey Starikovskiy5f895142008-05-14 19:03:04 +0400835static struct {
836 int apic_id;
837 int gsi_base;
838 int gsi_end;
839 DECLARE_BITMAP(pin_programmed, MP_MAX_IOAPIC_PIN + 1);
840} mp_ioapic_routing[MAX_IO_APICS];
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400841
Jeremy Fitzhardinge4924e222009-02-09 12:05:47 -0800842int mp_find_ioapic(int gsi)
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400843{
844 int i = 0;
845
846 /* Find the IOAPIC that manages this GSI. */
847 for (i = 0; i < nr_ioapics; i++) {
848 if ((gsi >= mp_ioapic_routing[i].gsi_base)
849 && (gsi <= mp_ioapic_routing[i].gsi_end))
850 return i;
851 }
852
853 printk(KERN_ERR "ERROR: Unable to locate IOAPIC for GSI %d\n", gsi);
854 return -1;
855}
856
Jeremy Fitzhardingec3e137d2009-02-09 12:05:47 -0800857int mp_find_ioapic_pin(int ioapic, int gsi)
858{
859 if (WARN_ON(ioapic == -1))
860 return -1;
861 if (WARN_ON(gsi > mp_ioapic_routing[ioapic].gsi_end))
862 return -1;
863
864 return gsi - mp_ioapic_routing[ioapic].gsi_base;
865}
866
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400867static u8 __init uniq_ioapic_id(u8 id)
868{
869#ifdef CONFIG_X86_32
870 if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
871 !APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
872 return io_apic_get_unique_id(nr_ioapics, id);
873 else
874 return id;
875#else
876 int i;
877 DECLARE_BITMAP(used, 256);
878 bitmap_zero(used, 256);
879 for (i = 0; i < nr_ioapics; i++) {
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +0530880 struct mpc_ioapic *ia = &mp_ioapics[i];
881 __set_bit(ia->apicid, used);
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400882 }
883 if (!test_bit(id, used))
884 return id;
885 return find_first_zero_bit(used, 256);
886#endif
887}
888
889static int bad_ioapic(unsigned long address)
890{
891 if (nr_ioapics >= MAX_IO_APICS) {
892 printk(KERN_ERR "ERROR: Max # of I/O APICs (%d) exceeded "
893 "(found %d)\n", MAX_IO_APICS, nr_ioapics);
894 panic("Recompile kernel with bigger MAX_IO_APICS!\n");
895 }
896 if (!address) {
897 printk(KERN_ERR "WARNING: Bogus (zero) I/O APIC address"
898 " found in table, skipping!\n");
899 return 1;
900 }
901 return 0;
902}
903
904void __init mp_register_ioapic(int id, u32 address, u32 gsi_base)
905{
906 int idx = 0;
907
908 if (bad_ioapic(address))
909 return;
910
911 idx = nr_ioapics;
912
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +0530913 mp_ioapics[idx].type = MP_IOAPIC;
914 mp_ioapics[idx].flags = MPC_APIC_USABLE;
915 mp_ioapics[idx].apicaddr = address;
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400916
917 set_fixmap_nocache(FIX_IO_APIC_BASE_0 + idx, address);
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +0530918 mp_ioapics[idx].apicid = uniq_ioapic_id(id);
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400919#ifdef CONFIG_X86_32
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +0530920 mp_ioapics[idx].apicver = io_apic_get_version(idx);
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400921#else
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +0530922 mp_ioapics[idx].apicver = 0;
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400923#endif
924 /*
925 * Build basic GSI lookup table to facilitate gsi->io_apic lookups
926 * and to prevent reprogramming of IOAPIC pins (PCI GSIs).
927 */
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +0530928 mp_ioapic_routing[idx].apic_id = mp_ioapics[idx].apicid;
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400929 mp_ioapic_routing[idx].gsi_base = gsi_base;
930 mp_ioapic_routing[idx].gsi_end = gsi_base +
931 io_apic_get_redir_entries(idx);
932
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +0530933 printk(KERN_INFO "IOAPIC[%d]: apic_id %d, version %d, address 0x%x, "
934 "GSI %d-%d\n", idx, mp_ioapics[idx].apicid,
935 mp_ioapics[idx].apicver, mp_ioapics[idx].apicaddr,
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400936 mp_ioapic_routing[idx].gsi_base, mp_ioapic_routing[idx].gsi_end);
937
938 nr_ioapics++;
939}
940
Yinghai Lu3f4a7392009-02-08 16:18:03 -0800941int __init acpi_probe_gsi(void)
942{
943 int idx;
944 int gsi;
945 int max_gsi = 0;
946
947 if (acpi_disabled)
948 return 0;
949
950 if (!acpi_ioapic)
951 return 0;
952
953 max_gsi = 0;
954 for (idx = 0; idx < nr_ioapics; idx++) {
955 gsi = mp_ioapic_routing[idx].gsi_end;
956
957 if (gsi > max_gsi)
958 max_gsi = gsi;
959 }
960
961 return max_gsi + 1;
962}
963
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530964static void assign_to_mp_irq(struct mpc_intsrc *m,
965 struct mpc_intsrc *mp_irq)
Yinghai Lufcfa1462008-06-18 17:29:31 -0700966{
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530967 memcpy(mp_irq, m, sizeof(struct mpc_intsrc));
Yinghai Lufcfa1462008-06-18 17:29:31 -0700968}
969
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530970static int mp_irq_cmp(struct mpc_intsrc *mp_irq,
971 struct mpc_intsrc *m)
Yinghai Lufcfa1462008-06-18 17:29:31 -0700972{
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530973 return memcmp(mp_irq, m, sizeof(struct mpc_intsrc));
Yinghai Lufcfa1462008-06-18 17:29:31 -0700974}
975
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530976static void save_mp_irq(struct mpc_intsrc *m)
Yinghai Lufcfa1462008-06-18 17:29:31 -0700977{
978 int i;
979
980 for (i = 0; i < mp_irq_entries; i++) {
981 if (!mp_irq_cmp(&mp_irqs[i], m))
982 return;
983 }
984
985 assign_to_mp_irq(m, &mp_irqs[mp_irq_entries]);
986 if (++mp_irq_entries == MAX_IRQ_SOURCES)
987 panic("Max # of irq sources exceeded!!\n");
988}
989
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400990void __init mp_override_legacy_irq(u8 bus_irq, u8 polarity, u8 trigger, u32 gsi)
991{
Yinghai Lu6df88092008-06-15 18:19:46 -0700992 int ioapic;
993 int pin;
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +0530994 struct mpc_intsrc mp_irq;
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400995
996 /*
997 * Convert 'gsi' to 'ioapic.pin'.
998 */
999 ioapic = mp_find_ioapic(gsi);
1000 if (ioapic < 0)
1001 return;
Jeremy Fitzhardingec3e137d2009-02-09 12:05:47 -08001002 pin = mp_find_ioapic_pin(ioapic, gsi);
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001003
1004 /*
1005 * TBD: This check is for faulty timer entries, where the override
1006 * erroneously sets the trigger to level, resulting in a HUGE
1007 * increase of timer interrupts!
1008 */
1009 if ((bus_irq == 0) && (trigger == 3))
1010 trigger = 1;
1011
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301012 mp_irq.type = MP_INTSRC;
1013 mp_irq.irqtype = mp_INT;
1014 mp_irq.irqflag = (trigger << 2) | polarity;
1015 mp_irq.srcbus = MP_ISA_BUS;
1016 mp_irq.srcbusirq = bus_irq; /* IRQ */
1017 mp_irq.dstapic = mp_ioapics[ioapic].apicid; /* APIC ID */
1018 mp_irq.dstirq = pin; /* INTIN# */
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001019
Yinghai Lufcfa1462008-06-18 17:29:31 -07001020 save_mp_irq(&mp_irq);
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001021}
1022
1023void __init mp_config_acpi_legacy_irqs(void)
1024{
Yinghai Lu6df88092008-06-15 18:19:46 -07001025 int i;
1026 int ioapic;
1027 unsigned int dstapic;
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301028 struct mpc_intsrc mp_irq;
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001029
1030#if defined (CONFIG_MCA) || defined (CONFIG_EISA)
1031 /*
1032 * Fabricate the legacy ISA bus (bus #31).
1033 */
1034 mp_bus_id_to_type[MP_ISA_BUS] = MP_BUS_ISA;
1035#endif
1036 set_bit(MP_ISA_BUS, mp_bus_not_pci);
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +02001037 pr_debug("Bus #%d is ISA\n", MP_ISA_BUS);
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001038
Yinghai Lud49c4282008-06-08 18:31:54 -07001039#ifdef CONFIG_X86_ES7000
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001040 /*
1041 * Older generations of ES7000 have no legacy identity mappings
1042 */
1043 if (es7000_plat == 1)
1044 return;
1045#endif
1046
1047 /*
1048 * Locate the IOAPIC that manages the ISA IRQs (0-15).
1049 */
1050 ioapic = mp_find_ioapic(0);
1051 if (ioapic < 0)
1052 return;
Jaswinder Singh Rajputb5ba7e62009-01-12 17:46:17 +05301053 dstapic = mp_ioapics[ioapic].apicid;
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001054
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001055 /*
1056 * Use the default configuration for the IRQs 0-15. Unless
1057 * overridden by (MADT) interrupt source override entries.
1058 */
1059 for (i = 0; i < 16; i++) {
1060 int idx;
1061
1062 for (idx = 0; idx < mp_irq_entries; idx++) {
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301063 struct mpc_intsrc *irq = mp_irqs + idx;
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001064
1065 /* Do we already have a mapping for this ISA IRQ? */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301066 if (irq->srcbus == MP_ISA_BUS && irq->srcbusirq == i)
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001067 break;
1068
1069 /* Do we already have a mapping for this IOAPIC pin */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301070 if (irq->dstapic == dstapic && irq->dstirq == i)
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001071 break;
1072 }
1073
1074 if (idx != mp_irq_entries) {
1075 printk(KERN_DEBUG "ACPI: IRQ%d used by override.\n", i);
1076 continue; /* IRQ already used */
1077 }
1078
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301079 mp_irq.type = MP_INTSRC;
1080 mp_irq.irqflag = 0; /* Conforming */
1081 mp_irq.srcbus = MP_ISA_BUS;
1082 mp_irq.dstapic = dstapic;
1083 mp_irq.irqtype = mp_INT;
1084 mp_irq.srcbusirq = i; /* Identity mapped */
1085 mp_irq.dstirq = i;
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001086
Yinghai Lufcfa1462008-06-18 17:29:31 -07001087 save_mp_irq(&mp_irq);
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001088 }
1089}
1090
1091int mp_register_gsi(u32 gsi, int triggering, int polarity)
1092{
1093 int ioapic;
1094 int ioapic_pin;
1095#ifdef CONFIG_X86_32
1096#define MAX_GSI_NUM 4096
1097#define IRQ_COMPRESSION_START 64
1098
1099 static int pci_irq = IRQ_COMPRESSION_START;
1100 /*
1101 * Mapping between Global System Interrupts, which
1102 * represent all possible interrupts, and IRQs
1103 * assigned to actual devices.
1104 */
1105 static int gsi_to_irq[MAX_GSI_NUM];
1106#else
1107
1108 if (acpi_irq_model != ACPI_IRQ_MODEL_IOAPIC)
1109 return gsi;
1110#endif
1111
1112 /* Don't set up the ACPI SCI because it's already set up */
1113 if (acpi_gbl_FADT.sci_interrupt == gsi)
1114 return gsi;
1115
1116 ioapic = mp_find_ioapic(gsi);
1117 if (ioapic < 0) {
1118 printk(KERN_WARNING "No IOAPIC for GSI %u\n", gsi);
1119 return gsi;
1120 }
1121
Jeremy Fitzhardingec3e137d2009-02-09 12:05:47 -08001122 ioapic_pin = mp_find_ioapic_pin(ioapic, gsi);
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001123
1124#ifdef CONFIG_X86_32
1125 if (ioapic_renumber_irq)
1126 gsi = ioapic_renumber_irq(ioapic, gsi);
1127#endif
1128
1129 /*
1130 * Avoid pin reprogramming. PRTs typically include entries
1131 * with redundant pin->gsi mappings (but unique PCI devices);
1132 * we only program the IOAPIC on the first.
1133 */
1134 if (ioapic_pin > MP_MAX_IOAPIC_PIN) {
1135 printk(KERN_ERR "Invalid reference to IOAPIC pin "
1136 "%d-%d\n", mp_ioapic_routing[ioapic].apic_id,
1137 ioapic_pin);
1138 return gsi;
1139 }
1140 if (test_bit(ioapic_pin, mp_ioapic_routing[ioapic].pin_programmed)) {
Gustavo F. Padovan55410792008-10-15 10:37:04 -03001141 pr_debug("Pin %d-%d already programmed\n",
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +02001142 mp_ioapic_routing[ioapic].apic_id, ioapic_pin);
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001143#ifdef CONFIG_X86_32
1144 return (gsi < IRQ_COMPRESSION_START ? gsi : gsi_to_irq[gsi]);
1145#else
1146 return gsi;
1147#endif
1148 }
1149
1150 set_bit(ioapic_pin, mp_ioapic_routing[ioapic].pin_programmed);
1151#ifdef CONFIG_X86_32
1152 /*
1153 * For GSI >= 64, use IRQ compression
1154 */
1155 if ((gsi >= IRQ_COMPRESSION_START)
1156 && (triggering == ACPI_LEVEL_SENSITIVE)) {
1157 /*
1158 * For PCI devices assign IRQs in order, avoiding gaps
1159 * due to unused I/O APIC pins.
1160 */
1161 int irq = gsi;
1162 if (gsi < MAX_GSI_NUM) {
1163 /*
1164 * Retain the VIA chipset work-around (gsi > 15), but
1165 * avoid a problem where the 8254 timer (IRQ0) is setup
1166 * via an override (so it's not on pin 0 of the ioapic),
1167 * and at the same time, the pin 0 interrupt is a PCI
1168 * type. The gsi > 15 test could cause these two pins
1169 * to be shared as IRQ0, and they are not shareable.
1170 * So test for this condition, and if necessary, avoid
1171 * the pin collision.
1172 */
1173 gsi = pci_irq++;
1174 /*
1175 * Don't assign IRQ used by ACPI SCI
1176 */
1177 if (gsi == acpi_gbl_FADT.sci_interrupt)
1178 gsi = pci_irq++;
1179 gsi_to_irq[irq] = gsi;
1180 } else {
1181 printk(KERN_ERR "GSI %u is too high\n", gsi);
1182 return gsi;
1183 }
1184 }
1185#endif
1186 io_apic_set_pci_routing(ioapic, ioapic_pin, gsi,
1187 triggering == ACPI_EDGE_SENSITIVE ? 0 : 1,
1188 polarity == ACPI_ACTIVE_HIGH ? 0 : 1);
1189 return gsi;
1190}
1191
Yinghai Lu2944e162008-06-01 13:17:38 -07001192int mp_config_acpi_gsi(unsigned char number, unsigned int devfn, u8 pin,
1193 u32 gsi, int triggering, int polarity)
1194{
Yinghai Lufcfa1462008-06-18 17:29:31 -07001195#ifdef CONFIG_X86_MPPARSE
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301196 struct mpc_intsrc mp_irq;
Yinghai Lu2944e162008-06-01 13:17:38 -07001197 int ioapic;
1198
Yinghai Lufcfa1462008-06-18 17:29:31 -07001199 if (!acpi_ioapic)
Yinghai Lud867e532008-06-14 01:26:41 -07001200 return 0;
1201
Yinghai Lu2944e162008-06-01 13:17:38 -07001202 /* print the entry should happen on mptable identically */
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301203 mp_irq.type = MP_INTSRC;
1204 mp_irq.irqtype = mp_INT;
1205 mp_irq.irqflag = (triggering == ACPI_EDGE_SENSITIVE ? 4 : 0x0c) |
Yinghai Lu2944e162008-06-01 13:17:38 -07001206 (polarity == ACPI_ACTIVE_HIGH ? 1 : 3);
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301207 mp_irq.srcbus = number;
1208 mp_irq.srcbusirq = (((devfn >> 3) & 0x1f) << 2) | ((pin - 1) & 3);
Yinghai Lu2944e162008-06-01 13:17:38 -07001209 ioapic = mp_find_ioapic(gsi);
Jaswinder Singh Rajputc2c21742009-01-12 17:47:22 +05301210 mp_irq.dstapic = mp_ioapic_routing[ioapic].apic_id;
Jeremy Fitzhardingec3e137d2009-02-09 12:05:47 -08001211 mp_irq.dstirq = mp_find_ioapic_pin(ioapic, gsi);
Yinghai Lu2944e162008-06-01 13:17:38 -07001212
Yinghai Lufcfa1462008-06-18 17:29:31 -07001213 save_mp_irq(&mp_irq);
1214#endif
Yinghai Lu2944e162008-06-01 13:17:38 -07001215 return 0;
1216}
1217
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218/*
1219 * Parse IOAPIC related entries in MADT
1220 * returns 0 on success, < 0 on error
1221 */
Len Brown4be44fc2005-08-05 00:44:28 -04001222static int __init acpi_parse_madt_ioapic_entries(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223{
1224 int count;
1225
1226 /*
1227 * ACPI interpreter is required to complete interrupt setup,
1228 * so if it is off, don't enumerate the io-apics with ACPI.
1229 * If MPS is present, it will handle them,
1230 * otherwise the system will stay in PIC mode
1231 */
1232 if (acpi_disabled || acpi_noirq) {
1233 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -04001234 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001236 if (!cpu_has_apic)
Andi Kleend3b6a342006-04-07 19:49:39 +02001237 return -ENODEV;
1238
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 /*
Len Brown4be44fc2005-08-05 00:44:28 -04001240 * if "noapic" boot option, don't look for IO-APICs
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 */
1242 if (skip_ioapic_setup) {
1243 printk(KERN_INFO PREFIX "Skipping IOAPIC probe "
Len Brown4be44fc2005-08-05 00:44:28 -04001244 "due to 'noapic' option.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 return -ENODEV;
1246 }
1247
Len Brown4be44fc2005-08-05 00:44:28 -04001248 count =
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001249 acpi_table_parse_madt(ACPI_MADT_TYPE_IO_APIC, acpi_parse_ioapic,
Len Brown4be44fc2005-08-05 00:44:28 -04001250 MAX_IO_APICS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 if (!count) {
1252 printk(KERN_ERR PREFIX "No IOAPIC entries present\n");
1253 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -04001254 } else if (count < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 printk(KERN_ERR PREFIX "Error parsing IOAPIC entry\n");
1256 return count;
1257 }
1258
Len Brown4be44fc2005-08-05 00:44:28 -04001259 count =
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001260 acpi_table_parse_madt(ACPI_MADT_TYPE_INTERRUPT_OVERRIDE, acpi_parse_int_src_ovr,
Yinghai Lu71f521b2008-08-19 20:50:03 -07001261 nr_irqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 if (count < 0) {
Len Brown4be44fc2005-08-05 00:44:28 -04001263 printk(KERN_ERR PREFIX
1264 "Error parsing interrupt source overrides entry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 /* TBD: Cleanup to allow fallback to MPS */
1266 return count;
1267 }
1268
1269 /*
1270 * If BIOS did not supply an INT_SRC_OVR for the SCI
1271 * pretend we got one so we can set the SCI flags.
1272 */
1273 if (!acpi_sci_override_gsi)
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001274 acpi_sci_ioapic_setup(acpi_gbl_FADT.sci_interrupt, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
1276 /* Fill in identity legacy mapings where no override */
1277 mp_config_acpi_legacy_irqs();
1278
Len Brown4be44fc2005-08-05 00:44:28 -04001279 count =
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001280 acpi_table_parse_madt(ACPI_MADT_TYPE_NMI_SOURCE, acpi_parse_nmi_src,
Yinghai Lu71f521b2008-08-19 20:50:03 -07001281 nr_irqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 if (count < 0) {
1283 printk(KERN_ERR PREFIX "Error parsing NMI SRC entry\n");
1284 /* TBD: Cleanup to allow fallback to MPS */
1285 return count;
1286 }
1287
1288 return 0;
1289}
1290#else
1291static inline int acpi_parse_madt_ioapic_entries(void)
1292{
1293 return -1;
1294}
Len Brown84663612005-08-24 12:09:07 -04001295#endif /* !CONFIG_X86_IO_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
Yinghai Lucbf9bd62008-02-19 03:21:06 -08001297static void __init early_acpi_process_madt(void)
1298{
1299#ifdef CONFIG_X86_LOCAL_APIC
1300 int error;
1301
1302 if (!acpi_table_parse(ACPI_SIG_MADT, acpi_parse_madt)) {
1303
1304 /*
1305 * Parse MADT LAPIC entries
1306 */
1307 error = early_acpi_parse_madt_lapic_addr_ovr();
1308 if (!error) {
1309 acpi_lapic = 1;
1310 smp_found_config = 1;
1311 }
1312 if (error == -EINVAL) {
1313 /*
1314 * Dell Precision Workstation 410, 610 come here.
1315 */
1316 printk(KERN_ERR PREFIX
1317 "Invalid BIOS MADT, disabling ACPI\n");
1318 disable_acpi();
1319 }
1320 }
1321#endif
1322}
1323
Len Brown4be44fc2005-08-05 00:44:28 -04001324static void __init acpi_process_madt(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325{
1326#ifdef CONFIG_X86_LOCAL_APIC
Len Brown7f8f97c2007-02-10 21:28:03 -05001327 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
Len Brown7f8f97c2007-02-10 21:28:03 -05001329 if (!acpi_table_parse(ACPI_SIG_MADT, acpi_parse_madt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330
1331 /*
1332 * Parse MADT LAPIC entries
1333 */
1334 error = acpi_parse_madt_lapic_entries();
1335 if (!error) {
1336 acpi_lapic = 1;
1337
Yinghai Lu26f7ef12009-01-29 14:19:22 -08001338#ifdef CONFIG_X86_BIGSMP
Venkatesh Pallipadi911a62d2005-09-03 15:56:31 -07001339 generic_bigsmp_probe();
1340#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 /*
1342 * Parse MADT IO-APIC entries
1343 */
1344 error = acpi_parse_madt_ioapic_entries();
1345 if (!error) {
1346 acpi_irq_model = ACPI_IRQ_MODEL_IOAPIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 acpi_ioapic = 1;
1348
1349 smp_found_config = 1;
Ingo Molnar72ce0162009-01-28 06:50:47 +01001350 if (apic->setup_apic_routing)
1351 apic->setup_apic_routing();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 }
1353 }
1354 if (error == -EINVAL) {
1355 /*
1356 * Dell Precision Workstation 410, 610 come here.
1357 */
Len Brown4be44fc2005-08-05 00:44:28 -04001358 printk(KERN_ERR PREFIX
1359 "Invalid BIOS MADT, disabling ACPI\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 disable_acpi();
1361 }
Len Brown7b37b5f2008-12-23 01:47:42 -05001362 } else {
1363 /*
1364 * ACPI found no MADT, and so ACPI wants UP PIC mode.
1365 * In the event an MPS table was found, forget it.
1366 * Boot with "acpi=off" to use MPS on such a system.
1367 */
1368 if (smp_found_config) {
1369 printk(KERN_WARNING PREFIX
1370 "No APIC-table, disabling MPS\n");
1371 smp_found_config = 0;
1372 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 }
Yinghai Lu69b88af2008-12-05 22:45:50 -08001374
1375 /*
1376 * ACPI supports both logical (e.g. Hyper-Threading) and physical
1377 * processors, where MPS only supports physical.
1378 */
1379 if (acpi_lapic && acpi_ioapic)
1380 printk(KERN_INFO "Using ACPI (MADT) for SMP configuration "
1381 "information\n");
1382 else if (acpi_lapic)
1383 printk(KERN_INFO "Using ACPI for processor (LAPIC) "
1384 "configuration information\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385#endif
1386 return;
1387}
1388
Jeff Garzik18552562007-10-03 15:15:40 -04001389static int __init disable_acpi_irq(const struct dmi_system_id *d)
Andrey Paninaea00142005-06-25 14:54:42 -07001390{
1391 if (!acpi_force) {
1392 printk(KERN_NOTICE "%s detected: force use of acpi=noirq\n",
1393 d->ident);
1394 acpi_noirq_set();
1395 }
1396 return 0;
1397}
1398
Jeff Garzik18552562007-10-03 15:15:40 -04001399static int __init disable_acpi_pci(const struct dmi_system_id *d)
Andrey Paninaea00142005-06-25 14:54:42 -07001400{
1401 if (!acpi_force) {
1402 printk(KERN_NOTICE "%s detected: force use of pci=noacpi\n",
1403 d->ident);
1404 acpi_disable_pci();
1405 }
1406 return 0;
1407}
Andrey Paninaea00142005-06-25 14:54:42 -07001408
Jeff Garzik18552562007-10-03 15:15:40 -04001409static int __init dmi_disable_acpi(const struct dmi_system_id *d)
Andrey Paninaea00142005-06-25 14:54:42 -07001410{
1411 if (!acpi_force) {
Len Brown4be44fc2005-08-05 00:44:28 -04001412 printk(KERN_NOTICE "%s detected: acpi off\n", d->ident);
Andrey Paninaea00142005-06-25 14:54:42 -07001413 disable_acpi();
1414 } else {
1415 printk(KERN_NOTICE
1416 "Warning: DMI blacklist says broken, but acpi forced\n");
1417 }
1418 return 0;
1419}
1420
1421/*
1422 * Limit ACPI to CPU enumeration for HT
1423 */
Jeff Garzik18552562007-10-03 15:15:40 -04001424static int __init force_acpi_ht(const struct dmi_system_id *d)
Andrey Paninaea00142005-06-25 14:54:42 -07001425{
1426 if (!acpi_force) {
Len Brown4be44fc2005-08-05 00:44:28 -04001427 printk(KERN_NOTICE "%s detected: force use of acpi=ht\n",
1428 d->ident);
Andrey Paninaea00142005-06-25 14:54:42 -07001429 disable_acpi();
1430 acpi_ht = 1;
1431 } else {
1432 printk(KERN_NOTICE
1433 "Warning: acpi=force overrules DMI blacklist: acpi=ht\n");
1434 }
1435 return 0;
1436}
1437
1438/*
Rafael J. Wysockie2079c42008-07-08 16:12:26 +02001439 * Force ignoring BIOS IRQ0 pin2 override
1440 */
1441static int __init dmi_ignore_irq0_timer_override(const struct dmi_system_id *d)
1442{
Ingo Molnar8d89adf2008-10-07 06:47:52 +02001443 /*
1444 * The ati_ixp4x0_rev() early PCI quirk should have set
1445 * the acpi_skip_timer_override flag already:
1446 */
1447 if (!acpi_skip_timer_override) {
1448 WARN(1, KERN_ERR "ati_ixp4x0 quirk not complete.\n");
1449 pr_notice("%s detected: Ignoring BIOS IRQ0 pin2 override\n",
1450 d->ident);
1451 acpi_skip_timer_override = 1;
1452 }
Rafael J. Wysockie2079c42008-07-08 16:12:26 +02001453 return 0;
1454}
1455
1456/*
Andrey Paninaea00142005-06-25 14:54:42 -07001457 * If your system is blacklisted here, but you find that acpi=force
Zhang Rui5b4c0b62009-04-01 01:49:42 -04001458 * works for you, please contact linux-acpi@vger.kernel.org
Andrey Paninaea00142005-06-25 14:54:42 -07001459 */
1460static struct dmi_system_id __initdata acpi_dmi_table[] = {
1461 /*
1462 * Boxes that need ACPI disabled
1463 */
1464 {
Len Brown4be44fc2005-08-05 00:44:28 -04001465 .callback = dmi_disable_acpi,
1466 .ident = "IBM Thinkpad",
1467 .matches = {
1468 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1469 DMI_MATCH(DMI_BOARD_NAME, "2629H1G"),
1470 },
1471 },
Andrey Paninaea00142005-06-25 14:54:42 -07001472
1473 /*
1474 * Boxes that need acpi=ht
1475 */
1476 {
Len Brown4be44fc2005-08-05 00:44:28 -04001477 .callback = force_acpi_ht,
1478 .ident = "FSC Primergy T850",
1479 .matches = {
1480 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
1481 DMI_MATCH(DMI_PRODUCT_NAME, "PRIMERGY T850"),
1482 },
1483 },
Andrey Paninaea00142005-06-25 14:54:42 -07001484 {
Len Brown4be44fc2005-08-05 00:44:28 -04001485 .callback = force_acpi_ht,
Len Brown4be44fc2005-08-05 00:44:28 -04001486 .ident = "HP VISUALIZE NT Workstation",
1487 .matches = {
1488 DMI_MATCH(DMI_BOARD_VENDOR, "Hewlett-Packard"),
1489 DMI_MATCH(DMI_PRODUCT_NAME, "HP VISUALIZE NT Workstation"),
1490 },
1491 },
Andrey Paninaea00142005-06-25 14:54:42 -07001492 {
Len Brown4be44fc2005-08-05 00:44:28 -04001493 .callback = force_acpi_ht,
1494 .ident = "Compaq Workstation W8000",
1495 .matches = {
1496 DMI_MATCH(DMI_SYS_VENDOR, "Compaq"),
1497 DMI_MATCH(DMI_PRODUCT_NAME, "Workstation W8000"),
1498 },
1499 },
Andrey Paninaea00142005-06-25 14:54:42 -07001500 {
Len Brown4be44fc2005-08-05 00:44:28 -04001501 .callback = force_acpi_ht,
Len Brown4be44fc2005-08-05 00:44:28 -04001502 .ident = "ASUS P2B-DS",
1503 .matches = {
1504 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1505 DMI_MATCH(DMI_BOARD_NAME, "P2B-DS"),
1506 },
1507 },
Andrey Paninaea00142005-06-25 14:54:42 -07001508 {
Len Brown4be44fc2005-08-05 00:44:28 -04001509 .callback = force_acpi_ht,
1510 .ident = "ASUS CUR-DLS",
1511 .matches = {
1512 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1513 DMI_MATCH(DMI_BOARD_NAME, "CUR-DLS"),
1514 },
1515 },
Andrey Paninaea00142005-06-25 14:54:42 -07001516 {
Len Brown4be44fc2005-08-05 00:44:28 -04001517 .callback = force_acpi_ht,
1518 .ident = "ABIT i440BX-W83977",
1519 .matches = {
1520 DMI_MATCH(DMI_BOARD_VENDOR, "ABIT <http://www.abit.com>"),
1521 DMI_MATCH(DMI_BOARD_NAME, "i440BX-W83977 (BP6)"),
1522 },
1523 },
Andrey Paninaea00142005-06-25 14:54:42 -07001524 {
Len Brown4be44fc2005-08-05 00:44:28 -04001525 .callback = force_acpi_ht,
1526 .ident = "IBM Bladecenter",
1527 .matches = {
1528 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1529 DMI_MATCH(DMI_BOARD_NAME, "IBM eServer BladeCenter HS20"),
1530 },
1531 },
Andrey Paninaea00142005-06-25 14:54:42 -07001532 {
Len Brown4be44fc2005-08-05 00:44:28 -04001533 .callback = force_acpi_ht,
1534 .ident = "IBM eServer xSeries 360",
1535 .matches = {
1536 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1537 DMI_MATCH(DMI_BOARD_NAME, "eServer xSeries 360"),
1538 },
1539 },
Andrey Paninaea00142005-06-25 14:54:42 -07001540 {
Len Brown4be44fc2005-08-05 00:44:28 -04001541 .callback = force_acpi_ht,
1542 .ident = "IBM eserver xSeries 330",
1543 .matches = {
1544 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1545 DMI_MATCH(DMI_BOARD_NAME, "eserver xSeries 330"),
1546 },
1547 },
Andrey Paninaea00142005-06-25 14:54:42 -07001548 {
Len Brown4be44fc2005-08-05 00:44:28 -04001549 .callback = force_acpi_ht,
1550 .ident = "IBM eserver xSeries 440",
1551 .matches = {
1552 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1553 DMI_MATCH(DMI_PRODUCT_NAME, "eserver xSeries 440"),
1554 },
1555 },
Andrey Paninaea00142005-06-25 14:54:42 -07001556
Andrey Paninaea00142005-06-25 14:54:42 -07001557 /*
1558 * Boxes that need ACPI PCI IRQ routing disabled
1559 */
1560 {
Len Brown4be44fc2005-08-05 00:44:28 -04001561 .callback = disable_acpi_irq,
1562 .ident = "ASUS A7V",
1563 .matches = {
1564 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC"),
1565 DMI_MATCH(DMI_BOARD_NAME, "<A7V>"),
1566 /* newer BIOS, Revision 1011, does work */
1567 DMI_MATCH(DMI_BIOS_VERSION,
1568 "ASUS A7V ACPI BIOS Revision 1007"),
1569 },
1570 },
Len Brown74586fc2007-03-08 02:48:30 -05001571 {
1572 /*
1573 * Latest BIOS for IBM 600E (1.16) has bad pcinum
1574 * for LPC bridge, which is needed for the PCI
1575 * interrupt links to work. DSDT fix is in bug 5966.
1576 * 2645, 2646 model numbers are shared with 600/600E/600X
1577 */
1578 .callback = disable_acpi_irq,
1579 .ident = "IBM Thinkpad 600 Series 2645",
1580 .matches = {
1581 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1582 DMI_MATCH(DMI_BOARD_NAME, "2645"),
1583 },
1584 },
1585 {
1586 .callback = disable_acpi_irq,
1587 .ident = "IBM Thinkpad 600 Series 2646",
1588 .matches = {
1589 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1590 DMI_MATCH(DMI_BOARD_NAME, "2646"),
1591 },
1592 },
Andrey Paninaea00142005-06-25 14:54:42 -07001593 /*
1594 * Boxes that need ACPI PCI IRQ routing and PCI scan disabled
1595 */
Len Brown4be44fc2005-08-05 00:44:28 -04001596 { /* _BBN 0 bug */
1597 .callback = disable_acpi_pci,
1598 .ident = "ASUS PR-DLS",
1599 .matches = {
1600 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1601 DMI_MATCH(DMI_BOARD_NAME, "PR-DLS"),
1602 DMI_MATCH(DMI_BIOS_VERSION,
1603 "ASUS PR-DLS ACPI BIOS Revision 1010"),
1604 DMI_MATCH(DMI_BIOS_DATE, "03/21/2003")
1605 },
1606 },
Andrey Paninaea00142005-06-25 14:54:42 -07001607 {
Len Brown4be44fc2005-08-05 00:44:28 -04001608 .callback = disable_acpi_pci,
1609 .ident = "Acer TravelMate 36x Laptop",
1610 .matches = {
1611 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
1612 DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 360"),
1613 },
1614 },
Andreas Herrmann35af2822008-10-22 13:08:31 +02001615 {}
1616};
1617
1618/* second table for DMI checks that should run after early-quirks */
1619static struct dmi_system_id __initdata acpi_dmi_table_late[] = {
Matthew Garrett9340e1c2008-07-01 01:12:06 +01001620 /*
1621 * HP laptops which use a DSDT reporting as HP/SB400/10000,
1622 * which includes some code which overrides all temperature
1623 * trip points to 16C if the INTIN2 input of the I/O APIC
1624 * is enabled. This input is incorrectly designated the
1625 * ISA IRQ 0 via an interrupt source override even though
1626 * it is wired to the output of the master 8259A and INTIN0
Rafael J. Wysockie2079c42008-07-08 16:12:26 +02001627 * is not connected at all. Force ignoring BIOS IRQ0 pin2
1628 * override in that cases.
1629 */
1630 {
1631 .callback = dmi_ignore_irq0_timer_override,
Rafael J. Wysockie84956f2008-10-06 11:59:29 +02001632 .ident = "HP nx6115 laptop",
1633 .matches = {
1634 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
1635 DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq nx6115"),
1636 },
1637 },
1638 {
1639 .callback = dmi_ignore_irq0_timer_override,
Rafael J. Wysockie2079c42008-07-08 16:12:26 +02001640 .ident = "HP NX6125 laptop",
1641 .matches = {
1642 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
1643 DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq nx6125"),
1644 },
1645 },
1646 {
1647 .callback = dmi_ignore_irq0_timer_override,
1648 .ident = "HP NX6325 laptop",
1649 .matches = {
1650 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
1651 DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq nx6325"),
1652 },
1653 },
Rafael J. Wysockie84956f2008-10-06 11:59:29 +02001654 {
1655 .callback = dmi_ignore_irq0_timer_override,
1656 .ident = "HP 6715b laptop",
1657 .matches = {
1658 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
1659 DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq 6715b"),
1660 },
1661 },
Len Brown4be44fc2005-08-05 00:44:28 -04001662 {}
Andrey Paninaea00142005-06-25 14:54:42 -07001663};
1664
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665/*
1666 * acpi_boot_table_init() and acpi_boot_init()
1667 * called from setup_arch(), always.
1668 * 1. checksums all tables
1669 * 2. enumerates lapics
1670 * 3. enumerates io-apics
1671 *
1672 * acpi_table_init() is separate to allow reading SRAT without
1673 * other side effects.
1674 *
1675 * side effects of acpi_boot_init:
1676 * acpi_lapic = 1 if LAPIC found
1677 * acpi_ioapic = 1 if IOAPIC found
1678 * if (acpi_lapic && acpi_ioapic) smp_found_config = 1;
1679 * if acpi_blacklisted() acpi_disabled = 1;
1680 * acpi_irq_model=...
1681 * ...
1682 *
1683 * return value: (currently ignored)
1684 * 0: success
1685 * !0: failure
1686 */
1687
Len Brown4be44fc2005-08-05 00:44:28 -04001688int __init acpi_boot_table_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689{
1690 int error;
1691
Andrey Paninaea00142005-06-25 14:54:42 -07001692 dmi_check_system(acpi_dmi_table);
Andrey Paninaea00142005-06-25 14:54:42 -07001693
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 /*
1695 * If acpi_disabled, bail out
1696 * One exception: acpi=ht continues far enough to enumerate LAPICs
1697 */
1698 if (acpi_disabled && !acpi_ht)
Len Brown4be44fc2005-08-05 00:44:28 -04001699 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001701 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 * Initialize the ACPI boot-time table parser.
1703 */
1704 error = acpi_table_init();
1705 if (error) {
1706 disable_acpi();
1707 return error;
1708 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001710 acpi_table_parse(ACPI_SIG_BOOT, acpi_parse_sbf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711
1712 /*
1713 * blacklist may disable ACPI entirely
1714 */
1715 error = acpi_blacklisted();
1716 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 if (acpi_force) {
1718 printk(KERN_WARNING PREFIX "acpi=force override\n");
1719 } else {
1720 printk(KERN_WARNING PREFIX "Disabling ACPI support\n");
1721 disable_acpi();
1722 return error;
1723 }
1724 }
1725
1726 return 0;
1727}
1728
Yinghai Lucbf9bd62008-02-19 03:21:06 -08001729int __init early_acpi_boot_init(void)
1730{
1731 /*
1732 * If acpi_disabled, bail out
1733 * One exception: acpi=ht continues far enough to enumerate LAPICs
1734 */
1735 if (acpi_disabled && !acpi_ht)
1736 return 1;
1737
1738 /*
1739 * Process the Multiple APIC Description Table (MADT), if present
1740 */
1741 early_acpi_process_madt();
1742
1743 return 0;
1744}
1745
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746int __init acpi_boot_init(void)
1747{
Andreas Herrmann35af2822008-10-22 13:08:31 +02001748 /* those are executed after early-quirks are executed */
1749 dmi_check_system(acpi_dmi_table_late);
1750
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 /*
1752 * If acpi_disabled, bail out
1753 * One exception: acpi=ht continues far enough to enumerate LAPICs
1754 */
1755 if (acpi_disabled && !acpi_ht)
Len Brown4be44fc2005-08-05 00:44:28 -04001756 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001758 acpi_table_parse(ACPI_SIG_BOOT, acpi_parse_sbf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759
1760 /*
1761 * set sci_int and PM timer address
1762 */
Alexey Starikovskiyceb6c462007-02-02 19:48:22 +03001763 acpi_table_parse(ACPI_SIG_FADT, acpi_parse_fadt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764
1765 /*
1766 * Process the Multiple APIC Description Table (MADT), if present
1767 */
1768 acpi_process_madt();
1769
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001770 acpi_table_parse(ACPI_SIG_HPET, acpi_parse_hpet);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771
1772 return 0;
1773}
Rusty Russell1a3f2392006-09-26 10:52:32 +02001774
1775static int __init parse_acpi(char *arg)
1776{
1777 if (!arg)
1778 return -EINVAL;
1779
1780 /* "acpi=off" disables both ACPI table parsing and interpreter */
1781 if (strcmp(arg, "off") == 0) {
1782 disable_acpi();
1783 }
1784 /* acpi=force to over-ride black-list */
1785 else if (strcmp(arg, "force") == 0) {
1786 acpi_force = 1;
1787 acpi_ht = 1;
1788 acpi_disabled = 0;
1789 }
1790 /* acpi=strict disables out-of-spec workarounds */
1791 else if (strcmp(arg, "strict") == 0) {
1792 acpi_strict = 1;
1793 }
1794 /* Limit ACPI just to boot-time to enable HT */
1795 else if (strcmp(arg, "ht") == 0) {
1796 if (!acpi_force)
1797 disable_acpi();
1798 acpi_ht = 1;
1799 }
Zhao Yakui237889b2008-12-17 16:55:18 +08001800 /* acpi=rsdt use RSDT instead of XSDT */
1801 else if (strcmp(arg, "rsdt") == 0) {
1802 acpi_rsdt_forced = 1;
1803 }
Rusty Russell1a3f2392006-09-26 10:52:32 +02001804 /* "acpi=noirq" disables ACPI interrupt routing */
1805 else if (strcmp(arg, "noirq") == 0) {
1806 acpi_noirq_set();
1807 } else {
1808 /* Core will printk when we return error. */
1809 return -EINVAL;
1810 }
1811 return 0;
1812}
1813early_param("acpi", parse_acpi);
1814
1815/* FIXME: Using pci= for an ACPI parameter is a travesty. */
1816static int __init parse_pci(char *arg)
1817{
1818 if (arg && strcmp(arg, "noacpi") == 0)
1819 acpi_disable_pci();
1820 return 0;
1821}
1822early_param("pci", parse_pci);
1823
Yinghai Lu3c999f12008-06-20 16:11:20 -07001824int __init acpi_mps_check(void)
1825{
1826#if defined(CONFIG_X86_LOCAL_APIC) && !defined(CONFIG_X86_MPPARSE)
1827/* mptable code is not built-in*/
1828 if (acpi_disabled || acpi_noirq) {
1829 printk(KERN_WARNING "MPS support code is not built-in.\n"
1830 "Using acpi=off or acpi=noirq or pci=noacpi "
1831 "may have problem\n");
1832 return 1;
1833 }
1834#endif
1835 return 0;
1836}
1837
Rusty Russell1a3f2392006-09-26 10:52:32 +02001838#ifdef CONFIG_X86_IO_APIC
1839static int __init parse_acpi_skip_timer_override(char *arg)
1840{
1841 acpi_skip_timer_override = 1;
1842 return 0;
1843}
1844early_param("acpi_skip_timer_override", parse_acpi_skip_timer_override);
Andi Kleenfa18f472006-11-14 16:57:46 +01001845
1846static int __init parse_acpi_use_timer_override(char *arg)
1847{
1848 acpi_use_timer_override = 1;
1849 return 0;
1850}
1851early_param("acpi_use_timer_override", parse_acpi_use_timer_override);
Rusty Russell1a3f2392006-09-26 10:52:32 +02001852#endif /* CONFIG_X86_IO_APIC */
1853
1854static int __init setup_acpi_sci(char *s)
1855{
1856 if (!s)
1857 return -EINVAL;
1858 if (!strcmp(s, "edge"))
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001859 acpi_sci_flags = ACPI_MADT_TRIGGER_EDGE |
1860 (acpi_sci_flags & ~ACPI_MADT_TRIGGER_MASK);
Rusty Russell1a3f2392006-09-26 10:52:32 +02001861 else if (!strcmp(s, "level"))
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001862 acpi_sci_flags = ACPI_MADT_TRIGGER_LEVEL |
1863 (acpi_sci_flags & ~ACPI_MADT_TRIGGER_MASK);
Rusty Russell1a3f2392006-09-26 10:52:32 +02001864 else if (!strcmp(s, "high"))
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001865 acpi_sci_flags = ACPI_MADT_POLARITY_ACTIVE_HIGH |
1866 (acpi_sci_flags & ~ACPI_MADT_POLARITY_MASK);
Rusty Russell1a3f2392006-09-26 10:52:32 +02001867 else if (!strcmp(s, "low"))
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001868 acpi_sci_flags = ACPI_MADT_POLARITY_ACTIVE_LOW |
1869 (acpi_sci_flags & ~ACPI_MADT_POLARITY_MASK);
Rusty Russell1a3f2392006-09-26 10:52:32 +02001870 else
1871 return -EINVAL;
1872 return 0;
1873}
1874early_param("acpi_sci", setup_acpi_sci);
Andrew Mortond0a90812006-10-20 14:30:27 -07001875
1876int __acpi_acquire_global_lock(unsigned int *lock)
1877{
1878 unsigned int old, new, val;
1879 do {
1880 old = *lock;
1881 new = (((old & ~0x3) + 2) + ((old >> 1) & 0x1));
1882 val = cmpxchg(lock, old, new);
1883 } while (unlikely (val != old));
1884 return (new < 3) ? -1 : 0;
1885}
1886
1887int __acpi_release_global_lock(unsigned int *lock)
1888{
1889 unsigned int old, new, val;
1890 do {
1891 old = *lock;
1892 new = old & ~0x3;
1893 val = cmpxchg(lock, old, new);
1894 } while (unlikely (val != old));
1895 return old & 0x1;
1896}