]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - arch/arm64/mm/numa.c
Merge tag 'linux-kselftest-4.13-rc6-fixes' of git://git.kernel.org/pub/scm/linux...
[mirror_ubuntu-artful-kernel.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
73static void map_cpu_to_node(unsigned int cpu, int nid)
74{
75 set_cpu_numa_node(cpu, nid);
76 if (nid >= 0)
77 cpumask_set_cpu(cpu, node_to_cpumask_map[nid]);
78}
79
80void numa_clear_node(unsigned int cpu)
81{
82 int nid = cpu_to_node(cpu);
83
84 if (nid >= 0)
85 cpumask_clear_cpu(cpu, node_to_cpumask_map[nid]);
86 set_cpu_numa_node(cpu, NUMA_NO_NODE);
87}
88
89/*
90 * Allocate node_to_cpumask_map based on number of available nodes
91 * Requires node_possible_map to be valid.
92 *
93 * Note: cpumask_of_node() is not valid until after this is done.
94 * (Use CONFIG_DEBUG_PER_CPU_MAPS to check this.)
95 */
96static void __init setup_node_to_cpumask_map(void)
97{
1a2db300
GK
98 int node;
99
100 /* setup nr_node_ids if not done yet */
101 if (nr_node_ids == MAX_NUMNODES)
102 setup_nr_node_ids();
103
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]);
108 }
109
1a2db300 110 /* cpumask_of_node() will now work */
f11c7bac 111 pr_debug("Node to cpumask map for %d nodes\n", nr_node_ids);
1a2db300
GK
112}
113
114/*
115 * Set the cpu to node and mem mapping
116 */
117void numa_store_cpu_info(unsigned int cpu)
118{
7ba5f605 119 map_cpu_to_node(cpu, cpu_to_node_map[cpu]);
1a2db300
GK
120}
121
122void __init early_map_cpu_to_node(unsigned int cpu, int nid)
123{
124 /* fallback to node 0 */
7ba5f605 125 if (nid < 0 || nid >= MAX_NUMNODES || numa_off)
1a2db300
GK
126 nid = 0;
127
128 cpu_to_node_map[cpu] = nid;
7ba5f605
ZL
129
130 /*
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
133 * called.
134 */
135 if (!cpu)
136 set_cpu_numa_node(cpu, nid);
1a2db300
GK
137}
138
7af3a0a9
ZL
139#ifdef CONFIG_HAVE_SETUP_PER_CPU_AREA
140unsigned long __per_cpu_offset[NR_CPUS] __read_mostly;
141EXPORT_SYMBOL(__per_cpu_offset);
142
143static int __init early_cpu_to_node(int cpu)
144{
145 return cpu_to_node_map[cpu];
146}
147
148static int __init pcpu_cpu_distance(unsigned int from, unsigned int to)
149{
26984c3b 150 return node_distance(early_cpu_to_node(from), early_cpu_to_node(to));
7af3a0a9
ZL
151}
152
153static void * __init pcpu_fc_alloc(unsigned int cpu, size_t size,
154 size_t align)
155{
156 int nid = early_cpu_to_node(cpu);
157
158 return memblock_virt_alloc_try_nid(size, align,
159 __pa(MAX_DMA_ADDRESS), MEMBLOCK_ALLOC_ACCESSIBLE, nid);
160}
161
162static void __init pcpu_fc_free(void *ptr, size_t size)
163{
164 memblock_free_early(__pa(ptr), size);
165}
166
167void __init setup_per_cpu_areas(void)
168{
169 unsigned long delta;
170 unsigned int cpu;
171 int rc;
172
173 /*
174 * Always reserve area for module percpu variables. That's
175 * what the legacy allocator did.
176 */
177 rc = pcpu_embed_first_chunk(PERCPU_MODULE_RESERVE,
178 PERCPU_DYNAMIC_RESERVE, PAGE_SIZE,
179 pcpu_cpu_distance,
180 pcpu_fc_alloc, pcpu_fc_free);
181 if (rc < 0)
182 panic("Failed to initialize percpu areas.");
183
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];
187}
188#endif
189
1a2db300
GK
190/**
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
8ccbbdaa 194 * @end: End address of the new memblk
1a2db300
GK
195 *
196 * RETURNS:
197 * 0 on success, -errno on failure.
198 */
8ccbbdaa 199int __init numa_add_memblk(int nid, u64 start, u64 end)
1a2db300
GK
200{
201 int ret;
202
8ccbbdaa 203 ret = memblock_set_node(start, (end - start), &memblock.memory, nid);
1a2db300 204 if (ret < 0) {
f11c7bac 205 pr_err("memblock [0x%llx - 0x%llx] failed to add on node %d\n",
8ccbbdaa 206 start, (end - 1), nid);
1a2db300
GK
207 return ret;
208 }
209
210 node_set(nid, numa_nodes_parsed);
1a2db300
GK
211 return ret;
212}
213
214/**
215 * Initialize NODE_DATA for a node on the local memory
216 */
217static void __init setup_node_data(int nid, u64 start_pfn, u64 end_pfn)
218{
219 const size_t nd_size = roundup(sizeof(pg_data_t), SMP_CACHE_BYTES);
220 u64 nd_pa;
221 void *nd;
222 int tnid;
223
ece4b206 224 if (start_pfn >= end_pfn)
3f7a09f4 225 pr_info("Initmem setup node %d [<memory-less node>]\n", nid);
1a2db300
GK
226
227 nd_pa = memblock_alloc_try_nid(nd_size, SMP_CACHE_BYTES, nid);
228 nd = __va(nd_pa);
229
230 /* report and initialize */
f11c7bac 231 pr_info("NODE_DATA [mem %#010Lx-%#010Lx]\n",
1a2db300
GK
232 nd_pa, nd_pa + nd_size - 1);
233 tnid = early_pfn_to_nid(nd_pa >> PAGE_SHIFT);
234 if (tnid != nid)
f11c7bac 235 pr_info("NODE_DATA(%d) on node %d\n", nid, tnid);
1a2db300
GK
236
237 node_data[nid] = nd;
238 memset(NODE_DATA(nid), 0, sizeof(pg_data_t));
239 NODE_DATA(nid)->node_id = nid;
240 NODE_DATA(nid)->node_start_pfn = start_pfn;
241 NODE_DATA(nid)->node_spanned_pages = end_pfn - start_pfn;
242}
243
244/**
245 * numa_free_distance
246 *
247 * The current table is freed.
248 */
249void __init numa_free_distance(void)
250{
251 size_t size;
252
253 if (!numa_distance)
254 return;
255
256 size = numa_distance_cnt * numa_distance_cnt *
257 sizeof(numa_distance[0]);
258
259 memblock_free(__pa(numa_distance), size);
260 numa_distance_cnt = 0;
261 numa_distance = NULL;
262}
263
264/**
265 *
266 * Create a new NUMA distance table.
267 *
268 */
269static int __init numa_alloc_distance(void)
270{
271 size_t size;
272 u64 phys;
273 int i, j;
274
275 size = nr_node_ids * nr_node_ids * sizeof(numa_distance[0]);
276 phys = memblock_find_in_range(0, PFN_PHYS(max_pfn),
277 size, PAGE_SIZE);
278 if (WARN_ON(!phys))
279 return -ENOMEM;
280
281 memblock_reserve(phys, size);
282
283 numa_distance = __va(phys);
284 numa_distance_cnt = nr_node_ids;
285
286 /* fill with the default distances */
287 for (i = 0; i < numa_distance_cnt; i++)
288 for (j = 0; j < numa_distance_cnt; j++)
289 numa_distance[i * numa_distance_cnt + j] = i == j ?
290 LOCAL_DISTANCE : REMOTE_DISTANCE;
291
f11c7bac 292 pr_debug("Initialized distance table, cnt=%d\n", numa_distance_cnt);
1a2db300
GK
293
294 return 0;
295}
296
297/**
298 * numa_set_distance - Set inter node NUMA distance from node to node.
299 * @from: the 'from' node to set distance
300 * @to: the 'to' node to set distance
301 * @distance: NUMA distance
302 *
303 * Set the distance from node @from to @to to @distance.
304 * If distance table doesn't exist, a warning is printed.
305 *
306 * If @from or @to is higher than the highest known node or lower than zero
307 * or @distance doesn't make sense, the call is ignored.
308 *
309 */
310void __init numa_set_distance(int from, int to, int distance)
311{
312 if (!numa_distance) {
f11c7bac 313 pr_warn_once("Warning: distance table not allocated yet\n");
1a2db300
GK
314 return;
315 }
316
317 if (from >= numa_distance_cnt || to >= numa_distance_cnt ||
318 from < 0 || to < 0) {
f11c7bac 319 pr_warn_once("Warning: node ids are out of bound, from=%d to=%d distance=%d\n",
1a2db300
GK
320 from, to, distance);
321 return;
322 }
323
324 if ((u8)distance != distance ||
325 (from == to && distance != LOCAL_DISTANCE)) {
f11c7bac 326 pr_warn_once("Warning: invalid distance parameter, from=%d to=%d distance=%d\n",
1a2db300
GK
327 from, to, distance);
328 return;
329 }
330
331 numa_distance[from * numa_distance_cnt + to] = distance;
332}
333
334/**
335 * Return NUMA distance @from to @to
336 */
337int __node_distance(int from, int to)
338{
339 if (from >= numa_distance_cnt || to >= numa_distance_cnt)
340 return from == to ? LOCAL_DISTANCE : REMOTE_DISTANCE;
341 return numa_distance[from * numa_distance_cnt + to];
342}
343EXPORT_SYMBOL(__node_distance);
344
345static int __init numa_register_nodes(void)
346{
347 int nid;
348 struct memblock_region *mblk;
349
350 /* Check that valid nid is set to memblks */
351 for_each_memblock(memory, mblk)
352 if (mblk->nid == NUMA_NO_NODE || mblk->nid >= MAX_NUMNODES) {
f11c7bac 353 pr_warn("Warning: invalid memblk node %d [mem %#010Lx-%#010Lx]\n",
1a2db300
GK
354 mblk->nid, mblk->base,
355 mblk->base + mblk->size - 1);
356 return -EINVAL;
357 }
358
359 /* Finally register nodes. */
360 for_each_node_mask(nid, numa_nodes_parsed) {
361 unsigned long start_pfn, end_pfn;
362
363 get_pfn_range_for_nid(nid, &start_pfn, &end_pfn);
364 setup_node_data(nid, start_pfn, end_pfn);
365 node_set_online(nid);
366 }
367
368 /* Setup online nodes to actual nodes*/
369 node_possible_map = numa_nodes_parsed;
370
371 return 0;
372}
373
374static int __init numa_init(int (*init_func)(void))
375{
376 int ret;
377
378 nodes_clear(numa_nodes_parsed);
379 nodes_clear(node_possible_map);
380 nodes_clear(node_online_map);
381 numa_free_distance();
382
383 ret = numa_alloc_distance();
384 if (ret < 0)
385 return ret;
386
387 ret = init_func();
388 if (ret < 0)
389 return ret;
390
794224ea
ZL
391 if (nodes_empty(numa_nodes_parsed)) {
392 pr_info("No NUMA configuration found\n");
1a2db300 393 return -EINVAL;
794224ea 394 }
1a2db300
GK
395
396 ret = numa_register_nodes();
397 if (ret < 0)
398 return ret;
399
400 setup_node_to_cpumask_map();
401
1a2db300
GK
402 return 0;
403}
404
405/**
406 * dummy_numa_init - Fallback dummy NUMA init
407 *
408 * Used if there's no underlying NUMA architecture, NUMA initialization
409 * fails, or NUMA is disabled on the command line.
410 *
411 * Must online at least one node (node 0) and add memory blocks that cover all
412 * allowed memory. It is unlikely that this function fails.
413 */
414static int __init dummy_numa_init(void)
415{
416 int ret;
417 struct memblock_region *mblk;
418
34c33370
DD
419 if (numa_off)
420 pr_info("NUMA disabled\n"); /* Forced off on command line. */
f11c7bac
KW
421 pr_info("Faking a node at [mem %#018Lx-%#018Lx]\n",
422 0LLU, PFN_PHYS(max_pfn) - 1);
1a2db300
GK
423
424 for_each_memblock(memory, mblk) {
8ccbbdaa 425 ret = numa_add_memblk(0, mblk->base, mblk->base + mblk->size);
1a2db300
GK
426 if (!ret)
427 continue;
428
429 pr_err("NUMA init failed\n");
430 return ret;
431 }
432
34c33370 433 numa_off = true;
1a2db300
GK
434 return 0;
435}
436
437/**
438 * arm64_numa_init - Initialize NUMA
439 *
440 * Try each configured NUMA initialization method until one succeeds. The
441 * last fallback is dummy single node config encomapssing whole memory.
442 */
443void __init arm64_numa_init(void)
444{
445 if (!numa_off) {
d8b47fca
HG
446 if (!acpi_disabled && !numa_init(arm64_acpi_numa_init))
447 return;
448 if (acpi_disabled && !numa_init(of_numa_init))
1a2db300
GK
449 return;
450 }
451
452 numa_init(dummy_numa_init);
453}