powerpc/mm: Fix build error with FLATMEM book3s64 config
[linux-2.6-block.git] / arch / powerpc / include / asm / topology.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
dd56fdf2 2#ifndef _ASM_POWERPC_TOPOLOGY_H
3#define _ASM_POWERPC_TOPOLOGY_H
88ced031 4#ifdef __KERNEL__
1da177e4 5
1da177e4 6
8a25a2fd 7struct device;
953039c8
JK
8struct device_node;
9
1da177e4
LT
10#ifdef CONFIG_NUMA
11
56608209 12/*
4f9b16a6
MG
13 * If zone_reclaim_mode is enabled, a RECLAIM_DISTANCE of 10 will mean that
14 * all zones on all nodes will be eligible for zone_reclaim().
56608209
AB
15 */
16#define RECLAIM_DISTANCE 10
17
dd56fdf2 18#include <asm/mmzone.h>
19
c81b812a
AB
20#define cpumask_of_node(node) ((node) == -1 ? \
21 cpu_all_mask : \
25863de0 22 node_to_cpumask_map[node])
86c6f274 23
357518fa 24struct pci_bus;
11faa658 25#ifdef CONFIG_PCI
357518fa 26extern int pcibus_to_node(struct pci_bus *bus);
11faa658
AB
27#else
28static inline int pcibus_to_node(struct pci_bus *bus)
29{
30 return -1;
31}
32#endif
357518fa 33
86c6f274
RR
34#define cpumask_of_pcibus(bus) (pcibus_to_node(bus) == -1 ? \
35 cpu_all_mask : \
36 cpumask_of_node(pcibus_to_node(bus)))
37
41eab6f8
AB
38extern int __node_distance(int, int);
39#define node_distance(a, b) __node_distance(a, b)
40
4b703a23
AB
41extern void __init dump_numa_cpu_topology(void);
42
8a25a2fd
KS
43extern int sysfs_add_device_to_node(struct device *dev, int nid);
44extern void sysfs_remove_device_from_node(struct device *dev, int nid);
3e401f7a 45extern int numa_update_cpu_topology(bool cpus_locked);
953039c8 46
1d9a0907
NF
47static inline void update_numa_cpu_lookup_table(unsigned int cpu, int node)
48{
49 numa_cpu_lookup_table[cpu] = node;
50}
51
ba4a648f
ME
52static inline int early_cpu_to_node(int cpu)
53{
54 int nid;
55
56 nid = numa_cpu_lookup_table[cpu];
57
58 /*
59 * Fall back to node 0 if nid is unset (it should be, except bugs).
60 * This allows callers to safely do NODE_DATA(early_cpu_to_node(cpu)).
61 */
62 return (nid < 0) ? 0 : nid;
63}
39bf990e 64#else
1da177e4 65
ba4a648f
ME
66static inline int early_cpu_to_node(int cpu) { return 0; }
67
4b703a23
AB
68static inline void dump_numa_cpu_topology(void) {}
69
8a25a2fd 70static inline int sysfs_add_device_to_node(struct device *dev, int nid)
953039c8
JK
71{
72 return 0;
73}
74
8a25a2fd 75static inline void sysfs_remove_device_from_node(struct device *dev,
953039c8
JK
76 int nid)
77{
78}
3e401f7a
TJB
79
80static inline int numa_update_cpu_topology(bool cpus_locked)
81{
82 return 0;
83}
c1e150ce
CL
84
85static inline void update_numa_cpu_lookup_table(unsigned int cpu, int node) {}
86
aa6b5446 87#endif /* CONFIG_NUMA */
953039c8 88
5d7d8072
BH
89#if defined(CONFIG_NUMA) && defined(CONFIG_PPC_SPLPAR)
90extern int start_topology_update(void);
91extern int stop_topology_update(void);
e04fa612 92extern int prrn_is_enabled(void);
82343484 93extern int find_and_online_cpu_nid(int cpu);
6c0a8f6b 94extern int timed_topology_update(int nsecs);
2ea62630 95extern void __init shared_proc_topology_init(void);
5d7d8072
BH
96#else
97static inline int start_topology_update(void)
98{
99 return 0;
100}
101static inline int stop_topology_update(void)
102{
103 return 0;
104}
e04fa612
NF
105static inline int prrn_is_enabled(void)
106{
107 return 0;
108}
82343484
GR
109static inline int find_and_online_cpu_nid(int cpu)
110{
111 return 0;
112}
6c0a8f6b
ME
113static inline int timed_topology_update(int nsecs)
114{
115 return 0;
116}
2ea62630
SD
117
118#ifdef CONFIG_SMP
119static inline void shared_proc_topology_init(void) {}
120#endif
5d7d8072
BH
121#endif /* CONFIG_NUMA && CONFIG_PPC_SPLPAR */
122
1da177e4
LT
123#include <asm-generic/topology.h>
124
5c45bf27
SS
125#ifdef CONFIG_SMP
126#include <asm/cputable.h>
056f4faa
SR
127
128#ifdef CONFIG_PPC64
129#include <asm/smp.h>
130
15863ff3 131#define topology_physical_package_id(cpu) (cpu_to_chip_id(cpu))
06931e62 132#define topology_sibling_cpumask(cpu) (per_cpu(cpu_sibling_map, cpu))
cc1ba8ea 133#define topology_core_cpumask(cpu) (per_cpu(cpu_core_map, cpu))
e9efed3b 134#define topology_core_id(cpu) (cpu_to_core_id(cpu))
81b61324
NF
135
136int dlpar_cpu_readd(int cpu);
056f4faa 137#endif
5c45bf27
SS
138#endif
139
88ced031 140#endif /* __KERNEL__ */
dd56fdf2 141#endif /* _ASM_POWERPC_TOPOLOGY_H */