2 * NUMA support, based on the x86 implementation.
4 * Copyright (C) 2015 Cavium Inc.
5 * Author: Ganapatrao Kulkarni <gkulkarni@cavium.com>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 #include <linux/acpi.h>
21 #include <linux/bootmem.h>
22 #include <linux/memblock.h>
23 #include <linux/module.h>
26 struct pglist_data
*node_data
[MAX_NUMNODES
] __read_mostly
;
27 EXPORT_SYMBOL(node_data
);
28 nodemask_t numa_nodes_parsed __initdata
;
29 static int cpu_to_node_map
[NR_CPUS
] = { [0 ... NR_CPUS
-1] = NUMA_NO_NODE
};
31 static int numa_distance_cnt
;
32 static u8
*numa_distance
;
35 static __init
int numa_parse_early_param(char *opt
)
39 if (!strncmp(opt
, "off", 3)) {
40 pr_info("%s\n", "NUMA turned off");
45 early_param("numa", numa_parse_early_param
);
47 cpumask_var_t node_to_cpumask_map
[MAX_NUMNODES
];
48 EXPORT_SYMBOL(node_to_cpumask_map
);
50 #ifdef CONFIG_DEBUG_PER_CPU_MAPS
53 * Returns a pointer to the bitmask of CPUs on Node 'node'.
55 const struct cpumask
*cpumask_of_node(int node
)
57 if (WARN_ON(node
>= nr_node_ids
))
60 if (WARN_ON(node_to_cpumask_map
[node
] == NULL
))
61 return cpu_online_mask
;
63 return node_to_cpumask_map
[node
];
65 EXPORT_SYMBOL(cpumask_of_node
);
69 static void map_cpu_to_node(unsigned int cpu
, int nid
)
71 set_cpu_numa_node(cpu
, nid
);
73 cpumask_set_cpu(cpu
, node_to_cpumask_map
[nid
]);
76 void numa_clear_node(unsigned int cpu
)
78 int nid
= cpu_to_node(cpu
);
81 cpumask_clear_cpu(cpu
, node_to_cpumask_map
[nid
]);
82 set_cpu_numa_node(cpu
, NUMA_NO_NODE
);
86 * Allocate node_to_cpumask_map based on number of available nodes
87 * Requires node_possible_map to be valid.
89 * Note: cpumask_of_node() is not valid until after this is done.
90 * (Use CONFIG_DEBUG_PER_CPU_MAPS to check this.)
92 static void __init
setup_node_to_cpumask_map(void)
97 /* setup nr_node_ids if not done yet */
98 if (nr_node_ids
== MAX_NUMNODES
)
101 /* allocate and clear the mapping */
102 for (node
= 0; node
< nr_node_ids
; node
++) {
103 alloc_bootmem_cpumask_var(&node_to_cpumask_map
[node
]);
104 cpumask_clear(node_to_cpumask_map
[node
]);
107 for_each_possible_cpu(cpu
)
108 set_cpu_numa_node(cpu
, NUMA_NO_NODE
);
110 /* cpumask_of_node() will now work */
111 pr_debug("NUMA: Node to cpumask map for %d nodes\n", nr_node_ids
);
115 * Set the cpu to node and mem mapping
117 void numa_store_cpu_info(unsigned int cpu
)
119 map_cpu_to_node(cpu
, numa_off
? 0 : cpu_to_node_map
[cpu
]);
122 void __init
early_map_cpu_to_node(unsigned int cpu
, int nid
)
124 /* fallback to node 0 */
125 if (nid
< 0 || nid
>= MAX_NUMNODES
)
128 cpu_to_node_map
[cpu
] = nid
;
132 * numa_add_memblk - Set node id to memblk
133 * @nid: NUMA node ID of the new memblk
134 * @start: Start address of the new memblk
135 * @end: End address of the new memblk
138 * 0 on success, -errno on failure.
140 int __init
numa_add_memblk(int nid
, u64 start
, u64 end
)
144 ret
= memblock_set_node(start
, (end
- start
), &memblock
.memory
, nid
);
146 pr_err("NUMA: memblock [0x%llx - 0x%llx] failed to add on node %d\n",
147 start
, (end
- 1), nid
);
151 node_set(nid
, numa_nodes_parsed
);
152 pr_info("NUMA: Adding memblock [0x%llx - 0x%llx] on node %d\n",
153 start
, (end
- 1), nid
);
158 * Initialize NODE_DATA for a node on the local memory
160 static void __init
setup_node_data(int nid
, u64 start_pfn
, u64 end_pfn
)
162 const size_t nd_size
= roundup(sizeof(pg_data_t
), SMP_CACHE_BYTES
);
167 pr_info("NUMA: Initmem setup node %d [mem %#010Lx-%#010Lx]\n",
168 nid
, start_pfn
<< PAGE_SHIFT
,
169 (end_pfn
<< PAGE_SHIFT
) - 1);
171 nd_pa
= memblock_alloc_try_nid(nd_size
, SMP_CACHE_BYTES
, nid
);
174 /* report and initialize */
175 pr_info("NUMA: NODE_DATA [mem %#010Lx-%#010Lx]\n",
176 nd_pa
, nd_pa
+ nd_size
- 1);
177 tnid
= early_pfn_to_nid(nd_pa
>> PAGE_SHIFT
);
179 pr_info("NUMA: NODE_DATA(%d) on node %d\n", nid
, tnid
);
182 memset(NODE_DATA(nid
), 0, sizeof(pg_data_t
));
183 NODE_DATA(nid
)->node_id
= nid
;
184 NODE_DATA(nid
)->node_start_pfn
= start_pfn
;
185 NODE_DATA(nid
)->node_spanned_pages
= end_pfn
- start_pfn
;
191 * The current table is freed.
193 void __init
numa_free_distance(void)
200 size
= numa_distance_cnt
* numa_distance_cnt
*
201 sizeof(numa_distance
[0]);
203 memblock_free(__pa(numa_distance
), size
);
204 numa_distance_cnt
= 0;
205 numa_distance
= NULL
;
210 * Create a new NUMA distance table.
213 static int __init
numa_alloc_distance(void)
219 size
= nr_node_ids
* nr_node_ids
* sizeof(numa_distance
[0]);
220 phys
= memblock_find_in_range(0, PFN_PHYS(max_pfn
),
225 memblock_reserve(phys
, size
);
227 numa_distance
= __va(phys
);
228 numa_distance_cnt
= nr_node_ids
;
230 /* fill with the default distances */
231 for (i
= 0; i
< numa_distance_cnt
; i
++)
232 for (j
= 0; j
< numa_distance_cnt
; j
++)
233 numa_distance
[i
* numa_distance_cnt
+ j
] = i
== j
?
234 LOCAL_DISTANCE
: REMOTE_DISTANCE
;
236 pr_debug("NUMA: Initialized distance table, cnt=%d\n",
243 * numa_set_distance - Set inter node NUMA distance from node to node.
244 * @from: the 'from' node to set distance
245 * @to: the 'to' node to set distance
246 * @distance: NUMA distance
248 * Set the distance from node @from to @to to @distance.
249 * If distance table doesn't exist, a warning is printed.
251 * If @from or @to is higher than the highest known node or lower than zero
252 * or @distance doesn't make sense, the call is ignored.
255 void __init
numa_set_distance(int from
, int to
, int distance
)
257 if (!numa_distance
) {
258 pr_warn_once("NUMA: Warning: distance table not allocated yet\n");
262 if (from
>= numa_distance_cnt
|| to
>= numa_distance_cnt
||
263 from
< 0 || to
< 0) {
264 pr_warn_once("NUMA: Warning: node ids are out of bound, from=%d to=%d distance=%d\n",
269 if ((u8
)distance
!= distance
||
270 (from
== to
&& distance
!= LOCAL_DISTANCE
)) {
271 pr_warn_once("NUMA: Warning: invalid distance parameter, from=%d to=%d distance=%d\n",
276 numa_distance
[from
* numa_distance_cnt
+ to
] = distance
;
280 * Return NUMA distance @from to @to
282 int __node_distance(int from
, int to
)
284 if (from
>= numa_distance_cnt
|| to
>= numa_distance_cnt
)
285 return from
== to
? LOCAL_DISTANCE
: REMOTE_DISTANCE
;
286 return numa_distance
[from
* numa_distance_cnt
+ to
];
288 EXPORT_SYMBOL(__node_distance
);
290 static int __init
numa_register_nodes(void)
293 struct memblock_region
*mblk
;
295 /* Check that valid nid is set to memblks */
296 for_each_memblock(memory
, mblk
)
297 if (mblk
->nid
== NUMA_NO_NODE
|| mblk
->nid
>= MAX_NUMNODES
) {
298 pr_warn("NUMA: Warning: invalid memblk node %d [mem %#010Lx-%#010Lx]\n",
299 mblk
->nid
, mblk
->base
,
300 mblk
->base
+ mblk
->size
- 1);
304 /* Finally register nodes. */
305 for_each_node_mask(nid
, numa_nodes_parsed
) {
306 unsigned long start_pfn
, end_pfn
;
308 get_pfn_range_for_nid(nid
, &start_pfn
, &end_pfn
);
309 setup_node_data(nid
, start_pfn
, end_pfn
);
310 node_set_online(nid
);
313 /* Setup online nodes to actual nodes*/
314 node_possible_map
= numa_nodes_parsed
;
319 static int __init
numa_init(int (*init_func
)(void))
323 nodes_clear(numa_nodes_parsed
);
324 nodes_clear(node_possible_map
);
325 nodes_clear(node_online_map
);
326 numa_free_distance();
328 ret
= numa_alloc_distance();
336 if (nodes_empty(numa_nodes_parsed
))
339 ret
= numa_register_nodes();
343 setup_node_to_cpumask_map();
345 /* init boot processor */
346 cpu_to_node_map
[0] = 0;
347 map_cpu_to_node(0, 0);
353 * dummy_numa_init - Fallback dummy NUMA init
355 * Used if there's no underlying NUMA architecture, NUMA initialization
356 * fails, or NUMA is disabled on the command line.
358 * Must online at least one node (node 0) and add memory blocks that cover all
359 * allowed memory. It is unlikely that this function fails.
361 static int __init
dummy_numa_init(void)
364 struct memblock_region
*mblk
;
367 pr_info("NUMA disabled\n"); /* Forced off on command line. */
369 pr_info("No NUMA configuration found\n");
370 pr_info("NUMA: Faking a node at [mem %#018Lx-%#018Lx]\n",
371 0LLU, PFN_PHYS(max_pfn
) - 1);
373 for_each_memblock(memory
, mblk
) {
374 ret
= numa_add_memblk(0, mblk
->base
, mblk
->base
+ mblk
->size
);
378 pr_err("NUMA init failed\n");
387 * arm64_numa_init - Initialize NUMA
389 * Try each configured NUMA initialization method until one succeeds. The
390 * last fallback is dummy single node config encomapssing whole memory.
392 void __init
arm64_numa_init(void)
395 if (!acpi_disabled
&& !numa_init(arm64_acpi_numa_init
))
397 if (acpi_disabled
&& !numa_init(of_numa_init
))
401 numa_init(dummy_numa_init
);