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
 * If zone_reclaim_mode is enabled, a RECLAIM_DISTANCE of 10 will mean that
 * all zones on all nodes will be eligible for zone_reclaim().
14 15 16
 */
#define RECLAIM_DISTANCE 10

17 18
#include <asm/mmzone.h>

L
Linus Torvalds 已提交
19 20
static inline int cpu_to_node(int cpu)
{
21 22 23 24 25 26 27 28 29
	int nid;

	nid = numa_cpu_lookup_table[cpu];

	/*
	 * During early boot, the numa-cpu lookup table might not have been
	 * setup for all CPUs yet. In such cases, default to node 0.
	 */
	return (nid < 0) ? 0 : nid;
L
Linus Torvalds 已提交
30 31 32 33
}

#define parent_node(node)	(node)

34 35
#define cpumask_of_node(node) ((node) == -1 ?				\
			       cpu_all_mask :				\
36
			       node_to_cpumask_map[node])
37

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

48 49 50 51
#define cpumask_of_pcibus(bus)	(pcibus_to_node(bus) == -1 ?		\
				 cpu_all_mask :				\
				 cpumask_of_node(pcibus_to_node(bus)))

52 53 54
extern int __node_distance(int, int);
#define node_distance(a, b) __node_distance(a, b)

55 56
extern void __init dump_numa_cpu_topology(void);

57 58
extern int sysfs_add_device_to_node(struct device *dev, int nid);
extern void sysfs_remove_device_from_node(struct device *dev, int nid);
59

60
#else
L
Linus Torvalds 已提交
61

62 63
static inline void dump_numa_cpu_topology(void) {}

64
static inline int sysfs_add_device_to_node(struct device *dev, int nid)
65 66 67 68
{
	return 0;
}

69
static inline void sysfs_remove_device_from_node(struct device *dev,
70 71 72
						int nid)
{
}
73
#endif /* CONFIG_NUMA */
74

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

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

96 97
#ifdef CONFIG_SMP
#include <asm/cputable.h>
98 99 100 101

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

102
#define topology_physical_package_id(cpu)	(cpu_to_chip_id(cpu))
103 104
#define topology_thread_cpumask(cpu)	(per_cpu(cpu_sibling_map, cpu))
#define topology_core_cpumask(cpu)	(per_cpu(cpu_core_map, cpu))
105
#define topology_core_id(cpu)		(cpu_to_core_id(cpu))
106
#endif
107 108
#endif

109
#endif /* __KERNEL__ */
110
#endif	/* _ASM_POWERPC_TOPOLOGY_H */