Merge tag 'pull-18-rc1-work.mount' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux-block.git] / include / linux / node.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
1da177e4
LT
2/*
3 * include/linux/node.h - generic node definition
4 *
5 * This is mainly for topological representation. We define the
6 * basic 'struct node' here, which can be embedded in per-arch
7 * definitions of processors.
8 *
9 * Basic handling of the devices is done in drivers/base/node.c
10 * and system devices are handled in drivers/base/sys.c.
11 *
12 * Nodes are exported via driverfs in the class/node/devices/
13 * directory.
1da177e4
LT
14 */
15#ifndef _LINUX_NODE_H_
16#define _LINUX_NODE_H_
17
10fbcf4c 18#include <linux/device.h>
1da177e4 19#include <linux/cpumask.h>
08d9dbe7 20#include <linux/list.h>
39da08cb 21#include <linux/workqueue.h>
1da177e4 22
e1cf33aa
KB
23/**
24 * struct node_hmem_attrs - heterogeneous memory performance attributes
25 *
26 * @read_bandwidth: Read bandwidth in MB/s
27 * @write_bandwidth: Write bandwidth in MB/s
28 * @read_latency: Read latency in nanoseconds
29 * @write_latency: Write latency in nanoseconds
30 */
31struct node_hmem_attrs {
32 unsigned int read_bandwidth;
33 unsigned int write_bandwidth;
34 unsigned int read_latency;
35 unsigned int write_latency;
36};
37
acc02a10
KB
38enum cache_indexing {
39 NODE_CACHE_DIRECT_MAP,
40 NODE_CACHE_INDEXED,
41 NODE_CACHE_OTHER,
42};
43
44enum cache_write_policy {
45 NODE_CACHE_WRITE_BACK,
46 NODE_CACHE_WRITE_THROUGH,
47 NODE_CACHE_WRITE_OTHER,
48};
49
50/**
51 * struct node_cache_attrs - system memory caching attributes
52 *
53 * @indexing: The ways memory blocks may be placed in cache
54 * @write_policy: Write back or write through policy
55 * @size: Total size of cache in bytes
56 * @line_size: Number of bytes fetched on a cache miss
57 * @level: The cache hierarchy level
58 */
59struct node_cache_attrs {
60 enum cache_indexing indexing;
61 enum cache_write_policy write_policy;
62 u64 size;
63 u16 line_size;
64 u8 level;
65};
66
e1cf33aa 67#ifdef CONFIG_HMEM_REPORTING
acc02a10 68void node_add_cache(unsigned int nid, struct node_cache_attrs *cache_attrs);
e1cf33aa
KB
69void node_set_perf_attrs(unsigned int nid, struct node_hmem_attrs *hmem_attrs,
70 unsigned access);
71#else
acc02a10
KB
72static inline void node_add_cache(unsigned int nid,
73 struct node_cache_attrs *cache_attrs)
74{
75}
76
e1cf33aa
KB
77static inline void node_set_perf_attrs(unsigned int nid,
78 struct node_hmem_attrs *hmem_attrs,
79 unsigned access)
80{
81}
82#endif
83
1da177e4 84struct node {
10fbcf4c 85 struct device dev;
08d9dbe7 86 struct list_head access_list;
39da08cb 87
50f9481e 88#if defined(CONFIG_MEMORY_HOTPLUG) && defined(CONFIG_HUGETLBFS)
39da08cb
LS
89 struct work_struct node_work;
90#endif
acc02a10
KB
91#ifdef CONFIG_HMEM_REPORTING
92 struct list_head cache_attrs;
93 struct device *cache_dev;
94#endif
1da177e4
LT
95};
96
c04fc586 97struct memory_block;
8732794b 98extern struct node *node_devices[];
9a305230 99typedef void (*node_registration_func_t)(struct node *);
0fc44159 100
50f9481e 101#if defined(CONFIG_MEMORY_HOTPLUG) && defined(CONFIG_NUMA)
cc651559
DH
102void register_memory_blocks_under_node(int nid, unsigned long start_pfn,
103 unsigned long end_pfn,
104 enum meminit_context context);
9037a993 105#else
cc651559
DH
106static inline void register_memory_blocks_under_node(int nid, unsigned long start_pfn,
107 unsigned long end_pfn,
108 enum meminit_context context)
9037a993 109{
9037a993
MH
110}
111#endif
112
4b45099b 113extern void unregister_node(struct node *node);
36920e06 114#ifdef CONFIG_NUMA
2848a28b 115extern void node_dev_init(void);
9037a993
MH
116/* Core of the node registration - only memory hotplug should use this */
117extern int __register_one_node(int nid);
118
119/* Registers an online node */
120static inline int register_one_node(int nid)
121{
122 int error = 0;
123
124 if (node_online(nid)) {
125 struct pglist_data *pgdat = NODE_DATA(nid);
4fbce633
OS
126 unsigned long start_pfn = pgdat->node_start_pfn;
127 unsigned long end_pfn = start_pfn + pgdat->node_spanned_pages;
9037a993
MH
128
129 error = __register_one_node(nid);
130 if (error)
131 return error;
cc651559
DH
132 register_memory_blocks_under_node(nid, start_pfn, end_pfn,
133 MEMINIT_EARLY);
9037a993
MH
134 }
135
136 return error;
137}
138
0fc44159 139extern void unregister_one_node(int nid);
76b67ed9
KH
140extern int register_cpu_under_node(unsigned int cpu, unsigned int nid);
141extern int unregister_cpu_under_node(unsigned int cpu, unsigned int nid);
a31b264c 142extern void unregister_memory_block_under_nodes(struct memory_block *mem_blk);
9a305230 143
08d9dbe7
KB
144extern int register_memory_node_under_compute_node(unsigned int mem_nid,
145 unsigned int cpu_nid,
146 unsigned access);
147
9a305230
LS
148#ifdef CONFIG_HUGETLBFS
149extern void register_hugetlbfs_with_node(node_registration_func_t doregister,
150 node_registration_func_t unregister);
151#endif
76b67ed9 152#else
2848a28b
DH
153static inline void node_dev_init(void)
154{
155}
9037a993
MH
156static inline int __register_one_node(int nid)
157{
158 return 0;
159}
36920e06
KH
160static inline int register_one_node(int nid)
161{
162 return 0;
163}
164static inline int unregister_one_node(int nid)
165{
166 return 0;
167}
76b67ed9
KH
168static inline int register_cpu_under_node(unsigned int cpu, unsigned int nid)
169{
170 return 0;
171}
172static inline int unregister_cpu_under_node(unsigned int cpu, unsigned int nid)
173{
174 return 0;
175}
a31b264c 176static inline void unregister_memory_block_under_nodes(struct memory_block *mem_blk)
c04fc586 177{
c04fc586 178}
9a305230
LS
179
180static inline void register_hugetlbfs_with_node(node_registration_func_t reg,
181 node_registration_func_t unreg)
182{
183}
76b67ed9 184#endif
1da177e4 185
10fbcf4c 186#define to_node(device) container_of(device, struct node, dev)
1da177e4 187
e39bb6be
HY
188static inline bool node_is_toptier(int node)
189{
190 return node_state(node, N_CPU);
191}
192
1da177e4 193#endif /* _LINUX_NODE_H_ */