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/module.h>
17 #include <linux/topology.h>
18 #include <asm/proto.h>
21 static struct acpi_table_slit *acpi_slit;
23 static nodemask_t nodes_parsed __initdata;
24 static nodemask_t nodes_found __initdata;
25 static struct node nodes[MAX_NUMNODES] __initdata;
26 static __u8 pxm2node[256] = { [0 ... 255] = 0xff };
28 static int node_to_pxm(int n);
30 int pxm_to_node(int pxm)
32 if ((unsigned)pxm >= 256)
37 static __init int setup_node(int pxm)
39 unsigned node = pxm2node[pxm];
41 if (nodes_weight(nodes_found) >= MAX_NUMNODES)
43 node = first_unset_node(nodes_found);
44 node_set(node, nodes_found);
50 static __init int conflicting_nodes(unsigned long start, unsigned long end)
53 for_each_node_mask(i, nodes_parsed) {
54 struct node *nd = &nodes[i];
55 if (nd->start == nd->end)
57 if (nd->end > start && nd->start < end)
59 if (nd->end == end && nd->start == start)
65 static __init void cutoff_node(int i, unsigned long start, unsigned long end)
67 struct node *nd = &nodes[i];
68 if (nd->start < start) {
70 if (nd->end < nd->start)
77 if (nd->start > nd->end)
82 static __init void bad_srat(void)
85 printk(KERN_ERR "SRAT: SRAT not used.\n");
87 for (i = 0; i < MAX_LOCAL_APIC; i++)
88 apicid_to_node[i] = NUMA_NO_NODE;
91 static __init inline int srat_disabled(void)
93 return numa_off || acpi_numa < 0;
96 /* Callback for SLIT parsing */
97 void __init acpi_numa_slit_init(struct acpi_table_slit *slit)
102 /* Callback for Proximity Domain -> LAPIC mapping */
104 acpi_numa_processor_affinity_init(struct acpi_table_processor_affinity *pa)
107 if (srat_disabled() || pa->flags.enabled == 0)
109 pxm = pa->proximity_domain;
110 node = setup_node(pxm);
112 printk(KERN_ERR "SRAT: Too many proximity domains %x\n", pxm);
116 apicid_to_node[pa->apic_id] = node;
118 printk(KERN_INFO "SRAT: PXM %u -> APIC %u -> Node %u\n",
119 pxm, pa->apic_id, node);
122 /* Callback for parsing of the Proximity Domain <-> Memory Area mappings */
124 acpi_numa_memory_affinity_init(struct acpi_table_memory_affinity *ma)
127 unsigned long start, end;
131 if (srat_disabled() || ma->flags.enabled == 0)
133 pxm = ma->proximity_domain;
134 node = setup_node(pxm);
136 printk(KERN_ERR "SRAT: Too many proximity domains.\n");
140 start = ma->base_addr_lo | ((u64)ma->base_addr_hi << 32);
141 end = start + (ma->length_lo | ((u64)ma->length_hi << 32));
142 /* It is fine to add this area to the nodes data it will be used later*/
143 if (ma->flags.hot_pluggable == 1)
144 printk(KERN_INFO "SRAT: hot plug zone found %lx - %lx \n",
146 i = conflicting_nodes(start, end);
149 "SRAT: Warning: PXM %d (%lx-%lx) overlaps with itself (%Lx-%Lx)\n",
150 pxm, start, end, nodes[i].start, nodes[i].end);
153 "SRAT: PXM %d (%lx-%lx) overlaps with PXM %d (%Lx-%Lx)\n",
154 pxm, start, end, node_to_pxm(i),
155 nodes[i].start, nodes[i].end);
160 if (!node_test_and_set(node, nodes_parsed)) {
164 if (start < nd->start)
169 if (!(nd->end & 0xfff))
171 printk(KERN_INFO "SRAT: Node %u PXM %u %Lx-%Lx\n", node, pxm,
175 void __init acpi_numa_arch_fixup(void) {}
177 /* Use the information discovered above to actually set up the nodes. */
178 int __init acpi_scan_nodes(unsigned long start, unsigned long end)
184 /* First clean up the node list */
185 for_each_node_mask(i, nodes_parsed) {
186 cutoff_node(i, start, end);
187 if (nodes[i].start == nodes[i].end)
188 node_clear(i, nodes_parsed);
191 memnode_shift = compute_hash_shift(nodes, nodes_weight(nodes_parsed));
192 if (memnode_shift < 0) {
194 "SRAT: No NUMA node hash function found. Contact maintainer\n");
199 /* Finally register nodes */
200 for_each_node_mask(i, nodes_parsed)
201 setup_node_bootmem(i, nodes[i].start, nodes[i].end);
202 for (i = 0; i < NR_CPUS; i++) {
203 if (cpu_to_node[i] == NUMA_NO_NODE)
205 if (!node_isset(cpu_to_node[i], nodes_parsed))
206 cpu_to_node[i] = NUMA_NO_NODE;
212 static int node_to_pxm(int n)
215 if (pxm2node[n] == n)
217 for (i = 0; i < 256; i++)
218 if (pxm2node[i] == n)
223 int __node_distance(int a, int b)
228 return a == b ? 10 : 20;
229 index = acpi_slit->localities * node_to_pxm(a);
230 return acpi_slit->entry[index + node_to_pxm(b)];
233 EXPORT_SYMBOL(__node_distance);