1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25#ifndef _ASM_X86_TOPOLOGY_H
26#define _ASM_X86_TOPOLOGY_H
27
28#ifdef CONFIG_X86_32
29# ifdef CONFIG_X86_HT
30# define ENABLE_TOPO_DEFINES
31# endif
32#else
33# ifdef CONFIG_SMP
34# define ENABLE_TOPO_DEFINES
35# endif
36#endif
37
38
39
40
41
42
43#include <linux/numa.h>
44
45#ifdef CONFIG_NUMA
46#include <linux/cpumask.h>
47
48#include <asm/mpspec.h>
49
50
51DECLARE_EARLY_PER_CPU(int, x86_cpu_to_node_map);
52
53#ifdef CONFIG_DEBUG_PER_CPU_MAPS
54
55
56
57extern int __cpu_to_node(int cpu);
58#define cpu_to_node __cpu_to_node
59
60extern int early_cpu_to_node(int cpu);
61
62#else
63
64
65static inline int early_cpu_to_node(int cpu)
66{
67 return early_per_cpu(x86_cpu_to_node_map, cpu);
68}
69
70#endif
71
72
73extern cpumask_var_t node_to_cpumask_map[MAX_NUMNODES];
74
75#ifdef CONFIG_DEBUG_PER_CPU_MAPS
76extern const struct cpumask *cpumask_of_node(int node);
77#else
78
79static inline const struct cpumask *cpumask_of_node(int node)
80{
81 return node_to_cpumask_map[node];
82}
83#endif
84
85extern void setup_node_to_cpumask_map(void);
86
87
88
89
90
91#define parent_node(node) (node)
92
93#define pcibus_to_node(bus) __pcibus_to_node(bus)
94
95#ifdef CONFIG_X86_32
96# define SD_CACHE_NICE_TRIES 1
97# define SD_IDLE_IDX 1
98#else
99# define SD_CACHE_NICE_TRIES 2
100# define SD_IDLE_IDX 2
101#endif
102
103
104#define SD_NODE_INIT (struct sched_domain) { \
105 .min_interval = 8, \
106 .max_interval = 32, \
107 .busy_factor = 32, \
108 .imbalance_pct = 125, \
109 .cache_nice_tries = SD_CACHE_NICE_TRIES, \
110 .busy_idx = 3, \
111 .idle_idx = SD_IDLE_IDX, \
112 .newidle_idx = 0, \
113 .wake_idx = 0, \
114 .forkexec_idx = 0, \
115 \
116 .flags = 1*SD_LOAD_BALANCE \
117 | 1*SD_BALANCE_NEWIDLE \
118 | 1*SD_BALANCE_EXEC \
119 | 1*SD_BALANCE_FORK \
120 | 0*SD_BALANCE_WAKE \
121 | 1*SD_WAKE_AFFINE \
122 | 0*SD_PREFER_LOCAL \
123 | 0*SD_SHARE_CPUPOWER \
124 | 0*SD_POWERSAVINGS_BALANCE \
125 | 0*SD_SHARE_PKG_RESOURCES \
126 | 1*SD_SERIALIZE \
127 | 0*SD_PREFER_SIBLING \
128 , \
129 .last_balance = jiffies, \
130 .balance_interval = 1, \
131}
132
133#ifdef CONFIG_X86_64
134extern int __node_distance(int, int);
135#define node_distance(a, b) __node_distance(a, b)
136#endif
137
138#else
139
140static inline int numa_node_id(void)
141{
142 return 0;
143}
144
145
146
147#define numa_node_id numa_node_id
148
149static inline int early_cpu_to_node(int cpu)
150{
151 return 0;
152}
153
154static inline void setup_node_to_cpumask_map(void) { }
155
156#endif
157
158#include <asm-generic/topology.h>
159
160extern const struct cpumask *cpu_coregroup_mask(int cpu);
161
162#ifdef ENABLE_TOPO_DEFINES
163#define topology_physical_package_id(cpu) (cpu_data(cpu).phys_proc_id)
164#define topology_core_id(cpu) (cpu_data(cpu).cpu_core_id)
165#define topology_core_cpumask(cpu) (per_cpu(cpu_core_map, cpu))
166#define topology_thread_cpumask(cpu) (per_cpu(cpu_sibling_map, cpu))
167
168
169#define arch_provides_topology_pointers yes
170#endif
171
172static inline void arch_fix_phys_package_id(int num, u32 slot)
173{
174}
175
176struct pci_bus;
177void x86_pci_root_bus_res_quirks(struct pci_bus *b);
178
179#ifdef CONFIG_SMP
180#define mc_capable() ((boot_cpu_data.x86_max_cores > 1) && \
181 (cpumask_weight(cpu_core_mask(0)) != nr_cpu_ids))
182#define smt_capable() (smp_num_siblings > 1)
183#endif
184
185#ifdef CONFIG_NUMA
186extern int get_mp_bus_to_node(int busnum);
187extern void set_mp_bus_to_node(int busnum, int node);
188#else
189static inline int get_mp_bus_to_node(int busnum)
190{
191 return 0;
192}
193static inline void set_mp_bus_to_node(int busnum, int node)
194{
195}
196#endif
197
198#endif
199