Merge branch 'for-next' of git://git.kernel.org/pub/scm/linux/kernel/git/shli/md
[linux-2.6-block.git] / arch / arm64 / mm / numa.c
CommitLineData
1a2db300
GK
1/*
2 * NUMA support, based on the x86 implementation.
3 *
4 * Copyright (C) 2015 Cavium Inc.
5 * Author: Ganapatrao Kulkarni <gkulkarni@cavium.com>
6 *
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.
10 *
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.
15 *
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/>.
18 */
19
f11c7bac
KW
20#define pr_fmt(fmt) "NUMA: " fmt
21
d8b47fca 22#include <linux/acpi.h>
1a2db300
GK
23#include <linux/bootmem.h>
24#include <linux/memblock.h>
25#include <linux/module.h>
26#include <linux/of.h>
27
bfe6c8a8 28#include <asm/acpi.h>
7af3a0a9 29#include <asm/sections.h>
bfe6c8a8 30
1a2db300
GK
31struct pglist_data *node_data[MAX_NUMNODES] __read_mostly;
32EXPORT_SYMBOL(node_data);
33nodemask_t numa_nodes_parsed __initdata;
34static int cpu_to_node_map[NR_CPUS] = { [0 ... NR_CPUS-1] = NUMA_NO_NODE };
35
36static int numa_distance_cnt;
37static u8 *numa_distance;
aec03f89 38bool numa_off;
1a2db300
GK
39
40static __init int numa_parse_early_param(char *opt)
41{
42 if (!opt)
43 return -EINVAL;
f11c7bac 44 if (!strncmp(opt, "off", 3))
34c33370 45 numa_off = true;
f11c7bac 46
1a2db300
GK
47 return 0;
48}
49early_param("numa", numa_parse_early_param);
50
51cpumask_var_t node_to_cpumask_map[MAX_NUMNODES];
52EXPORT_SYMBOL(node_to_cpumask_map);
53
54#ifdef CONFIG_DEBUG_PER_CPU_MAPS
55
56/*
57 * Returns a pointer to the bitmask of CPUs on Node 'node'.
58 */
59const struct cpumask *cpumask_of_node(int node)
60{
61 if (WARN_ON(node >= nr_node_ids))
62 return cpu_none_mask;
63
64 if (WARN_ON(node_to_cpumask_map[node] == NULL))
65 return cpu_online_mask;
66
67 return node_to_cpumask_map[node];
68}
69EXPORT_SYMBOL(cpumask_of_node);
70
71#endif
72
97fd6016 73static void numa_update_cpu(unsigned int cpu, bool remove)
1a2db300 74{
97fd6016
SH
75 int nid = cpu_to_node(cpu);
76
77 if (nid == NUMA_NO_NODE)
78 return;
79
80 if (remove)
81 cpumask_clear_cpu(cpu, node_to_cpumask_map[nid]);
82 else
1a2db300
GK
83 cpumask_set_cpu(cpu, node_to_cpumask_map[nid]);
84}
85
97fd6016 86void numa_add_cpu(unsigned int cpu)
1a2db300 87{
97fd6016
SH
88 numa_update_cpu(cpu, false);
89}
1a2db300 90
97fd6016
SH
91void numa_remove_cpu(unsigned int cpu)
92{
93 numa_update_cpu(cpu, true);
94}
95
96void numa_clear_node(unsigned int cpu)
97{
98 numa_remove_cpu(cpu);
1a2db300
GK
99 set_cpu_numa_node(cpu, NUMA_NO_NODE);
100}
101
102/*
103 * Allocate node_to_cpumask_map based on number of available nodes
104 * Requires node_possible_map to be valid.
105 *
106 * Note: cpumask_of_node() is not valid until after this is done.
107 * (Use CONFIG_DEBUG_PER_CPU_MAPS to check this.)
108 */
109static void __init setup_node_to_cpumask_map(void)
110{
1a2db300
GK
111 int node;
112
113 /* setup nr_node_ids if not done yet */
114 if (nr_node_ids == MAX_NUMNODES)
115 setup_nr_node_ids();
116
117 /* allocate and clear the mapping */
118 for (node = 0; node < nr_node_ids; node++) {
119 alloc_bootmem_cpumask_var(&node_to_cpumask_map[node]);
120 cpumask_clear(node_to_cpumask_map[node]);
121 }
122
1a2db300 123 /* cpumask_of_node() will now work */
f11c7bac 124 pr_debug("Node to cpumask map for %d nodes\n", nr_node_ids);
1a2db300
GK
125}
126
127/*
128 * Set the cpu to node and mem mapping
129 */
130void numa_store_cpu_info(unsigned int cpu)
131{
97fd6016 132 set_cpu_numa_node(cpu, cpu_to_node_map[cpu]);
1a2db300
GK
133}
134
135void __init early_map_cpu_to_node(unsigned int cpu, int nid)
136{
137 /* fallback to node 0 */
7ba5f605 138 if (nid < 0 || nid >= MAX_NUMNODES || numa_off)
1a2db300
GK
139 nid = 0;
140
141 cpu_to_node_map[cpu] = nid;
7ba5f605
ZL
142
143 /*
144 * We should set the numa node of cpu0 as soon as possible, because it
145 * has already been set up online before. cpu_to_node(0) will soon be
146 * called.
147 */
148 if (!cpu)
149 set_cpu_numa_node(cpu, nid);
1a2db300
GK
150}
151
7af3a0a9
ZL
152#ifdef CONFIG_HAVE_SETUP_PER_CPU_AREA
153unsigned long __per_cpu_offset[NR_CPUS] __read_mostly;
154EXPORT_SYMBOL(__per_cpu_offset);
155
156static int __init early_cpu_to_node(int cpu)
157{
158 return cpu_to_node_map[cpu];
159}
160
161static int __init pcpu_cpu_distance(unsigned int from, unsigned int to)
162{
26984c3b 163 return node_distance(early_cpu_to_node(from), early_cpu_to_node(to));
7af3a0a9
ZL
164}
165
166static void * __init pcpu_fc_alloc(unsigned int cpu, size_t size,
167 size_t align)
168{
169 int nid = early_cpu_to_node(cpu);
170
171 return memblock_virt_alloc_try_nid(size, align,
172 __pa(MAX_DMA_ADDRESS), MEMBLOCK_ALLOC_ACCESSIBLE, nid);
173}
174
175static void __init pcpu_fc_free(void *ptr, size_t size)
176{
177 memblock_free_early(__pa(ptr), size);
178}
179
180void __init setup_per_cpu_areas(void)
181{
182 unsigned long delta;
183 unsigned int cpu;
184 int rc;
185
186 /*
187 * Always reserve area for module percpu variables. That's
188 * what the legacy allocator did.
189 */
190 rc = pcpu_embed_first_chunk(PERCPU_MODULE_RESERVE,
191 PERCPU_DYNAMIC_RESERVE, PAGE_SIZE,
192 pcpu_cpu_distance,
193 pcpu_fc_alloc, pcpu_fc_free);
194 if (rc < 0)
195 panic("Failed to initialize percpu areas.");
196
197 delta = (unsigned long)pcpu_base_addr - (unsigned long)__per_cpu_start;
198 for_each_possible_cpu(cpu)
199 __per_cpu_offset[cpu] = delta + pcpu_unit_offsets[cpu];
200}
201#endif
202
1a2db300
GK
203/**
204 * numa_add_memblk - Set node id to memblk
205 * @nid: NUMA node ID of the new memblk
206 * @start: Start address of the new memblk
8ccbbdaa 207 * @end: End address of the new memblk
1a2db300
GK
208 *
209 * RETURNS:
210 * 0 on success, -errno on failure.
211 */
8ccbbdaa 212int __init numa_add_memblk(int nid, u64 start, u64 end)
1a2db300
GK
213{
214 int ret;
215
8ccbbdaa 216 ret = memblock_set_node(start, (end - start), &memblock.memory, nid);
1a2db300 217 if (ret < 0) {
f11c7bac 218 pr_err("memblock [0x%llx - 0x%llx] failed to add on node %d\n",
8ccbbdaa 219 start, (end - 1), nid);
1a2db300
GK
220 return ret;
221 }
222
223 node_set(nid, numa_nodes_parsed);
1a2db300
GK
224 return ret;
225}
226
227/**
228 * Initialize NODE_DATA for a node on the local memory
229 */
230static void __init setup_node_data(int nid, u64 start_pfn, u64 end_pfn)
231{
232 const size_t nd_size = roundup(sizeof(pg_data_t), SMP_CACHE_BYTES);
233 u64 nd_pa;
234 void *nd;
235 int tnid;
236
ece4b206 237 if (start_pfn >= end_pfn)
3f7a09f4 238 pr_info("Initmem setup node %d [<memory-less node>]\n", nid);
1a2db300
GK
239
240 nd_pa = memblock_alloc_try_nid(nd_size, SMP_CACHE_BYTES, nid);
241 nd = __va(nd_pa);
242
243 /* report and initialize */
f11c7bac 244 pr_info("NODE_DATA [mem %#010Lx-%#010Lx]\n",
1a2db300
GK
245 nd_pa, nd_pa + nd_size - 1);
246 tnid = early_pfn_to_nid(nd_pa >> PAGE_SHIFT);
247 if (tnid != nid)
f11c7bac 248 pr_info("NODE_DATA(%d) on node %d\n", nid, tnid);
1a2db300
GK
249
250 node_data[nid] = nd;
251 memset(NODE_DATA(nid), 0, sizeof(pg_data_t));
252 NODE_DATA(nid)->node_id = nid;
253 NODE_DATA(nid)->node_start_pfn = start_pfn;
254 NODE_DATA(nid)->node_spanned_pages = end_pfn - start_pfn;
255}
256
257/**
258 * numa_free_distance
259 *
260 * The current table is freed.
261 */
262void __init numa_free_distance(void)
263{
264 size_t size;
265
266 if (!numa_distance)
267 return;
268
269 size = numa_distance_cnt * numa_distance_cnt *
270 sizeof(numa_distance[0]);
271
272 memblock_free(__pa(numa_distance), size);
273 numa_distance_cnt = 0;
274 numa_distance = NULL;
275}
276
277/**
278 *
279 * Create a new NUMA distance table.
280 *
281 */
282static int __init numa_alloc_distance(void)
283{
284 size_t size;
285 u64 phys;
286 int i, j;
287
288 size = nr_node_ids * nr_node_ids * sizeof(numa_distance[0]);
289 phys = memblock_find_in_range(0, PFN_PHYS(max_pfn),
290 size, PAGE_SIZE);
291 if (WARN_ON(!phys))
292 return -ENOMEM;
293
294 memblock_reserve(phys, size);
295
296 numa_distance = __va(phys);
297 numa_distance_cnt = nr_node_ids;
298
299 /* fill with the default distances */
300 for (i = 0; i < numa_distance_cnt; i++)
301 for (j = 0; j < numa_distance_cnt; j++)
302 numa_distance[i * numa_distance_cnt + j] = i == j ?
303 LOCAL_DISTANCE : REMOTE_DISTANCE;
304
f11c7bac 305 pr_debug("Initialized distance table, cnt=%d\n", numa_distance_cnt);
1a2db300
GK
306
307 return 0;
308}
309
310/**
311 * numa_set_distance - Set inter node NUMA distance from node to node.
312 * @from: the 'from' node to set distance
313 * @to: the 'to' node to set distance
314 * @distance: NUMA distance
315 *
316 * Set the distance from node @from to @to to @distance.
317 * If distance table doesn't exist, a warning is printed.
318 *
319 * If @from or @to is higher than the highest known node or lower than zero
320 * or @distance doesn't make sense, the call is ignored.
321 *
322 */
323void __init numa_set_distance(int from, int to, int distance)
324{
325 if (!numa_distance) {
f11c7bac 326 pr_warn_once("Warning: distance table not allocated yet\n");
1a2db300
GK
327 return;
328 }
329
330 if (from >= numa_distance_cnt || to >= numa_distance_cnt ||
331 from < 0 || to < 0) {
f11c7bac 332 pr_warn_once("Warning: node ids are out of bound, from=%d to=%d distance=%d\n",
1a2db300
GK
333 from, to, distance);
334 return;
335 }
336
337 if ((u8)distance != distance ||
338 (from == to && distance != LOCAL_DISTANCE)) {
f11c7bac 339 pr_warn_once("Warning: invalid distance parameter, from=%d to=%d distance=%d\n",
1a2db300
GK
340 from, to, distance);
341 return;
342 }
343
344 numa_distance[from * numa_distance_cnt + to] = distance;
345}
346
347/**
348 * Return NUMA distance @from to @to
349 */
350int __node_distance(int from, int to)
351{
352 if (from >= numa_distance_cnt || to >= numa_distance_cnt)
353 return from == to ? LOCAL_DISTANCE : REMOTE_DISTANCE;
354 return numa_distance[from * numa_distance_cnt + to];
355}
356EXPORT_SYMBOL(__node_distance);
357
358static int __init numa_register_nodes(void)
359{
360 int nid;
361 struct memblock_region *mblk;
362
363 /* Check that valid nid is set to memblks */
364 for_each_memblock(memory, mblk)
365 if (mblk->nid == NUMA_NO_NODE || mblk->nid >= MAX_NUMNODES) {
f11c7bac 366 pr_warn("Warning: invalid memblk node %d [mem %#010Lx-%#010Lx]\n",
1a2db300
GK
367 mblk->nid, mblk->base,
368 mblk->base + mblk->size - 1);
369 return -EINVAL;
370 }
371
372 /* Finally register nodes. */
373 for_each_node_mask(nid, numa_nodes_parsed) {
374 unsigned long start_pfn, end_pfn;
375
376 get_pfn_range_for_nid(nid, &start_pfn, &end_pfn);
377 setup_node_data(nid, start_pfn, end_pfn);
378 node_set_online(nid);
379 }
380
381 /* Setup online nodes to actual nodes*/
382 node_possible_map = numa_nodes_parsed;
383
384 return 0;
385}
386
387static int __init numa_init(int (*init_func)(void))
388{
389 int ret;
390
391 nodes_clear(numa_nodes_parsed);
392 nodes_clear(node_possible_map);
393 nodes_clear(node_online_map);
1a2db300
GK
394
395 ret = numa_alloc_distance();
396 if (ret < 0)
397 return ret;
398
399 ret = init_func();
400 if (ret < 0)
52338088 401 goto out_free_distance;
1a2db300 402
794224ea
ZL
403 if (nodes_empty(numa_nodes_parsed)) {
404 pr_info("No NUMA configuration found\n");
52338088
AK
405 ret = -EINVAL;
406 goto out_free_distance;
794224ea 407 }
1a2db300
GK
408
409 ret = numa_register_nodes();
410 if (ret < 0)
52338088 411 goto out_free_distance;
1a2db300
GK
412
413 setup_node_to_cpumask_map();
414
1a2db300 415 return 0;
52338088
AK
416out_free_distance:
417 numa_free_distance();
418 return ret;
1a2db300
GK
419}
420
421/**
422 * dummy_numa_init - Fallback dummy NUMA init
423 *
424 * Used if there's no underlying NUMA architecture, NUMA initialization
425 * fails, or NUMA is disabled on the command line.
426 *
427 * Must online at least one node (node 0) and add memory blocks that cover all
428 * allowed memory. It is unlikely that this function fails.
429 */
430static int __init dummy_numa_init(void)
431{
432 int ret;
433 struct memblock_region *mblk;
434
34c33370
DD
435 if (numa_off)
436 pr_info("NUMA disabled\n"); /* Forced off on command line. */
f11c7bac 437 pr_info("Faking a node at [mem %#018Lx-%#018Lx]\n",
77cfe950 438 memblock_start_of_DRAM(), memblock_end_of_DRAM() - 1);
1a2db300
GK
439
440 for_each_memblock(memory, mblk) {
8ccbbdaa 441 ret = numa_add_memblk(0, mblk->base, mblk->base + mblk->size);
1a2db300
GK
442 if (!ret)
443 continue;
444
445 pr_err("NUMA init failed\n");
446 return ret;
447 }
448
34c33370 449 numa_off = true;
1a2db300
GK
450 return 0;
451}
452
453/**
454 * arm64_numa_init - Initialize NUMA
455 *
456 * Try each configured NUMA initialization method until one succeeds. The
457 * last fallback is dummy single node config encomapssing whole memory.
458 */
459void __init arm64_numa_init(void)
460{
461 if (!numa_off) {
d8b47fca
HG
462 if (!acpi_disabled && !numa_init(arm64_acpi_numa_init))
463 return;
464 if (acpi_disabled && !numa_init(of_numa_init))
1a2db300
GK
465 return;
466 }
467
468 numa_init(dummy_numa_init);
469}