1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362
|
// SPDX-License-Identifier: MIT
/*
* Copyright © 2025 Intel Corporation
*/
#include "xe_gputop.h"
#define engine_ptr(pmu_device, n) (&(pmu_device)->engine + (n))
static void __update_sample(struct xe_pmu_counter *counter, uint64_t val)
{
counter->val.prev = counter->val.cur;
counter->val.cur = val;
}
static void update_sample(struct xe_pmu_counter *counter, uint64_t *val)
{
if (counter->present)
__update_sample(counter, val[counter->idx]);
}
static const char *class_display_name(unsigned int class)
{
switch (class) {
case DRM_XE_ENGINE_CLASS_RENDER:
return "Render/3D";
case DRM_XE_ENGINE_CLASS_COPY:
return "Blitter";
case DRM_XE_ENGINE_CLASS_VIDEO_DECODE:
return "Video";
case DRM_XE_ENGINE_CLASS_VIDEO_ENHANCE:
return "VideoEnhance";
case DRM_XE_ENGINE_CLASS_COMPUTE:
return "Compute";
default:
return "[unknown]";
}
}
void xe_clean_up(void *obj, int len)
{
struct xe_gputop *gputop_dev = (struct xe_gputop *)obj;
struct xe_pmu_counter pmu_counter;
struct xe_engine *eng;
for (int i = 0; i < len; i++) {
if (gputop_dev[i].card)
free(gputop_dev[i].card);
if (gputop_dev[i].pmu_device_obj) {
for (int j = 0;
j < gputop_dev[i].pmu_device_obj->num_engines;
j++) {
eng = engine_ptr(gputop_dev[i].pmu_device_obj,
j);
if (eng->display_name)
free(eng->display_name);
pmu_counter = eng->engine_active_ticks;
if (pmu_counter.present)
close(pmu_counter.fd);
pmu_counter = eng->engine_total_ticks;
if (pmu_counter.present)
close(pmu_counter.fd);
}
if (gputop_dev[i].pmu_device_obj->device)
free(gputop_dev[i].pmu_device_obj->device);
free(gputop_dev->pmu_device_obj);
}
}
}
static int _open_pmu(uint64_t type, unsigned int *cnt, struct xe_pmu_counter *pmu, int *fd)
{
int fd__ = igt_perf_open_group(type, pmu->config, *fd);
if (fd__ >= 0) {
if (*fd == -1)
*fd = fd__;
pmu->present = true;
pmu->idx = (*cnt)++;
pmu->fd = fd__;
}
return fd__;
}
void xe_gputop_init(void *ptr, int index,
struct igt_device_card *card)
{
struct xe_gputop *obj;
obj = ((struct xe_gputop *)ptr) + index;
obj->card = card;
}
static int pmu_format_shift(int xe, const char *name)
{
uint32_t start;
int format;
char device[80];
format = perf_event_format(xe_perf_device(xe, device, sizeof(device)),
name, &start);
if (format)
return 0;
return start;
}
static int engine_cmp(const void *__a, const void *__b)
{
const struct xe_engine *a = (struct xe_engine *)__a;
const struct xe_engine *b = (struct xe_engine *)__b;
if (a->drm_xe_engine.gt_id != b->drm_xe_engine.gt_id)
return a->drm_xe_engine.gt_id - b->drm_xe_engine.gt_id;
else if (a->drm_xe_engine.engine_class != b->drm_xe_engine.engine_class)
return a->drm_xe_engine.engine_class - b->drm_xe_engine.engine_class;
else
return a->drm_xe_engine.engine_instance - b->drm_xe_engine.engine_instance;
}
void *xe_populate_engines(const void *obj, int index)
{
struct xe_gputop *ptr = ((struct xe_gputop *)obj) + index;
struct igt_device_card *card = ptr->card;
uint64_t engine_active_config, engine_total_config;
uint64_t engine_class, engine_instance, gt_shift;
struct drm_xe_engine_class_instance *hwe;
struct xe_pmu_device *engines;
char device[30];
int ret = 0;
int card_fd;
if (!card || !strlen(card->card) || !strlen(card->render))
return NULL;
if (strlen(card->card)) {
card_fd = igt_open_card(card);
} else if (strlen(card->render)) {
card_fd = igt_open_render(card);
} else {
fprintf(stderr, "Failed to detect device!\n");
return NULL;
}
xe_device_get(card_fd);
engines = malloc(sizeof(struct xe_pmu_device) +
xe_number_engines(card_fd) * sizeof(struct xe_engine));
if (!engines)
return NULL;
memset(engines, 0, sizeof(struct xe_pmu_device) +
xe_number_engines(card_fd) * sizeof(struct xe_engine));
engines->num_engines = 0;
gt_shift = pmu_format_shift(card_fd, "gt");
engine_class = pmu_format_shift(card_fd, "engine_class");
engine_instance = pmu_format_shift(card_fd, "engine_instance");
xe_perf_device(card_fd, device, sizeof(device));
engines->device = strdup(device);
ret = perf_event_config(device, "engine-active-ticks", &engine_active_config);
if (ret < 0)
return NULL;
ret = perf_event_config(device, "engine-total-ticks", &engine_total_config);
if (ret < 0)
return NULL;
xe_for_each_engine(card_fd, hwe) {
uint64_t param_config;
struct xe_engine *engine;
engine = engine_ptr(engines, engines->num_engines);
param_config = (uint64_t)hwe->gt_id << gt_shift | hwe->engine_class << engine_class
| hwe->engine_instance << engine_instance;
engine->drm_xe_engine = *hwe;
engine->engine_active_ticks.config = engine_active_config | param_config;
engine->engine_total_ticks.config = engine_total_config | param_config;
if (engine->engine_active_ticks.config == -1 ||
engine->engine_total_ticks.config == -1) {
ret = ENOENT;
break;
}
ret = asprintf(&engine->display_name, "GT:%u %s/%u",
hwe->gt_id,
class_display_name(engine->drm_xe_engine.engine_class),
engine->drm_xe_engine.engine_instance);
if (ret <= 0) {
ret = errno;
break;
}
engines->num_engines++;
}
if (!ret) {
errno = ret;
return NULL;
}
qsort(engine_ptr(engines, 0), engines->num_engines,
sizeof(struct xe_engine), engine_cmp);
ptr->pmu_device_obj = engines;
return engines;
}
static uint64_t pmu_read_multi(int fd, unsigned int num, uint64_t *val)
{
uint64_t buf[2 + num];
unsigned int i;
ssize_t len;
memset(buf, 0, sizeof(buf));
len = read(fd, buf, sizeof(buf));
assert(len == sizeof(buf));
for (i = 0; i < num; i++)
val[i] = buf[2 + i];
return buf[1];
}
void xe_pmu_sample(const void *obj, int index)
{
struct xe_gputop *ptr = ((struct xe_gputop *)obj) + index;
struct xe_pmu_device *engines = ptr->pmu_device_obj;
const int num_val = engines->num_counters;
uint64_t val[2 + num_val];
unsigned int i;
pmu_read_multi(engines->fd, num_val, val);
for (i = 0; i < engines->num_engines; i++) {
struct xe_engine *engine = engine_ptr(engines, i);
update_sample(&engine->engine_active_ticks, val);
update_sample(&engine->engine_total_ticks, val);
}
}
int xe_pmu_init(const void *obj, int index)
{
struct xe_gputop *ptr = ((struct xe_gputop *)obj) + index;
struct xe_pmu_device *engines = ptr->pmu_device_obj;
struct xe_engine *engine;
unsigned int i;
uint64_t type;
int fd;
type = igt_perf_type_id(engines->device);
engines->fd = -1;
engines->num_counters = 0;
for (i = 0; i < engines->num_engines; i++) {
engine = engine_ptr(engines, i);
fd = _open_pmu(type, &engines->num_counters, &engine->engine_active_ticks,
&engines->fd);
if (fd < 0)
return -1;
fd = _open_pmu(type, &engines->num_counters, &engine->engine_total_ticks,
&engines->fd);
if (fd < 0)
return -1;
}
return 0;
}
static double pmu_active_percentage(struct xe_engine *engine)
{
double pmu_active_ticks = engine->engine_active_ticks.val.cur -
engine->engine_active_ticks.val.prev;
double pmu_total_ticks = engine->engine_total_ticks.val.cur -
engine->engine_total_ticks.val.prev;
double percentage;
percentage = (pmu_active_ticks * 100) / pmu_total_ticks;
return clamp(percentage, 0., 100.);
}
static int
print_device_description(const void *obj, int lines, int w, int h)
{
char *desc;
int len;
len = asprintf(&desc, "DRIVER: %s || BDF: %s",
((struct xe_gputop *)obj)->card->driver,
((struct xe_gputop *)obj)->card->pci_slot_name);
printf("\033[7m%s%*s\033[0m\n",
desc,
(int)(w - len), " ");
lines++;
free(desc);
return lines;
}
static int
print_engines_header(struct xe_pmu_device *engines,
int lines, int con_w, int con_h)
{
const char *a;
for (unsigned int i = 0;
i < engines->num_engines && lines < con_h;
i++) {
struct xe_engine *engine = engine_ptr(engines, i);
if (!engine->num_counters)
continue;
a = " ENGINES ACTIVITY ";
printf("\033[7m%s%*s\033[0m\n",
a,
(int)(con_w - strlen(a)), " ");
lines++;
break;
}
return lines;
}
static int
print_engine(struct xe_pmu_device *engines, unsigned int i,
int lines, int con_w, int con_h)
{
struct xe_engine *engine = engine_ptr(engines, i);
double percentage = pmu_active_percentage(engine);
printf("%*s", (int)(strlen(" ENGINES")), engine->display_name);
print_percentage_bar(percentage, con_w - strlen(" ENGINES"));
printf("\n");
return ++lines;
}
int xe_print_engines(const void *obj, int index, int lines, int w, int h)
{
struct xe_gputop *ptr = ((struct xe_gputop *)obj) + index;
struct xe_pmu_device *show = ptr->pmu_device_obj;
lines = print_device_description(ptr, lines, w, h);
lines = print_engines_header(show, lines, w, h);
for (unsigned int i = 0; i < show->num_engines && lines < h; i++)
lines = print_engine(show, i, lines, w, h);
lines = print_engines_footer(lines, w, h);
return lines;
}
|