blob: 4139d728f8b381a158b66ea57d128c0c3520c806 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 */
15#ifndef _LINUX_NODE_H_
16#define _LINUX_NODE_H_
17
Kay Sievers10fbcf42011-12-21 14:48:43 -080018#include <linux/device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/cpumask.h>
Keith Busch08d9dbe2019-03-11 14:56:00 -060020#include <linux/list.h>
Lee Schermerhorn39da08c2009-12-14 17:58:36 -080021#include <linux/workqueue.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Keith Busche1cf33a2019-03-11 14:56:01 -060023/**
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
38#ifdef CONFIG_HMEM_REPORTING
39void node_set_perf_attrs(unsigned int nid, struct node_hmem_attrs *hmem_attrs,
40 unsigned access);
41#else
42static inline void node_set_perf_attrs(unsigned int nid,
43 struct node_hmem_attrs *hmem_attrs,
44 unsigned access)
45{
46}
47#endif
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049struct node {
Kay Sievers10fbcf42011-12-21 14:48:43 -080050 struct device dev;
Keith Busch08d9dbe2019-03-11 14:56:00 -060051 struct list_head access_list;
Lee Schermerhorn39da08c2009-12-14 17:58:36 -080052
53#if defined(CONFIG_MEMORY_HOTPLUG_SPARSE) && defined(CONFIG_HUGETLBFS)
54 struct work_struct node_work;
55#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070056};
57
Gary Hadec04fc582009-01-06 14:39:14 -080058struct memory_block;
Wen Congyang87327942012-12-11 16:00:56 -080059extern struct node *node_devices[];
Lee Schermerhorn9a3052302009-12-14 17:58:25 -080060typedef void (*node_registration_func_t)(struct node *);
Yasunori Goto0fc44152006-06-27 02:53:38 -070061
Michal Hocko9037a992017-07-06 15:37:49 -070062#if defined(CONFIG_MEMORY_HOTPLUG_SPARSE) && defined(CONFIG_NUMA)
Jonathan Camerona2155862018-05-25 14:47:53 -070063extern int link_mem_sections(int nid, unsigned long start_pfn,
Oscar Salvador4fbce632018-08-17 15:46:22 -070064 unsigned long end_pfn);
Michal Hocko9037a992017-07-06 15:37:49 -070065#else
Jonathan Camerona2155862018-05-25 14:47:53 -070066static inline int link_mem_sections(int nid, unsigned long start_pfn,
Oscar Salvador4fbce632018-08-17 15:46:22 -070067 unsigned long end_pfn)
Michal Hocko9037a992017-07-06 15:37:49 -070068{
69 return 0;
70}
71#endif
72
Keiichiro Tokunaga4b450992005-05-08 21:28:53 +090073extern void unregister_node(struct node *node);
KAMEZAWA Hiroyuki36920e02006-08-27 01:23:52 -070074#ifdef CONFIG_NUMA
Michal Hocko9037a992017-07-06 15:37:49 -070075/* Core of the node registration - only memory hotplug should use this */
76extern int __register_one_node(int nid);
77
78/* Registers an online node */
79static inline int register_one_node(int nid)
80{
81 int error = 0;
82
83 if (node_online(nid)) {
84 struct pglist_data *pgdat = NODE_DATA(nid);
Oscar Salvador4fbce632018-08-17 15:46:22 -070085 unsigned long start_pfn = pgdat->node_start_pfn;
86 unsigned long end_pfn = start_pfn + pgdat->node_spanned_pages;
Michal Hocko9037a992017-07-06 15:37:49 -070087
88 error = __register_one_node(nid);
89 if (error)
90 return error;
91 /* link memory sections under this node */
Oscar Salvador4fbce632018-08-17 15:46:22 -070092 error = link_mem_sections(nid, start_pfn, end_pfn);
Michal Hocko9037a992017-07-06 15:37:49 -070093 }
94
95 return error;
96}
97
Yasunori Goto0fc44152006-06-27 02:53:38 -070098extern void unregister_one_node(int nid);
KAMEZAWA Hiroyuki76b67ed2006-06-27 02:53:41 -070099extern int register_cpu_under_node(unsigned int cpu, unsigned int nid);
100extern int unregister_cpu_under_node(unsigned int cpu, unsigned int nid);
Gary Hadec04fc582009-01-06 14:39:14 -0800101extern int register_mem_sect_under_node(struct memory_block *mem_blk,
Oscar Salvador4fbce632018-08-17 15:46:22 -0700102 void *arg);
Nathan Fontenotd3360162011-01-20 10:44:29 -0600103extern int unregister_mem_sect_under_nodes(struct memory_block *mem_blk,
104 unsigned long phys_index);
Lee Schermerhorn9a3052302009-12-14 17:58:25 -0800105
Keith Busch08d9dbe2019-03-11 14:56:00 -0600106extern int register_memory_node_under_compute_node(unsigned int mem_nid,
107 unsigned int cpu_nid,
108 unsigned access);
109
Lee Schermerhorn9a3052302009-12-14 17:58:25 -0800110#ifdef CONFIG_HUGETLBFS
111extern void register_hugetlbfs_with_node(node_registration_func_t doregister,
112 node_registration_func_t unregister);
113#endif
KAMEZAWA Hiroyuki76b67ed2006-06-27 02:53:41 -0700114#else
Michal Hocko9037a992017-07-06 15:37:49 -0700115static inline int __register_one_node(int nid)
116{
117 return 0;
118}
KAMEZAWA Hiroyuki36920e02006-08-27 01:23:52 -0700119static inline int register_one_node(int nid)
120{
121 return 0;
122}
123static inline int unregister_one_node(int nid)
124{
125 return 0;
126}
KAMEZAWA Hiroyuki76b67ed2006-06-27 02:53:41 -0700127static inline int register_cpu_under_node(unsigned int cpu, unsigned int nid)
128{
129 return 0;
130}
131static inline int unregister_cpu_under_node(unsigned int cpu, unsigned int nid)
132{
133 return 0;
134}
Gary Hadec04fc582009-01-06 14:39:14 -0800135static inline int register_mem_sect_under_node(struct memory_block *mem_blk,
Oscar Salvador4fbce632018-08-17 15:46:22 -0700136 void *arg)
Gary Hadec04fc582009-01-06 14:39:14 -0800137{
138 return 0;
139}
Nathan Fontenotd3360162011-01-20 10:44:29 -0600140static inline int unregister_mem_sect_under_nodes(struct memory_block *mem_blk,
141 unsigned long phys_index)
Gary Hadec04fc582009-01-06 14:39:14 -0800142{
143 return 0;
144}
Lee Schermerhorn9a3052302009-12-14 17:58:25 -0800145
146static inline void register_hugetlbfs_with_node(node_registration_func_t reg,
147 node_registration_func_t unreg)
148{
149}
KAMEZAWA Hiroyuki76b67ed2006-06-27 02:53:41 -0700150#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Kay Sievers10fbcf42011-12-21 14:48:43 -0800152#define to_node(device) container_of(device, struct node, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
154#endif /* _LINUX_NODE_H_ */