blob: dcf3f8131d6b4b728643b84cd9d395b0ea4dd963 [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
Thomas Gleixner3367e562008-01-30 13:30:38 +010038#ifdef CONFIG_NUMA
39#include <linux/cpumask.h>
40#include <asm/mpspec.h>
41
42/* Mappings between logical cpu number and node number */
travis@sgi.com834beda12008-01-30 13:33:21 +010043#ifdef CONFIG_X86_32
travis@sgi.com43238382008-01-30 13:33:25 +010044extern int cpu_to_node_map[];
travis@sgi.com834beda12008-01-30 13:33:21 +010045#else
Mike Travis625d6cf2008-01-30 13:33:25 +010046/* Returns the number of the current Node. */
47#define numa_node_id() (early_cpu_to_node(raw_smp_processor_id()))
travis@sgi.com834beda12008-01-30 13:33:21 +010048#endif
49
Glauber de Oliveira Costa04d1dd22008-03-19 14:25:21 -030050DECLARE_PER_CPU(int, x86_cpu_to_node_map);
Mike Travisb447a462008-03-25 15:06:51 -070051
52#ifdef CONFIG_SMP
Glauber de Oliveira Costa04d1dd22008-03-19 14:25:21 -030053extern int x86_cpu_to_node_map_init[];
54extern void *x86_cpu_to_node_map_early_ptr;
Mike Travisb447a462008-03-25 15:06:51 -070055#else
56#define x86_cpu_to_node_map_early_ptr NULL
57#endif
Glauber de Oliveira Costa04d1dd22008-03-19 14:25:21 -030058
Thomas Gleixner3367e562008-01-30 13:30:38 +010059extern cpumask_t node_to_cpumask_map[];
60
travis@sgi.com43238382008-01-30 13:33:25 +010061#define NUMA_NO_NODE (-1)
travis@sgi.comdf3825c2008-01-30 13:33:11 +010062
Thomas Gleixner3367e562008-01-30 13:30:38 +010063/* Returns the number of the node containing CPU 'cpu' */
travis@sgi.com834beda12008-01-30 13:33:21 +010064#ifdef CONFIG_X86_32
65#define early_cpu_to_node(cpu) cpu_to_node(cpu)
Thomas Gleixner3367e562008-01-30 13:30:38 +010066static inline int cpu_to_node(int cpu)
67{
travis@sgi.com834beda12008-01-30 13:33:21 +010068 return cpu_to_node_map[cpu];
69}
70
71#else /* CONFIG_X86_64 */
Mike Travisb447a462008-03-25 15:06:51 -070072
73#ifdef CONFIG_SMP
travis@sgi.com834beda12008-01-30 13:33:21 +010074static inline int early_cpu_to_node(int cpu)
75{
travis@sgi.com43238382008-01-30 13:33:25 +010076 int *cpu_to_node_map = x86_cpu_to_node_map_early_ptr;
travis@sgi.comdf3825c2008-01-30 13:33:11 +010077
78 if (cpu_to_node_map)
79 return cpu_to_node_map[cpu];
80 else if (per_cpu_offset(cpu))
81 return per_cpu(x86_cpu_to_node_map, cpu);
82 else
83 return NUMA_NO_NODE;
Thomas Gleixner3367e562008-01-30 13:30:38 +010084}
Mike Travisb447a462008-03-25 15:06:51 -070085#else
86#define early_cpu_to_node(cpu) cpu_to_node(cpu)
87#endif
Thomas Gleixner3367e562008-01-30 13:30:38 +010088
travis@sgi.com834beda12008-01-30 13:33:21 +010089static inline int cpu_to_node(int cpu)
90{
Ingo Molnar5f5cd8f2008-01-30 13:33:23 +010091#ifdef CONFIG_DEBUG_PER_CPU_MAPS
92 if (x86_cpu_to_node_map_early_ptr) {
travis@sgi.comc49a4952008-01-30 13:33:22 +010093 printk("KERN_NOTICE cpu_to_node(%d): usage too early!\n",
Joe Perches5d7d03b2008-03-23 01:03:46 -070094 (int)cpu);
Ingo Molnar5f5cd8f2008-01-30 13:33:23 +010095 dump_stack();
96 return ((int *)x86_cpu_to_node_map_early_ptr)[cpu];
travis@sgi.comc49a4952008-01-30 13:33:22 +010097 }
98#endif
Mike Travisb447a462008-03-25 15:06:51 -070099 return per_cpu(x86_cpu_to_node_map, cpu);
travis@sgi.com834beda12008-01-30 13:33:21 +0100100}
Mike Travisaa6b5442008-03-31 08:41:55 -0700101
102#ifdef CONFIG_NUMA
103
104/* Returns a pointer to the cpumask of CPUs on Node 'node'. */
105#define node_to_cpumask_ptr(v, node) \
106 cpumask_t *v = &(node_to_cpumask_map[node])
107
108#define node_to_cpumask_ptr_next(v, node) \
109 v = &(node_to_cpumask_map[node])
110#endif
111
travis@sgi.com834beda12008-01-30 13:33:21 +0100112#endif /* CONFIG_X86_64 */
113
Thomas Gleixner3367e562008-01-30 13:30:38 +0100114/*
115 * Returns the number of the node containing Node 'node'. This
116 * architecture is flat, so it is a pretty simple function!
117 */
118#define parent_node(node) (node)
119
120/* Returns a bitmask of CPUs on Node 'node'. */
121static inline cpumask_t node_to_cpumask(int node)
122{
123 return node_to_cpumask_map[node];
124}
125
126/* Returns the number of the first CPU on Node 'node'. */
127static inline int node_to_first_cpu(int node)
128{
129 cpumask_t mask = node_to_cpumask(node);
130
131 return first_cpu(mask);
132}
133
134#define pcibus_to_node(bus) __pcibus_to_node(bus)
135#define pcibus_to_cpumask(bus) __pcibus_to_cpumask(bus)
136
Thomas Gleixner96a388d2007-10-11 11:20:03 +0200137#ifdef CONFIG_X86_32
Thomas Gleixner3367e562008-01-30 13:30:38 +0100138extern unsigned long node_start_pfn[];
139extern unsigned long node_end_pfn[];
140extern unsigned long node_remap_size[];
141#define node_has_online_mem(nid) (node_start_pfn[nid] != node_end_pfn[nid])
142
Thomas Gleixner3367e562008-01-30 13:30:38 +0100143# define SD_CACHE_NICE_TRIES 1
144# define SD_IDLE_IDX 1
145# define SD_NEWIDLE_IDX 2
146# define SD_FORKEXEC_IDX 0
147
Thomas Gleixner96a388d2007-10-11 11:20:03 +0200148#else
Thomas Gleixner3367e562008-01-30 13:30:38 +0100149
Thomas Gleixner3367e562008-01-30 13:30:38 +0100150# define SD_CACHE_NICE_TRIES 2
151# define SD_IDLE_IDX 2
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +0900152# define SD_NEWIDLE_IDX 2
Thomas Gleixner3367e562008-01-30 13:30:38 +0100153# define SD_FORKEXEC_IDX 1
154
155#endif
156
157/* sched_domains SD_NODE_INIT for NUMAQ machines */
158#define SD_NODE_INIT (struct sched_domain) { \
Thomas Gleixner3367e562008-01-30 13:30:38 +0100159 .min_interval = 8, \
160 .max_interval = 32, \
161 .busy_factor = 32, \
162 .imbalance_pct = 125, \
163 .cache_nice_tries = SD_CACHE_NICE_TRIES, \
164 .busy_idx = 3, \
165 .idle_idx = SD_IDLE_IDX, \
166 .newidle_idx = SD_NEWIDLE_IDX, \
167 .wake_idx = 1, \
168 .forkexec_idx = SD_FORKEXEC_IDX, \
169 .flags = SD_LOAD_BALANCE \
170 | SD_BALANCE_EXEC \
171 | SD_BALANCE_FORK \
172 | SD_SERIALIZE \
173 | SD_WAKE_BALANCE, \
174 .last_balance = jiffies, \
175 .balance_interval = 1, \
Thomas Gleixner3367e562008-01-30 13:30:38 +0100176}
177
178#ifdef CONFIG_X86_64_ACPI_NUMA
179extern int __node_distance(int, int);
180#define node_distance(a, b) __node_distance(a, b)
181#endif
182
183#else /* CONFIG_NUMA */
184
Thomas Gleixner3367e562008-01-30 13:30:38 +0100185#endif
186
Mike Travisaa6b5442008-03-31 08:41:55 -0700187#include <asm-generic/topology.h>
188
Thomas Gleixner3367e562008-01-30 13:30:38 +0100189extern cpumask_t cpu_coregroup_map(int cpu);
190
191#ifdef ENABLE_TOPO_DEFINES
192#define topology_physical_package_id(cpu) (cpu_data(cpu).phys_proc_id)
193#define topology_core_id(cpu) (cpu_data(cpu).cpu_core_id)
194#define topology_core_siblings(cpu) (per_cpu(cpu_core_map, cpu))
195#define topology_thread_siblings(cpu) (per_cpu(cpu_sibling_map, cpu))
196#endif
197
Alex Chiangfe086a72008-04-29 15:05:29 -0700198static inline void arch_fix_phys_package_id(int num, u32 slot)
199{
200}
201
Yinghai Lu30a18d62008-02-19 03:21:20 -0800202struct pci_bus;
203void set_pci_bus_resources_arch_default(struct pci_bus *b);
204
Thomas Gleixner3367e562008-01-30 13:30:38 +0100205#ifdef CONFIG_SMP
206#define mc_capable() (boot_cpu_data.x86_max_cores > 1)
207#define smt_capable() (smp_num_siblings > 1)
208#endif
209
Yinghai Lu871d5f82008-02-19 03:20:09 -0800210#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
Thomas Gleixner96a388d2007-10-11 11:20:03 +0200223#endif