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 logical cpu number and node number */ |
| 48 | extern int cpu_to_node_map[]; |
travis@sgi.com | df3825c | 2008-01-30 13:33:11 +0100 | [diff] [blame] | 49 | |
Thomas Gleixner | 3367e56 | 2008-01-30 13:30:38 +0100 | [diff] [blame] | 50 | /* Returns the number of the node containing CPU 'cpu' */ |
| 51 | static inline int cpu_to_node(int cpu) |
| 52 | { |
travis@sgi.com | 834beda1 | 2008-01-30 13:33:21 +0100 | [diff] [blame] | 53 | return cpu_to_node_map[cpu]; |
| 54 | } |
Mike Travis | 23ca4bb | 2008-05-12 21:21:12 +0200 | [diff] [blame] | 55 | #define early_cpu_to_node(cpu) cpu_to_node(cpu) |
travis@sgi.com | 834beda1 | 2008-01-30 13:33:21 +0100 | [diff] [blame] | 56 | |
| 57 | #else /* CONFIG_X86_64 */ |
Mike Travis | b447a46 | 2008-03-25 15:06:51 -0700 | [diff] [blame] | 58 | |
Mike Travis | 23ca4bb | 2008-05-12 21:21:12 +0200 | [diff] [blame] | 59 | /* Mappings between logical cpu number and node number */ |
| 60 | DECLARE_EARLY_PER_CPU(int, x86_cpu_to_node_map); |
Thomas Gleixner | 3367e56 | 2008-01-30 13:30:38 +0100 | [diff] [blame] | 61 | |
Mike Travis | 23ca4bb | 2008-05-12 21:21:12 +0200 | [diff] [blame] | 62 | /* Returns the number of the current Node. */ |
Brian Gerst | e7a22c1 | 2009-01-19 00:38:59 +0900 | [diff] [blame] | 63 | DECLARE_PER_CPU(int, node_number); |
| 64 | #define numa_node_id() percpu_read(node_number) |
Mike Travis | 23ca4bb | 2008-05-12 21:21:12 +0200 | [diff] [blame] | 65 | |
| 66 | #ifdef CONFIG_DEBUG_PER_CPU_MAPS |
| 67 | extern int cpu_to_node(int cpu); |
| 68 | extern int early_cpu_to_node(int cpu); |
Mike Travis | 23ca4bb | 2008-05-12 21:21:12 +0200 | [diff] [blame] | 69 | |
| 70 | #else /* !CONFIG_DEBUG_PER_CPU_MAPS */ |
| 71 | |
| 72 | /* Returns the number of the node containing CPU 'cpu' */ |
travis@sgi.com | 834beda1 | 2008-01-30 13:33:21 +0100 | [diff] [blame] | 73 | static inline int cpu_to_node(int cpu) |
| 74 | { |
Mike Travis | b447a46 | 2008-03-25 15:06:51 -0700 | [diff] [blame] | 75 | return per_cpu(x86_cpu_to_node_map, cpu); |
travis@sgi.com | 834beda1 | 2008-01-30 13:33:21 +0100 | [diff] [blame] | 76 | } |
Mike Travis | aa6b544 | 2008-03-31 08:41:55 -0700 | [diff] [blame] | 77 | |
Mike Travis | 23ca4bb | 2008-05-12 21:21:12 +0200 | [diff] [blame] | 78 | /* Same function but used if called before per_cpu areas are setup */ |
| 79 | static inline int early_cpu_to_node(int cpu) |
| 80 | { |
Tejun Heo | f10fcd4 | 2009-01-13 20:41:34 +0900 | [diff] [blame] | 81 | return early_per_cpu(x86_cpu_to_node_map, cpu); |
Mike Travis | 23ca4bb | 2008-05-12 21:21:12 +0200 | [diff] [blame] | 82 | } |
Mike Travis | aa6b544 | 2008-03-31 08:41:55 -0700 | [diff] [blame] | 83 | |
Rusty Russell | 71ee73e | 2009-03-13 14:49:52 +1030 | [diff] [blame] | 84 | #endif /* !CONFIG_DEBUG_PER_CPU_MAPS */ |
| 85 | |
| 86 | #endif /* CONFIG_X86_64 */ |
| 87 | |
| 88 | /* Mappings between node number and cpus on that node. */ |
Rusty Russell | c032ef60 | 2009-03-13 14:49:53 +1030 | [diff] [blame] | 89 | extern cpumask_var_t node_to_cpumask_map[MAX_NUMNODES]; |
Rusty Russell | 71ee73e | 2009-03-13 14:49:52 +1030 | [diff] [blame] | 90 | |
| 91 | #ifdef CONFIG_DEBUG_PER_CPU_MAPS |
Rusty Russell | 73e907d | 2009-03-13 14:49:57 +1030 | [diff] [blame^] | 92 | extern const struct cpumask *cpumask_of_node(int node); |
Rusty Russell | 71ee73e | 2009-03-13 14:49:52 +1030 | [diff] [blame] | 93 | #else |
Mike Travis | aa6b544 | 2008-03-31 08:41:55 -0700 | [diff] [blame] | 94 | /* Returns a pointer to the cpumask of CPUs on Node 'node'. */ |
Rusty Russell | c032ef60 | 2009-03-13 14:49:53 +1030 | [diff] [blame] | 95 | static inline const struct cpumask *cpumask_of_node(int node) |
Mike Travis | 23ca4bb | 2008-05-12 21:21:12 +0200 | [diff] [blame] | 96 | { |
Rusty Russell | c032ef60 | 2009-03-13 14:49:53 +1030 | [diff] [blame] | 97 | return node_to_cpumask_map[node]; |
Mike Travis | 23ca4bb | 2008-05-12 21:21:12 +0200 | [diff] [blame] | 98 | } |
Rusty Russell | 71ee73e | 2009-03-13 14:49:52 +1030 | [diff] [blame] | 99 | #endif |
Mike Travis | 23ca4bb | 2008-05-12 21:21:12 +0200 | [diff] [blame] | 100 | |
Brian Gerst | 6470aff | 2009-01-27 12:56:47 +0900 | [diff] [blame] | 101 | extern void setup_node_to_cpumask_map(void); |
| 102 | |
Mike Travis | 23ca4bb | 2008-05-12 21:21:12 +0200 | [diff] [blame] | 103 | /* |
| 104 | * Returns the number of the node containing Node 'node'. This |
| 105 | * architecture is flat, so it is a pretty simple function! |
| 106 | */ |
| 107 | #define parent_node(node) (node) |
| 108 | |
Thomas Gleixner | 3367e56 | 2008-01-30 13:30:38 +0100 | [diff] [blame] | 109 | #define pcibus_to_node(bus) __pcibus_to_node(bus) |
Thomas Gleixner | 3367e56 | 2008-01-30 13:30:38 +0100 | [diff] [blame] | 110 | |
Thomas Gleixner | 96a388d | 2007-10-11 11:20:03 +0200 | [diff] [blame] | 111 | #ifdef CONFIG_X86_32 |
Thomas Gleixner | 3367e56 | 2008-01-30 13:30:38 +0100 | [diff] [blame] | 112 | extern unsigned long node_start_pfn[]; |
| 113 | extern unsigned long node_end_pfn[]; |
| 114 | extern unsigned long node_remap_size[]; |
| 115 | #define node_has_online_mem(nid) (node_start_pfn[nid] != node_end_pfn[nid]) |
| 116 | |
Thomas Gleixner | 3367e56 | 2008-01-30 13:30:38 +0100 | [diff] [blame] | 117 | # define SD_CACHE_NICE_TRIES 1 |
| 118 | # define SD_IDLE_IDX 1 |
| 119 | # define SD_NEWIDLE_IDX 2 |
| 120 | # define SD_FORKEXEC_IDX 0 |
| 121 | |
Thomas Gleixner | 96a388d | 2007-10-11 11:20:03 +0200 | [diff] [blame] | 122 | #else |
Thomas Gleixner | 3367e56 | 2008-01-30 13:30:38 +0100 | [diff] [blame] | 123 | |
Thomas Gleixner | 3367e56 | 2008-01-30 13:30:38 +0100 | [diff] [blame] | 124 | # define SD_CACHE_NICE_TRIES 2 |
| 125 | # define SD_IDLE_IDX 2 |
Hidetoshi Seto | 1d3504f | 2008-04-15 14:04:23 +0900 | [diff] [blame] | 126 | # define SD_NEWIDLE_IDX 2 |
Thomas Gleixner | 3367e56 | 2008-01-30 13:30:38 +0100 | [diff] [blame] | 127 | # define SD_FORKEXEC_IDX 1 |
| 128 | |
| 129 | #endif |
| 130 | |
Ingo Molnar | 9fcd18c | 2008-11-05 16:52:08 +0100 | [diff] [blame] | 131 | /* sched_domains SD_NODE_INIT for NUMA machines */ |
Thomas Gleixner | 3367e56 | 2008-01-30 13:30:38 +0100 | [diff] [blame] | 132 | #define SD_NODE_INIT (struct sched_domain) { \ |
Thomas Gleixner | 3367e56 | 2008-01-30 13:30:38 +0100 | [diff] [blame] | 133 | .min_interval = 8, \ |
| 134 | .max_interval = 32, \ |
| 135 | .busy_factor = 32, \ |
| 136 | .imbalance_pct = 125, \ |
| 137 | .cache_nice_tries = SD_CACHE_NICE_TRIES, \ |
| 138 | .busy_idx = 3, \ |
| 139 | .idle_idx = SD_IDLE_IDX, \ |
| 140 | .newidle_idx = SD_NEWIDLE_IDX, \ |
| 141 | .wake_idx = 1, \ |
| 142 | .forkexec_idx = SD_FORKEXEC_IDX, \ |
| 143 | .flags = SD_LOAD_BALANCE \ |
| 144 | | SD_BALANCE_EXEC \ |
| 145 | | SD_BALANCE_FORK \ |
Ingo Molnar | 9fcd18c | 2008-11-05 16:52:08 +0100 | [diff] [blame] | 146 | | SD_WAKE_AFFINE \ |
| 147 | | SD_WAKE_BALANCE \ |
| 148 | | SD_SERIALIZE, \ |
Thomas Gleixner | 3367e56 | 2008-01-30 13:30:38 +0100 | [diff] [blame] | 149 | .last_balance = jiffies, \ |
| 150 | .balance_interval = 1, \ |
Thomas Gleixner | 3367e56 | 2008-01-30 13:30:38 +0100 | [diff] [blame] | 151 | } |
| 152 | |
| 153 | #ifdef CONFIG_X86_64_ACPI_NUMA |
| 154 | extern int __node_distance(int, int); |
| 155 | #define node_distance(a, b) __node_distance(a, b) |
| 156 | #endif |
| 157 | |
Mike Travis | 23ca4bb | 2008-05-12 21:21:12 +0200 | [diff] [blame] | 158 | #else /* !CONFIG_NUMA */ |
Thomas Gleixner | 3367e56 | 2008-01-30 13:30:38 +0100 | [diff] [blame] | 159 | |
Mike Travis | f2a0827 | 2009-01-15 09:19:32 -0800 | [diff] [blame] | 160 | static inline int numa_node_id(void) |
| 161 | { |
| 162 | return 0; |
| 163 | } |
| 164 | |
| 165 | static inline int cpu_to_node(int cpu) |
| 166 | { |
| 167 | return 0; |
| 168 | } |
| 169 | |
| 170 | static inline int early_cpu_to_node(int cpu) |
| 171 | { |
| 172 | return 0; |
| 173 | } |
Mike Travis | 23ca4bb | 2008-05-12 21:21:12 +0200 | [diff] [blame] | 174 | |
Rusty Russell | 73e907d | 2009-03-13 14:49:57 +1030 | [diff] [blame^] | 175 | static inline const struct cpumask *cpumask_of_node(int node) |
Mike Travis | 23ca4bb | 2008-05-12 21:21:12 +0200 | [diff] [blame] | 176 | { |
Rusty Russell | 4f06289 | 2009-03-13 14:49:54 +1030 | [diff] [blame] | 177 | return cpu_online_mask; |
Mike Travis | 23ca4bb | 2008-05-12 21:21:12 +0200 | [diff] [blame] | 178 | } |
Mike Travis | 23ca4bb | 2008-05-12 21:21:12 +0200 | [diff] [blame] | 179 | static inline int node_to_first_cpu(int node) |
| 180 | { |
Rusty Russell | 4f06289 | 2009-03-13 14:49:54 +1030 | [diff] [blame] | 181 | return cpumask_first(cpu_online_mask); |
Mike Travis | 23ca4bb | 2008-05-12 21:21:12 +0200 | [diff] [blame] | 182 | } |
| 183 | |
Brian Gerst | 6470aff | 2009-01-27 12:56:47 +0900 | [diff] [blame] | 184 | static inline void setup_node_to_cpumask_map(void) { } |
| 185 | |
Thomas Gleixner | 3367e56 | 2008-01-30 13:30:38 +0100 | [diff] [blame] | 186 | #endif |
| 187 | |
Mike Travis | aa6b544 | 2008-03-31 08:41:55 -0700 | [diff] [blame] | 188 | #include <asm-generic/topology.h> |
| 189 | |
Mike Travis | 9f248bd | 2008-05-12 21:21:12 +0200 | [diff] [blame] | 190 | #ifdef CONFIG_NUMA |
| 191 | /* Returns the number of the first CPU on Node 'node'. */ |
| 192 | static inline int node_to_first_cpu(int node) |
| 193 | { |
Rusty Russell | 393d68f | 2008-12-26 22:23:38 +1030 | [diff] [blame] | 194 | return cpumask_first(cpumask_of_node(node)); |
Mike Travis | 9f248bd | 2008-05-12 21:21:12 +0200 | [diff] [blame] | 195 | } |
| 196 | #endif |
| 197 | |
Rusty Russell | 030bb20 | 2008-12-26 22:23:41 +1030 | [diff] [blame] | 198 | extern const struct cpumask *cpu_coregroup_mask(int cpu); |
Thomas Gleixner | 3367e56 | 2008-01-30 13:30:38 +0100 | [diff] [blame] | 199 | |
| 200 | #ifdef ENABLE_TOPO_DEFINES |
| 201 | #define topology_physical_package_id(cpu) (cpu_data(cpu).phys_proc_id) |
| 202 | #define topology_core_id(cpu) (cpu_data(cpu).cpu_core_id) |
Rusty Russell | 7ad728f | 2009-03-13 14:49:50 +1030 | [diff] [blame] | 203 | #define topology_core_cpumask(cpu) (per_cpu(cpu_core_map, cpu)) |
| 204 | #define topology_thread_cpumask(cpu) (per_cpu(cpu_sibling_map, cpu)) |
Mike Travis | 23ca4bb | 2008-05-12 21:21:12 +0200 | [diff] [blame] | 205 | |
| 206 | /* indicates that pointers to the topology cpumask_t maps are valid */ |
| 207 | #define arch_provides_topology_pointers yes |
Thomas Gleixner | 3367e56 | 2008-01-30 13:30:38 +0100 | [diff] [blame] | 208 | #endif |
| 209 | |
Alex Chiang | fe086a7 | 2008-04-29 15:05:29 -0700 | [diff] [blame] | 210 | static inline void arch_fix_phys_package_id(int num, u32 slot) |
| 211 | { |
| 212 | } |
| 213 | |
Yinghai Lu | 30a18d6 | 2008-02-19 03:21:20 -0800 | [diff] [blame] | 214 | struct pci_bus; |
| 215 | void set_pci_bus_resources_arch_default(struct pci_bus *b); |
| 216 | |
Thomas Gleixner | 3367e56 | 2008-01-30 13:30:38 +0100 | [diff] [blame] | 217 | #ifdef CONFIG_SMP |
Rusty Russell | 7ad728f | 2009-03-13 14:49:50 +1030 | [diff] [blame] | 218 | #define mc_capable() (cpumask_weight(cpu_core_mask(0)) != nr_cpu_ids) |
Thomas Gleixner | 3367e56 | 2008-01-30 13:30:38 +0100 | [diff] [blame] | 219 | #define smt_capable() (smp_num_siblings > 1) |
| 220 | #endif |
| 221 | |
Yinghai Lu | 871d5f8 | 2008-02-19 03:20:09 -0800 | [diff] [blame] | 222 | #ifdef CONFIG_NUMA |
| 223 | extern int get_mp_bus_to_node(int busnum); |
| 224 | extern void set_mp_bus_to_node(int busnum, int node); |
| 225 | #else |
| 226 | static inline int get_mp_bus_to_node(int busnum) |
| 227 | { |
| 228 | return 0; |
| 229 | } |
| 230 | static inline void set_mp_bus_to_node(int busnum, int node) |
| 231 | { |
| 232 | } |
| 233 | #endif |
| 234 | |
H. Peter Anvin | 1965aae | 2008-10-22 22:26:29 -0700 | [diff] [blame] | 235 | #endif /* _ASM_X86_TOPOLOGY_H */ |