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