1 /* SPDX-License-Identifier: GPL-2.0 */ 1 /* SPDX-License-Identifier: GPL-2.0 */ 2 /* 2 /* 3 * include/linux/node.h - generic node definit 3 * include/linux/node.h - generic node definition 4 * 4 * 5 * This is mainly for topological representati 5 * This is mainly for topological representation. We define the 6 * basic 'struct node' here, which can be embe 6 * basic 'struct node' here, which can be embedded in per-arch 7 * definitions of processors. 7 * definitions of processors. 8 * 8 * 9 * Basic handling of the devices is done in dr 9 * Basic handling of the devices is done in drivers/base/node.c 10 * and system devices are handled in drivers/b 10 * and system devices are handled in drivers/base/sys.c. 11 * 11 * 12 * Nodes are exported via driverfs in the clas 12 * Nodes are exported via driverfs in the class/node/devices/ 13 * directory. 13 * directory. 14 */ 14 */ 15 #ifndef _LINUX_NODE_H_ 15 #ifndef _LINUX_NODE_H_ 16 #define _LINUX_NODE_H_ 16 #define _LINUX_NODE_H_ 17 17 18 #include <linux/device.h> 18 #include <linux/device.h> >> 19 #include <linux/cpumask.h> 19 #include <linux/list.h> 20 #include <linux/list.h> 20 21 21 /** 22 /** 22 * struct access_coordinate - generic performa !! 23 * struct node_hmem_attrs - heterogeneous memory performance attributes 23 * 24 * 24 * @read_bandwidth: Read bandwidth in MB/s 25 * @read_bandwidth: Read bandwidth in MB/s 25 * @write_bandwidth: Write bandwidth in MB/ 26 * @write_bandwidth: Write bandwidth in MB/s 26 * @read_latency: Read latency in nanose 27 * @read_latency: Read latency in nanoseconds 27 * @write_latency: Write latency in nanos 28 * @write_latency: Write latency in nanoseconds 28 */ 29 */ 29 struct access_coordinate { !! 30 struct node_hmem_attrs { 30 unsigned int read_bandwidth; 31 unsigned int read_bandwidth; 31 unsigned int write_bandwidth; 32 unsigned int write_bandwidth; 32 unsigned int read_latency; 33 unsigned int read_latency; 33 unsigned int write_latency; 34 unsigned int write_latency; 34 }; 35 }; 35 36 36 /* << 37 * ACCESS_COORDINATE_LOCAL correlates to ACCES << 38 * - access_coordinate between target nod << 39 * ACCESS_COORDINATE_CPU correlates to ACCESS << 40 * - access_coordinate between target nod << 41 */ << 42 enum access_coordinate_class { << 43 ACCESS_COORDINATE_LOCAL, << 44 ACCESS_COORDINATE_CPU, << 45 ACCESS_COORDINATE_MAX << 46 }; << 47 << 48 enum cache_indexing { 37 enum cache_indexing { 49 NODE_CACHE_DIRECT_MAP, 38 NODE_CACHE_DIRECT_MAP, 50 NODE_CACHE_INDEXED, 39 NODE_CACHE_INDEXED, 51 NODE_CACHE_OTHER, 40 NODE_CACHE_OTHER, 52 }; 41 }; 53 42 54 enum cache_write_policy { 43 enum cache_write_policy { 55 NODE_CACHE_WRITE_BACK, 44 NODE_CACHE_WRITE_BACK, 56 NODE_CACHE_WRITE_THROUGH, 45 NODE_CACHE_WRITE_THROUGH, 57 NODE_CACHE_WRITE_OTHER, 46 NODE_CACHE_WRITE_OTHER, 58 }; 47 }; 59 48 60 /** 49 /** 61 * struct node_cache_attrs - system memory cac 50 * struct node_cache_attrs - system memory caching attributes 62 * 51 * 63 * @indexing: The ways memory blocks 52 * @indexing: The ways memory blocks may be placed in cache 64 * @write_policy: Write back or write th 53 * @write_policy: Write back or write through policy 65 * @size: Total size of cache in 54 * @size: Total size of cache in bytes 66 * @line_size: Number of bytes fetche 55 * @line_size: Number of bytes fetched on a cache miss 67 * @level: The cache hierarchy le 56 * @level: The cache hierarchy level 68 */ 57 */ 69 struct node_cache_attrs { 58 struct node_cache_attrs { 70 enum cache_indexing indexing; 59 enum cache_indexing indexing; 71 enum cache_write_policy write_policy; 60 enum cache_write_policy write_policy; 72 u64 size; 61 u64 size; 73 u16 line_size; 62 u16 line_size; 74 u8 level; 63 u8 level; 75 }; 64 }; 76 65 77 #ifdef CONFIG_HMEM_REPORTING 66 #ifdef CONFIG_HMEM_REPORTING 78 void node_add_cache(unsigned int nid, struct n 67 void node_add_cache(unsigned int nid, struct node_cache_attrs *cache_attrs); 79 void node_set_perf_attrs(unsigned int nid, str !! 68 void node_set_perf_attrs(unsigned int nid, struct node_hmem_attrs *hmem_attrs, 80 enum access_coordinat !! 69 unsigned access); 81 #else 70 #else 82 static inline void node_add_cache(unsigned int 71 static inline void node_add_cache(unsigned int nid, 83 struct node_ 72 struct node_cache_attrs *cache_attrs) 84 { 73 { 85 } 74 } 86 75 87 static inline void node_set_perf_attrs(unsigne 76 static inline void node_set_perf_attrs(unsigned int nid, 88 struct !! 77 struct node_hmem_attrs *hmem_attrs, 89 enum ac !! 78 unsigned access) 90 { 79 { 91 } 80 } 92 #endif 81 #endif 93 82 94 struct node { 83 struct node { 95 struct device dev; 84 struct device dev; 96 struct list_head access_list; 85 struct list_head access_list; 97 #ifdef CONFIG_HMEM_REPORTING 86 #ifdef CONFIG_HMEM_REPORTING 98 struct list_head cache_attrs; 87 struct list_head cache_attrs; 99 struct device *cache_dev; 88 struct device *cache_dev; 100 #endif 89 #endif 101 }; 90 }; 102 91 103 struct memory_block; 92 struct memory_block; 104 extern struct node *node_devices[]; 93 extern struct node *node_devices[]; 105 94 106 #if defined(CONFIG_MEMORY_HOTPLUG) && defined( 95 #if defined(CONFIG_MEMORY_HOTPLUG) && defined(CONFIG_NUMA) 107 void register_memory_blocks_under_node(int nid 96 void register_memory_blocks_under_node(int nid, unsigned long start_pfn, 108 unsigne 97 unsigned long end_pfn, 109 enum me 98 enum meminit_context context); 110 #else 99 #else 111 static inline void register_memory_blocks_unde 100 static inline void register_memory_blocks_under_node(int nid, unsigned long start_pfn, 112 101 unsigned long end_pfn, 113 102 enum meminit_context context) 114 { 103 { 115 } 104 } 116 #endif 105 #endif 117 106 118 extern void unregister_node(struct node *node) 107 extern void unregister_node(struct node *node); 119 #ifdef CONFIG_NUMA 108 #ifdef CONFIG_NUMA 120 extern void node_dev_init(void); 109 extern void node_dev_init(void); 121 /* Core of the node registration - only memory 110 /* Core of the node registration - only memory hotplug should use this */ 122 extern int __register_one_node(int nid); 111 extern int __register_one_node(int nid); 123 112 124 /* Registers an online node */ 113 /* Registers an online node */ 125 static inline int register_one_node(int nid) 114 static inline int register_one_node(int nid) 126 { 115 { 127 int error = 0; 116 int error = 0; 128 117 129 if (node_online(nid)) { 118 if (node_online(nid)) { 130 struct pglist_data *pgdat = NO 119 struct pglist_data *pgdat = NODE_DATA(nid); 131 unsigned long start_pfn = pgda 120 unsigned long start_pfn = pgdat->node_start_pfn; 132 unsigned long end_pfn = start_ 121 unsigned long end_pfn = start_pfn + pgdat->node_spanned_pages; 133 122 134 error = __register_one_node(ni 123 error = __register_one_node(nid); 135 if (error) 124 if (error) 136 return error; 125 return error; 137 register_memory_blocks_under_n 126 register_memory_blocks_under_node(nid, start_pfn, end_pfn, 138 127 MEMINIT_EARLY); 139 } 128 } 140 129 141 return error; 130 return error; 142 } 131 } 143 132 144 extern void unregister_one_node(int nid); 133 extern void unregister_one_node(int nid); 145 extern int register_cpu_under_node(unsigned in 134 extern int register_cpu_under_node(unsigned int cpu, unsigned int nid); 146 extern int unregister_cpu_under_node(unsigned 135 extern int unregister_cpu_under_node(unsigned int cpu, unsigned int nid); 147 extern void unregister_memory_block_under_node 136 extern void unregister_memory_block_under_nodes(struct memory_block *mem_blk); 148 137 149 extern int register_memory_node_under_compute_ 138 extern int register_memory_node_under_compute_node(unsigned int mem_nid, 150 139 unsigned int cpu_nid, 151 !! 140 unsigned access); 152 #else 141 #else 153 static inline void node_dev_init(void) 142 static inline void node_dev_init(void) 154 { 143 { 155 } 144 } 156 static inline int __register_one_node(int nid) 145 static inline int __register_one_node(int nid) 157 { 146 { 158 return 0; 147 return 0; 159 } 148 } 160 static inline int register_one_node(int nid) 149 static inline int register_one_node(int nid) 161 { 150 { 162 return 0; 151 return 0; 163 } 152 } 164 static inline int unregister_one_node(int nid) 153 static inline int unregister_one_node(int nid) 165 { 154 { 166 return 0; 155 return 0; 167 } 156 } 168 static inline int register_cpu_under_node(unsi 157 static inline int register_cpu_under_node(unsigned int cpu, unsigned int nid) 169 { 158 { 170 return 0; 159 return 0; 171 } 160 } 172 static inline int unregister_cpu_under_node(un 161 static inline int unregister_cpu_under_node(unsigned int cpu, unsigned int nid) 173 { 162 { 174 return 0; 163 return 0; 175 } 164 } 176 static inline void unregister_memory_block_und 165 static inline void unregister_memory_block_under_nodes(struct memory_block *mem_blk) 177 { 166 { 178 } 167 } 179 #endif 168 #endif 180 169 181 #define to_node(device) container_of(device, s 170 #define to_node(device) container_of(device, struct node, dev) 182 171 183 #endif /* _LINUX_NODE_H_ */ 172 #endif /* _LINUX_NODE_H_ */ 184 173
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.