2 * ACPI 3.0 based NUMA setup
3 * Copyright 2004 Andi Kleen, SuSE Labs.
5 * Reads the ACPI SRAT table to figure out what memory belongs to which CPUs.
7 * Called from acpi_numa_init while reading the SRAT and SLIT tables.
8 * Assumes all memory regions belonging to a single proximity domain
9 * are in one chunk. Holes between them will be included in the node.
12 #include <linux/kernel.h>
13 #include <linux/acpi.h>
14 #include <linux/mmzone.h>
15 #include <linux/bitmap.h>
16 #include <linux/init.h>
17 #include <linux/topology.h>
19 #include <asm/proto.h>
23 #include <asm/uv/uv.h>
25 /* Callback for Proximity Domain -> x2APIC mapping */
27 acpi_numa_x2apic_affinity_init(struct acpi_srat_x2apic_cpu_affinity
*pa
)
34 if (pa
->header
.length
< sizeof(struct acpi_srat_x2apic_cpu_affinity
)) {
38 if ((pa
->flags
& ACPI_SRAT_CPU_ENABLED
) == 0)
40 pxm
= pa
->proximity_domain
;
41 apic_id
= pa
->apic_id
;
42 if (!apic
->apic_id_valid(apic_id
)) {
43 printk(KERN_INFO
"SRAT: PXM %u -> X2APIC 0x%04x ignored\n",
47 node
= acpi_map_pxm_to_node(pxm
);
49 printk(KERN_ERR
"SRAT: Too many proximity domains %x\n", pxm
);
54 if (apic_id
>= MAX_LOCAL_APIC
) {
55 printk(KERN_INFO
"SRAT: PXM %u -> APIC 0x%04x -> Node %u skipped apicid that is too big\n", pxm
, apic_id
, node
);
58 set_apicid_to_node(apic_id
, node
);
59 node_set(node
, numa_nodes_parsed
);
60 printk(KERN_INFO
"SRAT: PXM %u -> APIC 0x%04x -> Node %u\n",
64 /* Callback for Proximity Domain -> LAPIC mapping */
66 acpi_numa_processor_affinity_init(struct acpi_srat_cpu_affinity
*pa
)
73 if (pa
->header
.length
!= sizeof(struct acpi_srat_cpu_affinity
)) {
77 if ((pa
->flags
& ACPI_SRAT_CPU_ENABLED
) == 0)
79 pxm
= pa
->proximity_domain_lo
;
80 if (acpi_srat_revision
>= 2)
81 pxm
|= *((unsigned int*)pa
->proximity_domain_hi
) << 8;
82 node
= acpi_map_pxm_to_node(pxm
);
84 printk(KERN_ERR
"SRAT: Too many proximity domains %x\n", pxm
);
89 if (get_uv_system_type() >= UV_X2APIC
)
90 apic_id
= (pa
->apic_id
<< 8) | pa
->local_sapic_eid
;
92 apic_id
= pa
->apic_id
;
94 if (apic_id
>= MAX_LOCAL_APIC
) {
95 printk(KERN_INFO
"SRAT: PXM %u -> APIC 0x%02x -> Node %u skipped apicid that is too big\n", pxm
, apic_id
, node
);
99 set_apicid_to_node(apic_id
, node
);
100 node_set(node
, numa_nodes_parsed
);
101 printk(KERN_INFO
"SRAT: PXM %u -> APIC 0x%02x -> Node %u\n",
105 int __init
x86_acpi_numa_init(void)
109 ret
= acpi_numa_init();
112 return srat_disabled() ? -EINVAL
: 0;