Linux 6.13-rc4
[linux.git] / arch / sh / include / asm / topology.h
blob1db470e024565b5b27e93a5e8327bf3fa9845381
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ASM_SH_TOPOLOGY_H
3 #define _ASM_SH_TOPOLOGY_H
5 #ifdef CONFIG_NUMA
7 #define cpu_to_node(cpu) ((void)(cpu),0)
9 #define cpumask_of_node(node) ((void)node, cpu_online_mask)
11 #define pcibus_to_node(bus) ((void)(bus), -1)
12 #define cpumask_of_pcibus(bus) (pcibus_to_node(bus) == -1 ? \
13 cpu_all_mask : \
14 cpumask_of_node(pcibus_to_node(bus)))
16 #endif
18 #define mc_capable() (1)
20 const struct cpumask *cpu_coregroup_mask(int cpu);
22 extern cpumask_t cpu_core_map[NR_CPUS];
24 #define topology_core_cpumask(cpu) (&cpu_core_map[cpu])
26 #include <asm-generic/topology.h>
28 #endif /* _ASM_SH_TOPOLOGY_H */