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