Thomas Gleixner | 3367e56 | 2008-01-30 13:30:38 +0100 | [diff] [blame] | 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 | */ |
H. Peter Anvin | 1965aae | 2008-10-22 22:26:29 -0700 | [diff] [blame] | 25 | #ifndef _ASM_X86_TOPOLOGY_H |
| 26 | #define _ASM_X86_TOPOLOGY_H |
Thomas Gleixner | 3367e56 | 2008-01-30 13:30:38 +0100 | [diff] [blame] | 27 | |
Vaidyanathan Srinivasan | 5c3a121 | 2008-05-05 19:22:15 +0530 | [diff] [blame] | 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 | |
Mike Travis | 23ca4bb | 2008-05-12 21:21:12 +0200 | [diff] [blame] | 38 | /* Node not present */ |
| 39 | #define NUMA_NO_NODE (-1) |
| 40 | |
Thomas Gleixner | 3367e56 | 2008-01-30 13:30:38 +0100 | [diff] [blame] | 41 | #ifdef CONFIG_NUMA |
| 42 | #include <linux/cpumask.h> |
| 43 | #include <asm/mpspec.h> |
| 44 | |
travis@sgi.com | 834beda1 | 2008-01-30 13:33:21 +0100 | [diff] [blame] | 45 | #ifdef CONFIG_X86_32 |
travis@sgi.com | 834beda1 | 2008-01-30 13:33:21 +0100 | [diff] [blame] | 46 | |
Mike Travis | 23ca4bb | 2008-05-12 21:21:12 +0200 | [diff] [blame] | 47 | /* Mappings between node number and cpus on that node. */ |
Thomas Gleixner | 3367e56 | 2008-01-30 13:30:38 +0100 | [diff] [blame] | 48 | extern cpumask_t node_to_cpumask_map[]; |
| 49 | |
Mike Travis | 23ca4bb | 2008-05-12 21:21:12 +0200 | [diff] [blame] | 50 | /* Mappings between logical cpu number and node number */ |
| 51 | extern int cpu_to_node_map[]; |
travis@sgi.com | df3825c | 2008-01-30 13:33:11 +0100 | [diff] [blame] | 52 | |
Thomas Gleixner | 3367e56 | 2008-01-30 13:30:38 +0100 | [diff] [blame] | 53 | /* Returns the number of the node containing CPU 'cpu' */ |
| 54 | static inline int cpu_to_node(int cpu) |
| 55 | { |
travis@sgi.com | 834beda1 | 2008-01-30 13:33:21 +0100 | [diff] [blame] | 56 | return cpu_to_node_map[cpu]; |
| 57 | } |
Mike Travis | 23ca4bb | 2008-05-12 21:21:12 +0200 | [diff] [blame] | 58 | #define early_cpu_to_node(cpu) cpu_to_node(cpu) |
travis@sgi.com | 834beda1 | 2008-01-30 13:33:21 +0100 | [diff] [blame] | 59 | |
Mike Travis | 6a2f47c | 2008-06-27 10:10:13 -0700 | [diff] [blame] | 60 | /* Returns a bitmask of CPUs on Node 'node'. |
| 61 | * |
| 62 | * Side note: this function creates the returned cpumask on the stack |
| 63 | * so with a high NR_CPUS count, excessive stack space is used. The |
Rusty Russell | 393d68f | 2008-12-26 22:23:38 +1030 | [diff] [blame] | 64 | * cpumask_of_node function should be used whenever possible. |
Mike Travis | 6a2f47c | 2008-06-27 10:10:13 -0700 | [diff] [blame] | 65 | */ |
Mike Travis | 9f248bd | 2008-05-12 21:21:12 +0200 | [diff] [blame] | 66 | static inline cpumask_t node_to_cpumask(int node) |
| 67 | { |
| 68 | return node_to_cpumask_map[node]; |
| 69 | } |
| 70 | |
Rusty Russell | 393d68f | 2008-12-26 22:23:38 +1030 | [diff] [blame] | 71 | /* Returns a bitmask of CPUs on Node 'node'. */ |
| 72 | static inline const struct cpumask *cpumask_of_node(int node) |
| 73 | { |
| 74 | return &node_to_cpumask_map[node]; |
| 75 | } |
| 76 | |
travis@sgi.com | 834beda1 | 2008-01-30 13:33:21 +0100 | [diff] [blame] | 77 | #else /* CONFIG_X86_64 */ |
Mike Travis | b447a46 | 2008-03-25 15:06:51 -0700 | [diff] [blame] | 78 | |
Mike Travis | 23ca4bb | 2008-05-12 21:21:12 +0200 | [diff] [blame] | 79 | /* Mappings between node number and cpus on that node. */ |
Mike Travis | 9f248bd | 2008-05-12 21:21:12 +0200 | [diff] [blame] | 80 | extern cpumask_t *node_to_cpumask_map; |
travis@sgi.com | df3825c | 2008-01-30 13:33:11 +0100 | [diff] [blame] | 81 | |
Mike Travis | 23ca4bb | 2008-05-12 21:21:12 +0200 | [diff] [blame] | 82 | /* Mappings between logical cpu number and node number */ |
| 83 | DECLARE_EARLY_PER_CPU(int, x86_cpu_to_node_map); |
Thomas Gleixner | 3367e56 | 2008-01-30 13:30:38 +0100 | [diff] [blame] | 84 | |
Mike Travis | 23ca4bb | 2008-05-12 21:21:12 +0200 | [diff] [blame] | 85 | /* Returns the number of the current Node. */ |
Mike Travis | 7891a24 | 2008-05-12 21:21:12 +0200 | [diff] [blame] | 86 | #define numa_node_id() read_pda(nodenumber) |
Mike Travis | 23ca4bb | 2008-05-12 21:21:12 +0200 | [diff] [blame] | 87 | |
| 88 | #ifdef CONFIG_DEBUG_PER_CPU_MAPS |
| 89 | extern int cpu_to_node(int cpu); |
| 90 | extern int early_cpu_to_node(int cpu); |
Rusty Russell | 393d68f | 2008-12-26 22:23:38 +1030 | [diff] [blame] | 91 | extern const cpumask_t *cpumask_of_node(int node); |
Mike Travis | 23ca4bb | 2008-05-12 21:21:12 +0200 | [diff] [blame] | 92 | extern cpumask_t node_to_cpumask(int node); |
| 93 | |
| 94 | #else /* !CONFIG_DEBUG_PER_CPU_MAPS */ |
| 95 | |
| 96 | /* Returns the number of the node containing CPU 'cpu' */ |
travis@sgi.com | 834beda1 | 2008-01-30 13:33:21 +0100 | [diff] [blame] | 97 | static inline int cpu_to_node(int cpu) |
| 98 | { |
Mike Travis | b447a46 | 2008-03-25 15:06:51 -0700 | [diff] [blame] | 99 | return per_cpu(x86_cpu_to_node_map, cpu); |
travis@sgi.com | 834beda1 | 2008-01-30 13:33:21 +0100 | [diff] [blame] | 100 | } |
Mike Travis | aa6b544 | 2008-03-31 08:41:55 -0700 | [diff] [blame] | 101 | |
Mike Travis | 23ca4bb | 2008-05-12 21:21:12 +0200 | [diff] [blame] | 102 | /* Same function but used if called before per_cpu areas are setup */ |
| 103 | static inline int early_cpu_to_node(int cpu) |
| 104 | { |
| 105 | if (early_per_cpu_ptr(x86_cpu_to_node_map)) |
| 106 | return early_per_cpu_ptr(x86_cpu_to_node_map)[cpu]; |
| 107 | |
| 108 | return per_cpu(x86_cpu_to_node_map, cpu); |
| 109 | } |
Mike Travis | aa6b544 | 2008-03-31 08:41:55 -0700 | [diff] [blame] | 110 | |
| 111 | /* Returns a pointer to the cpumask of CPUs on Node 'node'. */ |
Rusty Russell | 393d68f | 2008-12-26 22:23:38 +1030 | [diff] [blame] | 112 | static inline const cpumask_t *cpumask_of_node(int node) |
Mike Travis | 23ca4bb | 2008-05-12 21:21:12 +0200 | [diff] [blame] | 113 | { |
| 114 | return &node_to_cpumask_map[node]; |
| 115 | } |
Thomas Gleixner | 3367e56 | 2008-01-30 13:30:38 +0100 | [diff] [blame] | 116 | |
| 117 | /* Returns a bitmask of CPUs on Node 'node'. */ |
| 118 | static inline cpumask_t node_to_cpumask(int node) |
| 119 | { |
| 120 | return node_to_cpumask_map[node]; |
| 121 | } |
| 122 | |
Mike Travis | 23ca4bb | 2008-05-12 21:21:12 +0200 | [diff] [blame] | 123 | #endif /* !CONFIG_DEBUG_PER_CPU_MAPS */ |
Mike Travis | 23ca4bb | 2008-05-12 21:21:12 +0200 | [diff] [blame] | 124 | |
Rusty Russell | 393d68f | 2008-12-26 22:23:38 +1030 | [diff] [blame] | 125 | /* |
| 126 | * Replace default node_to_cpumask_ptr with optimized version |
| 127 | * Deprecated: use "const struct cpumask *mask = cpumask_of_node(node)" |
| 128 | */ |
Mike Travis | 23ca4bb | 2008-05-12 21:21:12 +0200 | [diff] [blame] | 129 | #define node_to_cpumask_ptr(v, node) \ |
Rusty Russell | 393d68f | 2008-12-26 22:23:38 +1030 | [diff] [blame] | 130 | const cpumask_t *v = cpumask_of_node(node) |
Mike Travis | 23ca4bb | 2008-05-12 21:21:12 +0200 | [diff] [blame] | 131 | |
| 132 | #define node_to_cpumask_ptr_next(v, node) \ |
Rusty Russell | 393d68f | 2008-12-26 22:23:38 +1030 | [diff] [blame] | 133 | v = cpumask_of_node(node) |
Mike Travis | 23ca4bb | 2008-05-12 21:21:12 +0200 | [diff] [blame] | 134 | |
Mike Travis | 9f248bd | 2008-05-12 21:21:12 +0200 | [diff] [blame] | 135 | #endif /* CONFIG_X86_64 */ |
Thomas Gleixner | 3367e56 | 2008-01-30 13:30:38 +0100 | [diff] [blame] | 136 | |
Mike Travis | 23ca4bb | 2008-05-12 21:21:12 +0200 | [diff] [blame] | 137 | /* |
| 138 | * Returns the number of the node containing Node 'node'. This |
| 139 | * architecture is flat, so it is a pretty simple function! |
| 140 | */ |
| 141 | #define parent_node(node) (node) |
| 142 | |
Thomas Gleixner | 3367e56 | 2008-01-30 13:30:38 +0100 | [diff] [blame] | 143 | #define pcibus_to_node(bus) __pcibus_to_node(bus) |
| 144 | #define pcibus_to_cpumask(bus) __pcibus_to_cpumask(bus) |
| 145 | |
Thomas Gleixner | 96a388d | 2007-10-11 11:20:03 +0200 | [diff] [blame] | 146 | #ifdef CONFIG_X86_32 |
Thomas Gleixner | 3367e56 | 2008-01-30 13:30:38 +0100 | [diff] [blame] | 147 | extern unsigned long node_start_pfn[]; |
| 148 | extern unsigned long node_end_pfn[]; |
| 149 | extern unsigned long node_remap_size[]; |
| 150 | #define node_has_online_mem(nid) (node_start_pfn[nid] != node_end_pfn[nid]) |
| 151 | |
Thomas Gleixner | 3367e56 | 2008-01-30 13:30:38 +0100 | [diff] [blame] | 152 | # define SD_CACHE_NICE_TRIES 1 |
| 153 | # define SD_IDLE_IDX 1 |
| 154 | # define SD_NEWIDLE_IDX 2 |
| 155 | # define SD_FORKEXEC_IDX 0 |
| 156 | |
Thomas Gleixner | 96a388d | 2007-10-11 11:20:03 +0200 | [diff] [blame] | 157 | #else |
Thomas Gleixner | 3367e56 | 2008-01-30 13:30:38 +0100 | [diff] [blame] | 158 | |
Thomas Gleixner | 3367e56 | 2008-01-30 13:30:38 +0100 | [diff] [blame] | 159 | # define SD_CACHE_NICE_TRIES 2 |
| 160 | # define SD_IDLE_IDX 2 |
Hidetoshi Seto | 1d3504f | 2008-04-15 14:04:23 +0900 | [diff] [blame] | 161 | # define SD_NEWIDLE_IDX 2 |
Thomas Gleixner | 3367e56 | 2008-01-30 13:30:38 +0100 | [diff] [blame] | 162 | # define SD_FORKEXEC_IDX 1 |
| 163 | |
| 164 | #endif |
| 165 | |
Ingo Molnar | 9fcd18c | 2008-11-05 16:52:08 +0100 | [diff] [blame] | 166 | /* sched_domains SD_NODE_INIT for NUMA machines */ |
Thomas Gleixner | 3367e56 | 2008-01-30 13:30:38 +0100 | [diff] [blame] | 167 | #define SD_NODE_INIT (struct sched_domain) { \ |
Thomas Gleixner | 3367e56 | 2008-01-30 13:30:38 +0100 | [diff] [blame] | 168 | .min_interval = 8, \ |
| 169 | .max_interval = 32, \ |
| 170 | .busy_factor = 32, \ |
| 171 | .imbalance_pct = 125, \ |
| 172 | .cache_nice_tries = SD_CACHE_NICE_TRIES, \ |
| 173 | .busy_idx = 3, \ |
| 174 | .idle_idx = SD_IDLE_IDX, \ |
| 175 | .newidle_idx = SD_NEWIDLE_IDX, \ |
| 176 | .wake_idx = 1, \ |
| 177 | .forkexec_idx = SD_FORKEXEC_IDX, \ |
| 178 | .flags = SD_LOAD_BALANCE \ |
| 179 | | SD_BALANCE_EXEC \ |
| 180 | | SD_BALANCE_FORK \ |
Ingo Molnar | 9fcd18c | 2008-11-05 16:52:08 +0100 | [diff] [blame] | 181 | | SD_WAKE_AFFINE \ |
| 182 | | SD_WAKE_BALANCE \ |
| 183 | | SD_SERIALIZE, \ |
Thomas Gleixner | 3367e56 | 2008-01-30 13:30:38 +0100 | [diff] [blame] | 184 | .last_balance = jiffies, \ |
| 185 | .balance_interval = 1, \ |
Thomas Gleixner | 3367e56 | 2008-01-30 13:30:38 +0100 | [diff] [blame] | 186 | } |
| 187 | |
| 188 | #ifdef CONFIG_X86_64_ACPI_NUMA |
| 189 | extern int __node_distance(int, int); |
| 190 | #define node_distance(a, b) __node_distance(a, b) |
| 191 | #endif |
| 192 | |
Mike Travis | 23ca4bb | 2008-05-12 21:21:12 +0200 | [diff] [blame] | 193 | #else /* !CONFIG_NUMA */ |
Thomas Gleixner | 3367e56 | 2008-01-30 13:30:38 +0100 | [diff] [blame] | 194 | |
Mike Travis | 23ca4bb | 2008-05-12 21:21:12 +0200 | [diff] [blame] | 195 | #define numa_node_id() 0 |
| 196 | #define cpu_to_node(cpu) 0 |
| 197 | #define early_cpu_to_node(cpu) 0 |
| 198 | |
Rusty Russell | 393d68f | 2008-12-26 22:23:38 +1030 | [diff] [blame] | 199 | static inline const cpumask_t *cpumask_of_node(int node) |
Mike Travis | 23ca4bb | 2008-05-12 21:21:12 +0200 | [diff] [blame] | 200 | { |
| 201 | return &cpu_online_map; |
| 202 | } |
| 203 | static inline cpumask_t node_to_cpumask(int node) |
| 204 | { |
| 205 | return cpu_online_map; |
| 206 | } |
| 207 | static inline int node_to_first_cpu(int node) |
| 208 | { |
| 209 | return first_cpu(cpu_online_map); |
| 210 | } |
| 211 | |
Rusty Russell | 393d68f | 2008-12-26 22:23:38 +1030 | [diff] [blame] | 212 | /* |
| 213 | * Replace default node_to_cpumask_ptr with optimized version |
| 214 | * Deprecated: use "const struct cpumask *mask = cpumask_of_node(node)" |
| 215 | */ |
Mike Travis | 23ca4bb | 2008-05-12 21:21:12 +0200 | [diff] [blame] | 216 | #define node_to_cpumask_ptr(v, node) \ |
Rusty Russell | 393d68f | 2008-12-26 22:23:38 +1030 | [diff] [blame] | 217 | const cpumask_t *v = cpumask_of_node(node) |
Mike Travis | 23ca4bb | 2008-05-12 21:21:12 +0200 | [diff] [blame] | 218 | |
| 219 | #define node_to_cpumask_ptr_next(v, node) \ |
Rusty Russell | 393d68f | 2008-12-26 22:23:38 +1030 | [diff] [blame] | 220 | v = cpumask_of_node(node) |
Thomas Gleixner | 3367e56 | 2008-01-30 13:30:38 +0100 | [diff] [blame] | 221 | #endif |
| 222 | |
Mike Travis | aa6b544 | 2008-03-31 08:41:55 -0700 | [diff] [blame] | 223 | #include <asm-generic/topology.h> |
| 224 | |
Mike Travis | 9f248bd | 2008-05-12 21:21:12 +0200 | [diff] [blame] | 225 | #ifdef CONFIG_NUMA |
| 226 | /* Returns the number of the first CPU on Node 'node'. */ |
| 227 | static inline int node_to_first_cpu(int node) |
| 228 | { |
Rusty Russell | 393d68f | 2008-12-26 22:23:38 +1030 | [diff] [blame] | 229 | return cpumask_first(cpumask_of_node(node)); |
Mike Travis | 9f248bd | 2008-05-12 21:21:12 +0200 | [diff] [blame] | 230 | } |
| 231 | #endif |
| 232 | |
Thomas Gleixner | 3367e56 | 2008-01-30 13:30:38 +0100 | [diff] [blame] | 233 | extern cpumask_t cpu_coregroup_map(int cpu); |
Rusty Russell | 030bb20 | 2008-12-26 22:23:41 +1030 | [diff] [blame^] | 234 | extern const struct cpumask *cpu_coregroup_mask(int cpu); |
Thomas Gleixner | 3367e56 | 2008-01-30 13:30:38 +0100 | [diff] [blame] | 235 | |
| 236 | #ifdef ENABLE_TOPO_DEFINES |
| 237 | #define topology_physical_package_id(cpu) (cpu_data(cpu).phys_proc_id) |
| 238 | #define topology_core_id(cpu) (cpu_data(cpu).cpu_core_id) |
| 239 | #define topology_core_siblings(cpu) (per_cpu(cpu_core_map, cpu)) |
| 240 | #define topology_thread_siblings(cpu) (per_cpu(cpu_sibling_map, cpu)) |
Mike Travis | 23ca4bb | 2008-05-12 21:21:12 +0200 | [diff] [blame] | 241 | |
| 242 | /* indicates that pointers to the topology cpumask_t maps are valid */ |
| 243 | #define arch_provides_topology_pointers yes |
Thomas Gleixner | 3367e56 | 2008-01-30 13:30:38 +0100 | [diff] [blame] | 244 | #endif |
| 245 | |
Alex Chiang | fe086a7 | 2008-04-29 15:05:29 -0700 | [diff] [blame] | 246 | static inline void arch_fix_phys_package_id(int num, u32 slot) |
| 247 | { |
| 248 | } |
| 249 | |
Yinghai Lu | 30a18d6 | 2008-02-19 03:21:20 -0800 | [diff] [blame] | 250 | struct pci_bus; |
| 251 | void set_pci_bus_resources_arch_default(struct pci_bus *b); |
| 252 | |
Thomas Gleixner | 3367e56 | 2008-01-30 13:30:38 +0100 | [diff] [blame] | 253 | #ifdef CONFIG_SMP |
Mahesh Salgaonkar | 4371453 | 2008-11-29 16:50:12 +0530 | [diff] [blame] | 254 | #define mc_capable() (cpus_weight(per_cpu(cpu_core_map, 0)) != nr_cpu_ids) |
Thomas Gleixner | 3367e56 | 2008-01-30 13:30:38 +0100 | [diff] [blame] | 255 | #define smt_capable() (smp_num_siblings > 1) |
| 256 | #endif |
| 257 | |
Yinghai Lu | 871d5f8 | 2008-02-19 03:20:09 -0800 | [diff] [blame] | 258 | #ifdef CONFIG_NUMA |
| 259 | extern int get_mp_bus_to_node(int busnum); |
| 260 | extern void set_mp_bus_to_node(int busnum, int node); |
| 261 | #else |
| 262 | static inline int get_mp_bus_to_node(int busnum) |
| 263 | { |
| 264 | return 0; |
| 265 | } |
| 266 | static inline void set_mp_bus_to_node(int busnum, int node) |
| 267 | { |
| 268 | } |
| 269 | #endif |
| 270 | |
H. Peter Anvin | 1965aae | 2008-10-22 22:26:29 -0700 | [diff] [blame] | 271 | #endif /* _ASM_X86_TOPOLOGY_H */ |