blob: 276ec058f68394ae00da5cd1426dfcb4080f2ad8 [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
Glauber de Oliveira Costaf6bc4022008-03-19 14:25:53 -030044#ifdef CONFIG_X86_LOCAL_APIC
45# include <mach_apic.h>
46#endif
47
Adrian Bunke8924ac2006-09-26 10:52:35 +020048static int __initdata acpi_force = 0;
Rusty Russell1a3f2392006-09-26 10:52:32 +020049
Andi Kleendf3bb572006-09-26 10:52:33 +020050#ifdef CONFIG_ACPI
51int acpi_disabled = 0;
52#else
53int acpi_disabled = 1;
54#endif
55EXPORT_SYMBOL(acpi_disabled);
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#ifdef CONFIG_X86_64
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#include <asm/proto.h>
Jack Steinerae261862008-03-28 14:12:06 -050060#include <asm/genapic.h>
Linus Torvalds637029c2006-02-27 20:41:56 -080061
Len Brown4be44fc2005-08-05 00:44:28 -040062#else /* X86 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64#ifdef CONFIG_X86_LOCAL_APIC
65#include <mach_apic.h>
66#include <mach_mpparse.h>
Len Brown4be44fc2005-08-05 00:44:28 -040067#endif /* CONFIG_X86_LOCAL_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Len Brown4be44fc2005-08-05 00:44:28 -040069#endif /* X86 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
71#define BAD_MADT_ENTRY(entry, end) ( \
72 (!entry) || (unsigned long)entry + sizeof(*entry) > end || \
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +030073 ((struct acpi_subtable_header *)entry)->length < sizeof(*entry))
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75#define PREFIX "ACPI: "
76
Andrew Morton90d53902006-11-02 22:07:18 -080077int acpi_noirq; /* skip ACPI IRQ initialization */
Yinghai Lu6e4be1f2008-02-05 00:01:48 -080078int acpi_pci_disabled; /* skip ACPI PCI scan and IRQ initialization */
79EXPORT_SYMBOL(acpi_pci_disabled);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080int acpi_ht __initdata = 1; /* enable HT */
81
82int acpi_lapic;
83int acpi_ioapic;
84int acpi_strict;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +030086u8 acpi_sci_flags __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087int acpi_sci_override_gsi __initdata;
88int acpi_skip_timer_override __initdata;
Andi Kleenfa18f472006-11-14 16:57:46 +010089int acpi_use_timer_override __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91#ifdef CONFIG_X86_LOCAL_APIC
92static u64 acpi_lapic_addr __initdata = APIC_DEFAULT_PHYS_BASE;
93#endif
94
95#ifndef __HAVE_ARCH_CMPXCHG
96#warning ACPI uses CMPXCHG, i486 and later hardware
97#endif
98
Linus Torvalds1da177e2005-04-16 15:20:36 -070099/* --------------------------------------------------------------------------
100 Boot-time Configuration
101 -------------------------------------------------------------------------- */
102
103/*
104 * The default interrupt routing model is PIC (8259). This gets
Simon Arlott27b46d72007-10-20 01:13:56 +0200105 * overridden if IOAPICs are enumerated (below).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 */
Len Brown4be44fc2005-08-05 00:44:28 -0400107enum acpi_irq_model_id acpi_irq_model = ACPI_IRQ_MODEL_PIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109#ifdef CONFIG_X86_64
110
111/* rely on all ACPI tables being in the direct mapping */
Jan Beulich2fdf0742007-12-13 08:33:59 +0000112char *__init __acpi_map_table(unsigned long phys_addr, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
114 if (!phys_addr || !size)
Len Brown4be44fc2005-08-05 00:44:28 -0400115 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Thomas Gleixner67794292008-03-21 21:27:10 +0100117 if (phys_addr+size <= (max_pfn_mapped << PAGE_SHIFT) + PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 return __va(phys_addr);
119
120 return NULL;
121}
122
123#else
124
125/*
126 * Temporarily use the virtual area starting from FIX_IO_APIC_BASE_END,
127 * to map the target physical address. The problem is that set_fixmap()
128 * provides a single page, and it is possible that the page is not
129 * sufficient.
130 * By using this area, we can map up to MAX_IO_APICS pages temporarily,
131 * i.e. until the next __va_range() call.
132 *
133 * Important Safety Note: The fixed I/O APIC page numbers are *subtracted*
134 * from the fixed base. That's why we start at FIX_IO_APIC_BASE_END and
135 * count idx down while incrementing the phys address.
136 */
Jan Beulich2fdf0742007-12-13 08:33:59 +0000137char *__init __acpi_map_table(unsigned long phys, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138{
139 unsigned long base, offset, mapped_size;
140 int idx;
141
Len Brown4be44fc2005-08-05 00:44:28 -0400142 if (phys + size < 8 * 1024 * 1024)
143 return __va(phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145 offset = phys & (PAGE_SIZE - 1);
146 mapped_size = PAGE_SIZE - offset;
147 set_fixmap(FIX_ACPI_END, phys);
148 base = fix_to_virt(FIX_ACPI_END);
149
150 /*
151 * Most cases can be covered by the below.
152 */
153 idx = FIX_ACPI_END;
154 while (mapped_size < size) {
155 if (--idx < FIX_ACPI_BEGIN)
156 return NULL; /* cannot handle this */
157 phys += PAGE_SIZE;
158 set_fixmap(idx, phys);
159 mapped_size += PAGE_SIZE;
160 }
161
Len Brown4be44fc2005-08-05 00:44:28 -0400162 return ((unsigned char *)base + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163}
164#endif
165
166#ifdef CONFIG_PCI_MMCONFIG
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700167/* The physical address of the MMCONFIG aperture. Set from ACPI tables. */
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +0300168struct acpi_mcfg_allocation *pci_mmcfg_config;
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700169int pci_mmcfg_config_num;
170
Alexey Starikovskiyceb6c462007-02-02 19:48:22 +0300171int __init acpi_parse_mcfg(struct acpi_table_header *header)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172{
173 struct acpi_table_mcfg *mcfg;
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700174 unsigned long i;
175 int config_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Alexey Starikovskiyceb6c462007-02-02 19:48:22 +0300177 if (!header)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 return -EINVAL;
179
Alexey Starikovskiyceb6c462007-02-02 19:48:22 +0300180 mcfg = (struct acpi_table_mcfg *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700182 /* how many config structures do we have */
183 pci_mmcfg_config_num = 0;
Alexey Starikovskiyceb6c462007-02-02 19:48:22 +0300184 i = header->length - sizeof(struct acpi_table_mcfg);
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +0300185 while (i >= sizeof(struct acpi_mcfg_allocation)) {
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700186 ++pci_mmcfg_config_num;
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +0300187 i -= sizeof(struct acpi_mcfg_allocation);
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700188 };
189 if (pci_mmcfg_config_num == 0) {
190 printk(KERN_ERR PREFIX "MMCONFIG has no entries\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 return -ENODEV;
192 }
193
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700194 config_size = pci_mmcfg_config_num * sizeof(*pci_mmcfg_config);
195 pci_mmcfg_config = kmalloc(config_size, GFP_KERNEL);
196 if (!pci_mmcfg_config) {
197 printk(KERN_WARNING PREFIX
198 "No memory for MCFG config tables\n");
199 return -ENOMEM;
200 }
201
Alexey Starikovskiyad363f82007-02-02 19:48:22 +0300202 memcpy(pci_mmcfg_config, &mcfg[1], config_size);
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700203 for (i = 0; i < pci_mmcfg_config_num; ++i) {
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +0300204 if (pci_mmcfg_config[i].address > 0xFFFFFFFF) {
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700205 printk(KERN_ERR PREFIX
206 "MMCONFIG not in low 4GB of memory\n");
Konrad Rzeszutekacc7c2e2006-06-15 12:08:30 -0400207 kfree(pci_mmcfg_config);
208 pci_mmcfg_config_num = 0;
Greg Kroah-Hartman54549392005-06-23 17:35:56 -0700209 return -ENODEV;
210 }
211 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213 return 0;
214}
Len Brown4be44fc2005-08-05 00:44:28 -0400215#endif /* CONFIG_PCI_MMCONFIG */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217#ifdef CONFIG_X86_LOCAL_APIC
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +0300218static int __init acpi_parse_madt(struct acpi_table_header *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219{
Len Brown4be44fc2005-08-05 00:44:28 -0400220 struct acpi_table_madt *madt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +0300222 if (!cpu_has_apic)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 return -EINVAL;
224
Alexey Starikovskiy15a58ed2007-02-02 19:48:22 +0300225 madt = (struct acpi_table_madt *)table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 if (!madt) {
227 printk(KERN_WARNING PREFIX "Unable to map MADT\n");
228 return -ENODEV;
229 }
230
Alexey Starikovskiyad363f82007-02-02 19:48:22 +0300231 if (madt->address) {
232 acpi_lapic_addr = (u64) madt->address;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
234 printk(KERN_DEBUG PREFIX "Local APIC address 0x%08x\n",
Alexey Starikovskiyad363f82007-02-02 19:48:22 +0300235 madt->address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 }
237
238 acpi_madt_oem_check(madt->header.oem_id, madt->header.oem_table_id);
Len Brown4be44fc2005-08-05 00:44:28 -0400239
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 return 0;
241}
242
Alexey Starikovskiydfac2182008-04-04 23:41:50 +0400243static void __cpuinit acpi_register_lapic(int id, u8 enabled)
244{
245 if (!enabled) {
246 ++disabled_cpus;
247 return;
248 }
249
250 generic_processor_info(id, 0);
251}
252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253static int __init
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300254acpi_parse_lapic(struct acpi_subtable_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255{
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300256 struct acpi_madt_local_apic *processor = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300258 processor = (struct acpi_madt_local_apic *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
260 if (BAD_MADT_ENTRY(processor, end))
261 return -EINVAL;
262
263 acpi_table_print_madt_entry(header);
264
Ashok Raj7f66ae42006-02-03 21:51:50 +0100265 /*
266 * We need to register disabled CPU as well to permit
267 * counting disabled CPUs. This allows us to size
268 * cpus_possible_map more accurately, to permit
269 * to not preallocating memory for all NR_CPUS
270 * when we use CPU hotplug.
271 */
Alexey Starikovskiydfac2182008-04-04 23:41:50 +0400272 acpi_register_lapic(processor->id, /* APIC ID */
273 processor->lapic_flags & ACPI_MADT_ENABLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
275 return 0;
276}
277
278static int __init
Jack Steinerac049c12008-03-28 14:12:09 -0500279acpi_parse_sapic(struct acpi_subtable_header *header, const unsigned long end)
280{
281 struct acpi_madt_local_sapic *processor = NULL;
282
283 processor = (struct acpi_madt_local_sapic *)header;
284
285 if (BAD_MADT_ENTRY(processor, end))
286 return -EINVAL;
287
288 acpi_table_print_madt_entry(header);
289
Alexey Starikovskiydfac2182008-04-04 23:41:50 +0400290 acpi_register_lapic((processor->id << 8) | processor->eid,/* APIC ID */
291 processor->lapic_flags & ACPI_MADT_ENABLED);
Jack Steinerac049c12008-03-28 14:12:09 -0500292
293 return 0;
294}
295
296static int __init
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300297acpi_parse_lapic_addr_ovr(struct acpi_subtable_header * header,
Len Brown4be44fc2005-08-05 00:44:28 -0400298 const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300300 struct acpi_madt_local_apic_override *lapic_addr_ovr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300302 lapic_addr_ovr = (struct acpi_madt_local_apic_override *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
304 if (BAD_MADT_ENTRY(lapic_addr_ovr, end))
305 return -EINVAL;
306
307 acpi_lapic_addr = lapic_addr_ovr->address;
308
309 return 0;
310}
311
312static int __init
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300313acpi_parse_lapic_nmi(struct acpi_subtable_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300315 struct acpi_madt_local_apic_nmi *lapic_nmi = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300317 lapic_nmi = (struct acpi_madt_local_apic_nmi *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
319 if (BAD_MADT_ENTRY(lapic_nmi, end))
320 return -EINVAL;
321
322 acpi_table_print_madt_entry(header);
323
324 if (lapic_nmi->lint != 1)
325 printk(KERN_WARNING PREFIX "NMI not connected to LINT 1!\n");
326
327 return 0;
328}
329
Len Brown4be44fc2005-08-05 00:44:28 -0400330#endif /*CONFIG_X86_LOCAL_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
Len Brown84663612005-08-24 12:09:07 -0400332#ifdef CONFIG_X86_IO_APIC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
334static int __init
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300335acpi_parse_ioapic(struct acpi_subtable_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336{
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300337 struct acpi_madt_io_apic *ioapic = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300339 ioapic = (struct acpi_madt_io_apic *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
341 if (BAD_MADT_ENTRY(ioapic, end))
342 return -EINVAL;
Len Brown4be44fc2005-08-05 00:44:28 -0400343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 acpi_table_print_madt_entry(header);
345
Len Brown4be44fc2005-08-05 00:44:28 -0400346 mp_register_ioapic(ioapic->id,
347 ioapic->address, ioapic->global_irq_base);
348
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 return 0;
350}
351
352/*
353 * Parse Interrupt Source Override for the ACPI SCI
354 */
Len Browne82c3542006-12-21 01:29:59 -0500355static void __init acpi_sci_ioapic_setup(u32 gsi, u16 polarity, u16 trigger)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
357 if (trigger == 0) /* compatible SCI trigger is level */
358 trigger = 3;
359
360 if (polarity == 0) /* compatible SCI polarity is low */
361 polarity = 3;
362
363 /* Command-line over-ride via acpi_sci= */
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300364 if (acpi_sci_flags & ACPI_MADT_TRIGGER_MASK)
365 trigger = (acpi_sci_flags & ACPI_MADT_TRIGGER_MASK) >> 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300367 if (acpi_sci_flags & ACPI_MADT_POLARITY_MASK)
368 polarity = acpi_sci_flags & ACPI_MADT_POLARITY_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
370 /*
Len Brown4be44fc2005-08-05 00:44:28 -0400371 * mp_config_acpi_legacy_irqs() already setup IRQs < 16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 * If GSI is < 16, this will update its flags,
373 * else it will create a new mp_irqs[] entry.
374 */
Len Brown7bdd21c2006-12-02 02:27:46 -0500375 mp_override_legacy_irq(gsi, polarity, trigger, gsi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
377 /*
378 * stash over-ride to indicate we've been here
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300379 * and for later update of acpi_gbl_FADT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 */
Len Brown7bdd21c2006-12-02 02:27:46 -0500381 acpi_sci_override_gsi = gsi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 return;
383}
384
385static int __init
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300386acpi_parse_int_src_ovr(struct acpi_subtable_header * header,
Len Brown4be44fc2005-08-05 00:44:28 -0400387 const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388{
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300389 struct acpi_madt_interrupt_override *intsrc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300391 intsrc = (struct acpi_madt_interrupt_override *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
393 if (BAD_MADT_ENTRY(intsrc, end))
394 return -EINVAL;
395
396 acpi_table_print_madt_entry(header);
397
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300398 if (intsrc->source_irq == acpi_gbl_FADT.sci_interrupt) {
Len Brown7bdd21c2006-12-02 02:27:46 -0500399 acpi_sci_ioapic_setup(intsrc->global_irq,
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300400 intsrc->inti_flags & ACPI_MADT_POLARITY_MASK,
401 (intsrc->inti_flags & ACPI_MADT_TRIGGER_MASK) >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 return 0;
403 }
404
405 if (acpi_skip_timer_override &&
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300406 intsrc->source_irq == 0 && intsrc->global_irq == 2) {
Len Brown4be44fc2005-08-05 00:44:28 -0400407 printk(PREFIX "BIOS IRQ0 pin2 override ignored.\n");
408 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 }
410
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300411 mp_override_legacy_irq(intsrc->source_irq,
412 intsrc->inti_flags & ACPI_MADT_POLARITY_MASK,
413 (intsrc->inti_flags & ACPI_MADT_TRIGGER_MASK) >> 2,
414 intsrc->global_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
416 return 0;
417}
418
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419static int __init
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300420acpi_parse_nmi_src(struct acpi_subtable_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421{
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300422 struct acpi_madt_nmi_source *nmi_src = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300424 nmi_src = (struct acpi_madt_nmi_source *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
426 if (BAD_MADT_ENTRY(nmi_src, end))
427 return -EINVAL;
428
429 acpi_table_print_madt_entry(header);
430
431 /* TBD: Support nimsrc entries? */
432
433 return 0;
434}
435
Len Brown4be44fc2005-08-05 00:44:28 -0400436#endif /* CONFIG_X86_IO_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438/*
439 * acpi_pic_sci_set_trigger()
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300440 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 * use ELCR to set PIC-mode trigger type for SCI
442 *
443 * If a PIC-mode SCI is not recognized or gives spurious IRQ7's
444 * it may require Edge Trigger -- use "acpi_sci=edge"
445 *
446 * Port 0x4d0-4d1 are ECLR1 and ECLR2, the Edge/Level Control Registers
447 * for the 8259 PIC. bit[n] = 1 means irq[n] is Level, otherwise Edge.
Simon Arlott27b46d72007-10-20 01:13:56 +0200448 * ECLR1 is IRQs 0-7 (IRQ 0, 1, 2 must be 0)
449 * ECLR2 is IRQs 8-15 (IRQ 8, 13 must be 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 */
451
Len Brown4be44fc2005-08-05 00:44:28 -0400452void __init acpi_pic_sci_set_trigger(unsigned int irq, u16 trigger)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453{
454 unsigned int mask = 1 << irq;
455 unsigned int old, new;
456
457 /* Real old ELCR mask */
458 old = inb(0x4d0) | (inb(0x4d1) << 8);
459
460 /*
Simon Arlott27b46d72007-10-20 01:13:56 +0200461 * If we use ACPI to set PCI IRQs, then we should clear ELCR
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 * since we will set it correctly as we enable the PCI irq
463 * routing.
464 */
465 new = acpi_noirq ? old : 0;
466
467 /*
468 * Update SCI information in the ELCR, it isn't in the PCI
469 * routing tables..
470 */
471 switch (trigger) {
Len Brown4be44fc2005-08-05 00:44:28 -0400472 case 1: /* Edge - clear */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 new &= ~mask;
474 break;
Len Brown4be44fc2005-08-05 00:44:28 -0400475 case 3: /* Level - set */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 new |= mask;
477 break;
478 }
479
480 if (old == new)
481 return;
482
483 printk(PREFIX "setting ELCR to %04x (from %04x)\n", new, old);
484 outb(new, 0x4d0);
485 outb(new >> 8, 0x4d1);
486}
487
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488int acpi_gsi_to_irq(u32 gsi, unsigned int *irq)
489{
Eric W. Biedermanf023d762006-10-04 02:16:52 -0700490 *irq = gsi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 return 0;
492}
493
Kenji Kaneshige1f3a6a12005-07-28 14:42:00 -0400494/*
495 * success: return IRQ number (>=0)
496 * failure: return < 0
497 */
Len Browncb654692005-12-28 02:43:51 -0500498int acpi_register_gsi(u32 gsi, int triggering, int polarity)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499{
500 unsigned int irq;
501 unsigned int plat_gsi = gsi;
502
503#ifdef CONFIG_PCI
504 /*
505 * Make sure all (legacy) PCI IRQs are set as level-triggered.
506 */
507 if (acpi_irq_model == ACPI_IRQ_MODEL_PIC) {
508 extern void eisa_set_level_irq(unsigned int irq);
509
Len Browncb654692005-12-28 02:43:51 -0500510 if (triggering == ACPI_LEVEL_SENSITIVE)
Len Brown4be44fc2005-08-05 00:44:28 -0400511 eisa_set_level_irq(gsi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 }
513#endif
514
515#ifdef CONFIG_X86_IO_APIC
516 if (acpi_irq_model == ACPI_IRQ_MODEL_IOAPIC) {
Len Browncb654692005-12-28 02:43:51 -0500517 plat_gsi = mp_register_gsi(gsi, triggering, polarity);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 }
519#endif
520 acpi_gsi_to_irq(plat_gsi, &irq);
521 return irq;
522}
Len Brown4be44fc2005-08-05 00:44:28 -0400523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524/*
525 * ACPI based hotplug support for CPU
526 */
527#ifdef CONFIG_ACPI_HOTPLUG_CPU
Sam Ravnborg009cbad2008-02-01 17:49:42 +0100528
529static int __cpuinit _acpi_map_lsapic(acpi_handle handle, int *pcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530{
Ashok Raj73fea172006-09-26 10:52:35 +0200531 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
532 union acpi_object *obj;
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300533 struct acpi_madt_local_apic *lapic;
Ashok Raj73fea172006-09-26 10:52:35 +0200534 cpumask_t tmp_map, new_map;
535 u8 physid;
536 int cpu;
537
538 if (ACPI_FAILURE(acpi_evaluate_object(handle, "_MAT", NULL, &buffer)))
539 return -EINVAL;
540
541 if (!buffer.length || !buffer.pointer)
542 return -EINVAL;
543
544 obj = buffer.pointer;
545 if (obj->type != ACPI_TYPE_BUFFER ||
546 obj->buffer.length < sizeof(*lapic)) {
547 kfree(buffer.pointer);
548 return -EINVAL;
549 }
550
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300551 lapic = (struct acpi_madt_local_apic *)obj->buffer.pointer;
Ashok Raj73fea172006-09-26 10:52:35 +0200552
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300553 if (lapic->header.type != ACPI_MADT_TYPE_LOCAL_APIC ||
554 !(lapic->lapic_flags & ACPI_MADT_ENABLED)) {
Ashok Raj73fea172006-09-26 10:52:35 +0200555 kfree(buffer.pointer);
556 return -EINVAL;
557 }
558
559 physid = lapic->id;
560
561 kfree(buffer.pointer);
562 buffer.length = ACPI_ALLOCATE_BUFFER;
563 buffer.pointer = NULL;
564
565 tmp_map = cpu_present_map;
Alexey Starikovskiydfac2182008-04-04 23:41:50 +0400566 acpi_register_lapic(physid, lapic->lapic_flags & ACPI_MADT_ENABLED);
Ashok Raj73fea172006-09-26 10:52:35 +0200567
568 /*
569 * If mp_register_lapic successfully generates a new logical cpu
570 * number, then the following will get us exactly what was mapped
571 */
572 cpus_andnot(new_map, cpu_present_map, tmp_map);
573 if (cpus_empty(new_map)) {
574 printk ("Unable to map lapic to logical cpu number\n");
575 return -EINVAL;
576 }
577
578 cpu = first_cpu(new_map);
579
580 *pcpu = cpu;
581 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582}
Len Brown4be44fc2005-08-05 00:44:28 -0400583
Sam Ravnborg009cbad2008-02-01 17:49:42 +0100584/* wrapper to silence section mismatch warning */
585int __ref acpi_map_lsapic(acpi_handle handle, int *pcpu)
586{
587 return _acpi_map_lsapic(handle, pcpu);
588}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589EXPORT_SYMBOL(acpi_map_lsapic);
590
Len Brown4be44fc2005-08-05 00:44:28 -0400591int acpi_unmap_lsapic(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592{
Mike Travis71fff5e2007-10-19 20:35:03 +0200593 per_cpu(x86_cpu_to_apicid, cpu) = -1;
Ashok Raj73fea172006-09-26 10:52:35 +0200594 cpu_clear(cpu, cpu_present_map);
595 num_processors--;
596
597 return (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598}
Len Brown4be44fc2005-08-05 00:44:28 -0400599
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600EXPORT_SYMBOL(acpi_unmap_lsapic);
Len Brown4be44fc2005-08-05 00:44:28 -0400601#endif /* CONFIG_ACPI_HOTPLUG_CPU */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
Len Brown4be44fc2005-08-05 00:44:28 -0400603int acpi_register_ioapic(acpi_handle handle, u64 phys_addr, u32 gsi_base)
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700604{
605 /* TBD */
606 return -EINVAL;
607}
Len Brown4be44fc2005-08-05 00:44:28 -0400608
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700609EXPORT_SYMBOL(acpi_register_ioapic);
610
Len Brown4be44fc2005-08-05 00:44:28 -0400611int acpi_unregister_ioapic(acpi_handle handle, u32 gsi_base)
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700612{
613 /* TBD */
614 return -EINVAL;
615}
Len Brown4be44fc2005-08-05 00:44:28 -0400616
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700617EXPORT_SYMBOL(acpi_unregister_ioapic);
618
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300619static int __init acpi_parse_sbf(struct acpi_table_header *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620{
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300621 struct acpi_table_boot *sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300623 sb = (struct acpi_table_boot *)table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 if (!sb) {
625 printk(KERN_WARNING PREFIX "Unable to map SBF\n");
626 return -ENODEV;
627 }
628
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300629 sbf_port = sb->cmos_index; /* Save CMOS port */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
631 return 0;
632}
633
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634#ifdef CONFIG_HPET_TIMER
john stultz2d0c87c2007-02-16 01:28:18 -0800635#include <asm/hpet.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Aaron Durbina1dfd852007-07-21 17:11:39 +0200637static struct __initdata resource *hpet_res;
638
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300639static int __init acpi_parse_hpet(struct acpi_table_header *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640{
641 struct acpi_table_hpet *hpet_tbl;
642
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300643 hpet_tbl = (struct acpi_table_hpet *)table;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 if (!hpet_tbl) {
645 printk(KERN_WARNING PREFIX "Unable to map HPET\n");
646 return -ENODEV;
647 }
648
Alexey Starikovskiyad363f82007-02-02 19:48:22 +0300649 if (hpet_tbl->address.space_id != ACPI_SPACE_MEM) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 printk(KERN_WARNING PREFIX "HPET timers must be located in "
651 "memory.\n");
652 return -1;
653 }
adurbin@google.comf0f4c342006-09-26 10:52:39 +0200654
john stultz2d0c87c2007-02-16 01:28:18 -0800655 hpet_address = hpet_tbl->address.address;
Thomas Gleixnerf4df73c2007-11-15 21:41:50 -0500656
657 /*
658 * Some broken BIOSes advertise HPET at 0x0. We really do not
659 * want to allocate a resource there.
660 */
661 if (!hpet_address) {
662 printk(KERN_WARNING PREFIX
663 "HPET id: %#x base: %#lx is invalid\n",
664 hpet_tbl->id, hpet_address);
665 return 0;
666 }
667#ifdef CONFIG_X86_64
668 /*
669 * Some even more broken BIOSes advertise HPET at
670 * 0xfed0000000000000 instead of 0xfed00000. Fix it up and add
671 * some noise:
672 */
673 if (hpet_address == 0xfed0000000000000UL) {
674 if (!hpet_force_user) {
675 printk(KERN_WARNING PREFIX "HPET id: %#x "
676 "base: 0xfed0000000000000 is bogus\n "
677 "try hpet=force on the kernel command line to "
678 "fix it up to 0xfed00000.\n", hpet_tbl->id);
679 hpet_address = 0;
680 return 0;
681 }
682 printk(KERN_WARNING PREFIX
683 "HPET id: %#x base: 0xfed0000000000000 fixed up "
684 "to 0xfed00000.\n", hpet_tbl->id);
685 hpet_address >>= 32;
686 }
687#endif
Len Brown4be44fc2005-08-05 00:44:28 -0400688 printk(KERN_INFO PREFIX "HPET id: %#x base: %#lx\n",
john stultz2d0c87c2007-02-16 01:28:18 -0800689 hpet_tbl->id, hpet_address);
adurbin@google.comf0f4c342006-09-26 10:52:39 +0200690
Aaron Durbina1dfd852007-07-21 17:11:39 +0200691 /*
692 * Allocate and initialize the HPET firmware resource for adding into
693 * the resource tree during the lateinit timeframe.
694 */
695#define HPET_RESOURCE_NAME_SIZE 9
696 hpet_res = alloc_bootmem(sizeof(*hpet_res) + HPET_RESOURCE_NAME_SIZE);
697
Aaron Durbina1dfd852007-07-21 17:11:39 +0200698 hpet_res->name = (void *)&hpet_res[1];
699 hpet_res->flags = IORESOURCE_MEM;
700 snprintf((char *)hpet_res->name, HPET_RESOURCE_NAME_SIZE, "HPET %u",
701 hpet_tbl->sequence);
702
703 hpet_res->start = hpet_address;
704 hpet_res->end = hpet_address + (1 * 1024) - 1;
705
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 return 0;
707}
Aaron Durbina1dfd852007-07-21 17:11:39 +0200708
709/*
710 * hpet_insert_resource inserts the HPET resources used into the resource
711 * tree.
712 */
713static __init int hpet_insert_resource(void)
714{
715 if (!hpet_res)
716 return 1;
717
718 return insert_resource(&iomem_resource, hpet_res);
719}
720
721late_initcall(hpet_insert_resource);
722
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723#else
724#define acpi_parse_hpet NULL
725#endif
726
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300727static int __init acpi_parse_fadt(struct acpi_table_header *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728{
Jason Davis90660ec2005-04-16 15:24:53 -0700729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730#ifdef CONFIG_X86_PM_TIMER
731 /* detect the location of the ACPI PM Timer */
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300732 if (acpi_gbl_FADT.header.revision >= FADT2_REVISION_ID) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 /* FADT rev. 2 */
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300734 if (acpi_gbl_FADT.xpm_timer_block.space_id !=
Len Brown4be44fc2005-08-05 00:44:28 -0400735 ACPI_ADR_SPACE_SYSTEM_IO)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 return 0;
737
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300738 pmtmr_ioport = acpi_gbl_FADT.xpm_timer_block.address;
David Shaohua Lie6e87b42005-09-21 01:35:00 -0400739 /*
740 * "X" fields are optional extensions to the original V1.0
741 * fields, so we must selectively expand V1.0 fields if the
742 * corresponding X field is zero.
743 */
744 if (!pmtmr_ioport)
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300745 pmtmr_ioport = acpi_gbl_FADT.pm_timer_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 } else {
747 /* FADT rev. 1 */
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300748 pmtmr_ioport = acpi_gbl_FADT.pm_timer_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 }
750 if (pmtmr_ioport)
Len Brown4be44fc2005-08-05 00:44:28 -0400751 printk(KERN_INFO PREFIX "PM-Timer IO Port: %#x\n",
752 pmtmr_ioport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753#endif
754 return 0;
755}
756
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757#ifdef CONFIG_X86_LOCAL_APIC
758/*
759 * Parse LAPIC entries in MADT
760 * returns 0 on success, < 0 on error
761 */
Alexey Starikovskiy31d20922008-04-04 23:41:57 +0400762
763static void __init acpi_register_lapic_address(unsigned long address)
764{
765 mp_lapic_addr = address;
766
767 set_fixmap_nocache(FIX_APIC_BASE, address);
768 if (boot_cpu_physical_apicid == -1U)
769 boot_cpu_physical_apicid = GET_APIC_ID(read_apic_id());
770}
771
Yinghai Lucbf9bd62008-02-19 03:21:06 -0800772static int __init early_acpi_parse_madt_lapic_addr_ovr(void)
773{
774 int count;
775
776 if (!cpu_has_apic)
777 return -ENODEV;
778
779 /*
780 * 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
784 count =
785 acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_APIC_OVERRIDE,
786 acpi_parse_lapic_addr_ovr, 0);
787 if (count < 0) {
788 printk(KERN_ERR PREFIX
789 "Error parsing LAPIC address override entry\n");
790 return count;
791 }
792
793 acpi_register_lapic_address(acpi_lapic_addr);
794
795 return count;
796}
797
Len Brown4be44fc2005-08-05 00:44:28 -0400798static int __init acpi_parse_madt_lapic_entries(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799{
800 int count;
801
Andi Kleen0fcd2702006-04-11 12:54:36 +0200802 if (!cpu_has_apic)
803 return -ENODEV;
804
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300805 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 * Note that the LAPIC address is obtained from the MADT (32-bit value)
807 * and (optionally) overriden by a LAPIC_ADDR_OVR entry (64-bit value).
808 */
809
Len Brown4be44fc2005-08-05 00:44:28 -0400810 count =
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300811 acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_APIC_OVERRIDE,
Len Brown4be44fc2005-08-05 00:44:28 -0400812 acpi_parse_lapic_addr_ovr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 if (count < 0) {
Len Brown4be44fc2005-08-05 00:44:28 -0400814 printk(KERN_ERR PREFIX
815 "Error parsing LAPIC address override entry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 return count;
817 }
818
Alexey Starikovskiy31d20922008-04-04 23:41:57 +0400819 acpi_register_lapic_address(acpi_lapic_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
Jack Steinerac049c12008-03-28 14:12:09 -0500821 count = acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_SAPIC,
822 acpi_parse_sapic, MAX_APICS);
823
824 if (!count)
825 count = acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_APIC,
826 acpi_parse_lapic, MAX_APICS);
Len Brown4be44fc2005-08-05 00:44:28 -0400827 if (!count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 printk(KERN_ERR PREFIX "No LAPIC entries present\n");
829 /* TBD: Cleanup to allow fallback to MPS */
830 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400831 } else if (count < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 printk(KERN_ERR PREFIX "Error parsing LAPIC entry\n");
833 /* TBD: Cleanup to allow fallback to MPS */
834 return count;
835 }
836
Len Brown4be44fc2005-08-05 00:44:28 -0400837 count =
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300838 acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_APIC_NMI, acpi_parse_lapic_nmi, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 if (count < 0) {
840 printk(KERN_ERR PREFIX "Error parsing LAPIC NMI entry\n");
841 /* TBD: Cleanup to allow fallback to MPS */
842 return count;
843 }
844 return 0;
845}
Len Brown4be44fc2005-08-05 00:44:28 -0400846#endif /* CONFIG_X86_LOCAL_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
Len Brown84663612005-08-24 12:09:07 -0400848#ifdef CONFIG_X86_IO_APIC
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400849#define MP_ISA_BUS 0
850
851#if defined(CONFIG_X86_ES7000) || defined(CONFIG_X86_GENERICARCH)
852extern int es7000_plat;
853#endif
854
Alexey Starikovskiy5f895142008-05-14 19:03:04 +0400855static struct {
856 int apic_id;
857 int gsi_base;
858 int gsi_end;
859 DECLARE_BITMAP(pin_programmed, MP_MAX_IOAPIC_PIN + 1);
860} mp_ioapic_routing[MAX_IO_APICS];
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400861
862static int mp_find_ioapic(int gsi)
863{
864 int i = 0;
865
866 /* Find the IOAPIC that manages this GSI. */
867 for (i = 0; i < nr_ioapics; i++) {
868 if ((gsi >= mp_ioapic_routing[i].gsi_base)
869 && (gsi <= mp_ioapic_routing[i].gsi_end))
870 return i;
871 }
872
873 printk(KERN_ERR "ERROR: Unable to locate IOAPIC for GSI %d\n", gsi);
874 return -1;
875}
876
877static u8 __init uniq_ioapic_id(u8 id)
878{
879#ifdef CONFIG_X86_32
880 if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
881 !APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
882 return io_apic_get_unique_id(nr_ioapics, id);
883 else
884 return id;
885#else
886 int i;
887 DECLARE_BITMAP(used, 256);
888 bitmap_zero(used, 256);
889 for (i = 0; i < nr_ioapics; i++) {
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +0400890 struct mp_config_ioapic *ia = &mp_ioapics[i];
891 __set_bit(ia->mp_apicid, used);
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400892 }
893 if (!test_bit(id, used))
894 return id;
895 return find_first_zero_bit(used, 256);
896#endif
897}
898
899static int bad_ioapic(unsigned long address)
900{
901 if (nr_ioapics >= MAX_IO_APICS) {
902 printk(KERN_ERR "ERROR: Max # of I/O APICs (%d) exceeded "
903 "(found %d)\n", MAX_IO_APICS, nr_ioapics);
904 panic("Recompile kernel with bigger MAX_IO_APICS!\n");
905 }
906 if (!address) {
907 printk(KERN_ERR "WARNING: Bogus (zero) I/O APIC address"
908 " found in table, skipping!\n");
909 return 1;
910 }
911 return 0;
912}
913
914void __init mp_register_ioapic(int id, u32 address, u32 gsi_base)
915{
916 int idx = 0;
917
918 if (bad_ioapic(address))
919 return;
920
921 idx = nr_ioapics;
922
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +0400923 mp_ioapics[idx].mp_type = MP_IOAPIC;
924 mp_ioapics[idx].mp_flags = MPC_APIC_USABLE;
925 mp_ioapics[idx].mp_apicaddr = address;
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400926
927 set_fixmap_nocache(FIX_IO_APIC_BASE_0 + idx, address);
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +0400928 mp_ioapics[idx].mp_apicid = uniq_ioapic_id(id);
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400929#ifdef CONFIG_X86_32
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +0400930 mp_ioapics[idx].mp_apicver = io_apic_get_version(idx);
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400931#else
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +0400932 mp_ioapics[idx].mp_apicver = 0;
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400933#endif
934 /*
935 * Build basic GSI lookup table to facilitate gsi->io_apic lookups
936 * and to prevent reprogramming of IOAPIC pins (PCI GSIs).
937 */
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +0400938 mp_ioapic_routing[idx].apic_id = mp_ioapics[idx].mp_apicid;
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400939 mp_ioapic_routing[idx].gsi_base = gsi_base;
940 mp_ioapic_routing[idx].gsi_end = gsi_base +
941 io_apic_get_redir_entries(idx);
942
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +0400943 printk(KERN_INFO "IOAPIC[%d]: apic_id %d, version %d, address 0x%lx, "
944 "GSI %d-%d\n", idx, mp_ioapics[idx].mp_apicid,
945 mp_ioapics[idx].mp_apicver, mp_ioapics[idx].mp_apicaddr,
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400946 mp_ioapic_routing[idx].gsi_base, mp_ioapic_routing[idx].gsi_end);
947
948 nr_ioapics++;
949}
950
951void __init mp_override_legacy_irq(u8 bus_irq, u8 polarity, u8 trigger, u32 gsi)
952{
953 int ioapic = -1;
954 int pin = -1;
955
956 /*
957 * Convert 'gsi' to 'ioapic.pin'.
958 */
959 ioapic = mp_find_ioapic(gsi);
960 if (ioapic < 0)
961 return;
962 pin = gsi - mp_ioapic_routing[ioapic].gsi_base;
963
964 /*
965 * TBD: This check is for faulty timer entries, where the override
966 * erroneously sets the trigger to level, resulting in a HUGE
967 * increase of timer interrupts!
968 */
969 if ((bus_irq == 0) && (trigger == 3))
970 trigger = 1;
971
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400972 mp_irqs[mp_irq_entries].mp_type = MP_INTSRC;
973 mp_irqs[mp_irq_entries].mp_irqtype = mp_INT;
974 mp_irqs[mp_irq_entries].mp_irqflag = (trigger << 2) | polarity;
975 mp_irqs[mp_irq_entries].mp_srcbus = MP_ISA_BUS;
976 mp_irqs[mp_irq_entries].mp_srcbusirq = bus_irq; /* IRQ */
977 mp_irqs[mp_irq_entries].mp_dstapic =
Alexey Starikovskiyec2cd0a2008-05-14 19:03:10 +0400978 mp_ioapics[ioapic].mp_apicid; /* APIC ID */
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +0400979 mp_irqs[mp_irq_entries].mp_dstirq = pin; /* INTIN# */
Alexey Starikovskiy11113f82008-05-14 19:02:57 +0400980
981 if (++mp_irq_entries == MAX_IRQ_SOURCES)
982 panic("Max # of irq sources exceeded!!\n");
983
984}
985
986void __init mp_config_acpi_legacy_irqs(void)
987{
988 int i = 0;
989 int ioapic = -1;
990
991#if defined (CONFIG_MCA) || defined (CONFIG_EISA)
992 /*
993 * Fabricate the legacy ISA bus (bus #31).
994 */
995 mp_bus_id_to_type[MP_ISA_BUS] = MP_BUS_ISA;
996#endif
997 set_bit(MP_ISA_BUS, mp_bus_not_pci);
998 Dprintk("Bus #%d is ISA\n", MP_ISA_BUS);
999
1000#if defined(CONFIG_X86_ES7000) || defined(CONFIG_X86_GENERICARCH)
1001 /*
1002 * Older generations of ES7000 have no legacy identity mappings
1003 */
1004 if (es7000_plat == 1)
1005 return;
1006#endif
1007
1008 /*
1009 * Locate the IOAPIC that manages the ISA IRQs (0-15).
1010 */
1011 ioapic = mp_find_ioapic(0);
1012 if (ioapic < 0)
1013 return;
1014
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +04001015 mp_irqs[mp_irq_entries].mp_type = MP_INTSRC;
1016 mp_irqs[mp_irq_entries].mp_irqflag = 0; /* Conforming */
1017 mp_irqs[mp_irq_entries].mp_srcbus = MP_ISA_BUS;
1018 mp_irqs[mp_irq_entries].mp_dstapic = mp_ioapics[ioapic].mp_apicid;
1019
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001020 /*
1021 * Use the default configuration for the IRQs 0-15. Unless
1022 * overridden by (MADT) interrupt source override entries.
1023 */
1024 for (i = 0; i < 16; i++) {
1025 int idx;
1026
1027 for (idx = 0; idx < mp_irq_entries; idx++) {
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +04001028 struct mp_config_intsrc *irq = mp_irqs + idx;
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001029
1030 /* Do we already have a mapping for this ISA IRQ? */
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +04001031 if (irq->mp_srcbus == MP_ISA_BUS
1032 && irq->mp_srcbusirq == i)
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001033 break;
1034
1035 /* Do we already have a mapping for this IOAPIC pin */
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +04001036 if ((irq->mp_dstapic ==
1037 mp_irqs[mp_irq_entries].mp_dstapic) &&
1038 (irq->mp_dstirq == i))
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001039 break;
1040 }
1041
1042 if (idx != mp_irq_entries) {
1043 printk(KERN_DEBUG "ACPI: IRQ%d used by override.\n", i);
1044 continue; /* IRQ already used */
1045 }
1046
Alexey Starikovskiy2fddb6e282008-05-14 19:03:17 +04001047 mp_irqs[mp_irq_entries].mp_irqtype = mp_INT;
1048 mp_irqs[mp_irq_entries].mp_srcbusirq = i; /* Identity mapped */
1049 mp_irqs[mp_irq_entries].mp_dstirq = i;
Alexey Starikovskiy11113f82008-05-14 19:02:57 +04001050
1051 if (++mp_irq_entries == MAX_IRQ_SOURCES)
1052 panic("Max # of irq sources exceeded!!\n");
1053 }
1054}
1055
1056int mp_register_gsi(u32 gsi, int triggering, int polarity)
1057{
1058 int ioapic;
1059 int ioapic_pin;
1060#ifdef CONFIG_X86_32
1061#define MAX_GSI_NUM 4096
1062#define IRQ_COMPRESSION_START 64
1063
1064 static int pci_irq = IRQ_COMPRESSION_START;
1065 /*
1066 * Mapping between Global System Interrupts, which
1067 * represent all possible interrupts, and IRQs
1068 * assigned to actual devices.
1069 */
1070 static int gsi_to_irq[MAX_GSI_NUM];
1071#else
1072
1073 if (acpi_irq_model != ACPI_IRQ_MODEL_IOAPIC)
1074 return gsi;
1075#endif
1076
1077 /* Don't set up the ACPI SCI because it's already set up */
1078 if (acpi_gbl_FADT.sci_interrupt == gsi)
1079 return gsi;
1080
1081 ioapic = mp_find_ioapic(gsi);
1082 if (ioapic < 0) {
1083 printk(KERN_WARNING "No IOAPIC for GSI %u\n", gsi);
1084 return gsi;
1085 }
1086
1087 ioapic_pin = gsi - mp_ioapic_routing[ioapic].gsi_base;
1088
1089#ifdef CONFIG_X86_32
1090 if (ioapic_renumber_irq)
1091 gsi = ioapic_renumber_irq(ioapic, gsi);
1092#endif
1093
1094 /*
1095 * Avoid pin reprogramming. PRTs typically include entries
1096 * with redundant pin->gsi mappings (but unique PCI devices);
1097 * we only program the IOAPIC on the first.
1098 */
1099 if (ioapic_pin > MP_MAX_IOAPIC_PIN) {
1100 printk(KERN_ERR "Invalid reference to IOAPIC pin "
1101 "%d-%d\n", mp_ioapic_routing[ioapic].apic_id,
1102 ioapic_pin);
1103 return gsi;
1104 }
1105 if (test_bit(ioapic_pin, mp_ioapic_routing[ioapic].pin_programmed)) {
1106 Dprintk(KERN_DEBUG "Pin %d-%d already programmed\n",
1107 mp_ioapic_routing[ioapic].apic_id, ioapic_pin);
1108#ifdef CONFIG_X86_32
1109 return (gsi < IRQ_COMPRESSION_START ? gsi : gsi_to_irq[gsi]);
1110#else
1111 return gsi;
1112#endif
1113 }
1114
1115 set_bit(ioapic_pin, mp_ioapic_routing[ioapic].pin_programmed);
1116#ifdef CONFIG_X86_32
1117 /*
1118 * For GSI >= 64, use IRQ compression
1119 */
1120 if ((gsi >= IRQ_COMPRESSION_START)
1121 && (triggering == ACPI_LEVEL_SENSITIVE)) {
1122 /*
1123 * For PCI devices assign IRQs in order, avoiding gaps
1124 * due to unused I/O APIC pins.
1125 */
1126 int irq = gsi;
1127 if (gsi < MAX_GSI_NUM) {
1128 /*
1129 * Retain the VIA chipset work-around (gsi > 15), but
1130 * avoid a problem where the 8254 timer (IRQ0) is setup
1131 * via an override (so it's not on pin 0 of the ioapic),
1132 * and at the same time, the pin 0 interrupt is a PCI
1133 * type. The gsi > 15 test could cause these two pins
1134 * to be shared as IRQ0, and they are not shareable.
1135 * So test for this condition, and if necessary, avoid
1136 * the pin collision.
1137 */
1138 gsi = pci_irq++;
1139 /*
1140 * Don't assign IRQ used by ACPI SCI
1141 */
1142 if (gsi == acpi_gbl_FADT.sci_interrupt)
1143 gsi = pci_irq++;
1144 gsi_to_irq[irq] = gsi;
1145 } else {
1146 printk(KERN_ERR "GSI %u is too high\n", gsi);
1147 return gsi;
1148 }
1149 }
1150#endif
1151 io_apic_set_pci_routing(ioapic, ioapic_pin, gsi,
1152 triggering == ACPI_EDGE_SENSITIVE ? 0 : 1,
1153 polarity == ACPI_ACTIVE_HIGH ? 0 : 1);
1154 return gsi;
1155}
1156
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157/*
1158 * Parse IOAPIC related entries in MADT
1159 * returns 0 on success, < 0 on error
1160 */
Len Brown4be44fc2005-08-05 00:44:28 -04001161static int __init acpi_parse_madt_ioapic_entries(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162{
1163 int count;
1164
1165 /*
1166 * ACPI interpreter is required to complete interrupt setup,
1167 * so if it is off, don't enumerate the io-apics with ACPI.
1168 * If MPS is present, it will handle them,
1169 * otherwise the system will stay in PIC mode
1170 */
1171 if (acpi_disabled || acpi_noirq) {
1172 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -04001173 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001175 if (!cpu_has_apic)
Andi Kleend3b6a342006-04-07 19:49:39 +02001176 return -ENODEV;
1177
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 /*
Len Brown4be44fc2005-08-05 00:44:28 -04001179 * if "noapic" boot option, don't look for IO-APICs
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 */
1181 if (skip_ioapic_setup) {
1182 printk(KERN_INFO PREFIX "Skipping IOAPIC probe "
Len Brown4be44fc2005-08-05 00:44:28 -04001183 "due to 'noapic' option.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 return -ENODEV;
1185 }
1186
Len Brown4be44fc2005-08-05 00:44:28 -04001187 count =
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001188 acpi_table_parse_madt(ACPI_MADT_TYPE_IO_APIC, acpi_parse_ioapic,
Len Brown4be44fc2005-08-05 00:44:28 -04001189 MAX_IO_APICS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 if (!count) {
1191 printk(KERN_ERR PREFIX "No IOAPIC entries present\n");
1192 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -04001193 } else if (count < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 printk(KERN_ERR PREFIX "Error parsing IOAPIC entry\n");
1195 return count;
1196 }
1197
Len Brown4be44fc2005-08-05 00:44:28 -04001198 count =
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001199 acpi_table_parse_madt(ACPI_MADT_TYPE_INTERRUPT_OVERRIDE, acpi_parse_int_src_ovr,
Len Brown4be44fc2005-08-05 00:44:28 -04001200 NR_IRQ_VECTORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 if (count < 0) {
Len Brown4be44fc2005-08-05 00:44:28 -04001202 printk(KERN_ERR PREFIX
1203 "Error parsing interrupt source overrides entry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 /* TBD: Cleanup to allow fallback to MPS */
1205 return count;
1206 }
1207
1208 /*
1209 * If BIOS did not supply an INT_SRC_OVR for the SCI
1210 * pretend we got one so we can set the SCI flags.
1211 */
1212 if (!acpi_sci_override_gsi)
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001213 acpi_sci_ioapic_setup(acpi_gbl_FADT.sci_interrupt, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
1215 /* Fill in identity legacy mapings where no override */
1216 mp_config_acpi_legacy_irqs();
1217
Len Brown4be44fc2005-08-05 00:44:28 -04001218 count =
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001219 acpi_table_parse_madt(ACPI_MADT_TYPE_NMI_SOURCE, acpi_parse_nmi_src,
Len Brown4be44fc2005-08-05 00:44:28 -04001220 NR_IRQ_VECTORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 if (count < 0) {
1222 printk(KERN_ERR PREFIX "Error parsing NMI SRC entry\n");
1223 /* TBD: Cleanup to allow fallback to MPS */
1224 return count;
1225 }
1226
1227 return 0;
1228}
1229#else
1230static inline int acpi_parse_madt_ioapic_entries(void)
1231{
1232 return -1;
1233}
Len Brown84663612005-08-24 12:09:07 -04001234#endif /* !CONFIG_X86_IO_APIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
Yinghai Lucbf9bd62008-02-19 03:21:06 -08001236static void __init early_acpi_process_madt(void)
1237{
1238#ifdef CONFIG_X86_LOCAL_APIC
1239 int error;
1240
1241 if (!acpi_table_parse(ACPI_SIG_MADT, acpi_parse_madt)) {
1242
1243 /*
1244 * Parse MADT LAPIC entries
1245 */
1246 error = early_acpi_parse_madt_lapic_addr_ovr();
1247 if (!error) {
1248 acpi_lapic = 1;
1249 smp_found_config = 1;
1250 }
1251 if (error == -EINVAL) {
1252 /*
1253 * Dell Precision Workstation 410, 610 come here.
1254 */
1255 printk(KERN_ERR PREFIX
1256 "Invalid BIOS MADT, disabling ACPI\n");
1257 disable_acpi();
1258 }
1259 }
1260#endif
1261}
1262
Len Brown4be44fc2005-08-05 00:44:28 -04001263static void __init acpi_process_madt(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264{
1265#ifdef CONFIG_X86_LOCAL_APIC
Len Brown7f8f97c2007-02-10 21:28:03 -05001266 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
Len Brown7f8f97c2007-02-10 21:28:03 -05001268 if (!acpi_table_parse(ACPI_SIG_MADT, acpi_parse_madt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269
1270 /*
1271 * Parse MADT LAPIC entries
1272 */
1273 error = acpi_parse_madt_lapic_entries();
1274 if (!error) {
1275 acpi_lapic = 1;
1276
Venkatesh Pallipadi911a62d2005-09-03 15:56:31 -07001277#ifdef CONFIG_X86_GENERICARCH
1278 generic_bigsmp_probe();
1279#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 /*
1281 * Parse MADT IO-APIC entries
1282 */
1283 error = acpi_parse_madt_ioapic_entries();
1284 if (!error) {
1285 acpi_irq_model = ACPI_IRQ_MODEL_IOAPIC;
1286 acpi_irq_balance_set(NULL);
1287 acpi_ioapic = 1;
1288
1289 smp_found_config = 1;
Ingo Molnar3c43f032007-05-02 19:27:04 +02001290 setup_apic_routing();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 }
1292 }
1293 if (error == -EINVAL) {
1294 /*
1295 * Dell Precision Workstation 410, 610 come here.
1296 */
Len Brown4be44fc2005-08-05 00:44:28 -04001297 printk(KERN_ERR PREFIX
1298 "Invalid BIOS MADT, disabling ACPI\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 disable_acpi();
1300 }
1301 }
1302#endif
1303 return;
1304}
1305
Andrey Paninaea00142005-06-25 14:54:42 -07001306#ifdef __i386__
1307
Jeff Garzik18552562007-10-03 15:15:40 -04001308static int __init disable_acpi_irq(const struct dmi_system_id *d)
Andrey Paninaea00142005-06-25 14:54:42 -07001309{
1310 if (!acpi_force) {
1311 printk(KERN_NOTICE "%s detected: force use of acpi=noirq\n",
1312 d->ident);
1313 acpi_noirq_set();
1314 }
1315 return 0;
1316}
1317
Jeff Garzik18552562007-10-03 15:15:40 -04001318static int __init disable_acpi_pci(const struct dmi_system_id *d)
Andrey Paninaea00142005-06-25 14:54:42 -07001319{
1320 if (!acpi_force) {
1321 printk(KERN_NOTICE "%s detected: force use of pci=noacpi\n",
1322 d->ident);
1323 acpi_disable_pci();
1324 }
1325 return 0;
1326}
Andrey Paninaea00142005-06-25 14:54:42 -07001327
Jeff Garzik18552562007-10-03 15:15:40 -04001328static int __init dmi_disable_acpi(const struct dmi_system_id *d)
Andrey Paninaea00142005-06-25 14:54:42 -07001329{
1330 if (!acpi_force) {
Len Brown4be44fc2005-08-05 00:44:28 -04001331 printk(KERN_NOTICE "%s detected: acpi off\n", d->ident);
Andrey Paninaea00142005-06-25 14:54:42 -07001332 disable_acpi();
1333 } else {
1334 printk(KERN_NOTICE
1335 "Warning: DMI blacklist says broken, but acpi forced\n");
1336 }
1337 return 0;
1338}
1339
1340/*
1341 * Limit ACPI to CPU enumeration for HT
1342 */
Jeff Garzik18552562007-10-03 15:15:40 -04001343static int __init force_acpi_ht(const struct dmi_system_id *d)
Andrey Paninaea00142005-06-25 14:54:42 -07001344{
1345 if (!acpi_force) {
Len Brown4be44fc2005-08-05 00:44:28 -04001346 printk(KERN_NOTICE "%s detected: force use of acpi=ht\n",
1347 d->ident);
Andrey Paninaea00142005-06-25 14:54:42 -07001348 disable_acpi();
1349 acpi_ht = 1;
1350 } else {
1351 printk(KERN_NOTICE
1352 "Warning: acpi=force overrules DMI blacklist: acpi=ht\n");
1353 }
1354 return 0;
1355}
1356
1357/*
1358 * If your system is blacklisted here, but you find that acpi=force
1359 * works for you, please contact acpi-devel@sourceforge.net
1360 */
1361static struct dmi_system_id __initdata acpi_dmi_table[] = {
1362 /*
1363 * Boxes that need ACPI disabled
1364 */
1365 {
Len Brown4be44fc2005-08-05 00:44:28 -04001366 .callback = dmi_disable_acpi,
1367 .ident = "IBM Thinkpad",
1368 .matches = {
1369 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1370 DMI_MATCH(DMI_BOARD_NAME, "2629H1G"),
1371 },
1372 },
Andrey Paninaea00142005-06-25 14:54:42 -07001373
1374 /*
1375 * Boxes that need acpi=ht
1376 */
1377 {
Len Brown4be44fc2005-08-05 00:44:28 -04001378 .callback = force_acpi_ht,
1379 .ident = "FSC Primergy T850",
1380 .matches = {
1381 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
1382 DMI_MATCH(DMI_PRODUCT_NAME, "PRIMERGY T850"),
1383 },
1384 },
Andrey Paninaea00142005-06-25 14:54:42 -07001385 {
Len Brown4be44fc2005-08-05 00:44:28 -04001386 .callback = force_acpi_ht,
Len Brown4be44fc2005-08-05 00:44:28 -04001387 .ident = "HP VISUALIZE NT Workstation",
1388 .matches = {
1389 DMI_MATCH(DMI_BOARD_VENDOR, "Hewlett-Packard"),
1390 DMI_MATCH(DMI_PRODUCT_NAME, "HP VISUALIZE NT Workstation"),
1391 },
1392 },
Andrey Paninaea00142005-06-25 14:54:42 -07001393 {
Len Brown4be44fc2005-08-05 00:44:28 -04001394 .callback = force_acpi_ht,
1395 .ident = "Compaq Workstation W8000",
1396 .matches = {
1397 DMI_MATCH(DMI_SYS_VENDOR, "Compaq"),
1398 DMI_MATCH(DMI_PRODUCT_NAME, "Workstation W8000"),
1399 },
1400 },
Andrey Paninaea00142005-06-25 14:54:42 -07001401 {
Len Brown4be44fc2005-08-05 00:44:28 -04001402 .callback = force_acpi_ht,
1403 .ident = "ASUS P4B266",
1404 .matches = {
1405 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1406 DMI_MATCH(DMI_BOARD_NAME, "P4B266"),
1407 },
1408 },
Andrey Paninaea00142005-06-25 14:54:42 -07001409 {
Len Brown4be44fc2005-08-05 00:44:28 -04001410 .callback = force_acpi_ht,
1411 .ident = "ASUS P2B-DS",
1412 .matches = {
1413 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1414 DMI_MATCH(DMI_BOARD_NAME, "P2B-DS"),
1415 },
1416 },
Andrey Paninaea00142005-06-25 14:54:42 -07001417 {
Len Brown4be44fc2005-08-05 00:44:28 -04001418 .callback = force_acpi_ht,
1419 .ident = "ASUS CUR-DLS",
1420 .matches = {
1421 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1422 DMI_MATCH(DMI_BOARD_NAME, "CUR-DLS"),
1423 },
1424 },
Andrey Paninaea00142005-06-25 14:54:42 -07001425 {
Len Brown4be44fc2005-08-05 00:44:28 -04001426 .callback = force_acpi_ht,
1427 .ident = "ABIT i440BX-W83977",
1428 .matches = {
1429 DMI_MATCH(DMI_BOARD_VENDOR, "ABIT <http://www.abit.com>"),
1430 DMI_MATCH(DMI_BOARD_NAME, "i440BX-W83977 (BP6)"),
1431 },
1432 },
Andrey Paninaea00142005-06-25 14:54:42 -07001433 {
Len Brown4be44fc2005-08-05 00:44:28 -04001434 .callback = force_acpi_ht,
1435 .ident = "IBM Bladecenter",
1436 .matches = {
1437 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1438 DMI_MATCH(DMI_BOARD_NAME, "IBM eServer BladeCenter HS20"),
1439 },
1440 },
Andrey Paninaea00142005-06-25 14:54:42 -07001441 {
Len Brown4be44fc2005-08-05 00:44:28 -04001442 .callback = force_acpi_ht,
1443 .ident = "IBM eServer xSeries 360",
1444 .matches = {
1445 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1446 DMI_MATCH(DMI_BOARD_NAME, "eServer xSeries 360"),
1447 },
1448 },
Andrey Paninaea00142005-06-25 14:54:42 -07001449 {
Len Brown4be44fc2005-08-05 00:44:28 -04001450 .callback = force_acpi_ht,
1451 .ident = "IBM eserver xSeries 330",
1452 .matches = {
1453 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1454 DMI_MATCH(DMI_BOARD_NAME, "eserver xSeries 330"),
1455 },
1456 },
Andrey Paninaea00142005-06-25 14:54:42 -07001457 {
Len Brown4be44fc2005-08-05 00:44:28 -04001458 .callback = force_acpi_ht,
1459 .ident = "IBM eserver xSeries 440",
1460 .matches = {
1461 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1462 DMI_MATCH(DMI_PRODUCT_NAME, "eserver xSeries 440"),
1463 },
1464 },
Andrey Paninaea00142005-06-25 14:54:42 -07001465
Andrey Paninaea00142005-06-25 14:54:42 -07001466 /*
1467 * Boxes that need ACPI PCI IRQ routing disabled
1468 */
1469 {
Len Brown4be44fc2005-08-05 00:44:28 -04001470 .callback = disable_acpi_irq,
1471 .ident = "ASUS A7V",
1472 .matches = {
1473 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC"),
1474 DMI_MATCH(DMI_BOARD_NAME, "<A7V>"),
1475 /* newer BIOS, Revision 1011, does work */
1476 DMI_MATCH(DMI_BIOS_VERSION,
1477 "ASUS A7V ACPI BIOS Revision 1007"),
1478 },
1479 },
Len Brown74586fc2007-03-08 02:48:30 -05001480 {
1481 /*
1482 * Latest BIOS for IBM 600E (1.16) has bad pcinum
1483 * for LPC bridge, which is needed for the PCI
1484 * interrupt links to work. DSDT fix is in bug 5966.
1485 * 2645, 2646 model numbers are shared with 600/600E/600X
1486 */
1487 .callback = disable_acpi_irq,
1488 .ident = "IBM Thinkpad 600 Series 2645",
1489 .matches = {
1490 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1491 DMI_MATCH(DMI_BOARD_NAME, "2645"),
1492 },
1493 },
1494 {
1495 .callback = disable_acpi_irq,
1496 .ident = "IBM Thinkpad 600 Series 2646",
1497 .matches = {
1498 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
1499 DMI_MATCH(DMI_BOARD_NAME, "2646"),
1500 },
1501 },
Andrey Paninaea00142005-06-25 14:54:42 -07001502 /*
1503 * Boxes that need ACPI PCI IRQ routing and PCI scan disabled
1504 */
Len Brown4be44fc2005-08-05 00:44:28 -04001505 { /* _BBN 0 bug */
1506 .callback = disable_acpi_pci,
1507 .ident = "ASUS PR-DLS",
1508 .matches = {
1509 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
1510 DMI_MATCH(DMI_BOARD_NAME, "PR-DLS"),
1511 DMI_MATCH(DMI_BIOS_VERSION,
1512 "ASUS PR-DLS ACPI BIOS Revision 1010"),
1513 DMI_MATCH(DMI_BIOS_DATE, "03/21/2003")
1514 },
1515 },
Andrey Paninaea00142005-06-25 14:54:42 -07001516 {
Len Brown4be44fc2005-08-05 00:44:28 -04001517 .callback = disable_acpi_pci,
1518 .ident = "Acer TravelMate 36x Laptop",
1519 .matches = {
1520 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
1521 DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 360"),
1522 },
1523 },
Len Brown4be44fc2005-08-05 00:44:28 -04001524 {}
Andrey Paninaea00142005-06-25 14:54:42 -07001525};
1526
Len Brown4be44fc2005-08-05 00:44:28 -04001527#endif /* __i386__ */
Andrey Paninaea00142005-06-25 14:54:42 -07001528
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529/*
1530 * acpi_boot_table_init() and acpi_boot_init()
1531 * called from setup_arch(), always.
1532 * 1. checksums all tables
1533 * 2. enumerates lapics
1534 * 3. enumerates io-apics
1535 *
1536 * acpi_table_init() is separate to allow reading SRAT without
1537 * other side effects.
1538 *
1539 * side effects of acpi_boot_init:
1540 * acpi_lapic = 1 if LAPIC found
1541 * acpi_ioapic = 1 if IOAPIC found
1542 * if (acpi_lapic && acpi_ioapic) smp_found_config = 1;
1543 * if acpi_blacklisted() acpi_disabled = 1;
1544 * acpi_irq_model=...
1545 * ...
1546 *
1547 * return value: (currently ignored)
1548 * 0: success
1549 * !0: failure
1550 */
1551
Len Brown4be44fc2005-08-05 00:44:28 -04001552int __init acpi_boot_table_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553{
1554 int error;
1555
Andrey Paninaea00142005-06-25 14:54:42 -07001556#ifdef __i386__
1557 dmi_check_system(acpi_dmi_table);
1558#endif
1559
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 /*
1561 * If acpi_disabled, bail out
1562 * One exception: acpi=ht continues far enough to enumerate LAPICs
1563 */
1564 if (acpi_disabled && !acpi_ht)
Len Brown4be44fc2005-08-05 00:44:28 -04001565 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001567 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 * Initialize the ACPI boot-time table parser.
1569 */
1570 error = acpi_table_init();
1571 if (error) {
1572 disable_acpi();
1573 return error;
1574 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001576 acpi_table_parse(ACPI_SIG_BOOT, acpi_parse_sbf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577
1578 /*
1579 * blacklist may disable ACPI entirely
1580 */
1581 error = acpi_blacklisted();
1582 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 if (acpi_force) {
1584 printk(KERN_WARNING PREFIX "acpi=force override\n");
1585 } else {
1586 printk(KERN_WARNING PREFIX "Disabling ACPI support\n");
1587 disable_acpi();
1588 return error;
1589 }
1590 }
1591
1592 return 0;
1593}
1594
Yinghai Lucbf9bd62008-02-19 03:21:06 -08001595int __init early_acpi_boot_init(void)
1596{
1597 /*
1598 * If acpi_disabled, bail out
1599 * One exception: acpi=ht continues far enough to enumerate LAPICs
1600 */
1601 if (acpi_disabled && !acpi_ht)
1602 return 1;
1603
1604 /*
1605 * Process the Multiple APIC Description Table (MADT), if present
1606 */
1607 early_acpi_process_madt();
1608
1609 return 0;
1610}
1611
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612int __init acpi_boot_init(void)
1613{
1614 /*
1615 * If acpi_disabled, bail out
1616 * One exception: acpi=ht continues far enough to enumerate LAPICs
1617 */
1618 if (acpi_disabled && !acpi_ht)
Len Brown4be44fc2005-08-05 00:44:28 -04001619 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001621 acpi_table_parse(ACPI_SIG_BOOT, acpi_parse_sbf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622
1623 /*
1624 * set sci_int and PM timer address
1625 */
Alexey Starikovskiyceb6c462007-02-02 19:48:22 +03001626 acpi_table_parse(ACPI_SIG_FADT, acpi_parse_fadt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627
1628 /*
1629 * Process the Multiple APIC Description Table (MADT), if present
1630 */
1631 acpi_process_madt();
1632
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001633 acpi_table_parse(ACPI_SIG_HPET, acpi_parse_hpet);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
1635 return 0;
1636}
Rusty Russell1a3f2392006-09-26 10:52:32 +02001637
1638static int __init parse_acpi(char *arg)
1639{
1640 if (!arg)
1641 return -EINVAL;
1642
1643 /* "acpi=off" disables both ACPI table parsing and interpreter */
1644 if (strcmp(arg, "off") == 0) {
1645 disable_acpi();
1646 }
1647 /* acpi=force to over-ride black-list */
1648 else if (strcmp(arg, "force") == 0) {
1649 acpi_force = 1;
1650 acpi_ht = 1;
1651 acpi_disabled = 0;
1652 }
1653 /* acpi=strict disables out-of-spec workarounds */
1654 else if (strcmp(arg, "strict") == 0) {
1655 acpi_strict = 1;
1656 }
1657 /* Limit ACPI just to boot-time to enable HT */
1658 else if (strcmp(arg, "ht") == 0) {
1659 if (!acpi_force)
1660 disable_acpi();
1661 acpi_ht = 1;
1662 }
1663 /* "acpi=noirq" disables ACPI interrupt routing */
1664 else if (strcmp(arg, "noirq") == 0) {
1665 acpi_noirq_set();
1666 } else {
1667 /* Core will printk when we return error. */
1668 return -EINVAL;
1669 }
1670 return 0;
1671}
1672early_param("acpi", parse_acpi);
1673
1674/* FIXME: Using pci= for an ACPI parameter is a travesty. */
1675static int __init parse_pci(char *arg)
1676{
1677 if (arg && strcmp(arg, "noacpi") == 0)
1678 acpi_disable_pci();
1679 return 0;
1680}
1681early_param("pci", parse_pci);
1682
1683#ifdef CONFIG_X86_IO_APIC
1684static int __init parse_acpi_skip_timer_override(char *arg)
1685{
1686 acpi_skip_timer_override = 1;
1687 return 0;
1688}
1689early_param("acpi_skip_timer_override", parse_acpi_skip_timer_override);
Andi Kleenfa18f472006-11-14 16:57:46 +01001690
1691static int __init parse_acpi_use_timer_override(char *arg)
1692{
1693 acpi_use_timer_override = 1;
1694 return 0;
1695}
1696early_param("acpi_use_timer_override", parse_acpi_use_timer_override);
Rusty Russell1a3f2392006-09-26 10:52:32 +02001697#endif /* CONFIG_X86_IO_APIC */
1698
1699static int __init setup_acpi_sci(char *s)
1700{
1701 if (!s)
1702 return -EINVAL;
1703 if (!strcmp(s, "edge"))
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001704 acpi_sci_flags = ACPI_MADT_TRIGGER_EDGE |
1705 (acpi_sci_flags & ~ACPI_MADT_TRIGGER_MASK);
Rusty Russell1a3f2392006-09-26 10:52:32 +02001706 else if (!strcmp(s, "level"))
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001707 acpi_sci_flags = ACPI_MADT_TRIGGER_LEVEL |
1708 (acpi_sci_flags & ~ACPI_MADT_TRIGGER_MASK);
Rusty Russell1a3f2392006-09-26 10:52:32 +02001709 else if (!strcmp(s, "high"))
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001710 acpi_sci_flags = ACPI_MADT_POLARITY_ACTIVE_HIGH |
1711 (acpi_sci_flags & ~ACPI_MADT_POLARITY_MASK);
Rusty Russell1a3f2392006-09-26 10:52:32 +02001712 else if (!strcmp(s, "low"))
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001713 acpi_sci_flags = ACPI_MADT_POLARITY_ACTIVE_LOW |
1714 (acpi_sci_flags & ~ACPI_MADT_POLARITY_MASK);
Rusty Russell1a3f2392006-09-26 10:52:32 +02001715 else
1716 return -EINVAL;
1717 return 0;
1718}
1719early_param("acpi_sci", setup_acpi_sci);
Andrew Mortond0a90812006-10-20 14:30:27 -07001720
1721int __acpi_acquire_global_lock(unsigned int *lock)
1722{
1723 unsigned int old, new, val;
1724 do {
1725 old = *lock;
1726 new = (((old & ~0x3) + 2) + ((old >> 1) & 0x1));
1727 val = cmpxchg(lock, old, new);
1728 } while (unlikely (val != old));
1729 return (new < 3) ? -1 : 0;
1730}
1731
1732int __acpi_release_global_lock(unsigned int *lock)
1733{
1734 unsigned int old, new, val;
1735 do {
1736 old = *lock;
1737 new = old & ~0x3;
1738 val = cmpxchg(lock, old, new);
1739 } while (unlikely (val != old));
1740 return old & 0x1;
1741}