blob: 1c118b72df3c5a3ed02f05ad2f5596240850a613 [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
77u16 ia64_acpiid_to_sapicid[MAX_SAPICS] =
78 { [0 ... MAX_SAPICS - 1] = -1 };
79EXPORT_SYMBOL(ia64_acpiid_to_sapicid);
80
81const char *
82acpi_get_sysname (void)
83{
84#ifdef CONFIG_IA64_GENERIC
85 unsigned long rsdp_phys;
86 struct acpi20_table_rsdp *rsdp;
87 struct acpi_table_xsdt *xsdt;
88 struct acpi_table_header *hdr;
89
90 rsdp_phys = acpi_find_rsdp();
91 if (!rsdp_phys) {
92 printk(KERN_ERR "ACPI 2.0 RSDP not found, default to \"dig\"\n");
93 return "dig";
94 }
95
96 rsdp = (struct acpi20_table_rsdp *) __va(rsdp_phys);
97 if (strncmp(rsdp->signature, RSDP_SIG, sizeof(RSDP_SIG) - 1)) {
98 printk(KERN_ERR "ACPI 2.0 RSDP signature incorrect, default to \"dig\"\n");
99 return "dig";
100 }
101
102 xsdt = (struct acpi_table_xsdt *) __va(rsdp->xsdt_address);
103 hdr = &xsdt->header;
104 if (strncmp(hdr->signature, XSDT_SIG, sizeof(XSDT_SIG) - 1)) {
105 printk(KERN_ERR "ACPI 2.0 XSDT signature incorrect, default to \"dig\"\n");
106 return "dig";
107 }
108
109 if (!strcmp(hdr->oem_id, "HP")) {
110 return "hpzx1";
111 }
112 else if (!strcmp(hdr->oem_id, "SGI")) {
113 return "sn2";
114 }
115
116 return "dig";
117#else
118# if defined (CONFIG_IA64_HP_SIM)
119 return "hpsim";
120# elif defined (CONFIG_IA64_HP_ZX1)
121 return "hpzx1";
122# elif defined (CONFIG_IA64_HP_ZX1_SWIOTLB)
123 return "hpzx1_swiotlb";
124# elif defined (CONFIG_IA64_SGI_SN2)
125 return "sn2";
126# elif defined (CONFIG_IA64_DIG)
127 return "dig";
128# else
129# error Unknown platform. Fix acpi.c.
130# endif
131#endif
132}
133
134#ifdef CONFIG_ACPI_BOOT
135
136#define ACPI_MAX_PLATFORM_INTERRUPTS 256
137
138/* Array to record platform interrupt vectors for generic interrupt routing. */
139int platform_intr_list[ACPI_MAX_PLATFORM_INTERRUPTS] = {
140 [0 ... ACPI_MAX_PLATFORM_INTERRUPTS - 1] = -1
141};
142
143enum acpi_irq_model_id acpi_irq_model = ACPI_IRQ_MODEL_IOSAPIC;
144
145/*
146 * Interrupt routing API for device drivers. Provides interrupt vector for
147 * a generic platform event. Currently only CPEI is implemented.
148 */
149int
150acpi_request_vector (u32 int_type)
151{
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
158 printk(KERN_ERR "acpi_request_vector(): invalid interrupt type\n");
159 return vector;
160}
161
162char *
163__acpi_map_table (unsigned long phys_addr, unsigned long size)
164{
165 return __va(phys_addr);
166}
167
168/* --------------------------------------------------------------------------
169 Boot-time Table Parsing
170 -------------------------------------------------------------------------- */
171
172static int total_cpus __initdata;
173static int available_cpus __initdata;
174struct acpi_table_madt * acpi_madt __initdata;
175static u8 has_8259;
176
177
178static int __init
179acpi_parse_lapic_addr_ovr (
180 acpi_table_entry_header *header, const unsigned long end)
181{
182 struct acpi_table_lapic_addr_ovr *lapic;
183
184 lapic = (struct acpi_table_lapic_addr_ovr *) header;
185
186 if (BAD_MADT_ENTRY(lapic, end))
187 return -EINVAL;
188
189 if (lapic->address) {
190 iounmap(ipi_base_addr);
191 ipi_base_addr = ioremap(lapic->address, 0);
192 }
193 return 0;
194}
195
196
197static int __init
198acpi_parse_lsapic (acpi_table_entry_header *header, const unsigned long end)
199{
200 struct acpi_table_lsapic *lsapic;
201
202 lsapic = (struct acpi_table_lsapic *) header;
203
204 if (BAD_MADT_ENTRY(lsapic, end))
205 return -EINVAL;
206
207 if (lsapic->flags.enabled) {
208#ifdef CONFIG_SMP
209 smp_boot_data.cpu_phys_id[available_cpus] = (lsapic->id << 8) | lsapic->eid;
210#endif
211 ia64_acpiid_to_sapicid[lsapic->acpi_id] = (lsapic->id << 8) | lsapic->eid;
212 ++available_cpus;
213 }
214
215 total_cpus++;
216 return 0;
217}
218
219
220static int __init
221acpi_parse_lapic_nmi (acpi_table_entry_header *header, const unsigned long end)
222{
223 struct acpi_table_lapic_nmi *lacpi_nmi;
224
225 lacpi_nmi = (struct acpi_table_lapic_nmi*) header;
226
227 if (BAD_MADT_ENTRY(lacpi_nmi, end))
228 return -EINVAL;
229
230 /* TBD: Support lapic_nmi entries */
231 return 0;
232}
233
234
235static int __init
236acpi_parse_iosapic (acpi_table_entry_header *header, const unsigned long end)
237{
238 struct acpi_table_iosapic *iosapic;
239
240 iosapic = (struct acpi_table_iosapic *) header;
241
242 if (BAD_MADT_ENTRY(iosapic, end))
243 return -EINVAL;
244
245 iosapic_init(iosapic->address, iosapic->global_irq_base);
246
247 return 0;
248}
249
250
251static int __init
252acpi_parse_plat_int_src (
253 acpi_table_entry_header *header, const unsigned long end)
254{
255 struct acpi_table_plat_int_src *plintsrc;
256 int vector;
257
258 plintsrc = (struct acpi_table_plat_int_src *) header;
259
260 if (BAD_MADT_ENTRY(plintsrc, end))
261 return -EINVAL;
262
263 /*
264 * Get vector assignment for this interrupt, set attributes,
265 * and program the IOSAPIC routing table.
266 */
267 vector = iosapic_register_platform_intr(plintsrc->type,
268 plintsrc->global_irq,
269 plintsrc->iosapic_vector,
270 plintsrc->eid,
271 plintsrc->id,
272 (plintsrc->flags.polarity == 1) ? IOSAPIC_POL_HIGH : IOSAPIC_POL_LOW,
273 (plintsrc->flags.trigger == 1) ? IOSAPIC_EDGE : IOSAPIC_LEVEL);
274
275 platform_intr_list[plintsrc->type] = vector;
Ashok Raj55e59c52005-03-31 22:51:10 -0500276 if (acpi_madt_rev > 1) {
277 acpi_cpei_override = plintsrc->plint_flags.cpei_override_flag;
278 }
279
280 /*
281 * Save the physical id, so we can check when its being removed
282 */
283 acpi_cpei_phys_cpuid = ((plintsrc->id << 8) | (plintsrc->eid)) & 0xffff;
284
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 return 0;
286}
287
288
Ashok Raj55e59c52005-03-31 22:51:10 -0500289unsigned int can_cpei_retarget(void)
290{
291 extern int cpe_vector;
292
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 */
298 if (cpe_vector > 0 && !acpi_cpei_override)
299 return 0;
300 else
301 return 1;
302}
303
304unsigned int is_cpu_cpei_target(unsigned int cpu)
305{
306 unsigned int logical_id;
307
308 logical_id = cpu_logical_id(acpi_cpei_phys_cpuid);
309
310 if (logical_id == cpu)
311 return 1;
312 else
313 return 0;
314}
315
316void set_cpei_target_cpu(unsigned int cpu)
317{
318 acpi_cpei_phys_cpuid = cpu_physical_id(cpu);
319}
320
321unsigned int get_cpei_target_cpu(void)
322{
323 return acpi_cpei_phys_cpuid;
324}
325
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326static int __init
327acpi_parse_int_src_ovr (
328 acpi_table_entry_header *header, const unsigned long end)
329{
330 struct acpi_table_int_src_ovr *p;
331
332 p = (struct acpi_table_int_src_ovr *) header;
333
334 if (BAD_MADT_ENTRY(p, end))
335 return -EINVAL;
336
337 iosapic_override_isa_irq(p->bus_irq, p->global_irq,
338 (p->flags.polarity == 1) ? IOSAPIC_POL_HIGH : IOSAPIC_POL_LOW,
339 (p->flags.trigger == 1) ? IOSAPIC_EDGE : IOSAPIC_LEVEL);
340 return 0;
341}
342
343
344static int __init
345acpi_parse_nmi_src (acpi_table_entry_header *header, const unsigned long end)
346{
347 struct acpi_table_nmi_src *nmi_src;
348
349 nmi_src = (struct acpi_table_nmi_src*) header;
350
351 if (BAD_MADT_ENTRY(nmi_src, end))
352 return -EINVAL;
353
354 /* TBD: Support nimsrc entries */
355 return 0;
356}
357
358static void __init
359acpi_madt_oem_check (char *oem_id, char *oem_table_id)
360{
361 if (!strncmp(oem_id, "IBM", 3) &&
362 (!strncmp(oem_table_id, "SERMOW", 6))) {
363
364 /*
365 * Unfortunately ITC_DRIFT is not yet part of the
366 * official SAL spec, so the ITC_DRIFT bit is not
367 * set by the BIOS on this hardware.
368 */
369 sal_platform_features |= IA64_SAL_PLATFORM_FEATURE_ITC_DRIFT;
370
371 cyclone_setup();
372 }
373}
374
375static int __init
376acpi_parse_madt (unsigned long phys_addr, unsigned long size)
377{
378 if (!phys_addr || !size)
379 return -EINVAL;
380
381 acpi_madt = (struct acpi_table_madt *) __va(phys_addr);
382
Ashok Raj55e59c52005-03-31 22:51:10 -0500383 acpi_madt_rev = acpi_madt->header.revision;
384
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 /* remember the value for reference after free_initmem() */
386#ifdef CONFIG_ITANIUM
387 has_8259 = 1; /* Firmware on old Itanium systems is broken */
388#else
389 has_8259 = acpi_madt->flags.pcat_compat;
390#endif
391 iosapic_system_init(has_8259);
392
393 /* Get base address of IPI Message Block */
394
395 if (acpi_madt->lapic_address)
396 ipi_base_addr = ioremap(acpi_madt->lapic_address, 0);
397
398 printk(KERN_INFO PREFIX "Local APIC address %p\n", ipi_base_addr);
399
400 acpi_madt_oem_check(acpi_madt->header.oem_id,
401 acpi_madt->header.oem_table_id);
402
403 return 0;
404}
405
406
407#ifdef CONFIG_ACPI_NUMA
408
409#undef SLIT_DEBUG
410
411#define PXM_FLAG_LEN ((MAX_PXM_DOMAINS + 1)/32)
412
413static int __initdata srat_num_cpus; /* number of cpus */
414static 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))
417/* maps to convert between proximity domain and logical node ID */
418int __devinitdata pxm_to_nid_map[MAX_PXM_DOMAINS];
419int __initdata nid_to_pxm_map[MAX_NUMNODES];
420static struct acpi_table_slit __initdata *slit_table;
421
422/*
423 * ACPI 2.0 SLIT (System Locality Information Table)
424 * http://devresource.hp.com/devresource/Docs/TechPapers/IA64/slit.pdf
425 */
426void __init
427acpi_numa_slit_init (struct acpi_table_slit *slit)
428{
429 u32 len;
430
431 len = sizeof(struct acpi_table_header) + 8
432 + slit->localities * slit->localities;
433 if (slit->header.length != len) {
434 printk(KERN_ERR "ACPI 2.0 SLIT: size mismatch: %d expected, %d actual\n",
435 len, slit->header.length);
436 memset(numa_slit, 10, sizeof(numa_slit));
437 return;
438 }
439 slit_table = slit;
440}
441
442void __init
443acpi_numa_processor_affinity_init (struct acpi_table_processor_affinity *pa)
444{
445 /* record this node in proximity bitmap */
446 pxm_bit_set(pa->proximity_domain);
447
448 node_cpuid[srat_num_cpus].phys_id = (pa->apic_id << 8) | (pa->lsapic_eid);
449 /* nid should be overridden as logical node id later */
450 node_cpuid[srat_num_cpus].nid = pa->proximity_domain;
451 srat_num_cpus++;
452}
453
454void __init
455acpi_numa_memory_affinity_init (struct acpi_table_memory_affinity *ma)
456{
457 unsigned long paddr, size;
458 u8 pxm;
459 struct node_memblk_s *p, *q, *pend;
460
461 pxm = ma->proximity_domain;
462
463 /* fill node memory chunk structure */
464 paddr = ma->base_addr_hi;
465 paddr = (paddr << 32) | ma->base_addr_lo;
466 size = ma->length_hi;
467 size = (size << 32) | ma->length_lo;
468
469 /* Ignore disabled entries */
470 if (!ma->flags.enabled)
471 return;
472
473 /* record this node in proximity bitmap */
474 pxm_bit_set(pxm);
475
476 /* Insertion sort based on base address */
477 pend = &node_memblk[num_node_memblks];
478 for (p = &node_memblk[0]; p < pend; p++) {
479 if (paddr < p->start_paddr)
480 break;
481 }
482 if (p < pend) {
483 for (q = pend - 1; q >= p; q--)
484 *(q + 1) = *q;
485 }
486 p->start_paddr = paddr;
487 p->size = size;
488 p->nid = pxm;
489 num_node_memblks++;
490}
491
492void __init
493acpi_numa_arch_fixup (void)
494{
495 int i, j, node_from, node_to;
496
497 /* If there's no SRAT, fix the phys_id and mark node 0 online */
498 if (srat_num_cpus == 0) {
499 node_set_online(0);
500 node_cpuid[0].phys_id = hard_smp_processor_id();
501 return;
502 }
503
504 /*
505 * MCD - This can probably be dropped now. No need for pxm ID to node ID
506 * mapping with sparse node numbering iff MAX_PXM_DOMAINS <= MAX_NUMNODES.
507 */
508 /* calculate total number of nodes in system from PXM bitmap */
509 memset(pxm_to_nid_map, -1, sizeof(pxm_to_nid_map));
510 memset(nid_to_pxm_map, -1, sizeof(nid_to_pxm_map));
511 nodes_clear(node_online_map);
512 for (i = 0; i < MAX_PXM_DOMAINS; i++) {
513 if (pxm_bit_test(i)) {
514 int nid = num_online_nodes();
515 pxm_to_nid_map[i] = nid;
516 nid_to_pxm_map[nid] = i;
517 node_set_online(nid);
518 }
519 }
520
521 /* set logical node id in memory chunk structure */
522 for (i = 0; i < num_node_memblks; i++)
523 node_memblk[i].nid = pxm_to_nid_map[node_memblk[i].nid];
524
525 /* assign memory bank numbers for each chunk on each node */
526 for_each_online_node(i) {
527 int bank;
528
529 bank = 0;
530 for (j = 0; j < num_node_memblks; j++)
531 if (node_memblk[j].nid == i)
532 node_memblk[j].bank = bank++;
533 }
534
535 /* set logical node id in cpu structure */
536 for (i = 0; i < srat_num_cpus; i++)
537 node_cpuid[i].nid = pxm_to_nid_map[node_cpuid[i].nid];
538
539 printk(KERN_INFO "Number of logical nodes in system = %d\n", num_online_nodes());
540 printk(KERN_INFO "Number of memory chunks in system = %d\n", num_node_memblks);
541
542 if (!slit_table) return;
543 memset(numa_slit, -1, sizeof(numa_slit));
544 for (i=0; i<slit_table->localities; i++) {
545 if (!pxm_bit_test(i))
546 continue;
547 node_from = pxm_to_nid_map[i];
548 for (j=0; j<slit_table->localities; j++) {
549 if (!pxm_bit_test(j))
550 continue;
551 node_to = pxm_to_nid_map[j];
552 node_distance(node_from, node_to) =
553 slit_table->entry[i*slit_table->localities + j];
554 }
555 }
556
557#ifdef SLIT_DEBUG
558 printk("ACPI 2.0 SLIT locality table:\n");
559 for_each_online_node(i) {
560 for_each_online_node(j)
561 printk("%03d ", node_distance(i,j));
562 printk("\n");
563 }
564#endif
565}
566#endif /* CONFIG_ACPI_NUMA */
567
568unsigned int
569acpi_register_gsi (u32 gsi, int edge_level, int active_high_low)
570{
571 if (has_8259 && gsi < 16)
572 return isa_irq_to_vector(gsi);
573
574 return iosapic_register_intr(gsi,
575 (active_high_low == ACPI_ACTIVE_HIGH) ? IOSAPIC_POL_HIGH : IOSAPIC_POL_LOW,
576 (edge_level == ACPI_EDGE_SENSITIVE) ? IOSAPIC_EDGE : IOSAPIC_LEVEL);
577}
578EXPORT_SYMBOL(acpi_register_gsi);
579
580#ifdef CONFIG_ACPI_DEALLOCATE_IRQ
581void
582acpi_unregister_gsi (u32 gsi)
583{
584 iosapic_unregister_intr(gsi);
585}
586EXPORT_SYMBOL(acpi_unregister_gsi);
587#endif /* CONFIG_ACPI_DEALLOCATE_IRQ */
588
589static int __init
590acpi_parse_fadt (unsigned long phys_addr, unsigned long size)
591{
592 struct acpi_table_header *fadt_header;
593 struct fadt_descriptor_rev2 *fadt;
594
595 if (!phys_addr || !size)
596 return -EINVAL;
597
598 fadt_header = (struct acpi_table_header *) __va(phys_addr);
599 if (fadt_header->revision != 3)
600 return -ENODEV; /* Only deal with ACPI 2.0 FADT */
601
602 fadt = (struct fadt_descriptor_rev2 *) fadt_header;
603
604 if (!(fadt->iapc_boot_arch & BAF_8042_KEYBOARD_CONTROLLER))
605 acpi_kbd_controller_present = 0;
606
607 if (fadt->iapc_boot_arch & BAF_LEGACY_DEVICES)
608 acpi_legacy_devices = 1;
609
610 acpi_register_gsi(fadt->sci_int, ACPI_LEVEL_SENSITIVE, ACPI_ACTIVE_LOW);
611 return 0;
612}
613
614
615unsigned long __init
616acpi_find_rsdp (void)
617{
618 unsigned long rsdp_phys = 0;
619
620 if (efi.acpi20)
621 rsdp_phys = __pa(efi.acpi20);
622 else if (efi.acpi)
623 printk(KERN_WARNING PREFIX "v1.0/r0.71 tables no longer supported\n");
624 return rsdp_phys;
625}
626
627
628int __init
629acpi_boot_init (void)
630{
631
632 /*
633 * MADT
634 * ----
635 * Parse the Multiple APIC Description Table (MADT), if exists.
636 * Note that this table provides platform SMP configuration
637 * information -- the successor to MPS tables.
638 */
639
640 if (acpi_table_parse(ACPI_APIC, acpi_parse_madt) < 1) {
641 printk(KERN_ERR PREFIX "Can't find MADT\n");
642 goto skip_madt;
643 }
644
645 /* Local APIC */
646
647 if (acpi_table_parse_madt(ACPI_MADT_LAPIC_ADDR_OVR, acpi_parse_lapic_addr_ovr, 0) < 0)
648 printk(KERN_ERR PREFIX "Error parsing LAPIC address override entry\n");
649
650 if (acpi_table_parse_madt(ACPI_MADT_LSAPIC, acpi_parse_lsapic, NR_CPUS) < 1)
651 printk(KERN_ERR PREFIX "Error parsing MADT - no LAPIC entries\n");
652
653 if (acpi_table_parse_madt(ACPI_MADT_LAPIC_NMI, acpi_parse_lapic_nmi, 0) < 0)
654 printk(KERN_ERR PREFIX "Error parsing LAPIC NMI entry\n");
655
656 /* I/O APIC */
657
658 if (acpi_table_parse_madt(ACPI_MADT_IOSAPIC, acpi_parse_iosapic, NR_IOSAPICS) < 1)
659 printk(KERN_ERR PREFIX "Error parsing MADT - no IOSAPIC entries\n");
660
661 /* System-Level Interrupt Routing */
662
663 if (acpi_table_parse_madt(ACPI_MADT_PLAT_INT_SRC, acpi_parse_plat_int_src, ACPI_MAX_PLATFORM_INTERRUPTS) < 0)
664 printk(KERN_ERR PREFIX "Error parsing platform interrupt source entry\n");
665
666 if (acpi_table_parse_madt(ACPI_MADT_INT_SRC_OVR, acpi_parse_int_src_ovr, 0) < 0)
667 printk(KERN_ERR PREFIX "Error parsing interrupt source overrides entry\n");
668
669 if (acpi_table_parse_madt(ACPI_MADT_NMI_SRC, acpi_parse_nmi_src, 0) < 0)
670 printk(KERN_ERR PREFIX "Error parsing NMI SRC entry\n");
671 skip_madt:
672
673 /*
674 * FADT says whether a legacy keyboard controller is present.
675 * The FADT also contains an SCI_INT line, by which the system
676 * gets interrupts such as power and sleep buttons. If it's not
677 * on a Legacy interrupt, it needs to be setup.
678 */
679 if (acpi_table_parse(ACPI_FADT, acpi_parse_fadt) < 1)
680 printk(KERN_ERR PREFIX "Can't find FADT\n");
681
682#ifdef CONFIG_SMP
683 if (available_cpus == 0) {
684 printk(KERN_INFO "ACPI: Found 0 CPUS; assuming 1\n");
685 printk(KERN_INFO "CPU 0 (0x%04x)", hard_smp_processor_id());
686 smp_boot_data.cpu_phys_id[available_cpus] = hard_smp_processor_id();
687 available_cpus = 1; /* We've got at least one of these, no? */
688 }
689 smp_boot_data.cpu_count = available_cpus;
690
691 smp_build_cpu_map();
692# ifdef CONFIG_ACPI_NUMA
693 if (srat_num_cpus == 0) {
694 int cpu, i = 1;
695 for (cpu = 0; cpu < smp_boot_data.cpu_count; cpu++)
696 if (smp_boot_data.cpu_phys_id[cpu] != hard_smp_processor_id())
697 node_cpuid[i++].phys_id = smp_boot_data.cpu_phys_id[cpu];
698 }
699 build_cpu_to_node_map();
700# endif
701#endif
702 /* Make boot-up look pretty */
703 printk(KERN_INFO "%d CPUs available, %d CPUs total\n", available_cpus, total_cpus);
704 return 0;
705}
706
707int
708acpi_gsi_to_irq (u32 gsi, unsigned int *irq)
709{
710 int vector;
711
712 if (has_8259 && gsi < 16)
713 *irq = isa_irq_to_vector(gsi);
714 else {
715 vector = gsi_to_vector(gsi);
716 if (vector == -1)
717 return -1;
718
719 *irq = vector;
720 }
721 return 0;
722}
723
724/*
725 * ACPI based hotplug CPU support
726 */
727#ifdef CONFIG_ACPI_HOTPLUG_CPU
728static
729int
730acpi_map_cpu2node(acpi_handle handle, int cpu, long physid)
731{
732#ifdef CONFIG_ACPI_NUMA
733 int pxm_id;
734
735 pxm_id = acpi_get_pxm(handle);
736
737 /*
738 * Assuming that the container driver would have set the proximity
739 * domain and would have initialized pxm_to_nid_map[pxm_id] && pxm_flag
740 */
741 node_cpuid[cpu].nid = (pxm_id < 0) ? 0:
742 pxm_to_nid_map[pxm_id];
743
744 node_cpuid[cpu].phys_id = physid;
745#endif
746 return(0);
747}
748
749
750int
751acpi_map_lsapic(acpi_handle handle, int *pcpu)
752{
753 struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL};
754 union acpi_object *obj;
755 struct acpi_table_lsapic *lsapic;
756 cpumask_t tmp_map;
757 long physid;
758 int cpu;
759
760 if (ACPI_FAILURE(acpi_evaluate_object(handle, "_MAT", NULL, &buffer)))
761 return -EINVAL;
762
763 if (!buffer.length || !buffer.pointer)
764 return -EINVAL;
765
766 obj = buffer.pointer;
767 if (obj->type != ACPI_TYPE_BUFFER ||
768 obj->buffer.length < sizeof(*lsapic)) {
769 acpi_os_free(buffer.pointer);
770 return -EINVAL;
771 }
772
773 lsapic = (struct acpi_table_lsapic *)obj->buffer.pointer;
774
775 if ((lsapic->header.type != ACPI_MADT_LSAPIC) ||
776 (!lsapic->flags.enabled)) {
777 acpi_os_free(buffer.pointer);
778 return -EINVAL;
779 }
780
781 physid = ((lsapic->id <<8) | (lsapic->eid));
782
783 acpi_os_free(buffer.pointer);
784 buffer.length = ACPI_ALLOCATE_BUFFER;
785 buffer.pointer = NULL;
786
787 cpus_complement(tmp_map, cpu_present_map);
788 cpu = first_cpu(tmp_map);
789 if(cpu >= NR_CPUS)
790 return -EINVAL;
791
792 acpi_map_cpu2node(handle, cpu, physid);
793
794 cpu_set(cpu, cpu_present_map);
795 ia64_cpu_to_sapicid[cpu] = physid;
796 ia64_acpiid_to_sapicid[lsapic->acpi_id] = ia64_cpu_to_sapicid[cpu];
797
798 *pcpu = cpu;
799 return(0);
800}
801EXPORT_SYMBOL(acpi_map_lsapic);
802
803
804int
805acpi_unmap_lsapic(int cpu)
806{
807 int i;
808
809 for (i=0; i<MAX_SAPICS; i++) {
810 if (ia64_acpiid_to_sapicid[i] == ia64_cpu_to_sapicid[cpu]) {
811 ia64_acpiid_to_sapicid[i] = -1;
812 break;
813 }
814 }
815 ia64_cpu_to_sapicid[cpu] = -1;
816 cpu_clear(cpu,cpu_present_map);
817
818#ifdef CONFIG_ACPI_NUMA
819 /* NUMA specific cleanup's */
820#endif
821
822 return(0);
823}
824EXPORT_SYMBOL(acpi_unmap_lsapic);
825#endif /* CONFIG_ACPI_HOTPLUG_CPU */
826
827
828#ifdef CONFIG_ACPI_NUMA
829acpi_status __init
830acpi_map_iosapic (acpi_handle handle, u32 depth, void *context, void **ret)
831{
832 struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL};
833 union acpi_object *obj;
834 struct acpi_table_iosapic *iosapic;
835 unsigned int gsi_base;
Alex Williamsonbb0fc082005-03-24 22:58:00 -0700836 int pxm, node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
838 /* Only care about objects w/ a method that returns the MADT */
839 if (ACPI_FAILURE(acpi_evaluate_object(handle, "_MAT", NULL, &buffer)))
840 return AE_OK;
841
842 if (!buffer.length || !buffer.pointer)
843 return AE_OK;
844
845 obj = buffer.pointer;
846 if (obj->type != ACPI_TYPE_BUFFER ||
847 obj->buffer.length < sizeof(*iosapic)) {
848 acpi_os_free(buffer.pointer);
849 return AE_OK;
850 }
851
852 iosapic = (struct acpi_table_iosapic *)obj->buffer.pointer;
853
854 if (iosapic->header.type != ACPI_MADT_IOSAPIC) {
855 acpi_os_free(buffer.pointer);
856 return AE_OK;
857 }
858
859 gsi_base = iosapic->global_irq_base;
860
861 acpi_os_free(buffer.pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
863 /*
Alex Williamsonbb0fc082005-03-24 22:58:00 -0700864 * OK, it's an IOSAPIC MADT entry, look for a _PXM value to tell
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 * us which node to associate this with.
866 */
Alex Williamsonbb0fc082005-03-24 22:58:00 -0700867 pxm = acpi_get_pxm(handle);
868 if (pxm < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 return AE_OK;
870
Alex Williamsonbb0fc082005-03-24 22:58:00 -0700871 node = pxm_to_nid_map[pxm];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
873 if (node >= MAX_NUMNODES || !node_online(node) ||
874 cpus_empty(node_to_cpumask(node)))
875 return AE_OK;
876
877 /* We know a gsi to node mapping! */
878 map_iosapic_to_node(gsi_base, node);
879 return AE_OK;
880}
881#endif /* CONFIG_NUMA */
882#endif /* CONFIG_ACPI_BOOT */