Added few more stubs so that control reaches to DestroyDevice().
[mesa.git] / src / intel / perf / gen_perf.c
1 /*
2 * Copyright © 2018 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 */
23
24 #include <dirent.h>
25
26 #include <sys/types.h>
27 #include <sys/stat.h>
28 #include <fcntl.h>
29 #include <unistd.h>
30 #include <errno.h>
31
32 #ifndef HAVE_DIRENT_D_TYPE
33 #include <limits.h> // PATH_MAX
34 #endif
35
36 #include <drm-uapi/i915_drm.h>
37
38 #include "common/gen_gem.h"
39
40 #include "dev/gen_debug.h"
41 #include "dev/gen_device_info.h"
42
43 #include "perf/gen_perf.h"
44 #include "perf/gen_perf_regs.h"
45 #include "perf/gen_perf_mdapi.h"
46 #include "perf/gen_perf_metrics.h"
47 #include "perf/gen_perf_private.h"
48
49 #include "util/bitscan.h"
50 #include "util/macros.h"
51 #include "util/mesa-sha1.h"
52 #include "util/u_math.h"
53
54 #define FILE_DEBUG_FLAG DEBUG_PERFMON
55
56 #define OA_REPORT_INVALID_CTX_ID (0xffffffff)
57
58 static bool
59 is_dir_or_link(const struct dirent *entry, const char *parent_dir)
60 {
61 #ifdef HAVE_DIRENT_D_TYPE
62 return entry->d_type == DT_DIR || entry->d_type == DT_LNK;
63 #else
64 struct stat st;
65 char path[PATH_MAX + 1];
66 snprintf(path, sizeof(path), "%s/%s", parent_dir, entry->d_name);
67 lstat(path, &st);
68 return S_ISDIR(st.st_mode) || S_ISLNK(st.st_mode);
69 #endif
70 }
71
72 static bool
73 get_sysfs_dev_dir(struct gen_perf_config *perf, int fd)
74 {
75 struct stat sb;
76 int min, maj;
77 DIR *drmdir;
78 struct dirent *drm_entry;
79 int len;
80
81 perf->sysfs_dev_dir[0] = '\0';
82
83 if (unlikely(INTEL_DEBUG & DEBUG_NO_OACONFIG))
84 return true;
85
86 if (fstat(fd, &sb)) {
87 DBG("Failed to stat DRM fd\n");
88 return false;
89 }
90
91 maj = major(sb.st_rdev);
92 min = minor(sb.st_rdev);
93
94 if (!S_ISCHR(sb.st_mode)) {
95 DBG("DRM fd is not a character device as expected\n");
96 return false;
97 }
98
99 len = snprintf(perf->sysfs_dev_dir,
100 sizeof(perf->sysfs_dev_dir),
101 "/sys/dev/char/%d:%d/device/drm", maj, min);
102 if (len < 0 || len >= sizeof(perf->sysfs_dev_dir)) {
103 DBG("Failed to concatenate sysfs path to drm device\n");
104 return false;
105 }
106
107 drmdir = opendir(perf->sysfs_dev_dir);
108 if (!drmdir) {
109 DBG("Failed to open %s: %m\n", perf->sysfs_dev_dir);
110 return false;
111 }
112
113 while ((drm_entry = readdir(drmdir))) {
114 if (is_dir_or_link(drm_entry, perf->sysfs_dev_dir) &&
115 strncmp(drm_entry->d_name, "card", 4) == 0)
116 {
117 len = snprintf(perf->sysfs_dev_dir,
118 sizeof(perf->sysfs_dev_dir),
119 "/sys/dev/char/%d:%d/device/drm/%s",
120 maj, min, drm_entry->d_name);
121 closedir(drmdir);
122 if (len < 0 || len >= sizeof(perf->sysfs_dev_dir))
123 return false;
124 else
125 return true;
126 }
127 }
128
129 closedir(drmdir);
130
131 DBG("Failed to find cardX directory under /sys/dev/char/%d:%d/device/drm\n",
132 maj, min);
133
134 return false;
135 }
136
137 static bool
138 read_file_uint64(const char *file, uint64_t *val)
139 {
140 char buf[32];
141 int fd, n;
142
143 fd = open(file, 0);
144 if (fd < 0)
145 return false;
146 while ((n = read(fd, buf, sizeof (buf) - 1)) < 0 &&
147 errno == EINTR);
148 close(fd);
149 if (n < 0)
150 return false;
151
152 buf[n] = '\0';
153 *val = strtoull(buf, NULL, 0);
154
155 return true;
156 }
157
158 static bool
159 read_sysfs_drm_device_file_uint64(struct gen_perf_config *perf,
160 const char *file,
161 uint64_t *value)
162 {
163 char buf[512];
164 int len;
165
166 len = snprintf(buf, sizeof(buf), "%s/%s", perf->sysfs_dev_dir, file);
167 if (len < 0 || len >= sizeof(buf)) {
168 DBG("Failed to concatenate sys filename to read u64 from\n");
169 return false;
170 }
171
172 return read_file_uint64(buf, value);
173 }
174
175 static void
176 register_oa_config(struct gen_perf_config *perf,
177 const struct gen_device_info *devinfo,
178 const struct gen_perf_query_info *query,
179 uint64_t config_id)
180 {
181 struct gen_perf_query_info *registered_query =
182 gen_perf_append_query_info(perf, 0);
183
184 *registered_query = *query;
185 registered_query->oa_format = devinfo->gen >= 8 ?
186 I915_OA_FORMAT_A32u40_A4u32_B8_C8 : I915_OA_FORMAT_A45_B8_C8;
187 registered_query->oa_metrics_set_id = config_id;
188 DBG("metric set registered: id = %" PRIu64", guid = %s\n",
189 registered_query->oa_metrics_set_id, query->guid);
190 }
191
192 static void
193 enumerate_sysfs_metrics(struct gen_perf_config *perf,
194 const struct gen_device_info *devinfo)
195 {
196 DIR *metricsdir = NULL;
197 struct dirent *metric_entry;
198 char buf[256];
199 int len;
200
201 len = snprintf(buf, sizeof(buf), "%s/metrics", perf->sysfs_dev_dir);
202 if (len < 0 || len >= sizeof(buf)) {
203 DBG("Failed to concatenate path to sysfs metrics/ directory\n");
204 return;
205 }
206
207 metricsdir = opendir(buf);
208 if (!metricsdir) {
209 DBG("Failed to open %s: %m\n", buf);
210 return;
211 }
212
213 while ((metric_entry = readdir(metricsdir))) {
214 struct hash_entry *entry;
215 if (!is_dir_or_link(metric_entry, buf) ||
216 metric_entry->d_name[0] == '.')
217 continue;
218
219 DBG("metric set: %s\n", metric_entry->d_name);
220 entry = _mesa_hash_table_search(perf->oa_metrics_table,
221 metric_entry->d_name);
222 if (entry) {
223 uint64_t id;
224 if (!gen_perf_load_metric_id(perf, metric_entry->d_name, &id)) {
225 DBG("Failed to read metric set id from %s: %m", buf);
226 continue;
227 }
228
229 register_oa_config(perf, devinfo,
230 (const struct gen_perf_query_info *)entry->data, id);
231 } else
232 DBG("metric set not known by mesa (skipping)\n");
233 }
234
235 closedir(metricsdir);
236 }
237
238 static void
239 add_all_metrics(struct gen_perf_config *perf,
240 const struct gen_device_info *devinfo)
241 {
242 hash_table_foreach(perf->oa_metrics_table, entry) {
243 const struct gen_perf_query_info *query = entry->data;
244 register_oa_config(perf, devinfo, query, 0);
245 }
246 }
247
248 static bool
249 kernel_has_dynamic_config_support(struct gen_perf_config *perf, int fd)
250 {
251 uint64_t invalid_config_id = UINT64_MAX;
252
253 return gen_ioctl(fd, DRM_IOCTL_I915_PERF_REMOVE_CONFIG,
254 &invalid_config_id) < 0 && errno == ENOENT;
255 }
256
257 static int
258 i915_query_items(struct gen_perf_config *perf, int fd,
259 struct drm_i915_query_item *items, uint32_t n_items)
260 {
261 struct drm_i915_query q = {
262 .num_items = n_items,
263 .items_ptr = to_user_pointer(items),
264 };
265 return gen_ioctl(fd, DRM_IOCTL_I915_QUERY, &q);
266 }
267
268 static bool
269 i915_query_perf_config_supported(struct gen_perf_config *perf, int fd)
270 {
271 struct drm_i915_query_item item = {
272 .query_id = DRM_I915_QUERY_PERF_CONFIG,
273 .flags = DRM_I915_QUERY_PERF_CONFIG_LIST,
274 };
275
276 return i915_query_items(perf, fd, &item, 1) == 0 && item.length > 0;
277 }
278
279 static bool
280 i915_query_perf_config_data(struct gen_perf_config *perf,
281 int fd, const char *guid,
282 struct drm_i915_perf_oa_config *config)
283 {
284 struct {
285 struct drm_i915_query_perf_config query;
286 struct drm_i915_perf_oa_config config;
287 } item_data;
288 struct drm_i915_query_item item = {
289 .query_id = DRM_I915_QUERY_PERF_CONFIG,
290 .flags = DRM_I915_QUERY_PERF_CONFIG_DATA_FOR_UUID,
291 .data_ptr = to_user_pointer(&item_data),
292 .length = sizeof(item_data),
293 };
294
295 memset(&item_data, 0, sizeof(item_data));
296 memcpy(item_data.query.uuid, guid, sizeof(item_data.query.uuid));
297 memcpy(&item_data.config, config, sizeof(item_data.config));
298
299 if (!(i915_query_items(perf, fd, &item, 1) == 0 && item.length > 0))
300 return false;
301
302 memcpy(config, &item_data.config, sizeof(item_data.config));
303
304 return true;
305 }
306
307 bool
308 gen_perf_load_metric_id(struct gen_perf_config *perf_cfg,
309 const char *guid,
310 uint64_t *metric_id)
311 {
312 char config_path[280];
313
314 snprintf(config_path, sizeof(config_path), "%s/metrics/%s/id",
315 perf_cfg->sysfs_dev_dir, guid);
316
317 /* Don't recreate already loaded configs. */
318 return read_file_uint64(config_path, metric_id);
319 }
320
321 static uint64_t
322 i915_add_config(struct gen_perf_config *perf, int fd,
323 const struct gen_perf_registers *config,
324 const char *guid)
325 {
326 struct drm_i915_perf_oa_config i915_config = { 0, };
327
328 memcpy(i915_config.uuid, guid, sizeof(i915_config.uuid));
329
330 i915_config.n_mux_regs = config->n_mux_regs;
331 i915_config.mux_regs_ptr = to_const_user_pointer(config->mux_regs);
332
333 i915_config.n_boolean_regs = config->n_b_counter_regs;
334 i915_config.boolean_regs_ptr = to_const_user_pointer(config->b_counter_regs);
335
336 i915_config.n_flex_regs = config->n_flex_regs;
337 i915_config.flex_regs_ptr = to_const_user_pointer(config->flex_regs);
338
339 int ret = gen_ioctl(fd, DRM_IOCTL_I915_PERF_ADD_CONFIG, &i915_config);
340 return ret > 0 ? ret : 0;
341 }
342
343 static void
344 init_oa_configs(struct gen_perf_config *perf, int fd,
345 const struct gen_device_info *devinfo)
346 {
347 hash_table_foreach(perf->oa_metrics_table, entry) {
348 const struct gen_perf_query_info *query = entry->data;
349 uint64_t config_id;
350
351 if (gen_perf_load_metric_id(perf, query->guid, &config_id)) {
352 DBG("metric set: %s (already loaded)\n", query->guid);
353 register_oa_config(perf, devinfo, query, config_id);
354 continue;
355 }
356
357 int ret = i915_add_config(perf, fd, &query->config, query->guid);
358 if (ret < 0) {
359 DBG("Failed to load \"%s\" (%s) metrics set in kernel: %s\n",
360 query->name, query->guid, strerror(errno));
361 continue;
362 }
363
364 register_oa_config(perf, devinfo, query, ret);
365 DBG("metric set: %s (added)\n", query->guid);
366 }
367 }
368
369 static void
370 compute_topology_builtins(struct gen_perf_config *perf,
371 const struct gen_device_info *devinfo)
372 {
373 perf->sys_vars.slice_mask = devinfo->slice_masks;
374 perf->sys_vars.n_eu_slices = devinfo->num_slices;
375
376 for (int i = 0; i < sizeof(devinfo->subslice_masks[i]); i++) {
377 perf->sys_vars.n_eu_sub_slices +=
378 __builtin_popcount(devinfo->subslice_masks[i]);
379 }
380
381 for (int i = 0; i < sizeof(devinfo->eu_masks); i++)
382 perf->sys_vars.n_eus += __builtin_popcount(devinfo->eu_masks[i]);
383
384 perf->sys_vars.eu_threads_count = devinfo->num_thread_per_eu;
385
386 /* The subslice mask builtin contains bits for all slices. Prior to Gen11
387 * it had groups of 3bits for each slice, on Gen11 it's 8bits for each
388 * slice.
389 *
390 * Ideally equations would be updated to have a slice/subslice query
391 * function/operator.
392 */
393 perf->sys_vars.subslice_mask = 0;
394
395 int bits_per_subslice = devinfo->gen == 11 ? 8 : 3;
396
397 for (int s = 0; s < util_last_bit(devinfo->slice_masks); s++) {
398 for (int ss = 0; ss < (devinfo->subslice_slice_stride * 8); ss++) {
399 if (gen_device_info_subslice_available(devinfo, s, ss))
400 perf->sys_vars.subslice_mask |= 1ULL << (s * bits_per_subslice + ss);
401 }
402 }
403 }
404
405 static bool
406 init_oa_sys_vars(struct gen_perf_config *perf, const struct gen_device_info *devinfo)
407 {
408 uint64_t min_freq_mhz = 0, max_freq_mhz = 0;
409
410 if (likely(!(INTEL_DEBUG & DEBUG_NO_OACONFIG))) {
411 if (!read_sysfs_drm_device_file_uint64(perf, "gt_min_freq_mhz", &min_freq_mhz))
412 return false;
413
414 if (!read_sysfs_drm_device_file_uint64(perf, "gt_max_freq_mhz", &max_freq_mhz))
415 return false;
416 } else {
417 min_freq_mhz = 300;
418 max_freq_mhz = 1000;
419 }
420
421 memset(&perf->sys_vars, 0, sizeof(perf->sys_vars));
422 perf->sys_vars.gt_min_freq = min_freq_mhz * 1000000;
423 perf->sys_vars.gt_max_freq = max_freq_mhz * 1000000;
424 perf->sys_vars.timestamp_frequency = devinfo->timestamp_frequency;
425 perf->sys_vars.revision = devinfo->revision;
426 compute_topology_builtins(perf, devinfo);
427
428 return true;
429 }
430
431 typedef void (*perf_register_oa_queries_t)(struct gen_perf_config *);
432
433 static perf_register_oa_queries_t
434 get_register_queries_function(const struct gen_device_info *devinfo)
435 {
436 if (devinfo->is_haswell)
437 return gen_oa_register_queries_hsw;
438 if (devinfo->is_cherryview)
439 return gen_oa_register_queries_chv;
440 if (devinfo->is_broadwell)
441 return gen_oa_register_queries_bdw;
442 if (devinfo->is_broxton)
443 return gen_oa_register_queries_bxt;
444 if (devinfo->is_skylake) {
445 if (devinfo->gt == 2)
446 return gen_oa_register_queries_sklgt2;
447 if (devinfo->gt == 3)
448 return gen_oa_register_queries_sklgt3;
449 if (devinfo->gt == 4)
450 return gen_oa_register_queries_sklgt4;
451 }
452 if (devinfo->is_kabylake) {
453 if (devinfo->gt == 2)
454 return gen_oa_register_queries_kblgt2;
455 if (devinfo->gt == 3)
456 return gen_oa_register_queries_kblgt3;
457 }
458 if (devinfo->is_geminilake)
459 return gen_oa_register_queries_glk;
460 if (devinfo->is_coffeelake) {
461 if (devinfo->gt == 2)
462 return gen_oa_register_queries_cflgt2;
463 if (devinfo->gt == 3)
464 return gen_oa_register_queries_cflgt3;
465 }
466 if (devinfo->is_cannonlake)
467 return gen_oa_register_queries_cnl;
468 if (devinfo->gen == 11) {
469 if (devinfo->is_elkhartlake)
470 return gen_oa_register_queries_lkf;
471 return gen_oa_register_queries_icl;
472 }
473 if (devinfo->gen == 12)
474 return gen_oa_register_queries_tgl;
475
476 return NULL;
477 }
478
479 static int
480 gen_perf_compare_counter_names(const void *v1, const void *v2)
481 {
482 const struct gen_perf_query_counter *c1 = v1;
483 const struct gen_perf_query_counter *c2 = v2;
484
485 return strcmp(c1->name, c2->name);
486 }
487
488 static void
489 sort_query(struct gen_perf_query_info *q)
490 {
491 qsort(q->counters, q->n_counters, sizeof(q->counters[0]),
492 gen_perf_compare_counter_names);
493 }
494
495 static void
496 load_pipeline_statistic_metrics(struct gen_perf_config *perf_cfg,
497 const struct gen_device_info *devinfo)
498 {
499 struct gen_perf_query_info *query =
500 gen_perf_append_query_info(perf_cfg, MAX_STAT_COUNTERS);
501
502 query->kind = GEN_PERF_QUERY_TYPE_PIPELINE;
503 query->name = "Pipeline Statistics Registers";
504
505 gen_perf_query_add_basic_stat_reg(query, IA_VERTICES_COUNT,
506 "N vertices submitted");
507 gen_perf_query_add_basic_stat_reg(query, IA_PRIMITIVES_COUNT,
508 "N primitives submitted");
509 gen_perf_query_add_basic_stat_reg(query, VS_INVOCATION_COUNT,
510 "N vertex shader invocations");
511
512 if (devinfo->gen == 6) {
513 gen_perf_query_add_stat_reg(query, GEN6_SO_PRIM_STORAGE_NEEDED, 1, 1,
514 "SO_PRIM_STORAGE_NEEDED",
515 "N geometry shader stream-out primitives (total)");
516 gen_perf_query_add_stat_reg(query, GEN6_SO_NUM_PRIMS_WRITTEN, 1, 1,
517 "SO_NUM_PRIMS_WRITTEN",
518 "N geometry shader stream-out primitives (written)");
519 } else {
520 gen_perf_query_add_stat_reg(query, GEN7_SO_PRIM_STORAGE_NEEDED(0), 1, 1,
521 "SO_PRIM_STORAGE_NEEDED (Stream 0)",
522 "N stream-out (stream 0) primitives (total)");
523 gen_perf_query_add_stat_reg(query, GEN7_SO_PRIM_STORAGE_NEEDED(1), 1, 1,
524 "SO_PRIM_STORAGE_NEEDED (Stream 1)",
525 "N stream-out (stream 1) primitives (total)");
526 gen_perf_query_add_stat_reg(query, GEN7_SO_PRIM_STORAGE_NEEDED(2), 1, 1,
527 "SO_PRIM_STORAGE_NEEDED (Stream 2)",
528 "N stream-out (stream 2) primitives (total)");
529 gen_perf_query_add_stat_reg(query, GEN7_SO_PRIM_STORAGE_NEEDED(3), 1, 1,
530 "SO_PRIM_STORAGE_NEEDED (Stream 3)",
531 "N stream-out (stream 3) primitives (total)");
532 gen_perf_query_add_stat_reg(query, GEN7_SO_NUM_PRIMS_WRITTEN(0), 1, 1,
533 "SO_NUM_PRIMS_WRITTEN (Stream 0)",
534 "N stream-out (stream 0) primitives (written)");
535 gen_perf_query_add_stat_reg(query, GEN7_SO_NUM_PRIMS_WRITTEN(1), 1, 1,
536 "SO_NUM_PRIMS_WRITTEN (Stream 1)",
537 "N stream-out (stream 1) primitives (written)");
538 gen_perf_query_add_stat_reg(query, GEN7_SO_NUM_PRIMS_WRITTEN(2), 1, 1,
539 "SO_NUM_PRIMS_WRITTEN (Stream 2)",
540 "N stream-out (stream 2) primitives (written)");
541 gen_perf_query_add_stat_reg(query, GEN7_SO_NUM_PRIMS_WRITTEN(3), 1, 1,
542 "SO_NUM_PRIMS_WRITTEN (Stream 3)",
543 "N stream-out (stream 3) primitives (written)");
544 }
545
546 gen_perf_query_add_basic_stat_reg(query, HS_INVOCATION_COUNT,
547 "N TCS shader invocations");
548 gen_perf_query_add_basic_stat_reg(query, DS_INVOCATION_COUNT,
549 "N TES shader invocations");
550
551 gen_perf_query_add_basic_stat_reg(query, GS_INVOCATION_COUNT,
552 "N geometry shader invocations");
553 gen_perf_query_add_basic_stat_reg(query, GS_PRIMITIVES_COUNT,
554 "N geometry shader primitives emitted");
555
556 gen_perf_query_add_basic_stat_reg(query, CL_INVOCATION_COUNT,
557 "N primitives entering clipping");
558 gen_perf_query_add_basic_stat_reg(query, CL_PRIMITIVES_COUNT,
559 "N primitives leaving clipping");
560
561 if (devinfo->is_haswell || devinfo->gen == 8) {
562 gen_perf_query_add_stat_reg(query, PS_INVOCATION_COUNT, 1, 4,
563 "N fragment shader invocations",
564 "N fragment shader invocations");
565 } else {
566 gen_perf_query_add_basic_stat_reg(query, PS_INVOCATION_COUNT,
567 "N fragment shader invocations");
568 }
569
570 gen_perf_query_add_basic_stat_reg(query, PS_DEPTH_COUNT,
571 "N z-pass fragments");
572
573 if (devinfo->gen >= 7) {
574 gen_perf_query_add_basic_stat_reg(query, CS_INVOCATION_COUNT,
575 "N compute shader invocations");
576 }
577
578 query->data_size = sizeof(uint64_t) * query->n_counters;
579
580 sort_query(query);
581 }
582
583 static int
584 i915_perf_version(int drm_fd)
585 {
586 int tmp;
587 drm_i915_getparam_t gp = {
588 .param = I915_PARAM_PERF_REVISION,
589 .value = &tmp,
590 };
591
592 int ret = gen_ioctl(drm_fd, DRM_IOCTL_I915_GETPARAM, &gp);
593
594 /* Return 0 if this getparam is not supported, the first version supported
595 * is 1.
596 */
597 return ret < 0 ? 0 : tmp;
598 }
599
600 static void
601 i915_get_sseu(int drm_fd, struct drm_i915_gem_context_param_sseu *sseu)
602 {
603 struct drm_i915_gem_context_param arg = {
604 .param = I915_CONTEXT_PARAM_SSEU,
605 .size = sizeof(*sseu),
606 .value = to_user_pointer(sseu)
607 };
608
609 gen_ioctl(drm_fd, DRM_IOCTL_I915_GEM_CONTEXT_GETPARAM, &arg);
610 }
611
612 static inline int
613 compare_str_or_null(const char *s1, const char *s2)
614 {
615 if (s1 == NULL && s2 == NULL)
616 return 0;
617 if (s1 == NULL)
618 return -1;
619 if (s2 == NULL)
620 return 1;
621
622 return strcmp(s1, s2);
623 }
624
625 static int
626 compare_counter_categories_and_names(const void *_c1, const void *_c2)
627 {
628 const struct gen_perf_query_counter_info *c1 = (const struct gen_perf_query_counter_info *)_c1;
629 const struct gen_perf_query_counter_info *c2 = (const struct gen_perf_query_counter_info *)_c2;
630
631 /* pipeline counters don't have an assigned category */
632 int r = compare_str_or_null(c1->counter->category, c2->counter->category);
633 if (r)
634 return r;
635
636 return strcmp(c1->counter->name, c2->counter->name);
637 }
638
639 static void
640 build_unique_counter_list(struct gen_perf_config *perf)
641 {
642 assert(perf->n_queries < 64);
643
644 size_t max_counters = 0;
645
646 for (int q = 0; q < perf->n_queries; q++)
647 max_counters += perf->queries[q].n_counters;
648
649 /*
650 * Allocate big enough array to hold maximum possible number of counters.
651 * We can't alloc it small and realloc when needed because the hash table
652 * below contains pointers to this array.
653 */
654 struct gen_perf_query_counter_info *counter_infos =
655 ralloc_array_size(perf, sizeof(counter_infos[0]), max_counters);
656
657 perf->n_counters = 0;
658
659 struct hash_table *counters_table =
660 _mesa_hash_table_create(perf,
661 _mesa_hash_string,
662 _mesa_key_string_equal);
663 struct hash_entry *entry;
664 for (int q = 0; q < perf->n_queries ; q++) {
665 struct gen_perf_query_info *query = &perf->queries[q];
666
667 for (int c = 0; c < query->n_counters; c++) {
668 struct gen_perf_query_counter *counter;
669 struct gen_perf_query_counter_info *counter_info;
670
671 counter = &query->counters[c];
672 entry = _mesa_hash_table_search(counters_table, counter->symbol_name);
673
674 if (entry) {
675 counter_info = entry->data;
676 counter_info->query_mask |= BITFIELD64_BIT(q);
677 continue;
678 }
679 assert(perf->n_counters < max_counters);
680
681 counter_info = &counter_infos[perf->n_counters++];
682 counter_info->counter = counter;
683 counter_info->query_mask = BITFIELD64_BIT(q);
684
685 counter_info->location.group_idx = q;
686 counter_info->location.counter_idx = c;
687
688 _mesa_hash_table_insert(counters_table, counter->symbol_name, counter_info);
689 }
690 }
691
692 _mesa_hash_table_destroy(counters_table, NULL);
693
694 /* Now we can realloc counter_infos array because hash table doesn't exist. */
695 perf->counter_infos = reralloc_array_size(perf, counter_infos,
696 sizeof(counter_infos[0]), perf->n_counters);
697
698 qsort(perf->counter_infos, perf->n_counters, sizeof(perf->counter_infos[0]),
699 compare_counter_categories_and_names);
700 }
701
702 static bool
703 oa_metrics_available(struct gen_perf_config *perf, int fd,
704 const struct gen_device_info *devinfo)
705 {
706 perf_register_oa_queries_t oa_register = get_register_queries_function(devinfo);
707 bool i915_perf_oa_available = false;
708 struct stat sb;
709
710 perf->i915_query_supported = i915_query_perf_config_supported(perf, fd);
711 perf->i915_perf_version = i915_perf_version(fd);
712
713 /* Record the default SSEU configuration. */
714 i915_get_sseu(fd, &perf->sseu);
715
716 /* The existence of this sysctl parameter implies the kernel supports
717 * the i915 perf interface.
718 */
719 if (stat("/proc/sys/dev/i915/perf_stream_paranoid", &sb) == 0) {
720
721 /* If _paranoid == 1 then on Gen8+ we won't be able to access OA
722 * metrics unless running as root.
723 */
724 if (devinfo->is_haswell)
725 i915_perf_oa_available = true;
726 else {
727 uint64_t paranoid = 1;
728
729 read_file_uint64("/proc/sys/dev/i915/perf_stream_paranoid", &paranoid);
730
731 if (paranoid == 0 || geteuid() == 0)
732 i915_perf_oa_available = true;
733 }
734
735 perf->platform_supported = oa_register != NULL;
736 }
737
738 return i915_perf_oa_available &&
739 oa_register &&
740 get_sysfs_dev_dir(perf, fd) &&
741 init_oa_sys_vars(perf, devinfo);
742 }
743
744 static void
745 load_oa_metrics(struct gen_perf_config *perf, int fd,
746 const struct gen_device_info *devinfo)
747 {
748 int existing_queries = perf->n_queries;
749
750 perf_register_oa_queries_t oa_register = get_register_queries_function(devinfo);
751
752 perf->oa_metrics_table =
753 _mesa_hash_table_create(perf, _mesa_hash_string,
754 _mesa_key_string_equal);
755
756 /* Index all the metric sets mesa knows about before looking to see what
757 * the kernel is advertising.
758 */
759 oa_register(perf);
760
761 if (likely(!(INTEL_DEBUG & DEBUG_NO_OACONFIG))) {
762 if (kernel_has_dynamic_config_support(perf, fd))
763 init_oa_configs(perf, fd, devinfo);
764 else
765 enumerate_sysfs_metrics(perf, devinfo);
766 } else {
767 add_all_metrics(perf, devinfo);
768 }
769
770 /* sort counters in each individual group created by this function by name */
771 for (int i = existing_queries; i < perf->n_queries; ++i)
772 sort_query(&perf->queries[i]);
773
774 /* Select a fallback OA metric. Look for the TestOa metric or use the last
775 * one if no present (on HSW).
776 */
777 for (int i = existing_queries; i < perf->n_queries; i++) {
778 if (perf->queries[i].symbol_name &&
779 strcmp(perf->queries[i].symbol_name, "TestOa") == 0) {
780 perf->fallback_raw_oa_metric = perf->queries[i].oa_metrics_set_id;
781 break;
782 }
783 }
784 if (perf->fallback_raw_oa_metric == 0)
785 perf->fallback_raw_oa_metric = perf->queries[perf->n_queries - 1].oa_metrics_set_id;
786 }
787
788 struct gen_perf_registers *
789 gen_perf_load_configuration(struct gen_perf_config *perf_cfg, int fd, const char *guid)
790 {
791 if (!perf_cfg->i915_query_supported)
792 return NULL;
793
794 struct drm_i915_perf_oa_config i915_config = { 0, };
795 if (!i915_query_perf_config_data(perf_cfg, fd, guid, &i915_config))
796 return NULL;
797
798 struct gen_perf_registers *config = rzalloc(NULL, struct gen_perf_registers);
799 config->n_flex_regs = i915_config.n_flex_regs;
800 config->flex_regs = rzalloc_array(config, struct gen_perf_query_register_prog, config->n_flex_regs);
801 config->n_mux_regs = i915_config.n_mux_regs;
802 config->mux_regs = rzalloc_array(config, struct gen_perf_query_register_prog, config->n_mux_regs);
803 config->n_b_counter_regs = i915_config.n_boolean_regs;
804 config->b_counter_regs = rzalloc_array(config, struct gen_perf_query_register_prog, config->n_b_counter_regs);
805
806 /*
807 * struct gen_perf_query_register_prog maps exactly to the tuple of
808 * (register offset, register value) returned by the i915.
809 */
810 i915_config.flex_regs_ptr = to_const_user_pointer(config->flex_regs);
811 i915_config.mux_regs_ptr = to_const_user_pointer(config->mux_regs);
812 i915_config.boolean_regs_ptr = to_const_user_pointer(config->b_counter_regs);
813 if (!i915_query_perf_config_data(perf_cfg, fd, guid, &i915_config)) {
814 ralloc_free(config);
815 return NULL;
816 }
817
818 return config;
819 }
820
821 uint64_t
822 gen_perf_store_configuration(struct gen_perf_config *perf_cfg, int fd,
823 const struct gen_perf_registers *config,
824 const char *guid)
825 {
826 if (guid)
827 return i915_add_config(perf_cfg, fd, config, guid);
828
829 struct mesa_sha1 sha1_ctx;
830 _mesa_sha1_init(&sha1_ctx);
831
832 if (config->flex_regs) {
833 _mesa_sha1_update(&sha1_ctx, config->flex_regs,
834 sizeof(config->flex_regs[0]) *
835 config->n_flex_regs);
836 }
837 if (config->mux_regs) {
838 _mesa_sha1_update(&sha1_ctx, config->mux_regs,
839 sizeof(config->mux_regs[0]) *
840 config->n_mux_regs);
841 }
842 if (config->b_counter_regs) {
843 _mesa_sha1_update(&sha1_ctx, config->b_counter_regs,
844 sizeof(config->b_counter_regs[0]) *
845 config->n_b_counter_regs);
846 }
847
848 uint8_t hash[20];
849 _mesa_sha1_final(&sha1_ctx, hash);
850
851 char formatted_hash[41];
852 _mesa_sha1_format(formatted_hash, hash);
853
854 char generated_guid[37];
855 snprintf(generated_guid, sizeof(generated_guid),
856 "%.8s-%.4s-%.4s-%.4s-%.12s",
857 &formatted_hash[0], &formatted_hash[8],
858 &formatted_hash[8 + 4], &formatted_hash[8 + 4 + 4],
859 &formatted_hash[8 + 4 + 4 + 4]);
860
861 /* Check if already present. */
862 uint64_t id;
863 if (gen_perf_load_metric_id(perf_cfg, generated_guid, &id))
864 return id;
865
866 return i915_add_config(perf_cfg, fd, config, generated_guid);
867 }
868
869 static uint64_t
870 get_passes_mask(struct gen_perf_config *perf,
871 const uint32_t *counter_indices,
872 uint32_t counter_indices_count)
873 {
874 uint64_t queries_mask = 0;
875
876 assert(perf->n_queries < 64);
877
878 /* Compute the number of passes by going through all counters N times (with
879 * N the number of queries) to make sure we select the most constraining
880 * counters first and look at the more flexible ones (that could be
881 * obtained from multiple queries) later. That way we minimize the number
882 * of passes required.
883 */
884 for (uint32_t q = 0; q < perf->n_queries; q++) {
885 for (uint32_t i = 0; i < counter_indices_count; i++) {
886 assert(counter_indices[i] < perf->n_counters);
887
888 uint32_t idx = counter_indices[i];
889 if (__builtin_popcount(perf->counter_infos[idx].query_mask) != (q + 1))
890 continue;
891
892 if (queries_mask & perf->counter_infos[idx].query_mask)
893 continue;
894
895 queries_mask |= BITFIELD64_BIT(ffsll(perf->counter_infos[idx].query_mask) - 1);
896 }
897 }
898
899 return queries_mask;
900 }
901
902 uint32_t
903 gen_perf_get_n_passes(struct gen_perf_config *perf,
904 const uint32_t *counter_indices,
905 uint32_t counter_indices_count,
906 struct gen_perf_query_info **pass_queries)
907 {
908 uint64_t queries_mask = get_passes_mask(perf, counter_indices, counter_indices_count);
909
910 if (pass_queries) {
911 uint32_t pass = 0;
912 for (uint32_t q = 0; q < perf->n_queries; q++) {
913 if ((1ULL << q) & queries_mask)
914 pass_queries[pass++] = &perf->queries[q];
915 }
916 }
917
918 return __builtin_popcount(queries_mask);
919 }
920
921 void
922 gen_perf_get_counters_passes(struct gen_perf_config *perf,
923 const uint32_t *counter_indices,
924 uint32_t counter_indices_count,
925 struct gen_perf_counter_pass *counter_pass)
926 {
927 uint64_t queries_mask = get_passes_mask(perf, counter_indices, counter_indices_count);
928 ASSERTED uint32_t n_passes = __builtin_popcount(queries_mask);
929
930 for (uint32_t i = 0; i < counter_indices_count; i++) {
931 assert(counter_indices[i] < perf->n_counters);
932
933 uint32_t idx = counter_indices[i];
934 counter_pass[i].counter = perf->counter_infos[idx].counter;
935
936 uint32_t query_idx = ffsll(perf->counter_infos[idx].query_mask & queries_mask) - 1;
937 counter_pass[i].query = &perf->queries[query_idx];
938
939 uint32_t clear_bits = 63 - query_idx;
940 counter_pass[i].pass = __builtin_popcount((queries_mask << clear_bits) >> clear_bits) - 1;
941 assert(counter_pass[i].pass < n_passes);
942 }
943 }
944
945 /* Accumulate 32bits OA counters */
946 static inline void
947 accumulate_uint32(const uint32_t *report0,
948 const uint32_t *report1,
949 uint64_t *accumulator)
950 {
951 *accumulator += (uint32_t)(*report1 - *report0);
952 }
953
954 /* Accumulate 40bits OA counters */
955 static inline void
956 accumulate_uint40(int a_index,
957 const uint32_t *report0,
958 const uint32_t *report1,
959 uint64_t *accumulator)
960 {
961 const uint8_t *high_bytes0 = (uint8_t *)(report0 + 40);
962 const uint8_t *high_bytes1 = (uint8_t *)(report1 + 40);
963 uint64_t high0 = (uint64_t)(high_bytes0[a_index]) << 32;
964 uint64_t high1 = (uint64_t)(high_bytes1[a_index]) << 32;
965 uint64_t value0 = report0[a_index + 4] | high0;
966 uint64_t value1 = report1[a_index + 4] | high1;
967 uint64_t delta;
968
969 if (value0 > value1)
970 delta = (1ULL << 40) + value1 - value0;
971 else
972 delta = value1 - value0;
973
974 *accumulator += delta;
975 }
976
977 static void
978 gen8_read_report_clock_ratios(const uint32_t *report,
979 uint64_t *slice_freq_hz,
980 uint64_t *unslice_freq_hz)
981 {
982 /* The lower 16bits of the RPT_ID field of the OA reports contains a
983 * snapshot of the bits coming from the RP_FREQ_NORMAL register and is
984 * divided this way :
985 *
986 * RPT_ID[31:25]: RP_FREQ_NORMAL[20:14] (low squashed_slice_clock_frequency)
987 * RPT_ID[10:9]: RP_FREQ_NORMAL[22:21] (high squashed_slice_clock_frequency)
988 * RPT_ID[8:0]: RP_FREQ_NORMAL[31:23] (squashed_unslice_clock_frequency)
989 *
990 * RP_FREQ_NORMAL[31:23]: Software Unslice Ratio Request
991 * Multiple of 33.33MHz 2xclk (16 MHz 1xclk)
992 *
993 * RP_FREQ_NORMAL[22:14]: Software Slice Ratio Request
994 * Multiple of 33.33MHz 2xclk (16 MHz 1xclk)
995 */
996
997 uint32_t unslice_freq = report[0] & 0x1ff;
998 uint32_t slice_freq_low = (report[0] >> 25) & 0x7f;
999 uint32_t slice_freq_high = (report[0] >> 9) & 0x3;
1000 uint32_t slice_freq = slice_freq_low | (slice_freq_high << 7);
1001
1002 *slice_freq_hz = slice_freq * 16666667ULL;
1003 *unslice_freq_hz = unslice_freq * 16666667ULL;
1004 }
1005
1006 void
1007 gen_perf_query_result_read_frequencies(struct gen_perf_query_result *result,
1008 const struct gen_device_info *devinfo,
1009 const uint32_t *start,
1010 const uint32_t *end)
1011 {
1012 /* Slice/Unslice frequency is only available in the OA reports when the
1013 * "Disable OA reports due to clock ratio change" field in
1014 * OA_DEBUG_REGISTER is set to 1. This is how the kernel programs this
1015 * global register (see drivers/gpu/drm/i915/i915_perf.c)
1016 *
1017 * Documentation says this should be available on Gen9+ but experimentation
1018 * shows that Gen8 reports similar values, so we enable it there too.
1019 */
1020 if (devinfo->gen < 8)
1021 return;
1022
1023 gen8_read_report_clock_ratios(start,
1024 &result->slice_frequency[0],
1025 &result->unslice_frequency[0]);
1026 gen8_read_report_clock_ratios(end,
1027 &result->slice_frequency[1],
1028 &result->unslice_frequency[1]);
1029 }
1030
1031 void
1032 gen_perf_query_result_accumulate(struct gen_perf_query_result *result,
1033 const struct gen_perf_query_info *query,
1034 const uint32_t *start,
1035 const uint32_t *end)
1036 {
1037 int i;
1038
1039 if (result->hw_id == OA_REPORT_INVALID_CTX_ID &&
1040 start[2] != OA_REPORT_INVALID_CTX_ID)
1041 result->hw_id = start[2];
1042 if (result->reports_accumulated == 0)
1043 result->begin_timestamp = start[1];
1044 result->reports_accumulated++;
1045
1046 switch (query->oa_format) {
1047 case I915_OA_FORMAT_A32u40_A4u32_B8_C8:
1048 accumulate_uint32(start + 1, end + 1,
1049 result->accumulator + query->gpu_time_offset); /* timestamp */
1050 accumulate_uint32(start + 3, end + 3,
1051 result->accumulator + query->gpu_clock_offset); /* clock */
1052
1053 /* 32x 40bit A counters... */
1054 for (i = 0; i < 32; i++) {
1055 accumulate_uint40(i, start, end,
1056 result->accumulator + query->a_offset + i);
1057 }
1058
1059 /* 4x 32bit A counters... */
1060 for (i = 0; i < 4; i++) {
1061 accumulate_uint32(start + 36 + i, end + 36 + i,
1062 result->accumulator + query->a_offset + 32 + i);
1063 }
1064
1065 /* 8x 32bit B counters */
1066 for (i = 0; i < 8; i++) {
1067 accumulate_uint32(start + 48 + i, end + 48 + i,
1068 result->accumulator + query->b_offset + i);
1069 }
1070
1071 /* 8x 32bit C counters... */
1072 for (i = 0; i < 8; i++) {
1073 accumulate_uint32(start + 56 + i, end + 56 + i,
1074 result->accumulator + query->c_offset + i);
1075 }
1076 break;
1077
1078 case I915_OA_FORMAT_A45_B8_C8:
1079 accumulate_uint32(start + 1, end + 1, result->accumulator); /* timestamp */
1080
1081 for (i = 0; i < 61; i++) {
1082 accumulate_uint32(start + 3 + i, end + 3 + i,
1083 result->accumulator + query->a_offset + i);
1084 }
1085 break;
1086
1087 default:
1088 unreachable("Can't accumulate OA counters in unknown format");
1089 }
1090
1091 }
1092
1093 void
1094 gen_perf_query_result_clear(struct gen_perf_query_result *result)
1095 {
1096 memset(result, 0, sizeof(*result));
1097 result->hw_id = OA_REPORT_INVALID_CTX_ID; /* invalid */
1098 }
1099
1100 static int
1101 gen_perf_compare_query_names(const void *v1, const void *v2)
1102 {
1103 const struct gen_perf_query_info *q1 = v1;
1104 const struct gen_perf_query_info *q2 = v2;
1105
1106 return strcmp(q1->name, q2->name);
1107 }
1108
1109 void
1110 gen_perf_init_metrics(struct gen_perf_config *perf_cfg,
1111 const struct gen_device_info *devinfo,
1112 int drm_fd,
1113 bool include_pipeline_statistics)
1114 {
1115 if (include_pipeline_statistics) {
1116 load_pipeline_statistic_metrics(perf_cfg, devinfo);
1117 gen_perf_register_mdapi_statistic_query(perf_cfg, devinfo);
1118 }
1119
1120 bool oa_metrics = oa_metrics_available(perf_cfg, drm_fd, devinfo);
1121 if (oa_metrics)
1122 load_oa_metrics(perf_cfg, drm_fd, devinfo);
1123
1124 /* sort query groups by name */
1125 qsort(perf_cfg->queries, perf_cfg->n_queries,
1126 sizeof(perf_cfg->queries[0]), gen_perf_compare_query_names);
1127
1128 build_unique_counter_list(perf_cfg);
1129
1130 if (oa_metrics)
1131 gen_perf_register_mdapi_oa_query(perf_cfg, devinfo);
1132 }