diff options
author | Jayachandran C <jchandra@broadcom.com> | 2013-12-21 06:22:14 -0500 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2014-01-24 16:39:47 -0500 |
commit | ce59d0f7fec6fa4e7a6c484308e25bad8a6caa39 (patch) | |
tree | 111c2a78eb3a952c9c0efe2895649fe6baec5ef1 /arch/mips/include/asm/mach-netlogic/topology.h | |
parent | c24a8a7a99885d5b986f38f6631f69e7794a3e5e (diff) |
MIPS: Netlogic: Add topology.h for XLP family
Add mach-netlogic/topology.h which contains XLP cpu number to core and
node mapping.
Signed-off-by: Jayachandran C <jchandra@broadcom.com>
Signed-off-by: John Crispin <blogic@openwrt.org>
Patchwork: http://patchwork.linux-mips.org/patch/6271/
Diffstat (limited to 'arch/mips/include/asm/mach-netlogic/topology.h')
-rw-r--r-- | arch/mips/include/asm/mach-netlogic/topology.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/arch/mips/include/asm/mach-netlogic/topology.h b/arch/mips/include/asm/mach-netlogic/topology.h new file mode 100644 index 000000000000..0da99fa11c38 --- /dev/null +++ b/arch/mips/include/asm/mach-netlogic/topology.h | |||
@@ -0,0 +1,20 @@ | |||
1 | /* | ||
2 | * This file is subject to the terms and conditions of the GNU General Public | ||
3 | * License. See the file "COPYING" in the main directory of this archive | ||
4 | * for more details. | ||
5 | * | ||
6 | * Copyright (C) 2013 Broadcom Corporation | ||
7 | */ | ||
8 | #ifndef _ASM_MACH_NETLOGIC_TOPOLOGY_H | ||
9 | #define _ASM_MACH_NETLOGIC_TOPOLOGY_H | ||
10 | |||
11 | #include <asm/mach-netlogic/multi-node.h> | ||
12 | |||
13 | #define topology_physical_package_id(cpu) cpu_to_node(cpu) | ||
14 | #define topology_core_id(cpu) (cpu_logical_map(cpu) / NLM_THREADS_PER_CORE) | ||
15 | #define topology_thread_cpumask(cpu) (&cpu_sibling_map[cpu]) | ||
16 | #define topology_core_cpumask(cpu) cpumask_of_node(cpu_to_node(cpu)) | ||
17 | |||
18 | #include <asm-generic/topology.h> | ||
19 | |||
20 | #endif /* _ASM_MACH_NETLOGIC_TOPOLOGY_H */ | ||