Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * acpi.c - Architecture-Specific Low-Level ACPI Support |
| 3 | * |
| 4 | * Copyright (C) 1999 VA Linux Systems |
| 5 | * Copyright (C) 1999,2000 Walt Drummond <drummond@valinux.com> |
| 6 | * Copyright (C) 2000, 2002-2003 Hewlett-Packard Co. |
| 7 | * David Mosberger-Tang <davidm@hpl.hp.com> |
| 8 | * Copyright (C) 2000 Intel Corp. |
| 9 | * Copyright (C) 2000,2001 J.I. Lee <jung-ik.lee@intel.com> |
| 10 | * Copyright (C) 2001 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com> |
| 11 | * Copyright (C) 2001 Jenna Hall <jenna.s.hall@intel.com> |
| 12 | * Copyright (C) 2001 Takayoshi Kochi <t-kochi@bq.jp.nec.com> |
| 13 | * Copyright (C) 2002 Erich Focht <efocht@ess.nec.de> |
Ashok Raj | 55e59c5 | 2005-03-31 22:51:10 -0500 | [diff] [blame] | 14 | * Copyright (C) 2004 Ashok Raj <ashok.raj@intel.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | * |
| 16 | * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 17 | * |
| 18 | * This program is free software; you can redistribute it and/or modify |
| 19 | * it under the terms of the GNU General Public License as published by |
| 20 | * the Free Software Foundation; either version 2 of the License, or |
| 21 | * (at your option) any later version. |
| 22 | * |
| 23 | * This program is distributed in the hope that it will be useful, |
| 24 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 25 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 26 | * GNU General Public License for more details. |
| 27 | * |
| 28 | * You should have received a copy of the GNU General Public License |
| 29 | * along with this program; if not, write to the Free Software |
| 30 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 31 | * |
| 32 | * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 33 | */ |
| 34 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include <linux/module.h> |
| 36 | #include <linux/init.h> |
| 37 | #include <linux/kernel.h> |
| 38 | #include <linux/sched.h> |
| 39 | #include <linux/smp.h> |
| 40 | #include <linux/string.h> |
| 41 | #include <linux/types.h> |
| 42 | #include <linux/irq.h> |
| 43 | #include <linux/acpi.h> |
| 44 | #include <linux/efi.h> |
| 45 | #include <linux/mmzone.h> |
| 46 | #include <linux/nodemask.h> |
| 47 | #include <asm/io.h> |
| 48 | #include <asm/iosapic.h> |
| 49 | #include <asm/machvec.h> |
| 50 | #include <asm/page.h> |
| 51 | #include <asm/system.h> |
| 52 | #include <asm/numa.h> |
| 53 | #include <asm/sal.h> |
| 54 | #include <asm/cyclone.h> |
| 55 | |
| 56 | #define BAD_MADT_ENTRY(entry, end) ( \ |
| 57 | (!entry) || (unsigned long)entry + sizeof(*entry) > end || \ |
Starikovskiy, Alexey Y | df6fd31 | 2006-08-18 11:23:00 -0400 | [diff] [blame] | 58 | ((acpi_table_entry_header *)entry)->length < sizeof(*entry)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | |
| 60 | #define PREFIX "ACPI: " |
| 61 | |
| 62 | void (*pm_idle) (void); |
| 63 | EXPORT_SYMBOL(pm_idle); |
| 64 | void (*pm_power_off) (void); |
| 65 | EXPORT_SYMBOL(pm_power_off); |
| 66 | |
| 67 | unsigned char acpi_kbd_controller_present = 1; |
| 68 | unsigned char acpi_legacy_devices; |
| 69 | |
Ashok Raj | 55e59c5 | 2005-03-31 22:51:10 -0500 | [diff] [blame] | 70 | unsigned int acpi_cpei_override; |
| 71 | unsigned int acpi_cpei_phys_cpuid; |
| 72 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | #define MAX_SAPICS 256 |
MAEDA Naoaki | 702c7e7 | 2005-08-08 01:09:00 -0400 | [diff] [blame] | 74 | u16 ia64_acpiid_to_sapicid[MAX_SAPICS] = {[0 ... MAX_SAPICS - 1] = -1 }; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 75 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | EXPORT_SYMBOL(ia64_acpiid_to_sapicid); |
| 77 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 78 | const char *acpi_get_sysname(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | { |
| 80 | #ifdef CONFIG_IA64_GENERIC |
| 81 | unsigned long rsdp_phys; |
| 82 | struct acpi20_table_rsdp *rsdp; |
| 83 | struct acpi_table_xsdt *xsdt; |
| 84 | struct acpi_table_header *hdr; |
| 85 | |
| 86 | rsdp_phys = acpi_find_rsdp(); |
| 87 | if (!rsdp_phys) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 88 | printk(KERN_ERR |
| 89 | "ACPI 2.0 RSDP not found, default to \"dig\"\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | return "dig"; |
| 91 | } |
| 92 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 93 | rsdp = (struct acpi20_table_rsdp *)__va(rsdp_phys); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | if (strncmp(rsdp->signature, RSDP_SIG, sizeof(RSDP_SIG) - 1)) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 95 | printk(KERN_ERR |
| 96 | "ACPI 2.0 RSDP signature incorrect, default to \"dig\"\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | return "dig"; |
| 98 | } |
| 99 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 100 | xsdt = (struct acpi_table_xsdt *)__va(rsdp->xsdt_address); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | hdr = &xsdt->header; |
| 102 | if (strncmp(hdr->signature, XSDT_SIG, sizeof(XSDT_SIG) - 1)) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 103 | printk(KERN_ERR |
| 104 | "ACPI 2.0 XSDT signature incorrect, default to \"dig\"\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | return "dig"; |
| 106 | } |
| 107 | |
| 108 | if (!strcmp(hdr->oem_id, "HP")) { |
| 109 | return "hpzx1"; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 110 | } else if (!strcmp(hdr->oem_id, "SGI")) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | return "sn2"; |
| 112 | } |
| 113 | |
| 114 | return "dig"; |
| 115 | #else |
| 116 | # if defined (CONFIG_IA64_HP_SIM) |
| 117 | return "hpsim"; |
| 118 | # elif defined (CONFIG_IA64_HP_ZX1) |
| 119 | return "hpzx1"; |
| 120 | # elif defined (CONFIG_IA64_HP_ZX1_SWIOTLB) |
| 121 | return "hpzx1_swiotlb"; |
| 122 | # elif defined (CONFIG_IA64_SGI_SN2) |
| 123 | return "sn2"; |
| 124 | # elif defined (CONFIG_IA64_DIG) |
| 125 | return "dig"; |
| 126 | # else |
| 127 | # error Unknown platform. Fix acpi.c. |
| 128 | # endif |
| 129 | #endif |
| 130 | } |
| 131 | |
Len Brown | 888ba6c | 2005-08-24 12:07:20 -0400 | [diff] [blame] | 132 | #ifdef CONFIG_ACPI |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | |
| 134 | #define ACPI_MAX_PLATFORM_INTERRUPTS 256 |
| 135 | |
| 136 | /* Array to record platform interrupt vectors for generic interrupt routing. */ |
| 137 | int platform_intr_list[ACPI_MAX_PLATFORM_INTERRUPTS] = { |
| 138 | [0 ... ACPI_MAX_PLATFORM_INTERRUPTS - 1] = -1 |
| 139 | }; |
| 140 | |
| 141 | enum acpi_irq_model_id acpi_irq_model = ACPI_IRQ_MODEL_IOSAPIC; |
| 142 | |
| 143 | /* |
| 144 | * Interrupt routing API for device drivers. Provides interrupt vector for |
| 145 | * a generic platform event. Currently only CPEI is implemented. |
| 146 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 147 | int acpi_request_vector(u32 int_type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | { |
| 149 | int vector = -1; |
| 150 | |
| 151 | if (int_type < ACPI_MAX_PLATFORM_INTERRUPTS) { |
| 152 | /* corrected platform error interrupt */ |
| 153 | vector = platform_intr_list[int_type]; |
| 154 | } else |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 155 | printk(KERN_ERR |
| 156 | "acpi_request_vector(): invalid interrupt type\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | return vector; |
| 158 | } |
| 159 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 160 | char *__acpi_map_table(unsigned long phys_addr, unsigned long size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | { |
| 162 | return __va(phys_addr); |
| 163 | } |
| 164 | |
| 165 | /* -------------------------------------------------------------------------- |
| 166 | Boot-time Table Parsing |
| 167 | -------------------------------------------------------------------------- */ |
| 168 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 169 | static int total_cpus __initdata; |
| 170 | static int available_cpus __initdata; |
| 171 | struct acpi_table_madt *acpi_madt __initdata; |
| 172 | static u8 has_8259; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | |
| 174 | static int __init |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 175 | acpi_parse_lapic_addr_ovr(acpi_table_entry_header * header, |
| 176 | const unsigned long end) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | { |
| 178 | struct acpi_table_lapic_addr_ovr *lapic; |
| 179 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 180 | lapic = (struct acpi_table_lapic_addr_ovr *)header; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | |
| 182 | if (BAD_MADT_ENTRY(lapic, end)) |
| 183 | return -EINVAL; |
| 184 | |
| 185 | if (lapic->address) { |
| 186 | iounmap(ipi_base_addr); |
| 187 | ipi_base_addr = ioremap(lapic->address, 0); |
| 188 | } |
| 189 | return 0; |
| 190 | } |
| 191 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | static int __init |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 193 | acpi_parse_lsapic(acpi_table_entry_header * header, const unsigned long end) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | { |
| 195 | struct acpi_table_lsapic *lsapic; |
| 196 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 197 | lsapic = (struct acpi_table_lsapic *)header; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | |
| 199 | if (BAD_MADT_ENTRY(lsapic, end)) |
| 200 | return -EINVAL; |
| 201 | |
| 202 | if (lsapic->flags.enabled) { |
| 203 | #ifdef CONFIG_SMP |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 204 | smp_boot_data.cpu_phys_id[available_cpus] = |
| 205 | (lsapic->id << 8) | lsapic->eid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | #endif |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 207 | ia64_acpiid_to_sapicid[lsapic->acpi_id] = |
| 208 | (lsapic->id << 8) | lsapic->eid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | ++available_cpus; |
| 210 | } |
| 211 | |
| 212 | total_cpus++; |
| 213 | return 0; |
| 214 | } |
| 215 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | static int __init |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 217 | 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] | 218 | { |
| 219 | struct acpi_table_lapic_nmi *lacpi_nmi; |
| 220 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 221 | lacpi_nmi = (struct acpi_table_lapic_nmi *)header; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | |
| 223 | if (BAD_MADT_ENTRY(lacpi_nmi, end)) |
| 224 | return -EINVAL; |
| 225 | |
| 226 | /* TBD: Support lapic_nmi entries */ |
| 227 | return 0; |
| 228 | } |
| 229 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | static int __init |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 231 | acpi_parse_iosapic(acpi_table_entry_header * header, const unsigned long end) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | { |
| 233 | struct acpi_table_iosapic *iosapic; |
| 234 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 235 | iosapic = (struct acpi_table_iosapic *)header; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | |
| 237 | if (BAD_MADT_ENTRY(iosapic, end)) |
| 238 | return -EINVAL; |
| 239 | |
Kenji Kaneshige | 0e888ad | 2005-04-28 00:25:58 -0700 | [diff] [blame] | 240 | return iosapic_init(iosapic->address, iosapic->global_irq_base); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | } |
| 242 | |
Len Brown | 5810452 | 2006-05-13 01:12:15 -0400 | [diff] [blame] | 243 | static unsigned int __initdata acpi_madt_rev; |
| 244 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | static int __init |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 246 | acpi_parse_plat_int_src(acpi_table_entry_header * header, |
| 247 | const unsigned long end) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | { |
| 249 | struct acpi_table_plat_int_src *plintsrc; |
| 250 | int vector; |
| 251 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 252 | plintsrc = (struct acpi_table_plat_int_src *)header; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | |
| 254 | if (BAD_MADT_ENTRY(plintsrc, end)) |
| 255 | return -EINVAL; |
| 256 | |
| 257 | /* |
| 258 | * Get vector assignment for this interrupt, set attributes, |
| 259 | * and program the IOSAPIC routing table. |
| 260 | */ |
| 261 | vector = iosapic_register_platform_intr(plintsrc->type, |
| 262 | plintsrc->global_irq, |
| 263 | plintsrc->iosapic_vector, |
| 264 | plintsrc->eid, |
| 265 | plintsrc->id, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 266 | (plintsrc->flags.polarity == |
| 267 | 1) ? IOSAPIC_POL_HIGH : |
| 268 | IOSAPIC_POL_LOW, |
| 269 | (plintsrc->flags.trigger == |
| 270 | 1) ? IOSAPIC_EDGE : |
| 271 | IOSAPIC_LEVEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | |
| 273 | platform_intr_list[plintsrc->type] = vector; |
Ashok Raj | 55e59c5 | 2005-03-31 22:51:10 -0500 | [diff] [blame] | 274 | if (acpi_madt_rev > 1) { |
| 275 | acpi_cpei_override = plintsrc->plint_flags.cpei_override_flag; |
| 276 | } |
| 277 | |
| 278 | /* |
| 279 | * Save the physical id, so we can check when its being removed |
| 280 | */ |
| 281 | acpi_cpei_phys_cpuid = ((plintsrc->id << 8) | (plintsrc->eid)) & 0xffff; |
| 282 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | return 0; |
| 284 | } |
| 285 | |
Ashok Raj | b88e926 | 2006-01-19 16:18:47 -0800 | [diff] [blame] | 286 | #ifdef CONFIG_HOTPLUG_CPU |
Ashok Raj | 55e59c5 | 2005-03-31 22:51:10 -0500 | [diff] [blame] | 287 | unsigned int can_cpei_retarget(void) |
| 288 | { |
| 289 | extern int cpe_vector; |
Ashok Raj | ff74190 | 2005-11-11 14:32:40 -0800 | [diff] [blame] | 290 | extern unsigned int force_cpei_retarget; |
Ashok Raj | 55e59c5 | 2005-03-31 22:51:10 -0500 | [diff] [blame] | 291 | |
| 292 | /* |
| 293 | * Only if CPEI is supported and the override flag |
| 294 | * is present, otherwise return that its re-targettable |
| 295 | * if we are in polling mode. |
| 296 | */ |
Ashok Raj | ff74190 | 2005-11-11 14:32:40 -0800 | [diff] [blame] | 297 | if (cpe_vector > 0) { |
| 298 | if (acpi_cpei_override || force_cpei_retarget) |
| 299 | return 1; |
| 300 | else |
| 301 | return 0; |
| 302 | } |
| 303 | return 1; |
Ashok Raj | 55e59c5 | 2005-03-31 22:51:10 -0500 | [diff] [blame] | 304 | } |
| 305 | |
| 306 | unsigned int is_cpu_cpei_target(unsigned int cpu) |
| 307 | { |
| 308 | unsigned int logical_id; |
| 309 | |
| 310 | logical_id = cpu_logical_id(acpi_cpei_phys_cpuid); |
| 311 | |
| 312 | if (logical_id == cpu) |
| 313 | return 1; |
| 314 | else |
| 315 | return 0; |
| 316 | } |
| 317 | |
| 318 | void set_cpei_target_cpu(unsigned int cpu) |
| 319 | { |
| 320 | acpi_cpei_phys_cpuid = cpu_physical_id(cpu); |
| 321 | } |
Ashok Raj | b88e926 | 2006-01-19 16:18:47 -0800 | [diff] [blame] | 322 | #endif |
Ashok Raj | 55e59c5 | 2005-03-31 22:51:10 -0500 | [diff] [blame] | 323 | |
| 324 | unsigned int get_cpei_target_cpu(void) |
| 325 | { |
| 326 | return acpi_cpei_phys_cpuid; |
| 327 | } |
| 328 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | static int __init |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 330 | acpi_parse_int_src_ovr(acpi_table_entry_header * header, |
| 331 | const unsigned long end) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | { |
| 333 | struct acpi_table_int_src_ovr *p; |
| 334 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 335 | p = (struct acpi_table_int_src_ovr *)header; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | |
| 337 | if (BAD_MADT_ENTRY(p, end)) |
| 338 | return -EINVAL; |
| 339 | |
| 340 | iosapic_override_isa_irq(p->bus_irq, p->global_irq, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 341 | (p->flags.polarity == |
| 342 | 1) ? IOSAPIC_POL_HIGH : IOSAPIC_POL_LOW, |
| 343 | (p->flags.trigger == |
| 344 | 1) ? IOSAPIC_EDGE : IOSAPIC_LEVEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | return 0; |
| 346 | } |
| 347 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | static int __init |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 349 | 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] | 350 | { |
| 351 | struct acpi_table_nmi_src *nmi_src; |
| 352 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 353 | nmi_src = (struct acpi_table_nmi_src *)header; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | |
| 355 | if (BAD_MADT_ENTRY(nmi_src, end)) |
| 356 | return -EINVAL; |
| 357 | |
| 358 | /* TBD: Support nimsrc entries */ |
| 359 | return 0; |
| 360 | } |
| 361 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 362 | static void __init acpi_madt_oem_check(char *oem_id, char *oem_table_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 364 | if (!strncmp(oem_id, "IBM", 3) && (!strncmp(oem_table_id, "SERMOW", 6))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | |
| 366 | /* |
| 367 | * Unfortunately ITC_DRIFT is not yet part of the |
| 368 | * official SAL spec, so the ITC_DRIFT bit is not |
| 369 | * set by the BIOS on this hardware. |
| 370 | */ |
| 371 | sal_platform_features |= IA64_SAL_PLATFORM_FEATURE_ITC_DRIFT; |
| 372 | |
| 373 | cyclone_setup(); |
| 374 | } |
| 375 | } |
| 376 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 377 | 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] | 378 | { |
| 379 | if (!phys_addr || !size) |
| 380 | return -EINVAL; |
| 381 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 382 | acpi_madt = (struct acpi_table_madt *)__va(phys_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | |
Ashok Raj | 55e59c5 | 2005-03-31 22:51:10 -0500 | [diff] [blame] | 384 | acpi_madt_rev = acpi_madt->header.revision; |
| 385 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | /* remember the value for reference after free_initmem() */ |
| 387 | #ifdef CONFIG_ITANIUM |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 388 | has_8259 = 1; /* Firmware on old Itanium systems is broken */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | #else |
| 390 | has_8259 = acpi_madt->flags.pcat_compat; |
| 391 | #endif |
| 392 | iosapic_system_init(has_8259); |
| 393 | |
| 394 | /* Get base address of IPI Message Block */ |
| 395 | |
| 396 | if (acpi_madt->lapic_address) |
| 397 | ipi_base_addr = ioremap(acpi_madt->lapic_address, 0); |
| 398 | |
| 399 | printk(KERN_INFO PREFIX "Local APIC address %p\n", ipi_base_addr); |
| 400 | |
| 401 | acpi_madt_oem_check(acpi_madt->header.oem_id, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 402 | acpi_madt->header.oem_table_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | |
| 404 | return 0; |
| 405 | } |
| 406 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | #ifdef CONFIG_ACPI_NUMA |
| 408 | |
| 409 | #undef SLIT_DEBUG |
| 410 | |
| 411 | #define PXM_FLAG_LEN ((MAX_PXM_DOMAINS + 1)/32) |
| 412 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 413 | static int __initdata srat_num_cpus; /* number of cpus */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | static u32 __devinitdata pxm_flag[PXM_FLAG_LEN]; |
| 415 | #define pxm_bit_set(bit) (set_bit(bit,(void *)pxm_flag)) |
| 416 | #define pxm_bit_test(bit) (test_bit(bit,(void *)pxm_flag)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | static struct acpi_table_slit __initdata *slit_table; |
| 418 | |
Jack Steiner | 3ad5ef8 | 2006-03-02 16:02:25 -0600 | [diff] [blame] | 419 | static int get_processor_proximity_domain(struct acpi_table_processor_affinity *pa) |
| 420 | { |
| 421 | int pxm; |
| 422 | |
| 423 | pxm = pa->proximity_domain; |
| 424 | if (ia64_platform_is("sn2")) |
| 425 | pxm += pa->reserved[0] << 8; |
| 426 | return pxm; |
| 427 | } |
| 428 | |
| 429 | static int get_memory_proximity_domain(struct acpi_table_memory_affinity *ma) |
| 430 | { |
| 431 | int pxm; |
| 432 | |
| 433 | pxm = ma->proximity_domain; |
| 434 | if (ia64_platform_is("sn2")) |
| 435 | pxm += ma->reserved1[0] << 8; |
| 436 | return pxm; |
| 437 | } |
| 438 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | /* |
| 440 | * ACPI 2.0 SLIT (System Locality Information Table) |
| 441 | * http://devresource.hp.com/devresource/Docs/TechPapers/IA64/slit.pdf |
| 442 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 443 | void __init acpi_numa_slit_init(struct acpi_table_slit *slit) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | { |
| 445 | u32 len; |
| 446 | |
| 447 | len = sizeof(struct acpi_table_header) + 8 |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 448 | + slit->localities * slit->localities; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | if (slit->header.length != len) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 450 | printk(KERN_ERR |
| 451 | "ACPI 2.0 SLIT: size mismatch: %d expected, %d actual\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | len, slit->header.length); |
| 453 | memset(numa_slit, 10, sizeof(numa_slit)); |
| 454 | return; |
| 455 | } |
| 456 | slit_table = slit; |
| 457 | } |
| 458 | |
| 459 | void __init |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 460 | acpi_numa_processor_affinity_init(struct acpi_table_processor_affinity *pa) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | { |
Jack Steiner | 3ad5ef8 | 2006-03-02 16:02:25 -0600 | [diff] [blame] | 462 | int pxm; |
| 463 | |
Kenji Kaneshige | d903cea | 2006-03-15 14:45:11 +0900 | [diff] [blame] | 464 | if (!pa->flags.enabled) |
| 465 | return; |
| 466 | |
Jack Steiner | 3ad5ef8 | 2006-03-02 16:02:25 -0600 | [diff] [blame] | 467 | pxm = get_processor_proximity_domain(pa); |
| 468 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | /* record this node in proximity bitmap */ |
Jack Steiner | 3ad5ef8 | 2006-03-02 16:02:25 -0600 | [diff] [blame] | 470 | pxm_bit_set(pxm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 472 | node_cpuid[srat_num_cpus].phys_id = |
| 473 | (pa->apic_id << 8) | (pa->lsapic_eid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | /* nid should be overridden as logical node id later */ |
Jack Steiner | 3ad5ef8 | 2006-03-02 16:02:25 -0600 | [diff] [blame] | 475 | node_cpuid[srat_num_cpus].nid = pxm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | srat_num_cpus++; |
| 477 | } |
| 478 | |
| 479 | void __init |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 480 | acpi_numa_memory_affinity_init(struct acpi_table_memory_affinity *ma) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | { |
| 482 | unsigned long paddr, size; |
Jack Steiner | 3ad5ef8 | 2006-03-02 16:02:25 -0600 | [diff] [blame] | 483 | int pxm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | struct node_memblk_s *p, *q, *pend; |
| 485 | |
Jack Steiner | 3ad5ef8 | 2006-03-02 16:02:25 -0600 | [diff] [blame] | 486 | pxm = get_memory_proximity_domain(ma); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | |
| 488 | /* fill node memory chunk structure */ |
| 489 | paddr = ma->base_addr_hi; |
| 490 | paddr = (paddr << 32) | ma->base_addr_lo; |
| 491 | size = ma->length_hi; |
| 492 | size = (size << 32) | ma->length_lo; |
| 493 | |
| 494 | /* Ignore disabled entries */ |
| 495 | if (!ma->flags.enabled) |
| 496 | return; |
| 497 | |
| 498 | /* record this node in proximity bitmap */ |
| 499 | pxm_bit_set(pxm); |
| 500 | |
| 501 | /* Insertion sort based on base address */ |
| 502 | pend = &node_memblk[num_node_memblks]; |
| 503 | for (p = &node_memblk[0]; p < pend; p++) { |
| 504 | if (paddr < p->start_paddr) |
| 505 | break; |
| 506 | } |
| 507 | if (p < pend) { |
| 508 | for (q = pend - 1; q >= p; q--) |
| 509 | *(q + 1) = *q; |
| 510 | } |
| 511 | p->start_paddr = paddr; |
| 512 | p->size = size; |
| 513 | p->nid = pxm; |
| 514 | num_node_memblks++; |
| 515 | } |
| 516 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 517 | void __init acpi_numa_arch_fixup(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | { |
| 519 | int i, j, node_from, node_to; |
| 520 | |
| 521 | /* If there's no SRAT, fix the phys_id and mark node 0 online */ |
| 522 | if (srat_num_cpus == 0) { |
| 523 | node_set_online(0); |
| 524 | node_cpuid[0].phys_id = hard_smp_processor_id(); |
| 525 | return; |
| 526 | } |
| 527 | |
| 528 | /* |
| 529 | * MCD - This can probably be dropped now. No need for pxm ID to node ID |
| 530 | * mapping with sparse node numbering iff MAX_PXM_DOMAINS <= MAX_NUMNODES. |
| 531 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | nodes_clear(node_online_map); |
| 533 | for (i = 0; i < MAX_PXM_DOMAINS; i++) { |
| 534 | if (pxm_bit_test(i)) { |
Yasunori Goto | 762834e | 2006-06-23 02:03:19 -0700 | [diff] [blame] | 535 | int nid = acpi_map_pxm_to_node(i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | node_set_online(nid); |
| 537 | } |
| 538 | } |
| 539 | |
| 540 | /* set logical node id in memory chunk structure */ |
| 541 | for (i = 0; i < num_node_memblks; i++) |
Yasunori Goto | 762834e | 2006-06-23 02:03:19 -0700 | [diff] [blame] | 542 | node_memblk[i].nid = pxm_to_node(node_memblk[i].nid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | |
| 544 | /* assign memory bank numbers for each chunk on each node */ |
| 545 | for_each_online_node(i) { |
| 546 | int bank; |
| 547 | |
| 548 | bank = 0; |
| 549 | for (j = 0; j < num_node_memblks; j++) |
| 550 | if (node_memblk[j].nid == i) |
| 551 | node_memblk[j].bank = bank++; |
| 552 | } |
| 553 | |
| 554 | /* set logical node id in cpu structure */ |
| 555 | for (i = 0; i < srat_num_cpus; i++) |
Yasunori Goto | 762834e | 2006-06-23 02:03:19 -0700 | [diff] [blame] | 556 | node_cpuid[i].nid = pxm_to_node(node_cpuid[i].nid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 558 | printk(KERN_INFO "Number of logical nodes in system = %d\n", |
| 559 | num_online_nodes()); |
| 560 | printk(KERN_INFO "Number of memory chunks in system = %d\n", |
| 561 | num_node_memblks); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 563 | if (!slit_table) |
| 564 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | memset(numa_slit, -1, sizeof(numa_slit)); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 566 | for (i = 0; i < slit_table->localities; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | if (!pxm_bit_test(i)) |
| 568 | continue; |
Yasunori Goto | 762834e | 2006-06-23 02:03:19 -0700 | [diff] [blame] | 569 | node_from = pxm_to_node(i); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 570 | for (j = 0; j < slit_table->localities; j++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | if (!pxm_bit_test(j)) |
| 572 | continue; |
Yasunori Goto | 762834e | 2006-06-23 02:03:19 -0700 | [diff] [blame] | 573 | node_to = pxm_to_node(j); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 574 | node_distance(node_from, node_to) = |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 575 | slit_table->entry[i * slit_table->localities + j]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 576 | } |
| 577 | } |
| 578 | |
| 579 | #ifdef SLIT_DEBUG |
| 580 | printk("ACPI 2.0 SLIT locality table:\n"); |
| 581 | for_each_online_node(i) { |
| 582 | for_each_online_node(j) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 583 | printk("%03d ", node_distance(i, j)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 | printk("\n"); |
| 585 | } |
| 586 | #endif |
| 587 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 588 | #endif /* CONFIG_ACPI_NUMA */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 589 | |
Kenji Kaneshige | 1f3a6a1 | 2005-07-28 14:42:00 -0400 | [diff] [blame] | 590 | /* |
| 591 | * success: return IRQ number (>=0) |
| 592 | * failure: return < 0 |
| 593 | */ |
Len Brown | cb65469 | 2005-12-28 02:43:51 -0500 | [diff] [blame] | 594 | int acpi_register_gsi(u32 gsi, int triggering, int polarity) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | { |
| 596 | if (has_8259 && gsi < 16) |
| 597 | return isa_irq_to_vector(gsi); |
| 598 | |
| 599 | return iosapic_register_intr(gsi, |
Len Brown | cb65469 | 2005-12-28 02:43:51 -0500 | [diff] [blame] | 600 | (polarity == |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 601 | ACPI_ACTIVE_HIGH) ? IOSAPIC_POL_HIGH : |
| 602 | IOSAPIC_POL_LOW, |
Len Brown | cb65469 | 2005-12-28 02:43:51 -0500 | [diff] [blame] | 603 | (triggering == |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 604 | ACPI_EDGE_SENSITIVE) ? IOSAPIC_EDGE : |
| 605 | IOSAPIC_LEVEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 607 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | EXPORT_SYMBOL(acpi_register_gsi); |
| 609 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 610 | void acpi_unregister_gsi(u32 gsi) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | { |
| 612 | iosapic_unregister_intr(gsi); |
| 613 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 615 | EXPORT_SYMBOL(acpi_unregister_gsi); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 616 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 617 | static int __init acpi_parse_fadt(unsigned long phys_addr, unsigned long size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 618 | { |
| 619 | struct acpi_table_header *fadt_header; |
Tony Luck | 236ee8c | 2006-06-23 13:49:25 -0700 | [diff] [blame] | 620 | struct fadt_descriptor *fadt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 621 | |
| 622 | if (!phys_addr || !size) |
| 623 | return -EINVAL; |
| 624 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 625 | fadt_header = (struct acpi_table_header *)__va(phys_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 626 | if (fadt_header->revision != 3) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 627 | return -ENODEV; /* Only deal with ACPI 2.0 FADT */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 628 | |
Tony Luck | 236ee8c | 2006-06-23 13:49:25 -0700 | [diff] [blame] | 629 | fadt = (struct fadt_descriptor *)fadt_header; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 630 | |
| 631 | if (!(fadt->iapc_boot_arch & BAF_8042_KEYBOARD_CONTROLLER)) |
| 632 | acpi_kbd_controller_present = 0; |
| 633 | |
| 634 | if (fadt->iapc_boot_arch & BAF_LEGACY_DEVICES) |
| 635 | acpi_legacy_devices = 1; |
| 636 | |
| 637 | acpi_register_gsi(fadt->sci_int, ACPI_LEVEL_SENSITIVE, ACPI_ACTIVE_LOW); |
| 638 | return 0; |
| 639 | } |
| 640 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 641 | unsigned long __init acpi_find_rsdp(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 642 | { |
| 643 | unsigned long rsdp_phys = 0; |
| 644 | |
Bjorn Helgaas | b2c99e3 | 2006-03-26 01:37:08 -0800 | [diff] [blame] | 645 | if (efi.acpi20 != EFI_INVALID_TABLE_ADDR) |
| 646 | rsdp_phys = efi.acpi20; |
| 647 | else if (efi.acpi != EFI_INVALID_TABLE_ADDR) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 648 | printk(KERN_WARNING PREFIX |
| 649 | "v1.0/r0.71 tables no longer supported\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | return rsdp_phys; |
| 651 | } |
| 652 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 653 | int __init acpi_boot_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 654 | { |
| 655 | |
| 656 | /* |
| 657 | * MADT |
| 658 | * ---- |
| 659 | * Parse the Multiple APIC Description Table (MADT), if exists. |
| 660 | * Note that this table provides platform SMP configuration |
| 661 | * information -- the successor to MPS tables. |
| 662 | */ |
| 663 | |
| 664 | if (acpi_table_parse(ACPI_APIC, acpi_parse_madt) < 1) { |
| 665 | printk(KERN_ERR PREFIX "Can't find MADT\n"); |
| 666 | goto skip_madt; |
| 667 | } |
| 668 | |
| 669 | /* Local APIC */ |
| 670 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 671 | if (acpi_table_parse_madt |
| 672 | (ACPI_MADT_LAPIC_ADDR_OVR, acpi_parse_lapic_addr_ovr, 0) < 0) |
| 673 | printk(KERN_ERR PREFIX |
| 674 | "Error parsing LAPIC address override entry\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 675 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 676 | if (acpi_table_parse_madt(ACPI_MADT_LSAPIC, acpi_parse_lsapic, NR_CPUS) |
| 677 | < 1) |
| 678 | printk(KERN_ERR PREFIX |
| 679 | "Error parsing MADT - no LAPIC entries\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 680 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 681 | if (acpi_table_parse_madt(ACPI_MADT_LAPIC_NMI, acpi_parse_lapic_nmi, 0) |
| 682 | < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 683 | printk(KERN_ERR PREFIX "Error parsing LAPIC NMI entry\n"); |
| 684 | |
| 685 | /* I/O APIC */ |
| 686 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 687 | if (acpi_table_parse_madt |
| 688 | (ACPI_MADT_IOSAPIC, acpi_parse_iosapic, NR_IOSAPICS) < 1) |
| 689 | printk(KERN_ERR PREFIX |
| 690 | "Error parsing MADT - no IOSAPIC entries\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | |
| 692 | /* System-Level Interrupt Routing */ |
| 693 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 694 | if (acpi_table_parse_madt |
| 695 | (ACPI_MADT_PLAT_INT_SRC, acpi_parse_plat_int_src, |
| 696 | ACPI_MAX_PLATFORM_INTERRUPTS) < 0) |
| 697 | printk(KERN_ERR PREFIX |
| 698 | "Error parsing platform interrupt source entry\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 699 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 700 | if (acpi_table_parse_madt |
| 701 | (ACPI_MADT_INT_SRC_OVR, acpi_parse_int_src_ovr, 0) < 0) |
| 702 | printk(KERN_ERR PREFIX |
| 703 | "Error parsing interrupt source overrides entry\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 704 | |
| 705 | if (acpi_table_parse_madt(ACPI_MADT_NMI_SRC, acpi_parse_nmi_src, 0) < 0) |
| 706 | printk(KERN_ERR PREFIX "Error parsing NMI SRC entry\n"); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 707 | skip_madt: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 708 | |
| 709 | /* |
| 710 | * FADT says whether a legacy keyboard controller is present. |
| 711 | * The FADT also contains an SCI_INT line, by which the system |
| 712 | * gets interrupts such as power and sleep buttons. If it's not |
| 713 | * on a Legacy interrupt, it needs to be setup. |
| 714 | */ |
| 715 | if (acpi_table_parse(ACPI_FADT, acpi_parse_fadt) < 1) |
| 716 | printk(KERN_ERR PREFIX "Can't find FADT\n"); |
| 717 | |
| 718 | #ifdef CONFIG_SMP |
| 719 | if (available_cpus == 0) { |
| 720 | printk(KERN_INFO "ACPI: Found 0 CPUS; assuming 1\n"); |
| 721 | printk(KERN_INFO "CPU 0 (0x%04x)", hard_smp_processor_id()); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 722 | smp_boot_data.cpu_phys_id[available_cpus] = |
| 723 | hard_smp_processor_id(); |
| 724 | available_cpus = 1; /* We've got at least one of these, no? */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | } |
| 726 | smp_boot_data.cpu_count = available_cpus; |
| 727 | |
| 728 | smp_build_cpu_map(); |
| 729 | # ifdef CONFIG_ACPI_NUMA |
| 730 | if (srat_num_cpus == 0) { |
| 731 | int cpu, i = 1; |
| 732 | for (cpu = 0; cpu < smp_boot_data.cpu_count; cpu++) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 733 | if (smp_boot_data.cpu_phys_id[cpu] != |
| 734 | hard_smp_processor_id()) |
| 735 | node_cpuid[i++].phys_id = |
| 736 | smp_boot_data.cpu_phys_id[cpu]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 737 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 738 | # endif |
| 739 | #endif |
Tony Luck | 8d7e351 | 2005-07-06 18:18:10 -0700 | [diff] [blame] | 740 | #ifdef CONFIG_ACPI_NUMA |
| 741 | build_cpu_to_node_map(); |
| 742 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 743 | /* Make boot-up look pretty */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 744 | printk(KERN_INFO "%d CPUs available, %d CPUs total\n", available_cpus, |
| 745 | total_cpus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 746 | return 0; |
| 747 | } |
| 748 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 749 | int acpi_gsi_to_irq(u32 gsi, unsigned int *irq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 750 | { |
| 751 | int vector; |
| 752 | |
| 753 | if (has_8259 && gsi < 16) |
| 754 | *irq = isa_irq_to_vector(gsi); |
| 755 | else { |
| 756 | vector = gsi_to_vector(gsi); |
| 757 | if (vector == -1) |
| 758 | return -1; |
| 759 | |
| 760 | *irq = vector; |
| 761 | } |
| 762 | return 0; |
| 763 | } |
| 764 | |
| 765 | /* |
| 766 | * ACPI based hotplug CPU support |
| 767 | */ |
| 768 | #ifdef CONFIG_ACPI_HOTPLUG_CPU |
| 769 | static |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 770 | int acpi_map_cpu2node(acpi_handle handle, int cpu, long physid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 771 | { |
| 772 | #ifdef CONFIG_ACPI_NUMA |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 773 | int pxm_id; |
KAMEZAWA Hiroyuki | 0899298 | 2006-09-25 16:25:21 -0700 | [diff] [blame^] | 774 | int nid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 775 | |
| 776 | pxm_id = acpi_get_pxm(handle); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 777 | /* |
KAMEZAWA Hiroyuki | 0899298 | 2006-09-25 16:25:21 -0700 | [diff] [blame^] | 778 | * We don't have cpu-only-node hotadd. But if the system equips |
| 779 | * SRAT table, pxm is already found and node is ready. |
| 780 | * So, just pxm_to_nid(pxm) is OK. |
| 781 | * This code here is for the system which doesn't have full SRAT |
| 782 | * table for possible cpus. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 783 | */ |
KAMEZAWA Hiroyuki | 0899298 | 2006-09-25 16:25:21 -0700 | [diff] [blame^] | 784 | nid = acpi_map_pxm_to_node(pxm_id); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 785 | node_cpuid[cpu].phys_id = physid; |
KAMEZAWA Hiroyuki | 0899298 | 2006-09-25 16:25:21 -0700 | [diff] [blame^] | 786 | node_cpuid[cpu].nid = nid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 787 | #endif |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 788 | return (0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 789 | } |
| 790 | |
Ashok Raj | a6b14fa | 2006-02-14 15:01:12 -0800 | [diff] [blame] | 791 | int additional_cpus __initdata = -1; |
| 792 | |
| 793 | static __init int setup_additional_cpus(char *s) |
| 794 | { |
| 795 | if (s) |
| 796 | additional_cpus = simple_strtol(s, NULL, 0); |
| 797 | |
| 798 | return 0; |
| 799 | } |
| 800 | |
| 801 | early_param("additional_cpus", setup_additional_cpus); |
| 802 | |
| 803 | /* |
| 804 | * cpu_possible_map should be static, it cannot change as cpu's |
| 805 | * are onlined, or offlined. The reason is per-cpu data-structures |
| 806 | * are allocated by some modules at init time, and dont expect to |
| 807 | * do this dynamically on cpu arrival/departure. |
| 808 | * cpu_present_map on the other hand can change dynamically. |
| 809 | * In case when cpu_hotplug is not compiled, then we resort to current |
| 810 | * behaviour, which is cpu_possible == cpu_present. |
| 811 | * - Ashok Raj |
| 812 | * |
| 813 | * Three ways to find out the number of additional hotplug CPUs: |
| 814 | * - If the BIOS specified disabled CPUs in ACPI/mptables use that. |
| 815 | * - The user can overwrite it with additional_cpus=NUM |
| 816 | * - Otherwise don't reserve additional CPUs. |
| 817 | */ |
| 818 | __init void prefill_possible_map(void) |
| 819 | { |
| 820 | int i; |
| 821 | int possible, disabled_cpus; |
| 822 | |
| 823 | disabled_cpus = total_cpus - available_cpus; |
Ashok Raj | 8f8b1138 | 2006-02-16 14:01:48 -0800 | [diff] [blame] | 824 | |
Ashok Raj | a6b14fa | 2006-02-14 15:01:12 -0800 | [diff] [blame] | 825 | if (additional_cpus == -1) { |
Ashok Raj | 8f8b1138 | 2006-02-16 14:01:48 -0800 | [diff] [blame] | 826 | if (disabled_cpus > 0) |
Ashok Raj | a6b14fa | 2006-02-14 15:01:12 -0800 | [diff] [blame] | 827 | additional_cpus = disabled_cpus; |
Ashok Raj | 8f8b1138 | 2006-02-16 14:01:48 -0800 | [diff] [blame] | 828 | else |
Ashok Raj | a6b14fa | 2006-02-14 15:01:12 -0800 | [diff] [blame] | 829 | additional_cpus = 0; |
Ashok Raj | 8f8b1138 | 2006-02-16 14:01:48 -0800 | [diff] [blame] | 830 | } |
| 831 | |
| 832 | possible = available_cpus + additional_cpus; |
| 833 | |
Ashok Raj | a6b14fa | 2006-02-14 15:01:12 -0800 | [diff] [blame] | 834 | if (possible > NR_CPUS) |
| 835 | possible = NR_CPUS; |
| 836 | |
| 837 | printk(KERN_INFO "SMP: Allowing %d CPUs, %d hotplug CPUs\n", |
Ashok Raj | 8f8b1138 | 2006-02-16 14:01:48 -0800 | [diff] [blame] | 838 | possible, max((possible - available_cpus), 0)); |
Ashok Raj | a6b14fa | 2006-02-14 15:01:12 -0800 | [diff] [blame] | 839 | |
| 840 | for (i = 0; i < possible; i++) |
| 841 | cpu_set(i, cpu_possible_map); |
| 842 | } |
| 843 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 844 | int acpi_map_lsapic(acpi_handle handle, int *pcpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 845 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 846 | struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 847 | union acpi_object *obj; |
| 848 | struct acpi_table_lsapic *lsapic; |
| 849 | cpumask_t tmp_map; |
| 850 | long physid; |
| 851 | int cpu; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 852 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 853 | if (ACPI_FAILURE(acpi_evaluate_object(handle, "_MAT", NULL, &buffer))) |
| 854 | return -EINVAL; |
| 855 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 856 | if (!buffer.length || !buffer.pointer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 857 | return -EINVAL; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 858 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 859 | obj = buffer.pointer; |
| 860 | if (obj->type != ACPI_TYPE_BUFFER || |
| 861 | obj->buffer.length < sizeof(*lsapic)) { |
Len Brown | 02438d8 | 2006-06-30 03:19:10 -0400 | [diff] [blame] | 862 | kfree(buffer.pointer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 863 | return -EINVAL; |
| 864 | } |
| 865 | |
| 866 | lsapic = (struct acpi_table_lsapic *)obj->buffer.pointer; |
| 867 | |
| 868 | if ((lsapic->header.type != ACPI_MADT_LSAPIC) || |
| 869 | (!lsapic->flags.enabled)) { |
Len Brown | 02438d8 | 2006-06-30 03:19:10 -0400 | [diff] [blame] | 870 | kfree(buffer.pointer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 871 | return -EINVAL; |
| 872 | } |
| 873 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 874 | physid = ((lsapic->id << 8) | (lsapic->eid)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 875 | |
Len Brown | 02438d8 | 2006-06-30 03:19:10 -0400 | [diff] [blame] | 876 | kfree(buffer.pointer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 877 | buffer.length = ACPI_ALLOCATE_BUFFER; |
| 878 | buffer.pointer = NULL; |
| 879 | |
| 880 | cpus_complement(tmp_map, cpu_present_map); |
| 881 | cpu = first_cpu(tmp_map); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 882 | if (cpu >= NR_CPUS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 883 | return -EINVAL; |
| 884 | |
| 885 | acpi_map_cpu2node(handle, cpu, physid); |
| 886 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 887 | cpu_set(cpu, cpu_present_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 888 | ia64_cpu_to_sapicid[cpu] = physid; |
| 889 | ia64_acpiid_to_sapicid[lsapic->acpi_id] = ia64_cpu_to_sapicid[cpu]; |
| 890 | |
| 891 | *pcpu = cpu; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 892 | return (0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 893 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 894 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 895 | EXPORT_SYMBOL(acpi_map_lsapic); |
| 896 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 897 | int acpi_unmap_lsapic(int cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 898 | { |
| 899 | int i; |
| 900 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 901 | for (i = 0; i < MAX_SAPICS; i++) { |
| 902 | if (ia64_acpiid_to_sapicid[i] == ia64_cpu_to_sapicid[cpu]) { |
| 903 | ia64_acpiid_to_sapicid[i] = -1; |
| 904 | break; |
| 905 | } |
| 906 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 907 | ia64_cpu_to_sapicid[cpu] = -1; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 908 | cpu_clear(cpu, cpu_present_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 909 | |
| 910 | #ifdef CONFIG_ACPI_NUMA |
| 911 | /* NUMA specific cleanup's */ |
| 912 | #endif |
| 913 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 914 | return (0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 915 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 916 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 917 | EXPORT_SYMBOL(acpi_unmap_lsapic); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 918 | #endif /* CONFIG_ACPI_HOTPLUG_CPU */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 919 | |
| 920 | #ifdef CONFIG_ACPI_NUMA |
Bjorn Helgaas | 650316f | 2005-09-16 11:43:45 -0600 | [diff] [blame] | 921 | static acpi_status __devinit |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 922 | acpi_map_iosapic(acpi_handle handle, u32 depth, void *context, void **ret) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 923 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 924 | struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 925 | union acpi_object *obj; |
| 926 | struct acpi_table_iosapic *iosapic; |
| 927 | unsigned int gsi_base; |
Alex Williamson | bb0fc08 | 2005-03-24 22:58:00 -0700 | [diff] [blame] | 928 | int pxm, node; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 929 | |
| 930 | /* Only care about objects w/ a method that returns the MADT */ |
| 931 | if (ACPI_FAILURE(acpi_evaluate_object(handle, "_MAT", NULL, &buffer))) |
| 932 | return AE_OK; |
| 933 | |
| 934 | if (!buffer.length || !buffer.pointer) |
| 935 | return AE_OK; |
| 936 | |
| 937 | obj = buffer.pointer; |
| 938 | if (obj->type != ACPI_TYPE_BUFFER || |
| 939 | obj->buffer.length < sizeof(*iosapic)) { |
Len Brown | 02438d8 | 2006-06-30 03:19:10 -0400 | [diff] [blame] | 940 | kfree(buffer.pointer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 941 | return AE_OK; |
| 942 | } |
| 943 | |
| 944 | iosapic = (struct acpi_table_iosapic *)obj->buffer.pointer; |
| 945 | |
| 946 | if (iosapic->header.type != ACPI_MADT_IOSAPIC) { |
Len Brown | 02438d8 | 2006-06-30 03:19:10 -0400 | [diff] [blame] | 947 | kfree(buffer.pointer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 948 | return AE_OK; |
| 949 | } |
| 950 | |
| 951 | gsi_base = iosapic->global_irq_base; |
| 952 | |
Len Brown | 02438d8 | 2006-06-30 03:19:10 -0400 | [diff] [blame] | 953 | kfree(buffer.pointer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 954 | |
| 955 | /* |
Alex Williamson | bb0fc08 | 2005-03-24 22:58:00 -0700 | [diff] [blame] | 956 | * OK, it's an IOSAPIC MADT entry, look for a _PXM value to tell |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 957 | * us which node to associate this with. |
| 958 | */ |
Alex Williamson | bb0fc08 | 2005-03-24 22:58:00 -0700 | [diff] [blame] | 959 | pxm = acpi_get_pxm(handle); |
| 960 | if (pxm < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 961 | return AE_OK; |
| 962 | |
Yasunori Goto | 762834e | 2006-06-23 02:03:19 -0700 | [diff] [blame] | 963 | node = pxm_to_node(pxm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 964 | |
| 965 | if (node >= MAX_NUMNODES || !node_online(node) || |
| 966 | cpus_empty(node_to_cpumask(node))) |
| 967 | return AE_OK; |
| 968 | |
| 969 | /* We know a gsi to node mapping! */ |
| 970 | map_iosapic_to_node(gsi_base, node); |
| 971 | return AE_OK; |
| 972 | } |
Bjorn Helgaas | 650316f | 2005-09-16 11:43:45 -0600 | [diff] [blame] | 973 | |
| 974 | static int __init |
| 975 | acpi_map_iosapics (void) |
| 976 | { |
| 977 | acpi_get_devices(NULL, acpi_map_iosapic, NULL, NULL); |
| 978 | return 0; |
| 979 | } |
| 980 | |
| 981 | fs_initcall(acpi_map_iosapics); |
| 982 | #endif /* CONFIG_ACPI_NUMA */ |
Kenji Kaneshige | b1bb248 | 2005-04-28 00:25:58 -0700 | [diff] [blame] | 983 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 984 | 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] | 985 | { |
Kenji Kaneshige | 0e888ad | 2005-04-28 00:25:58 -0700 | [diff] [blame] | 986 | int err; |
| 987 | |
| 988 | if ((err = iosapic_init(phys_addr, gsi_base))) |
| 989 | return err; |
| 990 | |
Peter Chubb | 24b8e0c | 2005-09-15 15:36:35 +1000 | [diff] [blame] | 991 | #ifdef CONFIG_ACPI_NUMA |
Kenji Kaneshige | 0e888ad | 2005-04-28 00:25:58 -0700 | [diff] [blame] | 992 | acpi_map_iosapic(handle, 0, NULL, NULL); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 993 | #endif /* CONFIG_ACPI_NUMA */ |
Kenji Kaneshige | 0e888ad | 2005-04-28 00:25:58 -0700 | [diff] [blame] | 994 | |
| 995 | return 0; |
Kenji Kaneshige | b1bb248 | 2005-04-28 00:25:58 -0700 | [diff] [blame] | 996 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 997 | |
Kenji Kaneshige | b1bb248 | 2005-04-28 00:25:58 -0700 | [diff] [blame] | 998 | EXPORT_SYMBOL(acpi_register_ioapic); |
| 999 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1000 | int acpi_unregister_ioapic(acpi_handle handle, u32 gsi_base) |
Kenji Kaneshige | b1bb248 | 2005-04-28 00:25:58 -0700 | [diff] [blame] | 1001 | { |
Kenji Kaneshige | 0e888ad | 2005-04-28 00:25:58 -0700 | [diff] [blame] | 1002 | return iosapic_remove(gsi_base); |
Kenji Kaneshige | b1bb248 | 2005-04-28 00:25:58 -0700 | [diff] [blame] | 1003 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1004 | |
Kenji Kaneshige | b1bb248 | 2005-04-28 00:25:58 -0700 | [diff] [blame] | 1005 | EXPORT_SYMBOL(acpi_unregister_ioapic); |
| 1006 | |
Len Brown | 888ba6c | 2005-08-24 12:07:20 -0400 | [diff] [blame] | 1007 | #endif /* CONFIG_ACPI */ |