blob: c0e6ff7671ea562507ae26c0d081697170833d2f [file] [log] [blame]
Thomas Gleixner3367e562008-01-30 13:30:38 +01001/*
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
Vaidyanathan Srinivasan5c3a1212008-05-05 19:22:15 +053028#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
Mike Travis23ca4bb2008-05-12 21:21:12 +020038/* Node not present */
39#define NUMA_NO_NODE (-1)
40
Thomas Gleixner3367e562008-01-30 13:30:38 +010041#ifdef CONFIG_NUMA
42#include <linux/cpumask.h>
43#include <asm/mpspec.h>
44
travis@sgi.com834beda12008-01-30 13:33:21 +010045#ifdef CONFIG_X86_32
travis@sgi.com834beda12008-01-30 13:33:21 +010046
Mike Travis23ca4bb2008-05-12 21:21:12 +020047/* Mappings between node number and cpus on that node. */
Thomas Gleixner3367e562008-01-30 13:30:38 +010048extern cpumask_t node_to_cpumask_map[];
49
Mike Travis23ca4bb2008-05-12 21:21:12 +020050/* Mappings between logical cpu number and node number */
51extern int cpu_to_node_map[];
travis@sgi.comdf3825c2008-01-30 13:33:11 +010052
Thomas Gleixner3367e562008-01-30 13:30:38 +010053/* Returns the number of the node containing CPU 'cpu' */
54static inline int cpu_to_node(int cpu)
55{
travis@sgi.com834beda12008-01-30 13:33:21 +010056 return cpu_to_node_map[cpu];
57}
Mike Travis23ca4bb2008-05-12 21:21:12 +020058#define early_cpu_to_node(cpu) cpu_to_node(cpu)
travis@sgi.com834beda12008-01-30 13:33:21 +010059
60#else /* CONFIG_X86_64 */
Mike Travisb447a462008-03-25 15:06:51 -070061
Mike Travis23ca4bb2008-05-12 21:21:12 +020062/* Mappings between node number and cpus on that node. */
63extern cpumask_t node_to_cpumask_map[];
travis@sgi.comdf3825c2008-01-30 13:33:11 +010064
Mike Travis23ca4bb2008-05-12 21:21:12 +020065/* Mappings between logical cpu number and node number */
66DECLARE_EARLY_PER_CPU(int, x86_cpu_to_node_map);
Thomas Gleixner3367e562008-01-30 13:30:38 +010067
Mike Travis23ca4bb2008-05-12 21:21:12 +020068/* Returns the number of the current Node. */
Mike Travis7891a242008-05-12 21:21:12 +020069#define numa_node_id() read_pda(nodenumber)
Mike Travis23ca4bb2008-05-12 21:21:12 +020070
71#ifdef CONFIG_DEBUG_PER_CPU_MAPS
72extern int cpu_to_node(int cpu);
73extern int early_cpu_to_node(int cpu);
74extern cpumask_t *_node_to_cpumask_ptr(int node);
75extern cpumask_t node_to_cpumask(int node);
76
77#else /* !CONFIG_DEBUG_PER_CPU_MAPS */
78
79/* Returns the number of the node containing CPU 'cpu' */
travis@sgi.com834beda12008-01-30 13:33:21 +010080static inline int cpu_to_node(int cpu)
81{
Mike Travisb447a462008-03-25 15:06:51 -070082 return per_cpu(x86_cpu_to_node_map, cpu);
travis@sgi.com834beda12008-01-30 13:33:21 +010083}
Mike Travisaa6b5442008-03-31 08:41:55 -070084
Mike Travis23ca4bb2008-05-12 21:21:12 +020085/* Same function but used if called before per_cpu areas are setup */
86static inline int early_cpu_to_node(int cpu)
87{
88 if (early_per_cpu_ptr(x86_cpu_to_node_map))
89 return early_per_cpu_ptr(x86_cpu_to_node_map)[cpu];
90
91 return per_cpu(x86_cpu_to_node_map, cpu);
92}
Mike Travisaa6b5442008-03-31 08:41:55 -070093
94/* Returns a pointer to the cpumask of CPUs on Node 'node'. */
Mike Travis23ca4bb2008-05-12 21:21:12 +020095static inline cpumask_t *_node_to_cpumask_ptr(int node)
96{
97 return &node_to_cpumask_map[node];
98}
Thomas Gleixner3367e562008-01-30 13:30:38 +010099
100/* Returns a bitmask of CPUs on Node 'node'. */
101static inline cpumask_t node_to_cpumask(int node)
102{
103 return node_to_cpumask_map[node];
104}
105
Mike Travis23ca4bb2008-05-12 21:21:12 +0200106#endif /* !CONFIG_DEBUG_PER_CPU_MAPS */
107#endif /* CONFIG_X86_64 */
108
109/* Replace default node_to_cpumask_ptr with optimized version */
110#define node_to_cpumask_ptr(v, node) \
111 cpumask_t *v = _node_to_cpumask_ptr(node)
112
113#define node_to_cpumask_ptr_next(v, node) \
114 v = _node_to_cpumask_ptr(node)
115
Thomas Gleixner3367e562008-01-30 13:30:38 +0100116/* Returns the number of the first CPU on Node 'node'. */
117static inline int node_to_first_cpu(int node)
118{
Mike Travis23ca4bb2008-05-12 21:21:12 +0200119 node_to_cpumask_ptr(mask, node);
120 return first_cpu(*mask);
Thomas Gleixner3367e562008-01-30 13:30:38 +0100121}
122
Mike Travis23ca4bb2008-05-12 21:21:12 +0200123/*
124 * Returns the number of the node containing Node 'node'. This
125 * architecture is flat, so it is a pretty simple function!
126 */
127#define parent_node(node) (node)
128
Thomas Gleixner3367e562008-01-30 13:30:38 +0100129#define pcibus_to_node(bus) __pcibus_to_node(bus)
130#define pcibus_to_cpumask(bus) __pcibus_to_cpumask(bus)
131
Thomas Gleixner96a388d2007-10-11 11:20:03 +0200132#ifdef CONFIG_X86_32
Thomas Gleixner3367e562008-01-30 13:30:38 +0100133extern unsigned long node_start_pfn[];
134extern unsigned long node_end_pfn[];
135extern unsigned long node_remap_size[];
136#define node_has_online_mem(nid) (node_start_pfn[nid] != node_end_pfn[nid])
137
Thomas Gleixner3367e562008-01-30 13:30:38 +0100138# define SD_CACHE_NICE_TRIES 1
139# define SD_IDLE_IDX 1
140# define SD_NEWIDLE_IDX 2
141# define SD_FORKEXEC_IDX 0
142
Thomas Gleixner96a388d2007-10-11 11:20:03 +0200143#else
Thomas Gleixner3367e562008-01-30 13:30:38 +0100144
Thomas Gleixner3367e562008-01-30 13:30:38 +0100145# define SD_CACHE_NICE_TRIES 2
146# define SD_IDLE_IDX 2
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +0900147# define SD_NEWIDLE_IDX 2
Thomas Gleixner3367e562008-01-30 13:30:38 +0100148# define SD_FORKEXEC_IDX 1
149
150#endif
151
152/* sched_domains SD_NODE_INIT for NUMAQ machines */
153#define SD_NODE_INIT (struct sched_domain) { \
Thomas Gleixner3367e562008-01-30 13:30:38 +0100154 .min_interval = 8, \
155 .max_interval = 32, \
156 .busy_factor = 32, \
157 .imbalance_pct = 125, \
158 .cache_nice_tries = SD_CACHE_NICE_TRIES, \
159 .busy_idx = 3, \
160 .idle_idx = SD_IDLE_IDX, \
161 .newidle_idx = SD_NEWIDLE_IDX, \
162 .wake_idx = 1, \
163 .forkexec_idx = SD_FORKEXEC_IDX, \
164 .flags = SD_LOAD_BALANCE \
165 | SD_BALANCE_EXEC \
166 | SD_BALANCE_FORK \
167 | SD_SERIALIZE \
168 | SD_WAKE_BALANCE, \
169 .last_balance = jiffies, \
170 .balance_interval = 1, \
Thomas Gleixner3367e562008-01-30 13:30:38 +0100171}
172
173#ifdef CONFIG_X86_64_ACPI_NUMA
174extern int __node_distance(int, int);
175#define node_distance(a, b) __node_distance(a, b)
176#endif
177
Mike Travis23ca4bb2008-05-12 21:21:12 +0200178#else /* !CONFIG_NUMA */
Thomas Gleixner3367e562008-01-30 13:30:38 +0100179
Mike Travis23ca4bb2008-05-12 21:21:12 +0200180#define numa_node_id() 0
181#define cpu_to_node(cpu) 0
182#define early_cpu_to_node(cpu) 0
183
184static inline cpumask_t *_node_to_cpumask_ptr(int node)
185{
186 return &cpu_online_map;
187}
188static inline cpumask_t node_to_cpumask(int node)
189{
190 return cpu_online_map;
191}
192static inline int node_to_first_cpu(int node)
193{
194 return first_cpu(cpu_online_map);
195}
196
197/* Replace default node_to_cpumask_ptr with optimized version */
198#define node_to_cpumask_ptr(v, node) \
199 cpumask_t *v = _node_to_cpumask_ptr(node)
200
201#define node_to_cpumask_ptr_next(v, node) \
202 v = _node_to_cpumask_ptr(node)
Thomas Gleixner3367e562008-01-30 13:30:38 +0100203#endif
204
Mike Travisaa6b5442008-03-31 08:41:55 -0700205#include <asm-generic/topology.h>
206
Thomas Gleixner3367e562008-01-30 13:30:38 +0100207extern cpumask_t cpu_coregroup_map(int cpu);
208
209#ifdef ENABLE_TOPO_DEFINES
210#define topology_physical_package_id(cpu) (cpu_data(cpu).phys_proc_id)
211#define topology_core_id(cpu) (cpu_data(cpu).cpu_core_id)
212#define topology_core_siblings(cpu) (per_cpu(cpu_core_map, cpu))
213#define topology_thread_siblings(cpu) (per_cpu(cpu_sibling_map, cpu))
Mike Travis23ca4bb2008-05-12 21:21:12 +0200214
215/* indicates that pointers to the topology cpumask_t maps are valid */
216#define arch_provides_topology_pointers yes
Thomas Gleixner3367e562008-01-30 13:30:38 +0100217#endif
218
Alex Chiangfe086a72008-04-29 15:05:29 -0700219static inline void arch_fix_phys_package_id(int num, u32 slot)
220{
221}
222
Yinghai Lu30a18d62008-02-19 03:21:20 -0800223struct pci_bus;
224void set_pci_bus_resources_arch_default(struct pci_bus *b);
225
Thomas Gleixner3367e562008-01-30 13:30:38 +0100226#ifdef CONFIG_SMP
227#define mc_capable() (boot_cpu_data.x86_max_cores > 1)
228#define smt_capable() (smp_num_siblings > 1)
229#endif
230
Yinghai Lu871d5f82008-02-19 03:20:09 -0800231#ifdef CONFIG_NUMA
232extern int get_mp_bus_to_node(int busnum);
233extern void set_mp_bus_to_node(int busnum, int node);
234#else
235static inline int get_mp_bus_to_node(int busnum)
236{
237 return 0;
238}
239static inline void set_mp_bus_to_node(int busnum, int node)
240{
241}
242#endif
243
Mike Travis23ca4bb2008-05-12 21:21:12 +0200244#endif /* _ASM_X86_TOPOLOGY_H */