1 /* SPDX-License-Identifier: GPL-2.0 */
4 #include <linux/init.h>
5 #include <linux/types.h>
7 #ifdef CONFIG_NODES_SHIFT
8 #define NODES_SHIFT CONFIG_NODES_SHIFT
13 #define MAX_NUMNODES (1 << NODES_SHIFT)
15 #define NUMA_NO_NODE (-1)
16 #define NUMA_NO_MEMBLK (-1)
18 static inline bool numa_valid_node(int nid)
20 return nid >= 0 && nid < MAX_NUMNODES;
23 /* optionally keep NUMA memory info available post init */
24 #ifdef CONFIG_NUMA_KEEP_MEMINFO
25 #define __initdata_or_meminfo
27 #define __initdata_or_meminfo __initdata
31 #include <asm/sparsemem.h>
33 /* Generic implementation available */
34 int numa_nearest_node(int node, unsigned int state);
36 #ifndef memory_add_physaddr_to_nid
37 int memory_add_physaddr_to_nid(u64 start);
40 #ifndef phys_to_target_node
41 int phys_to_target_node(u64 start);
44 int numa_fill_memblks(u64 start, u64 end);
46 #else /* !CONFIG_NUMA */
47 static inline int numa_nearest_node(int node, unsigned int state)
52 static inline int memory_add_physaddr_to_nid(u64 start)
56 static inline int phys_to_target_node(u64 start)
62 #define numa_map_to_online_node(node) numa_nearest_node(node, N_ONLINE)
64 #ifdef CONFIG_HAVE_ARCH_NODE_DEV_GROUP
65 extern const struct attribute_group arch_node_dev_group;
68 #endif /* _LINUX_NUMA_H */