]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/sh/include/asm/topology.h
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[mirror_ubuntu-bionic-kernel.git] / arch / sh / include / asm / topology.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
1da177e4
LT
2#ifndef _ASM_SH_TOPOLOGY_H
3#define _ASM_SH_TOPOLOGY_H
4
b241cb0c
PM
5#ifdef CONFIG_NUMA
6
1e0f50ae
PM
7#define cpu_to_node(cpu) ((void)(cpu),0)
8#define parent_node(node) ((void)(node),0)
9
7479a293 10#define cpumask_of_node(node) ((void)node, cpu_online_mask)
1e0f50ae
PM
11
12#define pcibus_to_node(bus) ((void)(bus), -1)
b35346fd 13#define cpumask_of_pcibus(bus) (pcibus_to_node(bus) == -1 ? \
94316cda 14 cpu_all_mask : \
b35346fd
PM
15 cpumask_of_node(pcibus_to_node(bus)))
16
b241cb0c
PM
17#endif
18
896f0c0e
PM
19#define mc_capable() (1)
20
ccc7d5a1 21const struct cpumask *cpu_coregroup_mask(int cpu);
896f0c0e
PM
22
23extern cpumask_t cpu_core_map[NR_CPUS];
24
25#define topology_core_cpumask(cpu) (&cpu_core_map[cpu])
26
1da177e4
LT
27#include <asm-generic/topology.h>
28
29#endif /* _ASM_SH_TOPOLOGY_H */