WIP FPC-III support
[linux/fpc-iii.git] / tools / perf / util / cputopo.h
blob6201c3790d868f11c0ddc94f05ab02a8fa089808
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __PERF_CPUTOPO_H
3 #define __PERF_CPUTOPO_H
5 #include <linux/types.h>
7 struct cpu_topology {
8 u32 core_sib;
9 u32 die_sib;
10 u32 thread_sib;
11 char **core_siblings;
12 char **die_siblings;
13 char **thread_siblings;
16 struct numa_topology_node {
17 char *cpus;
18 u32 node;
19 u64 mem_total;
20 u64 mem_free;
23 struct numa_topology {
24 u32 nr;
25 struct numa_topology_node nodes[];
28 struct cpu_topology *cpu_topology__new(void);
29 void cpu_topology__delete(struct cpu_topology *tp);
31 struct numa_topology *numa_topology__new(void);
32 void numa_topology__delete(struct numa_topology *tp);
34 #endif /* __PERF_CPUTOPO_H */