topology.h 2.4 KB
Newer Older
1 2
#ifndef _ASM_POWERPC_TOPOLOGY_H
#define _ASM_POWERPC_TOPOLOGY_H
3
#ifdef __KERNEL__
L
Linus Torvalds 已提交
4 5


6
struct device;
7 8
struct device_node;

L
Linus Torvalds 已提交
9 10
#ifdef CONFIG_NUMA

11 12 13 14 15 16 17 18 19 20
/*
 * Before going off node we want the VM to try and reclaim from the local
 * node. It does this if the remote distance is larger than RECLAIM_DISTANCE.
 * With the default REMOTE_DISTANCE of 20 and the default RECLAIM_DISTANCE of
 * 20, we never reclaim and go off node straight away.
 *
 * To fix this we choose a smaller value of RECLAIM_DISTANCE.
 */
#define RECLAIM_DISTANCE 10

21 22
#include <asm/mmzone.h>

L
Linus Torvalds 已提交
23 24
static inline int cpu_to_node(int cpu)
{
25
	return numa_cpu_lookup_table[cpu];
L
Linus Torvalds 已提交
26 27 28 29
}

#define parent_node(node)	(node)

30 31
#define cpumask_of_node(node) ((node) == -1 ?				\
			       cpu_all_mask :				\
32
			       node_to_cpumask_map[node])
33

A
Anton Blanchard 已提交
34
struct pci_bus;
A
Arnd Bergmann 已提交
35
#ifdef CONFIG_PCI
A
Anton Blanchard 已提交
36
extern int pcibus_to_node(struct pci_bus *bus);
A
Arnd Bergmann 已提交
37 38 39 40 41 42
#else
static inline int pcibus_to_node(struct pci_bus *bus)
{
	return -1;
}
#endif
A
Anton Blanchard 已提交
43

44 45 46 47
#define cpumask_of_pcibus(bus)	(pcibus_to_node(bus) == -1 ?		\
				 cpu_all_mask :				\
				 cpumask_of_node(pcibus_to_node(bus)))

48 49 50
extern int __node_distance(int, int);
#define node_distance(a, b) __node_distance(a, b)

51 52
extern void __init dump_numa_cpu_topology(void);

53 54
extern int sysfs_add_device_to_node(struct device *dev, int nid);
extern void sysfs_remove_device_from_node(struct device *dev, int nid);
55

56
#else
L
Linus Torvalds 已提交
57

58 59
static inline void dump_numa_cpu_topology(void) {}

60
static inline int sysfs_add_device_to_node(struct device *dev, int nid)
61 62 63 64
{
	return 0;
}

65
static inline void sysfs_remove_device_from_node(struct device *dev,
66 67 68
						int nid)
{
}
69
#endif /* CONFIG_NUMA */
70

71 72 73
#if defined(CONFIG_NUMA) && defined(CONFIG_PPC_SPLPAR)
extern int start_topology_update(void);
extern int stop_topology_update(void);
74
extern int prrn_is_enabled(void);
75 76 77 78 79 80 81 82 83
#else
static inline int start_topology_update(void)
{
	return 0;
}
static inline int stop_topology_update(void)
{
	return 0;
}
84 85 86 87
static inline int prrn_is_enabled(void)
{
	return 0;
}
88 89
#endif /* CONFIG_NUMA && CONFIG_PPC_SPLPAR */

L
Linus Torvalds 已提交
90 91
#include <asm-generic/topology.h>

92 93
#ifdef CONFIG_SMP
#include <asm/cputable.h>
94 95 96 97 98
#define smt_capable()		(cpu_has_feature(CPU_FTR_SMT))

#ifdef CONFIG_PPC64
#include <asm/smp.h>

99 100
#define topology_thread_cpumask(cpu)	(per_cpu(cpu_sibling_map, cpu))
#define topology_core_cpumask(cpu)	(per_cpu(cpu_core_map, cpu))
101
#define topology_core_id(cpu)		(cpu_to_core_id(cpu))
102
#endif
103 104
#endif

105
#endif /* __KERNEL__ */
106
#endif	/* _ASM_POWERPC_TOPOLOGY_H */