• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ASM_POWERPC_TOPOLOGY_H
3 #define _ASM_POWERPC_TOPOLOGY_H
4 #ifdef __KERNEL__
5 
6 
7 struct device;
8 struct device_node;
9 struct drmem_lmb;
10 
11 #ifdef CONFIG_NUMA
12 
13 /*
14  * If zone_reclaim_mode is enabled, a RECLAIM_DISTANCE of 10 will mean that
15  * all zones on all nodes will be eligible for zone_reclaim().
16  */
17 #define RECLAIM_DISTANCE 10
18 
19 #include <asm/mmzone.h>
20 
21 #define cpumask_of_node(node) ((node) == -1 ?				\
22 			       cpu_all_mask :				\
23 			       node_to_cpumask_map[node])
24 
25 struct pci_bus;
26 #ifdef CONFIG_PCI
27 extern int pcibus_to_node(struct pci_bus *bus);
28 #else
pcibus_to_node(struct pci_bus * bus)29 static inline int pcibus_to_node(struct pci_bus *bus)
30 {
31 	return -1;
32 }
33 #endif
34 
35 #define cpumask_of_pcibus(bus)	(pcibus_to_node(bus) == -1 ?		\
36 				 cpu_all_mask :				\
37 				 cpumask_of_node(pcibus_to_node(bus)))
38 
39 int cpu_relative_distance(__be32 *cpu1_assoc, __be32 *cpu2_assoc);
40 extern int __node_distance(int, int);
41 #define node_distance(a, b) __node_distance(a, b)
42 
43 extern void __init dump_numa_cpu_topology(void);
44 
45 extern int sysfs_add_device_to_node(struct device *dev, int nid);
46 extern void sysfs_remove_device_from_node(struct device *dev, int nid);
47 
update_numa_cpu_lookup_table(unsigned int cpu,int node)48 static inline void update_numa_cpu_lookup_table(unsigned int cpu, int node)
49 {
50 	numa_cpu_lookup_table[cpu] = node;
51 }
52 
early_cpu_to_node(int cpu)53 static inline int early_cpu_to_node(int cpu)
54 {
55 	int nid;
56 
57 	nid = numa_cpu_lookup_table[cpu];
58 
59 	/*
60 	 * Fall back to node 0 if nid is unset (it should be, except bugs).
61 	 * This allows callers to safely do NODE_DATA(early_cpu_to_node(cpu)).
62 	 */
63 	return (nid < 0) ? 0 : nid;
64 }
65 
66 int of_drconf_to_nid_single(struct drmem_lmb *lmb);
67 void update_numa_distance(struct device_node *node);
68 
69 #else
70 
early_cpu_to_node(int cpu)71 static inline int early_cpu_to_node(int cpu) { return 0; }
72 
dump_numa_cpu_topology(void)73 static inline void dump_numa_cpu_topology(void) {}
74 
sysfs_add_device_to_node(struct device * dev,int nid)75 static inline int sysfs_add_device_to_node(struct device *dev, int nid)
76 {
77 	return 0;
78 }
79 
sysfs_remove_device_from_node(struct device * dev,int nid)80 static inline void sysfs_remove_device_from_node(struct device *dev,
81 						int nid)
82 {
83 }
84 
update_numa_cpu_lookup_table(unsigned int cpu,int node)85 static inline void update_numa_cpu_lookup_table(unsigned int cpu, int node) {}
86 
cpu_relative_distance(__be32 * cpu1_assoc,__be32 * cpu2_assoc)87 static inline int cpu_relative_distance(__be32 *cpu1_assoc, __be32 *cpu2_assoc)
88 {
89 	return 0;
90 }
91 
of_drconf_to_nid_single(struct drmem_lmb * lmb)92 static inline int of_drconf_to_nid_single(struct drmem_lmb *lmb)
93 {
94 	return first_online_node;
95 }
96 
update_numa_distance(struct device_node * node)97 static inline void update_numa_distance(struct device_node *node) {}
98 #endif /* CONFIG_NUMA */
99 
100 #if defined(CONFIG_NUMA) && defined(CONFIG_PPC_SPLPAR)
101 extern int find_and_online_cpu_nid(int cpu);
102 extern int cpu_to_coregroup_id(int cpu);
103 #else
find_and_online_cpu_nid(int cpu)104 static inline int find_and_online_cpu_nid(int cpu)
105 {
106 	return 0;
107 }
108 
cpu_to_coregroup_id(int cpu)109 static inline int cpu_to_coregroup_id(int cpu)
110 {
111 #ifdef CONFIG_SMP
112 	return cpu_to_core_id(cpu);
113 #else
114 	return 0;
115 #endif
116 }
117 
118 #endif /* CONFIG_NUMA && CONFIG_PPC_SPLPAR */
119 
120 #include <asm-generic/topology.h>
121 
122 #ifdef CONFIG_SMP
123 #include <asm/cputable.h>
124 
125 #ifdef CONFIG_PPC64
126 #include <asm/smp.h>
127 
128 #define topology_physical_package_id(cpu)	(cpu_to_chip_id(cpu))
129 
130 #define topology_sibling_cpumask(cpu)	(per_cpu(cpu_sibling_map, cpu))
131 #define topology_core_cpumask(cpu)	(cpu_cpu_mask(cpu))
132 #define topology_core_id(cpu)		(cpu_to_core_id(cpu))
133 
134 #endif
135 #endif
136 
137 #endif /* __KERNEL__ */
138 #endif	/* _ASM_POWERPC_TOPOLOGY_H */
139