blob: eaa31e567d1ecef44b8c78b3221f8878dbdb5131 [file] [log] [blame]
Thomas Gleixnercaab2772019-06-03 07:44:50 +02001// SPDX-License-Identifier: GPL-2.0-only
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -07002/*
3 * NUMA support, based on the x86 implementation.
4 *
5 * Copyright (C) 2015 Cavium Inc.
6 * Author: Ganapatrao Kulkarni <gkulkarni@cavium.com>
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -07007 */
8
Kefeng Wangf11c7ba2016-09-01 14:54:59 +08009#define pr_fmt(fmt) "NUMA: " fmt
10
Hanjun Guod8b47fc2016-05-24 15:35:44 -070011#include <linux/acpi.h>
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -070012#include <linux/memblock.h>
13#include <linux/module.h>
14#include <linux/of.h>
15
Zhen Lei7af3a0a2016-09-01 14:55:00 +080016#include <asm/sections.h>
Catalin Marinasbfe6c8a2016-08-15 16:33:10 +010017
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -070018struct pglist_data *node_data[MAX_NUMNODES] __read_mostly;
19EXPORT_SYMBOL(node_data);
20nodemask_t numa_nodes_parsed __initdata;
21static int cpu_to_node_map[NR_CPUS] = { [0 ... NR_CPUS-1] = NUMA_NO_NODE };
22
23static int numa_distance_cnt;
24static u8 *numa_distance;
Boris Ostrovskyaec03f82016-12-12 23:18:29 -050025bool numa_off;
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -070026
27static __init int numa_parse_early_param(char *opt)
28{
29 if (!opt)
30 return -EINVAL;
Chuhong Yuanb3e089c2019-07-30 10:44:15 +080031 if (str_has_prefix(opt, "off"))
David Daney34c33372016-05-24 15:35:37 -070032 numa_off = true;
Kefeng Wangf11c7ba2016-09-01 14:54:59 +080033
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -070034 return 0;
35}
36early_param("numa", numa_parse_early_param);
37
38cpumask_var_t node_to_cpumask_map[MAX_NUMNODES];
39EXPORT_SYMBOL(node_to_cpumask_map);
40
41#ifdef CONFIG_DEBUG_PER_CPU_MAPS
42
43/*
44 * Returns a pointer to the bitmask of CPUs on Node 'node'.
45 */
46const struct cpumask *cpumask_of_node(int node)
47{
Zhengyuan Liua194c5f2020-09-21 10:39:36 +080048
49 if (node == NUMA_NO_NODE)
50 return cpu_all_mask;
51
52 if (WARN_ON(node < 0 || node >= nr_node_ids))
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -070053 return cpu_none_mask;
54
55 if (WARN_ON(node_to_cpumask_map[node] == NULL))
56 return cpu_online_mask;
57
58 return node_to_cpumask_map[node];
59}
60EXPORT_SYMBOL(cpumask_of_node);
61
62#endif
63
Sudeep Holla97fd6012018-07-06 12:02:43 +010064static void numa_update_cpu(unsigned int cpu, bool remove)
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -070065{
Sudeep Holla97fd6012018-07-06 12:02:43 +010066 int nid = cpu_to_node(cpu);
67
68 if (nid == NUMA_NO_NODE)
69 return;
70
71 if (remove)
72 cpumask_clear_cpu(cpu, node_to_cpumask_map[nid]);
73 else
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -070074 cpumask_set_cpu(cpu, node_to_cpumask_map[nid]);
75}
76
Sudeep Holla97fd6012018-07-06 12:02:43 +010077void numa_add_cpu(unsigned int cpu)
78{
79 numa_update_cpu(cpu, false);
80}
81
82void numa_remove_cpu(unsigned int cpu)
83{
84 numa_update_cpu(cpu, true);
85}
86
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -070087void numa_clear_node(unsigned int cpu)
88{
Sudeep Holla97fd6012018-07-06 12:02:43 +010089 numa_remove_cpu(cpu);
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -070090 set_cpu_numa_node(cpu, NUMA_NO_NODE);
91}
92
93/*
94 * Allocate node_to_cpumask_map based on number of available nodes
95 * Requires node_possible_map to be valid.
96 *
97 * Note: cpumask_of_node() is not valid until after this is done.
98 * (Use CONFIG_DEBUG_PER_CPU_MAPS to check this.)
99 */
100static void __init setup_node_to_cpumask_map(void)
101{
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700102 int node;
103
104 /* setup nr_node_ids if not done yet */
105 if (nr_node_ids == MAX_NUMNODES)
106 setup_nr_node_ids();
107
108 /* allocate and clear the mapping */
109 for (node = 0; node < nr_node_ids; node++) {
110 alloc_bootmem_cpumask_var(&node_to_cpumask_map[node]);
111 cpumask_clear(node_to_cpumask_map[node]);
112 }
113
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700114 /* cpumask_of_node() will now work */
Alexey Dobriyanb9726c22019-03-05 15:48:26 -0800115 pr_debug("Node to cpumask map for %u nodes\n", nr_node_ids);
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700116}
117
118/*
Qian Caib1ce45e2019-03-14 12:16:19 -0400119 * Set the cpu to node and mem mapping
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700120 */
121void numa_store_cpu_info(unsigned int cpu)
122{
Sudeep Holla97fd6012018-07-06 12:02:43 +0100123 set_cpu_numa_node(cpu, cpu_to_node_map[cpu]);
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700124}
125
126void __init early_map_cpu_to_node(unsigned int cpu, int nid)
127{
128 /* fallback to node 0 */
Zhen Lei7ba5f602016-09-01 14:55:04 +0800129 if (nid < 0 || nid >= MAX_NUMNODES || numa_off)
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700130 nid = 0;
131
132 cpu_to_node_map[cpu] = nid;
Zhen Lei7ba5f602016-09-01 14:55:04 +0800133
134 /*
135 * We should set the numa node of cpu0 as soon as possible, because it
136 * has already been set up online before. cpu_to_node(0) will soon be
137 * called.
138 */
139 if (!cpu)
140 set_cpu_numa_node(cpu, nid);
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700141}
142
Zhen Lei7af3a0a2016-09-01 14:55:00 +0800143#ifdef CONFIG_HAVE_SETUP_PER_CPU_AREA
144unsigned long __per_cpu_offset[NR_CPUS] __read_mostly;
145EXPORT_SYMBOL(__per_cpu_offset);
146
147static int __init early_cpu_to_node(int cpu)
148{
149 return cpu_to_node_map[cpu];
150}
151
152static int __init pcpu_cpu_distance(unsigned int from, unsigned int to)
153{
Yisheng Xie26984c32016-10-21 16:13:55 +0800154 return node_distance(early_cpu_to_node(from), early_cpu_to_node(to));
Zhen Lei7af3a0a2016-09-01 14:55:00 +0800155}
156
Zhen Lei7af3a0a2016-09-01 14:55:00 +0800157void __init setup_per_cpu_areas(void)
158{
159 unsigned long delta;
160 unsigned int cpu;
Kefeng Wang09cea612021-11-05 13:39:44 -0700161 int rc = -EINVAL;
Zhen Lei7af3a0a2016-09-01 14:55:00 +0800162
Kefeng Wang09cea612021-11-05 13:39:44 -0700163 if (pcpu_chosen_fc != PCPU_FC_PAGE) {
164 /*
165 * Always reserve area for module percpu variables. That's
166 * what the legacy allocator did.
167 */
168 rc = pcpu_embed_first_chunk(PERCPU_MODULE_RESERVE,
169 PERCPU_DYNAMIC_RESERVE, PAGE_SIZE,
170 pcpu_cpu_distance,
Kefeng Wang23f91712022-01-19 18:07:49 -0800171 early_cpu_to_node);
Kefeng Wang09cea612021-11-05 13:39:44 -0700172#ifdef CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK
173 if (rc < 0)
174 pr_warn("PERCPU: %s allocator failed (%d), falling back to page size\n",
175 pcpu_fc_names[pcpu_chosen_fc], rc);
176#endif
177 }
178
179#ifdef CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK
Zhen Lei7af3a0a2016-09-01 14:55:00 +0800180 if (rc < 0)
Kefeng Wang20c03572022-01-19 18:07:53 -0800181 rc = pcpu_page_first_chunk(PERCPU_MODULE_RESERVE, early_cpu_to_node);
Kefeng Wang09cea612021-11-05 13:39:44 -0700182#endif
183 if (rc < 0)
184 panic("Failed to initialize percpu areas (err=%d).", rc);
Zhen Lei7af3a0a2016-09-01 14:55:00 +0800185
186 delta = (unsigned long)pcpu_base_addr - (unsigned long)__per_cpu_start;
187 for_each_possible_cpu(cpu)
188 __per_cpu_offset[cpu] = delta + pcpu_unit_offsets[cpu];
189}
190#endif
191
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700192/**
Qian Caib1ce45e2019-03-14 12:16:19 -0400193 * numa_add_memblk() - Set node id to memblk
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700194 * @nid: NUMA node ID of the new memblk
195 * @start: Start address of the new memblk
Hanjun Guo8ccbbda2016-05-24 15:35:36 -0700196 * @end: End address of the new memblk
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700197 *
198 * RETURNS:
199 * 0 on success, -errno on failure.
200 */
Hanjun Guo8ccbbda2016-05-24 15:35:36 -0700201int __init numa_add_memblk(int nid, u64 start, u64 end)
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700202{
203 int ret;
204
Hanjun Guo8ccbbda2016-05-24 15:35:36 -0700205 ret = memblock_set_node(start, (end - start), &memblock.memory, nid);
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700206 if (ret < 0) {
Kefeng Wangf11c7ba2016-09-01 14:54:59 +0800207 pr_err("memblock [0x%llx - 0x%llx] failed to add on node %d\n",
Hanjun Guo8ccbbda2016-05-24 15:35:36 -0700208 start, (end - 1), nid);
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700209 return ret;
210 }
211
212 node_set(nid, numa_nodes_parsed);
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700213 return ret;
214}
215
Qian Caib1ce45e2019-03-14 12:16:19 -0400216/*
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700217 * Initialize NODE_DATA for a node on the local memory
218 */
219static void __init setup_node_data(int nid, u64 start_pfn, u64 end_pfn)
220{
221 const size_t nd_size = roundup(sizeof(pg_data_t), SMP_CACHE_BYTES);
222 u64 nd_pa;
223 void *nd;
224 int tnid;
225
Punit Agrawalece4b202017-07-20 12:03:59 +0100226 if (start_pfn >= end_pfn)
Hanjun Guo3f7a09f2016-10-21 16:13:56 +0800227 pr_info("Initmem setup node %d [<memory-less node>]\n", nid);
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700228
Mike Rapoport9a8dd702018-10-30 15:07:59 -0700229 nd_pa = memblock_phys_alloc_try_nid(nd_size, SMP_CACHE_BYTES, nid);
Mike Rapoport33755572019-03-11 23:29:21 -0700230 if (!nd_pa)
231 panic("Cannot allocate %zu bytes for node %d data\n",
232 nd_size, nid);
233
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700234 nd = __va(nd_pa);
235
236 /* report and initialize */
Kefeng Wangf11c7ba2016-09-01 14:54:59 +0800237 pr_info("NODE_DATA [mem %#010Lx-%#010Lx]\n",
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700238 nd_pa, nd_pa + nd_size - 1);
239 tnid = early_pfn_to_nid(nd_pa >> PAGE_SHIFT);
240 if (tnid != nid)
Kefeng Wangf11c7ba2016-09-01 14:54:59 +0800241 pr_info("NODE_DATA(%d) on node %d\n", nid, tnid);
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700242
243 node_data[nid] = nd;
244 memset(NODE_DATA(nid), 0, sizeof(pg_data_t));
245 NODE_DATA(nid)->node_id = nid;
246 NODE_DATA(nid)->node_start_pfn = start_pfn;
247 NODE_DATA(nid)->node_spanned_pages = end_pfn - start_pfn;
248}
249
Qian Caib1ce45e2019-03-14 12:16:19 -0400250/*
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700251 * numa_free_distance
252 *
253 * The current table is freed.
254 */
255void __init numa_free_distance(void)
256{
257 size_t size;
258
259 if (!numa_distance)
260 return;
261
262 size = numa_distance_cnt * numa_distance_cnt *
263 sizeof(numa_distance[0]);
264
Mike Rapoport4421cca2021-11-05 13:43:22 -0700265 memblock_free(numa_distance, size);
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700266 numa_distance_cnt = 0;
267 numa_distance = NULL;
268}
269
Qian Caib1ce45e2019-03-14 12:16:19 -0400270/*
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700271 * Create a new NUMA distance table.
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700272 */
273static int __init numa_alloc_distance(void)
274{
275 size_t size;
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700276 int i, j;
277
278 size = nr_node_ids * nr_node_ids * sizeof(numa_distance[0]);
Mike Rapoport5787ea52021-11-05 13:43:07 -0700279 numa_distance = memblock_alloc(size, PAGE_SIZE);
280 if (WARN_ON(!numa_distance))
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700281 return -ENOMEM;
282
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700283 numa_distance_cnt = nr_node_ids;
284
285 /* fill with the default distances */
286 for (i = 0; i < numa_distance_cnt; i++)
287 for (j = 0; j < numa_distance_cnt; j++)
288 numa_distance[i * numa_distance_cnt + j] = i == j ?
289 LOCAL_DISTANCE : REMOTE_DISTANCE;
290
Kefeng Wangf11c7ba2016-09-01 14:54:59 +0800291 pr_debug("Initialized distance table, cnt=%d\n", numa_distance_cnt);
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700292
293 return 0;
294}
295
296/**
Qian Caib1ce45e2019-03-14 12:16:19 -0400297 * numa_set_distance() - Set inter node NUMA distance from node to node.
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700298 * @from: the 'from' node to set distance
299 * @to: the 'to' node to set distance
300 * @distance: NUMA distance
301 *
302 * Set the distance from node @from to @to to @distance.
303 * If distance table doesn't exist, a warning is printed.
304 *
305 * If @from or @to is higher than the highest known node or lower than zero
306 * or @distance doesn't make sense, the call is ignored.
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700307 */
308void __init numa_set_distance(int from, int to, int distance)
309{
310 if (!numa_distance) {
Kefeng Wangf11c7ba2016-09-01 14:54:59 +0800311 pr_warn_once("Warning: distance table not allocated yet\n");
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700312 return;
313 }
314
315 if (from >= numa_distance_cnt || to >= numa_distance_cnt ||
316 from < 0 || to < 0) {
Kefeng Wangf11c7ba2016-09-01 14:54:59 +0800317 pr_warn_once("Warning: node ids are out of bound, from=%d to=%d distance=%d\n",
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700318 from, to, distance);
319 return;
320 }
321
322 if ((u8)distance != distance ||
323 (from == to && distance != LOCAL_DISTANCE)) {
Kefeng Wangf11c7ba2016-09-01 14:54:59 +0800324 pr_warn_once("Warning: invalid distance parameter, from=%d to=%d distance=%d\n",
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700325 from, to, distance);
326 return;
327 }
328
329 numa_distance[from * numa_distance_cnt + to] = distance;
330}
331
Qian Caib1ce45e2019-03-14 12:16:19 -0400332/*
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700333 * Return NUMA distance @from to @to
334 */
335int __node_distance(int from, int to)
336{
337 if (from >= numa_distance_cnt || to >= numa_distance_cnt)
338 return from == to ? LOCAL_DISTANCE : REMOTE_DISTANCE;
339 return numa_distance[from * numa_distance_cnt + to];
340}
341EXPORT_SYMBOL(__node_distance);
342
343static int __init numa_register_nodes(void)
344{
345 int nid;
346 struct memblock_region *mblk;
347
348 /* Check that valid nid is set to memblks */
Mike Rapoportcc6de162020-10-13 16:58:30 -0700349 for_each_mem_region(mblk) {
Mike Rapoportd622abf2020-06-03 15:56:53 -0700350 int mblk_nid = memblock_get_region_node(mblk);
Randy Dunlap4cd48bb2021-01-27 19:55:33 -0800351 phys_addr_t start = mblk->base;
352 phys_addr_t end = mblk->base + mblk->size - 1;
Mike Rapoportd622abf2020-06-03 15:56:53 -0700353
354 if (mblk_nid == NUMA_NO_NODE || mblk_nid >= MAX_NUMNODES) {
Randy Dunlap4cd48bb2021-01-27 19:55:33 -0800355 pr_warn("Warning: invalid memblk node %d [mem %pap-%pap]\n",
356 mblk_nid, &start, &end);
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700357 return -EINVAL;
358 }
Mike Rapoportd622abf2020-06-03 15:56:53 -0700359 }
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700360
361 /* Finally register nodes. */
362 for_each_node_mask(nid, numa_nodes_parsed) {
363 unsigned long start_pfn, end_pfn;
364
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);
368 }
369
370 /* Setup online nodes to actual nodes*/
371 node_possible_map = numa_nodes_parsed;
372
373 return 0;
374}
375
376static int __init numa_init(int (*init_func)(void))
377{
378 int ret;
379
380 nodes_clear(numa_nodes_parsed);
381 nodes_clear(node_possible_map);
382 nodes_clear(node_online_map);
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700383
384 ret = numa_alloc_distance();
385 if (ret < 0)
386 return ret;
387
388 ret = init_func();
389 if (ret < 0)
Anshuman Khandual52338082018-09-22 21:09:56 +0530390 goto out_free_distance;
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700391
Zhen Lei794224ea2016-09-01 14:54:56 +0800392 if (nodes_empty(numa_nodes_parsed)) {
393 pr_info("No NUMA configuration found\n");
Anshuman Khandual52338082018-09-22 21:09:56 +0530394 ret = -EINVAL;
395 goto out_free_distance;
Zhen Lei794224ea2016-09-01 14:54:56 +0800396 }
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700397
398 ret = numa_register_nodes();
399 if (ret < 0)
Anshuman Khandual52338082018-09-22 21:09:56 +0530400 goto out_free_distance;
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700401
402 setup_node_to_cpumask_map();
403
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700404 return 0;
Anshuman Khandual52338082018-09-22 21:09:56 +0530405out_free_distance:
406 numa_free_distance();
407 return ret;
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700408}
409
410/**
Qian Caib1ce45e2019-03-14 12:16:19 -0400411 * dummy_numa_init() - Fallback dummy NUMA init
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700412 *
413 * Used if there's no underlying NUMA architecture, NUMA initialization
414 * fails, or NUMA is disabled on the command line.
415 *
416 * Must online at least one node (node 0) and add memory blocks that cover all
417 * allowed memory. It is unlikely that this function fails.
Qian Caib1ce45e2019-03-14 12:16:19 -0400418 *
419 * Return: 0 on success, -errno on failure.
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700420 */
421static int __init dummy_numa_init(void)
422{
Mike Rapoportab8f21a2020-10-13 16:57:31 -0700423 phys_addr_t start = memblock_start_of_DRAM();
Randy Dunlap4cd48bb2021-01-27 19:55:33 -0800424 phys_addr_t end = memblock_end_of_DRAM() - 1;
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700425 int ret;
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700426
David Daney34c33372016-05-24 15:35:37 -0700427 if (numa_off)
428 pr_info("NUMA disabled\n"); /* Forced off on command line. */
Randy Dunlap4cd48bb2021-01-27 19:55:33 -0800429 pr_info("Faking a node at [mem %pap-%pap]\n", &start, &end);
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700430
Randy Dunlap4cd48bb2021-01-27 19:55:33 -0800431 ret = numa_add_memblk(0, start, end + 1);
Mike Rapoportab8f21a2020-10-13 16:57:31 -0700432 if (ret) {
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700433 pr_err("NUMA init failed\n");
434 return ret;
435 }
436
David Daney34c33372016-05-24 15:35:37 -0700437 numa_off = true;
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700438 return 0;
439}
440
Atish Patraeb755412020-11-18 16:38:25 -0800441#ifdef CONFIG_ACPI_NUMA
442static int __init arch_acpi_numa_init(void)
443{
444 int ret;
445
446 ret = acpi_numa_init();
447 if (ret) {
448 pr_info("Failed to initialise from firmware\n");
449 return ret;
450 }
451
452 return srat_disabled() ? -EINVAL : 0;
453}
454#else
455static int __init arch_acpi_numa_init(void)
456{
457 return -EOPNOTSUPP;
458}
459#endif
460
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700461/**
Atish Patraeb755412020-11-18 16:38:25 -0800462 * arch_numa_init() - Initialize NUMA
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700463 *
Qian Caib1ce45e2019-03-14 12:16:19 -0400464 * Try each configured NUMA initialization method until one succeeds. The
Yanfei Xu9a747c92020-09-01 17:11:54 +0800465 * last fallback is dummy single node config encompassing whole memory.
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700466 */
Atish Patraeb755412020-11-18 16:38:25 -0800467void __init arch_numa_init(void)
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700468{
469 if (!numa_off) {
Atish Patraeb755412020-11-18 16:38:25 -0800470 if (!acpi_disabled && !numa_init(arch_acpi_numa_init))
Hanjun Guod8b47fc2016-05-24 15:35:44 -0700471 return;
472 if (acpi_disabled && !numa_init(of_numa_init))
Ganapatrao Kulkarni1a2db302016-04-08 15:50:27 -0700473 return;
474 }
475
476 numa_init(dummy_numa_init);
477}