Tejun Heo | bbc9e2f | 2011-01-23 14:37:39 +0100 | [diff] [blame] | 1 | #ifndef _ASM_X86_NUMA_H |
| 2 | #define _ASM_X86_NUMA_H |
| 3 | |
Tejun Heo | 6bd2627 | 2011-05-02 14:18:52 +0200 | [diff] [blame] | 4 | #include <linux/nodemask.h> |
| 5 | |
Tejun Heo | de2d944 | 2011-01-23 14:37:41 +0100 | [diff] [blame] | 6 | #include <asm/topology.h> |
Tejun Heo | bbc9e2f | 2011-01-23 14:37:39 +0100 | [diff] [blame] | 7 | #include <asm/apicdef.h> |
| 8 | |
| 9 | #ifdef CONFIG_NUMA |
Tejun Heo | ef396ec | 2011-02-16 17:11:07 +0100 | [diff] [blame] | 10 | |
| 11 | #define NR_NODE_MEMBLKS (MAX_NUMNODES*2) |
| 12 | |
Tejun Heo | bbc9e2f | 2011-01-23 14:37:39 +0100 | [diff] [blame] | 13 | /* |
| 14 | * __apicid_to_node[] stores the raw mapping between physical apicid and |
| 15 | * node and is used to initialize cpu_to_node mapping. |
| 16 | * |
| 17 | * The mapping may be overridden by apic->numa_cpu_node() on 32bit and thus |
| 18 | * should be accessed by the accessors - set_apicid_to_node() and |
| 19 | * numa_cpu_node(). |
| 20 | */ |
| 21 | extern s16 __apicid_to_node[MAX_LOCAL_APIC]; |
Tejun Heo | e6df595 | 2011-05-02 14:18:53 +0200 | [diff] [blame^] | 22 | extern nodemask_t numa_nodes_parsed __initdata; |
Tejun Heo | bbc9e2f | 2011-01-23 14:37:39 +0100 | [diff] [blame] | 23 | |
| 24 | static inline void set_apicid_to_node(int apicid, s16 node) |
| 25 | { |
| 26 | __apicid_to_node[apicid] = node; |
| 27 | } |
Tejun Heo | 6bd2627 | 2011-05-02 14:18:52 +0200 | [diff] [blame] | 28 | |
| 29 | extern int __cpuinit numa_cpu_node(int cpu); |
| 30 | |
Tejun Heo | bbc9e2f | 2011-01-23 14:37:39 +0100 | [diff] [blame] | 31 | #else /* CONFIG_NUMA */ |
| 32 | static inline void set_apicid_to_node(int apicid, s16 node) |
| 33 | { |
| 34 | } |
Tejun Heo | 6bd2627 | 2011-05-02 14:18:52 +0200 | [diff] [blame] | 35 | |
| 36 | static inline int numa_cpu_node(int cpu) |
| 37 | { |
| 38 | return NUMA_NO_NODE; |
| 39 | } |
Tejun Heo | bbc9e2f | 2011-01-23 14:37:39 +0100 | [diff] [blame] | 40 | #endif /* CONFIG_NUMA */ |
| 41 | |
Thomas Gleixner | 96a388d | 2007-10-11 11:20:03 +0200 | [diff] [blame] | 42 | #ifdef CONFIG_X86_32 |
| 43 | # include "numa_32.h" |
| 44 | #else |
| 45 | # include "numa_64.h" |
| 46 | #endif |
Tejun Heo | bbc9e2f | 2011-01-23 14:37:39 +0100 | [diff] [blame] | 47 | |
Tejun Heo | 645a791 | 2011-01-23 14:37:40 +0100 | [diff] [blame] | 48 | #ifdef CONFIG_NUMA |
| 49 | extern void __cpuinit numa_set_node(int cpu, int node); |
| 50 | extern void __cpuinit numa_clear_node(int cpu); |
Tejun Heo | 8db78cc | 2011-01-23 14:37:42 +0100 | [diff] [blame] | 51 | extern void __init numa_init_array(void); |
| 52 | extern void __init init_cpu_to_node(void); |
Tejun Heo | de2d944 | 2011-01-23 14:37:41 +0100 | [diff] [blame] | 53 | extern void __cpuinit numa_add_cpu(int cpu); |
| 54 | extern void __cpuinit numa_remove_cpu(int cpu); |
Tejun Heo | 645a791 | 2011-01-23 14:37:40 +0100 | [diff] [blame] | 55 | #else /* CONFIG_NUMA */ |
| 56 | static inline void numa_set_node(int cpu, int node) { } |
| 57 | static inline void numa_clear_node(int cpu) { } |
Tejun Heo | 8db78cc | 2011-01-23 14:37:42 +0100 | [diff] [blame] | 58 | static inline void numa_init_array(void) { } |
| 59 | static inline void init_cpu_to_node(void) { } |
Tejun Heo | de2d944 | 2011-01-23 14:37:41 +0100 | [diff] [blame] | 60 | static inline void numa_add_cpu(int cpu) { } |
| 61 | static inline void numa_remove_cpu(int cpu) { } |
Tejun Heo | 645a791 | 2011-01-23 14:37:40 +0100 | [diff] [blame] | 62 | #endif /* CONFIG_NUMA */ |
| 63 | |
Tejun Heo | de2d944 | 2011-01-23 14:37:41 +0100 | [diff] [blame] | 64 | #ifdef CONFIG_DEBUG_PER_CPU_MAPS |
David Rientjes | 7a6c654 | 2011-04-20 19:19:13 -0700 | [diff] [blame] | 65 | void debug_cpumask_set_cpu(int cpu, int node, bool enable); |
Tejun Heo | de2d944 | 2011-01-23 14:37:41 +0100 | [diff] [blame] | 66 | #endif |
| 67 | |
Tejun Heo | bbc9e2f | 2011-01-23 14:37:39 +0100 | [diff] [blame] | 68 | #endif /* _ASM_X86_NUMA_H */ |