blob: 24fe7c81e10890941e1c73e0856c371390521875 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Raj55e59c52005-03-31 22:51:10 -050014 * Copyright (C) 2004 Ashok Raj <ashok.raj@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 *
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
35#include <linux/config.h>
36#include <linux/module.h>
37#include <linux/init.h>
38#include <linux/kernel.h>
39#include <linux/sched.h>
40#include <linux/smp.h>
41#include <linux/string.h>
42#include <linux/types.h>
43#include <linux/irq.h>
44#include <linux/acpi.h>
45#include <linux/efi.h>
46#include <linux/mmzone.h>
47#include <linux/nodemask.h>
48#include <asm/io.h>
49#include <asm/iosapic.h>
50#include <asm/machvec.h>
51#include <asm/page.h>
52#include <asm/system.h>
53#include <asm/numa.h>
54#include <asm/sal.h>
55#include <asm/cyclone.h>
56
57#define BAD_MADT_ENTRY(entry, end) ( \
58 (!entry) || (unsigned long)entry + sizeof(*entry) > end || \
59 ((acpi_table_entry_header *)entry)->length != sizeof(*entry))
60
61#define PREFIX "ACPI: "
62
63void (*pm_idle) (void);
64EXPORT_SYMBOL(pm_idle);
65void (*pm_power_off) (void);
66EXPORT_SYMBOL(pm_power_off);
67
68unsigned char acpi_kbd_controller_present = 1;
69unsigned char acpi_legacy_devices;
70
Ashok Raj55e59c52005-03-31 22:51:10 -050071static unsigned int __initdata acpi_madt_rev;
72
73unsigned int acpi_cpei_override;
74unsigned int acpi_cpei_phys_cpuid;
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#define MAX_SAPICS 256
MAEDA Naoaki702c7e72005-08-08 01:09:00 -040077u16 ia64_acpiid_to_sapicid[MAX_SAPICS] = {[0 ... MAX_SAPICS - 1] = -1 };
Len Brown4be44fc2005-08-05 00:44:28 -040078
Linus Torvalds1da177e2005-04-16 15:20:36 -070079EXPORT_SYMBOL(ia64_acpiid_to_sapicid);
80
Len Brown4be44fc2005-08-05 00:44:28 -040081const char *acpi_get_sysname(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082{
83#ifdef CONFIG_IA64_GENERIC
84 unsigned long rsdp_phys;
85 struct acpi20_table_rsdp *rsdp;
86 struct acpi_table_xsdt *xsdt;
87 struct acpi_table_header *hdr;
88
89 rsdp_phys = acpi_find_rsdp();
90 if (!rsdp_phys) {
Len Brown4be44fc2005-08-05 00:44:28 -040091 printk(KERN_ERR
92 "ACPI 2.0 RSDP not found, default to \"dig\"\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 return "dig";
94 }
95
Len Brown4be44fc2005-08-05 00:44:28 -040096 rsdp = (struct acpi20_table_rsdp *)__va(rsdp_phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 if (strncmp(rsdp->signature, RSDP_SIG, sizeof(RSDP_SIG) - 1)) {
Len Brown4be44fc2005-08-05 00:44:28 -040098 printk(KERN_ERR
99 "ACPI 2.0 RSDP signature incorrect, default to \"dig\"\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 return "dig";
101 }
102
Len Brown4be44fc2005-08-05 00:44:28 -0400103 xsdt = (struct acpi_table_xsdt *)__va(rsdp->xsdt_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 hdr = &xsdt->header;
105 if (strncmp(hdr->signature, XSDT_SIG, sizeof(XSDT_SIG) - 1)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400106 printk(KERN_ERR
107 "ACPI 2.0 XSDT signature incorrect, default to \"dig\"\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 return "dig";
109 }
110
111 if (!strcmp(hdr->oem_id, "HP")) {
112 return "hpzx1";
Len Brown4be44fc2005-08-05 00:44:28 -0400113 } else if (!strcmp(hdr->oem_id, "SGI")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 return "sn2";
115 }
116
117 return "dig";
118#else
119# if defined (CONFIG_IA64_HP_SIM)
120 return "hpsim";
121# elif defined (CONFIG_IA64_HP_ZX1)
122 return "hpzx1";
123# elif defined (CONFIG_IA64_HP_ZX1_SWIOTLB)
124 return "hpzx1_swiotlb";
125# elif defined (CONFIG_IA64_SGI_SN2)
126 return "sn2";
127# elif defined (CONFIG_IA64_DIG)
128 return "dig";
129# else
130# error Unknown platform. Fix acpi.c.
131# endif
132#endif
133}
134
Len Brown888ba6c2005-08-24 12:07:20 -0400135#ifdef CONFIG_ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137#define ACPI_MAX_PLATFORM_INTERRUPTS 256
138
139/* Array to record platform interrupt vectors for generic interrupt routing. */
140int platform_intr_list[ACPI_MAX_PLATFORM_INTERRUPTS] = {
141 [0 ... ACPI_MAX_PLATFORM_INTERRUPTS - 1] = -1
142};
143
144enum acpi_irq_model_id acpi_irq_model = ACPI_IRQ_MODEL_IOSAPIC;
145
146/*
147 * Interrupt routing API for device drivers. Provides interrupt vector for
148 * a generic platform event. Currently only CPEI is implemented.
149 */
Len Brown4be44fc2005-08-05 00:44:28 -0400150int acpi_request_vector(u32 int_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
152 int vector = -1;
153
154 if (int_type < ACPI_MAX_PLATFORM_INTERRUPTS) {
155 /* corrected platform error interrupt */
156 vector = platform_intr_list[int_type];
157 } else
Len Brown4be44fc2005-08-05 00:44:28 -0400158 printk(KERN_ERR
159 "acpi_request_vector(): invalid interrupt type\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 return vector;
161}
162
Len Brown4be44fc2005-08-05 00:44:28 -0400163char *__acpi_map_table(unsigned long phys_addr, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
165 return __va(phys_addr);
166}
167
168/* --------------------------------------------------------------------------
169 Boot-time Table Parsing
170 -------------------------------------------------------------------------- */
171
Len Brown4be44fc2005-08-05 00:44:28 -0400172static int total_cpus __initdata;
173static int available_cpus __initdata;
174struct acpi_table_madt *acpi_madt __initdata;
175static u8 has_8259;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
177static int __init
Len Brown4be44fc2005-08-05 00:44:28 -0400178acpi_parse_lapic_addr_ovr(acpi_table_entry_header * header,
179 const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180{
181 struct acpi_table_lapic_addr_ovr *lapic;
182
Len Brown4be44fc2005-08-05 00:44:28 -0400183 lapic = (struct acpi_table_lapic_addr_ovr *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
185 if (BAD_MADT_ENTRY(lapic, end))
186 return -EINVAL;
187
188 if (lapic->address) {
189 iounmap(ipi_base_addr);
190 ipi_base_addr = ioremap(lapic->address, 0);
191 }
192 return 0;
193}
194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195static int __init
Len Brown4be44fc2005-08-05 00:44:28 -0400196acpi_parse_lsapic(acpi_table_entry_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197{
198 struct acpi_table_lsapic *lsapic;
199
Len Brown4be44fc2005-08-05 00:44:28 -0400200 lsapic = (struct acpi_table_lsapic *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
202 if (BAD_MADT_ENTRY(lsapic, end))
203 return -EINVAL;
204
205 if (lsapic->flags.enabled) {
206#ifdef CONFIG_SMP
Len Brown4be44fc2005-08-05 00:44:28 -0400207 smp_boot_data.cpu_phys_id[available_cpus] =
208 (lsapic->id << 8) | lsapic->eid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209#endif
Len Brown4be44fc2005-08-05 00:44:28 -0400210 ia64_acpiid_to_sapicid[lsapic->acpi_id] =
211 (lsapic->id << 8) | lsapic->eid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 ++available_cpus;
213 }
214
215 total_cpus++;
216 return 0;
217}
218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219static int __init
Len Brown4be44fc2005-08-05 00:44:28 -0400220acpi_parse_lapic_nmi(acpi_table_entry_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221{
222 struct acpi_table_lapic_nmi *lacpi_nmi;
223
Len Brown4be44fc2005-08-05 00:44:28 -0400224 lacpi_nmi = (struct acpi_table_lapic_nmi *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
226 if (BAD_MADT_ENTRY(lacpi_nmi, end))
227 return -EINVAL;
228
229 /* TBD: Support lapic_nmi entries */
230 return 0;
231}
232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233static int __init
Len Brown4be44fc2005-08-05 00:44:28 -0400234acpi_parse_iosapic(acpi_table_entry_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235{
236 struct acpi_table_iosapic *iosapic;
237
Len Brown4be44fc2005-08-05 00:44:28 -0400238 iosapic = (struct acpi_table_iosapic *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
240 if (BAD_MADT_ENTRY(iosapic, end))
241 return -EINVAL;
242
Kenji Kaneshige0e888ad2005-04-28 00:25:58 -0700243 return iosapic_init(iosapic->address, iosapic->global_irq_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244}
245
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246static int __init
Len Brown4be44fc2005-08-05 00:44:28 -0400247acpi_parse_plat_int_src(acpi_table_entry_header * header,
248 const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249{
250 struct acpi_table_plat_int_src *plintsrc;
251 int vector;
252
Len Brown4be44fc2005-08-05 00:44:28 -0400253 plintsrc = (struct acpi_table_plat_int_src *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
255 if (BAD_MADT_ENTRY(plintsrc, end))
256 return -EINVAL;
257
258 /*
259 * Get vector assignment for this interrupt, set attributes,
260 * and program the IOSAPIC routing table.
261 */
262 vector = iosapic_register_platform_intr(plintsrc->type,
263 plintsrc->global_irq,
264 plintsrc->iosapic_vector,
265 plintsrc->eid,
266 plintsrc->id,
Len Brown4be44fc2005-08-05 00:44:28 -0400267 (plintsrc->flags.polarity ==
268 1) ? IOSAPIC_POL_HIGH :
269 IOSAPIC_POL_LOW,
270 (plintsrc->flags.trigger ==
271 1) ? IOSAPIC_EDGE :
272 IOSAPIC_LEVEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
274 platform_intr_list[plintsrc->type] = vector;
Ashok Raj55e59c52005-03-31 22:51:10 -0500275 if (acpi_madt_rev > 1) {
276 acpi_cpei_override = plintsrc->plint_flags.cpei_override_flag;
277 }
278
279 /*
280 * Save the physical id, so we can check when its being removed
281 */
282 acpi_cpei_phys_cpuid = ((plintsrc->id << 8) | (plintsrc->eid)) & 0xffff;
283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 return 0;
285}
286
Ashok Rajb88e9262006-01-19 16:18:47 -0800287#ifdef CONFIG_HOTPLUG_CPU
Ashok Raj55e59c52005-03-31 22:51:10 -0500288unsigned int can_cpei_retarget(void)
289{
290 extern int cpe_vector;
Ashok Rajff741902005-11-11 14:32:40 -0800291 extern unsigned int force_cpei_retarget;
Ashok Raj55e59c52005-03-31 22:51:10 -0500292
293 /*
294 * Only if CPEI is supported and the override flag
295 * is present, otherwise return that its re-targettable
296 * if we are in polling mode.
297 */
Ashok Rajff741902005-11-11 14:32:40 -0800298 if (cpe_vector > 0) {
299 if (acpi_cpei_override || force_cpei_retarget)
300 return 1;
301 else
302 return 0;
303 }
304 return 1;
Ashok Raj55e59c52005-03-31 22:51:10 -0500305}
306
307unsigned int is_cpu_cpei_target(unsigned int cpu)
308{
309 unsigned int logical_id;
310
311 logical_id = cpu_logical_id(acpi_cpei_phys_cpuid);
312
313 if (logical_id == cpu)
314 return 1;
315 else
316 return 0;
317}
318
319void set_cpei_target_cpu(unsigned int cpu)
320{
321 acpi_cpei_phys_cpuid = cpu_physical_id(cpu);
322}
Ashok Rajb88e9262006-01-19 16:18:47 -0800323#endif
Ashok Raj55e59c52005-03-31 22:51:10 -0500324
325unsigned int get_cpei_target_cpu(void)
326{
327 return acpi_cpei_phys_cpuid;
328}
329
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330static int __init
Len Brown4be44fc2005-08-05 00:44:28 -0400331acpi_parse_int_src_ovr(acpi_table_entry_header * header,
332 const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333{
334 struct acpi_table_int_src_ovr *p;
335
Len Brown4be44fc2005-08-05 00:44:28 -0400336 p = (struct acpi_table_int_src_ovr *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
338 if (BAD_MADT_ENTRY(p, end))
339 return -EINVAL;
340
341 iosapic_override_isa_irq(p->bus_irq, p->global_irq,
Len Brown4be44fc2005-08-05 00:44:28 -0400342 (p->flags.polarity ==
343 1) ? IOSAPIC_POL_HIGH : IOSAPIC_POL_LOW,
344 (p->flags.trigger ==
345 1) ? IOSAPIC_EDGE : IOSAPIC_LEVEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 return 0;
347}
348
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349static int __init
Len Brown4be44fc2005-08-05 00:44:28 -0400350acpi_parse_nmi_src(acpi_table_entry_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351{
352 struct acpi_table_nmi_src *nmi_src;
353
Len Brown4be44fc2005-08-05 00:44:28 -0400354 nmi_src = (struct acpi_table_nmi_src *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
356 if (BAD_MADT_ENTRY(nmi_src, end))
357 return -EINVAL;
358
359 /* TBD: Support nimsrc entries */
360 return 0;
361}
362
Len Brown4be44fc2005-08-05 00:44:28 -0400363static void __init acpi_madt_oem_check(char *oem_id, char *oem_table_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364{
Len Brown4be44fc2005-08-05 00:44:28 -0400365 if (!strncmp(oem_id, "IBM", 3) && (!strncmp(oem_table_id, "SERMOW", 6))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
367 /*
368 * Unfortunately ITC_DRIFT is not yet part of the
369 * official SAL spec, so the ITC_DRIFT bit is not
370 * set by the BIOS on this hardware.
371 */
372 sal_platform_features |= IA64_SAL_PLATFORM_FEATURE_ITC_DRIFT;
373
374 cyclone_setup();
375 }
376}
377
Len Brown4be44fc2005-08-05 00:44:28 -0400378static int __init acpi_parse_madt(unsigned long phys_addr, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379{
380 if (!phys_addr || !size)
381 return -EINVAL;
382
Len Brown4be44fc2005-08-05 00:44:28 -0400383 acpi_madt = (struct acpi_table_madt *)__va(phys_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
Ashok Raj55e59c52005-03-31 22:51:10 -0500385 acpi_madt_rev = acpi_madt->header.revision;
386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 /* remember the value for reference after free_initmem() */
388#ifdef CONFIG_ITANIUM
Len Brown4be44fc2005-08-05 00:44:28 -0400389 has_8259 = 1; /* Firmware on old Itanium systems is broken */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390#else
391 has_8259 = acpi_madt->flags.pcat_compat;
392#endif
393 iosapic_system_init(has_8259);
394
395 /* Get base address of IPI Message Block */
396
397 if (acpi_madt->lapic_address)
398 ipi_base_addr = ioremap(acpi_madt->lapic_address, 0);
399
400 printk(KERN_INFO PREFIX "Local APIC address %p\n", ipi_base_addr);
401
402 acpi_madt_oem_check(acpi_madt->header.oem_id,
Len Brown4be44fc2005-08-05 00:44:28 -0400403 acpi_madt->header.oem_table_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
405 return 0;
406}
407
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408#ifdef CONFIG_ACPI_NUMA
409
410#undef SLIT_DEBUG
411
412#define PXM_FLAG_LEN ((MAX_PXM_DOMAINS + 1)/32)
413
Len Brown4be44fc2005-08-05 00:44:28 -0400414static int __initdata srat_num_cpus; /* number of cpus */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415static u32 __devinitdata pxm_flag[PXM_FLAG_LEN];
416#define pxm_bit_set(bit) (set_bit(bit,(void *)pxm_flag))
417#define pxm_bit_test(bit) (test_bit(bit,(void *)pxm_flag))
418/* maps to convert between proximity domain and logical node ID */
419int __devinitdata pxm_to_nid_map[MAX_PXM_DOMAINS];
420int __initdata nid_to_pxm_map[MAX_NUMNODES];
421static struct acpi_table_slit __initdata *slit_table;
422
423/*
424 * ACPI 2.0 SLIT (System Locality Information Table)
425 * http://devresource.hp.com/devresource/Docs/TechPapers/IA64/slit.pdf
426 */
Len Brown4be44fc2005-08-05 00:44:28 -0400427void __init acpi_numa_slit_init(struct acpi_table_slit *slit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428{
429 u32 len;
430
431 len = sizeof(struct acpi_table_header) + 8
Len Brown4be44fc2005-08-05 00:44:28 -0400432 + slit->localities * slit->localities;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 if (slit->header.length != len) {
Len Brown4be44fc2005-08-05 00:44:28 -0400434 printk(KERN_ERR
435 "ACPI 2.0 SLIT: size mismatch: %d expected, %d actual\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 len, slit->header.length);
437 memset(numa_slit, 10, sizeof(numa_slit));
438 return;
439 }
440 slit_table = slit;
441}
442
443void __init
Len Brown4be44fc2005-08-05 00:44:28 -0400444acpi_numa_processor_affinity_init(struct acpi_table_processor_affinity *pa)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445{
Kenji Kaneshiged903cea2006-03-15 14:45:11 +0900446 if (!pa->flags.enabled)
447 return;
448
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 /* record this node in proximity bitmap */
450 pxm_bit_set(pa->proximity_domain);
451
Len Brown4be44fc2005-08-05 00:44:28 -0400452 node_cpuid[srat_num_cpus].phys_id =
453 (pa->apic_id << 8) | (pa->lsapic_eid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 /* nid should be overridden as logical node id later */
455 node_cpuid[srat_num_cpus].nid = pa->proximity_domain;
456 srat_num_cpus++;
457}
458
459void __init
Len Brown4be44fc2005-08-05 00:44:28 -0400460acpi_numa_memory_affinity_init(struct acpi_table_memory_affinity *ma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461{
462 unsigned long paddr, size;
463 u8 pxm;
464 struct node_memblk_s *p, *q, *pend;
465
466 pxm = ma->proximity_domain;
467
468 /* fill node memory chunk structure */
469 paddr = ma->base_addr_hi;
470 paddr = (paddr << 32) | ma->base_addr_lo;
471 size = ma->length_hi;
472 size = (size << 32) | ma->length_lo;
473
474 /* Ignore disabled entries */
475 if (!ma->flags.enabled)
476 return;
477
478 /* record this node in proximity bitmap */
479 pxm_bit_set(pxm);
480
481 /* Insertion sort based on base address */
482 pend = &node_memblk[num_node_memblks];
483 for (p = &node_memblk[0]; p < pend; p++) {
484 if (paddr < p->start_paddr)
485 break;
486 }
487 if (p < pend) {
488 for (q = pend - 1; q >= p; q--)
489 *(q + 1) = *q;
490 }
491 p->start_paddr = paddr;
492 p->size = size;
493 p->nid = pxm;
494 num_node_memblks++;
495}
496
Len Brown4be44fc2005-08-05 00:44:28 -0400497void __init acpi_numa_arch_fixup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498{
499 int i, j, node_from, node_to;
500
501 /* If there's no SRAT, fix the phys_id and mark node 0 online */
502 if (srat_num_cpus == 0) {
503 node_set_online(0);
504 node_cpuid[0].phys_id = hard_smp_processor_id();
505 return;
506 }
507
508 /*
509 * MCD - This can probably be dropped now. No need for pxm ID to node ID
510 * mapping with sparse node numbering iff MAX_PXM_DOMAINS <= MAX_NUMNODES.
511 */
512 /* calculate total number of nodes in system from PXM bitmap */
513 memset(pxm_to_nid_map, -1, sizeof(pxm_to_nid_map));
514 memset(nid_to_pxm_map, -1, sizeof(nid_to_pxm_map));
515 nodes_clear(node_online_map);
516 for (i = 0; i < MAX_PXM_DOMAINS; i++) {
517 if (pxm_bit_test(i)) {
518 int nid = num_online_nodes();
519 pxm_to_nid_map[i] = nid;
520 nid_to_pxm_map[nid] = i;
521 node_set_online(nid);
522 }
523 }
524
525 /* set logical node id in memory chunk structure */
526 for (i = 0; i < num_node_memblks; i++)
527 node_memblk[i].nid = pxm_to_nid_map[node_memblk[i].nid];
528
529 /* assign memory bank numbers for each chunk on each node */
530 for_each_online_node(i) {
531 int bank;
532
533 bank = 0;
534 for (j = 0; j < num_node_memblks; j++)
535 if (node_memblk[j].nid == i)
536 node_memblk[j].bank = bank++;
537 }
538
539 /* set logical node id in cpu structure */
540 for (i = 0; i < srat_num_cpus; i++)
541 node_cpuid[i].nid = pxm_to_nid_map[node_cpuid[i].nid];
542
Len Brown4be44fc2005-08-05 00:44:28 -0400543 printk(KERN_INFO "Number of logical nodes in system = %d\n",
544 num_online_nodes());
545 printk(KERN_INFO "Number of memory chunks in system = %d\n",
546 num_node_memblks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Len Brown4be44fc2005-08-05 00:44:28 -0400548 if (!slit_table)
549 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 memset(numa_slit, -1, sizeof(numa_slit));
Len Brown4be44fc2005-08-05 00:44:28 -0400551 for (i = 0; i < slit_table->localities; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 if (!pxm_bit_test(i))
553 continue;
554 node_from = pxm_to_nid_map[i];
Len Brown4be44fc2005-08-05 00:44:28 -0400555 for (j = 0; j < slit_table->localities; j++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 if (!pxm_bit_test(j))
557 continue;
558 node_to = pxm_to_nid_map[j];
559 node_distance(node_from, node_to) =
Len Brown4be44fc2005-08-05 00:44:28 -0400560 slit_table->entry[i * slit_table->localities + j];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 }
562 }
563
564#ifdef SLIT_DEBUG
565 printk("ACPI 2.0 SLIT locality table:\n");
566 for_each_online_node(i) {
567 for_each_online_node(j)
Len Brown4be44fc2005-08-05 00:44:28 -0400568 printk("%03d ", node_distance(i, j));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 printk("\n");
570 }
571#endif
572}
Len Brown4be44fc2005-08-05 00:44:28 -0400573#endif /* CONFIG_ACPI_NUMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
Kenji Kaneshige1f3a6a12005-07-28 14:42:00 -0400575/*
576 * success: return IRQ number (>=0)
577 * failure: return < 0
578 */
Len Browncb654692005-12-28 02:43:51 -0500579int acpi_register_gsi(u32 gsi, int triggering, int polarity)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580{
581 if (has_8259 && gsi < 16)
582 return isa_irq_to_vector(gsi);
583
584 return iosapic_register_intr(gsi,
Len Browncb654692005-12-28 02:43:51 -0500585 (polarity ==
Len Brown4be44fc2005-08-05 00:44:28 -0400586 ACPI_ACTIVE_HIGH) ? IOSAPIC_POL_HIGH :
587 IOSAPIC_POL_LOW,
Len Browncb654692005-12-28 02:43:51 -0500588 (triggering ==
Len Brown4be44fc2005-08-05 00:44:28 -0400589 ACPI_EDGE_SENSITIVE) ? IOSAPIC_EDGE :
590 IOSAPIC_LEVEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591}
Len Brown4be44fc2005-08-05 00:44:28 -0400592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593EXPORT_SYMBOL(acpi_register_gsi);
594
Len Brown4be44fc2005-08-05 00:44:28 -0400595void acpi_unregister_gsi(u32 gsi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596{
597 iosapic_unregister_intr(gsi);
598}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600EXPORT_SYMBOL(acpi_unregister_gsi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
Len Brown4be44fc2005-08-05 00:44:28 -0400602static int __init acpi_parse_fadt(unsigned long phys_addr, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603{
604 struct acpi_table_header *fadt_header;
605 struct fadt_descriptor_rev2 *fadt;
606
607 if (!phys_addr || !size)
608 return -EINVAL;
609
Len Brown4be44fc2005-08-05 00:44:28 -0400610 fadt_header = (struct acpi_table_header *)__va(phys_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 if (fadt_header->revision != 3)
Len Brown4be44fc2005-08-05 00:44:28 -0400612 return -ENODEV; /* Only deal with ACPI 2.0 FADT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
Len Brown4be44fc2005-08-05 00:44:28 -0400614 fadt = (struct fadt_descriptor_rev2 *)fadt_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
616 if (!(fadt->iapc_boot_arch & BAF_8042_KEYBOARD_CONTROLLER))
617 acpi_kbd_controller_present = 0;
618
619 if (fadt->iapc_boot_arch & BAF_LEGACY_DEVICES)
620 acpi_legacy_devices = 1;
621
622 acpi_register_gsi(fadt->sci_int, ACPI_LEVEL_SENSITIVE, ACPI_ACTIVE_LOW);
623 return 0;
624}
625
Len Brown4be44fc2005-08-05 00:44:28 -0400626unsigned long __init acpi_find_rsdp(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627{
628 unsigned long rsdp_phys = 0;
629
630 if (efi.acpi20)
631 rsdp_phys = __pa(efi.acpi20);
632 else if (efi.acpi)
Len Brown4be44fc2005-08-05 00:44:28 -0400633 printk(KERN_WARNING PREFIX
634 "v1.0/r0.71 tables no longer supported\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 return rsdp_phys;
636}
637
Len Brown4be44fc2005-08-05 00:44:28 -0400638int __init acpi_boot_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639{
640
641 /*
642 * MADT
643 * ----
644 * Parse the Multiple APIC Description Table (MADT), if exists.
645 * Note that this table provides platform SMP configuration
646 * information -- the successor to MPS tables.
647 */
648
649 if (acpi_table_parse(ACPI_APIC, acpi_parse_madt) < 1) {
650 printk(KERN_ERR PREFIX "Can't find MADT\n");
651 goto skip_madt;
652 }
653
654 /* Local APIC */
655
Len Brown4be44fc2005-08-05 00:44:28 -0400656 if (acpi_table_parse_madt
657 (ACPI_MADT_LAPIC_ADDR_OVR, acpi_parse_lapic_addr_ovr, 0) < 0)
658 printk(KERN_ERR PREFIX
659 "Error parsing LAPIC address override entry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
Len Brown4be44fc2005-08-05 00:44:28 -0400661 if (acpi_table_parse_madt(ACPI_MADT_LSAPIC, acpi_parse_lsapic, NR_CPUS)
662 < 1)
663 printk(KERN_ERR PREFIX
664 "Error parsing MADT - no LAPIC entries\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
Len Brown4be44fc2005-08-05 00:44:28 -0400666 if (acpi_table_parse_madt(ACPI_MADT_LAPIC_NMI, acpi_parse_lapic_nmi, 0)
667 < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 printk(KERN_ERR PREFIX "Error parsing LAPIC NMI entry\n");
669
670 /* I/O APIC */
671
Len Brown4be44fc2005-08-05 00:44:28 -0400672 if (acpi_table_parse_madt
673 (ACPI_MADT_IOSAPIC, acpi_parse_iosapic, NR_IOSAPICS) < 1)
674 printk(KERN_ERR PREFIX
675 "Error parsing MADT - no IOSAPIC entries\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
677 /* System-Level Interrupt Routing */
678
Len Brown4be44fc2005-08-05 00:44:28 -0400679 if (acpi_table_parse_madt
680 (ACPI_MADT_PLAT_INT_SRC, acpi_parse_plat_int_src,
681 ACPI_MAX_PLATFORM_INTERRUPTS) < 0)
682 printk(KERN_ERR PREFIX
683 "Error parsing platform interrupt source entry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
Len Brown4be44fc2005-08-05 00:44:28 -0400685 if (acpi_table_parse_madt
686 (ACPI_MADT_INT_SRC_OVR, acpi_parse_int_src_ovr, 0) < 0)
687 printk(KERN_ERR PREFIX
688 "Error parsing interrupt source overrides entry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
690 if (acpi_table_parse_madt(ACPI_MADT_NMI_SRC, acpi_parse_nmi_src, 0) < 0)
691 printk(KERN_ERR PREFIX "Error parsing NMI SRC entry\n");
Len Brown4be44fc2005-08-05 00:44:28 -0400692 skip_madt:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
694 /*
695 * FADT says whether a legacy keyboard controller is present.
696 * The FADT also contains an SCI_INT line, by which the system
697 * gets interrupts such as power and sleep buttons. If it's not
698 * on a Legacy interrupt, it needs to be setup.
699 */
700 if (acpi_table_parse(ACPI_FADT, acpi_parse_fadt) < 1)
701 printk(KERN_ERR PREFIX "Can't find FADT\n");
702
703#ifdef CONFIG_SMP
704 if (available_cpus == 0) {
705 printk(KERN_INFO "ACPI: Found 0 CPUS; assuming 1\n");
706 printk(KERN_INFO "CPU 0 (0x%04x)", hard_smp_processor_id());
Len Brown4be44fc2005-08-05 00:44:28 -0400707 smp_boot_data.cpu_phys_id[available_cpus] =
708 hard_smp_processor_id();
709 available_cpus = 1; /* We've got at least one of these, no? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 }
711 smp_boot_data.cpu_count = available_cpus;
712
713 smp_build_cpu_map();
714# ifdef CONFIG_ACPI_NUMA
715 if (srat_num_cpus == 0) {
716 int cpu, i = 1;
717 for (cpu = 0; cpu < smp_boot_data.cpu_count; cpu++)
Len Brown4be44fc2005-08-05 00:44:28 -0400718 if (smp_boot_data.cpu_phys_id[cpu] !=
719 hard_smp_processor_id())
720 node_cpuid[i++].phys_id =
721 smp_boot_data.cpu_phys_id[cpu];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723# endif
724#endif
Tony Luck8d7e3512005-07-06 18:18:10 -0700725#ifdef CONFIG_ACPI_NUMA
726 build_cpu_to_node_map();
727#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 /* Make boot-up look pretty */
Len Brown4be44fc2005-08-05 00:44:28 -0400729 printk(KERN_INFO "%d CPUs available, %d CPUs total\n", available_cpus,
730 total_cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 return 0;
732}
733
Len Brown4be44fc2005-08-05 00:44:28 -0400734int acpi_gsi_to_irq(u32 gsi, unsigned int *irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735{
736 int vector;
737
738 if (has_8259 && gsi < 16)
739 *irq = isa_irq_to_vector(gsi);
740 else {
741 vector = gsi_to_vector(gsi);
742 if (vector == -1)
743 return -1;
744
745 *irq = vector;
746 }
747 return 0;
748}
749
750/*
751 * ACPI based hotplug CPU support
752 */
753#ifdef CONFIG_ACPI_HOTPLUG_CPU
754static
Len Brown4be44fc2005-08-05 00:44:28 -0400755int acpi_map_cpu2node(acpi_handle handle, int cpu, long physid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756{
757#ifdef CONFIG_ACPI_NUMA
Len Brown4be44fc2005-08-05 00:44:28 -0400758 int pxm_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
760 pxm_id = acpi_get_pxm(handle);
761
762 /*
763 * Assuming that the container driver would have set the proximity
764 * domain and would have initialized pxm_to_nid_map[pxm_id] && pxm_flag
765 */
Len Brown4be44fc2005-08-05 00:44:28 -0400766 node_cpuid[cpu].nid = (pxm_id < 0) ? 0 : pxm_to_nid_map[pxm_id];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
Len Brown4be44fc2005-08-05 00:44:28 -0400768 node_cpuid[cpu].phys_id = physid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769#endif
Len Brown4be44fc2005-08-05 00:44:28 -0400770 return (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771}
772
Ashok Raja6b14fa2006-02-14 15:01:12 -0800773int additional_cpus __initdata = -1;
774
775static __init int setup_additional_cpus(char *s)
776{
777 if (s)
778 additional_cpus = simple_strtol(s, NULL, 0);
779
780 return 0;
781}
782
783early_param("additional_cpus", setup_additional_cpus);
784
785/*
786 * cpu_possible_map should be static, it cannot change as cpu's
787 * are onlined, or offlined. The reason is per-cpu data-structures
788 * are allocated by some modules at init time, and dont expect to
789 * do this dynamically on cpu arrival/departure.
790 * cpu_present_map on the other hand can change dynamically.
791 * In case when cpu_hotplug is not compiled, then we resort to current
792 * behaviour, which is cpu_possible == cpu_present.
793 * - Ashok Raj
794 *
795 * Three ways to find out the number of additional hotplug CPUs:
796 * - If the BIOS specified disabled CPUs in ACPI/mptables use that.
797 * - The user can overwrite it with additional_cpus=NUM
798 * - Otherwise don't reserve additional CPUs.
799 */
800__init void prefill_possible_map(void)
801{
802 int i;
803 int possible, disabled_cpus;
804
805 disabled_cpus = total_cpus - available_cpus;
Ashok Raj8f8b11382006-02-16 14:01:48 -0800806
Ashok Raja6b14fa2006-02-14 15:01:12 -0800807 if (additional_cpus == -1) {
Ashok Raj8f8b11382006-02-16 14:01:48 -0800808 if (disabled_cpus > 0)
Ashok Raja6b14fa2006-02-14 15:01:12 -0800809 additional_cpus = disabled_cpus;
Ashok Raj8f8b11382006-02-16 14:01:48 -0800810 else
Ashok Raja6b14fa2006-02-14 15:01:12 -0800811 additional_cpus = 0;
Ashok Raj8f8b11382006-02-16 14:01:48 -0800812 }
813
814 possible = available_cpus + additional_cpus;
815
Ashok Raja6b14fa2006-02-14 15:01:12 -0800816 if (possible > NR_CPUS)
817 possible = NR_CPUS;
818
819 printk(KERN_INFO "SMP: Allowing %d CPUs, %d hotplug CPUs\n",
Ashok Raj8f8b11382006-02-16 14:01:48 -0800820 possible, max((possible - available_cpus), 0));
Ashok Raja6b14fa2006-02-14 15:01:12 -0800821
822 for (i = 0; i < possible; i++)
823 cpu_set(i, cpu_possible_map);
824}
825
Len Brown4be44fc2005-08-05 00:44:28 -0400826int acpi_map_lsapic(acpi_handle handle, int *pcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827{
Len Brown4be44fc2005-08-05 00:44:28 -0400828 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 union acpi_object *obj;
830 struct acpi_table_lsapic *lsapic;
831 cpumask_t tmp_map;
832 long physid;
833 int cpu;
Len Brown4be44fc2005-08-05 00:44:28 -0400834
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 if (ACPI_FAILURE(acpi_evaluate_object(handle, "_MAT", NULL, &buffer)))
836 return -EINVAL;
837
Len Brown4be44fc2005-08-05 00:44:28 -0400838 if (!buffer.length || !buffer.pointer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 return -EINVAL;
Len Brown4be44fc2005-08-05 00:44:28 -0400840
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 obj = buffer.pointer;
842 if (obj->type != ACPI_TYPE_BUFFER ||
843 obj->buffer.length < sizeof(*lsapic)) {
844 acpi_os_free(buffer.pointer);
845 return -EINVAL;
846 }
847
848 lsapic = (struct acpi_table_lsapic *)obj->buffer.pointer;
849
850 if ((lsapic->header.type != ACPI_MADT_LSAPIC) ||
851 (!lsapic->flags.enabled)) {
852 acpi_os_free(buffer.pointer);
853 return -EINVAL;
854 }
855
Len Brown4be44fc2005-08-05 00:44:28 -0400856 physid = ((lsapic->id << 8) | (lsapic->eid));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
858 acpi_os_free(buffer.pointer);
859 buffer.length = ACPI_ALLOCATE_BUFFER;
860 buffer.pointer = NULL;
861
862 cpus_complement(tmp_map, cpu_present_map);
863 cpu = first_cpu(tmp_map);
Len Brown4be44fc2005-08-05 00:44:28 -0400864 if (cpu >= NR_CPUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 return -EINVAL;
866
867 acpi_map_cpu2node(handle, cpu, physid);
868
Len Brown4be44fc2005-08-05 00:44:28 -0400869 cpu_set(cpu, cpu_present_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 ia64_cpu_to_sapicid[cpu] = physid;
871 ia64_acpiid_to_sapicid[lsapic->acpi_id] = ia64_cpu_to_sapicid[cpu];
872
873 *pcpu = cpu;
Len Brown4be44fc2005-08-05 00:44:28 -0400874 return (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875}
Len Brown4be44fc2005-08-05 00:44:28 -0400876
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877EXPORT_SYMBOL(acpi_map_lsapic);
878
Len Brown4be44fc2005-08-05 00:44:28 -0400879int acpi_unmap_lsapic(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880{
881 int i;
882
Len Brown4be44fc2005-08-05 00:44:28 -0400883 for (i = 0; i < MAX_SAPICS; i++) {
884 if (ia64_acpiid_to_sapicid[i] == ia64_cpu_to_sapicid[cpu]) {
885 ia64_acpiid_to_sapicid[i] = -1;
886 break;
887 }
888 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 ia64_cpu_to_sapicid[cpu] = -1;
Len Brown4be44fc2005-08-05 00:44:28 -0400890 cpu_clear(cpu, cpu_present_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
892#ifdef CONFIG_ACPI_NUMA
893 /* NUMA specific cleanup's */
894#endif
895
Len Brown4be44fc2005-08-05 00:44:28 -0400896 return (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897}
Len Brown4be44fc2005-08-05 00:44:28 -0400898
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899EXPORT_SYMBOL(acpi_unmap_lsapic);
Len Brown4be44fc2005-08-05 00:44:28 -0400900#endif /* CONFIG_ACPI_HOTPLUG_CPU */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
902#ifdef CONFIG_ACPI_NUMA
Bjorn Helgaas650316f2005-09-16 11:43:45 -0600903static acpi_status __devinit
Len Brown4be44fc2005-08-05 00:44:28 -0400904acpi_map_iosapic(acpi_handle handle, u32 depth, void *context, void **ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905{
Len Brown4be44fc2005-08-05 00:44:28 -0400906 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 union acpi_object *obj;
908 struct acpi_table_iosapic *iosapic;
909 unsigned int gsi_base;
Alex Williamsonbb0fc082005-03-24 22:58:00 -0700910 int pxm, node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
912 /* Only care about objects w/ a method that returns the MADT */
913 if (ACPI_FAILURE(acpi_evaluate_object(handle, "_MAT", NULL, &buffer)))
914 return AE_OK;
915
916 if (!buffer.length || !buffer.pointer)
917 return AE_OK;
918
919 obj = buffer.pointer;
920 if (obj->type != ACPI_TYPE_BUFFER ||
921 obj->buffer.length < sizeof(*iosapic)) {
922 acpi_os_free(buffer.pointer);
923 return AE_OK;
924 }
925
926 iosapic = (struct acpi_table_iosapic *)obj->buffer.pointer;
927
928 if (iosapic->header.type != ACPI_MADT_IOSAPIC) {
929 acpi_os_free(buffer.pointer);
930 return AE_OK;
931 }
932
933 gsi_base = iosapic->global_irq_base;
934
935 acpi_os_free(buffer.pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
937 /*
Alex Williamsonbb0fc082005-03-24 22:58:00 -0700938 * OK, it's an IOSAPIC MADT entry, look for a _PXM value to tell
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 * us which node to associate this with.
940 */
Alex Williamsonbb0fc082005-03-24 22:58:00 -0700941 pxm = acpi_get_pxm(handle);
942 if (pxm < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 return AE_OK;
944
Alex Williamsonbb0fc082005-03-24 22:58:00 -0700945 node = pxm_to_nid_map[pxm];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
947 if (node >= MAX_NUMNODES || !node_online(node) ||
948 cpus_empty(node_to_cpumask(node)))
949 return AE_OK;
950
951 /* We know a gsi to node mapping! */
952 map_iosapic_to_node(gsi_base, node);
953 return AE_OK;
954}
Bjorn Helgaas650316f2005-09-16 11:43:45 -0600955
956static int __init
957acpi_map_iosapics (void)
958{
959 acpi_get_devices(NULL, acpi_map_iosapic, NULL, NULL);
960 return 0;
961}
962
963fs_initcall(acpi_map_iosapics);
964#endif /* CONFIG_ACPI_NUMA */
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700965
Len Brown4be44fc2005-08-05 00:44:28 -0400966int acpi_register_ioapic(acpi_handle handle, u64 phys_addr, u32 gsi_base)
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700967{
Kenji Kaneshige0e888ad2005-04-28 00:25:58 -0700968 int err;
969
970 if ((err = iosapic_init(phys_addr, gsi_base)))
971 return err;
972
Peter Chubb24b8e0c2005-09-15 15:36:35 +1000973#ifdef CONFIG_ACPI_NUMA
Kenji Kaneshige0e888ad2005-04-28 00:25:58 -0700974 acpi_map_iosapic(handle, 0, NULL, NULL);
Len Brown4be44fc2005-08-05 00:44:28 -0400975#endif /* CONFIG_ACPI_NUMA */
Kenji Kaneshige0e888ad2005-04-28 00:25:58 -0700976
977 return 0;
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700978}
Len Brown4be44fc2005-08-05 00:44:28 -0400979
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700980EXPORT_SYMBOL(acpi_register_ioapic);
981
Len Brown4be44fc2005-08-05 00:44:28 -0400982int acpi_unregister_ioapic(acpi_handle handle, u32 gsi_base)
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700983{
Kenji Kaneshige0e888ad2005-04-28 00:25:58 -0700984 return iosapic_remove(gsi_base);
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700985}
Len Brown4be44fc2005-08-05 00:44:28 -0400986
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700987EXPORT_SYMBOL(acpi_unregister_ioapic);
988
Len Brown888ba6c2005-08-24 12:07:20 -0400989#endif /* CONFIG_ACPI */