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