1 #ifndef _ASM_POWERPC_TOPOLOGY_H
2 #define _ASM_POWERPC_TOPOLOGY_H
11 #include <asm/mmzone.h>
13 static inline int cpu_to_node(int cpu
)
15 return numa_cpu_lookup_table
[cpu
];
18 #define parent_node(node) (node)
20 #define cpumask_of_node(node) (&numa_cpumask_lookup_table[node])
22 int of_node_to_nid(struct device_node
*device
);
26 extern int pcibus_to_node(struct pci_bus
*bus
);
28 static inline int pcibus_to_node(struct pci_bus
*bus
)
34 #define cpumask_of_pcibus(bus) (pcibus_to_node(bus) == -1 ? \
36 cpumask_of_node(pcibus_to_node(bus)))
38 /* sched_domains SD_NODE_INIT for PPC64 machines */
39 #define SD_NODE_INIT (struct sched_domain) { \
46 .imbalance_pct = 125, \
47 .cache_nice_tries = 1, \
52 .flags = SD_LOAD_BALANCE \
55 | SD_BALANCE_NEWIDLE \
57 .last_balance = jiffies, \
58 .balance_interval = 1, \
59 .nr_balance_failed = 0, \
62 extern void __init
dump_numa_cpu_topology(void);
64 extern int sysfs_add_device_to_node(struct sys_device
*dev
, int nid
);
65 extern void sysfs_remove_device_from_node(struct sys_device
*dev
, int nid
);
69 static inline int of_node_to_nid(struct device_node
*device
)
74 static inline void dump_numa_cpu_topology(void) {}
76 static inline int sysfs_add_device_to_node(struct sys_device
*dev
, int nid
)
81 static inline void sysfs_remove_device_from_node(struct sys_device
*dev
,
86 #endif /* CONFIG_NUMA */
88 #include <asm-generic/topology.h>
91 #include <asm/cputable.h>
92 #define smt_capable() (cpu_has_feature(CPU_FTR_SMT))
97 #define topology_thread_cpumask(cpu) (&per_cpu(cpu_sibling_map, cpu))
98 #define topology_core_cpumask(cpu) (&per_cpu(cpu_core_map, cpu))
99 #define topology_core_id(cpu) (cpu_to_core_id(cpu))
103 #endif /* __KERNEL__ */
104 #endif /* _ASM_POWERPC_TOPOLOGY_H */