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 /* Internal processor count */
24 static unsigned int __initdata num_processors = 0;
26 static nodemask_t nodes_parsed __initdata;
27 static nodemask_t nodes_found __initdata;
28 static struct node nodes[MAX_NUMNODES] __initdata;
29 static __u8 pxm2node[256] = { [0 ... 255] = 0xff };
31 static __init int setup_node(int pxm)
33 unsigned node = pxm2node[pxm];
35 if (nodes_weight(nodes_found) >= MAX_NUMNODES)
37 node = first_unset_node(nodes_found);
38 node_set(node, nodes_found);
44 static __init int conflicting_nodes(unsigned long start, unsigned long end)
47 for_each_online_node(i) {
48 struct node *nd = &nodes[i];
49 if (nd->start == nd->end)
51 if (nd->end > start && nd->start < end)
53 if (nd->end == end && nd->start == start)
59 static __init void cutoff_node(int i, unsigned long start, unsigned long end)
61 struct node *nd = &nodes[i];
62 if (nd->start < start) {
64 if (nd->end < nd->start)
71 if (nd->start > nd->end)
76 static __init void bad_srat(void)
78 printk(KERN_ERR "SRAT: SRAT not used.\n");
82 static __init inline int srat_disabled(void)
84 return numa_off || acpi_numa < 0;
87 /* Callback for SLIT parsing */
88 void __init acpi_numa_slit_init(struct acpi_table_slit *slit)
93 /* Callback for Proximity Domain -> LAPIC mapping */
95 acpi_numa_processor_affinity_init(struct acpi_table_processor_affinity *pa)
98 if (srat_disabled() || pa->flags.enabled == 0)
100 pxm = pa->proximity_domain;
101 node = setup_node(pxm);
103 printk(KERN_ERR "SRAT: Too many proximity domains %x\n", pxm);
107 if (num_processors >= NR_CPUS) {
108 printk(KERN_ERR "SRAT: Processor #%d (lapic %u) INVALID. (Max ID: %d).\n",
109 num_processors, pa->apic_id, NR_CPUS);
113 cpu_to_node[num_processors] = node;
115 printk(KERN_INFO "SRAT: PXM %u -> APIC %u -> CPU %u -> Node %u\n",
116 pxm, pa->apic_id, num_processors, node);
121 /* Callback for parsing of the Proximity Domain <-> Memory Area mappings */
123 acpi_numa_memory_affinity_init(struct acpi_table_memory_affinity *ma)
126 unsigned long start, end;
130 if (srat_disabled() || ma->flags.enabled == 0)
132 pxm = ma->proximity_domain;
133 node = setup_node(pxm);
135 printk(KERN_ERR "SRAT: Too many proximity domains.\n");
139 start = ma->base_addr_lo | ((u64)ma->base_addr_hi << 32);
140 end = start + (ma->length_lo | ((u64)ma->length_hi << 32));
141 /* It is fine to add this area to the nodes data it will be used later*/
142 if (ma->flags.hot_pluggable == 1)
143 printk(KERN_INFO "SRAT: hot plug zone found %lx - %lx \n",
145 i = conflicting_nodes(start, end);
148 "SRAT: pxm %d overlap %lx-%lx with node %d(%Lx-%Lx)\n",
149 pxm, start, end, i, nodes[i].start, nodes[i].end);
154 if (!node_test_and_set(node, nodes_parsed)) {
158 if (start < nd->start)
163 if (!(nd->end & 0xfff))
165 printk(KERN_INFO "SRAT: Node %u PXM %u %Lx-%Lx\n", node, pxm,
169 void __init acpi_numa_arch_fixup(void) {}
171 /* Use the information discovered above to actually set up the nodes. */
172 int __init acpi_scan_nodes(unsigned long start, unsigned long end)
177 memnode_shift = compute_hash_shift(nodes, nodes_weight(nodes_parsed));
178 if (memnode_shift < 0) {
180 "SRAT: No NUMA node hash function found. Contact maintainer\n");
184 for (i = 0; i < MAX_NUMNODES; i++) {
185 if (!node_isset(i, nodes_parsed))
187 cutoff_node(i, start, end);
188 if (nodes[i].start == nodes[i].end) {
189 node_clear(i, nodes_parsed);
192 setup_node_bootmem(i, nodes[i].start, nodes[i].end);
194 for (i = 0; i < NR_CPUS; i++) {
195 if (cpu_to_node[i] == NUMA_NO_NODE)
197 if (!node_isset(cpu_to_node[i], nodes_parsed))
198 cpu_to_node[i] = NUMA_NO_NODE;
204 int node_to_pxm(int n)
207 if (pxm2node[n] == n)
209 for (i = 0; i < 256; i++)
210 if (pxm2node[i] == n)
215 int __node_distance(int a, int b)
220 return a == b ? 10 : 20;
221 index = acpi_slit->localities * node_to_pxm(a);
222 return acpi_slit->entry[index + node_to_pxm(b)];
225 EXPORT_SYMBOL(__node_distance);