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 #define pr_fmt(fmt) "NUMA: " fmt
22 #include <linux/acpi.h>
23 #include <linux/bootmem.h>
24 #include <linux/memblock.h>
25 #include <linux/module.h>
29 #include <asm/sections.h>
31 struct pglist_data
*node_data
[MAX_NUMNODES
] __read_mostly
;
32 EXPORT_SYMBOL(node_data
);
33 nodemask_t numa_nodes_parsed __initdata
;
34 static int cpu_to_node_map
[NR_CPUS
] = { [0 ... NR_CPUS
-1] = NUMA_NO_NODE
};
36 static int numa_distance_cnt
;
37 static u8
*numa_distance
;
40 static __init
int numa_parse_early_param(char *opt
)
44 if (!strncmp(opt
, "off", 3))
49 early_param("numa", numa_parse_early_param
);
51 cpumask_var_t node_to_cpumask_map
[MAX_NUMNODES
];
52 EXPORT_SYMBOL(node_to_cpumask_map
);
54 #ifdef CONFIG_DEBUG_PER_CPU_MAPS
57 * Returns a pointer to the bitmask of CPUs on Node 'node'.
59 const struct cpumask
*cpumask_of_node(int node
)
61 if (WARN_ON(node
>= nr_node_ids
))
64 if (WARN_ON(node_to_cpumask_map
[node
] == NULL
))
65 return cpu_online_mask
;
67 return node_to_cpumask_map
[node
];
69 EXPORT_SYMBOL(cpumask_of_node
);
73 static void map_cpu_to_node(unsigned int cpu
, int nid
)
75 set_cpu_numa_node(cpu
, nid
);
77 cpumask_set_cpu(cpu
, node_to_cpumask_map
[nid
]);
80 void numa_clear_node(unsigned int cpu
)
82 int nid
= cpu_to_node(cpu
);
85 cpumask_clear_cpu(cpu
, node_to_cpumask_map
[nid
]);
86 set_cpu_numa_node(cpu
, NUMA_NO_NODE
);
90 * Allocate node_to_cpumask_map based on number of available nodes
91 * Requires node_possible_map to be valid.
93 * Note: cpumask_of_node() is not valid until after this is done.
94 * (Use CONFIG_DEBUG_PER_CPU_MAPS to check this.)
96 static void __init
setup_node_to_cpumask_map(void)
100 /* setup nr_node_ids if not done yet */
101 if (nr_node_ids
== MAX_NUMNODES
)
104 /* allocate and clear the mapping */
105 for (node
= 0; node
< nr_node_ids
; node
++) {
106 alloc_bootmem_cpumask_var(&node_to_cpumask_map
[node
]);
107 cpumask_clear(node_to_cpumask_map
[node
]);
110 /* cpumask_of_node() will now work */
111 pr_debug("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
, 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
|| numa_off
)
128 cpu_to_node_map
[cpu
] = nid
;
131 * We should set the numa node of cpu0 as soon as possible, because it
132 * has already been set up online before. cpu_to_node(0) will soon be
136 set_cpu_numa_node(cpu
, nid
);
139 #ifdef CONFIG_HAVE_SETUP_PER_CPU_AREA
140 unsigned long __per_cpu_offset
[NR_CPUS
] __read_mostly
;
141 EXPORT_SYMBOL(__per_cpu_offset
);
143 static int __init
early_cpu_to_node(int cpu
)
145 return cpu_to_node_map
[cpu
];
148 static int __init
pcpu_cpu_distance(unsigned int from
, unsigned int to
)
150 return node_distance(from
, to
);
153 static void * __init
pcpu_fc_alloc(unsigned int cpu
, size_t size
,
156 int nid
= early_cpu_to_node(cpu
);
158 return memblock_virt_alloc_try_nid(size
, align
,
159 __pa(MAX_DMA_ADDRESS
), MEMBLOCK_ALLOC_ACCESSIBLE
, nid
);
162 static void __init
pcpu_fc_free(void *ptr
, size_t size
)
164 memblock_free_early(__pa(ptr
), size
);
167 void __init
setup_per_cpu_areas(void)
174 * Always reserve area for module percpu variables. That's
175 * what the legacy allocator did.
177 rc
= pcpu_embed_first_chunk(PERCPU_MODULE_RESERVE
,
178 PERCPU_DYNAMIC_RESERVE
, PAGE_SIZE
,
180 pcpu_fc_alloc
, pcpu_fc_free
);
182 panic("Failed to initialize percpu areas.");
184 delta
= (unsigned long)pcpu_base_addr
- (unsigned long)__per_cpu_start
;
185 for_each_possible_cpu(cpu
)
186 __per_cpu_offset
[cpu
] = delta
+ pcpu_unit_offsets
[cpu
];
191 * numa_add_memblk - Set node id to memblk
192 * @nid: NUMA node ID of the new memblk
193 * @start: Start address of the new memblk
194 * @end: End address of the new memblk
197 * 0 on success, -errno on failure.
199 int __init
numa_add_memblk(int nid
, u64 start
, u64 end
)
203 ret
= memblock_set_node(start
, (end
- start
), &memblock
.memory
, nid
);
205 pr_err("memblock [0x%llx - 0x%llx] failed to add on node %d\n",
206 start
, (end
- 1), nid
);
210 node_set(nid
, numa_nodes_parsed
);
211 pr_info("Adding memblock [0x%llx - 0x%llx] on node %d\n",
212 start
, (end
- 1), nid
);
217 * Initialize NODE_DATA for a node on the local memory
219 static void __init
setup_node_data(int nid
, u64 start_pfn
, u64 end_pfn
)
221 const size_t nd_size
= roundup(sizeof(pg_data_t
), SMP_CACHE_BYTES
);
226 pr_info("Initmem setup node %d [mem %#010Lx-%#010Lx]\n",
227 nid
, start_pfn
<< PAGE_SHIFT
, (end_pfn
<< PAGE_SHIFT
) - 1);
229 nd_pa
= memblock_alloc_try_nid(nd_size
, SMP_CACHE_BYTES
, nid
);
232 /* report and initialize */
233 pr_info("NODE_DATA [mem %#010Lx-%#010Lx]\n",
234 nd_pa
, nd_pa
+ nd_size
- 1);
235 tnid
= early_pfn_to_nid(nd_pa
>> PAGE_SHIFT
);
237 pr_info("NODE_DATA(%d) on node %d\n", nid
, tnid
);
240 memset(NODE_DATA(nid
), 0, sizeof(pg_data_t
));
241 NODE_DATA(nid
)->node_id
= nid
;
242 NODE_DATA(nid
)->node_start_pfn
= start_pfn
;
243 NODE_DATA(nid
)->node_spanned_pages
= end_pfn
- start_pfn
;
249 * The current table is freed.
251 void __init
numa_free_distance(void)
258 size
= numa_distance_cnt
* numa_distance_cnt
*
259 sizeof(numa_distance
[0]);
261 memblock_free(__pa(numa_distance
), size
);
262 numa_distance_cnt
= 0;
263 numa_distance
= NULL
;
268 * Create a new NUMA distance table.
271 static int __init
numa_alloc_distance(void)
277 size
= nr_node_ids
* nr_node_ids
* sizeof(numa_distance
[0]);
278 phys
= memblock_find_in_range(0, PFN_PHYS(max_pfn
),
283 memblock_reserve(phys
, size
);
285 numa_distance
= __va(phys
);
286 numa_distance_cnt
= nr_node_ids
;
288 /* fill with the default distances */
289 for (i
= 0; i
< numa_distance_cnt
; i
++)
290 for (j
= 0; j
< numa_distance_cnt
; j
++)
291 numa_distance
[i
* numa_distance_cnt
+ j
] = i
== j
?
292 LOCAL_DISTANCE
: REMOTE_DISTANCE
;
294 pr_debug("Initialized distance table, cnt=%d\n", numa_distance_cnt
);
300 * numa_set_distance - Set inter node NUMA distance from node to node.
301 * @from: the 'from' node to set distance
302 * @to: the 'to' node to set distance
303 * @distance: NUMA distance
305 * Set the distance from node @from to @to to @distance.
306 * If distance table doesn't exist, a warning is printed.
308 * If @from or @to is higher than the highest known node or lower than zero
309 * or @distance doesn't make sense, the call is ignored.
312 void __init
numa_set_distance(int from
, int to
, int distance
)
314 if (!numa_distance
) {
315 pr_warn_once("Warning: distance table not allocated yet\n");
319 if (from
>= numa_distance_cnt
|| to
>= numa_distance_cnt
||
320 from
< 0 || to
< 0) {
321 pr_warn_once("Warning: node ids are out of bound, from=%d to=%d distance=%d\n",
326 if ((u8
)distance
!= distance
||
327 (from
== to
&& distance
!= LOCAL_DISTANCE
)) {
328 pr_warn_once("Warning: invalid distance parameter, from=%d to=%d distance=%d\n",
333 numa_distance
[from
* numa_distance_cnt
+ to
] = distance
;
337 * Return NUMA distance @from to @to
339 int __node_distance(int from
, int to
)
341 if (from
>= numa_distance_cnt
|| to
>= numa_distance_cnt
)
342 return from
== to
? LOCAL_DISTANCE
: REMOTE_DISTANCE
;
343 return numa_distance
[from
* numa_distance_cnt
+ to
];
345 EXPORT_SYMBOL(__node_distance
);
347 static int __init
numa_register_nodes(void)
350 struct memblock_region
*mblk
;
352 /* Check that valid nid is set to memblks */
353 for_each_memblock(memory
, mblk
)
354 if (mblk
->nid
== NUMA_NO_NODE
|| mblk
->nid
>= MAX_NUMNODES
) {
355 pr_warn("Warning: invalid memblk node %d [mem %#010Lx-%#010Lx]\n",
356 mblk
->nid
, mblk
->base
,
357 mblk
->base
+ mblk
->size
- 1);
361 /* Finally register nodes. */
362 for_each_node_mask(nid
, numa_nodes_parsed
) {
363 unsigned long start_pfn
, end_pfn
;
365 get_pfn_range_for_nid(nid
, &start_pfn
, &end_pfn
);
366 setup_node_data(nid
, start_pfn
, end_pfn
);
367 node_set_online(nid
);
370 /* Setup online nodes to actual nodes*/
371 node_possible_map
= numa_nodes_parsed
;
376 static int __init
numa_init(int (*init_func
)(void))
380 nodes_clear(numa_nodes_parsed
);
381 nodes_clear(node_possible_map
);
382 nodes_clear(node_online_map
);
383 numa_free_distance();
385 ret
= numa_alloc_distance();
393 if (nodes_empty(numa_nodes_parsed
)) {
394 pr_info("No NUMA configuration found\n");
398 ret
= numa_register_nodes();
402 setup_node_to_cpumask_map();
408 * dummy_numa_init - Fallback dummy NUMA init
410 * Used if there's no underlying NUMA architecture, NUMA initialization
411 * fails, or NUMA is disabled on the command line.
413 * Must online at least one node (node 0) and add memory blocks that cover all
414 * allowed memory. It is unlikely that this function fails.
416 static int __init
dummy_numa_init(void)
419 struct memblock_region
*mblk
;
422 pr_info("NUMA disabled\n"); /* Forced off on command line. */
423 pr_info("Faking a node at [mem %#018Lx-%#018Lx]\n",
424 0LLU, PFN_PHYS(max_pfn
) - 1);
426 for_each_memblock(memory
, mblk
) {
427 ret
= numa_add_memblk(0, mblk
->base
, mblk
->base
+ mblk
->size
);
431 pr_err("NUMA init failed\n");
440 * arm64_numa_init - Initialize NUMA
442 * Try each configured NUMA initialization method until one succeeds. The
443 * last fallback is dummy single node config encomapssing whole memory.
445 void __init
arm64_numa_init(void)
448 if (!acpi_disabled
&& !numa_init(arm64_acpi_numa_init
))
450 if (acpi_disabled
&& !numa_init(of_numa_init
))
454 numa_init(dummy_numa_init
);