blob: 32c3abededc69aac74e522b9d06687066a716ccb [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#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 Ydf6fd312006-08-18 11:23:00 -040058 ((acpi_table_entry_header *)entry)->length < sizeof(*entry))
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60#define PREFIX "ACPI: "
61
62void (*pm_idle) (void);
63EXPORT_SYMBOL(pm_idle);
64void (*pm_power_off) (void);
65EXPORT_SYMBOL(pm_power_off);
66
67unsigned char acpi_kbd_controller_present = 1;
68unsigned char acpi_legacy_devices;
69
Ashok Raj55e59c52005-03-31 22:51:10 -050070unsigned int acpi_cpei_override;
71unsigned int acpi_cpei_phys_cpuid;
72
Linus Torvalds1da177e2005-04-16 15:20:36 -070073#define MAX_SAPICS 256
MAEDA Naoaki702c7e72005-08-08 01:09:00 -040074u16 ia64_acpiid_to_sapicid[MAX_SAPICS] = {[0 ... MAX_SAPICS - 1] = -1 };
Len Brown4be44fc2005-08-05 00:44:28 -040075
Linus Torvalds1da177e2005-04-16 15:20:36 -070076EXPORT_SYMBOL(ia64_acpiid_to_sapicid);
77
Len Brown4be44fc2005-08-05 00:44:28 -040078const char *acpi_get_sysname(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079{
80#ifdef CONFIG_IA64_GENERIC
81 unsigned long rsdp_phys;
82 struct acpi20_table_rsdp *rsdp;
83 struct acpi_table_xsdt *xsdt;
84 struct acpi_table_header *hdr;
85
86 rsdp_phys = acpi_find_rsdp();
87 if (!rsdp_phys) {
Len Brown4be44fc2005-08-05 00:44:28 -040088 printk(KERN_ERR
89 "ACPI 2.0 RSDP not found, default to \"dig\"\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 return "dig";
91 }
92
Len Brown4be44fc2005-08-05 00:44:28 -040093 rsdp = (struct acpi20_table_rsdp *)__va(rsdp_phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 if (strncmp(rsdp->signature, RSDP_SIG, sizeof(RSDP_SIG) - 1)) {
Len Brown4be44fc2005-08-05 00:44:28 -040095 printk(KERN_ERR
96 "ACPI 2.0 RSDP signature incorrect, default to \"dig\"\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 return "dig";
98 }
99
Len Brown4be44fc2005-08-05 00:44:28 -0400100 xsdt = (struct acpi_table_xsdt *)__va(rsdp->xsdt_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 hdr = &xsdt->header;
102 if (strncmp(hdr->signature, XSDT_SIG, sizeof(XSDT_SIG) - 1)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400103 printk(KERN_ERR
104 "ACPI 2.0 XSDT signature incorrect, default to \"dig\"\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 return "dig";
106 }
107
108 if (!strcmp(hdr->oem_id, "HP")) {
109 return "hpzx1";
Len Brown4be44fc2005-08-05 00:44:28 -0400110 } else if (!strcmp(hdr->oem_id, "SGI")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 return "sn2";
112 }
113
114 return "dig";
115#else
116# if defined (CONFIG_IA64_HP_SIM)
117 return "hpsim";
118# elif defined (CONFIG_IA64_HP_ZX1)
119 return "hpzx1";
120# elif defined (CONFIG_IA64_HP_ZX1_SWIOTLB)
121 return "hpzx1_swiotlb";
122# elif defined (CONFIG_IA64_SGI_SN2)
123 return "sn2";
124# elif defined (CONFIG_IA64_DIG)
125 return "dig";
126# else
127# error Unknown platform. Fix acpi.c.
128# endif
129#endif
130}
131
Len Brown888ba6c2005-08-24 12:07:20 -0400132#ifdef CONFIG_ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
134#define ACPI_MAX_PLATFORM_INTERRUPTS 256
135
136/* Array to record platform interrupt vectors for generic interrupt routing. */
137int platform_intr_list[ACPI_MAX_PLATFORM_INTERRUPTS] = {
138 [0 ... ACPI_MAX_PLATFORM_INTERRUPTS - 1] = -1
139};
140
141enum acpi_irq_model_id acpi_irq_model = ACPI_IRQ_MODEL_IOSAPIC;
142
143/*
144 * Interrupt routing API for device drivers. Provides interrupt vector for
145 * a generic platform event. Currently only CPEI is implemented.
146 */
Len Brown4be44fc2005-08-05 00:44:28 -0400147int acpi_request_vector(u32 int_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
149 int vector = -1;
150
151 if (int_type < ACPI_MAX_PLATFORM_INTERRUPTS) {
152 /* corrected platform error interrupt */
153 vector = platform_intr_list[int_type];
154 } else
Len Brown4be44fc2005-08-05 00:44:28 -0400155 printk(KERN_ERR
156 "acpi_request_vector(): invalid interrupt type\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 return vector;
158}
159
Len Brown4be44fc2005-08-05 00:44:28 -0400160char *__acpi_map_table(unsigned long phys_addr, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
162 return __va(phys_addr);
163}
164
165/* --------------------------------------------------------------------------
166 Boot-time Table Parsing
167 -------------------------------------------------------------------------- */
168
Len Brown4be44fc2005-08-05 00:44:28 -0400169static int total_cpus __initdata;
170static int available_cpus __initdata;
171struct acpi_table_madt *acpi_madt __initdata;
172static u8 has_8259;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
174static int __init
Len Brown4be44fc2005-08-05 00:44:28 -0400175acpi_parse_lapic_addr_ovr(acpi_table_entry_header * header,
176 const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177{
178 struct acpi_table_lapic_addr_ovr *lapic;
179
Len Brown4be44fc2005-08-05 00:44:28 -0400180 lapic = (struct acpi_table_lapic_addr_ovr *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
182 if (BAD_MADT_ENTRY(lapic, end))
183 return -EINVAL;
184
185 if (lapic->address) {
186 iounmap(ipi_base_addr);
187 ipi_base_addr = ioremap(lapic->address, 0);
188 }
189 return 0;
190}
191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192static int __init
Len Brown4be44fc2005-08-05 00:44:28 -0400193acpi_parse_lsapic(acpi_table_entry_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194{
195 struct acpi_table_lsapic *lsapic;
196
Len Brown4be44fc2005-08-05 00:44:28 -0400197 lsapic = (struct acpi_table_lsapic *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
199 if (BAD_MADT_ENTRY(lsapic, end))
200 return -EINVAL;
201
202 if (lsapic->flags.enabled) {
203#ifdef CONFIG_SMP
Len Brown4be44fc2005-08-05 00:44:28 -0400204 smp_boot_data.cpu_phys_id[available_cpus] =
205 (lsapic->id << 8) | lsapic->eid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206#endif
Len Brown4be44fc2005-08-05 00:44:28 -0400207 ia64_acpiid_to_sapicid[lsapic->acpi_id] =
208 (lsapic->id << 8) | lsapic->eid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 ++available_cpus;
210 }
211
212 total_cpus++;
213 return 0;
214}
215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216static int __init
Len Brown4be44fc2005-08-05 00:44:28 -0400217acpi_parse_lapic_nmi(acpi_table_entry_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218{
219 struct acpi_table_lapic_nmi *lacpi_nmi;
220
Len Brown4be44fc2005-08-05 00:44:28 -0400221 lacpi_nmi = (struct acpi_table_lapic_nmi *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
223 if (BAD_MADT_ENTRY(lacpi_nmi, end))
224 return -EINVAL;
225
226 /* TBD: Support lapic_nmi entries */
227 return 0;
228}
229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230static int __init
Len Brown4be44fc2005-08-05 00:44:28 -0400231acpi_parse_iosapic(acpi_table_entry_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
233 struct acpi_table_iosapic *iosapic;
234
Len Brown4be44fc2005-08-05 00:44:28 -0400235 iosapic = (struct acpi_table_iosapic *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
237 if (BAD_MADT_ENTRY(iosapic, end))
238 return -EINVAL;
239
Kenji Kaneshige0e888ad2005-04-28 00:25:58 -0700240 return iosapic_init(iosapic->address, iosapic->global_irq_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241}
242
Len Brown58104522006-05-13 01:12:15 -0400243static unsigned int __initdata acpi_madt_rev;
244
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245static int __init
Len Brown4be44fc2005-08-05 00:44:28 -0400246acpi_parse_plat_int_src(acpi_table_entry_header * header,
247 const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248{
249 struct acpi_table_plat_int_src *plintsrc;
250 int vector;
251
Len Brown4be44fc2005-08-05 00:44:28 -0400252 plintsrc = (struct acpi_table_plat_int_src *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
254 if (BAD_MADT_ENTRY(plintsrc, end))
255 return -EINVAL;
256
257 /*
258 * Get vector assignment for this interrupt, set attributes,
259 * and program the IOSAPIC routing table.
260 */
261 vector = iosapic_register_platform_intr(plintsrc->type,
262 plintsrc->global_irq,
263 plintsrc->iosapic_vector,
264 plintsrc->eid,
265 plintsrc->id,
Len Brown4be44fc2005-08-05 00:44:28 -0400266 (plintsrc->flags.polarity ==
267 1) ? IOSAPIC_POL_HIGH :
268 IOSAPIC_POL_LOW,
269 (plintsrc->flags.trigger ==
270 1) ? IOSAPIC_EDGE :
271 IOSAPIC_LEVEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
273 platform_intr_list[plintsrc->type] = vector;
Ashok Raj55e59c52005-03-31 22:51:10 -0500274 if (acpi_madt_rev > 1) {
275 acpi_cpei_override = plintsrc->plint_flags.cpei_override_flag;
276 }
277
278 /*
279 * Save the physical id, so we can check when its being removed
280 */
281 acpi_cpei_phys_cpuid = ((plintsrc->id << 8) | (plintsrc->eid)) & 0xffff;
282
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 return 0;
284}
285
Ashok Rajb88e9262006-01-19 16:18:47 -0800286#ifdef CONFIG_HOTPLUG_CPU
Ashok Raj55e59c52005-03-31 22:51:10 -0500287unsigned int can_cpei_retarget(void)
288{
289 extern int cpe_vector;
Ashok Rajff741902005-11-11 14:32:40 -0800290 extern unsigned int force_cpei_retarget;
Ashok Raj55e59c52005-03-31 22:51:10 -0500291
292 /*
293 * Only if CPEI is supported and the override flag
294 * is present, otherwise return that its re-targettable
295 * if we are in polling mode.
296 */
Ashok Rajff741902005-11-11 14:32:40 -0800297 if (cpe_vector > 0) {
298 if (acpi_cpei_override || force_cpei_retarget)
299 return 1;
300 else
301 return 0;
302 }
303 return 1;
Ashok Raj55e59c52005-03-31 22:51:10 -0500304}
305
306unsigned int is_cpu_cpei_target(unsigned int cpu)
307{
308 unsigned int logical_id;
309
310 logical_id = cpu_logical_id(acpi_cpei_phys_cpuid);
311
312 if (logical_id == cpu)
313 return 1;
314 else
315 return 0;
316}
317
318void set_cpei_target_cpu(unsigned int cpu)
319{
320 acpi_cpei_phys_cpuid = cpu_physical_id(cpu);
321}
Ashok Rajb88e9262006-01-19 16:18:47 -0800322#endif
Ashok Raj55e59c52005-03-31 22:51:10 -0500323
324unsigned int get_cpei_target_cpu(void)
325{
326 return acpi_cpei_phys_cpuid;
327}
328
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329static int __init
Len Brown4be44fc2005-08-05 00:44:28 -0400330acpi_parse_int_src_ovr(acpi_table_entry_header * header,
331 const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332{
333 struct acpi_table_int_src_ovr *p;
334
Len Brown4be44fc2005-08-05 00:44:28 -0400335 p = (struct acpi_table_int_src_ovr *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
337 if (BAD_MADT_ENTRY(p, end))
338 return -EINVAL;
339
340 iosapic_override_isa_irq(p->bus_irq, p->global_irq,
Len Brown4be44fc2005-08-05 00:44:28 -0400341 (p->flags.polarity ==
342 1) ? IOSAPIC_POL_HIGH : IOSAPIC_POL_LOW,
343 (p->flags.trigger ==
344 1) ? IOSAPIC_EDGE : IOSAPIC_LEVEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 return 0;
346}
347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348static int __init
Len Brown4be44fc2005-08-05 00:44:28 -0400349acpi_parse_nmi_src(acpi_table_entry_header * header, const unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350{
351 struct acpi_table_nmi_src *nmi_src;
352
Len Brown4be44fc2005-08-05 00:44:28 -0400353 nmi_src = (struct acpi_table_nmi_src *)header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
355 if (BAD_MADT_ENTRY(nmi_src, end))
356 return -EINVAL;
357
358 /* TBD: Support nimsrc entries */
359 return 0;
360}
361
Len Brown4be44fc2005-08-05 00:44:28 -0400362static void __init acpi_madt_oem_check(char *oem_id, char *oem_table_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363{
Len Brown4be44fc2005-08-05 00:44:28 -0400364 if (!strncmp(oem_id, "IBM", 3) && (!strncmp(oem_table_id, "SERMOW", 6))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
366 /*
367 * Unfortunately ITC_DRIFT is not yet part of the
368 * official SAL spec, so the ITC_DRIFT bit is not
369 * set by the BIOS on this hardware.
370 */
371 sal_platform_features |= IA64_SAL_PLATFORM_FEATURE_ITC_DRIFT;
372
373 cyclone_setup();
374 }
375}
376
Len Brown4be44fc2005-08-05 00:44:28 -0400377static int __init acpi_parse_madt(unsigned long phys_addr, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378{
379 if (!phys_addr || !size)
380 return -EINVAL;
381
Len Brown4be44fc2005-08-05 00:44:28 -0400382 acpi_madt = (struct acpi_table_madt *)__va(phys_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Ashok Raj55e59c52005-03-31 22:51:10 -0500384 acpi_madt_rev = acpi_madt->header.revision;
385
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 /* remember the value for reference after free_initmem() */
387#ifdef CONFIG_ITANIUM
Len Brown4be44fc2005-08-05 00:44:28 -0400388 has_8259 = 1; /* Firmware on old Itanium systems is broken */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389#else
390 has_8259 = acpi_madt->flags.pcat_compat;
391#endif
392 iosapic_system_init(has_8259);
393
394 /* Get base address of IPI Message Block */
395
396 if (acpi_madt->lapic_address)
397 ipi_base_addr = ioremap(acpi_madt->lapic_address, 0);
398
399 printk(KERN_INFO PREFIX "Local APIC address %p\n", ipi_base_addr);
400
401 acpi_madt_oem_check(acpi_madt->header.oem_id,
Len Brown4be44fc2005-08-05 00:44:28 -0400402 acpi_madt->header.oem_table_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
404 return 0;
405}
406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407#ifdef CONFIG_ACPI_NUMA
408
409#undef SLIT_DEBUG
410
411#define PXM_FLAG_LEN ((MAX_PXM_DOMAINS + 1)/32)
412
Len Brown4be44fc2005-08-05 00:44:28 -0400413static int __initdata srat_num_cpus; /* number of cpus */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414static u32 __devinitdata pxm_flag[PXM_FLAG_LEN];
415#define pxm_bit_set(bit) (set_bit(bit,(void *)pxm_flag))
416#define pxm_bit_test(bit) (test_bit(bit,(void *)pxm_flag))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417static struct acpi_table_slit __initdata *slit_table;
418
Jack Steiner3ad5ef82006-03-02 16:02:25 -0600419static int get_processor_proximity_domain(struct acpi_table_processor_affinity *pa)
420{
421 int pxm;
422
423 pxm = pa->proximity_domain;
424 if (ia64_platform_is("sn2"))
425 pxm += pa->reserved[0] << 8;
426 return pxm;
427}
428
429static int get_memory_proximity_domain(struct acpi_table_memory_affinity *ma)
430{
431 int pxm;
432
433 pxm = ma->proximity_domain;
434 if (ia64_platform_is("sn2"))
435 pxm += ma->reserved1[0] << 8;
436 return pxm;
437}
438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439/*
440 * ACPI 2.0 SLIT (System Locality Information Table)
441 * http://devresource.hp.com/devresource/Docs/TechPapers/IA64/slit.pdf
442 */
Len Brown4be44fc2005-08-05 00:44:28 -0400443void __init acpi_numa_slit_init(struct acpi_table_slit *slit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444{
445 u32 len;
446
447 len = sizeof(struct acpi_table_header) + 8
Len Brown4be44fc2005-08-05 00:44:28 -0400448 + slit->localities * slit->localities;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 if (slit->header.length != len) {
Len Brown4be44fc2005-08-05 00:44:28 -0400450 printk(KERN_ERR
451 "ACPI 2.0 SLIT: size mismatch: %d expected, %d actual\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 len, slit->header.length);
453 memset(numa_slit, 10, sizeof(numa_slit));
454 return;
455 }
456 slit_table = slit;
457}
458
459void __init
Len Brown4be44fc2005-08-05 00:44:28 -0400460acpi_numa_processor_affinity_init(struct acpi_table_processor_affinity *pa)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461{
Jack Steiner3ad5ef82006-03-02 16:02:25 -0600462 int pxm;
463
Kenji Kaneshiged903cea2006-03-15 14:45:11 +0900464 if (!pa->flags.enabled)
465 return;
466
Jack Steiner3ad5ef82006-03-02 16:02:25 -0600467 pxm = get_processor_proximity_domain(pa);
468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 /* record this node in proximity bitmap */
Jack Steiner3ad5ef82006-03-02 16:02:25 -0600470 pxm_bit_set(pxm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
Len Brown4be44fc2005-08-05 00:44:28 -0400472 node_cpuid[srat_num_cpus].phys_id =
473 (pa->apic_id << 8) | (pa->lsapic_eid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 /* nid should be overridden as logical node id later */
Jack Steiner3ad5ef82006-03-02 16:02:25 -0600475 node_cpuid[srat_num_cpus].nid = pxm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 srat_num_cpus++;
477}
478
479void __init
Len Brown4be44fc2005-08-05 00:44:28 -0400480acpi_numa_memory_affinity_init(struct acpi_table_memory_affinity *ma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481{
482 unsigned long paddr, size;
Jack Steiner3ad5ef82006-03-02 16:02:25 -0600483 int pxm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 struct node_memblk_s *p, *q, *pend;
485
Jack Steiner3ad5ef82006-03-02 16:02:25 -0600486 pxm = get_memory_proximity_domain(ma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
488 /* fill node memory chunk structure */
489 paddr = ma->base_addr_hi;
490 paddr = (paddr << 32) | ma->base_addr_lo;
491 size = ma->length_hi;
492 size = (size << 32) | ma->length_lo;
493
494 /* Ignore disabled entries */
495 if (!ma->flags.enabled)
496 return;
497
498 /* record this node in proximity bitmap */
499 pxm_bit_set(pxm);
500
501 /* Insertion sort based on base address */
502 pend = &node_memblk[num_node_memblks];
503 for (p = &node_memblk[0]; p < pend; p++) {
504 if (paddr < p->start_paddr)
505 break;
506 }
507 if (p < pend) {
508 for (q = pend - 1; q >= p; q--)
509 *(q + 1) = *q;
510 }
511 p->start_paddr = paddr;
512 p->size = size;
513 p->nid = pxm;
514 num_node_memblks++;
515}
516
Len Brown4be44fc2005-08-05 00:44:28 -0400517void __init acpi_numa_arch_fixup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518{
519 int i, j, node_from, node_to;
520
521 /* If there's no SRAT, fix the phys_id and mark node 0 online */
522 if (srat_num_cpus == 0) {
523 node_set_online(0);
524 node_cpuid[0].phys_id = hard_smp_processor_id();
525 return;
526 }
527
528 /*
529 * MCD - This can probably be dropped now. No need for pxm ID to node ID
530 * mapping with sparse node numbering iff MAX_PXM_DOMAINS <= MAX_NUMNODES.
531 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 nodes_clear(node_online_map);
533 for (i = 0; i < MAX_PXM_DOMAINS; i++) {
534 if (pxm_bit_test(i)) {
Yasunori Goto762834e2006-06-23 02:03:19 -0700535 int nid = acpi_map_pxm_to_node(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 node_set_online(nid);
537 }
538 }
539
540 /* set logical node id in memory chunk structure */
541 for (i = 0; i < num_node_memblks; i++)
Yasunori Goto762834e2006-06-23 02:03:19 -0700542 node_memblk[i].nid = pxm_to_node(node_memblk[i].nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
544 /* assign memory bank numbers for each chunk on each node */
545 for_each_online_node(i) {
546 int bank;
547
548 bank = 0;
549 for (j = 0; j < num_node_memblks; j++)
550 if (node_memblk[j].nid == i)
551 node_memblk[j].bank = bank++;
552 }
553
554 /* set logical node id in cpu structure */
555 for (i = 0; i < srat_num_cpus; i++)
Yasunori Goto762834e2006-06-23 02:03:19 -0700556 node_cpuid[i].nid = pxm_to_node(node_cpuid[i].nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
Len Brown4be44fc2005-08-05 00:44:28 -0400558 printk(KERN_INFO "Number of logical nodes in system = %d\n",
559 num_online_nodes());
560 printk(KERN_INFO "Number of memory chunks in system = %d\n",
561 num_node_memblks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
Len Brown4be44fc2005-08-05 00:44:28 -0400563 if (!slit_table)
564 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 memset(numa_slit, -1, sizeof(numa_slit));
Len Brown4be44fc2005-08-05 00:44:28 -0400566 for (i = 0; i < slit_table->localities; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 if (!pxm_bit_test(i))
568 continue;
Yasunori Goto762834e2006-06-23 02:03:19 -0700569 node_from = pxm_to_node(i);
Len Brown4be44fc2005-08-05 00:44:28 -0400570 for (j = 0; j < slit_table->localities; j++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 if (!pxm_bit_test(j))
572 continue;
Yasunori Goto762834e2006-06-23 02:03:19 -0700573 node_to = pxm_to_node(j);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 node_distance(node_from, node_to) =
Len Brown4be44fc2005-08-05 00:44:28 -0400575 slit_table->entry[i * slit_table->localities + j];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 }
577 }
578
579#ifdef SLIT_DEBUG
580 printk("ACPI 2.0 SLIT locality table:\n");
581 for_each_online_node(i) {
582 for_each_online_node(j)
Len Brown4be44fc2005-08-05 00:44:28 -0400583 printk("%03d ", node_distance(i, j));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 printk("\n");
585 }
586#endif
587}
Len Brown4be44fc2005-08-05 00:44:28 -0400588#endif /* CONFIG_ACPI_NUMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Kenji Kaneshige1f3a6a12005-07-28 14:42:00 -0400590/*
591 * success: return IRQ number (>=0)
592 * failure: return < 0
593 */
Len Browncb654692005-12-28 02:43:51 -0500594int acpi_register_gsi(u32 gsi, int triggering, int polarity)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595{
596 if (has_8259 && gsi < 16)
597 return isa_irq_to_vector(gsi);
598
599 return iosapic_register_intr(gsi,
Len Browncb654692005-12-28 02:43:51 -0500600 (polarity ==
Len Brown4be44fc2005-08-05 00:44:28 -0400601 ACPI_ACTIVE_HIGH) ? IOSAPIC_POL_HIGH :
602 IOSAPIC_POL_LOW,
Len Browncb654692005-12-28 02:43:51 -0500603 (triggering ==
Len Brown4be44fc2005-08-05 00:44:28 -0400604 ACPI_EDGE_SENSITIVE) ? IOSAPIC_EDGE :
605 IOSAPIC_LEVEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606}
Len Brown4be44fc2005-08-05 00:44:28 -0400607
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608EXPORT_SYMBOL(acpi_register_gsi);
609
Len Brown4be44fc2005-08-05 00:44:28 -0400610void acpi_unregister_gsi(u32 gsi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611{
612 iosapic_unregister_intr(gsi);
613}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615EXPORT_SYMBOL(acpi_unregister_gsi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Len Brown4be44fc2005-08-05 00:44:28 -0400617static int __init acpi_parse_fadt(unsigned long phys_addr, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618{
619 struct acpi_table_header *fadt_header;
Tony Luck236ee8c2006-06-23 13:49:25 -0700620 struct fadt_descriptor *fadt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
622 if (!phys_addr || !size)
623 return -EINVAL;
624
Len Brown4be44fc2005-08-05 00:44:28 -0400625 fadt_header = (struct acpi_table_header *)__va(phys_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 if (fadt_header->revision != 3)
Len Brown4be44fc2005-08-05 00:44:28 -0400627 return -ENODEV; /* Only deal with ACPI 2.0 FADT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Tony Luck236ee8c2006-06-23 13:49:25 -0700629 fadt = (struct fadt_descriptor *)fadt_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
631 if (!(fadt->iapc_boot_arch & BAF_8042_KEYBOARD_CONTROLLER))
632 acpi_kbd_controller_present = 0;
633
634 if (fadt->iapc_boot_arch & BAF_LEGACY_DEVICES)
635 acpi_legacy_devices = 1;
636
637 acpi_register_gsi(fadt->sci_int, ACPI_LEVEL_SENSITIVE, ACPI_ACTIVE_LOW);
638 return 0;
639}
640
Len Brown4be44fc2005-08-05 00:44:28 -0400641unsigned long __init acpi_find_rsdp(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642{
643 unsigned long rsdp_phys = 0;
644
Bjorn Helgaasb2c99e32006-03-26 01:37:08 -0800645 if (efi.acpi20 != EFI_INVALID_TABLE_ADDR)
646 rsdp_phys = efi.acpi20;
647 else if (efi.acpi != EFI_INVALID_TABLE_ADDR)
Len Brown4be44fc2005-08-05 00:44:28 -0400648 printk(KERN_WARNING PREFIX
649 "v1.0/r0.71 tables no longer supported\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 return rsdp_phys;
651}
652
Len Brown4be44fc2005-08-05 00:44:28 -0400653int __init acpi_boot_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654{
655
656 /*
657 * MADT
658 * ----
659 * Parse the Multiple APIC Description Table (MADT), if exists.
660 * Note that this table provides platform SMP configuration
661 * information -- the successor to MPS tables.
662 */
663
664 if (acpi_table_parse(ACPI_APIC, acpi_parse_madt) < 1) {
665 printk(KERN_ERR PREFIX "Can't find MADT\n");
666 goto skip_madt;
667 }
668
669 /* Local APIC */
670
Len Brown4be44fc2005-08-05 00:44:28 -0400671 if (acpi_table_parse_madt
672 (ACPI_MADT_LAPIC_ADDR_OVR, acpi_parse_lapic_addr_ovr, 0) < 0)
673 printk(KERN_ERR PREFIX
674 "Error parsing LAPIC address override entry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Len Brown4be44fc2005-08-05 00:44:28 -0400676 if (acpi_table_parse_madt(ACPI_MADT_LSAPIC, acpi_parse_lsapic, NR_CPUS)
677 < 1)
678 printk(KERN_ERR PREFIX
679 "Error parsing MADT - no LAPIC entries\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
Len Brown4be44fc2005-08-05 00:44:28 -0400681 if (acpi_table_parse_madt(ACPI_MADT_LAPIC_NMI, acpi_parse_lapic_nmi, 0)
682 < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 printk(KERN_ERR PREFIX "Error parsing LAPIC NMI entry\n");
684
685 /* I/O APIC */
686
Len Brown4be44fc2005-08-05 00:44:28 -0400687 if (acpi_table_parse_madt
688 (ACPI_MADT_IOSAPIC, acpi_parse_iosapic, NR_IOSAPICS) < 1)
689 printk(KERN_ERR PREFIX
690 "Error parsing MADT - no IOSAPIC entries\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
692 /* System-Level Interrupt Routing */
693
Len Brown4be44fc2005-08-05 00:44:28 -0400694 if (acpi_table_parse_madt
695 (ACPI_MADT_PLAT_INT_SRC, acpi_parse_plat_int_src,
696 ACPI_MAX_PLATFORM_INTERRUPTS) < 0)
697 printk(KERN_ERR PREFIX
698 "Error parsing platform interrupt source entry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
Len Brown4be44fc2005-08-05 00:44:28 -0400700 if (acpi_table_parse_madt
701 (ACPI_MADT_INT_SRC_OVR, acpi_parse_int_src_ovr, 0) < 0)
702 printk(KERN_ERR PREFIX
703 "Error parsing interrupt source overrides entry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
705 if (acpi_table_parse_madt(ACPI_MADT_NMI_SRC, acpi_parse_nmi_src, 0) < 0)
706 printk(KERN_ERR PREFIX "Error parsing NMI SRC entry\n");
Len Brown4be44fc2005-08-05 00:44:28 -0400707 skip_madt:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
709 /*
710 * FADT says whether a legacy keyboard controller is present.
711 * The FADT also contains an SCI_INT line, by which the system
712 * gets interrupts such as power and sleep buttons. If it's not
713 * on a Legacy interrupt, it needs to be setup.
714 */
715 if (acpi_table_parse(ACPI_FADT, acpi_parse_fadt) < 1)
716 printk(KERN_ERR PREFIX "Can't find FADT\n");
717
718#ifdef CONFIG_SMP
719 if (available_cpus == 0) {
720 printk(KERN_INFO "ACPI: Found 0 CPUS; assuming 1\n");
721 printk(KERN_INFO "CPU 0 (0x%04x)", hard_smp_processor_id());
Len Brown4be44fc2005-08-05 00:44:28 -0400722 smp_boot_data.cpu_phys_id[available_cpus] =
723 hard_smp_processor_id();
724 available_cpus = 1; /* We've got at least one of these, no? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 }
726 smp_boot_data.cpu_count = available_cpus;
727
728 smp_build_cpu_map();
729# ifdef CONFIG_ACPI_NUMA
730 if (srat_num_cpus == 0) {
731 int cpu, i = 1;
732 for (cpu = 0; cpu < smp_boot_data.cpu_count; cpu++)
Len Brown4be44fc2005-08-05 00:44:28 -0400733 if (smp_boot_data.cpu_phys_id[cpu] !=
734 hard_smp_processor_id())
735 node_cpuid[i++].phys_id =
736 smp_boot_data.cpu_phys_id[cpu];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738# endif
739#endif
Tony Luck8d7e3512005-07-06 18:18:10 -0700740#ifdef CONFIG_ACPI_NUMA
741 build_cpu_to_node_map();
742#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 /* Make boot-up look pretty */
Len Brown4be44fc2005-08-05 00:44:28 -0400744 printk(KERN_INFO "%d CPUs available, %d CPUs total\n", available_cpus,
745 total_cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 return 0;
747}
748
Len Brown4be44fc2005-08-05 00:44:28 -0400749int acpi_gsi_to_irq(u32 gsi, unsigned int *irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750{
751 int vector;
752
753 if (has_8259 && gsi < 16)
754 *irq = isa_irq_to_vector(gsi);
755 else {
756 vector = gsi_to_vector(gsi);
757 if (vector == -1)
758 return -1;
759
760 *irq = vector;
761 }
762 return 0;
763}
764
765/*
766 * ACPI based hotplug CPU support
767 */
768#ifdef CONFIG_ACPI_HOTPLUG_CPU
769static
Len Brown4be44fc2005-08-05 00:44:28 -0400770int acpi_map_cpu2node(acpi_handle handle, int cpu, long physid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771{
772#ifdef CONFIG_ACPI_NUMA
Len Brown4be44fc2005-08-05 00:44:28 -0400773 int pxm_id;
KAMEZAWA Hiroyuki08992982006-09-25 16:25:21 -0700774 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
776 pxm_id = acpi_get_pxm(handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 /*
KAMEZAWA Hiroyuki08992982006-09-25 16:25:21 -0700778 * We don't have cpu-only-node hotadd. But if the system equips
779 * SRAT table, pxm is already found and node is ready.
780 * So, just pxm_to_nid(pxm) is OK.
781 * This code here is for the system which doesn't have full SRAT
782 * table for possible cpus.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 */
KAMEZAWA Hiroyuki08992982006-09-25 16:25:21 -0700784 nid = acpi_map_pxm_to_node(pxm_id);
Len Brown4be44fc2005-08-05 00:44:28 -0400785 node_cpuid[cpu].phys_id = physid;
KAMEZAWA Hiroyuki08992982006-09-25 16:25:21 -0700786 node_cpuid[cpu].nid = nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787#endif
Len Brown4be44fc2005-08-05 00:44:28 -0400788 return (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789}
790
Ashok Raja6b14fa2006-02-14 15:01:12 -0800791int additional_cpus __initdata = -1;
792
793static __init int setup_additional_cpus(char *s)
794{
795 if (s)
796 additional_cpus = simple_strtol(s, NULL, 0);
797
798 return 0;
799}
800
801early_param("additional_cpus", setup_additional_cpus);
802
803/*
804 * cpu_possible_map should be static, it cannot change as cpu's
805 * are onlined, or offlined. The reason is per-cpu data-structures
806 * are allocated by some modules at init time, and dont expect to
807 * do this dynamically on cpu arrival/departure.
808 * cpu_present_map on the other hand can change dynamically.
809 * In case when cpu_hotplug is not compiled, then we resort to current
810 * behaviour, which is cpu_possible == cpu_present.
811 * - Ashok Raj
812 *
813 * Three ways to find out the number of additional hotplug CPUs:
814 * - If the BIOS specified disabled CPUs in ACPI/mptables use that.
815 * - The user can overwrite it with additional_cpus=NUM
816 * - Otherwise don't reserve additional CPUs.
817 */
818__init void prefill_possible_map(void)
819{
820 int i;
821 int possible, disabled_cpus;
822
823 disabled_cpus = total_cpus - available_cpus;
Ashok Raj8f8b11382006-02-16 14:01:48 -0800824
Ashok Raja6b14fa2006-02-14 15:01:12 -0800825 if (additional_cpus == -1) {
Ashok Raj8f8b11382006-02-16 14:01:48 -0800826 if (disabled_cpus > 0)
Ashok Raja6b14fa2006-02-14 15:01:12 -0800827 additional_cpus = disabled_cpus;
Ashok Raj8f8b11382006-02-16 14:01:48 -0800828 else
Ashok Raja6b14fa2006-02-14 15:01:12 -0800829 additional_cpus = 0;
Ashok Raj8f8b11382006-02-16 14:01:48 -0800830 }
831
832 possible = available_cpus + additional_cpus;
833
Ashok Raja6b14fa2006-02-14 15:01:12 -0800834 if (possible > NR_CPUS)
835 possible = NR_CPUS;
836
837 printk(KERN_INFO "SMP: Allowing %d CPUs, %d hotplug CPUs\n",
Ashok Raj8f8b11382006-02-16 14:01:48 -0800838 possible, max((possible - available_cpus), 0));
Ashok Raja6b14fa2006-02-14 15:01:12 -0800839
840 for (i = 0; i < possible; i++)
841 cpu_set(i, cpu_possible_map);
842}
843
Len Brown4be44fc2005-08-05 00:44:28 -0400844int acpi_map_lsapic(acpi_handle handle, int *pcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845{
Len Brown4be44fc2005-08-05 00:44:28 -0400846 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 union acpi_object *obj;
848 struct acpi_table_lsapic *lsapic;
849 cpumask_t tmp_map;
850 long physid;
851 int cpu;
Len Brown4be44fc2005-08-05 00:44:28 -0400852
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 if (ACPI_FAILURE(acpi_evaluate_object(handle, "_MAT", NULL, &buffer)))
854 return -EINVAL;
855
Len Brown4be44fc2005-08-05 00:44:28 -0400856 if (!buffer.length || !buffer.pointer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 return -EINVAL;
Len Brown4be44fc2005-08-05 00:44:28 -0400858
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 obj = buffer.pointer;
860 if (obj->type != ACPI_TYPE_BUFFER ||
861 obj->buffer.length < sizeof(*lsapic)) {
Len Brown02438d82006-06-30 03:19:10 -0400862 kfree(buffer.pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 return -EINVAL;
864 }
865
866 lsapic = (struct acpi_table_lsapic *)obj->buffer.pointer;
867
868 if ((lsapic->header.type != ACPI_MADT_LSAPIC) ||
869 (!lsapic->flags.enabled)) {
Len Brown02438d82006-06-30 03:19:10 -0400870 kfree(buffer.pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 return -EINVAL;
872 }
873
Len Brown4be44fc2005-08-05 00:44:28 -0400874 physid = ((lsapic->id << 8) | (lsapic->eid));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
Len Brown02438d82006-06-30 03:19:10 -0400876 kfree(buffer.pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 buffer.length = ACPI_ALLOCATE_BUFFER;
878 buffer.pointer = NULL;
879
880 cpus_complement(tmp_map, cpu_present_map);
881 cpu = first_cpu(tmp_map);
Len Brown4be44fc2005-08-05 00:44:28 -0400882 if (cpu >= NR_CPUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 return -EINVAL;
884
885 acpi_map_cpu2node(handle, cpu, physid);
886
Len Brown4be44fc2005-08-05 00:44:28 -0400887 cpu_set(cpu, cpu_present_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 ia64_cpu_to_sapicid[cpu] = physid;
889 ia64_acpiid_to_sapicid[lsapic->acpi_id] = ia64_cpu_to_sapicid[cpu];
890
891 *pcpu = cpu;
Len Brown4be44fc2005-08-05 00:44:28 -0400892 return (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893}
Len Brown4be44fc2005-08-05 00:44:28 -0400894
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895EXPORT_SYMBOL(acpi_map_lsapic);
896
Len Brown4be44fc2005-08-05 00:44:28 -0400897int acpi_unmap_lsapic(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898{
899 int i;
900
Len Brown4be44fc2005-08-05 00:44:28 -0400901 for (i = 0; i < MAX_SAPICS; i++) {
902 if (ia64_acpiid_to_sapicid[i] == ia64_cpu_to_sapicid[cpu]) {
903 ia64_acpiid_to_sapicid[i] = -1;
904 break;
905 }
906 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 ia64_cpu_to_sapicid[cpu] = -1;
Len Brown4be44fc2005-08-05 00:44:28 -0400908 cpu_clear(cpu, cpu_present_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
910#ifdef CONFIG_ACPI_NUMA
911 /* NUMA specific cleanup's */
912#endif
913
Len Brown4be44fc2005-08-05 00:44:28 -0400914 return (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915}
Len Brown4be44fc2005-08-05 00:44:28 -0400916
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917EXPORT_SYMBOL(acpi_unmap_lsapic);
Len Brown4be44fc2005-08-05 00:44:28 -0400918#endif /* CONFIG_ACPI_HOTPLUG_CPU */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
920#ifdef CONFIG_ACPI_NUMA
Bjorn Helgaas650316f2005-09-16 11:43:45 -0600921static acpi_status __devinit
Len Brown4be44fc2005-08-05 00:44:28 -0400922acpi_map_iosapic(acpi_handle handle, u32 depth, void *context, void **ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923{
Len Brown4be44fc2005-08-05 00:44:28 -0400924 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 union acpi_object *obj;
926 struct acpi_table_iosapic *iosapic;
927 unsigned int gsi_base;
Alex Williamsonbb0fc082005-03-24 22:58:00 -0700928 int pxm, node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
930 /* Only care about objects w/ a method that returns the MADT */
931 if (ACPI_FAILURE(acpi_evaluate_object(handle, "_MAT", NULL, &buffer)))
932 return AE_OK;
933
934 if (!buffer.length || !buffer.pointer)
935 return AE_OK;
936
937 obj = buffer.pointer;
938 if (obj->type != ACPI_TYPE_BUFFER ||
939 obj->buffer.length < sizeof(*iosapic)) {
Len Brown02438d82006-06-30 03:19:10 -0400940 kfree(buffer.pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 return AE_OK;
942 }
943
944 iosapic = (struct acpi_table_iosapic *)obj->buffer.pointer;
945
946 if (iosapic->header.type != ACPI_MADT_IOSAPIC) {
Len Brown02438d82006-06-30 03:19:10 -0400947 kfree(buffer.pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 return AE_OK;
949 }
950
951 gsi_base = iosapic->global_irq_base;
952
Len Brown02438d82006-06-30 03:19:10 -0400953 kfree(buffer.pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
955 /*
Alex Williamsonbb0fc082005-03-24 22:58:00 -0700956 * OK, it's an IOSAPIC MADT entry, look for a _PXM value to tell
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 * us which node to associate this with.
958 */
Alex Williamsonbb0fc082005-03-24 22:58:00 -0700959 pxm = acpi_get_pxm(handle);
960 if (pxm < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 return AE_OK;
962
Yasunori Goto762834e2006-06-23 02:03:19 -0700963 node = pxm_to_node(pxm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
965 if (node >= MAX_NUMNODES || !node_online(node) ||
966 cpus_empty(node_to_cpumask(node)))
967 return AE_OK;
968
969 /* We know a gsi to node mapping! */
970 map_iosapic_to_node(gsi_base, node);
971 return AE_OK;
972}
Bjorn Helgaas650316f2005-09-16 11:43:45 -0600973
974static int __init
975acpi_map_iosapics (void)
976{
977 acpi_get_devices(NULL, acpi_map_iosapic, NULL, NULL);
978 return 0;
979}
980
981fs_initcall(acpi_map_iosapics);
982#endif /* CONFIG_ACPI_NUMA */
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700983
Len Brown4be44fc2005-08-05 00:44:28 -0400984int acpi_register_ioapic(acpi_handle handle, u64 phys_addr, u32 gsi_base)
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700985{
Kenji Kaneshige0e888ad2005-04-28 00:25:58 -0700986 int err;
987
988 if ((err = iosapic_init(phys_addr, gsi_base)))
989 return err;
990
Peter Chubb24b8e0c2005-09-15 15:36:35 +1000991#ifdef CONFIG_ACPI_NUMA
Kenji Kaneshige0e888ad2005-04-28 00:25:58 -0700992 acpi_map_iosapic(handle, 0, NULL, NULL);
Len Brown4be44fc2005-08-05 00:44:28 -0400993#endif /* CONFIG_ACPI_NUMA */
Kenji Kaneshige0e888ad2005-04-28 00:25:58 -0700994
995 return 0;
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700996}
Len Brown4be44fc2005-08-05 00:44:28 -0400997
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -0700998EXPORT_SYMBOL(acpi_register_ioapic);
999
Len Brown4be44fc2005-08-05 00:44:28 -04001000int acpi_unregister_ioapic(acpi_handle handle, u32 gsi_base)
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -07001001{
Kenji Kaneshige0e888ad2005-04-28 00:25:58 -07001002 return iosapic_remove(gsi_base);
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -07001003}
Len Brown4be44fc2005-08-05 00:44:28 -04001004
Kenji Kaneshigeb1bb2482005-04-28 00:25:58 -07001005EXPORT_SYMBOL(acpi_unregister_ioapic);
1006
Len Brown888ba6c2005-08-24 12:07:20 -04001007#endif /* CONFIG_ACPI */