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> |
| 28 | #include <linux/efi.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <linux/module.h> |
Andrey Panin | aea0014 | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 30 | #include <linux/dmi.h> |
Nick Piggin | b33fa1f | 2005-10-01 02:34:42 +1000 | [diff] [blame] | 31 | #include <linux/irq.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | |
| 33 | #include <asm/pgtable.h> |
| 34 | #include <asm/io_apic.h> |
| 35 | #include <asm/apic.h> |
| 36 | #include <asm/io.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #include <asm/mpspec.h> |
| 38 | |
Rusty Russell | 1a3f239 | 2006-09-26 10:52:32 +0200 | [diff] [blame^] | 39 | int __initdata acpi_force = 0; |
| 40 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | #ifdef CONFIG_X86_64 |
| 42 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | extern void __init clustered_apic_check(void); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 44 | |
James Cleverdon | 6004e1b | 2005-11-05 17:25:53 +0100 | [diff] [blame] | 45 | extern int gsi_irq_sharing(int gsi); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | #include <asm/proto.h> |
| 47 | |
Linus Torvalds | 637029c | 2006-02-27 20:41:56 -0800 | [diff] [blame] | 48 | static inline int acpi_madt_oem_check(char *oem_id, char *oem_table_id) { return 0; } |
| 49 | |
| 50 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 51 | #else /* X86 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | |
| 53 | #ifdef CONFIG_X86_LOCAL_APIC |
| 54 | #include <mach_apic.h> |
| 55 | #include <mach_mpparse.h> |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 56 | #endif /* CONFIG_X86_LOCAL_APIC */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | |
James Cleverdon | 6004e1b | 2005-11-05 17:25:53 +0100 | [diff] [blame] | 58 | static inline int gsi_irq_sharing(int gsi) { return gsi; } |
| 59 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 60 | #endif /* X86 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | |
| 62 | #define BAD_MADT_ENTRY(entry, end) ( \ |
| 63 | (!entry) || (unsigned long)entry + sizeof(*entry) > end || \ |
Starikovskiy, Alexey Y | df6fd31 | 2006-08-18 11:23:00 -0400 | [diff] [blame] | 64 | ((acpi_table_entry_header *)entry)->length < sizeof(*entry)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | |
| 66 | #define PREFIX "ACPI: " |
| 67 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | int acpi_noirq __initdata; /* skip ACPI IRQ initialization */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 69 | int acpi_pci_disabled __initdata; /* skip ACPI PCI scan and IRQ initialization */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | int acpi_ht __initdata = 1; /* enable HT */ |
| 71 | |
| 72 | int acpi_lapic; |
| 73 | int acpi_ioapic; |
| 74 | int acpi_strict; |
| 75 | EXPORT_SYMBOL(acpi_strict); |
| 76 | |
| 77 | acpi_interrupt_flags acpi_sci_flags __initdata; |
| 78 | int acpi_sci_override_gsi __initdata; |
| 79 | int acpi_skip_timer_override __initdata; |
| 80 | |
| 81 | #ifdef CONFIG_X86_LOCAL_APIC |
| 82 | static u64 acpi_lapic_addr __initdata = APIC_DEFAULT_PHYS_BASE; |
| 83 | #endif |
| 84 | |
| 85 | #ifndef __HAVE_ARCH_CMPXCHG |
| 86 | #warning ACPI uses CMPXCHG, i486 and later hardware |
| 87 | #endif |
| 88 | |
| 89 | #define MAX_MADT_ENTRIES 256 |
| 90 | u8 x86_acpiid_to_apicid[MAX_MADT_ENTRIES] = |
Len Brown | 1f3a730 | 2005-08-05 03:33:14 -0400 | [diff] [blame] | 91 | {[0 ... MAX_MADT_ENTRIES - 1] = 0xff }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | EXPORT_SYMBOL(x86_acpiid_to_apicid); |
| 93 | |
| 94 | /* -------------------------------------------------------------------------- |
| 95 | Boot-time Configuration |
| 96 | -------------------------------------------------------------------------- */ |
| 97 | |
| 98 | /* |
| 99 | * The default interrupt routing model is PIC (8259). This gets |
| 100 | * overriden if IOAPICs are enumerated (below). |
| 101 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 102 | enum acpi_irq_model_id acpi_irq_model = ACPI_IRQ_MODEL_PIC; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | |
| 104 | #ifdef CONFIG_X86_64 |
| 105 | |
| 106 | /* rely on all ACPI tables being in the direct mapping */ |
| 107 | char *__acpi_map_table(unsigned long phys_addr, unsigned long size) |
| 108 | { |
| 109 | if (!phys_addr || !size) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 110 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | |
Andi Kleen | 7a4a76c | 2006-01-11 22:43:39 +0100 | [diff] [blame] | 112 | if (phys_addr+size <= (end_pfn_map << PAGE_SHIFT) + PAGE_SIZE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | return __va(phys_addr); |
| 114 | |
| 115 | return NULL; |
| 116 | } |
| 117 | |
| 118 | #else |
| 119 | |
| 120 | /* |
| 121 | * Temporarily use the virtual area starting from FIX_IO_APIC_BASE_END, |
| 122 | * to map the target physical address. The problem is that set_fixmap() |
| 123 | * provides a single page, and it is possible that the page is not |
| 124 | * sufficient. |
| 125 | * By using this area, we can map up to MAX_IO_APICS pages temporarily, |
| 126 | * i.e. until the next __va_range() call. |
| 127 | * |
| 128 | * Important Safety Note: The fixed I/O APIC page numbers are *subtracted* |
| 129 | * from the fixed base. That's why we start at FIX_IO_APIC_BASE_END and |
| 130 | * count idx down while incrementing the phys address. |
| 131 | */ |
| 132 | char *__acpi_map_table(unsigned long phys, unsigned long size) |
| 133 | { |
| 134 | unsigned long base, offset, mapped_size; |
| 135 | int idx; |
| 136 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 137 | if (phys + size < 8 * 1024 * 1024) |
| 138 | return __va(phys); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | |
| 140 | offset = phys & (PAGE_SIZE - 1); |
| 141 | mapped_size = PAGE_SIZE - offset; |
| 142 | set_fixmap(FIX_ACPI_END, phys); |
| 143 | base = fix_to_virt(FIX_ACPI_END); |
| 144 | |
| 145 | /* |
| 146 | * Most cases can be covered by the below. |
| 147 | */ |
| 148 | idx = FIX_ACPI_END; |
| 149 | while (mapped_size < size) { |
| 150 | if (--idx < FIX_ACPI_BEGIN) |
| 151 | return NULL; /* cannot handle this */ |
| 152 | phys += PAGE_SIZE; |
| 153 | set_fixmap(idx, phys); |
| 154 | mapped_size += PAGE_SIZE; |
| 155 | } |
| 156 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 157 | return ((unsigned char *)base + offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | } |
| 159 | #endif |
| 160 | |
| 161 | #ifdef CONFIG_PCI_MMCONFIG |
Greg Kroah-Hartman | 5454939 | 2005-06-23 17:35:56 -0700 | [diff] [blame] | 162 | /* The physical address of the MMCONFIG aperture. Set from ACPI tables. */ |
| 163 | struct acpi_table_mcfg_config *pci_mmcfg_config; |
| 164 | int pci_mmcfg_config_num; |
| 165 | |
| 166 | int __init acpi_parse_mcfg(unsigned long phys_addr, unsigned long size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | { |
| 168 | struct acpi_table_mcfg *mcfg; |
Greg Kroah-Hartman | 5454939 | 2005-06-23 17:35:56 -0700 | [diff] [blame] | 169 | unsigned long i; |
| 170 | int config_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | |
Andi Kleen | 87cb23a | 2006-04-18 12:35:10 +0200 | [diff] [blame] | 172 | if (!phys_addr || !size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | return -EINVAL; |
| 174 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 175 | mcfg = (struct acpi_table_mcfg *)__acpi_map_table(phys_addr, size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | if (!mcfg) { |
| 177 | printk(KERN_WARNING PREFIX "Unable to map MCFG\n"); |
| 178 | return -ENODEV; |
| 179 | } |
| 180 | |
Greg Kroah-Hartman | 5454939 | 2005-06-23 17:35:56 -0700 | [diff] [blame] | 181 | /* how many config structures do we have */ |
| 182 | pci_mmcfg_config_num = 0; |
| 183 | i = size - sizeof(struct acpi_table_mcfg); |
| 184 | while (i >= sizeof(struct acpi_table_mcfg_config)) { |
| 185 | ++pci_mmcfg_config_num; |
| 186 | i -= sizeof(struct acpi_table_mcfg_config); |
| 187 | }; |
| 188 | if (pci_mmcfg_config_num == 0) { |
| 189 | printk(KERN_ERR PREFIX "MMCONFIG has no entries\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | return -ENODEV; |
| 191 | } |
| 192 | |
Greg Kroah-Hartman | 5454939 | 2005-06-23 17:35:56 -0700 | [diff] [blame] | 193 | config_size = pci_mmcfg_config_num * sizeof(*pci_mmcfg_config); |
| 194 | pci_mmcfg_config = kmalloc(config_size, GFP_KERNEL); |
| 195 | if (!pci_mmcfg_config) { |
| 196 | printk(KERN_WARNING PREFIX |
| 197 | "No memory for MCFG config tables\n"); |
| 198 | return -ENOMEM; |
| 199 | } |
| 200 | |
| 201 | memcpy(pci_mmcfg_config, &mcfg->config, config_size); |
| 202 | for (i = 0; i < pci_mmcfg_config_num; ++i) { |
| 203 | if (mcfg->config[i].base_reserved) { |
| 204 | printk(KERN_ERR PREFIX |
| 205 | "MMCONFIG not in low 4GB of memory\n"); |
Konrad Rzeszutek | acc7c2e | 2006-06-15 12:08:30 -0400 | [diff] [blame] | 206 | kfree(pci_mmcfg_config); |
| 207 | pci_mmcfg_config_num = 0; |
Greg Kroah-Hartman | 5454939 | 2005-06-23 17:35:56 -0700 | [diff] [blame] | 208 | return -ENODEV; |
| 209 | } |
| 210 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | |
| 212 | return 0; |
| 213 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 214 | #endif /* CONFIG_PCI_MMCONFIG */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | |
| 216 | #ifdef CONFIG_X86_LOCAL_APIC |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 217 | static int __init acpi_parse_madt(unsigned long phys_addr, unsigned long size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 219 | struct acpi_table_madt *madt = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | |
Andi Kleen | 9cfda2c | 2006-03-27 02:24:32 -0500 | [diff] [blame] | 221 | if (!phys_addr || !size || !cpu_has_apic) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | return -EINVAL; |
| 223 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 224 | madt = (struct acpi_table_madt *)__acpi_map_table(phys_addr, size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | if (!madt) { |
| 226 | printk(KERN_WARNING PREFIX "Unable to map MADT\n"); |
| 227 | return -ENODEV; |
| 228 | } |
| 229 | |
| 230 | if (madt->lapic_address) { |
| 231 | acpi_lapic_addr = (u64) madt->lapic_address; |
| 232 | |
| 233 | printk(KERN_DEBUG PREFIX "Local APIC address 0x%08x\n", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 234 | madt->lapic_address); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | } |
| 236 | |
| 237 | 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] | 238 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | return 0; |
| 240 | } |
| 241 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | static int __init |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 243 | acpi_parse_lapic(acpi_table_entry_header * header, const unsigned long end) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 245 | struct acpi_table_lapic *processor = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 247 | processor = (struct acpi_table_lapic *)header; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | |
| 249 | if (BAD_MADT_ENTRY(processor, end)) |
| 250 | return -EINVAL; |
| 251 | |
| 252 | acpi_table_print_madt_entry(header); |
| 253 | |
Ashok Raj | 7f66ae4 | 2006-02-03 21:51:50 +0100 | [diff] [blame] | 254 | /* Record local apic id only when enabled */ |
| 255 | if (processor->flags.enabled) |
| 256 | x86_acpiid_to_apicid[processor->acpi_id] = processor->id; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | |
Ashok Raj | 7f66ae4 | 2006-02-03 21:51:50 +0100 | [diff] [blame] | 258 | /* |
| 259 | * We need to register disabled CPU as well to permit |
| 260 | * counting disabled CPUs. This allows us to size |
| 261 | * cpus_possible_map more accurately, to permit |
| 262 | * to not preallocating memory for all NR_CPUS |
| 263 | * when we use CPU hotplug. |
| 264 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 265 | mp_register_lapic(processor->id, /* APIC ID */ |
| 266 | processor->flags.enabled); /* Enabled? */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | |
| 268 | return 0; |
| 269 | } |
| 270 | |
| 271 | static int __init |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 272 | acpi_parse_lapic_addr_ovr(acpi_table_entry_header * header, |
| 273 | const unsigned long end) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | { |
| 275 | struct acpi_table_lapic_addr_ovr *lapic_addr_ovr = NULL; |
| 276 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 277 | lapic_addr_ovr = (struct acpi_table_lapic_addr_ovr *)header; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | |
| 279 | if (BAD_MADT_ENTRY(lapic_addr_ovr, end)) |
| 280 | return -EINVAL; |
| 281 | |
| 282 | acpi_lapic_addr = lapic_addr_ovr->address; |
| 283 | |
| 284 | return 0; |
| 285 | } |
| 286 | |
| 287 | static int __init |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 288 | acpi_parse_lapic_nmi(acpi_table_entry_header * header, const unsigned long end) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | { |
| 290 | struct acpi_table_lapic_nmi *lapic_nmi = NULL; |
| 291 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 292 | lapic_nmi = (struct acpi_table_lapic_nmi *)header; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | |
| 294 | if (BAD_MADT_ENTRY(lapic_nmi, end)) |
| 295 | return -EINVAL; |
| 296 | |
| 297 | acpi_table_print_madt_entry(header); |
| 298 | |
| 299 | if (lapic_nmi->lint != 1) |
| 300 | printk(KERN_WARNING PREFIX "NMI not connected to LINT 1!\n"); |
| 301 | |
| 302 | return 0; |
| 303 | } |
| 304 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 305 | #endif /*CONFIG_X86_LOCAL_APIC */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | |
Len Brown | 8466361 | 2005-08-24 12:09:07 -0400 | [diff] [blame] | 307 | #ifdef CONFIG_X86_IO_APIC |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | |
| 309 | static int __init |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 310 | acpi_parse_ioapic(acpi_table_entry_header * header, const unsigned long end) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | { |
| 312 | struct acpi_table_ioapic *ioapic = NULL; |
| 313 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 314 | ioapic = (struct acpi_table_ioapic *)header; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | |
| 316 | if (BAD_MADT_ENTRY(ioapic, end)) |
| 317 | return -EINVAL; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 318 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | acpi_table_print_madt_entry(header); |
| 320 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 321 | mp_register_ioapic(ioapic->id, |
| 322 | ioapic->address, ioapic->global_irq_base); |
| 323 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | return 0; |
| 325 | } |
| 326 | |
| 327 | /* |
| 328 | * Parse Interrupt Source Override for the ACPI SCI |
| 329 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 330 | static void acpi_sci_ioapic_setup(u32 gsi, u16 polarity, u16 trigger) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | { |
| 332 | if (trigger == 0) /* compatible SCI trigger is level */ |
| 333 | trigger = 3; |
| 334 | |
| 335 | if (polarity == 0) /* compatible SCI polarity is low */ |
| 336 | polarity = 3; |
| 337 | |
| 338 | /* Command-line over-ride via acpi_sci= */ |
| 339 | if (acpi_sci_flags.trigger) |
| 340 | trigger = acpi_sci_flags.trigger; |
| 341 | |
| 342 | if (acpi_sci_flags.polarity) |
| 343 | polarity = acpi_sci_flags.polarity; |
| 344 | |
| 345 | /* |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 346 | * mp_config_acpi_legacy_irqs() already setup IRQs < 16 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | * If GSI is < 16, this will update its flags, |
| 348 | * else it will create a new mp_irqs[] entry. |
| 349 | */ |
| 350 | mp_override_legacy_irq(gsi, polarity, trigger, gsi); |
| 351 | |
| 352 | /* |
| 353 | * stash over-ride to indicate we've been here |
| 354 | * and for later update of acpi_fadt |
| 355 | */ |
| 356 | acpi_sci_override_gsi = gsi; |
| 357 | return; |
| 358 | } |
| 359 | |
| 360 | static int __init |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 361 | acpi_parse_int_src_ovr(acpi_table_entry_header * header, |
| 362 | const unsigned long end) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | { |
| 364 | struct acpi_table_int_src_ovr *intsrc = NULL; |
| 365 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 366 | intsrc = (struct acpi_table_int_src_ovr *)header; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | |
| 368 | if (BAD_MADT_ENTRY(intsrc, end)) |
| 369 | return -EINVAL; |
| 370 | |
| 371 | acpi_table_print_madt_entry(header); |
| 372 | |
| 373 | if (intsrc->bus_irq == acpi_fadt.sci_int) { |
| 374 | acpi_sci_ioapic_setup(intsrc->global_irq, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 375 | intsrc->flags.polarity, |
| 376 | intsrc->flags.trigger); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | return 0; |
| 378 | } |
| 379 | |
| 380 | if (acpi_skip_timer_override && |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 381 | intsrc->bus_irq == 0 && intsrc->global_irq == 2) { |
| 382 | printk(PREFIX "BIOS IRQ0 pin2 override ignored.\n"); |
| 383 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | } |
| 385 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 386 | mp_override_legacy_irq(intsrc->bus_irq, |
| 387 | intsrc->flags.polarity, |
| 388 | intsrc->flags.trigger, intsrc->global_irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | |
| 390 | return 0; |
| 391 | } |
| 392 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | static int __init |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 394 | acpi_parse_nmi_src(acpi_table_entry_header * header, const unsigned long end) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | { |
| 396 | struct acpi_table_nmi_src *nmi_src = NULL; |
| 397 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 398 | nmi_src = (struct acpi_table_nmi_src *)header; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | |
| 400 | if (BAD_MADT_ENTRY(nmi_src, end)) |
| 401 | return -EINVAL; |
| 402 | |
| 403 | acpi_table_print_madt_entry(header); |
| 404 | |
| 405 | /* TBD: Support nimsrc entries? */ |
| 406 | |
| 407 | return 0; |
| 408 | } |
| 409 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 410 | #endif /* CONFIG_X86_IO_APIC */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | /* |
| 413 | * acpi_pic_sci_set_trigger() |
| 414 | * |
| 415 | * use ELCR to set PIC-mode trigger type for SCI |
| 416 | * |
| 417 | * If a PIC-mode SCI is not recognized or gives spurious IRQ7's |
| 418 | * it may require Edge Trigger -- use "acpi_sci=edge" |
| 419 | * |
| 420 | * Port 0x4d0-4d1 are ECLR1 and ECLR2, the Edge/Level Control Registers |
| 421 | * for the 8259 PIC. bit[n] = 1 means irq[n] is Level, otherwise Edge. |
| 422 | * ECLR1 is IRQ's 0-7 (IRQ 0, 1, 2 must be 0) |
| 423 | * ECLR2 is IRQ's 8-15 (IRQ 8, 13 must be 0) |
| 424 | */ |
| 425 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 426 | void __init acpi_pic_sci_set_trigger(unsigned int irq, u16 trigger) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | { |
| 428 | unsigned int mask = 1 << irq; |
| 429 | unsigned int old, new; |
| 430 | |
| 431 | /* Real old ELCR mask */ |
| 432 | old = inb(0x4d0) | (inb(0x4d1) << 8); |
| 433 | |
| 434 | /* |
| 435 | * If we use ACPI to set PCI irq's, then we should clear ELCR |
| 436 | * since we will set it correctly as we enable the PCI irq |
| 437 | * routing. |
| 438 | */ |
| 439 | new = acpi_noirq ? old : 0; |
| 440 | |
| 441 | /* |
| 442 | * Update SCI information in the ELCR, it isn't in the PCI |
| 443 | * routing tables.. |
| 444 | */ |
| 445 | switch (trigger) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 446 | case 1: /* Edge - clear */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | new &= ~mask; |
| 448 | break; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 449 | case 3: /* Level - set */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | new |= mask; |
| 451 | break; |
| 452 | } |
| 453 | |
| 454 | if (old == new) |
| 455 | return; |
| 456 | |
| 457 | printk(PREFIX "setting ELCR to %04x (from %04x)\n", new, old); |
| 458 | outb(new, 0x4d0); |
| 459 | outb(new >> 8, 0x4d1); |
| 460 | } |
| 461 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | int acpi_gsi_to_irq(u32 gsi, unsigned int *irq) |
| 463 | { |
| 464 | #ifdef CONFIG_X86_IO_APIC |
| 465 | if (use_pci_vector() && !platform_legacy_irq(gsi)) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 466 | *irq = IO_APIC_VECTOR(gsi); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | else |
| 468 | #endif |
James Cleverdon | 6004e1b | 2005-11-05 17:25:53 +0100 | [diff] [blame] | 469 | *irq = gsi_irq_sharing(gsi); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | return 0; |
| 471 | } |
| 472 | |
Kenji Kaneshige | 1f3a6a1 | 2005-07-28 14:42:00 -0400 | [diff] [blame] | 473 | /* |
| 474 | * success: return IRQ number (>=0) |
| 475 | * failure: return < 0 |
| 476 | */ |
Len Brown | cb65469 | 2005-12-28 02:43:51 -0500 | [diff] [blame] | 477 | int acpi_register_gsi(u32 gsi, int triggering, int polarity) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | { |
| 479 | unsigned int irq; |
| 480 | unsigned int plat_gsi = gsi; |
| 481 | |
| 482 | #ifdef CONFIG_PCI |
| 483 | /* |
| 484 | * Make sure all (legacy) PCI IRQs are set as level-triggered. |
| 485 | */ |
| 486 | if (acpi_irq_model == ACPI_IRQ_MODEL_PIC) { |
| 487 | extern void eisa_set_level_irq(unsigned int irq); |
| 488 | |
Len Brown | cb65469 | 2005-12-28 02:43:51 -0500 | [diff] [blame] | 489 | if (triggering == ACPI_LEVEL_SENSITIVE) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 490 | eisa_set_level_irq(gsi); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 491 | } |
| 492 | #endif |
| 493 | |
| 494 | #ifdef CONFIG_X86_IO_APIC |
| 495 | if (acpi_irq_model == ACPI_IRQ_MODEL_IOAPIC) { |
Len Brown | cb65469 | 2005-12-28 02:43:51 -0500 | [diff] [blame] | 496 | plat_gsi = mp_register_gsi(gsi, triggering, polarity); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | } |
| 498 | #endif |
| 499 | acpi_gsi_to_irq(plat_gsi, &irq); |
| 500 | return irq; |
| 501 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 502 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 503 | EXPORT_SYMBOL(acpi_register_gsi); |
| 504 | |
| 505 | /* |
| 506 | * ACPI based hotplug support for CPU |
| 507 | */ |
| 508 | #ifdef CONFIG_ACPI_HOTPLUG_CPU |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 509 | int acpi_map_lsapic(acpi_handle handle, int *pcpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | { |
| 511 | /* TBD */ |
| 512 | return -EINVAL; |
| 513 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 514 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | EXPORT_SYMBOL(acpi_map_lsapic); |
| 516 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 517 | int acpi_unmap_lsapic(int cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | { |
| 519 | /* TBD */ |
| 520 | return -EINVAL; |
| 521 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 522 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | EXPORT_SYMBOL(acpi_unmap_lsapic); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 524 | #endif /* CONFIG_ACPI_HOTPLUG_CPU */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 526 | 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] | 527 | { |
| 528 | /* TBD */ |
| 529 | return -EINVAL; |
| 530 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 531 | |
Kenji Kaneshige | b1bb248 | 2005-04-28 00:25:58 -0700 | [diff] [blame] | 532 | EXPORT_SYMBOL(acpi_register_ioapic); |
| 533 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 534 | int acpi_unregister_ioapic(acpi_handle handle, u32 gsi_base) |
Kenji Kaneshige | b1bb248 | 2005-04-28 00:25:58 -0700 | [diff] [blame] | 535 | { |
| 536 | /* TBD */ |
| 537 | return -EINVAL; |
| 538 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 539 | |
Kenji Kaneshige | b1bb248 | 2005-04-28 00:25:58 -0700 | [diff] [blame] | 540 | EXPORT_SYMBOL(acpi_unregister_ioapic); |
| 541 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | static unsigned long __init |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 543 | acpi_scan_rsdp(unsigned long start, unsigned long length) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 545 | unsigned long offset = 0; |
| 546 | unsigned long sig_len = sizeof("RSD PTR ") - 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | |
| 548 | /* |
| 549 | * Scan all 16-byte boundaries of the physical memory region for the |
| 550 | * RSDP signature. |
| 551 | */ |
| 552 | for (offset = 0; offset < length; offset += 16) { |
Siddha, Suresh B | f6c2e33 | 2005-11-05 17:25:53 +0100 | [diff] [blame] | 553 | if (strncmp((char *)(phys_to_virt(start) + offset), "RSD PTR ", sig_len)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | continue; |
| 555 | return (start + offset); |
| 556 | } |
| 557 | |
| 558 | return 0; |
| 559 | } |
| 560 | |
| 561 | static int __init acpi_parse_sbf(unsigned long phys_addr, unsigned long size) |
| 562 | { |
| 563 | struct acpi_table_sbf *sb; |
| 564 | |
| 565 | if (!phys_addr || !size) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 566 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 568 | sb = (struct acpi_table_sbf *)__acpi_map_table(phys_addr, size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | if (!sb) { |
| 570 | printk(KERN_WARNING PREFIX "Unable to map SBF\n"); |
| 571 | return -ENODEV; |
| 572 | } |
| 573 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 574 | sbf_port = sb->sbf_cmos; /* Save CMOS port */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 575 | |
| 576 | return 0; |
| 577 | } |
| 578 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 579 | #ifdef CONFIG_HPET_TIMER |
| 580 | |
| 581 | static int __init acpi_parse_hpet(unsigned long phys, unsigned long size) |
| 582 | { |
| 583 | struct acpi_table_hpet *hpet_tbl; |
| 584 | |
| 585 | if (!phys || !size) |
| 586 | return -EINVAL; |
| 587 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 588 | hpet_tbl = (struct acpi_table_hpet *)__acpi_map_table(phys, size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 589 | if (!hpet_tbl) { |
| 590 | printk(KERN_WARNING PREFIX "Unable to map HPET\n"); |
| 591 | return -ENODEV; |
| 592 | } |
| 593 | |
| 594 | if (hpet_tbl->addr.space_id != ACPI_SPACE_MEM) { |
| 595 | printk(KERN_WARNING PREFIX "HPET timers must be located in " |
| 596 | "memory.\n"); |
| 597 | return -1; |
| 598 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | #ifdef CONFIG_X86_64 |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 600 | vxtime.hpet_address = hpet_tbl->addr.addrl | |
| 601 | ((long)hpet_tbl->addr.addrh << 32); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 603 | printk(KERN_INFO PREFIX "HPET id: %#x base: %#lx\n", |
| 604 | hpet_tbl->id, vxtime.hpet_address); |
| 605 | #else /* X86 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | { |
| 607 | extern unsigned long hpet_address; |
| 608 | |
| 609 | hpet_address = hpet_tbl->addr.addrl; |
| 610 | printk(KERN_INFO PREFIX "HPET id: %#x base: %#lx\n", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 611 | hpet_tbl->id, hpet_address); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 613 | #endif /* X86 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | |
| 615 | return 0; |
| 616 | } |
| 617 | #else |
| 618 | #define acpi_parse_hpet NULL |
| 619 | #endif |
| 620 | |
| 621 | #ifdef CONFIG_X86_PM_TIMER |
| 622 | extern u32 pmtmr_ioport; |
| 623 | #endif |
| 624 | |
| 625 | static int __init acpi_parse_fadt(unsigned long phys, unsigned long size) |
| 626 | { |
Bob Moore | 793c238 | 2006-03-31 00:00:00 -0500 | [diff] [blame] | 627 | struct fadt_descriptor *fadt = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 628 | |
Bob Moore | 793c238 | 2006-03-31 00:00:00 -0500 | [diff] [blame] | 629 | fadt = (struct fadt_descriptor *)__acpi_map_table(phys, size); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 630 | if (!fadt) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | printk(KERN_WARNING PREFIX "Unable to map FADT\n"); |
| 632 | return 0; |
| 633 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | /* initialize sci_int early for INT_SRC_OVR MADT parsing */ |
| 635 | acpi_fadt.sci_int = fadt->sci_int; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 636 | |
Jason Davis | 90660ec | 2005-04-16 15:24:53 -0700 | [diff] [blame] | 637 | /* initialize rev and apic_phys_dest_mode for x86_64 genapic */ |
| 638 | acpi_fadt.revision = fadt->revision; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 639 | acpi_fadt.force_apic_physical_destination_mode = |
| 640 | fadt->force_apic_physical_destination_mode; |
Jason Davis | 90660ec | 2005-04-16 15:24:53 -0700 | [diff] [blame] | 641 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 642 | #ifdef CONFIG_X86_PM_TIMER |
| 643 | /* detect the location of the ACPI PM Timer */ |
| 644 | if (fadt->revision >= FADT2_REVISION_ID) { |
| 645 | /* FADT rev. 2 */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 646 | if (fadt->xpm_tmr_blk.address_space_id != |
| 647 | ACPI_ADR_SPACE_SYSTEM_IO) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | return 0; |
| 649 | |
| 650 | pmtmr_ioport = fadt->xpm_tmr_blk.address; |
David Shaohua Li | e6e87b4 | 2005-09-21 01:35:00 -0400 | [diff] [blame] | 651 | /* |
| 652 | * "X" fields are optional extensions to the original V1.0 |
| 653 | * fields, so we must selectively expand V1.0 fields if the |
| 654 | * corresponding X field is zero. |
| 655 | */ |
| 656 | if (!pmtmr_ioport) |
| 657 | pmtmr_ioport = fadt->V1_pm_tmr_blk; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 658 | } else { |
| 659 | /* FADT rev. 1 */ |
| 660 | pmtmr_ioport = fadt->V1_pm_tmr_blk; |
| 661 | } |
| 662 | if (pmtmr_ioport) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 663 | printk(KERN_INFO PREFIX "PM-Timer IO Port: %#x\n", |
| 664 | pmtmr_ioport); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 665 | #endif |
| 666 | return 0; |
| 667 | } |
| 668 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 669 | unsigned long __init acpi_find_rsdp(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 670 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 671 | unsigned long rsdp_phys = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 672 | |
| 673 | if (efi_enabled) { |
Bjorn Helgaas | b2c99e3 | 2006-03-26 01:37:08 -0800 | [diff] [blame] | 674 | if (efi.acpi20 != EFI_INVALID_TABLE_ADDR) |
| 675 | return efi.acpi20; |
| 676 | else if (efi.acpi != EFI_INVALID_TABLE_ADDR) |
| 677 | return efi.acpi; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | } |
| 679 | /* |
| 680 | * Scan memory looking for the RSDP signature. First search EBDA (low |
| 681 | * memory) paragraphs and then search upper memory (E0000-FFFFF). |
| 682 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 683 | rsdp_phys = acpi_scan_rsdp(0, 0x400); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 684 | if (!rsdp_phys) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 685 | rsdp_phys = acpi_scan_rsdp(0xE0000, 0x20000); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 686 | |
| 687 | return rsdp_phys; |
| 688 | } |
| 689 | |
| 690 | #ifdef CONFIG_X86_LOCAL_APIC |
| 691 | /* |
| 692 | * Parse LAPIC entries in MADT |
| 693 | * returns 0 on success, < 0 on error |
| 694 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 695 | static int __init acpi_parse_madt_lapic_entries(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 696 | { |
| 697 | int count; |
| 698 | |
Andi Kleen | 0fcd270 | 2006-04-11 12:54:36 +0200 | [diff] [blame] | 699 | if (!cpu_has_apic) |
| 700 | return -ENODEV; |
| 701 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 702 | /* |
| 703 | * Note that the LAPIC address is obtained from the MADT (32-bit value) |
| 704 | * and (optionally) overriden by a LAPIC_ADDR_OVR entry (64-bit value). |
| 705 | */ |
| 706 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 707 | count = |
| 708 | acpi_table_parse_madt(ACPI_MADT_LAPIC_ADDR_OVR, |
| 709 | acpi_parse_lapic_addr_ovr, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 710 | if (count < 0) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 711 | printk(KERN_ERR PREFIX |
| 712 | "Error parsing LAPIC address override entry\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 713 | return count; |
| 714 | } |
| 715 | |
| 716 | mp_register_lapic_address(acpi_lapic_addr); |
| 717 | |
| 718 | count = acpi_table_parse_madt(ACPI_MADT_LAPIC, acpi_parse_lapic, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 719 | MAX_APICS); |
| 720 | if (!count) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 721 | printk(KERN_ERR PREFIX "No LAPIC entries present\n"); |
| 722 | /* TBD: Cleanup to allow fallback to MPS */ |
| 723 | return -ENODEV; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 724 | } else if (count < 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | printk(KERN_ERR PREFIX "Error parsing LAPIC entry\n"); |
| 726 | /* TBD: Cleanup to allow fallback to MPS */ |
| 727 | return count; |
| 728 | } |
| 729 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 730 | count = |
| 731 | acpi_table_parse_madt(ACPI_MADT_LAPIC_NMI, acpi_parse_lapic_nmi, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 732 | if (count < 0) { |
| 733 | printk(KERN_ERR PREFIX "Error parsing LAPIC NMI entry\n"); |
| 734 | /* TBD: Cleanup to allow fallback to MPS */ |
| 735 | return count; |
| 736 | } |
| 737 | return 0; |
| 738 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 739 | #endif /* CONFIG_X86_LOCAL_APIC */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 740 | |
Len Brown | 8466361 | 2005-08-24 12:09:07 -0400 | [diff] [blame] | 741 | #ifdef CONFIG_X86_IO_APIC |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 742 | /* |
| 743 | * Parse IOAPIC related entries in MADT |
| 744 | * returns 0 on success, < 0 on error |
| 745 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 746 | static int __init acpi_parse_madt_ioapic_entries(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 747 | { |
| 748 | int count; |
| 749 | |
| 750 | /* |
| 751 | * ACPI interpreter is required to complete interrupt setup, |
| 752 | * so if it is off, don't enumerate the io-apics with ACPI. |
| 753 | * If MPS is present, it will handle them, |
| 754 | * otherwise the system will stay in PIC mode |
| 755 | */ |
| 756 | if (acpi_disabled || acpi_noirq) { |
| 757 | return -ENODEV; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 758 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 759 | |
Andi Kleen | 9cfda2c | 2006-03-27 02:24:32 -0500 | [diff] [blame] | 760 | if (!cpu_has_apic) |
Andi Kleen | d3b6a34 | 2006-04-07 19:49:39 +0200 | [diff] [blame] | 761 | return -ENODEV; |
| 762 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 763 | /* |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 764 | * if "noapic" boot option, don't look for IO-APICs |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 765 | */ |
| 766 | if (skip_ioapic_setup) { |
| 767 | printk(KERN_INFO PREFIX "Skipping IOAPIC probe " |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 768 | "due to 'noapic' option.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | return -ENODEV; |
| 770 | } |
| 771 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 772 | count = |
| 773 | acpi_table_parse_madt(ACPI_MADT_IOAPIC, acpi_parse_ioapic, |
| 774 | MAX_IO_APICS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 775 | if (!count) { |
| 776 | printk(KERN_ERR PREFIX "No IOAPIC entries present\n"); |
| 777 | return -ENODEV; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 778 | } else if (count < 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 779 | printk(KERN_ERR PREFIX "Error parsing IOAPIC entry\n"); |
| 780 | return count; |
| 781 | } |
| 782 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 783 | count = |
| 784 | acpi_table_parse_madt(ACPI_MADT_INT_SRC_OVR, acpi_parse_int_src_ovr, |
| 785 | NR_IRQ_VECTORS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 786 | if (count < 0) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 787 | printk(KERN_ERR PREFIX |
| 788 | "Error parsing interrupt source overrides entry\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 789 | /* TBD: Cleanup to allow fallback to MPS */ |
| 790 | return count; |
| 791 | } |
| 792 | |
| 793 | /* |
| 794 | * If BIOS did not supply an INT_SRC_OVR for the SCI |
| 795 | * pretend we got one so we can set the SCI flags. |
| 796 | */ |
| 797 | if (!acpi_sci_override_gsi) |
| 798 | acpi_sci_ioapic_setup(acpi_fadt.sci_int, 0, 0); |
| 799 | |
| 800 | /* Fill in identity legacy mapings where no override */ |
| 801 | mp_config_acpi_legacy_irqs(); |
| 802 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 803 | count = |
| 804 | acpi_table_parse_madt(ACPI_MADT_NMI_SRC, acpi_parse_nmi_src, |
| 805 | NR_IRQ_VECTORS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 806 | if (count < 0) { |
| 807 | printk(KERN_ERR PREFIX "Error parsing NMI SRC entry\n"); |
| 808 | /* TBD: Cleanup to allow fallback to MPS */ |
| 809 | return count; |
| 810 | } |
| 811 | |
| 812 | return 0; |
| 813 | } |
| 814 | #else |
| 815 | static inline int acpi_parse_madt_ioapic_entries(void) |
| 816 | { |
| 817 | return -1; |
| 818 | } |
Len Brown | 8466361 | 2005-08-24 12:09:07 -0400 | [diff] [blame] | 819 | #endif /* !CONFIG_X86_IO_APIC */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 820 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 821 | static void __init acpi_process_madt(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 822 | { |
| 823 | #ifdef CONFIG_X86_LOCAL_APIC |
| 824 | int count, error; |
| 825 | |
| 826 | count = acpi_table_parse(ACPI_APIC, acpi_parse_madt); |
| 827 | if (count >= 1) { |
| 828 | |
| 829 | /* |
| 830 | * Parse MADT LAPIC entries |
| 831 | */ |
| 832 | error = acpi_parse_madt_lapic_entries(); |
| 833 | if (!error) { |
| 834 | acpi_lapic = 1; |
| 835 | |
Venkatesh Pallipadi | 911a62d | 2005-09-03 15:56:31 -0700 | [diff] [blame] | 836 | #ifdef CONFIG_X86_GENERICARCH |
| 837 | generic_bigsmp_probe(); |
| 838 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 839 | /* |
| 840 | * Parse MADT IO-APIC entries |
| 841 | */ |
| 842 | error = acpi_parse_madt_ioapic_entries(); |
| 843 | if (!error) { |
| 844 | acpi_irq_model = ACPI_IRQ_MODEL_IOAPIC; |
| 845 | acpi_irq_balance_set(NULL); |
| 846 | acpi_ioapic = 1; |
| 847 | |
| 848 | smp_found_config = 1; |
| 849 | clustered_apic_check(); |
| 850 | } |
| 851 | } |
| 852 | if (error == -EINVAL) { |
| 853 | /* |
| 854 | * Dell Precision Workstation 410, 610 come here. |
| 855 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 856 | printk(KERN_ERR PREFIX |
| 857 | "Invalid BIOS MADT, disabling ACPI\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 858 | disable_acpi(); |
| 859 | } |
| 860 | } |
| 861 | #endif |
| 862 | return; |
| 863 | } |
| 864 | |
Andrey Panin | aea0014 | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 865 | #ifdef __i386__ |
| 866 | |
Andrey Panin | aea0014 | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 867 | static int __init disable_acpi_irq(struct dmi_system_id *d) |
| 868 | { |
| 869 | if (!acpi_force) { |
| 870 | printk(KERN_NOTICE "%s detected: force use of acpi=noirq\n", |
| 871 | d->ident); |
| 872 | acpi_noirq_set(); |
| 873 | } |
| 874 | return 0; |
| 875 | } |
| 876 | |
| 877 | static int __init disable_acpi_pci(struct dmi_system_id *d) |
| 878 | { |
| 879 | if (!acpi_force) { |
| 880 | printk(KERN_NOTICE "%s detected: force use of pci=noacpi\n", |
| 881 | d->ident); |
| 882 | acpi_disable_pci(); |
| 883 | } |
| 884 | return 0; |
| 885 | } |
Andrey Panin | aea0014 | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 886 | |
| 887 | static int __init dmi_disable_acpi(struct dmi_system_id *d) |
| 888 | { |
| 889 | if (!acpi_force) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 890 | printk(KERN_NOTICE "%s detected: acpi off\n", d->ident); |
Andrey Panin | aea0014 | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 891 | disable_acpi(); |
| 892 | } else { |
| 893 | printk(KERN_NOTICE |
| 894 | "Warning: DMI blacklist says broken, but acpi forced\n"); |
| 895 | } |
| 896 | return 0; |
| 897 | } |
| 898 | |
| 899 | /* |
| 900 | * Limit ACPI to CPU enumeration for HT |
| 901 | */ |
| 902 | static int __init force_acpi_ht(struct dmi_system_id *d) |
| 903 | { |
| 904 | if (!acpi_force) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 905 | printk(KERN_NOTICE "%s detected: force use of acpi=ht\n", |
| 906 | d->ident); |
Andrey Panin | aea0014 | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 907 | disable_acpi(); |
| 908 | acpi_ht = 1; |
| 909 | } else { |
| 910 | printk(KERN_NOTICE |
| 911 | "Warning: acpi=force overrules DMI blacklist: acpi=ht\n"); |
| 912 | } |
| 913 | return 0; |
| 914 | } |
| 915 | |
| 916 | /* |
| 917 | * If your system is blacklisted here, but you find that acpi=force |
| 918 | * works for you, please contact acpi-devel@sourceforge.net |
| 919 | */ |
| 920 | static struct dmi_system_id __initdata acpi_dmi_table[] = { |
| 921 | /* |
| 922 | * Boxes that need ACPI disabled |
| 923 | */ |
| 924 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 925 | .callback = dmi_disable_acpi, |
| 926 | .ident = "IBM Thinkpad", |
| 927 | .matches = { |
| 928 | DMI_MATCH(DMI_BOARD_VENDOR, "IBM"), |
| 929 | DMI_MATCH(DMI_BOARD_NAME, "2629H1G"), |
| 930 | }, |
| 931 | }, |
Andrey Panin | aea0014 | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 932 | |
| 933 | /* |
| 934 | * Boxes that need acpi=ht |
| 935 | */ |
| 936 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 937 | .callback = force_acpi_ht, |
| 938 | .ident = "FSC Primergy T850", |
| 939 | .matches = { |
| 940 | DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"), |
| 941 | DMI_MATCH(DMI_PRODUCT_NAME, "PRIMERGY T850"), |
| 942 | }, |
| 943 | }, |
Andrey Panin | aea0014 | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 944 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 945 | .callback = force_acpi_ht, |
| 946 | .ident = "DELL GX240", |
| 947 | .matches = { |
| 948 | DMI_MATCH(DMI_BOARD_VENDOR, "Dell Computer Corporation"), |
| 949 | DMI_MATCH(DMI_BOARD_NAME, "OptiPlex GX240"), |
| 950 | }, |
| 951 | }, |
Andrey Panin | aea0014 | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 952 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 953 | .callback = force_acpi_ht, |
| 954 | .ident = "HP VISUALIZE NT Workstation", |
| 955 | .matches = { |
| 956 | DMI_MATCH(DMI_BOARD_VENDOR, "Hewlett-Packard"), |
| 957 | DMI_MATCH(DMI_PRODUCT_NAME, "HP VISUALIZE NT Workstation"), |
| 958 | }, |
| 959 | }, |
Andrey Panin | aea0014 | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 960 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 961 | .callback = force_acpi_ht, |
| 962 | .ident = "Compaq Workstation W8000", |
| 963 | .matches = { |
| 964 | DMI_MATCH(DMI_SYS_VENDOR, "Compaq"), |
| 965 | DMI_MATCH(DMI_PRODUCT_NAME, "Workstation W8000"), |
| 966 | }, |
| 967 | }, |
Andrey Panin | aea0014 | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 968 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 969 | .callback = force_acpi_ht, |
| 970 | .ident = "ASUS P4B266", |
| 971 | .matches = { |
| 972 | DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."), |
| 973 | DMI_MATCH(DMI_BOARD_NAME, "P4B266"), |
| 974 | }, |
| 975 | }, |
Andrey Panin | aea0014 | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 976 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 977 | .callback = force_acpi_ht, |
| 978 | .ident = "ASUS P2B-DS", |
| 979 | .matches = { |
| 980 | DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."), |
| 981 | DMI_MATCH(DMI_BOARD_NAME, "P2B-DS"), |
| 982 | }, |
| 983 | }, |
Andrey Panin | aea0014 | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 984 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 985 | .callback = force_acpi_ht, |
| 986 | .ident = "ASUS CUR-DLS", |
| 987 | .matches = { |
| 988 | DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."), |
| 989 | DMI_MATCH(DMI_BOARD_NAME, "CUR-DLS"), |
| 990 | }, |
| 991 | }, |
Andrey Panin | aea0014 | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 992 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 993 | .callback = force_acpi_ht, |
| 994 | .ident = "ABIT i440BX-W83977", |
| 995 | .matches = { |
| 996 | DMI_MATCH(DMI_BOARD_VENDOR, "ABIT <http://www.abit.com>"), |
| 997 | DMI_MATCH(DMI_BOARD_NAME, "i440BX-W83977 (BP6)"), |
| 998 | }, |
| 999 | }, |
Andrey Panin | aea0014 | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 1000 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1001 | .callback = force_acpi_ht, |
| 1002 | .ident = "IBM Bladecenter", |
| 1003 | .matches = { |
| 1004 | DMI_MATCH(DMI_BOARD_VENDOR, "IBM"), |
| 1005 | DMI_MATCH(DMI_BOARD_NAME, "IBM eServer BladeCenter HS20"), |
| 1006 | }, |
| 1007 | }, |
Andrey Panin | aea0014 | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 1008 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1009 | .callback = force_acpi_ht, |
| 1010 | .ident = "IBM eServer xSeries 360", |
| 1011 | .matches = { |
| 1012 | DMI_MATCH(DMI_BOARD_VENDOR, "IBM"), |
| 1013 | DMI_MATCH(DMI_BOARD_NAME, "eServer xSeries 360"), |
| 1014 | }, |
| 1015 | }, |
Andrey Panin | aea0014 | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 1016 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1017 | .callback = force_acpi_ht, |
| 1018 | .ident = "IBM eserver xSeries 330", |
| 1019 | .matches = { |
| 1020 | DMI_MATCH(DMI_BOARD_VENDOR, "IBM"), |
| 1021 | DMI_MATCH(DMI_BOARD_NAME, "eserver xSeries 330"), |
| 1022 | }, |
| 1023 | }, |
Andrey Panin | aea0014 | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 1024 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1025 | .callback = force_acpi_ht, |
| 1026 | .ident = "IBM eserver xSeries 440", |
| 1027 | .matches = { |
| 1028 | DMI_MATCH(DMI_BOARD_VENDOR, "IBM"), |
| 1029 | DMI_MATCH(DMI_PRODUCT_NAME, "eserver xSeries 440"), |
| 1030 | }, |
| 1031 | }, |
Andrey Panin | aea0014 | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 1032 | |
Andrey Panin | aea0014 | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 1033 | /* |
| 1034 | * Boxes that need ACPI PCI IRQ routing disabled |
| 1035 | */ |
| 1036 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1037 | .callback = disable_acpi_irq, |
| 1038 | .ident = "ASUS A7V", |
| 1039 | .matches = { |
| 1040 | DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC"), |
| 1041 | DMI_MATCH(DMI_BOARD_NAME, "<A7V>"), |
| 1042 | /* newer BIOS, Revision 1011, does work */ |
| 1043 | DMI_MATCH(DMI_BIOS_VERSION, |
| 1044 | "ASUS A7V ACPI BIOS Revision 1007"), |
| 1045 | }, |
| 1046 | }, |
Andrey Panin | aea0014 | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 1047 | |
| 1048 | /* |
| 1049 | * Boxes that need ACPI PCI IRQ routing and PCI scan disabled |
| 1050 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1051 | { /* _BBN 0 bug */ |
| 1052 | .callback = disable_acpi_pci, |
| 1053 | .ident = "ASUS PR-DLS", |
| 1054 | .matches = { |
| 1055 | DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."), |
| 1056 | DMI_MATCH(DMI_BOARD_NAME, "PR-DLS"), |
| 1057 | DMI_MATCH(DMI_BIOS_VERSION, |
| 1058 | "ASUS PR-DLS ACPI BIOS Revision 1010"), |
| 1059 | DMI_MATCH(DMI_BIOS_DATE, "03/21/2003") |
| 1060 | }, |
| 1061 | }, |
Andrey Panin | aea0014 | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 1062 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1063 | .callback = disable_acpi_pci, |
| 1064 | .ident = "Acer TravelMate 36x Laptop", |
| 1065 | .matches = { |
| 1066 | DMI_MATCH(DMI_SYS_VENDOR, "Acer"), |
| 1067 | DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 360"), |
| 1068 | }, |
| 1069 | }, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1070 | {} |
Andrey Panin | aea0014 | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 1071 | }; |
| 1072 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1073 | #endif /* __i386__ */ |
Andrey Panin | aea0014 | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 1074 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1075 | /* |
| 1076 | * acpi_boot_table_init() and acpi_boot_init() |
| 1077 | * called from setup_arch(), always. |
| 1078 | * 1. checksums all tables |
| 1079 | * 2. enumerates lapics |
| 1080 | * 3. enumerates io-apics |
| 1081 | * |
| 1082 | * acpi_table_init() is separate to allow reading SRAT without |
| 1083 | * other side effects. |
| 1084 | * |
| 1085 | * side effects of acpi_boot_init: |
| 1086 | * acpi_lapic = 1 if LAPIC found |
| 1087 | * acpi_ioapic = 1 if IOAPIC found |
| 1088 | * if (acpi_lapic && acpi_ioapic) smp_found_config = 1; |
| 1089 | * if acpi_blacklisted() acpi_disabled = 1; |
| 1090 | * acpi_irq_model=... |
| 1091 | * ... |
| 1092 | * |
| 1093 | * return value: (currently ignored) |
| 1094 | * 0: success |
| 1095 | * !0: failure |
| 1096 | */ |
| 1097 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1098 | int __init acpi_boot_table_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1099 | { |
| 1100 | int error; |
| 1101 | |
Andrey Panin | aea0014 | 2005-06-25 14:54:42 -0700 | [diff] [blame] | 1102 | #ifdef __i386__ |
| 1103 | dmi_check_system(acpi_dmi_table); |
| 1104 | #endif |
| 1105 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1106 | /* |
| 1107 | * If acpi_disabled, bail out |
| 1108 | * One exception: acpi=ht continues far enough to enumerate LAPICs |
| 1109 | */ |
| 1110 | if (acpi_disabled && !acpi_ht) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1111 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1112 | |
| 1113 | /* |
| 1114 | * Initialize the ACPI boot-time table parser. |
| 1115 | */ |
| 1116 | error = acpi_table_init(); |
| 1117 | if (error) { |
| 1118 | disable_acpi(); |
| 1119 | return error; |
| 1120 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1121 | |
| 1122 | acpi_table_parse(ACPI_BOOT, acpi_parse_sbf); |
| 1123 | |
| 1124 | /* |
| 1125 | * blacklist may disable ACPI entirely |
| 1126 | */ |
| 1127 | error = acpi_blacklisted(); |
| 1128 | if (error) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1129 | if (acpi_force) { |
| 1130 | printk(KERN_WARNING PREFIX "acpi=force override\n"); |
| 1131 | } else { |
| 1132 | printk(KERN_WARNING PREFIX "Disabling ACPI support\n"); |
| 1133 | disable_acpi(); |
| 1134 | return error; |
| 1135 | } |
| 1136 | } |
| 1137 | |
| 1138 | return 0; |
| 1139 | } |
| 1140 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1141 | int __init acpi_boot_init(void) |
| 1142 | { |
| 1143 | /* |
| 1144 | * If acpi_disabled, bail out |
| 1145 | * One exception: acpi=ht continues far enough to enumerate LAPICs |
| 1146 | */ |
| 1147 | if (acpi_disabled && !acpi_ht) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1148 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1149 | |
| 1150 | acpi_table_parse(ACPI_BOOT, acpi_parse_sbf); |
| 1151 | |
| 1152 | /* |
| 1153 | * set sci_int and PM timer address |
| 1154 | */ |
| 1155 | acpi_table_parse(ACPI_FADT, acpi_parse_fadt); |
| 1156 | |
| 1157 | /* |
| 1158 | * Process the Multiple APIC Description Table (MADT), if present |
| 1159 | */ |
| 1160 | acpi_process_madt(); |
| 1161 | |
| 1162 | acpi_table_parse(ACPI_HPET, acpi_parse_hpet); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1163 | |
| 1164 | return 0; |
| 1165 | } |
Rusty Russell | 1a3f239 | 2006-09-26 10:52:32 +0200 | [diff] [blame^] | 1166 | |
| 1167 | static int __init parse_acpi(char *arg) |
| 1168 | { |
| 1169 | if (!arg) |
| 1170 | return -EINVAL; |
| 1171 | |
| 1172 | /* "acpi=off" disables both ACPI table parsing and interpreter */ |
| 1173 | if (strcmp(arg, "off") == 0) { |
| 1174 | disable_acpi(); |
| 1175 | } |
| 1176 | /* acpi=force to over-ride black-list */ |
| 1177 | else if (strcmp(arg, "force") == 0) { |
| 1178 | acpi_force = 1; |
| 1179 | acpi_ht = 1; |
| 1180 | acpi_disabled = 0; |
| 1181 | } |
| 1182 | /* acpi=strict disables out-of-spec workarounds */ |
| 1183 | else if (strcmp(arg, "strict") == 0) { |
| 1184 | acpi_strict = 1; |
| 1185 | } |
| 1186 | /* Limit ACPI just to boot-time to enable HT */ |
| 1187 | else if (strcmp(arg, "ht") == 0) { |
| 1188 | if (!acpi_force) |
| 1189 | disable_acpi(); |
| 1190 | acpi_ht = 1; |
| 1191 | } |
| 1192 | /* "acpi=noirq" disables ACPI interrupt routing */ |
| 1193 | else if (strcmp(arg, "noirq") == 0) { |
| 1194 | acpi_noirq_set(); |
| 1195 | } else { |
| 1196 | /* Core will printk when we return error. */ |
| 1197 | return -EINVAL; |
| 1198 | } |
| 1199 | return 0; |
| 1200 | } |
| 1201 | early_param("acpi", parse_acpi); |
| 1202 | |
| 1203 | /* FIXME: Using pci= for an ACPI parameter is a travesty. */ |
| 1204 | static int __init parse_pci(char *arg) |
| 1205 | { |
| 1206 | if (arg && strcmp(arg, "noacpi") == 0) |
| 1207 | acpi_disable_pci(); |
| 1208 | return 0; |
| 1209 | } |
| 1210 | early_param("pci", parse_pci); |
| 1211 | |
| 1212 | #ifdef CONFIG_X86_IO_APIC |
| 1213 | static int __init parse_acpi_skip_timer_override(char *arg) |
| 1214 | { |
| 1215 | acpi_skip_timer_override = 1; |
| 1216 | return 0; |
| 1217 | } |
| 1218 | early_param("acpi_skip_timer_override", parse_acpi_skip_timer_override); |
| 1219 | #endif /* CONFIG_X86_IO_APIC */ |
| 1220 | |
| 1221 | static int __init setup_acpi_sci(char *s) |
| 1222 | { |
| 1223 | if (!s) |
| 1224 | return -EINVAL; |
| 1225 | if (!strcmp(s, "edge")) |
| 1226 | acpi_sci_flags.trigger = 1; |
| 1227 | else if (!strcmp(s, "level")) |
| 1228 | acpi_sci_flags.trigger = 3; |
| 1229 | else if (!strcmp(s, "high")) |
| 1230 | acpi_sci_flags.polarity = 1; |
| 1231 | else if (!strcmp(s, "low")) |
| 1232 | acpi_sci_flags.polarity = 3; |
| 1233 | else |
| 1234 | return -EINVAL; |
| 1235 | return 0; |
| 1236 | } |
| 1237 | early_param("acpi_sci", setup_acpi_sci); |