Merge branch 'next' into for-linus
[deliverable/linux.git] / arch / x86 / include / asm / topology.h
CommitLineData
3367e56f
TG
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 */
1965aae3
PA
25#ifndef _ASM_X86_TOPOLOGY_H
26#define _ASM_X86_TOPOLOGY_H
3367e56f 27
5c3a121d
VS
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
4e25b257
LS
38/*
39 * to preserve the visibility of NUMA_NO_NODE definition,
40 * moved to there from here. May be used independent of
41 * CONFIG_NUMA.
42 */
43#include <linux/numa.h>
23ca4bba 44
3367e56f
TG
45#ifdef CONFIG_NUMA
46#include <linux/cpumask.h>
4e25b257 47
3367e56f
TG
48#include <asm/mpspec.h>
49
834beda1 50#ifdef CONFIG_X86_32
04d1dd20 51
23ca4bba
MT
52/* Mappings between logical cpu number and node number */
53extern int cpu_to_node_map[];
df3825c5 54
3367e56f 55/* Returns the number of the node containing CPU 'cpu' */
e534c7c5 56static inline int __cpu_to_node(int cpu)
834beda1 57{
58 return cpu_to_node_map[cpu];
59}
e534c7c5
LS
60#define early_cpu_to_node __cpu_to_node
61#define cpu_to_node __cpu_to_node
834beda1 62
63#else /* CONFIG_X86_64 */
b447a468 64
23ca4bba
MT
65/* Mappings between logical cpu number and node number */
66DECLARE_EARLY_PER_CPU(int, x86_cpu_to_node_map);
67
23ca4bba 68#ifdef CONFIG_DEBUG_PER_CPU_MAPS
e534c7c5
LS
69/*
70 * override generic percpu implementation of cpu_to_node
71 */
72extern int __cpu_to_node(int cpu);
73#define cpu_to_node __cpu_to_node
74
23ca4bba 75extern int early_cpu_to_node(int cpu);
3367e56f 76
23ca4bba
MT
77#else /* !CONFIG_DEBUG_PER_CPU_MAPS */
78
23ca4bba
MT
79/* Same function but used if called before per_cpu areas are setup */
80static inline int early_cpu_to_node(int cpu)
81{
f10fcd47 82 return early_per_cpu(x86_cpu_to_node_map, cpu);
23ca4bba 83}
834beda1 84
71ee73e7
RR
85#endif /* !CONFIG_DEBUG_PER_CPU_MAPS */
86
87#endif /* CONFIG_X86_64 */
3367e56f 88
71ee73e7 89/* Mappings between node number and cpus on that node. */
c032ef60 90extern cpumask_var_t node_to_cpumask_map[MAX_NUMNODES];
71ee73e7
RR
91
92#ifdef CONFIG_DEBUG_PER_CPU_MAPS
73e907de 93extern const struct cpumask *cpumask_of_node(int node);
71ee73e7 94#else
23ca4bba 95/* Returns a pointer to the cpumask of CPUs on Node 'node'. */
c032ef60 96static inline const struct cpumask *cpumask_of_node(int node)
3367e56f
TG
97{
98 return node_to_cpumask_map[node];
99}
71ee73e7 100#endif
23ca4bba 101
6470aff6
BG
102extern void setup_node_to_cpumask_map(void);
103
23ca4bba
MT
104/*
105 * Returns the number of the node containing Node 'node'. This
106 * architecture is flat, so it is a pretty simple function!
107 */
108#define parent_node(node) (node)
109
3367e56f 110#define pcibus_to_node(bus) __pcibus_to_node(bus)
3367e56f 111
96a388de 112#ifdef CONFIG_X86_32
3367e56f
TG
113extern unsigned long node_start_pfn[];
114extern unsigned long node_end_pfn[];
115extern unsigned long node_remap_size[];
116#define node_has_online_mem(nid) (node_start_pfn[nid] != node_end_pfn[nid])
117
3367e56f
TG
118# define SD_CACHE_NICE_TRIES 1
119# define SD_IDLE_IDX 1
3367e56f 120
96a388de 121#else
3367e56f 122
3367e56f
TG
123# define SD_CACHE_NICE_TRIES 2
124# define SD_IDLE_IDX 2
3367e56f
TG
125
126#endif
127
9fcd18c9 128/* sched_domains SD_NODE_INIT for NUMA machines */
47734f89
IM
129#define SD_NODE_INIT (struct sched_domain) { \
130 .min_interval = 8, \
131 .max_interval = 32, \
132 .busy_factor = 32, \
133 .imbalance_pct = 125, \
134 .cache_nice_tries = SD_CACHE_NICE_TRIES, \
135 .busy_idx = 3, \
136 .idle_idx = SD_IDLE_IDX, \
0ec9fab3 137 .newidle_idx = 0, \
78e7ed53 138 .wake_idx = 0, \
b8a543ea 139 .forkexec_idx = 0, \
47734f89
IM
140 \
141 .flags = 1*SD_LOAD_BALANCE \
840a0653 142 | 1*SD_BALANCE_NEWIDLE \
47734f89
IM
143 | 1*SD_BALANCE_EXEC \
144 | 1*SD_BALANCE_FORK \
182a85f8 145 | 0*SD_BALANCE_WAKE \
47734f89 146 | 1*SD_WAKE_AFFINE \
6b9de613 147 | 0*SD_PREFER_LOCAL \
47734f89
IM
148 | 0*SD_SHARE_CPUPOWER \
149 | 0*SD_POWERSAVINGS_BALANCE \
150 | 0*SD_SHARE_PKG_RESOURCES \
151 | 1*SD_SERIALIZE \
47734f89
IM
152 | 0*SD_PREFER_SIBLING \
153 , \
154 .last_balance = jiffies, \
155 .balance_interval = 1, \
3367e56f
TG
156}
157
158#ifdef CONFIG_X86_64_ACPI_NUMA
159extern int __node_distance(int, int);
160#define node_distance(a, b) __node_distance(a, b)
161#endif
162
23ca4bba
MT
163#else /* !CONFIG_NUMA */
164
f2a08271
MT
165static inline int numa_node_id(void)
166{
167 return 0;
168}
72812019
LS
169/*
170 * indicate override:
171 */
172#define numa_node_id numa_node_id
f2a08271 173
f2a08271
MT
174static inline int early_cpu_to_node(int cpu)
175{
176 return 0;
177}
23ca4bba 178
6470aff6
BG
179static inline void setup_node_to_cpumask_map(void) { }
180
3367e56f
TG
181#endif
182
aa6b5446
MT
183#include <asm-generic/topology.h>
184
030bb203 185extern const struct cpumask *cpu_coregroup_mask(int cpu);
3367e56f
TG
186
187#ifdef ENABLE_TOPO_DEFINES
188#define topology_physical_package_id(cpu) (cpu_data(cpu).phys_proc_id)
189#define topology_core_id(cpu) (cpu_data(cpu).cpu_core_id)
7ad728f9
RR
190#define topology_core_cpumask(cpu) (per_cpu(cpu_core_map, cpu))
191#define topology_thread_cpumask(cpu) (per_cpu(cpu_sibling_map, cpu))
23ca4bba
MT
192
193/* indicates that pointers to the topology cpumask_t maps are valid */
194#define arch_provides_topology_pointers yes
3367e56f
TG
195#endif
196
fe086a7b
AC
197static inline void arch_fix_phys_package_id(int num, u32 slot)
198{
199}
200
30a18d6c 201struct pci_bus;
0e94ecd0 202void x86_pci_root_bus_res_quirks(struct pci_bus *b);
30a18d6c 203
3367e56f 204#ifdef CONFIG_SMP
2ff799d3
VS
205#define mc_capable() ((boot_cpu_data.x86_max_cores > 1) && \
206 (cpumask_weight(cpu_core_mask(0)) != nr_cpu_ids))
3367e56f
TG
207#define smt_capable() (smp_num_siblings > 1)
208#endif
209
871d5f8d
YL
210#ifdef CONFIG_NUMA
211extern int get_mp_bus_to_node(int busnum);
212extern void set_mp_bus_to_node(int busnum, int node);
213#else
214static inline int get_mp_bus_to_node(int busnum)
215{
216 return 0;
217}
218static inline void set_mp_bus_to_node(int busnum, int node)
219{
220}
221#endif
222
1965aae3 223#endif /* _ASM_X86_TOPOLOGY_H */
This page took 0.286641 seconds and 5 git commands to generate.