Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #include <linux/acpi.h> |
Thomas Gleixner | d66bea5 | 2007-02-16 01:27:57 -0800 | [diff] [blame] | 28 | #include <linux/acpi_pmtmr.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <linux/efi.h> |
Ashok Raj | 73fea17 | 2006-09-26 10:52:35 +0200 | [diff] [blame] | 30 | #include <linux/cpumask.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #include <linux/module.h> |
Andrey Panin | aea0014 | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 32 | #include <linux/dmi.h> |
Nick Piggin | b33fa1f | 2005-10-01 02:34:42 +1000 | [diff] [blame] | 33 | #include <linux/irq.h> |
adurbin@google.com | f0f4c34 | 2006-09-26 10:52:39 +0200 | [diff] [blame] | 34 | #include <linux/bootmem.h> |
| 35 | #include <linux/ioport.h> |
Yinghai Lu | a31f820 | 2009-05-06 10:06:15 -0700 | [diff] [blame] | 36 | #include <linux/pci.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | |
Thomas Gleixner | b72d0db | 2009-08-29 16:24:51 +0200 | [diff] [blame^] | 38 | #include <asm/pci_x86.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | #include <asm/pgtable.h> |
| 40 | #include <asm/io_apic.h> |
| 41 | #include <asm/apic.h> |
| 42 | #include <asm/io.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | #include <asm/mpspec.h> |
Alexey Starikovskiy | dfac218 | 2008-04-04 23:41:50 +0400 | [diff] [blame] | 44 | #include <asm/smp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | |
Adrian Bunk | e8924ac | 2006-09-26 10:52:35 +0200 | [diff] [blame] | 46 | static int __initdata acpi_force = 0; |
Zhao Yakui | 237889b | 2008-12-17 16:55:18 +0800 | [diff] [blame] | 47 | u32 acpi_rsdt_forced; |
Len Brown | c636f75 | 2009-05-19 23:47:38 -0400 | [diff] [blame] | 48 | int acpi_disabled; |
Andi Kleen | df3bb57 | 2006-09-26 10:52:33 +0200 | [diff] [blame] | 49 | EXPORT_SYMBOL(acpi_disabled); |
| 50 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | #ifdef CONFIG_X86_64 |
Ingo Molnar | 1dcdd3d | 2009-01-28 17:55:37 +0100 | [diff] [blame] | 52 | # include <asm/proto.h> |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 53 | #endif /* X86 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | |
| 55 | #define BAD_MADT_ENTRY(entry, end) ( \ |
| 56 | (!entry) || (unsigned long)entry + sizeof(*entry) > end || \ |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 57 | ((struct acpi_subtable_header *)entry)->length < sizeof(*entry)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | |
| 59 | #define PREFIX "ACPI: " |
| 60 | |
Andrew Morton | 90d5390 | 2006-11-02 22:07:18 -0800 | [diff] [blame] | 61 | int acpi_noirq; /* skip ACPI IRQ initialization */ |
Yinghai Lu | 6e4be1f | 2008-02-05 00:01:48 -0800 | [diff] [blame] | 62 | int acpi_pci_disabled; /* skip ACPI PCI scan and IRQ initialization */ |
| 63 | EXPORT_SYMBOL(acpi_pci_disabled); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | int acpi_ht __initdata = 1; /* enable HT */ |
| 65 | |
| 66 | int acpi_lapic; |
| 67 | int acpi_ioapic; |
| 68 | int acpi_strict; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 70 | u8 acpi_sci_flags __initdata; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | int acpi_sci_override_gsi __initdata; |
| 72 | int acpi_skip_timer_override __initdata; |
Andi Kleen | fa18f47 | 2006-11-14 16:57:46 +0100 | [diff] [blame] | 73 | int acpi_use_timer_override __initdata; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | |
| 75 | #ifdef CONFIG_X86_LOCAL_APIC |
| 76 | static u64 acpi_lapic_addr __initdata = APIC_DEFAULT_PHYS_BASE; |
| 77 | #endif |
| 78 | |
| 79 | #ifndef __HAVE_ARCH_CMPXCHG |
| 80 | #warning ACPI uses CMPXCHG, i486 and later hardware |
| 81 | #endif |
| 82 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | /* -------------------------------------------------------------------------- |
| 84 | Boot-time Configuration |
| 85 | -------------------------------------------------------------------------- */ |
| 86 | |
| 87 | /* |
| 88 | * The default interrupt routing model is PIC (8259). This gets |
Simon Arlott | 27b46d7 | 2007-10-20 01:13:56 +0200 | [diff] [blame] | 89 | * overridden if IOAPICs are enumerated (below). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 91 | enum acpi_irq_model_id acpi_irq_model = ACPI_IRQ_MODEL_PIC; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | |
| 94 | /* |
| 95 | * Temporarily use the virtual area starting from FIX_IO_APIC_BASE_END, |
| 96 | * to map the target physical address. The problem is that set_fixmap() |
| 97 | * provides a single page, and it is possible that the page is not |
| 98 | * sufficient. |
| 99 | * By using this area, we can map up to MAX_IO_APICS pages temporarily, |
| 100 | * i.e. until the next __va_range() call. |
| 101 | * |
| 102 | * Important Safety Note: The fixed I/O APIC page numbers are *subtracted* |
| 103 | * from the fixed base. That's why we start at FIX_IO_APIC_BASE_END and |
| 104 | * count idx down while incrementing the phys address. |
| 105 | */ |
Jan Beulich | 2fdf074 | 2007-12-13 08:33:59 +0000 | [diff] [blame] | 106 | char *__init __acpi_map_table(unsigned long phys, unsigned long size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | |
Yinghai Lu | f34fa82 | 2008-07-09 20:16:36 -0700 | [diff] [blame] | 109 | if (!phys || !size) |
| 110 | return NULL; |
| 111 | |
Yinghai Lu | 7d97277 | 2009-02-07 15:39:41 -0800 | [diff] [blame] | 112 | return early_ioremap(phys, size); |
| 113 | } |
| 114 | void __init __acpi_unmap_table(char *map, unsigned long size) |
| 115 | { |
| 116 | if (!map || !size) |
| 117 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | |
Yinghai Lu | 7d97277 | 2009-02-07 15:39:41 -0800 | [diff] [blame] | 119 | early_iounmap(map, size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | #ifdef CONFIG_X86_LOCAL_APIC |
Alexey Starikovskiy | 15a58ed | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 123 | static int __init acpi_parse_madt(struct acpi_table_header *table) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 125 | struct acpi_table_madt *madt = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | |
Alexey Starikovskiy | 15a58ed | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 127 | if (!cpu_has_apic) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | return -EINVAL; |
| 129 | |
Alexey Starikovskiy | 15a58ed | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 130 | madt = (struct acpi_table_madt *)table; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | if (!madt) { |
| 132 | printk(KERN_WARNING PREFIX "Unable to map MADT\n"); |
| 133 | return -ENODEV; |
| 134 | } |
| 135 | |
Alexey Starikovskiy | ad363f8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 136 | if (madt->address) { |
| 137 | acpi_lapic_addr = (u64) madt->address; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | |
| 139 | printk(KERN_DEBUG PREFIX "Local APIC address 0x%08x\n", |
Alexey Starikovskiy | ad363f8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 140 | madt->address); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | } |
| 142 | |
Ingo Molnar | 306db03 | 2009-01-28 03:43:47 +0100 | [diff] [blame] | 143 | default_acpi_madt_oem_check(madt->header.oem_id, |
| 144 | madt->header.oem_table_id); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 145 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | return 0; |
| 147 | } |
| 148 | |
Alexey Starikovskiy | dfac218 | 2008-04-04 23:41:50 +0400 | [diff] [blame] | 149 | static void __cpuinit acpi_register_lapic(int id, u8 enabled) |
| 150 | { |
Yinghai Lu | fb3bbd6 | 2008-05-22 18:22:30 -0700 | [diff] [blame] | 151 | unsigned int ver = 0; |
| 152 | |
Alexey Starikovskiy | dfac218 | 2008-04-04 23:41:50 +0400 | [diff] [blame] | 153 | if (!enabled) { |
| 154 | ++disabled_cpus; |
| 155 | return; |
| 156 | } |
| 157 | |
Yinghai Lu | fb3bbd6 | 2008-05-22 18:22:30 -0700 | [diff] [blame] | 158 | if (boot_cpu_physical_apicid != -1U) |
| 159 | ver = apic_version[boot_cpu_physical_apicid]; |
Yinghai Lu | fb3bbd6 | 2008-05-22 18:22:30 -0700 | [diff] [blame] | 160 | |
| 161 | generic_processor_info(id, ver); |
Alexey Starikovskiy | dfac218 | 2008-04-04 23:41:50 +0400 | [diff] [blame] | 162 | } |
| 163 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | static int __init |
Suresh Siddha | 7237d3d | 2009-03-30 13:55:30 -0800 | [diff] [blame] | 165 | acpi_parse_x2apic(struct acpi_subtable_header *header, const unsigned long end) |
| 166 | { |
| 167 | struct acpi_madt_local_x2apic *processor = NULL; |
| 168 | |
| 169 | processor = (struct acpi_madt_local_x2apic *)header; |
| 170 | |
| 171 | if (BAD_MADT_ENTRY(processor, end)) |
| 172 | return -EINVAL; |
| 173 | |
| 174 | acpi_table_print_madt_entry(header); |
| 175 | |
| 176 | #ifdef CONFIG_X86_X2APIC |
| 177 | /* |
| 178 | * We need to register disabled CPU as well to permit |
| 179 | * counting disabled CPUs. This allows us to size |
| 180 | * cpus_possible_map more accurately, to permit |
| 181 | * to not preallocating memory for all NR_CPUS |
| 182 | * when we use CPU hotplug. |
| 183 | */ |
| 184 | acpi_register_lapic(processor->local_apic_id, /* APIC ID */ |
| 185 | processor->lapic_flags & ACPI_MADT_ENABLED); |
| 186 | #else |
| 187 | printk(KERN_WARNING PREFIX "x2apic entry ignored\n"); |
| 188 | #endif |
| 189 | |
| 190 | return 0; |
| 191 | } |
| 192 | |
| 193 | static int __init |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 194 | acpi_parse_lapic(struct acpi_subtable_header * header, const unsigned long end) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | { |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 196 | struct acpi_madt_local_apic *processor = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 198 | processor = (struct acpi_madt_local_apic *)header; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | |
| 200 | if (BAD_MADT_ENTRY(processor, end)) |
| 201 | return -EINVAL; |
| 202 | |
| 203 | acpi_table_print_madt_entry(header); |
| 204 | |
Ashok Raj | 7f66ae4 | 2006-02-03 21:51:50 +0100 | [diff] [blame] | 205 | /* |
| 206 | * We need to register disabled CPU as well to permit |
| 207 | * counting disabled CPUs. This allows us to size |
| 208 | * cpus_possible_map more accurately, to permit |
| 209 | * to not preallocating memory for all NR_CPUS |
| 210 | * when we use CPU hotplug. |
| 211 | */ |
Alexey Starikovskiy | dfac218 | 2008-04-04 23:41:50 +0400 | [diff] [blame] | 212 | acpi_register_lapic(processor->id, /* APIC ID */ |
| 213 | processor->lapic_flags & ACPI_MADT_ENABLED); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | |
| 215 | return 0; |
| 216 | } |
| 217 | |
| 218 | static int __init |
Jack Steiner | ac049c1 | 2008-03-28 14:12:09 -0500 | [diff] [blame] | 219 | acpi_parse_sapic(struct acpi_subtable_header *header, const unsigned long end) |
| 220 | { |
| 221 | struct acpi_madt_local_sapic *processor = NULL; |
| 222 | |
| 223 | processor = (struct acpi_madt_local_sapic *)header; |
| 224 | |
| 225 | if (BAD_MADT_ENTRY(processor, end)) |
| 226 | return -EINVAL; |
| 227 | |
| 228 | acpi_table_print_madt_entry(header); |
| 229 | |
Alexey Starikovskiy | dfac218 | 2008-04-04 23:41:50 +0400 | [diff] [blame] | 230 | acpi_register_lapic((processor->id << 8) | processor->eid,/* APIC ID */ |
| 231 | processor->lapic_flags & ACPI_MADT_ENABLED); |
Jack Steiner | ac049c1 | 2008-03-28 14:12:09 -0500 | [diff] [blame] | 232 | |
| 233 | return 0; |
| 234 | } |
| 235 | |
| 236 | static int __init |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 237 | acpi_parse_lapic_addr_ovr(struct acpi_subtable_header * header, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 238 | const unsigned long end) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | { |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 240 | struct acpi_madt_local_apic_override *lapic_addr_ovr = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 242 | lapic_addr_ovr = (struct acpi_madt_local_apic_override *)header; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | |
| 244 | if (BAD_MADT_ENTRY(lapic_addr_ovr, end)) |
| 245 | return -EINVAL; |
| 246 | |
| 247 | acpi_lapic_addr = lapic_addr_ovr->address; |
| 248 | |
| 249 | return 0; |
| 250 | } |
| 251 | |
| 252 | static int __init |
Suresh Siddha | 7237d3d | 2009-03-30 13:55:30 -0800 | [diff] [blame] | 253 | acpi_parse_x2apic_nmi(struct acpi_subtable_header *header, |
| 254 | const unsigned long end) |
| 255 | { |
| 256 | struct acpi_madt_local_x2apic_nmi *x2apic_nmi = NULL; |
| 257 | |
| 258 | x2apic_nmi = (struct acpi_madt_local_x2apic_nmi *)header; |
| 259 | |
| 260 | if (BAD_MADT_ENTRY(x2apic_nmi, end)) |
| 261 | return -EINVAL; |
| 262 | |
| 263 | acpi_table_print_madt_entry(header); |
| 264 | |
| 265 | if (x2apic_nmi->lint != 1) |
| 266 | printk(KERN_WARNING PREFIX "NMI not connected to LINT 1!\n"); |
| 267 | |
| 268 | return 0; |
| 269 | } |
| 270 | |
| 271 | static int __init |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 272 | acpi_parse_lapic_nmi(struct acpi_subtable_header * header, const unsigned long end) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | { |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 274 | struct acpi_madt_local_apic_nmi *lapic_nmi = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 276 | lapic_nmi = (struct acpi_madt_local_apic_nmi *)header; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | |
| 278 | if (BAD_MADT_ENTRY(lapic_nmi, end)) |
| 279 | return -EINVAL; |
| 280 | |
| 281 | acpi_table_print_madt_entry(header); |
| 282 | |
| 283 | if (lapic_nmi->lint != 1) |
| 284 | printk(KERN_WARNING PREFIX "NMI not connected to LINT 1!\n"); |
| 285 | |
| 286 | return 0; |
| 287 | } |
| 288 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 289 | #endif /*CONFIG_X86_LOCAL_APIC */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | |
Len Brown | 8466361 | 2005-08-24 12:09:07 -0400 | [diff] [blame] | 291 | #ifdef CONFIG_X86_IO_APIC |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | |
| 293 | static int __init |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 294 | acpi_parse_ioapic(struct acpi_subtable_header * header, const unsigned long end) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | { |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 296 | struct acpi_madt_io_apic *ioapic = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 298 | ioapic = (struct acpi_madt_io_apic *)header; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | |
| 300 | if (BAD_MADT_ENTRY(ioapic, end)) |
| 301 | return -EINVAL; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 302 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | acpi_table_print_madt_entry(header); |
| 304 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 305 | mp_register_ioapic(ioapic->id, |
| 306 | ioapic->address, ioapic->global_irq_base); |
| 307 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | return 0; |
| 309 | } |
| 310 | |
| 311 | /* |
| 312 | * Parse Interrupt Source Override for the ACPI SCI |
| 313 | */ |
Len Brown | e82c354 | 2006-12-21 01:29:59 -0500 | [diff] [blame] | 314 | static void __init acpi_sci_ioapic_setup(u32 gsi, u16 polarity, u16 trigger) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | { |
| 316 | if (trigger == 0) /* compatible SCI trigger is level */ |
| 317 | trigger = 3; |
| 318 | |
| 319 | if (polarity == 0) /* compatible SCI polarity is low */ |
| 320 | polarity = 3; |
| 321 | |
| 322 | /* Command-line over-ride via acpi_sci= */ |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 323 | if (acpi_sci_flags & ACPI_MADT_TRIGGER_MASK) |
| 324 | trigger = (acpi_sci_flags & ACPI_MADT_TRIGGER_MASK) >> 2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 326 | if (acpi_sci_flags & ACPI_MADT_POLARITY_MASK) |
| 327 | polarity = acpi_sci_flags & ACPI_MADT_POLARITY_MASK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | |
| 329 | /* |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 330 | * mp_config_acpi_legacy_irqs() already setup IRQs < 16 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | * If GSI is < 16, this will update its flags, |
| 332 | * else it will create a new mp_irqs[] entry. |
| 333 | */ |
Len Brown | 7bdd21c | 2006-12-02 02:27:46 -0500 | [diff] [blame] | 334 | mp_override_legacy_irq(gsi, polarity, trigger, gsi); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | |
| 336 | /* |
| 337 | * stash over-ride to indicate we've been here |
Alexey Starikovskiy | cee324b | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 338 | * and for later update of acpi_gbl_FADT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | */ |
Len Brown | 7bdd21c | 2006-12-02 02:27:46 -0500 | [diff] [blame] | 340 | acpi_sci_override_gsi = gsi; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | return; |
| 342 | } |
| 343 | |
| 344 | static int __init |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 345 | acpi_parse_int_src_ovr(struct acpi_subtable_header * header, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 346 | const unsigned long end) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | { |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 348 | struct acpi_madt_interrupt_override *intsrc = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 350 | intsrc = (struct acpi_madt_interrupt_override *)header; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | |
| 352 | if (BAD_MADT_ENTRY(intsrc, end)) |
| 353 | return -EINVAL; |
| 354 | |
| 355 | acpi_table_print_madt_entry(header); |
| 356 | |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 357 | if (intsrc->source_irq == acpi_gbl_FADT.sci_interrupt) { |
Len Brown | 7bdd21c | 2006-12-02 02:27:46 -0500 | [diff] [blame] | 358 | acpi_sci_ioapic_setup(intsrc->global_irq, |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 359 | intsrc->inti_flags & ACPI_MADT_POLARITY_MASK, |
| 360 | (intsrc->inti_flags & ACPI_MADT_TRIGGER_MASK) >> 2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | return 0; |
| 362 | } |
| 363 | |
| 364 | if (acpi_skip_timer_override && |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 365 | intsrc->source_irq == 0 && intsrc->global_irq == 2) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 366 | printk(PREFIX "BIOS IRQ0 pin2 override ignored.\n"); |
| 367 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | } |
| 369 | |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 370 | mp_override_legacy_irq(intsrc->source_irq, |
| 371 | intsrc->inti_flags & ACPI_MADT_POLARITY_MASK, |
| 372 | (intsrc->inti_flags & ACPI_MADT_TRIGGER_MASK) >> 2, |
| 373 | intsrc->global_irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | |
| 375 | return 0; |
| 376 | } |
| 377 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | static int __init |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 379 | acpi_parse_nmi_src(struct acpi_subtable_header * header, const unsigned long end) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | { |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 381 | struct acpi_madt_nmi_source *nmi_src = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 383 | nmi_src = (struct acpi_madt_nmi_source *)header; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | |
| 385 | if (BAD_MADT_ENTRY(nmi_src, end)) |
| 386 | return -EINVAL; |
| 387 | |
| 388 | acpi_table_print_madt_entry(header); |
| 389 | |
| 390 | /* TBD: Support nimsrc entries? */ |
| 391 | |
| 392 | return 0; |
| 393 | } |
| 394 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 395 | #endif /* CONFIG_X86_IO_APIC */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | /* |
| 398 | * acpi_pic_sci_set_trigger() |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 399 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | * use ELCR to set PIC-mode trigger type for SCI |
| 401 | * |
| 402 | * If a PIC-mode SCI is not recognized or gives spurious IRQ7's |
| 403 | * it may require Edge Trigger -- use "acpi_sci=edge" |
| 404 | * |
| 405 | * Port 0x4d0-4d1 are ECLR1 and ECLR2, the Edge/Level Control Registers |
| 406 | * for the 8259 PIC. bit[n] = 1 means irq[n] is Level, otherwise Edge. |
Simon Arlott | 27b46d7 | 2007-10-20 01:13:56 +0200 | [diff] [blame] | 407 | * ECLR1 is IRQs 0-7 (IRQ 0, 1, 2 must be 0) |
| 408 | * ECLR2 is IRQs 8-15 (IRQ 8, 13 must be 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | */ |
| 410 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 411 | void __init acpi_pic_sci_set_trigger(unsigned int irq, u16 trigger) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | { |
| 413 | unsigned int mask = 1 << irq; |
| 414 | unsigned int old, new; |
| 415 | |
| 416 | /* Real old ELCR mask */ |
| 417 | old = inb(0x4d0) | (inb(0x4d1) << 8); |
| 418 | |
| 419 | /* |
Simon Arlott | 27b46d7 | 2007-10-20 01:13:56 +0200 | [diff] [blame] | 420 | * If we use ACPI to set PCI IRQs, then we should clear ELCR |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | * since we will set it correctly as we enable the PCI irq |
| 422 | * routing. |
| 423 | */ |
| 424 | new = acpi_noirq ? old : 0; |
| 425 | |
| 426 | /* |
| 427 | * Update SCI information in the ELCR, it isn't in the PCI |
| 428 | * routing tables.. |
| 429 | */ |
| 430 | switch (trigger) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 431 | case 1: /* Edge - clear */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | new &= ~mask; |
| 433 | break; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 434 | case 3: /* Level - set */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | new |= mask; |
| 436 | break; |
| 437 | } |
| 438 | |
| 439 | if (old == new) |
| 440 | return; |
| 441 | |
| 442 | printk(PREFIX "setting ELCR to %04x (from %04x)\n", new, old); |
| 443 | outb(new, 0x4d0); |
| 444 | outb(new >> 8, 0x4d1); |
| 445 | } |
| 446 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | int acpi_gsi_to_irq(u32 gsi, unsigned int *irq) |
| 448 | { |
Eric W. Biederman | f023d76 | 2006-10-04 02:16:52 -0700 | [diff] [blame] | 449 | *irq = gsi; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | return 0; |
| 451 | } |
| 452 | |
Kenji Kaneshige | 1f3a6a1 | 2005-07-28 14:42:00 -0400 | [diff] [blame] | 453 | /* |
| 454 | * success: return IRQ number (>=0) |
| 455 | * failure: return < 0 |
| 456 | */ |
Yinghai Lu | e519807 | 2009-05-15 13:05:16 -0700 | [diff] [blame] | 457 | int acpi_register_gsi(struct device *dev, u32 gsi, int trigger, int polarity) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | { |
| 459 | unsigned int irq; |
| 460 | unsigned int plat_gsi = gsi; |
| 461 | |
| 462 | #ifdef CONFIG_PCI |
| 463 | /* |
| 464 | * Make sure all (legacy) PCI IRQs are set as level-triggered. |
| 465 | */ |
| 466 | if (acpi_irq_model == ACPI_IRQ_MODEL_PIC) { |
Yinghai Lu | e519807 | 2009-05-15 13:05:16 -0700 | [diff] [blame] | 467 | if (trigger == ACPI_LEVEL_SENSITIVE) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 468 | eisa_set_level_irq(gsi); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | } |
| 470 | #endif |
| 471 | |
| 472 | #ifdef CONFIG_X86_IO_APIC |
| 473 | if (acpi_irq_model == ACPI_IRQ_MODEL_IOAPIC) { |
Yinghai Lu | e519807 | 2009-05-15 13:05:16 -0700 | [diff] [blame] | 474 | plat_gsi = mp_register_gsi(dev, gsi, trigger, polarity); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | } |
| 476 | #endif |
| 477 | acpi_gsi_to_irq(plat_gsi, &irq); |
| 478 | return irq; |
| 479 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 480 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | /* |
| 482 | * ACPI based hotplug support for CPU |
| 483 | */ |
| 484 | #ifdef CONFIG_ACPI_HOTPLUG_CPU |
Sam Ravnborg | 009cbad | 2008-02-01 17:49:42 +0100 | [diff] [blame] | 485 | |
| 486 | static int __cpuinit _acpi_map_lsapic(acpi_handle handle, int *pcpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | { |
Ashok Raj | 73fea17 | 2006-09-26 10:52:35 +0200 | [diff] [blame] | 488 | struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL }; |
| 489 | union acpi_object *obj; |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 490 | struct acpi_madt_local_apic *lapic; |
Rusty Russell | ee943a8 | 2008-12-31 18:08:47 -0800 | [diff] [blame] | 491 | cpumask_var_t tmp_map, new_map; |
Ashok Raj | 73fea17 | 2006-09-26 10:52:35 +0200 | [diff] [blame] | 492 | u8 physid; |
| 493 | int cpu; |
Rusty Russell | ee943a8 | 2008-12-31 18:08:47 -0800 | [diff] [blame] | 494 | int retval = -ENOMEM; |
Ashok Raj | 73fea17 | 2006-09-26 10:52:35 +0200 | [diff] [blame] | 495 | |
| 496 | if (ACPI_FAILURE(acpi_evaluate_object(handle, "_MAT", NULL, &buffer))) |
| 497 | return -EINVAL; |
| 498 | |
| 499 | if (!buffer.length || !buffer.pointer) |
| 500 | return -EINVAL; |
| 501 | |
| 502 | obj = buffer.pointer; |
| 503 | if (obj->type != ACPI_TYPE_BUFFER || |
| 504 | obj->buffer.length < sizeof(*lapic)) { |
| 505 | kfree(buffer.pointer); |
| 506 | return -EINVAL; |
| 507 | } |
| 508 | |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 509 | lapic = (struct acpi_madt_local_apic *)obj->buffer.pointer; |
Ashok Raj | 73fea17 | 2006-09-26 10:52:35 +0200 | [diff] [blame] | 510 | |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 511 | if (lapic->header.type != ACPI_MADT_TYPE_LOCAL_APIC || |
| 512 | !(lapic->lapic_flags & ACPI_MADT_ENABLED)) { |
Ashok Raj | 73fea17 | 2006-09-26 10:52:35 +0200 | [diff] [blame] | 513 | kfree(buffer.pointer); |
| 514 | return -EINVAL; |
| 515 | } |
| 516 | |
| 517 | physid = lapic->id; |
| 518 | |
| 519 | kfree(buffer.pointer); |
| 520 | buffer.length = ACPI_ALLOCATE_BUFFER; |
| 521 | buffer.pointer = NULL; |
| 522 | |
Rusty Russell | ee943a8 | 2008-12-31 18:08:47 -0800 | [diff] [blame] | 523 | if (!alloc_cpumask_var(&tmp_map, GFP_KERNEL)) |
| 524 | goto out; |
| 525 | |
| 526 | if (!alloc_cpumask_var(&new_map, GFP_KERNEL)) |
| 527 | goto free_tmp_map; |
| 528 | |
| 529 | cpumask_copy(tmp_map, cpu_present_mask); |
Alexey Starikovskiy | dfac218 | 2008-04-04 23:41:50 +0400 | [diff] [blame] | 530 | acpi_register_lapic(physid, lapic->lapic_flags & ACPI_MADT_ENABLED); |
Ashok Raj | 73fea17 | 2006-09-26 10:52:35 +0200 | [diff] [blame] | 531 | |
| 532 | /* |
| 533 | * If mp_register_lapic successfully generates a new logical cpu |
| 534 | * number, then the following will get us exactly what was mapped |
| 535 | */ |
Rusty Russell | ee943a8 | 2008-12-31 18:08:47 -0800 | [diff] [blame] | 536 | cpumask_andnot(new_map, cpu_present_mask, tmp_map); |
| 537 | if (cpumask_empty(new_map)) { |
Ashok Raj | 73fea17 | 2006-09-26 10:52:35 +0200 | [diff] [blame] | 538 | printk ("Unable to map lapic to logical cpu number\n"); |
Rusty Russell | ee943a8 | 2008-12-31 18:08:47 -0800 | [diff] [blame] | 539 | retval = -EINVAL; |
| 540 | goto free_new_map; |
Ashok Raj | 73fea17 | 2006-09-26 10:52:35 +0200 | [diff] [blame] | 541 | } |
| 542 | |
Rusty Russell | ee943a8 | 2008-12-31 18:08:47 -0800 | [diff] [blame] | 543 | cpu = cpumask_first(new_map); |
Ashok Raj | 73fea17 | 2006-09-26 10:52:35 +0200 | [diff] [blame] | 544 | |
| 545 | *pcpu = cpu; |
Rusty Russell | ee943a8 | 2008-12-31 18:08:47 -0800 | [diff] [blame] | 546 | retval = 0; |
| 547 | |
| 548 | free_new_map: |
| 549 | free_cpumask_var(new_map); |
| 550 | free_tmp_map: |
| 551 | free_cpumask_var(tmp_map); |
| 552 | out: |
| 553 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 555 | |
Sam Ravnborg | 009cbad | 2008-02-01 17:49:42 +0100 | [diff] [blame] | 556 | /* wrapper to silence section mismatch warning */ |
| 557 | int __ref acpi_map_lsapic(acpi_handle handle, int *pcpu) |
| 558 | { |
| 559 | return _acpi_map_lsapic(handle, pcpu); |
| 560 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 561 | EXPORT_SYMBOL(acpi_map_lsapic); |
| 562 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 563 | int acpi_unmap_lsapic(int cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | { |
Mike Travis | 71fff5e | 2007-10-19 20:35:03 +0200 | [diff] [blame] | 565 | per_cpu(x86_cpu_to_apicid, cpu) = -1; |
Mike Travis | 9628937 | 2008-12-31 18:08:46 -0800 | [diff] [blame] | 566 | set_cpu_present(cpu, false); |
Ashok Raj | 73fea17 | 2006-09-26 10:52:35 +0200 | [diff] [blame] | 567 | num_processors--; |
| 568 | |
| 569 | return (0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 571 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 572 | EXPORT_SYMBOL(acpi_unmap_lsapic); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 573 | #endif /* CONFIG_ACPI_HOTPLUG_CPU */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 574 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 575 | int acpi_register_ioapic(acpi_handle handle, u64 phys_addr, u32 gsi_base) |
Kenji Kaneshige | b1bb248 | 2005-04-28 00:25:58 -0700 | [diff] [blame] | 576 | { |
| 577 | /* TBD */ |
| 578 | return -EINVAL; |
| 579 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 580 | |
Kenji Kaneshige | b1bb248 | 2005-04-28 00:25:58 -0700 | [diff] [blame] | 581 | EXPORT_SYMBOL(acpi_register_ioapic); |
| 582 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 583 | int acpi_unregister_ioapic(acpi_handle handle, u32 gsi_base) |
Kenji Kaneshige | b1bb248 | 2005-04-28 00:25:58 -0700 | [diff] [blame] | 584 | { |
| 585 | /* TBD */ |
| 586 | return -EINVAL; |
| 587 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 588 | |
Kenji Kaneshige | b1bb248 | 2005-04-28 00:25:58 -0700 | [diff] [blame] | 589 | EXPORT_SYMBOL(acpi_unregister_ioapic); |
| 590 | |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 591 | static int __init acpi_parse_sbf(struct acpi_table_header *table) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | { |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 593 | struct acpi_table_boot *sb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 595 | sb = (struct acpi_table_boot *)table; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | if (!sb) { |
| 597 | printk(KERN_WARNING PREFIX "Unable to map SBF\n"); |
| 598 | return -ENODEV; |
| 599 | } |
| 600 | |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 601 | sbf_port = sb->cmos_index; /* Save CMOS port */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | |
| 603 | return 0; |
| 604 | } |
| 605 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | #ifdef CONFIG_HPET_TIMER |
john stultz | 2d0c87c | 2007-02-16 01:28:18 -0800 | [diff] [blame] | 607 | #include <asm/hpet.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | |
Aaron Durbin | a1dfd85 | 2007-07-21 17:11:39 +0200 | [diff] [blame] | 609 | static struct __initdata resource *hpet_res; |
| 610 | |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 611 | static int __init acpi_parse_hpet(struct acpi_table_header *table) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | { |
| 613 | struct acpi_table_hpet *hpet_tbl; |
| 614 | |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 615 | hpet_tbl = (struct acpi_table_hpet *)table; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 616 | if (!hpet_tbl) { |
| 617 | printk(KERN_WARNING PREFIX "Unable to map HPET\n"); |
| 618 | return -ENODEV; |
| 619 | } |
| 620 | |
Alexey Starikovskiy | ad363f8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 621 | if (hpet_tbl->address.space_id != ACPI_SPACE_MEM) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 622 | printk(KERN_WARNING PREFIX "HPET timers must be located in " |
| 623 | "memory.\n"); |
| 624 | return -1; |
| 625 | } |
adurbin@google.com | f0f4c34 | 2006-09-26 10:52:39 +0200 | [diff] [blame] | 626 | |
john stultz | 2d0c87c | 2007-02-16 01:28:18 -0800 | [diff] [blame] | 627 | hpet_address = hpet_tbl->address.address; |
Suresh Siddha | c8bc6f3 | 2009-08-04 12:07:09 -0700 | [diff] [blame] | 628 | hpet_blockid = hpet_tbl->sequence; |
Thomas Gleixner | f4df73c | 2007-11-15 21:41:50 -0500 | [diff] [blame] | 629 | |
| 630 | /* |
| 631 | * Some broken BIOSes advertise HPET at 0x0. We really do not |
| 632 | * want to allocate a resource there. |
| 633 | */ |
| 634 | if (!hpet_address) { |
| 635 | printk(KERN_WARNING PREFIX |
| 636 | "HPET id: %#x base: %#lx is invalid\n", |
| 637 | hpet_tbl->id, hpet_address); |
| 638 | return 0; |
| 639 | } |
| 640 | #ifdef CONFIG_X86_64 |
| 641 | /* |
| 642 | * Some even more broken BIOSes advertise HPET at |
| 643 | * 0xfed0000000000000 instead of 0xfed00000. Fix it up and add |
| 644 | * some noise: |
| 645 | */ |
| 646 | if (hpet_address == 0xfed0000000000000UL) { |
| 647 | if (!hpet_force_user) { |
| 648 | printk(KERN_WARNING PREFIX "HPET id: %#x " |
| 649 | "base: 0xfed0000000000000 is bogus\n " |
| 650 | "try hpet=force on the kernel command line to " |
| 651 | "fix it up to 0xfed00000.\n", hpet_tbl->id); |
| 652 | hpet_address = 0; |
| 653 | return 0; |
| 654 | } |
| 655 | printk(KERN_WARNING PREFIX |
| 656 | "HPET id: %#x base: 0xfed0000000000000 fixed up " |
| 657 | "to 0xfed00000.\n", hpet_tbl->id); |
| 658 | hpet_address >>= 32; |
| 659 | } |
| 660 | #endif |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 661 | printk(KERN_INFO PREFIX "HPET id: %#x base: %#lx\n", |
john stultz | 2d0c87c | 2007-02-16 01:28:18 -0800 | [diff] [blame] | 662 | hpet_tbl->id, hpet_address); |
adurbin@google.com | f0f4c34 | 2006-09-26 10:52:39 +0200 | [diff] [blame] | 663 | |
Aaron Durbin | a1dfd85 | 2007-07-21 17:11:39 +0200 | [diff] [blame] | 664 | /* |
| 665 | * Allocate and initialize the HPET firmware resource for adding into |
| 666 | * the resource tree during the lateinit timeframe. |
| 667 | */ |
| 668 | #define HPET_RESOURCE_NAME_SIZE 9 |
| 669 | hpet_res = alloc_bootmem(sizeof(*hpet_res) + HPET_RESOURCE_NAME_SIZE); |
| 670 | |
Aaron Durbin | a1dfd85 | 2007-07-21 17:11:39 +0200 | [diff] [blame] | 671 | hpet_res->name = (void *)&hpet_res[1]; |
| 672 | hpet_res->flags = IORESOURCE_MEM; |
| 673 | snprintf((char *)hpet_res->name, HPET_RESOURCE_NAME_SIZE, "HPET %u", |
| 674 | hpet_tbl->sequence); |
| 675 | |
| 676 | hpet_res->start = hpet_address; |
| 677 | hpet_res->end = hpet_address + (1 * 1024) - 1; |
| 678 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 679 | return 0; |
| 680 | } |
Aaron Durbin | a1dfd85 | 2007-07-21 17:11:39 +0200 | [diff] [blame] | 681 | |
| 682 | /* |
| 683 | * hpet_insert_resource inserts the HPET resources used into the resource |
| 684 | * tree. |
| 685 | */ |
| 686 | static __init int hpet_insert_resource(void) |
| 687 | { |
| 688 | if (!hpet_res) |
| 689 | return 1; |
| 690 | |
| 691 | return insert_resource(&iomem_resource, hpet_res); |
| 692 | } |
| 693 | |
| 694 | late_initcall(hpet_insert_resource); |
| 695 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 696 | #else |
| 697 | #define acpi_parse_hpet NULL |
| 698 | #endif |
| 699 | |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 700 | static int __init acpi_parse_fadt(struct acpi_table_header *table) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 701 | { |
Jason Davis | 90660ec | 2005-04-16 15:24:53 -0700 | [diff] [blame] | 702 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | #ifdef CONFIG_X86_PM_TIMER |
| 704 | /* detect the location of the ACPI PM Timer */ |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 705 | if (acpi_gbl_FADT.header.revision >= FADT2_REVISION_ID) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 706 | /* FADT rev. 2 */ |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 707 | if (acpi_gbl_FADT.xpm_timer_block.space_id != |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 708 | ACPI_ADR_SPACE_SYSTEM_IO) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 | return 0; |
| 710 | |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 711 | pmtmr_ioport = acpi_gbl_FADT.xpm_timer_block.address; |
David Shaohua Li | e6e87b4 | 2005-09-21 01:35:00 -0400 | [diff] [blame] | 712 | /* |
| 713 | * "X" fields are optional extensions to the original V1.0 |
| 714 | * fields, so we must selectively expand V1.0 fields if the |
| 715 | * corresponding X field is zero. |
| 716 | */ |
| 717 | if (!pmtmr_ioport) |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 718 | pmtmr_ioport = acpi_gbl_FADT.pm_timer_block; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 | } else { |
| 720 | /* FADT rev. 1 */ |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 721 | pmtmr_ioport = acpi_gbl_FADT.pm_timer_block; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 722 | } |
| 723 | if (pmtmr_ioport) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 724 | printk(KERN_INFO PREFIX "PM-Timer IO Port: %#x\n", |
| 725 | pmtmr_ioport); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 726 | #endif |
| 727 | return 0; |
| 728 | } |
| 729 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 730 | #ifdef CONFIG_X86_LOCAL_APIC |
| 731 | /* |
| 732 | * Parse LAPIC entries in MADT |
| 733 | * returns 0 on success, < 0 on error |
| 734 | */ |
Alexey Starikovskiy | 31d2092 | 2008-04-04 23:41:57 +0400 | [diff] [blame] | 735 | |
| 736 | static void __init acpi_register_lapic_address(unsigned long address) |
| 737 | { |
| 738 | mp_lapic_addr = address; |
| 739 | |
| 740 | set_fixmap_nocache(FIX_APIC_BASE, address); |
Yinghai Lu | fb3bbd6 | 2008-05-22 18:22:30 -0700 | [diff] [blame] | 741 | if (boot_cpu_physical_apicid == -1U) { |
Yinghai Lu | 4c9961d | 2008-07-11 18:44:16 -0700 | [diff] [blame] | 742 | boot_cpu_physical_apicid = read_apic_id(); |
Yinghai Lu | fb3bbd6 | 2008-05-22 18:22:30 -0700 | [diff] [blame] | 743 | apic_version[boot_cpu_physical_apicid] = |
| 744 | GET_APIC_VERSION(apic_read(APIC_LVR)); |
Yinghai Lu | fb3bbd6 | 2008-05-22 18:22:30 -0700 | [diff] [blame] | 745 | } |
Alexey Starikovskiy | 31d2092 | 2008-04-04 23:41:57 +0400 | [diff] [blame] | 746 | } |
| 747 | |
Yinghai Lu | cbf9bd6 | 2008-02-19 03:21:06 -0800 | [diff] [blame] | 748 | static int __init early_acpi_parse_madt_lapic_addr_ovr(void) |
| 749 | { |
| 750 | int count; |
| 751 | |
| 752 | if (!cpu_has_apic) |
| 753 | return -ENODEV; |
| 754 | |
| 755 | /* |
| 756 | * Note that the LAPIC address is obtained from the MADT (32-bit value) |
| 757 | * and (optionally) overriden by a LAPIC_ADDR_OVR entry (64-bit value). |
| 758 | */ |
| 759 | |
| 760 | count = |
| 761 | acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_APIC_OVERRIDE, |
| 762 | acpi_parse_lapic_addr_ovr, 0); |
| 763 | if (count < 0) { |
| 764 | printk(KERN_ERR PREFIX |
| 765 | "Error parsing LAPIC address override entry\n"); |
| 766 | return count; |
| 767 | } |
| 768 | |
| 769 | acpi_register_lapic_address(acpi_lapic_addr); |
| 770 | |
| 771 | return count; |
| 772 | } |
| 773 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 774 | static int __init acpi_parse_madt_lapic_entries(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 775 | { |
| 776 | int count; |
Suresh Siddha | 7237d3d | 2009-03-30 13:55:30 -0800 | [diff] [blame] | 777 | int x2count = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 778 | |
Andi Kleen | 0fcd270 | 2006-04-11 12:54:36 +0200 | [diff] [blame] | 779 | if (!cpu_has_apic) |
| 780 | return -ENODEV; |
| 781 | |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 782 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 783 | * Note that the LAPIC address is obtained from the MADT (32-bit value) |
| 784 | * and (optionally) overriden by a LAPIC_ADDR_OVR entry (64-bit value). |
| 785 | */ |
| 786 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 787 | count = |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 788 | acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_APIC_OVERRIDE, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 789 | acpi_parse_lapic_addr_ovr, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 790 | if (count < 0) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 791 | printk(KERN_ERR PREFIX |
| 792 | "Error parsing LAPIC address override entry\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 793 | return count; |
| 794 | } |
| 795 | |
Alexey Starikovskiy | 31d2092 | 2008-04-04 23:41:57 +0400 | [diff] [blame] | 796 | acpi_register_lapic_address(acpi_lapic_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | |
Jack Steiner | ac049c1 | 2008-03-28 14:12:09 -0500 | [diff] [blame] | 798 | count = acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_SAPIC, |
| 799 | acpi_parse_sapic, MAX_APICS); |
| 800 | |
Suresh Siddha | 7237d3d | 2009-03-30 13:55:30 -0800 | [diff] [blame] | 801 | if (!count) { |
| 802 | x2count = acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_X2APIC, |
| 803 | acpi_parse_x2apic, MAX_APICS); |
Jack Steiner | ac049c1 | 2008-03-28 14:12:09 -0500 | [diff] [blame] | 804 | count = acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_APIC, |
| 805 | acpi_parse_lapic, MAX_APICS); |
Suresh Siddha | 7237d3d | 2009-03-30 13:55:30 -0800 | [diff] [blame] | 806 | } |
| 807 | if (!count && !x2count) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 808 | printk(KERN_ERR PREFIX "No LAPIC entries present\n"); |
| 809 | /* TBD: Cleanup to allow fallback to MPS */ |
| 810 | return -ENODEV; |
Suresh Siddha | 7237d3d | 2009-03-30 13:55:30 -0800 | [diff] [blame] | 811 | } else if (count < 0 || x2count < 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 | printk(KERN_ERR PREFIX "Error parsing LAPIC entry\n"); |
| 813 | /* TBD: Cleanup to allow fallback to MPS */ |
| 814 | return count; |
| 815 | } |
| 816 | |
Suresh Siddha | 7237d3d | 2009-03-30 13:55:30 -0800 | [diff] [blame] | 817 | x2count = |
| 818 | acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_X2APIC_NMI, |
| 819 | acpi_parse_x2apic_nmi, 0); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 820 | count = |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 821 | acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_APIC_NMI, acpi_parse_lapic_nmi, 0); |
Suresh Siddha | 7237d3d | 2009-03-30 13:55:30 -0800 | [diff] [blame] | 822 | if (count < 0 || x2count < 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 823 | printk(KERN_ERR PREFIX "Error parsing LAPIC NMI entry\n"); |
| 824 | /* TBD: Cleanup to allow fallback to MPS */ |
| 825 | return count; |
| 826 | } |
| 827 | return 0; |
| 828 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 829 | #endif /* CONFIG_X86_LOCAL_APIC */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 830 | |
Len Brown | 8466361 | 2005-08-24 12:09:07 -0400 | [diff] [blame] | 831 | #ifdef CONFIG_X86_IO_APIC |
Alexey Starikovskiy | 11113f8 | 2008-05-14 19:02:57 +0400 | [diff] [blame] | 832 | #define MP_ISA_BUS 0 |
| 833 | |
Yinghai Lu | d49c428 | 2008-06-08 18:31:54 -0700 | [diff] [blame] | 834 | #ifdef CONFIG_X86_ES7000 |
Alexey Starikovskiy | 11113f8 | 2008-05-14 19:02:57 +0400 | [diff] [blame] | 835 | extern int es7000_plat; |
| 836 | #endif |
| 837 | |
Yinghai Lu | 3f4a739 | 2009-02-08 16:18:03 -0800 | [diff] [blame] | 838 | int __init acpi_probe_gsi(void) |
| 839 | { |
| 840 | int idx; |
| 841 | int gsi; |
| 842 | int max_gsi = 0; |
| 843 | |
| 844 | if (acpi_disabled) |
| 845 | return 0; |
| 846 | |
| 847 | if (!acpi_ioapic) |
| 848 | return 0; |
| 849 | |
| 850 | max_gsi = 0; |
| 851 | for (idx = 0; idx < nr_ioapics; idx++) { |
Feng Tang | 2a4ab64 | 2009-07-07 23:01:15 -0400 | [diff] [blame] | 852 | gsi = mp_gsi_routing[idx].gsi_end; |
Yinghai Lu | 3f4a739 | 2009-02-08 16:18:03 -0800 | [diff] [blame] | 853 | |
| 854 | if (gsi > max_gsi) |
| 855 | max_gsi = gsi; |
| 856 | } |
| 857 | |
| 858 | return max_gsi + 1; |
| 859 | } |
| 860 | |
Jaswinder Singh Rajput | c2c2174 | 2009-01-12 17:47:22 +0530 | [diff] [blame] | 861 | static void assign_to_mp_irq(struct mpc_intsrc *m, |
| 862 | struct mpc_intsrc *mp_irq) |
Yinghai Lu | fcfa146 | 2008-06-18 17:29:31 -0700 | [diff] [blame] | 863 | { |
Jaswinder Singh Rajput | c2c2174 | 2009-01-12 17:47:22 +0530 | [diff] [blame] | 864 | memcpy(mp_irq, m, sizeof(struct mpc_intsrc)); |
Yinghai Lu | fcfa146 | 2008-06-18 17:29:31 -0700 | [diff] [blame] | 865 | } |
| 866 | |
Jaswinder Singh Rajput | c2c2174 | 2009-01-12 17:47:22 +0530 | [diff] [blame] | 867 | static int mp_irq_cmp(struct mpc_intsrc *mp_irq, |
| 868 | struct mpc_intsrc *m) |
Yinghai Lu | fcfa146 | 2008-06-18 17:29:31 -0700 | [diff] [blame] | 869 | { |
Jaswinder Singh Rajput | c2c2174 | 2009-01-12 17:47:22 +0530 | [diff] [blame] | 870 | return memcmp(mp_irq, m, sizeof(struct mpc_intsrc)); |
Yinghai Lu | fcfa146 | 2008-06-18 17:29:31 -0700 | [diff] [blame] | 871 | } |
| 872 | |
Jaswinder Singh Rajput | c2c2174 | 2009-01-12 17:47:22 +0530 | [diff] [blame] | 873 | static void save_mp_irq(struct mpc_intsrc *m) |
Yinghai Lu | fcfa146 | 2008-06-18 17:29:31 -0700 | [diff] [blame] | 874 | { |
| 875 | int i; |
| 876 | |
| 877 | for (i = 0; i < mp_irq_entries; i++) { |
| 878 | if (!mp_irq_cmp(&mp_irqs[i], m)) |
| 879 | return; |
| 880 | } |
| 881 | |
| 882 | assign_to_mp_irq(m, &mp_irqs[mp_irq_entries]); |
| 883 | if (++mp_irq_entries == MAX_IRQ_SOURCES) |
| 884 | panic("Max # of irq sources exceeded!!\n"); |
| 885 | } |
| 886 | |
Alexey Starikovskiy | 11113f8 | 2008-05-14 19:02:57 +0400 | [diff] [blame] | 887 | void __init mp_override_legacy_irq(u8 bus_irq, u8 polarity, u8 trigger, u32 gsi) |
| 888 | { |
Yinghai Lu | 6df8809 | 2008-06-15 18:19:46 -0700 | [diff] [blame] | 889 | int ioapic; |
| 890 | int pin; |
Jaswinder Singh Rajput | c2c2174 | 2009-01-12 17:47:22 +0530 | [diff] [blame] | 891 | struct mpc_intsrc mp_irq; |
Alexey Starikovskiy | 11113f8 | 2008-05-14 19:02:57 +0400 | [diff] [blame] | 892 | |
| 893 | /* |
| 894 | * Convert 'gsi' to 'ioapic.pin'. |
| 895 | */ |
| 896 | ioapic = mp_find_ioapic(gsi); |
| 897 | if (ioapic < 0) |
| 898 | return; |
Jeremy Fitzhardinge | c3e137d | 2009-02-09 12:05:47 -0800 | [diff] [blame] | 899 | pin = mp_find_ioapic_pin(ioapic, gsi); |
Alexey Starikovskiy | 11113f8 | 2008-05-14 19:02:57 +0400 | [diff] [blame] | 900 | |
| 901 | /* |
| 902 | * TBD: This check is for faulty timer entries, where the override |
| 903 | * erroneously sets the trigger to level, resulting in a HUGE |
| 904 | * increase of timer interrupts! |
| 905 | */ |
| 906 | if ((bus_irq == 0) && (trigger == 3)) |
| 907 | trigger = 1; |
| 908 | |
Jaswinder Singh Rajput | c2c2174 | 2009-01-12 17:47:22 +0530 | [diff] [blame] | 909 | mp_irq.type = MP_INTSRC; |
| 910 | mp_irq.irqtype = mp_INT; |
| 911 | mp_irq.irqflag = (trigger << 2) | polarity; |
| 912 | mp_irq.srcbus = MP_ISA_BUS; |
| 913 | mp_irq.srcbusirq = bus_irq; /* IRQ */ |
| 914 | mp_irq.dstapic = mp_ioapics[ioapic].apicid; /* APIC ID */ |
| 915 | mp_irq.dstirq = pin; /* INTIN# */ |
Alexey Starikovskiy | 11113f8 | 2008-05-14 19:02:57 +0400 | [diff] [blame] | 916 | |
Yinghai Lu | fcfa146 | 2008-06-18 17:29:31 -0700 | [diff] [blame] | 917 | save_mp_irq(&mp_irq); |
Alexey Starikovskiy | 11113f8 | 2008-05-14 19:02:57 +0400 | [diff] [blame] | 918 | } |
| 919 | |
| 920 | void __init mp_config_acpi_legacy_irqs(void) |
| 921 | { |
Yinghai Lu | 6df8809 | 2008-06-15 18:19:46 -0700 | [diff] [blame] | 922 | int i; |
| 923 | int ioapic; |
| 924 | unsigned int dstapic; |
Jaswinder Singh Rajput | c2c2174 | 2009-01-12 17:47:22 +0530 | [diff] [blame] | 925 | struct mpc_intsrc mp_irq; |
Alexey Starikovskiy | 11113f8 | 2008-05-14 19:02:57 +0400 | [diff] [blame] | 926 | |
| 927 | #if defined (CONFIG_MCA) || defined (CONFIG_EISA) |
| 928 | /* |
| 929 | * Fabricate the legacy ISA bus (bus #31). |
| 930 | */ |
| 931 | mp_bus_id_to_type[MP_ISA_BUS] = MP_BUS_ISA; |
| 932 | #endif |
| 933 | set_bit(MP_ISA_BUS, mp_bus_not_pci); |
Thomas Gleixner | cfc1b9a | 2008-07-21 21:35:38 +0200 | [diff] [blame] | 934 | pr_debug("Bus #%d is ISA\n", MP_ISA_BUS); |
Alexey Starikovskiy | 11113f8 | 2008-05-14 19:02:57 +0400 | [diff] [blame] | 935 | |
Yinghai Lu | d49c428 | 2008-06-08 18:31:54 -0700 | [diff] [blame] | 936 | #ifdef CONFIG_X86_ES7000 |
Alexey Starikovskiy | 11113f8 | 2008-05-14 19:02:57 +0400 | [diff] [blame] | 937 | /* |
| 938 | * Older generations of ES7000 have no legacy identity mappings |
| 939 | */ |
| 940 | if (es7000_plat == 1) |
| 941 | return; |
| 942 | #endif |
| 943 | |
| 944 | /* |
| 945 | * Locate the IOAPIC that manages the ISA IRQs (0-15). |
| 946 | */ |
| 947 | ioapic = mp_find_ioapic(0); |
| 948 | if (ioapic < 0) |
| 949 | return; |
Jaswinder Singh Rajput | b5ba7e6 | 2009-01-12 17:46:17 +0530 | [diff] [blame] | 950 | dstapic = mp_ioapics[ioapic].apicid; |
Alexey Starikovskiy | 11113f8 | 2008-05-14 19:02:57 +0400 | [diff] [blame] | 951 | |
Alexey Starikovskiy | 11113f8 | 2008-05-14 19:02:57 +0400 | [diff] [blame] | 952 | /* |
| 953 | * Use the default configuration for the IRQs 0-15. Unless |
| 954 | * overridden by (MADT) interrupt source override entries. |
| 955 | */ |
| 956 | for (i = 0; i < 16; i++) { |
| 957 | int idx; |
| 958 | |
| 959 | for (idx = 0; idx < mp_irq_entries; idx++) { |
Jaswinder Singh Rajput | c2c2174 | 2009-01-12 17:47:22 +0530 | [diff] [blame] | 960 | struct mpc_intsrc *irq = mp_irqs + idx; |
Alexey Starikovskiy | 11113f8 | 2008-05-14 19:02:57 +0400 | [diff] [blame] | 961 | |
| 962 | /* Do we already have a mapping for this ISA IRQ? */ |
Jaswinder Singh Rajput | c2c2174 | 2009-01-12 17:47:22 +0530 | [diff] [blame] | 963 | if (irq->srcbus == MP_ISA_BUS && irq->srcbusirq == i) |
Alexey Starikovskiy | 11113f8 | 2008-05-14 19:02:57 +0400 | [diff] [blame] | 964 | break; |
| 965 | |
| 966 | /* Do we already have a mapping for this IOAPIC pin */ |
Jaswinder Singh Rajput | c2c2174 | 2009-01-12 17:47:22 +0530 | [diff] [blame] | 967 | if (irq->dstapic == dstapic && irq->dstirq == i) |
Alexey Starikovskiy | 11113f8 | 2008-05-14 19:02:57 +0400 | [diff] [blame] | 968 | break; |
| 969 | } |
| 970 | |
| 971 | if (idx != mp_irq_entries) { |
| 972 | printk(KERN_DEBUG "ACPI: IRQ%d used by override.\n", i); |
| 973 | continue; /* IRQ already used */ |
| 974 | } |
| 975 | |
Jaswinder Singh Rajput | c2c2174 | 2009-01-12 17:47:22 +0530 | [diff] [blame] | 976 | mp_irq.type = MP_INTSRC; |
| 977 | mp_irq.irqflag = 0; /* Conforming */ |
| 978 | mp_irq.srcbus = MP_ISA_BUS; |
| 979 | mp_irq.dstapic = dstapic; |
| 980 | mp_irq.irqtype = mp_INT; |
| 981 | mp_irq.srcbusirq = i; /* Identity mapped */ |
| 982 | mp_irq.dstirq = i; |
Alexey Starikovskiy | 11113f8 | 2008-05-14 19:02:57 +0400 | [diff] [blame] | 983 | |
Yinghai Lu | fcfa146 | 2008-06-18 17:29:31 -0700 | [diff] [blame] | 984 | save_mp_irq(&mp_irq); |
Alexey Starikovskiy | 11113f8 | 2008-05-14 19:02:57 +0400 | [diff] [blame] | 985 | } |
| 986 | } |
| 987 | |
Yinghai Lu | e519807 | 2009-05-15 13:05:16 -0700 | [diff] [blame] | 988 | static int mp_config_acpi_gsi(struct device *dev, u32 gsi, int trigger, |
Yinghai Lu | a31f820 | 2009-05-06 10:06:15 -0700 | [diff] [blame] | 989 | int polarity) |
| 990 | { |
| 991 | #ifdef CONFIG_X86_MPPARSE |
| 992 | struct mpc_intsrc mp_irq; |
| 993 | struct pci_dev *pdev; |
| 994 | unsigned char number; |
| 995 | unsigned int devfn; |
| 996 | int ioapic; |
| 997 | u8 pin; |
| 998 | |
| 999 | if (!acpi_ioapic) |
| 1000 | return 0; |
| 1001 | if (!dev) |
| 1002 | return 0; |
| 1003 | if (dev->bus != &pci_bus_type) |
| 1004 | return 0; |
| 1005 | |
| 1006 | pdev = to_pci_dev(dev); |
| 1007 | number = pdev->bus->number; |
| 1008 | devfn = pdev->devfn; |
| 1009 | pin = pdev->pin; |
| 1010 | /* print the entry should happen on mptable identically */ |
| 1011 | mp_irq.type = MP_INTSRC; |
| 1012 | mp_irq.irqtype = mp_INT; |
Yinghai Lu | e519807 | 2009-05-15 13:05:16 -0700 | [diff] [blame] | 1013 | mp_irq.irqflag = (trigger == ACPI_EDGE_SENSITIVE ? 4 : 0x0c) | |
Yinghai Lu | a31f820 | 2009-05-06 10:06:15 -0700 | [diff] [blame] | 1014 | (polarity == ACPI_ACTIVE_HIGH ? 1 : 3); |
| 1015 | mp_irq.srcbus = number; |
| 1016 | mp_irq.srcbusirq = (((devfn >> 3) & 0x1f) << 2) | ((pin - 1) & 3); |
| 1017 | ioapic = mp_find_ioapic(gsi); |
Yinghai Lu | bdfe8ac | 2009-05-06 10:07:41 -0700 | [diff] [blame] | 1018 | mp_irq.dstapic = mp_ioapics[ioapic].apicid; |
Yinghai Lu | a31f820 | 2009-05-06 10:06:15 -0700 | [diff] [blame] | 1019 | mp_irq.dstirq = mp_find_ioapic_pin(ioapic, gsi); |
| 1020 | |
| 1021 | save_mp_irq(&mp_irq); |
| 1022 | #endif |
| 1023 | return 0; |
| 1024 | } |
| 1025 | |
Yinghai Lu | e519807 | 2009-05-15 13:05:16 -0700 | [diff] [blame] | 1026 | int mp_register_gsi(struct device *dev, u32 gsi, int trigger, int polarity) |
Alexey Starikovskiy | 11113f8 | 2008-05-14 19:02:57 +0400 | [diff] [blame] | 1027 | { |
| 1028 | int ioapic; |
| 1029 | int ioapic_pin; |
Yinghai Lu | e519807 | 2009-05-15 13:05:16 -0700 | [diff] [blame] | 1030 | struct io_apic_irq_attr irq_attr; |
Alexey Starikovskiy | 11113f8 | 2008-05-14 19:02:57 +0400 | [diff] [blame] | 1031 | |
| 1032 | if (acpi_irq_model != ACPI_IRQ_MODEL_IOAPIC) |
| 1033 | return gsi; |
Alexey Starikovskiy | 11113f8 | 2008-05-14 19:02:57 +0400 | [diff] [blame] | 1034 | |
| 1035 | /* Don't set up the ACPI SCI because it's already set up */ |
| 1036 | if (acpi_gbl_FADT.sci_interrupt == gsi) |
| 1037 | return gsi; |
| 1038 | |
| 1039 | ioapic = mp_find_ioapic(gsi); |
| 1040 | if (ioapic < 0) { |
| 1041 | printk(KERN_WARNING "No IOAPIC for GSI %u\n", gsi); |
| 1042 | return gsi; |
| 1043 | } |
| 1044 | |
Jeremy Fitzhardinge | c3e137d | 2009-02-09 12:05:47 -0800 | [diff] [blame] | 1045 | ioapic_pin = mp_find_ioapic_pin(ioapic, gsi); |
Alexey Starikovskiy | 11113f8 | 2008-05-14 19:02:57 +0400 | [diff] [blame] | 1046 | |
| 1047 | #ifdef CONFIG_X86_32 |
| 1048 | if (ioapic_renumber_irq) |
| 1049 | gsi = ioapic_renumber_irq(ioapic, gsi); |
| 1050 | #endif |
| 1051 | |
Alexey Starikovskiy | 11113f8 | 2008-05-14 19:02:57 +0400 | [diff] [blame] | 1052 | if (ioapic_pin > MP_MAX_IOAPIC_PIN) { |
| 1053 | printk(KERN_ERR "Invalid reference to IOAPIC pin " |
Yinghai Lu | bdfe8ac | 2009-05-06 10:07:41 -0700 | [diff] [blame] | 1054 | "%d-%d\n", mp_ioapics[ioapic].apicid, |
Alexey Starikovskiy | 11113f8 | 2008-05-14 19:02:57 +0400 | [diff] [blame] | 1055 | ioapic_pin); |
| 1056 | return gsi; |
| 1057 | } |
Yinghai Lu | f1bdb52 | 2009-05-15 13:05:16 -0700 | [diff] [blame] | 1058 | |
| 1059 | if (enable_update_mptable) |
| 1060 | mp_config_acpi_gsi(dev, gsi, trigger, polarity); |
Yinghai Lu | b9e0353 | 2009-05-06 10:05:32 -0700 | [diff] [blame] | 1061 | |
Yinghai Lu | e519807 | 2009-05-15 13:05:16 -0700 | [diff] [blame] | 1062 | set_io_apic_irq_attr(&irq_attr, ioapic, ioapic_pin, |
| 1063 | trigger == ACPI_EDGE_SENSITIVE ? 0 : 1, |
| 1064 | polarity == ACPI_ACTIVE_HIGH ? 0 : 1); |
| 1065 | io_apic_set_pci_routing(dev, gsi, &irq_attr); |
Yinghai Lu | b9e0353 | 2009-05-06 10:05:32 -0700 | [diff] [blame] | 1066 | |
Alexey Starikovskiy | 11113f8 | 2008-05-14 19:02:57 +0400 | [diff] [blame] | 1067 | return gsi; |
| 1068 | } |
| 1069 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1070 | /* |
| 1071 | * Parse IOAPIC related entries in MADT |
| 1072 | * returns 0 on success, < 0 on error |
| 1073 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1074 | static int __init acpi_parse_madt_ioapic_entries(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1075 | { |
| 1076 | int count; |
| 1077 | |
| 1078 | /* |
| 1079 | * ACPI interpreter is required to complete interrupt setup, |
| 1080 | * so if it is off, don't enumerate the io-apics with ACPI. |
| 1081 | * If MPS is present, it will handle them, |
| 1082 | * otherwise the system will stay in PIC mode |
| 1083 | */ |
Jeremy Fitzhardinge | 6b2b171 | 2009-06-08 02:53:50 -0700 | [diff] [blame] | 1084 | if (acpi_disabled || acpi_noirq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1085 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1086 | |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 1087 | if (!cpu_has_apic) |
Andi Kleen | d3b6a34 | 2006-04-07 19:49:39 +0200 | [diff] [blame] | 1088 | return -ENODEV; |
| 1089 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1090 | /* |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1091 | * if "noapic" boot option, don't look for IO-APICs |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1092 | */ |
| 1093 | if (skip_ioapic_setup) { |
| 1094 | printk(KERN_INFO PREFIX "Skipping IOAPIC probe " |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1095 | "due to 'noapic' option.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1096 | return -ENODEV; |
| 1097 | } |
| 1098 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1099 | count = |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 1100 | acpi_table_parse_madt(ACPI_MADT_TYPE_IO_APIC, acpi_parse_ioapic, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1101 | MAX_IO_APICS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1102 | if (!count) { |
| 1103 | printk(KERN_ERR PREFIX "No IOAPIC entries present\n"); |
| 1104 | return -ENODEV; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1105 | } else if (count < 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1106 | printk(KERN_ERR PREFIX "Error parsing IOAPIC entry\n"); |
| 1107 | return count; |
| 1108 | } |
| 1109 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1110 | count = |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 1111 | acpi_table_parse_madt(ACPI_MADT_TYPE_INTERRUPT_OVERRIDE, acpi_parse_int_src_ovr, |
Yinghai Lu | 71f521b | 2008-08-19 20:50:03 -0700 | [diff] [blame] | 1112 | nr_irqs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1113 | if (count < 0) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1114 | printk(KERN_ERR PREFIX |
| 1115 | "Error parsing interrupt source overrides entry\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1116 | /* TBD: Cleanup to allow fallback to MPS */ |
| 1117 | return count; |
| 1118 | } |
| 1119 | |
| 1120 | /* |
| 1121 | * If BIOS did not supply an INT_SRC_OVR for the SCI |
| 1122 | * pretend we got one so we can set the SCI flags. |
| 1123 | */ |
| 1124 | if (!acpi_sci_override_gsi) |
Alexey Starikovskiy | cee324b | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 1125 | acpi_sci_ioapic_setup(acpi_gbl_FADT.sci_interrupt, 0, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1126 | |
André Goddard Rosa | af901ca | 2009-11-14 13:09:05 -0200 | [diff] [blame] | 1127 | /* Fill in identity legacy mappings where no override */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1128 | mp_config_acpi_legacy_irqs(); |
| 1129 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1130 | count = |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 1131 | acpi_table_parse_madt(ACPI_MADT_TYPE_NMI_SOURCE, acpi_parse_nmi_src, |
Yinghai Lu | 71f521b | 2008-08-19 20:50:03 -0700 | [diff] [blame] | 1132 | nr_irqs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1133 | if (count < 0) { |
| 1134 | printk(KERN_ERR PREFIX "Error parsing NMI SRC entry\n"); |
| 1135 | /* TBD: Cleanup to allow fallback to MPS */ |
| 1136 | return count; |
| 1137 | } |
| 1138 | |
| 1139 | return 0; |
| 1140 | } |
| 1141 | #else |
| 1142 | static inline int acpi_parse_madt_ioapic_entries(void) |
| 1143 | { |
| 1144 | return -1; |
| 1145 | } |
Len Brown | 8466361 | 2005-08-24 12:09:07 -0400 | [diff] [blame] | 1146 | #endif /* !CONFIG_X86_IO_APIC */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1147 | |
Yinghai Lu | cbf9bd6 | 2008-02-19 03:21:06 -0800 | [diff] [blame] | 1148 | static void __init early_acpi_process_madt(void) |
| 1149 | { |
| 1150 | #ifdef CONFIG_X86_LOCAL_APIC |
| 1151 | int error; |
| 1152 | |
| 1153 | if (!acpi_table_parse(ACPI_SIG_MADT, acpi_parse_madt)) { |
| 1154 | |
| 1155 | /* |
| 1156 | * Parse MADT LAPIC entries |
| 1157 | */ |
| 1158 | error = early_acpi_parse_madt_lapic_addr_ovr(); |
| 1159 | if (!error) { |
| 1160 | acpi_lapic = 1; |
| 1161 | smp_found_config = 1; |
| 1162 | } |
| 1163 | if (error == -EINVAL) { |
| 1164 | /* |
| 1165 | * Dell Precision Workstation 410, 610 come here. |
| 1166 | */ |
| 1167 | printk(KERN_ERR PREFIX |
| 1168 | "Invalid BIOS MADT, disabling ACPI\n"); |
| 1169 | disable_acpi(); |
| 1170 | } |
| 1171 | } |
| 1172 | #endif |
| 1173 | } |
| 1174 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1175 | static void __init acpi_process_madt(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1176 | { |
| 1177 | #ifdef CONFIG_X86_LOCAL_APIC |
Len Brown | 7f8f97c | 2007-02-10 21:28:03 -0500 | [diff] [blame] | 1178 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1179 | |
Len Brown | 7f8f97c | 2007-02-10 21:28:03 -0500 | [diff] [blame] | 1180 | if (!acpi_table_parse(ACPI_SIG_MADT, acpi_parse_madt)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1181 | |
| 1182 | /* |
| 1183 | * Parse MADT LAPIC entries |
| 1184 | */ |
| 1185 | error = acpi_parse_madt_lapic_entries(); |
| 1186 | if (!error) { |
| 1187 | acpi_lapic = 1; |
| 1188 | |
| 1189 | /* |
| 1190 | * Parse MADT IO-APIC entries |
| 1191 | */ |
| 1192 | error = acpi_parse_madt_ioapic_entries(); |
| 1193 | if (!error) { |
| 1194 | acpi_irq_model = ACPI_IRQ_MODEL_IOAPIC; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1195 | acpi_ioapic = 1; |
| 1196 | |
| 1197 | smp_found_config = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1198 | } |
| 1199 | } |
| 1200 | if (error == -EINVAL) { |
| 1201 | /* |
| 1202 | * Dell Precision Workstation 410, 610 come here. |
| 1203 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1204 | printk(KERN_ERR PREFIX |
| 1205 | "Invalid BIOS MADT, disabling ACPI\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1206 | disable_acpi(); |
| 1207 | } |
Len Brown | 7b37b5f | 2008-12-23 01:47:42 -0500 | [diff] [blame] | 1208 | } else { |
| 1209 | /* |
| 1210 | * ACPI found no MADT, and so ACPI wants UP PIC mode. |
| 1211 | * In the event an MPS table was found, forget it. |
| 1212 | * Boot with "acpi=off" to use MPS on such a system. |
| 1213 | */ |
| 1214 | if (smp_found_config) { |
| 1215 | printk(KERN_WARNING PREFIX |
| 1216 | "No APIC-table, disabling MPS\n"); |
| 1217 | smp_found_config = 0; |
| 1218 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1219 | } |
Yinghai Lu | 69b88af | 2008-12-05 22:45:50 -0800 | [diff] [blame] | 1220 | |
| 1221 | /* |
| 1222 | * ACPI supports both logical (e.g. Hyper-Threading) and physical |
| 1223 | * processors, where MPS only supports physical. |
| 1224 | */ |
| 1225 | if (acpi_lapic && acpi_ioapic) |
| 1226 | printk(KERN_INFO "Using ACPI (MADT) for SMP configuration " |
| 1227 | "information\n"); |
| 1228 | else if (acpi_lapic) |
| 1229 | printk(KERN_INFO "Using ACPI for processor (LAPIC) " |
| 1230 | "configuration information\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1231 | #endif |
| 1232 | return; |
| 1233 | } |
| 1234 | |
Jeff Garzik | 1855256 | 2007-10-03 15:15:40 -0400 | [diff] [blame] | 1235 | static int __init disable_acpi_irq(const struct dmi_system_id *d) |
Andrey Panin | aea0014 | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 1236 | { |
| 1237 | if (!acpi_force) { |
| 1238 | printk(KERN_NOTICE "%s detected: force use of acpi=noirq\n", |
| 1239 | d->ident); |
| 1240 | acpi_noirq_set(); |
| 1241 | } |
| 1242 | return 0; |
| 1243 | } |
| 1244 | |
Jeff Garzik | 1855256 | 2007-10-03 15:15:40 -0400 | [diff] [blame] | 1245 | static int __init disable_acpi_pci(const struct dmi_system_id *d) |
Andrey Panin | aea0014 | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 1246 | { |
| 1247 | if (!acpi_force) { |
| 1248 | printk(KERN_NOTICE "%s detected: force use of pci=noacpi\n", |
| 1249 | d->ident); |
| 1250 | acpi_disable_pci(); |
| 1251 | } |
| 1252 | return 0; |
| 1253 | } |
Andrey Panin | aea0014 | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 1254 | |
Jeff Garzik | 1855256 | 2007-10-03 15:15:40 -0400 | [diff] [blame] | 1255 | static int __init dmi_disable_acpi(const struct dmi_system_id *d) |
Andrey Panin | aea0014 | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 1256 | { |
| 1257 | if (!acpi_force) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1258 | printk(KERN_NOTICE "%s detected: acpi off\n", d->ident); |
Andrey Panin | aea0014 | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 1259 | disable_acpi(); |
| 1260 | } else { |
| 1261 | printk(KERN_NOTICE |
| 1262 | "Warning: DMI blacklist says broken, but acpi forced\n"); |
| 1263 | } |
| 1264 | return 0; |
| 1265 | } |
| 1266 | |
| 1267 | /* |
| 1268 | * Limit ACPI to CPU enumeration for HT |
| 1269 | */ |
Jeff Garzik | 1855256 | 2007-10-03 15:15:40 -0400 | [diff] [blame] | 1270 | static int __init force_acpi_ht(const struct dmi_system_id *d) |
Andrey Panin | aea0014 | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 1271 | { |
| 1272 | if (!acpi_force) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1273 | printk(KERN_NOTICE "%s detected: force use of acpi=ht\n", |
| 1274 | d->ident); |
Andrey Panin | aea0014 | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 1275 | disable_acpi(); |
| 1276 | acpi_ht = 1; |
| 1277 | } else { |
| 1278 | printk(KERN_NOTICE |
| 1279 | "Warning: acpi=force overrules DMI blacklist: acpi=ht\n"); |
| 1280 | } |
| 1281 | return 0; |
| 1282 | } |
| 1283 | |
| 1284 | /* |
Rafael J. Wysocki | e2079c4 | 2008-07-08 16:12:26 +0200 | [diff] [blame] | 1285 | * Force ignoring BIOS IRQ0 pin2 override |
| 1286 | */ |
| 1287 | static int __init dmi_ignore_irq0_timer_override(const struct dmi_system_id *d) |
| 1288 | { |
Ingo Molnar | 8d89adf | 2008-10-07 06:47:52 +0200 | [diff] [blame] | 1289 | /* |
| 1290 | * The ati_ixp4x0_rev() early PCI quirk should have set |
| 1291 | * the acpi_skip_timer_override flag already: |
| 1292 | */ |
| 1293 | if (!acpi_skip_timer_override) { |
| 1294 | WARN(1, KERN_ERR "ati_ixp4x0 quirk not complete.\n"); |
| 1295 | pr_notice("%s detected: Ignoring BIOS IRQ0 pin2 override\n", |
| 1296 | d->ident); |
| 1297 | acpi_skip_timer_override = 1; |
| 1298 | } |
Rafael J. Wysocki | e2079c4 | 2008-07-08 16:12:26 +0200 | [diff] [blame] | 1299 | return 0; |
| 1300 | } |
| 1301 | |
| 1302 | /* |
Andrey Panin | aea0014 | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 1303 | * If your system is blacklisted here, but you find that acpi=force |
Zhang Rui | 5b4c0b6 | 2009-04-01 01:49:42 -0400 | [diff] [blame] | 1304 | * works for you, please contact linux-acpi@vger.kernel.org |
Andrey Panin | aea0014 | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 1305 | */ |
| 1306 | static struct dmi_system_id __initdata acpi_dmi_table[] = { |
| 1307 | /* |
| 1308 | * Boxes that need ACPI disabled |
| 1309 | */ |
| 1310 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1311 | .callback = dmi_disable_acpi, |
| 1312 | .ident = "IBM Thinkpad", |
| 1313 | .matches = { |
| 1314 | DMI_MATCH(DMI_BOARD_VENDOR, "IBM"), |
| 1315 | DMI_MATCH(DMI_BOARD_NAME, "2629H1G"), |
| 1316 | }, |
| 1317 | }, |
Andrey Panin | aea0014 | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 1318 | |
| 1319 | /* |
| 1320 | * Boxes that need acpi=ht |
| 1321 | */ |
| 1322 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1323 | .callback = force_acpi_ht, |
| 1324 | .ident = "FSC Primergy T850", |
| 1325 | .matches = { |
| 1326 | DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"), |
| 1327 | DMI_MATCH(DMI_PRODUCT_NAME, "PRIMERGY T850"), |
| 1328 | }, |
| 1329 | }, |
Andrey Panin | aea0014 | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 1330 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1331 | .callback = force_acpi_ht, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1332 | .ident = "HP VISUALIZE NT Workstation", |
| 1333 | .matches = { |
| 1334 | DMI_MATCH(DMI_BOARD_VENDOR, "Hewlett-Packard"), |
| 1335 | DMI_MATCH(DMI_PRODUCT_NAME, "HP VISUALIZE NT Workstation"), |
| 1336 | }, |
| 1337 | }, |
Andrey Panin | aea0014 | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 1338 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1339 | .callback = force_acpi_ht, |
| 1340 | .ident = "Compaq Workstation W8000", |
| 1341 | .matches = { |
| 1342 | DMI_MATCH(DMI_SYS_VENDOR, "Compaq"), |
| 1343 | DMI_MATCH(DMI_PRODUCT_NAME, "Workstation W8000"), |
| 1344 | }, |
| 1345 | }, |
Andrey Panin | aea0014 | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 1346 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1347 | .callback = force_acpi_ht, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1348 | .ident = "ASUS P2B-DS", |
| 1349 | .matches = { |
| 1350 | DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."), |
| 1351 | DMI_MATCH(DMI_BOARD_NAME, "P2B-DS"), |
| 1352 | }, |
| 1353 | }, |
Andrey Panin | aea0014 | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 1354 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1355 | .callback = force_acpi_ht, |
| 1356 | .ident = "ASUS CUR-DLS", |
| 1357 | .matches = { |
| 1358 | DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."), |
| 1359 | DMI_MATCH(DMI_BOARD_NAME, "CUR-DLS"), |
| 1360 | }, |
| 1361 | }, |
Andrey Panin | aea0014 | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 1362 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1363 | .callback = force_acpi_ht, |
| 1364 | .ident = "ABIT i440BX-W83977", |
| 1365 | .matches = { |
| 1366 | DMI_MATCH(DMI_BOARD_VENDOR, "ABIT <http://www.abit.com>"), |
| 1367 | DMI_MATCH(DMI_BOARD_NAME, "i440BX-W83977 (BP6)"), |
| 1368 | }, |
| 1369 | }, |
Andrey Panin | aea0014 | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 1370 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1371 | .callback = force_acpi_ht, |
| 1372 | .ident = "IBM Bladecenter", |
| 1373 | .matches = { |
| 1374 | DMI_MATCH(DMI_BOARD_VENDOR, "IBM"), |
| 1375 | DMI_MATCH(DMI_BOARD_NAME, "IBM eServer BladeCenter HS20"), |
| 1376 | }, |
| 1377 | }, |
Andrey Panin | aea0014 | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 1378 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1379 | .callback = force_acpi_ht, |
| 1380 | .ident = "IBM eServer xSeries 360", |
| 1381 | .matches = { |
| 1382 | DMI_MATCH(DMI_BOARD_VENDOR, "IBM"), |
| 1383 | DMI_MATCH(DMI_BOARD_NAME, "eServer xSeries 360"), |
| 1384 | }, |
| 1385 | }, |
Andrey Panin | aea0014 | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 1386 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1387 | .callback = force_acpi_ht, |
| 1388 | .ident = "IBM eserver xSeries 330", |
| 1389 | .matches = { |
| 1390 | DMI_MATCH(DMI_BOARD_VENDOR, "IBM"), |
| 1391 | DMI_MATCH(DMI_BOARD_NAME, "eserver xSeries 330"), |
| 1392 | }, |
| 1393 | }, |
Andrey Panin | aea0014 | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 1394 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1395 | .callback = force_acpi_ht, |
| 1396 | .ident = "IBM eserver xSeries 440", |
| 1397 | .matches = { |
| 1398 | DMI_MATCH(DMI_BOARD_VENDOR, "IBM"), |
| 1399 | DMI_MATCH(DMI_PRODUCT_NAME, "eserver xSeries 440"), |
| 1400 | }, |
| 1401 | }, |
Andrey Panin | aea0014 | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 1402 | |
Andrey Panin | aea0014 | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 1403 | /* |
| 1404 | * Boxes that need ACPI PCI IRQ routing disabled |
| 1405 | */ |
| 1406 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1407 | .callback = disable_acpi_irq, |
| 1408 | .ident = "ASUS A7V", |
| 1409 | .matches = { |
| 1410 | DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC"), |
| 1411 | DMI_MATCH(DMI_BOARD_NAME, "<A7V>"), |
| 1412 | /* newer BIOS, Revision 1011, does work */ |
| 1413 | DMI_MATCH(DMI_BIOS_VERSION, |
| 1414 | "ASUS A7V ACPI BIOS Revision 1007"), |
| 1415 | }, |
| 1416 | }, |
Len Brown | 74586fc | 2007-03-08 02:48:30 -0500 | [diff] [blame] | 1417 | { |
| 1418 | /* |
| 1419 | * Latest BIOS for IBM 600E (1.16) has bad pcinum |
| 1420 | * for LPC bridge, which is needed for the PCI |
| 1421 | * interrupt links to work. DSDT fix is in bug 5966. |
| 1422 | * 2645, 2646 model numbers are shared with 600/600E/600X |
| 1423 | */ |
| 1424 | .callback = disable_acpi_irq, |
| 1425 | .ident = "IBM Thinkpad 600 Series 2645", |
| 1426 | .matches = { |
| 1427 | DMI_MATCH(DMI_BOARD_VENDOR, "IBM"), |
| 1428 | DMI_MATCH(DMI_BOARD_NAME, "2645"), |
| 1429 | }, |
| 1430 | }, |
| 1431 | { |
| 1432 | .callback = disable_acpi_irq, |
| 1433 | .ident = "IBM Thinkpad 600 Series 2646", |
| 1434 | .matches = { |
| 1435 | DMI_MATCH(DMI_BOARD_VENDOR, "IBM"), |
| 1436 | DMI_MATCH(DMI_BOARD_NAME, "2646"), |
| 1437 | }, |
| 1438 | }, |
Andrey Panin | aea0014 | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 1439 | /* |
| 1440 | * Boxes that need ACPI PCI IRQ routing and PCI scan disabled |
| 1441 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1442 | { /* _BBN 0 bug */ |
| 1443 | .callback = disable_acpi_pci, |
| 1444 | .ident = "ASUS PR-DLS", |
| 1445 | .matches = { |
| 1446 | DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."), |
| 1447 | DMI_MATCH(DMI_BOARD_NAME, "PR-DLS"), |
| 1448 | DMI_MATCH(DMI_BIOS_VERSION, |
| 1449 | "ASUS PR-DLS ACPI BIOS Revision 1010"), |
| 1450 | DMI_MATCH(DMI_BIOS_DATE, "03/21/2003") |
| 1451 | }, |
| 1452 | }, |
Andrey Panin | aea0014 | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 1453 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1454 | .callback = disable_acpi_pci, |
| 1455 | .ident = "Acer TravelMate 36x Laptop", |
| 1456 | .matches = { |
| 1457 | DMI_MATCH(DMI_SYS_VENDOR, "Acer"), |
| 1458 | DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 360"), |
| 1459 | }, |
| 1460 | }, |
Andreas Herrmann | 35af282 | 2008-10-22 13:08:31 +0200 | [diff] [blame] | 1461 | {} |
| 1462 | }; |
| 1463 | |
| 1464 | /* second table for DMI checks that should run after early-quirks */ |
| 1465 | static struct dmi_system_id __initdata acpi_dmi_table_late[] = { |
Matthew Garrett | 9340e1c | 2008-07-01 01:12:06 +0100 | [diff] [blame] | 1466 | /* |
| 1467 | * HP laptops which use a DSDT reporting as HP/SB400/10000, |
| 1468 | * which includes some code which overrides all temperature |
| 1469 | * trip points to 16C if the INTIN2 input of the I/O APIC |
| 1470 | * is enabled. This input is incorrectly designated the |
| 1471 | * ISA IRQ 0 via an interrupt source override even though |
| 1472 | * it is wired to the output of the master 8259A and INTIN0 |
Rafael J. Wysocki | e2079c4 | 2008-07-08 16:12:26 +0200 | [diff] [blame] | 1473 | * is not connected at all. Force ignoring BIOS IRQ0 pin2 |
| 1474 | * override in that cases. |
| 1475 | */ |
| 1476 | { |
| 1477 | .callback = dmi_ignore_irq0_timer_override, |
Rafael J. Wysocki | e84956f | 2008-10-06 11:59:29 +0200 | [diff] [blame] | 1478 | .ident = "HP nx6115 laptop", |
| 1479 | .matches = { |
| 1480 | DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"), |
| 1481 | DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq nx6115"), |
| 1482 | }, |
| 1483 | }, |
| 1484 | { |
| 1485 | .callback = dmi_ignore_irq0_timer_override, |
Rafael J. Wysocki | e2079c4 | 2008-07-08 16:12:26 +0200 | [diff] [blame] | 1486 | .ident = "HP NX6125 laptop", |
| 1487 | .matches = { |
| 1488 | DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"), |
| 1489 | DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq nx6125"), |
| 1490 | }, |
| 1491 | }, |
| 1492 | { |
| 1493 | .callback = dmi_ignore_irq0_timer_override, |
| 1494 | .ident = "HP NX6325 laptop", |
| 1495 | .matches = { |
| 1496 | DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"), |
| 1497 | DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq nx6325"), |
| 1498 | }, |
| 1499 | }, |
Rafael J. Wysocki | e84956f | 2008-10-06 11:59:29 +0200 | [diff] [blame] | 1500 | { |
| 1501 | .callback = dmi_ignore_irq0_timer_override, |
| 1502 | .ident = "HP 6715b laptop", |
| 1503 | .matches = { |
| 1504 | DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"), |
| 1505 | DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq 6715b"), |
| 1506 | }, |
| 1507 | }, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1508 | {} |
Andrey Panin | aea0014 | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 1509 | }; |
| 1510 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1511 | /* |
| 1512 | * acpi_boot_table_init() and acpi_boot_init() |
| 1513 | * called from setup_arch(), always. |
| 1514 | * 1. checksums all tables |
| 1515 | * 2. enumerates lapics |
| 1516 | * 3. enumerates io-apics |
| 1517 | * |
| 1518 | * acpi_table_init() is separate to allow reading SRAT without |
| 1519 | * other side effects. |
| 1520 | * |
| 1521 | * side effects of acpi_boot_init: |
| 1522 | * acpi_lapic = 1 if LAPIC found |
| 1523 | * acpi_ioapic = 1 if IOAPIC found |
| 1524 | * if (acpi_lapic && acpi_ioapic) smp_found_config = 1; |
| 1525 | * if acpi_blacklisted() acpi_disabled = 1; |
| 1526 | * acpi_irq_model=... |
| 1527 | * ... |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1528 | */ |
| 1529 | |
Len Brown | 8558e39 | 2010-01-06 16:11:06 -0500 | [diff] [blame] | 1530 | void __init acpi_boot_table_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1531 | { |
Andrey Panin | aea0014 | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 1532 | dmi_check_system(acpi_dmi_table); |
Andrey Panin | aea0014 | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 1533 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1534 | /* |
| 1535 | * If acpi_disabled, bail out |
| 1536 | * One exception: acpi=ht continues far enough to enumerate LAPICs |
| 1537 | */ |
| 1538 | if (acpi_disabled && !acpi_ht) |
Len Brown | 8558e39 | 2010-01-06 16:11:06 -0500 | [diff] [blame] | 1539 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1540 | |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 1541 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1542 | * Initialize the ACPI boot-time table parser. |
| 1543 | */ |
Len Brown | 8558e39 | 2010-01-06 16:11:06 -0500 | [diff] [blame] | 1544 | if (acpi_table_init()) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1545 | disable_acpi(); |
Len Brown | 8558e39 | 2010-01-06 16:11:06 -0500 | [diff] [blame] | 1546 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1547 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1548 | |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 1549 | acpi_table_parse(ACPI_SIG_BOOT, acpi_parse_sbf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1550 | |
| 1551 | /* |
| 1552 | * blacklist may disable ACPI entirely |
| 1553 | */ |
Len Brown | 8558e39 | 2010-01-06 16:11:06 -0500 | [diff] [blame] | 1554 | if (acpi_blacklisted()) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1555 | if (acpi_force) { |
| 1556 | printk(KERN_WARNING PREFIX "acpi=force override\n"); |
| 1557 | } else { |
| 1558 | printk(KERN_WARNING PREFIX "Disabling ACPI support\n"); |
| 1559 | disable_acpi(); |
Len Brown | 8558e39 | 2010-01-06 16:11:06 -0500 | [diff] [blame] | 1560 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1561 | } |
| 1562 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1563 | } |
| 1564 | |
Yinghai Lu | cbf9bd6 | 2008-02-19 03:21:06 -0800 | [diff] [blame] | 1565 | int __init early_acpi_boot_init(void) |
| 1566 | { |
| 1567 | /* |
| 1568 | * If acpi_disabled, bail out |
| 1569 | * One exception: acpi=ht continues far enough to enumerate LAPICs |
| 1570 | */ |
| 1571 | if (acpi_disabled && !acpi_ht) |
| 1572 | return 1; |
| 1573 | |
| 1574 | /* |
| 1575 | * Process the Multiple APIC Description Table (MADT), if present |
| 1576 | */ |
| 1577 | early_acpi_process_madt(); |
| 1578 | |
| 1579 | return 0; |
| 1580 | } |
| 1581 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1582 | int __init acpi_boot_init(void) |
| 1583 | { |
Andreas Herrmann | 35af282 | 2008-10-22 13:08:31 +0200 | [diff] [blame] | 1584 | /* those are executed after early-quirks are executed */ |
| 1585 | dmi_check_system(acpi_dmi_table_late); |
| 1586 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1587 | /* |
| 1588 | * If acpi_disabled, bail out |
| 1589 | * One exception: acpi=ht continues far enough to enumerate LAPICs |
| 1590 | */ |
| 1591 | if (acpi_disabled && !acpi_ht) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1592 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1593 | |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 1594 | acpi_table_parse(ACPI_SIG_BOOT, acpi_parse_sbf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1595 | |
| 1596 | /* |
| 1597 | * set sci_int and PM timer address |
| 1598 | */ |
Alexey Starikovskiy | ceb6c46 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 1599 | acpi_table_parse(ACPI_SIG_FADT, acpi_parse_fadt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1600 | |
| 1601 | /* |
| 1602 | * Process the Multiple APIC Description Table (MADT), if present |
| 1603 | */ |
| 1604 | acpi_process_madt(); |
| 1605 | |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 1606 | acpi_table_parse(ACPI_SIG_HPET, acpi_parse_hpet); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1607 | |
Thomas Gleixner | b72d0db | 2009-08-29 16:24:51 +0200 | [diff] [blame^] | 1608 | if (!acpi_noirq) |
| 1609 | x86_init.pci.init = pci_acpi_init; |
| 1610 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1611 | return 0; |
| 1612 | } |
Rusty Russell | 1a3f239 | 2006-09-26 10:52:32 +0200 | [diff] [blame] | 1613 | |
| 1614 | static int __init parse_acpi(char *arg) |
| 1615 | { |
| 1616 | if (!arg) |
| 1617 | return -EINVAL; |
| 1618 | |
| 1619 | /* "acpi=off" disables both ACPI table parsing and interpreter */ |
| 1620 | if (strcmp(arg, "off") == 0) { |
| 1621 | disable_acpi(); |
| 1622 | } |
| 1623 | /* acpi=force to over-ride black-list */ |
| 1624 | else if (strcmp(arg, "force") == 0) { |
| 1625 | acpi_force = 1; |
| 1626 | acpi_ht = 1; |
| 1627 | acpi_disabled = 0; |
| 1628 | } |
| 1629 | /* acpi=strict disables out-of-spec workarounds */ |
| 1630 | else if (strcmp(arg, "strict") == 0) { |
| 1631 | acpi_strict = 1; |
| 1632 | } |
| 1633 | /* Limit ACPI just to boot-time to enable HT */ |
| 1634 | else if (strcmp(arg, "ht") == 0) { |
| 1635 | if (!acpi_force) |
| 1636 | disable_acpi(); |
| 1637 | acpi_ht = 1; |
| 1638 | } |
Zhao Yakui | 237889b | 2008-12-17 16:55:18 +0800 | [diff] [blame] | 1639 | /* acpi=rsdt use RSDT instead of XSDT */ |
| 1640 | else if (strcmp(arg, "rsdt") == 0) { |
| 1641 | acpi_rsdt_forced = 1; |
| 1642 | } |
Rusty Russell | 1a3f239 | 2006-09-26 10:52:32 +0200 | [diff] [blame] | 1643 | /* "acpi=noirq" disables ACPI interrupt routing */ |
| 1644 | else if (strcmp(arg, "noirq") == 0) { |
| 1645 | acpi_noirq_set(); |
| 1646 | } else { |
| 1647 | /* Core will printk when we return error. */ |
| 1648 | return -EINVAL; |
| 1649 | } |
| 1650 | return 0; |
| 1651 | } |
| 1652 | early_param("acpi", parse_acpi); |
| 1653 | |
| 1654 | /* FIXME: Using pci= for an ACPI parameter is a travesty. */ |
| 1655 | static int __init parse_pci(char *arg) |
| 1656 | { |
| 1657 | if (arg && strcmp(arg, "noacpi") == 0) |
| 1658 | acpi_disable_pci(); |
| 1659 | return 0; |
| 1660 | } |
| 1661 | early_param("pci", parse_pci); |
| 1662 | |
Yinghai Lu | 3c999f1 | 2008-06-20 16:11:20 -0700 | [diff] [blame] | 1663 | int __init acpi_mps_check(void) |
| 1664 | { |
| 1665 | #if defined(CONFIG_X86_LOCAL_APIC) && !defined(CONFIG_X86_MPPARSE) |
| 1666 | /* mptable code is not built-in*/ |
| 1667 | if (acpi_disabled || acpi_noirq) { |
| 1668 | printk(KERN_WARNING "MPS support code is not built-in.\n" |
| 1669 | "Using acpi=off or acpi=noirq or pci=noacpi " |
| 1670 | "may have problem\n"); |
| 1671 | return 1; |
| 1672 | } |
| 1673 | #endif |
| 1674 | return 0; |
| 1675 | } |
| 1676 | |
Rusty Russell | 1a3f239 | 2006-09-26 10:52:32 +0200 | [diff] [blame] | 1677 | #ifdef CONFIG_X86_IO_APIC |
| 1678 | static int __init parse_acpi_skip_timer_override(char *arg) |
| 1679 | { |
| 1680 | acpi_skip_timer_override = 1; |
| 1681 | return 0; |
| 1682 | } |
| 1683 | early_param("acpi_skip_timer_override", parse_acpi_skip_timer_override); |
Andi Kleen | fa18f47 | 2006-11-14 16:57:46 +0100 | [diff] [blame] | 1684 | |
| 1685 | static int __init parse_acpi_use_timer_override(char *arg) |
| 1686 | { |
| 1687 | acpi_use_timer_override = 1; |
| 1688 | return 0; |
| 1689 | } |
| 1690 | early_param("acpi_use_timer_override", parse_acpi_use_timer_override); |
Rusty Russell | 1a3f239 | 2006-09-26 10:52:32 +0200 | [diff] [blame] | 1691 | #endif /* CONFIG_X86_IO_APIC */ |
| 1692 | |
| 1693 | static int __init setup_acpi_sci(char *s) |
| 1694 | { |
| 1695 | if (!s) |
| 1696 | return -EINVAL; |
| 1697 | if (!strcmp(s, "edge")) |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 1698 | acpi_sci_flags = ACPI_MADT_TRIGGER_EDGE | |
| 1699 | (acpi_sci_flags & ~ACPI_MADT_TRIGGER_MASK); |
Rusty Russell | 1a3f239 | 2006-09-26 10:52:32 +0200 | [diff] [blame] | 1700 | else if (!strcmp(s, "level")) |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 1701 | acpi_sci_flags = ACPI_MADT_TRIGGER_LEVEL | |
| 1702 | (acpi_sci_flags & ~ACPI_MADT_TRIGGER_MASK); |
Rusty Russell | 1a3f239 | 2006-09-26 10:52:32 +0200 | [diff] [blame] | 1703 | else if (!strcmp(s, "high")) |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 1704 | acpi_sci_flags = ACPI_MADT_POLARITY_ACTIVE_HIGH | |
| 1705 | (acpi_sci_flags & ~ACPI_MADT_POLARITY_MASK); |
Rusty Russell | 1a3f239 | 2006-09-26 10:52:32 +0200 | [diff] [blame] | 1706 | else if (!strcmp(s, "low")) |
Alexey Starikovskiy | 5f3b1a8 | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 1707 | acpi_sci_flags = ACPI_MADT_POLARITY_ACTIVE_LOW | |
| 1708 | (acpi_sci_flags & ~ACPI_MADT_POLARITY_MASK); |
Rusty Russell | 1a3f239 | 2006-09-26 10:52:32 +0200 | [diff] [blame] | 1709 | else |
| 1710 | return -EINVAL; |
| 1711 | return 0; |
| 1712 | } |
| 1713 | early_param("acpi_sci", setup_acpi_sci); |
Andrew Morton | d0a9081 | 2006-10-20 14:30:27 -0700 | [diff] [blame] | 1714 | |
| 1715 | int __acpi_acquire_global_lock(unsigned int *lock) |
| 1716 | { |
| 1717 | unsigned int old, new, val; |
| 1718 | do { |
| 1719 | old = *lock; |
| 1720 | new = (((old & ~0x3) + 2) + ((old >> 1) & 0x1)); |
| 1721 | val = cmpxchg(lock, old, new); |
| 1722 | } while (unlikely (val != old)); |
| 1723 | return (new < 3) ? -1 : 0; |
| 1724 | } |
| 1725 | |
| 1726 | int __acpi_release_global_lock(unsigned int *lock) |
| 1727 | { |
| 1728 | unsigned int old, new, val; |
| 1729 | do { |
| 1730 | old = *lock; |
| 1731 | new = old & ~0x3; |
| 1732 | val = cmpxchg(lock, old, new); |
| 1733 | } while (unlikely (val != old)); |
| 1734 | return old & 0x1; |
| 1735 | } |