blob: 87d3eca9b872d81b86df3e5a38ec59aa149c458b [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Borislav Petkovcd0cfad2013-12-09 17:14:24 +01002#include <api/fs/fs.h>
Paul Mackerrasa12b51c2010-03-10 20:36:09 +11003#include "cpumap.h"
Arnaldo Carvalho de Melo5e51b0b2019-08-22 10:48:31 -03004#include "debug.h"
5#include "event.h"
Paul Mackerrasa12b51c2010-03-10 20:36:09 +11006#include <assert.h>
Arnaldo Carvalho de Melo76b31a22017-04-18 12:26:44 -03007#include <dirent.h>
Paul Mackerrasa12b51c2010-03-10 20:36:09 +11008#include <stdio.h>
Stephane Eranian86ee6e12013-02-14 13:57:27 +01009#include <stdlib.h>
Jiri Olsaf77b57a2015-10-25 15:51:25 +010010#include <linux/bitmap.h>
Jiri Olsaf30a79b2015-06-23 00:36:04 +020011#include "asm/bug.h"
Paul Mackerrasa12b51c2010-03-10 20:36:09 +110012
Arnaldo Carvalho de Melo3052ba52019-06-25 17:27:31 -030013#include <linux/ctype.h>
Arnaldo Carvalho de Melo7f7c5362019-07-04 11:32:27 -030014#include <linux/zalloc.h>
Arnaldo Carvalho de Melo3d689ed2017-04-17 16:10:49 -030015
Arnaldo Carvalho de Melo5ac76282016-01-26 15:51:46 -030016static int max_cpu_num;
Jan Stancek92a7e122017-02-17 12:10:24 +010017static int max_present_cpu_num;
Arnaldo Carvalho de Melo5ac76282016-01-26 15:51:46 -030018static int max_node_num;
19static int *cpunode_map;
20
Jiri Olsaf8548392019-07-21 13:23:49 +020021static struct perf_cpu_map *cpu_map__from_entries(struct cpu_map_entries *cpus)
Jiri Olsaf77b57a2015-10-25 15:51:25 +010022{
Jiri Olsaf8548392019-07-21 13:23:49 +020023 struct perf_cpu_map *map;
Jiri Olsaf77b57a2015-10-25 15:51:25 +010024
Jiri Olsa315c0a12019-08-22 13:11:39 +020025 map = perf_cpu_map__empty_new(cpus->nr);
Jiri Olsaf77b57a2015-10-25 15:51:25 +010026 if (map) {
27 unsigned i;
28
Jiri Olsa15d2b992016-01-06 11:49:55 +010029 for (i = 0; i < cpus->nr; i++) {
30 /*
31 * Special treatment for -1, which is not real cpu number,
32 * and we need to use (int) -1 to initialize map[i],
33 * otherwise it would become 65535.
34 */
35 if (cpus->cpu[i] == (u16) -1)
36 map->map[i] = -1;
37 else
38 map->map[i] = (int) cpus->cpu[i];
39 }
Jiri Olsaf77b57a2015-10-25 15:51:25 +010040 }
41
42 return map;
43}
44
Jiri Olsa72932372019-08-28 15:57:16 +020045static struct perf_cpu_map *cpu_map__from_mask(struct perf_record_record_cpu_map *mask)
Jiri Olsaf77b57a2015-10-25 15:51:25 +010046{
Jiri Olsaf8548392019-07-21 13:23:49 +020047 struct perf_cpu_map *map;
Jiri Olsaf77b57a2015-10-25 15:51:25 +010048 int nr, nbits = mask->nr * mask->long_size * BITS_PER_BYTE;
49
50 nr = bitmap_weight(mask->mask, nbits);
51
Jiri Olsa315c0a12019-08-22 13:11:39 +020052 map = perf_cpu_map__empty_new(nr);
Jiri Olsaf77b57a2015-10-25 15:51:25 +010053 if (map) {
54 int cpu, i = 0;
55
56 for_each_set_bit(cpu, mask->mask, nbits)
57 map->map[i++] = cpu;
58 }
59 return map;
60
61}
62
Jiri Olsa72932372019-08-28 15:57:16 +020063struct perf_cpu_map *cpu_map__new_data(struct perf_record_cpu_map_data *data)
Jiri Olsaf77b57a2015-10-25 15:51:25 +010064{
65 if (data->type == PERF_CPU_MAP__CPUS)
66 return cpu_map__from_entries((struct cpu_map_entries *)data->data);
67 else
Jiri Olsa72932372019-08-28 15:57:16 +020068 return cpu_map__from_mask((struct perf_record_record_cpu_map *)data->data);
Jiri Olsaf77b57a2015-10-25 15:51:25 +010069}
70
Jiri Olsaf8548392019-07-21 13:23:49 +020071size_t cpu_map__fprintf(struct perf_cpu_map *map, FILE *fp)
Arnaldo Carvalho de Melo9ae7d332012-01-19 14:07:23 -020072{
Jiri Olsaa24020e2016-06-28 13:29:04 +020073#define BUFSIZE 1024
74 char buf[BUFSIZE];
Arnaldo Carvalho de Melo9ae7d332012-01-19 14:07:23 -020075
Jiri Olsaa24020e2016-06-28 13:29:04 +020076 cpu_map__snprint(map, buf, sizeof(buf));
77 return fprintf(fp, "%s\n", buf);
78#undef BUFSIZE
Arnaldo Carvalho de Melo9ae7d332012-01-19 14:07:23 -020079}
80
Jiri Olsa315c0a12019-08-22 13:11:39 +020081struct perf_cpu_map *perf_cpu_map__empty_new(int nr)
Jiri Olsa2322f572015-10-25 15:51:17 +010082{
Jiri Olsaf8548392019-07-21 13:23:49 +020083 struct perf_cpu_map *cpus = malloc(sizeof(*cpus) + sizeof(int) * nr);
Jiri Olsa2322f572015-10-25 15:51:17 +010084
85 if (cpus != NULL) {
86 int i;
87
88 cpus->nr = nr;
89 for (i = 0; i < nr; i++)
90 cpus->map[i] = -1;
91
Elena Reshetovaec09a422017-02-21 17:34:56 +020092 refcount_set(&cpus->refcnt, 1);
Jiri Olsa2322f572015-10-25 15:51:17 +010093 }
94
95 return cpus;
96}
97
James Clarkcea65752020-11-26 16:13:21 +020098struct cpu_aggr_map *cpu_aggr_map__empty_new(int nr)
99{
James Clarkff523292020-11-26 16:13:23 +0200100 struct cpu_aggr_map *cpus = malloc(sizeof(*cpus) + sizeof(struct aggr_cpu_id) * nr);
James Clarkcea65752020-11-26 16:13:21 +0200101
102 if (cpus != NULL) {
103 int i;
104
105 cpus->nr = nr;
106 for (i = 0; i < nr; i++)
James Clarkff523292020-11-26 16:13:23 +0200107 cpus->map[i] = cpu_map__empty_aggr_cpu_id();
James Clarkcea65752020-11-26 16:13:21 +0200108
109 refcount_set(&cpus->refcnt, 1);
110 }
111
112 return cpus;
113}
114
Arnaldo Carvalho de Melo5d8cf722015-09-11 10:49:45 -0300115static int cpu__get_topology_int(int cpu, const char *name, int *value)
Stephane Eranian5ac59a82013-02-06 15:46:01 +0100116{
Stephane Eranian5ac59a82013-02-06 15:46:01 +0100117 char path[PATH_MAX];
Stephane Eranian5ac59a82013-02-06 15:46:01 +0100118
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100119 snprintf(path, PATH_MAX,
Arnaldo Carvalho de Melo5d8cf722015-09-11 10:49:45 -0300120 "devices/system/cpu/cpu%d/topology/%s", cpu, name);
Stephane Eranian5ac59a82013-02-06 15:46:01 +0100121
Arnaldo Carvalho de Melo5d8cf722015-09-11 10:49:45 -0300122 return sysfs__read_int(path, value);
123}
Kan Liang193b6bd2015-09-01 09:58:11 -0400124
Arnaldo Carvalho de Melo5d8cf722015-09-11 10:49:45 -0300125int cpu_map__get_socket_id(int cpu)
126{
127 int value, ret = cpu__get_topology_int(cpu, "physical_package_id", &value);
128 return ret ?: value;
Kan Liang193b6bd2015-09-01 09:58:11 -0400129}
130
James Clark2760f5a12020-11-26 16:13:20 +0200131struct aggr_cpu_id cpu_map__get_socket(struct perf_cpu_map *map, int idx,
132 void *data __maybe_unused)
Kan Liang193b6bd2015-09-01 09:58:11 -0400133{
134 int cpu;
James Clark2760f5a12020-11-26 16:13:20 +0200135 struct aggr_cpu_id id = cpu_map__empty_aggr_cpu_id();
Kan Liang193b6bd2015-09-01 09:58:11 -0400136
137 if (idx > map->nr)
James Clark2760f5a12020-11-26 16:13:20 +0200138 return id;
Kan Liang193b6bd2015-09-01 09:58:11 -0400139
140 cpu = map->map[idx];
141
James Clark1a270cb2020-11-26 16:13:25 +0200142 id.socket = cpu_map__get_socket_id(cpu);
James Clark2760f5a12020-11-26 16:13:20 +0200143 return id;
Stephane Eranian5ac59a82013-02-06 15:46:01 +0100144}
145
James Clark2760f5a12020-11-26 16:13:20 +0200146static int cmp_aggr_cpu_id(const void *a_pointer, const void *b_pointer)
Stephane Eranian5ac59a82013-02-06 15:46:01 +0100147{
James Clark2760f5a12020-11-26 16:13:20 +0200148 struct aggr_cpu_id *a = (struct aggr_cpu_id *)a_pointer;
149 struct aggr_cpu_id *b = (struct aggr_cpu_id *)b_pointer;
150
James Clark8d4852b2020-11-26 16:13:28 +0200151 if (a->node != b->node)
James Clarkfcd83a32020-11-26 16:13:24 +0200152 return a->node - b->node;
James Clarkba2ee162020-11-26 16:13:26 +0200153 else if (a->socket != b->socket)
James Clark1a270cb2020-11-26 16:13:25 +0200154 return a->socket - b->socket;
James Clarkb9933812020-11-26 16:13:27 +0200155 else if (a->die != b->die)
James Clarkba2ee162020-11-26 16:13:26 +0200156 return a->die - b->die;
James Clark8d4852b2020-11-26 16:13:28 +0200157 else if (a->core != b->core)
James Clarkb9933812020-11-26 16:13:27 +0200158 return a->core - b->core;
James Clark8d4852b2020-11-26 16:13:28 +0200159 else
160 return a->thread - b->thread;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100161}
162
James Clarkd526e1a2020-11-26 16:13:22 +0200163int cpu_map__build_map(struct perf_cpu_map *cpus, struct cpu_aggr_map **res,
James Clark2760f5a12020-11-26 16:13:20 +0200164 struct aggr_cpu_id (*f)(struct perf_cpu_map *map, int cpu, void *data),
Jiri Olsa1fe7a302015-10-16 12:41:15 +0200165 void *data)
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100166{
Stephane Eranian5ac59a82013-02-06 15:46:01 +0100167 int nr = cpus->nr;
James Clarkd526e1a2020-11-26 16:13:22 +0200168 struct cpu_aggr_map *c = cpu_aggr_map__empty_new(nr);
James Clark2760f5a12020-11-26 16:13:20 +0200169 int cpu, s2;
170 struct aggr_cpu_id s1;
Stephane Eranian5ac59a82013-02-06 15:46:01 +0100171
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100172 if (!c)
Stephane Eranian5ac59a82013-02-06 15:46:01 +0100173 return -1;
174
James Clark91585842020-11-26 16:13:18 +0200175 /* Reset size as it may only be partially filled */
176 c->nr = 0;
177
Stephane Eranian5ac59a82013-02-06 15:46:01 +0100178 for (cpu = 0; cpu < nr; cpu++) {
Jiri Olsa1fe7a302015-10-16 12:41:15 +0200179 s1 = f(cpus, cpu, data);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100180 for (s2 = 0; s2 < c->nr; s2++) {
James Clarkff523292020-11-26 16:13:23 +0200181 if (cpu_map__compare_aggr_cpu_id(s1, c->map[s2]))
Stephane Eranian5ac59a82013-02-06 15:46:01 +0100182 break;
183 }
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100184 if (s2 == c->nr) {
James Clarkff523292020-11-26 16:13:23 +0200185 c->map[c->nr] = s1;
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100186 c->nr++;
Stephane Eranian5ac59a82013-02-06 15:46:01 +0100187 }
188 }
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100189 /* ensure we process id in increasing order */
James Clark2760f5a12020-11-26 16:13:20 +0200190 qsort(c->map, c->nr, sizeof(struct aggr_cpu_id), cmp_aggr_cpu_id);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100191
192 *res = c;
Stephane Eranian5ac59a82013-02-06 15:46:01 +0100193 return 0;
194}
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100195
Kan Liangb74d8682019-06-04 15:50:40 -0700196int cpu_map__get_die_id(int cpu)
197{
198 int value, ret = cpu__get_topology_int(cpu, "die_id", &value);
199
200 return ret ?: value;
201}
202
James Clark2760f5a12020-11-26 16:13:20 +0200203struct aggr_cpu_id cpu_map__get_die(struct perf_cpu_map *map, int idx, void *data)
Kan Liangdb5742b2019-06-04 15:50:42 -0700204{
James Clark1a270cb2020-11-26 16:13:25 +0200205 int cpu, die;
James Clark2760f5a12020-11-26 16:13:20 +0200206 struct aggr_cpu_id id = cpu_map__empty_aggr_cpu_id();
Kan Liangdb5742b2019-06-04 15:50:42 -0700207
208 if (idx > map->nr)
James Clark2760f5a12020-11-26 16:13:20 +0200209 return id;
Kan Liangdb5742b2019-06-04 15:50:42 -0700210
211 cpu = map->map[idx];
212
James Clark1a270cb2020-11-26 16:13:25 +0200213 die = cpu_map__get_die_id(cpu);
Kan Liangdb5742b2019-06-04 15:50:42 -0700214 /* There is no die_id on legacy system. */
James Clark1a270cb2020-11-26 16:13:25 +0200215 if (die == -1)
216 die = 0;
Kan Liangdb5742b2019-06-04 15:50:42 -0700217
218 /*
James Clark1a270cb2020-11-26 16:13:25 +0200219 * die_id is relative to socket, so start
220 * with the socket ID and then add die to
221 * make a unique ID.
Kan Liangdb5742b2019-06-04 15:50:42 -0700222 */
James Clark1a270cb2020-11-26 16:13:25 +0200223 id = cpu_map__get_socket(map, idx, data);
224 if (cpu_map__aggr_cpu_id_is_empty(id))
225 return id;
226
James Clarkba2ee162020-11-26 16:13:26 +0200227 id.die = die;
James Clark2760f5a12020-11-26 16:13:20 +0200228 return id;
Kan Liangdb5742b2019-06-04 15:50:42 -0700229}
230
Kan Liang193b6bd2015-09-01 09:58:11 -0400231int cpu_map__get_core_id(int cpu)
Stephane Eranian12c08a92013-02-14 13:57:29 +0100232{
Arnaldo Carvalho de Melo5d8cf722015-09-11 10:49:45 -0300233 int value, ret = cpu__get_topology_int(cpu, "core_id", &value);
234 return ret ?: value;
Kan Liang193b6bd2015-09-01 09:58:11 -0400235}
236
Jiri Olsa86895b42019-08-28 10:17:43 +0200237int cpu_map__get_node_id(int cpu)
238{
239 return cpu__get_node(cpu);
240}
241
James Clark2760f5a12020-11-26 16:13:20 +0200242struct aggr_cpu_id cpu_map__get_core(struct perf_cpu_map *map, int idx, void *data)
Kan Liang193b6bd2015-09-01 09:58:11 -0400243{
James Clark2760f5a12020-11-26 16:13:20 +0200244 int cpu;
245 struct aggr_cpu_id id = cpu_map__empty_aggr_cpu_id();
Kan Liang193b6bd2015-09-01 09:58:11 -0400246
247 if (idx > map->nr)
James Clark2760f5a12020-11-26 16:13:20 +0200248 return id;
Stephane Eranian12c08a92013-02-14 13:57:29 +0100249
Kan Liang193b6bd2015-09-01 09:58:11 -0400250 cpu = map->map[idx];
251
252 cpu = cpu_map__get_core_id(cpu);
253
James Clarkba2ee162020-11-26 16:13:26 +0200254 /* cpu_map__get_die returns a struct with socket and die set*/
James Clark2760f5a12020-11-26 16:13:20 +0200255 id = cpu_map__get_die(map, idx, data);
256 if (cpu_map__aggr_cpu_id_is_empty(id))
257 return id;
Stephane Eranian12c08a92013-02-14 13:57:29 +0100258
259 /*
James Clarkba2ee162020-11-26 16:13:26 +0200260 * core_id is relative to socket and die, we need a global id.
261 * So we combine the result from cpu_map__get_die with the core id
Stephane Eranian12c08a92013-02-14 13:57:29 +0100262 */
James Clarkb9933812020-11-26 16:13:27 +0200263 id.core = cpu;
James Clark2760f5a12020-11-26 16:13:20 +0200264 return id;
Stephane Eranian12c08a92013-02-14 13:57:29 +0100265}
266
James Clark2760f5a12020-11-26 16:13:20 +0200267struct aggr_cpu_id cpu_map__get_node(struct perf_cpu_map *map, int idx, void *data __maybe_unused)
Jiri Olsa86895b42019-08-28 10:17:43 +0200268{
James Clark2760f5a12020-11-26 16:13:20 +0200269 struct aggr_cpu_id id = cpu_map__empty_aggr_cpu_id();
Jiri Olsa86895b42019-08-28 10:17:43 +0200270
James Clark2760f5a12020-11-26 16:13:20 +0200271 if (idx < 0 || idx >= map->nr)
272 return id;
273
James Clarkfcd83a32020-11-26 16:13:24 +0200274 id.node = cpu_map__get_node_id(map->map[idx]);
James Clark2760f5a12020-11-26 16:13:20 +0200275 return id;
Jiri Olsa86895b42019-08-28 10:17:43 +0200276}
277
James Clarkd526e1a2020-11-26 16:13:22 +0200278int cpu_map__build_socket_map(struct perf_cpu_map *cpus, struct cpu_aggr_map **sockp)
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100279{
Jiri Olsa1fe7a302015-10-16 12:41:15 +0200280 return cpu_map__build_map(cpus, sockp, cpu_map__get_socket, NULL);
Stephane Eranian86ee6e12013-02-14 13:57:27 +0100281}
Stephane Eranian12c08a92013-02-14 13:57:29 +0100282
James Clarkd526e1a2020-11-26 16:13:22 +0200283int cpu_map__build_die_map(struct perf_cpu_map *cpus, struct cpu_aggr_map **diep)
Kan Liangdb5742b2019-06-04 15:50:42 -0700284{
285 return cpu_map__build_map(cpus, diep, cpu_map__get_die, NULL);
286}
287
James Clarkd526e1a2020-11-26 16:13:22 +0200288int cpu_map__build_core_map(struct perf_cpu_map *cpus, struct cpu_aggr_map **corep)
Stephane Eranian12c08a92013-02-14 13:57:29 +0100289{
Jiri Olsa1fe7a302015-10-16 12:41:15 +0200290 return cpu_map__build_map(cpus, corep, cpu_map__get_core, NULL);
Stephane Eranian12c08a92013-02-14 13:57:29 +0100291}
Don Zickus7780c252014-04-07 14:55:21 -0400292
James Clarkd526e1a2020-11-26 16:13:22 +0200293int cpu_map__build_node_map(struct perf_cpu_map *cpus, struct cpu_aggr_map **numap)
Jiri Olsa86895b42019-08-28 10:17:43 +0200294{
295 return cpu_map__build_map(cpus, numap, cpu_map__get_node, NULL);
296}
297
Don Zickus7780c252014-04-07 14:55:21 -0400298/* setup simple routines to easily access node numbers given a cpu number */
299static int get_max_num(char *path, int *max)
300{
301 size_t num;
302 char *buf;
303 int err = 0;
304
305 if (filename__read_str(path, &buf, &num))
306 return -1;
307
308 buf[num] = '\0';
309
310 /* start on the right, to find highest node num */
311 while (--num) {
312 if ((buf[num] == ',') || (buf[num] == '-')) {
313 num++;
314 break;
315 }
316 }
317 if (sscanf(&buf[num], "%d", max) < 1) {
318 err = -1;
319 goto out;
320 }
321
322 /* convert from 0-based to 1-based */
323 (*max)++;
324
325out:
326 free(buf);
327 return err;
328}
329
330/* Determine highest possible cpu in the system for sparse allocation */
331static void set_max_cpu_num(void)
332{
333 const char *mnt;
334 char path[PATH_MAX];
335 int ret = -1;
336
337 /* set up default */
338 max_cpu_num = 4096;
Jan Stancek92a7e122017-02-17 12:10:24 +0100339 max_present_cpu_num = 4096;
Don Zickus7780c252014-04-07 14:55:21 -0400340
341 mnt = sysfs__mountpoint();
342 if (!mnt)
343 goto out;
344
345 /* get the highest possible cpu number for a sparse allocation */
Don Zickusf5b1f4e2014-04-07 14:55:22 -0400346 ret = snprintf(path, PATH_MAX, "%s/devices/system/cpu/possible", mnt);
Christophe JAILLETd74b1812020-03-24 08:03:19 +0100347 if (ret >= PATH_MAX) {
Don Zickus7780c252014-04-07 14:55:21 -0400348 pr_err("sysfs path crossed PATH_MAX(%d) size\n", PATH_MAX);
349 goto out;
350 }
351
352 ret = get_max_num(path, &max_cpu_num);
Jan Stancek92a7e122017-02-17 12:10:24 +0100353 if (ret)
354 goto out;
355
356 /* get the highest present cpu number for a sparse allocation */
357 ret = snprintf(path, PATH_MAX, "%s/devices/system/cpu/present", mnt);
Christophe JAILLETd74b1812020-03-24 08:03:19 +0100358 if (ret >= PATH_MAX) {
Jan Stancek92a7e122017-02-17 12:10:24 +0100359 pr_err("sysfs path crossed PATH_MAX(%d) size\n", PATH_MAX);
360 goto out;
361 }
362
363 ret = get_max_num(path, &max_present_cpu_num);
Don Zickus7780c252014-04-07 14:55:21 -0400364
365out:
366 if (ret)
367 pr_err("Failed to read max cpus, using default of %d\n", max_cpu_num);
368}
369
370/* Determine highest possible node in the system for sparse allocation */
371static void set_max_node_num(void)
372{
373 const char *mnt;
374 char path[PATH_MAX];
375 int ret = -1;
376
377 /* set up default */
378 max_node_num = 8;
379
380 mnt = sysfs__mountpoint();
381 if (!mnt)
382 goto out;
383
384 /* get the highest possible cpu number for a sparse allocation */
385 ret = snprintf(path, PATH_MAX, "%s/devices/system/node/possible", mnt);
Christophe JAILLETd74b1812020-03-24 08:03:19 +0100386 if (ret >= PATH_MAX) {
Don Zickus7780c252014-04-07 14:55:21 -0400387 pr_err("sysfs path crossed PATH_MAX(%d) size\n", PATH_MAX);
388 goto out;
389 }
390
391 ret = get_max_num(path, &max_node_num);
392
393out:
394 if (ret)
395 pr_err("Failed to read max nodes, using default of %d\n", max_node_num);
396}
397
Arnaldo Carvalho de Melo5ac76282016-01-26 15:51:46 -0300398int cpu__max_node(void)
399{
400 if (unlikely(!max_node_num))
401 set_max_node_num();
402
403 return max_node_num;
404}
405
406int cpu__max_cpu(void)
407{
408 if (unlikely(!max_cpu_num))
409 set_max_cpu_num();
410
411 return max_cpu_num;
412}
413
Jan Stancek92a7e122017-02-17 12:10:24 +0100414int cpu__max_present_cpu(void)
415{
416 if (unlikely(!max_present_cpu_num))
417 set_max_cpu_num();
418
419 return max_present_cpu_num;
420}
421
422
Arnaldo Carvalho de Melo5ac76282016-01-26 15:51:46 -0300423int cpu__get_node(int cpu)
424{
425 if (unlikely(cpunode_map == NULL)) {
426 pr_debug("cpu_map not initialized\n");
427 return -1;
428 }
429
430 return cpunode_map[cpu];
431}
432
Don Zickus7780c252014-04-07 14:55:21 -0400433static int init_cpunode_map(void)
434{
435 int i;
436
437 set_max_cpu_num();
438 set_max_node_num();
439
440 cpunode_map = calloc(max_cpu_num, sizeof(int));
441 if (!cpunode_map) {
442 pr_err("%s: calloc failed\n", __func__);
443 return -1;
444 }
445
446 for (i = 0; i < max_cpu_num; i++)
447 cpunode_map[i] = -1;
448
449 return 0;
450}
451
452int cpu__setup_cpunode_map(void)
453{
454 struct dirent *dent1, *dent2;
455 DIR *dir1, *dir2;
456 unsigned int cpu, mem;
457 char buf[PATH_MAX];
458 char path[PATH_MAX];
459 const char *mnt;
460 int n;
461
462 /* initialize globals */
463 if (init_cpunode_map())
464 return -1;
465
466 mnt = sysfs__mountpoint();
467 if (!mnt)
468 return 0;
469
470 n = snprintf(path, PATH_MAX, "%s/devices/system/node", mnt);
Christophe JAILLETd74b1812020-03-24 08:03:19 +0100471 if (n >= PATH_MAX) {
Don Zickus7780c252014-04-07 14:55:21 -0400472 pr_err("sysfs path crossed PATH_MAX(%d) size\n", PATH_MAX);
473 return -1;
474 }
475
476 dir1 = opendir(path);
477 if (!dir1)
478 return 0;
479
480 /* walk tree and setup map */
481 while ((dent1 = readdir(dir1)) != NULL) {
482 if (dent1->d_type != DT_DIR || sscanf(dent1->d_name, "node%u", &mem) < 1)
483 continue;
484
485 n = snprintf(buf, PATH_MAX, "%s/%s", path, dent1->d_name);
Christophe JAILLETd74b1812020-03-24 08:03:19 +0100486 if (n >= PATH_MAX) {
Don Zickus7780c252014-04-07 14:55:21 -0400487 pr_err("sysfs path crossed PATH_MAX(%d) size\n", PATH_MAX);
488 continue;
489 }
490
491 dir2 = opendir(buf);
492 if (!dir2)
493 continue;
494 while ((dent2 = readdir(dir2)) != NULL) {
495 if (dent2->d_type != DT_LNK || sscanf(dent2->d_name, "cpu%u", &cpu) < 1)
496 continue;
497 cpunode_map[cpu] = mem;
498 }
499 closedir(dir2);
500 }
501 closedir(dir1);
502 return 0;
503}
Jiri Olsae632aa62016-04-12 15:29:25 +0200504
Jiri Olsaf8548392019-07-21 13:23:49 +0200505bool cpu_map__has(struct perf_cpu_map *cpus, int cpu)
Jiri Olsae632aa62016-04-12 15:29:25 +0200506{
Jiri Olsab4df75d2019-08-22 13:11:40 +0200507 return perf_cpu_map__idx(cpus, cpu) != -1;
Mark Rutland9a6c5822016-07-15 11:08:11 +0100508}
509
Jiri Olsaf8548392019-07-21 13:23:49 +0200510int cpu_map__cpu(struct perf_cpu_map *cpus, int idx)
Mark Rutland9a6c5822016-07-15 11:08:11 +0100511{
512 return cpus->map[idx];
Jiri Olsae632aa62016-04-12 15:29:25 +0200513}
Jiri Olsaa24020e2016-06-28 13:29:04 +0200514
Jiri Olsaf8548392019-07-21 13:23:49 +0200515size_t cpu_map__snprint(struct perf_cpu_map *map, char *buf, size_t size)
Jiri Olsaa24020e2016-06-28 13:29:04 +0200516{
517 int i, cpu, start = -1;
518 bool first = true;
519 size_t ret = 0;
520
521#define COMMA first ? "" : ","
522
523 for (i = 0; i < map->nr + 1; i++) {
524 bool last = i == map->nr;
525
526 cpu = last ? INT_MAX : map->map[i];
527
528 if (start == -1) {
529 start = i;
530 if (last) {
531 ret += snprintf(buf + ret, size - ret,
532 "%s%d", COMMA,
533 map->map[i]);
534 }
535 } else if (((i - start) != (cpu - map->map[start])) || last) {
536 int end = i - 1;
537
538 if (start == end) {
539 ret += snprintf(buf + ret, size - ret,
540 "%s%d", COMMA,
541 map->map[start]);
542 } else {
543 ret += snprintf(buf + ret, size - ret,
544 "%s%d-%d", COMMA,
545 map->map[start], map->map[end]);
546 }
547 first = false;
548 start = i;
549 }
550 }
551
552#undef COMMA
553
Jiri Olsadeb83da2019-02-20 13:27:59 +0100554 pr_debug2("cpumask list: %s\n", buf);
Jiri Olsaa24020e2016-06-28 13:29:04 +0200555 return ret;
556}
Namhyung Kim4400ac82017-02-24 10:12:49 +0900557
558static char hex_char(unsigned char val)
559{
560 if (val < 10)
561 return val + '0';
562 if (val < 16)
563 return val - 10 + 'a';
564 return '?';
565}
566
Jiri Olsaf8548392019-07-21 13:23:49 +0200567size_t cpu_map__snprint_mask(struct perf_cpu_map *map, char *buf, size_t size)
Namhyung Kim4400ac82017-02-24 10:12:49 +0900568{
569 int i, cpu;
570 char *ptr = buf;
571 unsigned char *bitmap;
572 int last_cpu = cpu_map__cpu(map, map->nr - 1);
573
He Zhe5f5e25f12019-08-02 16:29:52 +0800574 if (buf == NULL)
575 return 0;
576
577 bitmap = zalloc(last_cpu / 8 + 1);
Namhyung Kim4400ac82017-02-24 10:12:49 +0900578 if (bitmap == NULL) {
579 buf[0] = '\0';
580 return 0;
581 }
582
583 for (i = 0; i < map->nr; i++) {
584 cpu = cpu_map__cpu(map, i);
585 bitmap[cpu / 8] |= 1 << (cpu % 8);
586 }
587
588 for (cpu = last_cpu / 4 * 4; cpu >= 0; cpu -= 4) {
589 unsigned char bits = bitmap[cpu / 8];
590
591 if (cpu % 8)
592 bits >>= 4;
593 else
594 bits &= 0xf;
595
596 *ptr++ = hex_char(bits);
597 if ((cpu % 32) == 0 && cpu > 0)
598 *ptr++ = ',';
599 }
600 *ptr = '\0';
601 free(bitmap);
602
603 buf[size - 1] = '\0';
604 return ptr - buf;
605}
Alexey Budankovf13de662019-01-22 20:50:57 +0300606
Jiri Olsaf8548392019-07-21 13:23:49 +0200607const struct perf_cpu_map *cpu_map__online(void) /* thread unsafe */
Alexey Budankovf13de662019-01-22 20:50:57 +0300608{
Jiri Olsaf8548392019-07-21 13:23:49 +0200609 static const struct perf_cpu_map *online = NULL;
Alexey Budankovf13de662019-01-22 20:50:57 +0300610
611 if (!online)
Jiri Olsa9c3516d2019-07-21 13:24:30 +0200612 online = perf_cpu_map__new(NULL); /* from /sys/devices/system/cpu/online */
Alexey Budankovf13de662019-01-22 20:50:57 +0300613
614 return online;
615}
James Clarkfa265e52020-11-26 16:13:19 +0200616
617bool cpu_map__compare_aggr_cpu_id(struct aggr_cpu_id a, struct aggr_cpu_id b)
618{
James Clark8d4852b2020-11-26 16:13:28 +0200619 return a.thread == b.thread &&
James Clark1a270cb2020-11-26 16:13:25 +0200620 a.node == b.node &&
James Clarkba2ee162020-11-26 16:13:26 +0200621 a.socket == b.socket &&
James Clarkb9933812020-11-26 16:13:27 +0200622 a.die == b.die &&
623 a.core == b.core;
James Clarkfa265e52020-11-26 16:13:19 +0200624}
625
626bool cpu_map__aggr_cpu_id_is_empty(struct aggr_cpu_id a)
627{
James Clark8d4852b2020-11-26 16:13:28 +0200628 return a.thread == -1 &&
James Clark1a270cb2020-11-26 16:13:25 +0200629 a.node == -1 &&
James Clarkba2ee162020-11-26 16:13:26 +0200630 a.socket == -1 &&
James Clarkb9933812020-11-26 16:13:27 +0200631 a.die == -1 &&
632 a.core == -1;
James Clarkfa265e52020-11-26 16:13:19 +0200633}
634
635struct aggr_cpu_id cpu_map__empty_aggr_cpu_id(void)
636{
637 struct aggr_cpu_id ret = {
James Clark8d4852b2020-11-26 16:13:28 +0200638 .thread = -1,
James Clark1a270cb2020-11-26 16:13:25 +0200639 .node = -1,
James Clarkba2ee162020-11-26 16:13:26 +0200640 .socket = -1,
James Clarkb9933812020-11-26 16:13:27 +0200641 .die = -1,
642 .core = -1
James Clarkfa265e52020-11-26 16:13:19 +0200643 };
644 return ret;
645}