topology.h 649 B

12345678910111213141516171819202122232425262728
  1. #ifndef _ASM_SH_TOPOLOGY_H
  2. #define _ASM_SH_TOPOLOGY_H
  3. #ifdef CONFIG_NUMA
  4. #define cpu_to_node(cpu) ((void)(cpu),0)
  5. #define parent_node(node) ((void)(node),0)
  6. #define cpumask_of_node(node) ((void)node, cpu_online_mask)
  7. #define pcibus_to_node(bus) ((void)(bus), -1)
  8. #define cpumask_of_pcibus(bus) (pcibus_to_node(bus) == -1 ? \
  9. cpu_all_mask : \
  10. cpumask_of_node(pcibus_to_node(bus)))
  11. #endif
  12. #define mc_capable() (1)
  13. const struct cpumask *cpu_coregroup_mask(int cpu);
  14. extern cpumask_t cpu_core_map[NR_CPUS];
  15. #define topology_core_cpumask(cpu) (&cpu_core_map[cpu])
  16. #include <asm-generic/topology.h>
  17. #endif /* _ASM_SH_TOPOLOGY_H */