]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - arch/x86/include/asm/topology.h
cpumask: remove x86's node_to_cpumask now everyone uses cpumask_of_node
[linux-2.6-omap-h63xx.git] / arch / x86 / include / asm / topology.h
1 /*
2  * Written by: Matthew Dobson, IBM Corporation
3  *
4  * Copyright (C) 2002, IBM Corp.
5  *
6  * All rights reserved.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
16  * NON INFRINGEMENT.  See the GNU General Public License for more
17  * details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22  *
23  * Send feedback to <colpatch@us.ibm.com>
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 /* Node not present */
39 #define NUMA_NO_NODE    (-1)
40
41 #ifdef CONFIG_NUMA
42 #include <linux/cpumask.h>
43 #include <asm/mpspec.h>
44
45 #ifdef CONFIG_X86_32
46
47 /* Mappings between node number and cpus on that node. */
48 extern cpumask_t node_to_cpumask_map[];
49
50 /* Mappings between logical cpu number and node number */
51 extern int cpu_to_node_map[];
52
53 /* Returns the number of the node containing CPU 'cpu' */
54 static inline int cpu_to_node(int cpu)
55 {
56         return cpu_to_node_map[cpu];
57 }
58 #define early_cpu_to_node(cpu)  cpu_to_node(cpu)
59
60 /* Returns a bitmask of CPUs on Node 'node'. */
61 static inline const struct cpumask *cpumask_of_node(int node)
62 {
63         return &node_to_cpumask_map[node];
64 }
65
66 static inline void setup_node_to_cpumask_map(void) { }
67
68 #else /* CONFIG_X86_64 */
69
70 /* Mappings between node number and cpus on that node. */
71 extern cpumask_t *node_to_cpumask_map;
72
73 /* Mappings between logical cpu number and node number */
74 DECLARE_EARLY_PER_CPU(int, x86_cpu_to_node_map);
75
76 /* Returns the number of the current Node. */
77 DECLARE_PER_CPU(int, node_number);
78 #define numa_node_id()          percpu_read(node_number)
79
80 #ifdef CONFIG_DEBUG_PER_CPU_MAPS
81 extern int cpu_to_node(int cpu);
82 extern int early_cpu_to_node(int cpu);
83 extern const cpumask_t *cpumask_of_node(int node);
84
85 #else   /* !CONFIG_DEBUG_PER_CPU_MAPS */
86
87 /* Returns the number of the node containing CPU 'cpu' */
88 static inline int cpu_to_node(int cpu)
89 {
90         return per_cpu(x86_cpu_to_node_map, cpu);
91 }
92
93 /* Same function but used if called before per_cpu areas are setup */
94 static inline int early_cpu_to_node(int cpu)
95 {
96         return early_per_cpu(x86_cpu_to_node_map, cpu);
97 }
98
99 /* Returns a pointer to the cpumask of CPUs on Node 'node'. */
100 static inline const cpumask_t *cpumask_of_node(int node)
101 {
102         return &node_to_cpumask_map[node];
103 }
104
105 #endif /* !CONFIG_DEBUG_PER_CPU_MAPS */
106
107 extern void setup_node_to_cpumask_map(void);
108
109 #endif /* CONFIG_X86_64 */
110
111 /*
112  * Returns the number of the node containing Node 'node'. This
113  * architecture is flat, so it is a pretty simple function!
114  */
115 #define parent_node(node) (node)
116
117 #define pcibus_to_node(bus) __pcibus_to_node(bus)
118
119 #ifdef CONFIG_X86_32
120 extern unsigned long node_start_pfn[];
121 extern unsigned long node_end_pfn[];
122 extern unsigned long node_remap_size[];
123 #define node_has_online_mem(nid) (node_start_pfn[nid] != node_end_pfn[nid])
124
125 # define SD_CACHE_NICE_TRIES    1
126 # define SD_IDLE_IDX            1
127 # define SD_NEWIDLE_IDX         2
128 # define SD_FORKEXEC_IDX        0
129
130 #else
131
132 # define SD_CACHE_NICE_TRIES    2
133 # define SD_IDLE_IDX            2
134 # define SD_NEWIDLE_IDX         2
135 # define SD_FORKEXEC_IDX        1
136
137 #endif
138
139 /* sched_domains SD_NODE_INIT for NUMA machines */
140 #define SD_NODE_INIT (struct sched_domain) {            \
141         .min_interval           = 8,                    \
142         .max_interval           = 32,                   \
143         .busy_factor            = 32,                   \
144         .imbalance_pct          = 125,                  \
145         .cache_nice_tries       = SD_CACHE_NICE_TRIES,  \
146         .busy_idx               = 3,                    \
147         .idle_idx               = SD_IDLE_IDX,          \
148         .newidle_idx            = SD_NEWIDLE_IDX,       \
149         .wake_idx               = 1,                    \
150         .forkexec_idx           = SD_FORKEXEC_IDX,      \
151         .flags                  = SD_LOAD_BALANCE       \
152                                 | SD_BALANCE_EXEC       \
153                                 | SD_BALANCE_FORK       \
154                                 | SD_WAKE_AFFINE        \
155                                 | SD_WAKE_BALANCE       \
156                                 | SD_SERIALIZE,         \
157         .last_balance           = jiffies,              \
158         .balance_interval       = 1,                    \
159 }
160
161 #ifdef CONFIG_X86_64_ACPI_NUMA
162 extern int __node_distance(int, int);
163 #define node_distance(a, b) __node_distance(a, b)
164 #endif
165
166 #else /* !CONFIG_NUMA */
167
168 static inline int numa_node_id(void)
169 {
170         return 0;
171 }
172
173 static inline int cpu_to_node(int cpu)
174 {
175         return 0;
176 }
177
178 static inline int early_cpu_to_node(int cpu)
179 {
180         return 0;
181 }
182
183 static inline const cpumask_t *cpumask_of_node(int node)
184 {
185         return &cpu_online_map;
186 }
187 static inline int node_to_first_cpu(int node)
188 {
189         return first_cpu(cpu_online_map);
190 }
191
192 static inline void setup_node_to_cpumask_map(void) { }
193
194 #endif
195
196 #include <asm-generic/topology.h>
197
198 #ifdef CONFIG_NUMA
199 /* Returns the number of the first CPU on Node 'node'. */
200 static inline int node_to_first_cpu(int node)
201 {
202         return cpumask_first(cpumask_of_node(node));
203 }
204 #endif
205
206 extern const struct cpumask *cpu_coregroup_mask(int cpu);
207
208 #ifdef ENABLE_TOPO_DEFINES
209 #define topology_physical_package_id(cpu)       (cpu_data(cpu).phys_proc_id)
210 #define topology_core_id(cpu)                   (cpu_data(cpu).cpu_core_id)
211 #define topology_core_cpumask(cpu)              (per_cpu(cpu_core_map, cpu))
212 #define topology_thread_cpumask(cpu)            (per_cpu(cpu_sibling_map, cpu))
213
214 /* indicates that pointers to the topology cpumask_t maps are valid */
215 #define arch_provides_topology_pointers         yes
216 #endif
217
218 static inline void arch_fix_phys_package_id(int num, u32 slot)
219 {
220 }
221
222 struct pci_bus;
223 void set_pci_bus_resources_arch_default(struct pci_bus *b);
224
225 #ifdef CONFIG_SMP
226 #define mc_capable()    (cpumask_weight(cpu_core_mask(0)) != nr_cpu_ids)
227 #define smt_capable()                   (smp_num_siblings > 1)
228 #endif
229
230 #ifdef CONFIG_NUMA
231 extern int get_mp_bus_to_node(int busnum);
232 extern void set_mp_bus_to_node(int busnum, int node);
233 #else
234 static inline int get_mp_bus_to_node(int busnum)
235 {
236         return 0;
237 }
238 static inline void set_mp_bus_to_node(int busnum, int node)
239 {
240 }
241 #endif
242
243 #endif /* _ASM_X86_TOPOLOGY_H */