blob: c24306cd1504d2efa265ca283964eccbb106f5c9 [file] [log] [blame]
Tejun Heobbc9e2f2011-01-23 14:37:39 +01001#ifndef _ASM_X86_NUMA_H
2#define _ASM_X86_NUMA_H
3
Tejun Heo6bd26272011-05-02 14:18:52 +02004#include <linux/nodemask.h>
5
Tejun Heode2d9442011-01-23 14:37:41 +01006#include <asm/topology.h>
Tejun Heobbc9e2f2011-01-23 14:37:39 +01007#include <asm/apicdef.h>
8
9#ifdef CONFIG_NUMA
Tejun Heoef396ec2011-02-16 17:11:07 +010010
11#define NR_NODE_MEMBLKS (MAX_NUMNODES*2)
12
Tejun Heobbc9e2f2011-01-23 14:37:39 +010013/*
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 */
21extern s16 __apicid_to_node[MAX_LOCAL_APIC];
Tejun Heoe6df5952011-05-02 14:18:53 +020022extern nodemask_t numa_nodes_parsed __initdata;
Tejun Heobbc9e2f2011-01-23 14:37:39 +010023
24static inline void set_apicid_to_node(int apicid, s16 node)
25{
26 __apicid_to_node[apicid] = node;
27}
Tejun Heo6bd26272011-05-02 14:18:52 +020028
29extern int __cpuinit numa_cpu_node(int cpu);
30
Tejun Heobbc9e2f2011-01-23 14:37:39 +010031#else /* CONFIG_NUMA */
32static inline void set_apicid_to_node(int apicid, s16 node)
33{
34}
Tejun Heo6bd26272011-05-02 14:18:52 +020035
36static inline int numa_cpu_node(int cpu)
37{
38 return NUMA_NO_NODE;
39}
Tejun Heobbc9e2f2011-01-23 14:37:39 +010040#endif /* CONFIG_NUMA */
41
Thomas Gleixner96a388d2007-10-11 11:20:03 +020042#ifdef CONFIG_X86_32
43# include "numa_32.h"
44#else
45# include "numa_64.h"
46#endif
Tejun Heobbc9e2f2011-01-23 14:37:39 +010047
Tejun Heo645a7912011-01-23 14:37:40 +010048#ifdef CONFIG_NUMA
49extern void __cpuinit numa_set_node(int cpu, int node);
50extern void __cpuinit numa_clear_node(int cpu);
Tejun Heo8db78cc2011-01-23 14:37:42 +010051extern void __init numa_init_array(void);
52extern void __init init_cpu_to_node(void);
Tejun Heode2d9442011-01-23 14:37:41 +010053extern void __cpuinit numa_add_cpu(int cpu);
54extern void __cpuinit numa_remove_cpu(int cpu);
Tejun Heo645a7912011-01-23 14:37:40 +010055#else /* CONFIG_NUMA */
56static inline void numa_set_node(int cpu, int node) { }
57static inline void numa_clear_node(int cpu) { }
Tejun Heo8db78cc2011-01-23 14:37:42 +010058static inline void numa_init_array(void) { }
59static inline void init_cpu_to_node(void) { }
Tejun Heode2d9442011-01-23 14:37:41 +010060static inline void numa_add_cpu(int cpu) { }
61static inline void numa_remove_cpu(int cpu) { }
Tejun Heo645a7912011-01-23 14:37:40 +010062#endif /* CONFIG_NUMA */
63
Tejun Heode2d9442011-01-23 14:37:41 +010064#ifdef CONFIG_DEBUG_PER_CPU_MAPS
David Rientjes7a6c6542011-04-20 19:19:13 -070065void debug_cpumask_set_cpu(int cpu, int node, bool enable);
Tejun Heode2d9442011-01-23 14:37:41 +010066#endif
67
Tejun Heobbc9e2f2011-01-23 14:37:39 +010068#endif /* _ASM_X86_NUMA_H */