2 * Written by: Matthew Dobson, IBM Corporation
4 * Copyright (C) 2002, IBM Corp.
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.
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
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.
23 * Send feedback to <colpatch@us.ibm.com>
25 #ifndef _ASM_X86_TOPOLOGY_H
26 #define _ASM_X86_TOPOLOGY_H
30 # define ENABLE_TOPO_DEFINES
34 # define ENABLE_TOPO_DEFINES
39 #include <linux/cpumask.h>
40 #include <asm/mpspec.h>
42 /* Mappings between logical cpu number and node number */
44 extern int cpu_to_node_map[];
46 /* Returns the number of the current Node. */
47 #define numa_node_id() (early_cpu_to_node(raw_smp_processor_id()))
50 DECLARE_PER_CPU(int, x86_cpu_to_node_map);
53 extern int x86_cpu_to_node_map_init[];
54 extern void *x86_cpu_to_node_map_early_ptr;
56 #define x86_cpu_to_node_map_early_ptr NULL
59 extern cpumask_t node_to_cpumask_map[];
61 #define NUMA_NO_NODE (-1)
63 /* Returns the number of the node containing CPU 'cpu' */
65 #define early_cpu_to_node(cpu) cpu_to_node(cpu)
66 static inline int cpu_to_node(int cpu)
68 return cpu_to_node_map[cpu];
71 #else /* CONFIG_X86_64 */
74 static inline int early_cpu_to_node(int cpu)
76 int *cpu_to_node_map = x86_cpu_to_node_map_early_ptr;
79 return cpu_to_node_map[cpu];
80 else if (per_cpu_offset(cpu))
81 return per_cpu(x86_cpu_to_node_map, cpu);
86 #define early_cpu_to_node(cpu) cpu_to_node(cpu)
89 static inline int cpu_to_node(int cpu)
91 #ifdef CONFIG_DEBUG_PER_CPU_MAPS
92 if (x86_cpu_to_node_map_early_ptr) {
93 printk("KERN_NOTICE cpu_to_node(%d): usage too early!\n",
96 return ((int *)x86_cpu_to_node_map_early_ptr)[cpu];
99 return per_cpu(x86_cpu_to_node_map, cpu);
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])
108 #define node_to_cpumask_ptr_next(v, node) \
109 v = &(node_to_cpumask_map[node])
112 #endif /* CONFIG_X86_64 */
115 * Returns the number of the node containing Node 'node'. This
116 * architecture is flat, so it is a pretty simple function!
118 #define parent_node(node) (node)
120 /* Returns a bitmask of CPUs on Node 'node'. */
121 static inline cpumask_t node_to_cpumask(int node)
123 return node_to_cpumask_map[node];
126 /* Returns the number of the first CPU on Node 'node'. */
127 static inline int node_to_first_cpu(int node)
129 cpumask_t mask = node_to_cpumask(node);
131 return first_cpu(mask);
134 #define pcibus_to_node(bus) __pcibus_to_node(bus)
135 #define pcibus_to_cpumask(bus) __pcibus_to_cpumask(bus)
138 extern unsigned long node_start_pfn[];
139 extern unsigned long node_end_pfn[];
140 extern unsigned long node_remap_size[];
141 #define node_has_online_mem(nid) (node_start_pfn[nid] != node_end_pfn[nid])
143 # define SD_CACHE_NICE_TRIES 1
144 # define SD_IDLE_IDX 1
145 # define SD_NEWIDLE_IDX 2
146 # define SD_FORKEXEC_IDX 0
150 # define SD_CACHE_NICE_TRIES 2
151 # define SD_IDLE_IDX 2
152 # define SD_NEWIDLE_IDX 2
153 # define SD_FORKEXEC_IDX 1
157 /* sched_domains SD_NODE_INIT for NUMAQ machines */
158 #define SD_NODE_INIT (struct sched_domain) { \
160 .max_interval = 32, \
162 .imbalance_pct = 125, \
163 .cache_nice_tries = SD_CACHE_NICE_TRIES, \
165 .idle_idx = SD_IDLE_IDX, \
166 .newidle_idx = SD_NEWIDLE_IDX, \
168 .forkexec_idx = SD_FORKEXEC_IDX, \
169 .flags = SD_LOAD_BALANCE \
174 .last_balance = jiffies, \
175 .balance_interval = 1, \
178 #ifdef CONFIG_X86_64_ACPI_NUMA
179 extern int __node_distance(int, int);
180 #define node_distance(a, b) __node_distance(a, b)
183 #else /* CONFIG_NUMA */
187 #include <asm-generic/topology.h>
189 extern cpumask_t cpu_coregroup_map(int cpu);
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))
198 static inline void arch_fix_phys_package_id(int num, u32 slot)
203 void set_pci_bus_resources_arch_default(struct pci_bus *b);
206 #define mc_capable() (boot_cpu_data.x86_max_cores > 1)
207 #define smt_capable() (smp_num_siblings > 1)
211 extern int get_mp_bus_to_node(int busnum);
212 extern void set_mp_bus_to_node(int busnum, int node);
214 static inline int get_mp_bus_to_node(int busnum)
218 static inline void set_mp_bus_to_node(int busnum, int node)