intel/perf: add TGL support
[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 #include <drm-uapi/i915_drm.h>
33
34 #include "common/gen_gem.h"
35 #include "gen_perf.h"
36 #include "gen_perf_regs.h"
37 #include "perf/gen_perf_mdapi.h"
38 #include "perf/gen_perf_metrics.h"
39
40 #include "dev/gen_debug.h"
41 #include "dev/gen_device_info.h"
42 #include "util/bitscan.h"
43 #include "util/mesa-sha1.h"
44 #include "util/u_math.h"
45
46 #define FILE_DEBUG_FLAG DEBUG_PERFMON
47 #define MI_RPC_BO_SIZE 4096
48 #define MI_FREQ_START_OFFSET_BYTES (3072)
49 #define MI_RPC_BO_END_OFFSET_BYTES (MI_RPC_BO_SIZE / 2)
50 #define MI_FREQ_END_OFFSET_BYTES (3076)
51
52 #define INTEL_MASK(high, low) (((1u<<((high)-(low)+1))-1)<<(low))
53
54 #define GEN7_RPSTAT1 0xA01C
55 #define GEN7_RPSTAT1_CURR_GT_FREQ_SHIFT 7
56 #define GEN7_RPSTAT1_CURR_GT_FREQ_MASK INTEL_MASK(13, 7)
57 #define GEN7_RPSTAT1_PREV_GT_FREQ_SHIFT 0
58 #define GEN7_RPSTAT1_PREV_GT_FREQ_MASK INTEL_MASK(6, 0)
59
60 #define GEN9_RPSTAT0 0xA01C
61 #define GEN9_RPSTAT0_CURR_GT_FREQ_SHIFT 23
62 #define GEN9_RPSTAT0_CURR_GT_FREQ_MASK INTEL_MASK(31, 23)
63 #define GEN9_RPSTAT0_PREV_GT_FREQ_SHIFT 0
64 #define GEN9_RPSTAT0_PREV_GT_FREQ_MASK INTEL_MASK(8, 0)
65
66 #define GEN6_SO_PRIM_STORAGE_NEEDED 0x2280
67 #define GEN7_SO_PRIM_STORAGE_NEEDED(n) (0x5240 + (n) * 8)
68 #define GEN6_SO_NUM_PRIMS_WRITTEN 0x2288
69 #define GEN7_SO_NUM_PRIMS_WRITTEN(n) (0x5200 + (n) * 8)
70
71 #define MAP_READ (1 << 0)
72 #define MAP_WRITE (1 << 1)
73
74 /**
75 * Periodic OA samples are read() into these buffer structures via the
76 * i915 perf kernel interface and appended to the
77 * perf_ctx->sample_buffers linked list. When we process the
78 * results of an OA metrics query we need to consider all the periodic
79 * samples between the Begin and End MI_REPORT_PERF_COUNT command
80 * markers.
81 *
82 * 'Periodic' is a simplification as there are other automatic reports
83 * written by the hardware also buffered here.
84 *
85 * Considering three queries, A, B and C:
86 *
87 * Time ---->
88 * ________________A_________________
89 * | |
90 * | ________B_________ _____C___________
91 * | | | | | |
92 *
93 * And an illustration of sample buffers read over this time frame:
94 * [HEAD ][ ][ ][ ][ ][ ][ ][ ][TAIL ]
95 *
96 * These nodes may hold samples for query A:
97 * [ ][ ][ A ][ A ][ A ][ A ][ A ][ ][ ]
98 *
99 * These nodes may hold samples for query B:
100 * [ ][ ][ B ][ B ][ B ][ ][ ][ ][ ]
101 *
102 * These nodes may hold samples for query C:
103 * [ ][ ][ ][ ][ ][ C ][ C ][ C ][ ]
104 *
105 * The illustration assumes we have an even distribution of periodic
106 * samples so all nodes have the same size plotted against time:
107 *
108 * Note, to simplify code, the list is never empty.
109 *
110 * With overlapping queries we can see that periodic OA reports may
111 * relate to multiple queries and care needs to be take to keep
112 * track of sample buffers until there are no queries that might
113 * depend on their contents.
114 *
115 * We use a node ref counting system where a reference ensures that a
116 * node and all following nodes can't be freed/recycled until the
117 * reference drops to zero.
118 *
119 * E.g. with a ref of one here:
120 * [ 0 ][ 0 ][ 1 ][ 0 ][ 0 ][ 0 ][ 0 ][ 0 ][ 0 ]
121 *
122 * These nodes could be freed or recycled ("reaped"):
123 * [ 0 ][ 0 ]
124 *
125 * These must be preserved until the leading ref drops to zero:
126 * [ 1 ][ 0 ][ 0 ][ 0 ][ 0 ][ 0 ][ 0 ]
127 *
128 * When a query starts we take a reference on the current tail of
129 * the list, knowing that no already-buffered samples can possibly
130 * relate to the newly-started query. A pointer to this node is
131 * also saved in the query object's ->oa.samples_head.
132 *
133 * E.g. starting query A while there are two nodes in .sample_buffers:
134 * ________________A________
135 * |
136 *
137 * [ 0 ][ 1 ]
138 * ^_______ Add a reference and store pointer to node in
139 * A->oa.samples_head
140 *
141 * Moving forward to when the B query starts with no new buffer nodes:
142 * (for reference, i915 perf reads() are only done when queries finish)
143 * ________________A_______
144 * | ________B___
145 * | |
146 *
147 * [ 0 ][ 2 ]
148 * ^_______ Add a reference and store pointer to
149 * node in B->oa.samples_head
150 *
151 * Once a query is finished, after an OA query has become 'Ready',
152 * once the End OA report has landed and after we we have processed
153 * all the intermediate periodic samples then we drop the
154 * ->oa.samples_head reference we took at the start.
155 *
156 * So when the B query has finished we have:
157 * ________________A________
158 * | ______B___________
159 * | | |
160 * [ 0 ][ 1 ][ 0 ][ 0 ][ 0 ]
161 * ^_______ Drop B->oa.samples_head reference
162 *
163 * We still can't free these due to the A->oa.samples_head ref:
164 * [ 1 ][ 0 ][ 0 ][ 0 ]
165 *
166 * When the A query finishes: (note there's a new ref for C's samples_head)
167 * ________________A_________________
168 * | |
169 * | _____C_________
170 * | | |
171 * [ 0 ][ 0 ][ 0 ][ 0 ][ 1 ][ 0 ][ 0 ]
172 * ^_______ Drop A->oa.samples_head reference
173 *
174 * And we can now reap these nodes up to the C->oa.samples_head:
175 * [ X ][ X ][ X ][ X ]
176 * keeping -> [ 1 ][ 0 ][ 0 ]
177 *
178 * We reap old sample buffers each time we finish processing an OA
179 * query by iterating the sample_buffers list from the head until we
180 * find a referenced node and stop.
181 *
182 * Reaped buffers move to a perfquery.free_sample_buffers list and
183 * when we come to read() we first look to recycle a buffer from the
184 * free_sample_buffers list before allocating a new buffer.
185 */
186 struct oa_sample_buf {
187 struct exec_node link;
188 int refcount;
189 int len;
190 uint8_t buf[I915_PERF_OA_SAMPLE_SIZE * 10];
191 uint32_t last_timestamp;
192 };
193
194 /**
195 * gen representation of a performance query object.
196 *
197 * NB: We want to keep this structure relatively lean considering that
198 * applications may expect to allocate enough objects to be able to
199 * query around all draw calls in a frame.
200 */
201 struct gen_perf_query_object
202 {
203 const struct gen_perf_query_info *queryinfo;
204
205 /* See query->kind to know which state below is in use... */
206 union {
207 struct {
208
209 /**
210 * BO containing OA counter snapshots at query Begin/End time.
211 */
212 void *bo;
213
214 /**
215 * Address of mapped of @bo
216 */
217 void *map;
218
219 /**
220 * The MI_REPORT_PERF_COUNT command lets us specify a unique
221 * ID that will be reflected in the resulting OA report
222 * that's written by the GPU. This is the ID we're expecting
223 * in the begin report and the the end report should be
224 * @begin_report_id + 1.
225 */
226 int begin_report_id;
227
228 /**
229 * Reference the head of the brw->perfquery.sample_buffers
230 * list at the time that the query started (so we only need
231 * to look at nodes after this point when looking for samples
232 * related to this query)
233 *
234 * (See struct brw_oa_sample_buf description for more details)
235 */
236 struct exec_node *samples_head;
237
238 /**
239 * false while in the unaccumulated_elements list, and set to
240 * true when the final, end MI_RPC snapshot has been
241 * accumulated.
242 */
243 bool results_accumulated;
244
245 /**
246 * Frequency of the GT at begin and end of the query.
247 */
248 uint64_t gt_frequency[2];
249
250 /**
251 * Accumulated OA results between begin and end of the query.
252 */
253 struct gen_perf_query_result result;
254 } oa;
255
256 struct {
257 /**
258 * BO containing starting and ending snapshots for the
259 * statistics counters.
260 */
261 void *bo;
262 } pipeline_stats;
263 };
264 };
265
266 struct gen_perf_context {
267 struct gen_perf_config *perf;
268
269 void * ctx; /* driver context (eg, brw_context) */
270 void * bufmgr;
271 const struct gen_device_info *devinfo;
272
273 uint32_t hw_ctx;
274 int drm_fd;
275
276 /* The i915 perf stream we open to setup + enable the OA counters */
277 int oa_stream_fd;
278
279 /* An i915 perf stream fd gives exclusive access to the OA unit that will
280 * report counter snapshots for a specific counter set/profile in a
281 * specific layout/format so we can only start OA queries that are
282 * compatible with the currently open fd...
283 */
284 int current_oa_metrics_set_id;
285 int current_oa_format;
286
287 /* List of buffers containing OA reports */
288 struct exec_list sample_buffers;
289
290 /* Cached list of empty sample buffers */
291 struct exec_list free_sample_buffers;
292
293 int n_active_oa_queries;
294 int n_active_pipeline_stats_queries;
295
296 /* The number of queries depending on running OA counters which
297 * extends beyond brw_end_perf_query() since we need to wait until
298 * the last MI_RPC command has parsed by the GPU.
299 *
300 * Accurate accounting is important here as emitting an
301 * MI_REPORT_PERF_COUNT command while the OA unit is disabled will
302 * effectively hang the gpu.
303 */
304 int n_oa_users;
305
306 /* To help catch an spurious problem with the hardware or perf
307 * forwarding samples, we emit each MI_REPORT_PERF_COUNT command
308 * with a unique ID that we can explicitly check for...
309 */
310 int next_query_start_report_id;
311
312 /**
313 * An array of queries whose results haven't yet been assembled
314 * based on the data in buffer objects.
315 *
316 * These may be active, or have already ended. However, the
317 * results have not been requested.
318 */
319 struct gen_perf_query_object **unaccumulated;
320 int unaccumulated_elements;
321 int unaccumulated_array_size;
322
323 /* The total number of query objects so we can relinquish
324 * our exclusive access to perf if the application deletes
325 * all of its objects. (NB: We only disable perf while
326 * there are no active queries)
327 */
328 int n_query_instances;
329 };
330
331 const struct gen_perf_query_info*
332 gen_perf_query_info(const struct gen_perf_query_object *query)
333 {
334 return query->queryinfo;
335 }
336
337 struct gen_perf_context *
338 gen_perf_new_context(void *parent)
339 {
340 struct gen_perf_context *ctx = rzalloc(parent, struct gen_perf_context);
341 if (! ctx)
342 fprintf(stderr, "%s: failed to alloc context\n", __func__);
343 return ctx;
344 }
345
346 struct gen_perf_config *
347 gen_perf_config(struct gen_perf_context *ctx)
348 {
349 return ctx->perf;
350 }
351
352 struct gen_perf_query_object *
353 gen_perf_new_query(struct gen_perf_context *perf_ctx, unsigned query_index)
354 {
355 const struct gen_perf_query_info *query =
356 &perf_ctx->perf->queries[query_index];
357 struct gen_perf_query_object *obj =
358 calloc(1, sizeof(struct gen_perf_query_object));
359
360 if (!obj)
361 return NULL;
362
363 obj->queryinfo = query;
364
365 perf_ctx->n_query_instances++;
366 return obj;
367 }
368
369 int
370 gen_perf_active_queries(struct gen_perf_context *perf_ctx,
371 const struct gen_perf_query_info *query)
372 {
373 assert(perf_ctx->n_active_oa_queries == 0 || perf_ctx->n_active_pipeline_stats_queries == 0);
374
375 switch (query->kind) {
376 case GEN_PERF_QUERY_TYPE_OA:
377 case GEN_PERF_QUERY_TYPE_RAW:
378 return perf_ctx->n_active_oa_queries;
379 break;
380
381 case GEN_PERF_QUERY_TYPE_PIPELINE:
382 return perf_ctx->n_active_pipeline_stats_queries;
383 break;
384
385 default:
386 unreachable("Unknown query type");
387 break;
388 }
389 }
390
391 static inline uint64_t to_user_pointer(void *ptr)
392 {
393 return (uintptr_t) ptr;
394 }
395
396 static bool
397 get_sysfs_dev_dir(struct gen_perf_config *perf, int fd)
398 {
399 struct stat sb;
400 int min, maj;
401 DIR *drmdir;
402 struct dirent *drm_entry;
403 int len;
404
405 perf->sysfs_dev_dir[0] = '\0';
406
407 if (fstat(fd, &sb)) {
408 DBG("Failed to stat DRM fd\n");
409 return false;
410 }
411
412 maj = major(sb.st_rdev);
413 min = minor(sb.st_rdev);
414
415 if (!S_ISCHR(sb.st_mode)) {
416 DBG("DRM fd is not a character device as expected\n");
417 return false;
418 }
419
420 len = snprintf(perf->sysfs_dev_dir,
421 sizeof(perf->sysfs_dev_dir),
422 "/sys/dev/char/%d:%d/device/drm", maj, min);
423 if (len < 0 || len >= sizeof(perf->sysfs_dev_dir)) {
424 DBG("Failed to concatenate sysfs path to drm device\n");
425 return false;
426 }
427
428 drmdir = opendir(perf->sysfs_dev_dir);
429 if (!drmdir) {
430 DBG("Failed to open %s: %m\n", perf->sysfs_dev_dir);
431 return false;
432 }
433
434 while ((drm_entry = readdir(drmdir))) {
435 if ((drm_entry->d_type == DT_DIR ||
436 drm_entry->d_type == DT_LNK) &&
437 strncmp(drm_entry->d_name, "card", 4) == 0)
438 {
439 len = snprintf(perf->sysfs_dev_dir,
440 sizeof(perf->sysfs_dev_dir),
441 "/sys/dev/char/%d:%d/device/drm/%s",
442 maj, min, drm_entry->d_name);
443 closedir(drmdir);
444 if (len < 0 || len >= sizeof(perf->sysfs_dev_dir))
445 return false;
446 else
447 return true;
448 }
449 }
450
451 closedir(drmdir);
452
453 DBG("Failed to find cardX directory under /sys/dev/char/%d:%d/device/drm\n",
454 maj, min);
455
456 return false;
457 }
458
459 static bool
460 read_file_uint64(const char *file, uint64_t *val)
461 {
462 char buf[32];
463 int fd, n;
464
465 fd = open(file, 0);
466 if (fd < 0)
467 return false;
468 while ((n = read(fd, buf, sizeof (buf) - 1)) < 0 &&
469 errno == EINTR);
470 close(fd);
471 if (n < 0)
472 return false;
473
474 buf[n] = '\0';
475 *val = strtoull(buf, NULL, 0);
476
477 return true;
478 }
479
480 static bool
481 read_sysfs_drm_device_file_uint64(struct gen_perf_config *perf,
482 const char *file,
483 uint64_t *value)
484 {
485 char buf[512];
486 int len;
487
488 len = snprintf(buf, sizeof(buf), "%s/%s", perf->sysfs_dev_dir, file);
489 if (len < 0 || len >= sizeof(buf)) {
490 DBG("Failed to concatenate sys filename to read u64 from\n");
491 return false;
492 }
493
494 return read_file_uint64(buf, value);
495 }
496
497 static inline struct gen_perf_query_info *
498 append_query_info(struct gen_perf_config *perf, int max_counters)
499 {
500 struct gen_perf_query_info *query;
501
502 perf->queries = reralloc(perf, perf->queries,
503 struct gen_perf_query_info,
504 ++perf->n_queries);
505 query = &perf->queries[perf->n_queries - 1];
506 memset(query, 0, sizeof(*query));
507
508 if (max_counters > 0) {
509 query->max_counters = max_counters;
510 query->counters =
511 rzalloc_array(perf, struct gen_perf_query_counter, max_counters);
512 }
513
514 return query;
515 }
516
517 static void
518 register_oa_config(struct gen_perf_config *perf,
519 const struct gen_perf_query_info *query,
520 uint64_t config_id)
521 {
522 struct gen_perf_query_info *registered_query = append_query_info(perf, 0);
523
524 *registered_query = *query;
525 registered_query->oa_metrics_set_id = config_id;
526 DBG("metric set registered: id = %" PRIu64", guid = %s\n",
527 registered_query->oa_metrics_set_id, query->guid);
528 }
529
530 static void
531 enumerate_sysfs_metrics(struct gen_perf_config *perf)
532 {
533 DIR *metricsdir = NULL;
534 struct dirent *metric_entry;
535 char buf[256];
536 int len;
537
538 len = snprintf(buf, sizeof(buf), "%s/metrics", perf->sysfs_dev_dir);
539 if (len < 0 || len >= sizeof(buf)) {
540 DBG("Failed to concatenate path to sysfs metrics/ directory\n");
541 return;
542 }
543
544 metricsdir = opendir(buf);
545 if (!metricsdir) {
546 DBG("Failed to open %s: %m\n", buf);
547 return;
548 }
549
550 while ((metric_entry = readdir(metricsdir))) {
551 struct hash_entry *entry;
552
553 if ((metric_entry->d_type != DT_DIR &&
554 metric_entry->d_type != DT_LNK) ||
555 metric_entry->d_name[0] == '.')
556 continue;
557
558 DBG("metric set: %s\n", metric_entry->d_name);
559 entry = _mesa_hash_table_search(perf->oa_metrics_table,
560 metric_entry->d_name);
561 if (entry) {
562 uint64_t id;
563 if (!gen_perf_load_metric_id(perf, metric_entry->d_name, &id)) {
564 DBG("Failed to read metric set id from %s: %m", buf);
565 continue;
566 }
567
568 register_oa_config(perf, (const struct gen_perf_query_info *)entry->data, id);
569 } else
570 DBG("metric set not known by mesa (skipping)\n");
571 }
572
573 closedir(metricsdir);
574 }
575
576 static bool
577 kernel_has_dynamic_config_support(struct gen_perf_config *perf, int fd)
578 {
579 uint64_t invalid_config_id = UINT64_MAX;
580
581 return gen_ioctl(fd, DRM_IOCTL_I915_PERF_REMOVE_CONFIG,
582 &invalid_config_id) < 0 && errno == ENOENT;
583 }
584
585 static int
586 i915_query_items(struct gen_perf_config *perf, int fd,
587 struct drm_i915_query_item *items, uint32_t n_items)
588 {
589 struct drm_i915_query q = {
590 .num_items = n_items,
591 .items_ptr = to_user_pointer(items),
592 };
593 return gen_ioctl(fd, DRM_IOCTL_I915_QUERY, &q);
594 }
595
596 static bool
597 i915_query_perf_config_supported(struct gen_perf_config *perf, int fd)
598 {
599 struct drm_i915_query_item item = {
600 .query_id = DRM_I915_QUERY_PERF_CONFIG,
601 .flags = DRM_I915_QUERY_PERF_CONFIG_LIST,
602 };
603
604 return i915_query_items(perf, fd, &item, 1) == 0 && item.length > 0;
605 }
606
607 static bool
608 i915_query_perf_config_data(struct gen_perf_config *perf,
609 int fd, const char *guid,
610 struct drm_i915_perf_oa_config *config)
611 {
612 struct {
613 struct drm_i915_query_perf_config query;
614 struct drm_i915_perf_oa_config config;
615 } item_data;
616 struct drm_i915_query_item item = {
617 .query_id = DRM_I915_QUERY_PERF_CONFIG,
618 .flags = DRM_I915_QUERY_PERF_CONFIG_DATA_FOR_UUID,
619 .data_ptr = to_user_pointer(&item_data),
620 .length = sizeof(item_data),
621 };
622
623 memset(&item_data, 0, sizeof(item_data));
624 memcpy(item_data.query.uuid, guid, sizeof(item_data.query.uuid));
625 memcpy(&item_data.config, config, sizeof(item_data.config));
626
627 if (!(i915_query_items(perf, fd, &item, 1) == 0 && item.length > 0))
628 return false;
629
630 memcpy(config, &item_data.config, sizeof(item_data.config));
631
632 return true;
633 }
634
635 bool
636 gen_perf_load_metric_id(struct gen_perf_config *perf_cfg,
637 const char *guid,
638 uint64_t *metric_id)
639 {
640 char config_path[280];
641
642 snprintf(config_path, sizeof(config_path), "%s/metrics/%s/id",
643 perf_cfg->sysfs_dev_dir, guid);
644
645 /* Don't recreate already loaded configs. */
646 return read_file_uint64(config_path, metric_id);
647 }
648
649 static uint64_t
650 i915_add_config(struct gen_perf_config *perf, int fd,
651 const struct gen_perf_registers *config,
652 const char *guid)
653 {
654 struct drm_i915_perf_oa_config i915_config = { 0, };
655
656 memcpy(i915_config.uuid, guid, sizeof(i915_config.uuid));
657
658 i915_config.n_mux_regs = config->n_mux_regs;
659 i915_config.mux_regs_ptr = to_user_pointer(config->mux_regs);
660
661 i915_config.n_boolean_regs = config->n_b_counter_regs;
662 i915_config.boolean_regs_ptr = to_user_pointer(config->b_counter_regs);
663
664 i915_config.n_flex_regs = config->n_flex_regs;
665 i915_config.flex_regs_ptr = to_user_pointer(config->flex_regs);
666
667 int ret = gen_ioctl(fd, DRM_IOCTL_I915_PERF_ADD_CONFIG, &i915_config);
668 return ret > 0 ? ret : 0;
669 }
670
671 static void
672 init_oa_configs(struct gen_perf_config *perf, int fd)
673 {
674 hash_table_foreach(perf->oa_metrics_table, entry) {
675 const struct gen_perf_query_info *query = entry->data;
676 uint64_t config_id;
677
678 if (gen_perf_load_metric_id(perf, query->guid, &config_id)) {
679 DBG("metric set: %s (already loaded)\n", query->guid);
680 register_oa_config(perf, query, config_id);
681 continue;
682 }
683
684 int ret = i915_add_config(perf, fd, &query->config, query->guid);
685 if (ret < 0) {
686 DBG("Failed to load \"%s\" (%s) metrics set in kernel: %s\n",
687 query->name, query->guid, strerror(errno));
688 continue;
689 }
690
691 register_oa_config(perf, query, ret);
692 DBG("metric set: %s (added)\n", query->guid);
693 }
694 }
695
696 static void
697 compute_topology_builtins(struct gen_perf_config *perf,
698 const struct gen_device_info *devinfo)
699 {
700 perf->sys_vars.slice_mask = devinfo->slice_masks;
701 perf->sys_vars.n_eu_slices = devinfo->num_slices;
702
703 for (int i = 0; i < sizeof(devinfo->subslice_masks[i]); i++) {
704 perf->sys_vars.n_eu_sub_slices +=
705 __builtin_popcount(devinfo->subslice_masks[i]);
706 }
707
708 for (int i = 0; i < sizeof(devinfo->eu_masks); i++)
709 perf->sys_vars.n_eus += __builtin_popcount(devinfo->eu_masks[i]);
710
711 perf->sys_vars.eu_threads_count = devinfo->num_thread_per_eu;
712
713 /* The subslice mask builtin contains bits for all slices. Prior to Gen11
714 * it had groups of 3bits for each slice, on Gen11 it's 8bits for each
715 * slice.
716 *
717 * Ideally equations would be updated to have a slice/subslice query
718 * function/operator.
719 */
720 perf->sys_vars.subslice_mask = 0;
721
722 int bits_per_subslice = devinfo->gen == 11 ? 8 : 3;
723
724 for (int s = 0; s < util_last_bit(devinfo->slice_masks); s++) {
725 for (int ss = 0; ss < (devinfo->subslice_slice_stride * 8); ss++) {
726 if (gen_device_info_subslice_available(devinfo, s, ss))
727 perf->sys_vars.subslice_mask |= 1ULL << (s * bits_per_subslice + ss);
728 }
729 }
730 }
731
732 static bool
733 init_oa_sys_vars(struct gen_perf_config *perf, const struct gen_device_info *devinfo)
734 {
735 uint64_t min_freq_mhz = 0, max_freq_mhz = 0;
736
737 if (!read_sysfs_drm_device_file_uint64(perf, "gt_min_freq_mhz", &min_freq_mhz))
738 return false;
739
740 if (!read_sysfs_drm_device_file_uint64(perf, "gt_max_freq_mhz", &max_freq_mhz))
741 return false;
742
743 memset(&perf->sys_vars, 0, sizeof(perf->sys_vars));
744 perf->sys_vars.gt_min_freq = min_freq_mhz * 1000000;
745 perf->sys_vars.gt_max_freq = max_freq_mhz * 1000000;
746 perf->sys_vars.timestamp_frequency = devinfo->timestamp_frequency;
747 perf->sys_vars.revision = devinfo->revision;
748 compute_topology_builtins(perf, devinfo);
749
750 return true;
751 }
752
753 typedef void (*perf_register_oa_queries_t)(struct gen_perf_config *);
754
755 static perf_register_oa_queries_t
756 get_register_queries_function(const struct gen_device_info *devinfo)
757 {
758 if (devinfo->is_haswell)
759 return gen_oa_register_queries_hsw;
760 if (devinfo->is_cherryview)
761 return gen_oa_register_queries_chv;
762 if (devinfo->is_broadwell)
763 return gen_oa_register_queries_bdw;
764 if (devinfo->is_broxton)
765 return gen_oa_register_queries_bxt;
766 if (devinfo->is_skylake) {
767 if (devinfo->gt == 2)
768 return gen_oa_register_queries_sklgt2;
769 if (devinfo->gt == 3)
770 return gen_oa_register_queries_sklgt3;
771 if (devinfo->gt == 4)
772 return gen_oa_register_queries_sklgt4;
773 }
774 if (devinfo->is_kabylake) {
775 if (devinfo->gt == 2)
776 return gen_oa_register_queries_kblgt2;
777 if (devinfo->gt == 3)
778 return gen_oa_register_queries_kblgt3;
779 }
780 if (devinfo->is_geminilake)
781 return gen_oa_register_queries_glk;
782 if (devinfo->is_coffeelake) {
783 if (devinfo->gt == 2)
784 return gen_oa_register_queries_cflgt2;
785 if (devinfo->gt == 3)
786 return gen_oa_register_queries_cflgt3;
787 }
788 if (devinfo->is_cannonlake)
789 return gen_oa_register_queries_cnl;
790 if (devinfo->gen == 11)
791 return gen_oa_register_queries_icl;
792 if (devinfo->gen == 12)
793 return gen_oa_register_queries_tgl;
794
795 return NULL;
796 }
797
798 static inline void
799 add_stat_reg(struct gen_perf_query_info *query, uint32_t reg,
800 uint32_t numerator, uint32_t denominator,
801 const char *name, const char *description)
802 {
803 struct gen_perf_query_counter *counter;
804
805 assert(query->n_counters < query->max_counters);
806
807 counter = &query->counters[query->n_counters];
808 counter->name = name;
809 counter->desc = description;
810 counter->type = GEN_PERF_COUNTER_TYPE_RAW;
811 counter->data_type = GEN_PERF_COUNTER_DATA_TYPE_UINT64;
812 counter->offset = sizeof(uint64_t) * query->n_counters;
813 counter->pipeline_stat.reg = reg;
814 counter->pipeline_stat.numerator = numerator;
815 counter->pipeline_stat.denominator = denominator;
816
817 query->n_counters++;
818 }
819
820 static inline void
821 add_basic_stat_reg(struct gen_perf_query_info *query,
822 uint32_t reg, const char *name)
823 {
824 add_stat_reg(query, reg, 1, 1, name, name);
825 }
826
827 static void
828 load_pipeline_statistic_metrics(struct gen_perf_config *perf_cfg,
829 const struct gen_device_info *devinfo)
830 {
831 struct gen_perf_query_info *query =
832 append_query_info(perf_cfg, MAX_STAT_COUNTERS);
833
834 query->kind = GEN_PERF_QUERY_TYPE_PIPELINE;
835 query->name = "Pipeline Statistics Registers";
836
837 add_basic_stat_reg(query, IA_VERTICES_COUNT,
838 "N vertices submitted");
839 add_basic_stat_reg(query, IA_PRIMITIVES_COUNT,
840 "N primitives submitted");
841 add_basic_stat_reg(query, VS_INVOCATION_COUNT,
842 "N vertex shader invocations");
843
844 if (devinfo->gen == 6) {
845 add_stat_reg(query, GEN6_SO_PRIM_STORAGE_NEEDED, 1, 1,
846 "SO_PRIM_STORAGE_NEEDED",
847 "N geometry shader stream-out primitives (total)");
848 add_stat_reg(query, GEN6_SO_NUM_PRIMS_WRITTEN, 1, 1,
849 "SO_NUM_PRIMS_WRITTEN",
850 "N geometry shader stream-out primitives (written)");
851 } else {
852 add_stat_reg(query, GEN7_SO_PRIM_STORAGE_NEEDED(0), 1, 1,
853 "SO_PRIM_STORAGE_NEEDED (Stream 0)",
854 "N stream-out (stream 0) primitives (total)");
855 add_stat_reg(query, GEN7_SO_PRIM_STORAGE_NEEDED(1), 1, 1,
856 "SO_PRIM_STORAGE_NEEDED (Stream 1)",
857 "N stream-out (stream 1) primitives (total)");
858 add_stat_reg(query, GEN7_SO_PRIM_STORAGE_NEEDED(2), 1, 1,
859 "SO_PRIM_STORAGE_NEEDED (Stream 2)",
860 "N stream-out (stream 2) primitives (total)");
861 add_stat_reg(query, GEN7_SO_PRIM_STORAGE_NEEDED(3), 1, 1,
862 "SO_PRIM_STORAGE_NEEDED (Stream 3)",
863 "N stream-out (stream 3) primitives (total)");
864 add_stat_reg(query, GEN7_SO_NUM_PRIMS_WRITTEN(0), 1, 1,
865 "SO_NUM_PRIMS_WRITTEN (Stream 0)",
866 "N stream-out (stream 0) primitives (written)");
867 add_stat_reg(query, GEN7_SO_NUM_PRIMS_WRITTEN(1), 1, 1,
868 "SO_NUM_PRIMS_WRITTEN (Stream 1)",
869 "N stream-out (stream 1) primitives (written)");
870 add_stat_reg(query, GEN7_SO_NUM_PRIMS_WRITTEN(2), 1, 1,
871 "SO_NUM_PRIMS_WRITTEN (Stream 2)",
872 "N stream-out (stream 2) primitives (written)");
873 add_stat_reg(query, GEN7_SO_NUM_PRIMS_WRITTEN(3), 1, 1,
874 "SO_NUM_PRIMS_WRITTEN (Stream 3)",
875 "N stream-out (stream 3) primitives (written)");
876 }
877
878 add_basic_stat_reg(query, HS_INVOCATION_COUNT,
879 "N TCS shader invocations");
880 add_basic_stat_reg(query, DS_INVOCATION_COUNT,
881 "N TES shader invocations");
882
883 add_basic_stat_reg(query, GS_INVOCATION_COUNT,
884 "N geometry shader invocations");
885 add_basic_stat_reg(query, GS_PRIMITIVES_COUNT,
886 "N geometry shader primitives emitted");
887
888 add_basic_stat_reg(query, CL_INVOCATION_COUNT,
889 "N primitives entering clipping");
890 add_basic_stat_reg(query, CL_PRIMITIVES_COUNT,
891 "N primitives leaving clipping");
892
893 if (devinfo->is_haswell || devinfo->gen == 8) {
894 add_stat_reg(query, PS_INVOCATION_COUNT, 1, 4,
895 "N fragment shader invocations",
896 "N fragment shader invocations");
897 } else {
898 add_basic_stat_reg(query, PS_INVOCATION_COUNT,
899 "N fragment shader invocations");
900 }
901
902 add_basic_stat_reg(query, PS_DEPTH_COUNT,
903 "N z-pass fragments");
904
905 if (devinfo->gen >= 7) {
906 add_basic_stat_reg(query, CS_INVOCATION_COUNT,
907 "N compute shader invocations");
908 }
909
910 query->data_size = sizeof(uint64_t) * query->n_counters;
911 }
912
913 static bool
914 load_oa_metrics(struct gen_perf_config *perf, int fd,
915 const struct gen_device_info *devinfo)
916 {
917 perf_register_oa_queries_t oa_register = get_register_queries_function(devinfo);
918 bool i915_perf_oa_available = false;
919 struct stat sb;
920
921 perf->i915_query_supported = i915_query_perf_config_supported(perf, fd);
922
923 /* The existence of this sysctl parameter implies the kernel supports
924 * the i915 perf interface.
925 */
926 if (stat("/proc/sys/dev/i915/perf_stream_paranoid", &sb) == 0) {
927
928 /* If _paranoid == 1 then on Gen8+ we won't be able to access OA
929 * metrics unless running as root.
930 */
931 if (devinfo->is_haswell)
932 i915_perf_oa_available = true;
933 else {
934 uint64_t paranoid = 1;
935
936 read_file_uint64("/proc/sys/dev/i915/perf_stream_paranoid", &paranoid);
937
938 if (paranoid == 0 || geteuid() == 0)
939 i915_perf_oa_available = true;
940 }
941 }
942
943 if (!i915_perf_oa_available ||
944 !oa_register ||
945 !get_sysfs_dev_dir(perf, fd) ||
946 !init_oa_sys_vars(perf, devinfo))
947 return false;
948
949 perf->oa_metrics_table =
950 _mesa_hash_table_create(perf, _mesa_key_hash_string,
951 _mesa_key_string_equal);
952
953 /* Index all the metric sets mesa knows about before looking to see what
954 * the kernel is advertising.
955 */
956 oa_register(perf);
957
958 if (likely((INTEL_DEBUG & DEBUG_NO_OACONFIG) == 0) &&
959 kernel_has_dynamic_config_support(perf, fd))
960 init_oa_configs(perf, fd);
961 else
962 enumerate_sysfs_metrics(perf);
963
964 return true;
965 }
966
967 struct gen_perf_registers *
968 gen_perf_load_configuration(struct gen_perf_config *perf_cfg, int fd, const char *guid)
969 {
970 if (!perf_cfg->i915_query_supported)
971 return NULL;
972
973 struct drm_i915_perf_oa_config i915_config = { 0, };
974 if (!i915_query_perf_config_data(perf_cfg, fd, guid, &i915_config))
975 return NULL;
976
977 struct gen_perf_registers *config = rzalloc(NULL, struct gen_perf_registers);
978 config->n_flex_regs = i915_config.n_flex_regs;
979 config->flex_regs = rzalloc_array(config, struct gen_perf_query_register_prog, config->n_flex_regs);
980 config->n_mux_regs = i915_config.n_mux_regs;
981 config->mux_regs = rzalloc_array(config, struct gen_perf_query_register_prog, config->n_mux_regs);
982 config->n_b_counter_regs = i915_config.n_boolean_regs;
983 config->b_counter_regs = rzalloc_array(config, struct gen_perf_query_register_prog, config->n_b_counter_regs);
984
985 /*
986 * struct gen_perf_query_register_prog maps exactly to the tuple of
987 * (register offset, register value) returned by the i915.
988 */
989 i915_config.flex_regs_ptr = to_user_pointer(config->flex_regs);
990 i915_config.mux_regs_ptr = to_user_pointer(config->mux_regs);
991 i915_config.boolean_regs_ptr = to_user_pointer(config->b_counter_regs);
992 if (!i915_query_perf_config_data(perf_cfg, fd, guid, &i915_config)) {
993 ralloc_free(config);
994 return NULL;
995 }
996
997 return config;
998 }
999
1000 uint64_t
1001 gen_perf_store_configuration(struct gen_perf_config *perf_cfg, int fd,
1002 const struct gen_perf_registers *config,
1003 const char *guid)
1004 {
1005 if (guid)
1006 return i915_add_config(perf_cfg, fd, config, guid);
1007
1008 struct mesa_sha1 sha1_ctx;
1009 _mesa_sha1_init(&sha1_ctx);
1010
1011 if (config->flex_regs) {
1012 _mesa_sha1_update(&sha1_ctx, config->flex_regs,
1013 sizeof(config->flex_regs[0]) *
1014 config->n_flex_regs);
1015 }
1016 if (config->mux_regs) {
1017 _mesa_sha1_update(&sha1_ctx, config->mux_regs,
1018 sizeof(config->mux_regs[0]) *
1019 config->n_mux_regs);
1020 }
1021 if (config->b_counter_regs) {
1022 _mesa_sha1_update(&sha1_ctx, config->b_counter_regs,
1023 sizeof(config->b_counter_regs[0]) *
1024 config->n_b_counter_regs);
1025 }
1026
1027 uint8_t hash[20];
1028 _mesa_sha1_final(&sha1_ctx, hash);
1029
1030 char formatted_hash[41];
1031 _mesa_sha1_format(formatted_hash, hash);
1032
1033 char generated_guid[37];
1034 snprintf(generated_guid, sizeof(generated_guid),
1035 "%.8s-%.4s-%.4s-%.4s-%.12s",
1036 &formatted_hash[0], &formatted_hash[8],
1037 &formatted_hash[8 + 4], &formatted_hash[8 + 4 + 4],
1038 &formatted_hash[8 + 4 + 4 + 4]);
1039
1040 /* Check if already present. */
1041 uint64_t id;
1042 if (gen_perf_load_metric_id(perf_cfg, generated_guid, &id))
1043 return id;
1044
1045 return i915_add_config(perf_cfg, fd, config, generated_guid);
1046 }
1047
1048 /* Accumulate 32bits OA counters */
1049 static inline void
1050 accumulate_uint32(const uint32_t *report0,
1051 const uint32_t *report1,
1052 uint64_t *accumulator)
1053 {
1054 *accumulator += (uint32_t)(*report1 - *report0);
1055 }
1056
1057 /* Accumulate 40bits OA counters */
1058 static inline void
1059 accumulate_uint40(int a_index,
1060 const uint32_t *report0,
1061 const uint32_t *report1,
1062 uint64_t *accumulator)
1063 {
1064 const uint8_t *high_bytes0 = (uint8_t *)(report0 + 40);
1065 const uint8_t *high_bytes1 = (uint8_t *)(report1 + 40);
1066 uint64_t high0 = (uint64_t)(high_bytes0[a_index]) << 32;
1067 uint64_t high1 = (uint64_t)(high_bytes1[a_index]) << 32;
1068 uint64_t value0 = report0[a_index + 4] | high0;
1069 uint64_t value1 = report1[a_index + 4] | high1;
1070 uint64_t delta;
1071
1072 if (value0 > value1)
1073 delta = (1ULL << 40) + value1 - value0;
1074 else
1075 delta = value1 - value0;
1076
1077 *accumulator += delta;
1078 }
1079
1080 static void
1081 gen8_read_report_clock_ratios(const uint32_t *report,
1082 uint64_t *slice_freq_hz,
1083 uint64_t *unslice_freq_hz)
1084 {
1085 /* The lower 16bits of the RPT_ID field of the OA reports contains a
1086 * snapshot of the bits coming from the RP_FREQ_NORMAL register and is
1087 * divided this way :
1088 *
1089 * RPT_ID[31:25]: RP_FREQ_NORMAL[20:14] (low squashed_slice_clock_frequency)
1090 * RPT_ID[10:9]: RP_FREQ_NORMAL[22:21] (high squashed_slice_clock_frequency)
1091 * RPT_ID[8:0]: RP_FREQ_NORMAL[31:23] (squashed_unslice_clock_frequency)
1092 *
1093 * RP_FREQ_NORMAL[31:23]: Software Unslice Ratio Request
1094 * Multiple of 33.33MHz 2xclk (16 MHz 1xclk)
1095 *
1096 * RP_FREQ_NORMAL[22:14]: Software Slice Ratio Request
1097 * Multiple of 33.33MHz 2xclk (16 MHz 1xclk)
1098 */
1099
1100 uint32_t unslice_freq = report[0] & 0x1ff;
1101 uint32_t slice_freq_low = (report[0] >> 25) & 0x7f;
1102 uint32_t slice_freq_high = (report[0] >> 9) & 0x3;
1103 uint32_t slice_freq = slice_freq_low | (slice_freq_high << 7);
1104
1105 *slice_freq_hz = slice_freq * 16666667ULL;
1106 *unslice_freq_hz = unslice_freq * 16666667ULL;
1107 }
1108
1109 void
1110 gen_perf_query_result_read_frequencies(struct gen_perf_query_result *result,
1111 const struct gen_device_info *devinfo,
1112 const uint32_t *start,
1113 const uint32_t *end)
1114 {
1115 /* Slice/Unslice frequency is only available in the OA reports when the
1116 * "Disable OA reports due to clock ratio change" field in
1117 * OA_DEBUG_REGISTER is set to 1. This is how the kernel programs this
1118 * global register (see drivers/gpu/drm/i915/i915_perf.c)
1119 *
1120 * Documentation says this should be available on Gen9+ but experimentation
1121 * shows that Gen8 reports similar values, so we enable it there too.
1122 */
1123 if (devinfo->gen < 8)
1124 return;
1125
1126 gen8_read_report_clock_ratios(start,
1127 &result->slice_frequency[0],
1128 &result->unslice_frequency[0]);
1129 gen8_read_report_clock_ratios(end,
1130 &result->slice_frequency[1],
1131 &result->unslice_frequency[1]);
1132 }
1133
1134 void
1135 gen_perf_query_result_accumulate(struct gen_perf_query_result *result,
1136 const struct gen_perf_query_info *query,
1137 const uint32_t *start,
1138 const uint32_t *end)
1139 {
1140 int i, idx = 0;
1141
1142 result->hw_id = start[2];
1143 result->reports_accumulated++;
1144
1145 switch (query->oa_format) {
1146 case I915_OA_FORMAT_A32u40_A4u32_B8_C8:
1147 accumulate_uint32(start + 1, end + 1, result->accumulator + idx++); /* timestamp */
1148 accumulate_uint32(start + 3, end + 3, result->accumulator + idx++); /* clock */
1149
1150 /* 32x 40bit A counters... */
1151 for (i = 0; i < 32; i++)
1152 accumulate_uint40(i, start, end, result->accumulator + idx++);
1153
1154 /* 4x 32bit A counters... */
1155 for (i = 0; i < 4; i++)
1156 accumulate_uint32(start + 36 + i, end + 36 + i, result->accumulator + idx++);
1157
1158 /* 8x 32bit B counters + 8x 32bit C counters... */
1159 for (i = 0; i < 16; i++)
1160 accumulate_uint32(start + 48 + i, end + 48 + i, result->accumulator + idx++);
1161 break;
1162
1163 case I915_OA_FORMAT_A45_B8_C8:
1164 accumulate_uint32(start + 1, end + 1, result->accumulator); /* timestamp */
1165
1166 for (i = 0; i < 61; i++)
1167 accumulate_uint32(start + 3 + i, end + 3 + i, result->accumulator + 1 + i);
1168 break;
1169
1170 default:
1171 unreachable("Can't accumulate OA counters in unknown format");
1172 }
1173
1174 }
1175
1176 void
1177 gen_perf_query_result_clear(struct gen_perf_query_result *result)
1178 {
1179 memset(result, 0, sizeof(*result));
1180 result->hw_id = 0xffffffff; /* invalid */
1181 }
1182
1183 static void
1184 register_mdapi_statistic_query(struct gen_perf_config *perf_cfg,
1185 const struct gen_device_info *devinfo)
1186 {
1187 if (!(devinfo->gen >= 7 && devinfo->gen <= 11))
1188 return;
1189
1190 struct gen_perf_query_info *query =
1191 append_query_info(perf_cfg, MAX_STAT_COUNTERS);
1192
1193 query->kind = GEN_PERF_QUERY_TYPE_PIPELINE;
1194 query->name = "Intel_Raw_Pipeline_Statistics_Query";
1195
1196 /* The order has to match mdapi_pipeline_metrics. */
1197 add_basic_stat_reg(query, IA_VERTICES_COUNT,
1198 "N vertices submitted");
1199 add_basic_stat_reg(query, IA_PRIMITIVES_COUNT,
1200 "N primitives submitted");
1201 add_basic_stat_reg(query, VS_INVOCATION_COUNT,
1202 "N vertex shader invocations");
1203 add_basic_stat_reg(query, GS_INVOCATION_COUNT,
1204 "N geometry shader invocations");
1205 add_basic_stat_reg(query, GS_PRIMITIVES_COUNT,
1206 "N geometry shader primitives emitted");
1207 add_basic_stat_reg(query, CL_INVOCATION_COUNT,
1208 "N primitives entering clipping");
1209 add_basic_stat_reg(query, CL_PRIMITIVES_COUNT,
1210 "N primitives leaving clipping");
1211 if (devinfo->is_haswell || devinfo->gen == 8) {
1212 add_stat_reg(query, PS_INVOCATION_COUNT, 1, 4,
1213 "N fragment shader invocations",
1214 "N fragment shader invocations");
1215 } else {
1216 add_basic_stat_reg(query, PS_INVOCATION_COUNT,
1217 "N fragment shader invocations");
1218 }
1219 add_basic_stat_reg(query, HS_INVOCATION_COUNT,
1220 "N TCS shader invocations");
1221 add_basic_stat_reg(query, DS_INVOCATION_COUNT,
1222 "N TES shader invocations");
1223 if (devinfo->gen >= 7) {
1224 add_basic_stat_reg(query, CS_INVOCATION_COUNT,
1225 "N compute shader invocations");
1226 }
1227
1228 if (devinfo->gen >= 10) {
1229 /* Reuse existing CS invocation register until we can expose this new
1230 * one.
1231 */
1232 add_basic_stat_reg(query, CS_INVOCATION_COUNT,
1233 "Reserved1");
1234 }
1235
1236 query->data_size = sizeof(uint64_t) * query->n_counters;
1237 }
1238
1239 static void
1240 fill_mdapi_perf_query_counter(struct gen_perf_query_info *query,
1241 const char *name,
1242 uint32_t data_offset,
1243 uint32_t data_size,
1244 enum gen_perf_counter_data_type data_type)
1245 {
1246 struct gen_perf_query_counter *counter = &query->counters[query->n_counters];
1247
1248 assert(query->n_counters <= query->max_counters);
1249
1250 counter->name = name;
1251 counter->desc = "Raw counter value";
1252 counter->type = GEN_PERF_COUNTER_TYPE_RAW;
1253 counter->data_type = data_type;
1254 counter->offset = data_offset;
1255
1256 query->n_counters++;
1257
1258 assert(counter->offset + gen_perf_query_counter_get_size(counter) <= query->data_size);
1259 }
1260
1261 #define MDAPI_QUERY_ADD_COUNTER(query, struct_name, field_name, type_name) \
1262 fill_mdapi_perf_query_counter(query, #field_name, \
1263 (uint8_t *) &struct_name.field_name - \
1264 (uint8_t *) &struct_name, \
1265 sizeof(struct_name.field_name), \
1266 GEN_PERF_COUNTER_DATA_TYPE_##type_name)
1267 #define MDAPI_QUERY_ADD_ARRAY_COUNTER(ctx, query, struct_name, field_name, idx, type_name) \
1268 fill_mdapi_perf_query_counter(query, \
1269 ralloc_asprintf(ctx, "%s%i", #field_name, idx), \
1270 (uint8_t *) &struct_name.field_name[idx] - \
1271 (uint8_t *) &struct_name, \
1272 sizeof(struct_name.field_name[0]), \
1273 GEN_PERF_COUNTER_DATA_TYPE_##type_name)
1274
1275 static void
1276 register_mdapi_oa_query(const struct gen_device_info *devinfo,
1277 struct gen_perf_config *perf)
1278 {
1279 struct gen_perf_query_info *query = NULL;
1280
1281 /* MDAPI requires different structures for pretty much every generation
1282 * (right now we have definitions for gen 7 to 11).
1283 */
1284 if (!(devinfo->gen >= 7 && devinfo->gen <= 11))
1285 return;
1286
1287 switch (devinfo->gen) {
1288 case 7: {
1289 query = append_query_info(perf, 1 + 45 + 16 + 7);
1290 query->oa_format = I915_OA_FORMAT_A45_B8_C8;
1291
1292 struct gen7_mdapi_metrics metric_data;
1293 query->data_size = sizeof(metric_data);
1294
1295 MDAPI_QUERY_ADD_COUNTER(query, metric_data, TotalTime, UINT64);
1296 for (int i = 0; i < ARRAY_SIZE(metric_data.ACounters); i++) {
1297 MDAPI_QUERY_ADD_ARRAY_COUNTER(perf->queries, query,
1298 metric_data, ACounters, i, UINT64);
1299 }
1300 for (int i = 0; i < ARRAY_SIZE(metric_data.NOACounters); i++) {
1301 MDAPI_QUERY_ADD_ARRAY_COUNTER(perf->queries, query,
1302 metric_data, NOACounters, i, UINT64);
1303 }
1304 MDAPI_QUERY_ADD_COUNTER(query, metric_data, PerfCounter1, UINT64);
1305 MDAPI_QUERY_ADD_COUNTER(query, metric_data, PerfCounter2, UINT64);
1306 MDAPI_QUERY_ADD_COUNTER(query, metric_data, SplitOccured, BOOL32);
1307 MDAPI_QUERY_ADD_COUNTER(query, metric_data, CoreFrequencyChanged, BOOL32);
1308 MDAPI_QUERY_ADD_COUNTER(query, metric_data, CoreFrequency, UINT64);
1309 MDAPI_QUERY_ADD_COUNTER(query, metric_data, ReportId, UINT32);
1310 MDAPI_QUERY_ADD_COUNTER(query, metric_data, ReportsCount, UINT32);
1311 break;
1312 }
1313 case 8: {
1314 query = append_query_info(perf, 2 + 36 + 16 + 16);
1315 query->oa_format = I915_OA_FORMAT_A32u40_A4u32_B8_C8;
1316
1317 struct gen8_mdapi_metrics metric_data;
1318 query->data_size = sizeof(metric_data);
1319
1320 MDAPI_QUERY_ADD_COUNTER(query, metric_data, TotalTime, UINT64);
1321 MDAPI_QUERY_ADD_COUNTER(query, metric_data, GPUTicks, UINT64);
1322 for (int i = 0; i < ARRAY_SIZE(metric_data.OaCntr); i++) {
1323 MDAPI_QUERY_ADD_ARRAY_COUNTER(perf->queries, query,
1324 metric_data, OaCntr, i, UINT64);
1325 }
1326 for (int i = 0; i < ARRAY_SIZE(metric_data.NoaCntr); i++) {
1327 MDAPI_QUERY_ADD_ARRAY_COUNTER(perf->queries, query,
1328 metric_data, NoaCntr, i, UINT64);
1329 }
1330 MDAPI_QUERY_ADD_COUNTER(query, metric_data, BeginTimestamp, UINT64);
1331 MDAPI_QUERY_ADD_COUNTER(query, metric_data, Reserved1, UINT64);
1332 MDAPI_QUERY_ADD_COUNTER(query, metric_data, Reserved2, UINT64);
1333 MDAPI_QUERY_ADD_COUNTER(query, metric_data, Reserved3, UINT32);
1334 MDAPI_QUERY_ADD_COUNTER(query, metric_data, OverrunOccured, BOOL32);
1335 MDAPI_QUERY_ADD_COUNTER(query, metric_data, MarkerUser, UINT64);
1336 MDAPI_QUERY_ADD_COUNTER(query, metric_data, MarkerDriver, UINT64);
1337 MDAPI_QUERY_ADD_COUNTER(query, metric_data, SliceFrequency, UINT64);
1338 MDAPI_QUERY_ADD_COUNTER(query, metric_data, UnsliceFrequency, UINT64);
1339 MDAPI_QUERY_ADD_COUNTER(query, metric_data, PerfCounter1, UINT64);
1340 MDAPI_QUERY_ADD_COUNTER(query, metric_data, PerfCounter2, UINT64);
1341 MDAPI_QUERY_ADD_COUNTER(query, metric_data, SplitOccured, BOOL32);
1342 MDAPI_QUERY_ADD_COUNTER(query, metric_data, CoreFrequencyChanged, BOOL32);
1343 MDAPI_QUERY_ADD_COUNTER(query, metric_data, CoreFrequency, UINT64);
1344 MDAPI_QUERY_ADD_COUNTER(query, metric_data, ReportId, UINT32);
1345 MDAPI_QUERY_ADD_COUNTER(query, metric_data, ReportsCount, UINT32);
1346 break;
1347 }
1348 case 9:
1349 case 10:
1350 case 11: {
1351 query = append_query_info(perf, 2 + 36 + 16 + 16 + 16 + 2);
1352 query->oa_format = I915_OA_FORMAT_A32u40_A4u32_B8_C8;
1353
1354 struct gen9_mdapi_metrics metric_data;
1355 query->data_size = sizeof(metric_data);
1356
1357 MDAPI_QUERY_ADD_COUNTER(query, metric_data, TotalTime, UINT64);
1358 MDAPI_QUERY_ADD_COUNTER(query, metric_data, GPUTicks, UINT64);
1359 for (int i = 0; i < ARRAY_SIZE(metric_data.OaCntr); i++) {
1360 MDAPI_QUERY_ADD_ARRAY_COUNTER(perf->queries, query,
1361 metric_data, OaCntr, i, UINT64);
1362 }
1363 for (int i = 0; i < ARRAY_SIZE(metric_data.NoaCntr); i++) {
1364 MDAPI_QUERY_ADD_ARRAY_COUNTER(perf->queries, query,
1365 metric_data, NoaCntr, i, UINT64);
1366 }
1367 MDAPI_QUERY_ADD_COUNTER(query, metric_data, BeginTimestamp, UINT64);
1368 MDAPI_QUERY_ADD_COUNTER(query, metric_data, Reserved1, UINT64);
1369 MDAPI_QUERY_ADD_COUNTER(query, metric_data, Reserved2, UINT64);
1370 MDAPI_QUERY_ADD_COUNTER(query, metric_data, Reserved3, UINT32);
1371 MDAPI_QUERY_ADD_COUNTER(query, metric_data, OverrunOccured, BOOL32);
1372 MDAPI_QUERY_ADD_COUNTER(query, metric_data, MarkerUser, UINT64);
1373 MDAPI_QUERY_ADD_COUNTER(query, metric_data, MarkerDriver, UINT64);
1374 MDAPI_QUERY_ADD_COUNTER(query, metric_data, SliceFrequency, UINT64);
1375 MDAPI_QUERY_ADD_COUNTER(query, metric_data, UnsliceFrequency, UINT64);
1376 MDAPI_QUERY_ADD_COUNTER(query, metric_data, PerfCounter1, UINT64);
1377 MDAPI_QUERY_ADD_COUNTER(query, metric_data, PerfCounter2, UINT64);
1378 MDAPI_QUERY_ADD_COUNTER(query, metric_data, SplitOccured, BOOL32);
1379 MDAPI_QUERY_ADD_COUNTER(query, metric_data, CoreFrequencyChanged, BOOL32);
1380 MDAPI_QUERY_ADD_COUNTER(query, metric_data, CoreFrequency, UINT64);
1381 MDAPI_QUERY_ADD_COUNTER(query, metric_data, ReportId, UINT32);
1382 MDAPI_QUERY_ADD_COUNTER(query, metric_data, ReportsCount, UINT32);
1383 for (int i = 0; i < ARRAY_SIZE(metric_data.UserCntr); i++) {
1384 MDAPI_QUERY_ADD_ARRAY_COUNTER(perf->queries, query,
1385 metric_data, UserCntr, i, UINT64);
1386 }
1387 MDAPI_QUERY_ADD_COUNTER(query, metric_data, UserCntrCfgId, UINT32);
1388 MDAPI_QUERY_ADD_COUNTER(query, metric_data, Reserved4, UINT32);
1389 break;
1390 }
1391 default:
1392 unreachable("Unsupported gen");
1393 break;
1394 }
1395
1396 query->kind = GEN_PERF_QUERY_TYPE_RAW;
1397 query->name = "Intel_Raw_Hardware_Counters_Set_0_Query";
1398 query->guid = GEN_PERF_QUERY_GUID_MDAPI;
1399
1400 {
1401 /* Accumulation buffer offsets copied from an actual query... */
1402 const struct gen_perf_query_info *copy_query =
1403 &perf->queries[0];
1404
1405 query->gpu_time_offset = copy_query->gpu_time_offset;
1406 query->gpu_clock_offset = copy_query->gpu_clock_offset;
1407 query->a_offset = copy_query->a_offset;
1408 query->b_offset = copy_query->b_offset;
1409 query->c_offset = copy_query->c_offset;
1410 }
1411 }
1412
1413 static uint64_t
1414 get_metric_id(struct gen_perf_config *perf,
1415 const struct gen_perf_query_info *query)
1416 {
1417 /* These queries are know not to ever change, their config ID has been
1418 * loaded upon the first query creation. No need to look them up again.
1419 */
1420 if (query->kind == GEN_PERF_QUERY_TYPE_OA)
1421 return query->oa_metrics_set_id;
1422
1423 assert(query->kind == GEN_PERF_QUERY_TYPE_RAW);
1424
1425 /* Raw queries can be reprogrammed up by an external application/library.
1426 * When a raw query is used for the first time it's id is set to a value !=
1427 * 0. When it stops being used the id returns to 0. No need to reload the
1428 * ID when it's already loaded.
1429 */
1430 if (query->oa_metrics_set_id != 0) {
1431 DBG("Raw query '%s' guid=%s using cached ID: %"PRIu64"\n",
1432 query->name, query->guid, query->oa_metrics_set_id);
1433 return query->oa_metrics_set_id;
1434 }
1435
1436 struct gen_perf_query_info *raw_query = (struct gen_perf_query_info *)query;
1437 if (!gen_perf_load_metric_id(perf, query->guid,
1438 &raw_query->oa_metrics_set_id)) {
1439 DBG("Unable to read query guid=%s ID, falling back to test config\n", query->guid);
1440 raw_query->oa_metrics_set_id = 1ULL;
1441 } else {
1442 DBG("Raw query '%s'guid=%s loaded ID: %"PRIu64"\n",
1443 query->name, query->guid, query->oa_metrics_set_id);
1444 }
1445 return query->oa_metrics_set_id;
1446 }
1447
1448 static struct oa_sample_buf *
1449 get_free_sample_buf(struct gen_perf_context *perf_ctx)
1450 {
1451 struct exec_node *node = exec_list_pop_head(&perf_ctx->free_sample_buffers);
1452 struct oa_sample_buf *buf;
1453
1454 if (node)
1455 buf = exec_node_data(struct oa_sample_buf, node, link);
1456 else {
1457 buf = ralloc_size(perf_ctx->perf, sizeof(*buf));
1458
1459 exec_node_init(&buf->link);
1460 buf->refcount = 0;
1461 buf->len = 0;
1462 }
1463
1464 return buf;
1465 }
1466
1467 static void
1468 reap_old_sample_buffers(struct gen_perf_context *perf_ctx)
1469 {
1470 struct exec_node *tail_node =
1471 exec_list_get_tail(&perf_ctx->sample_buffers);
1472 struct oa_sample_buf *tail_buf =
1473 exec_node_data(struct oa_sample_buf, tail_node, link);
1474
1475 /* Remove all old, unreferenced sample buffers walking forward from
1476 * the head of the list, except always leave at least one node in
1477 * the list so we always have a node to reference when we Begin
1478 * a new query.
1479 */
1480 foreach_list_typed_safe(struct oa_sample_buf, buf, link,
1481 &perf_ctx->sample_buffers)
1482 {
1483 if (buf->refcount == 0 && buf != tail_buf) {
1484 exec_node_remove(&buf->link);
1485 exec_list_push_head(&perf_ctx->free_sample_buffers, &buf->link);
1486 } else
1487 return;
1488 }
1489 }
1490
1491 static void
1492 free_sample_bufs(struct gen_perf_context *perf_ctx)
1493 {
1494 foreach_list_typed_safe(struct oa_sample_buf, buf, link,
1495 &perf_ctx->free_sample_buffers)
1496 ralloc_free(buf);
1497
1498 exec_list_make_empty(&perf_ctx->free_sample_buffers);
1499 }
1500
1501 /******************************************************************************/
1502
1503 /**
1504 * Emit MI_STORE_REGISTER_MEM commands to capture all of the
1505 * pipeline statistics for the performance query object.
1506 */
1507 static void
1508 snapshot_statistics_registers(void *context,
1509 struct gen_perf_config *perf,
1510 struct gen_perf_query_object *obj,
1511 uint32_t offset_in_bytes)
1512 {
1513 const struct gen_perf_query_info *query = obj->queryinfo;
1514 const int n_counters = query->n_counters;
1515
1516 for (int i = 0; i < n_counters; i++) {
1517 const struct gen_perf_query_counter *counter = &query->counters[i];
1518
1519 assert(counter->data_type == GEN_PERF_COUNTER_DATA_TYPE_UINT64);
1520
1521 perf->vtbl.store_register_mem64(context, obj->pipeline_stats.bo,
1522 counter->pipeline_stat.reg,
1523 offset_in_bytes + i * sizeof(uint64_t));
1524 }
1525 }
1526
1527 static void
1528 gen_perf_close(struct gen_perf_context *perfquery,
1529 const struct gen_perf_query_info *query)
1530 {
1531 if (perfquery->oa_stream_fd != -1) {
1532 close(perfquery->oa_stream_fd);
1533 perfquery->oa_stream_fd = -1;
1534 }
1535 if (query->kind == GEN_PERF_QUERY_TYPE_RAW) {
1536 struct gen_perf_query_info *raw_query =
1537 (struct gen_perf_query_info *) query;
1538 raw_query->oa_metrics_set_id = 0;
1539 }
1540 }
1541
1542 static bool
1543 gen_perf_open(struct gen_perf_context *perf_ctx,
1544 int metrics_set_id,
1545 int report_format,
1546 int period_exponent,
1547 int drm_fd,
1548 uint32_t ctx_id)
1549 {
1550 uint64_t properties[] = {
1551 /* Single context sampling */
1552 DRM_I915_PERF_PROP_CTX_HANDLE, ctx_id,
1553
1554 /* Include OA reports in samples */
1555 DRM_I915_PERF_PROP_SAMPLE_OA, true,
1556
1557 /* OA unit configuration */
1558 DRM_I915_PERF_PROP_OA_METRICS_SET, metrics_set_id,
1559 DRM_I915_PERF_PROP_OA_FORMAT, report_format,
1560 DRM_I915_PERF_PROP_OA_EXPONENT, period_exponent,
1561 };
1562 struct drm_i915_perf_open_param param = {
1563 .flags = I915_PERF_FLAG_FD_CLOEXEC |
1564 I915_PERF_FLAG_FD_NONBLOCK |
1565 I915_PERF_FLAG_DISABLED,
1566 .num_properties = ARRAY_SIZE(properties) / 2,
1567 .properties_ptr = (uintptr_t) properties,
1568 };
1569 int fd = gen_ioctl(drm_fd, DRM_IOCTL_I915_PERF_OPEN, &param);
1570 if (fd == -1) {
1571 DBG("Error opening gen perf OA stream: %m\n");
1572 return false;
1573 }
1574
1575 perf_ctx->oa_stream_fd = fd;
1576
1577 perf_ctx->current_oa_metrics_set_id = metrics_set_id;
1578 perf_ctx->current_oa_format = report_format;
1579
1580 return true;
1581 }
1582
1583 static bool
1584 inc_n_users(struct gen_perf_context *perf_ctx)
1585 {
1586 if (perf_ctx->n_oa_users == 0 &&
1587 gen_ioctl(perf_ctx->oa_stream_fd, I915_PERF_IOCTL_ENABLE, 0) < 0)
1588 {
1589 return false;
1590 }
1591 ++perf_ctx->n_oa_users;
1592
1593 return true;
1594 }
1595
1596 static void
1597 dec_n_users(struct gen_perf_context *perf_ctx)
1598 {
1599 /* Disabling the i915 perf stream will effectively disable the OA
1600 * counters. Note it's important to be sure there are no outstanding
1601 * MI_RPC commands at this point since they could stall the CS
1602 * indefinitely once OACONTROL is disabled.
1603 */
1604 --perf_ctx->n_oa_users;
1605 if (perf_ctx->n_oa_users == 0 &&
1606 gen_ioctl(perf_ctx->oa_stream_fd, I915_PERF_IOCTL_DISABLE, 0) < 0)
1607 {
1608 DBG("WARNING: Error disabling gen perf stream: %m\n");
1609 }
1610 }
1611
1612 void
1613 gen_perf_init_metrics(struct gen_perf_config *perf_cfg,
1614 const struct gen_device_info *devinfo,
1615 int drm_fd)
1616 {
1617 load_pipeline_statistic_metrics(perf_cfg, devinfo);
1618 register_mdapi_statistic_query(perf_cfg, devinfo);
1619 if (load_oa_metrics(perf_cfg, drm_fd, devinfo))
1620 register_mdapi_oa_query(devinfo, perf_cfg);
1621 }
1622
1623 void
1624 gen_perf_init_context(struct gen_perf_context *perf_ctx,
1625 struct gen_perf_config *perf_cfg,
1626 void * ctx, /* driver context (eg, brw_context) */
1627 void * bufmgr, /* eg brw_bufmgr */
1628 const struct gen_device_info *devinfo,
1629 uint32_t hw_ctx,
1630 int drm_fd)
1631 {
1632 perf_ctx->perf = perf_cfg;
1633 perf_ctx->ctx = ctx;
1634 perf_ctx->bufmgr = bufmgr;
1635 perf_ctx->drm_fd = drm_fd;
1636 perf_ctx->hw_ctx = hw_ctx;
1637 perf_ctx->devinfo = devinfo;
1638
1639 perf_ctx->unaccumulated =
1640 ralloc_array(ctx, struct gen_perf_query_object *, 2);
1641 perf_ctx->unaccumulated_elements = 0;
1642 perf_ctx->unaccumulated_array_size = 2;
1643
1644 exec_list_make_empty(&perf_ctx->sample_buffers);
1645 exec_list_make_empty(&perf_ctx->free_sample_buffers);
1646
1647 /* It's convenient to guarantee that this linked list of sample
1648 * buffers is never empty so we add an empty head so when we
1649 * Begin an OA query we can always take a reference on a buffer
1650 * in this list.
1651 */
1652 struct oa_sample_buf *buf = get_free_sample_buf(perf_ctx);
1653 exec_list_push_head(&perf_ctx->sample_buffers, &buf->link);
1654
1655 perf_ctx->oa_stream_fd = -1;
1656 perf_ctx->next_query_start_report_id = 1000;
1657 }
1658
1659 /**
1660 * Add a query to the global list of "unaccumulated queries."
1661 *
1662 * Queries are tracked here until all the associated OA reports have
1663 * been accumulated via accumulate_oa_reports() after the end
1664 * MI_REPORT_PERF_COUNT has landed in query->oa.bo.
1665 */
1666 static void
1667 add_to_unaccumulated_query_list(struct gen_perf_context *perf_ctx,
1668 struct gen_perf_query_object *obj)
1669 {
1670 if (perf_ctx->unaccumulated_elements >=
1671 perf_ctx->unaccumulated_array_size)
1672 {
1673 perf_ctx->unaccumulated_array_size *= 1.5;
1674 perf_ctx->unaccumulated =
1675 reralloc(perf_ctx->ctx, perf_ctx->unaccumulated,
1676 struct gen_perf_query_object *,
1677 perf_ctx->unaccumulated_array_size);
1678 }
1679
1680 perf_ctx->unaccumulated[perf_ctx->unaccumulated_elements++] = obj;
1681 }
1682
1683 bool
1684 gen_perf_begin_query(struct gen_perf_context *perf_ctx,
1685 struct gen_perf_query_object *query)
1686 {
1687 struct gen_perf_config *perf_cfg = perf_ctx->perf;
1688 const struct gen_perf_query_info *queryinfo = query->queryinfo;
1689
1690 /* XXX: We have to consider that the command parser unit that parses batch
1691 * buffer commands and is used to capture begin/end counter snapshots isn't
1692 * implicitly synchronized with what's currently running across other GPU
1693 * units (such as the EUs running shaders) that the performance counters are
1694 * associated with.
1695 *
1696 * The intention of performance queries is to measure the work associated
1697 * with commands between the begin/end delimiters and so for that to be the
1698 * case we need to explicitly synchronize the parsing of commands to capture
1699 * Begin/End counter snapshots with what's running across other parts of the
1700 * GPU.
1701 *
1702 * When the command parser reaches a Begin marker it effectively needs to
1703 * drain everything currently running on the GPU until the hardware is idle
1704 * before capturing the first snapshot of counters - otherwise the results
1705 * would also be measuring the effects of earlier commands.
1706 *
1707 * When the command parser reaches an End marker it needs to stall until
1708 * everything currently running on the GPU has finished before capturing the
1709 * end snapshot - otherwise the results won't be a complete representation
1710 * of the work.
1711 *
1712 * Theoretically there could be opportunities to minimize how much of the
1713 * GPU pipeline is drained, or that we stall for, when we know what specific
1714 * units the performance counters being queried relate to but we don't
1715 * currently attempt to be clever here.
1716 *
1717 * Note: with our current simple approach here then for back-to-back queries
1718 * we will redundantly emit duplicate commands to synchronize the command
1719 * streamer with the rest of the GPU pipeline, but we assume that in HW the
1720 * second synchronization is effectively a NOOP.
1721 *
1722 * N.B. The final results are based on deltas of counters between (inside)
1723 * Begin/End markers so even though the total wall clock time of the
1724 * workload is stretched by larger pipeline bubbles the bubbles themselves
1725 * are generally invisible to the query results. Whether that's a good or a
1726 * bad thing depends on the use case. For a lower real-time impact while
1727 * capturing metrics then periodic sampling may be a better choice than
1728 * INTEL_performance_query.
1729 *
1730 *
1731 * This is our Begin synchronization point to drain current work on the
1732 * GPU before we capture our first counter snapshot...
1733 */
1734 perf_cfg->vtbl.emit_mi_flush(perf_ctx->ctx);
1735
1736 switch (queryinfo->kind) {
1737 case GEN_PERF_QUERY_TYPE_OA:
1738 case GEN_PERF_QUERY_TYPE_RAW: {
1739
1740 /* Opening an i915 perf stream implies exclusive access to the OA unit
1741 * which will generate counter reports for a specific counter set with a
1742 * specific layout/format so we can't begin any OA based queries that
1743 * require a different counter set or format unless we get an opportunity
1744 * to close the stream and open a new one...
1745 */
1746 uint64_t metric_id = get_metric_id(perf_ctx->perf, queryinfo);
1747
1748 if (perf_ctx->oa_stream_fd != -1 &&
1749 perf_ctx->current_oa_metrics_set_id != metric_id) {
1750
1751 if (perf_ctx->n_oa_users != 0) {
1752 DBG("WARNING: Begin failed already using perf config=%i/%"PRIu64"\n",
1753 perf_ctx->current_oa_metrics_set_id, metric_id);
1754 return false;
1755 } else
1756 gen_perf_close(perf_ctx, queryinfo);
1757 }
1758
1759 /* If the OA counters aren't already on, enable them. */
1760 if (perf_ctx->oa_stream_fd == -1) {
1761 const struct gen_device_info *devinfo = perf_ctx->devinfo;
1762
1763 /* The period_exponent gives a sampling period as follows:
1764 * sample_period = timestamp_period * 2^(period_exponent + 1)
1765 *
1766 * The timestamps increments every 80ns (HSW), ~52ns (GEN9LP) or
1767 * ~83ns (GEN8/9).
1768 *
1769 * The counter overflow period is derived from the EuActive counter
1770 * which reads a counter that increments by the number of clock
1771 * cycles multiplied by the number of EUs. It can be calculated as:
1772 *
1773 * 2^(number of bits in A counter) / (n_eus * max_gen_freq * 2)
1774 *
1775 * (E.g. 40 EUs @ 1GHz = ~53ms)
1776 *
1777 * We select a sampling period inferior to that overflow period to
1778 * ensure we cannot see more than 1 counter overflow, otherwise we
1779 * could loose information.
1780 */
1781
1782 int a_counter_in_bits = 32;
1783 if (devinfo->gen >= 8)
1784 a_counter_in_bits = 40;
1785
1786 uint64_t overflow_period = pow(2, a_counter_in_bits) / (perf_cfg->sys_vars.n_eus *
1787 /* drop 1GHz freq to have units in nanoseconds */
1788 2);
1789
1790 DBG("A counter overflow period: %"PRIu64"ns, %"PRIu64"ms (n_eus=%"PRIu64")\n",
1791 overflow_period, overflow_period / 1000000ul, perf_cfg->sys_vars.n_eus);
1792
1793 int period_exponent = 0;
1794 uint64_t prev_sample_period, next_sample_period;
1795 for (int e = 0; e < 30; e++) {
1796 prev_sample_period = 1000000000ull * pow(2, e + 1) / devinfo->timestamp_frequency;
1797 next_sample_period = 1000000000ull * pow(2, e + 2) / devinfo->timestamp_frequency;
1798
1799 /* Take the previous sampling period, lower than the overflow
1800 * period.
1801 */
1802 if (prev_sample_period < overflow_period &&
1803 next_sample_period > overflow_period)
1804 period_exponent = e + 1;
1805 }
1806
1807 if (period_exponent == 0) {
1808 DBG("WARNING: enable to find a sampling exponent\n");
1809 return false;
1810 }
1811
1812 DBG("OA sampling exponent: %i ~= %"PRIu64"ms\n", period_exponent,
1813 prev_sample_period / 1000000ul);
1814
1815 if (!gen_perf_open(perf_ctx, metric_id, queryinfo->oa_format,
1816 period_exponent, perf_ctx->drm_fd,
1817 perf_ctx->hw_ctx))
1818 return false;
1819 } else {
1820 assert(perf_ctx->current_oa_metrics_set_id == metric_id &&
1821 perf_ctx->current_oa_format == queryinfo->oa_format);
1822 }
1823
1824 if (!inc_n_users(perf_ctx)) {
1825 DBG("WARNING: Error enabling i915 perf stream: %m\n");
1826 return false;
1827 }
1828
1829 if (query->oa.bo) {
1830 perf_cfg->vtbl.bo_unreference(query->oa.bo);
1831 query->oa.bo = NULL;
1832 }
1833
1834 query->oa.bo = perf_cfg->vtbl.bo_alloc(perf_ctx->bufmgr,
1835 "perf. query OA MI_RPC bo",
1836 MI_RPC_BO_SIZE);
1837 #ifdef DEBUG
1838 /* Pre-filling the BO helps debug whether writes landed. */
1839 void *map = perf_cfg->vtbl.bo_map(perf_ctx->ctx, query->oa.bo, MAP_WRITE);
1840 memset(map, 0x80, MI_RPC_BO_SIZE);
1841 perf_cfg->vtbl.bo_unmap(query->oa.bo);
1842 #endif
1843
1844 query->oa.begin_report_id = perf_ctx->next_query_start_report_id;
1845 perf_ctx->next_query_start_report_id += 2;
1846
1847 /* We flush the batchbuffer here to minimize the chances that MI_RPC
1848 * delimiting commands end up in different batchbuffers. If that's the
1849 * case, the measurement will include the time it takes for the kernel
1850 * scheduler to load a new request into the hardware. This is manifested in
1851 * tools like frameretrace by spikes in the "GPU Core Clocks" counter.
1852 */
1853 perf_cfg->vtbl.batchbuffer_flush(perf_ctx->ctx, __FILE__, __LINE__);
1854
1855 /* Take a starting OA counter snapshot. */
1856 perf_cfg->vtbl.emit_mi_report_perf_count(perf_ctx->ctx, query->oa.bo, 0,
1857 query->oa.begin_report_id);
1858 perf_cfg->vtbl.capture_frequency_stat_register(perf_ctx->ctx, query->oa.bo,
1859 MI_FREQ_START_OFFSET_BYTES);
1860
1861 ++perf_ctx->n_active_oa_queries;
1862
1863 /* No already-buffered samples can possibly be associated with this query
1864 * so create a marker within the list of sample buffers enabling us to
1865 * easily ignore earlier samples when processing this query after
1866 * completion.
1867 */
1868 assert(!exec_list_is_empty(&perf_ctx->sample_buffers));
1869 query->oa.samples_head = exec_list_get_tail(&perf_ctx->sample_buffers);
1870
1871 struct oa_sample_buf *buf =
1872 exec_node_data(struct oa_sample_buf, query->oa.samples_head, link);
1873
1874 /* This reference will ensure that future/following sample
1875 * buffers (that may relate to this query) can't be freed until
1876 * this drops to zero.
1877 */
1878 buf->refcount++;
1879
1880 gen_perf_query_result_clear(&query->oa.result);
1881 query->oa.results_accumulated = false;
1882
1883 add_to_unaccumulated_query_list(perf_ctx, query);
1884 break;
1885 }
1886
1887 case GEN_PERF_QUERY_TYPE_PIPELINE:
1888 if (query->pipeline_stats.bo) {
1889 perf_cfg->vtbl.bo_unreference(query->pipeline_stats.bo);
1890 query->pipeline_stats.bo = NULL;
1891 }
1892
1893 query->pipeline_stats.bo =
1894 perf_cfg->vtbl.bo_alloc(perf_ctx->bufmgr,
1895 "perf. query pipeline stats bo",
1896 STATS_BO_SIZE);
1897
1898 /* Take starting snapshots. */
1899 snapshot_statistics_registers(perf_ctx->ctx , perf_cfg, query, 0);
1900
1901 ++perf_ctx->n_active_pipeline_stats_queries;
1902 break;
1903
1904 default:
1905 unreachable("Unknown query type");
1906 break;
1907 }
1908
1909 return true;
1910 }
1911
1912 void
1913 gen_perf_end_query(struct gen_perf_context *perf_ctx,
1914 struct gen_perf_query_object *query)
1915 {
1916 struct gen_perf_config *perf_cfg = perf_ctx->perf;
1917
1918 /* Ensure that the work associated with the queried commands will have
1919 * finished before taking our query end counter readings.
1920 *
1921 * For more details see comment in brw_begin_perf_query for
1922 * corresponding flush.
1923 */
1924 perf_cfg->vtbl.emit_mi_flush(perf_ctx->ctx);
1925
1926 switch (query->queryinfo->kind) {
1927 case GEN_PERF_QUERY_TYPE_OA:
1928 case GEN_PERF_QUERY_TYPE_RAW:
1929
1930 /* NB: It's possible that the query will have already been marked
1931 * as 'accumulated' if an error was seen while reading samples
1932 * from perf. In this case we mustn't try and emit a closing
1933 * MI_RPC command in case the OA unit has already been disabled
1934 */
1935 if (!query->oa.results_accumulated) {
1936 /* Take an ending OA counter snapshot. */
1937 perf_cfg->vtbl.capture_frequency_stat_register(perf_ctx->ctx, query->oa.bo,
1938 MI_FREQ_END_OFFSET_BYTES);
1939 perf_cfg->vtbl.emit_mi_report_perf_count(perf_ctx->ctx, query->oa.bo,
1940 MI_RPC_BO_END_OFFSET_BYTES,
1941 query->oa.begin_report_id + 1);
1942 }
1943
1944 --perf_ctx->n_active_oa_queries;
1945
1946 /* NB: even though the query has now ended, it can't be accumulated
1947 * until the end MI_REPORT_PERF_COUNT snapshot has been written
1948 * to query->oa.bo
1949 */
1950 break;
1951
1952 case GEN_PERF_QUERY_TYPE_PIPELINE:
1953 snapshot_statistics_registers(perf_ctx->ctx, perf_cfg, query,
1954 STATS_BO_END_OFFSET_BYTES);
1955 --perf_ctx->n_active_pipeline_stats_queries;
1956 break;
1957
1958 default:
1959 unreachable("Unknown query type");
1960 break;
1961 }
1962 }
1963
1964 enum OaReadStatus {
1965 OA_READ_STATUS_ERROR,
1966 OA_READ_STATUS_UNFINISHED,
1967 OA_READ_STATUS_FINISHED,
1968 };
1969
1970 static enum OaReadStatus
1971 read_oa_samples_until(struct gen_perf_context *perf_ctx,
1972 uint32_t start_timestamp,
1973 uint32_t end_timestamp)
1974 {
1975 struct exec_node *tail_node =
1976 exec_list_get_tail(&perf_ctx->sample_buffers);
1977 struct oa_sample_buf *tail_buf =
1978 exec_node_data(struct oa_sample_buf, tail_node, link);
1979 uint32_t last_timestamp = tail_buf->last_timestamp;
1980
1981 while (1) {
1982 struct oa_sample_buf *buf = get_free_sample_buf(perf_ctx);
1983 uint32_t offset;
1984 int len;
1985
1986 while ((len = read(perf_ctx->oa_stream_fd, buf->buf,
1987 sizeof(buf->buf))) < 0 && errno == EINTR)
1988 ;
1989
1990 if (len <= 0) {
1991 exec_list_push_tail(&perf_ctx->free_sample_buffers, &buf->link);
1992
1993 if (len < 0) {
1994 if (errno == EAGAIN)
1995 return ((last_timestamp - start_timestamp) >=
1996 (end_timestamp - start_timestamp)) ?
1997 OA_READ_STATUS_FINISHED :
1998 OA_READ_STATUS_UNFINISHED;
1999 else {
2000 DBG("Error reading i915 perf samples: %m\n");
2001 }
2002 } else
2003 DBG("Spurious EOF reading i915 perf samples\n");
2004
2005 return OA_READ_STATUS_ERROR;
2006 }
2007
2008 buf->len = len;
2009 exec_list_push_tail(&perf_ctx->sample_buffers, &buf->link);
2010
2011 /* Go through the reports and update the last timestamp. */
2012 offset = 0;
2013 while (offset < buf->len) {
2014 const struct drm_i915_perf_record_header *header =
2015 (const struct drm_i915_perf_record_header *) &buf->buf[offset];
2016 uint32_t *report = (uint32_t *) (header + 1);
2017
2018 if (header->type == DRM_I915_PERF_RECORD_SAMPLE)
2019 last_timestamp = report[1];
2020
2021 offset += header->size;
2022 }
2023
2024 buf->last_timestamp = last_timestamp;
2025 }
2026
2027 unreachable("not reached");
2028 return OA_READ_STATUS_ERROR;
2029 }
2030
2031 /**
2032 * Try to read all the reports until either the delimiting timestamp
2033 * or an error arises.
2034 */
2035 static bool
2036 read_oa_samples_for_query(struct gen_perf_context *perf_ctx,
2037 struct gen_perf_query_object *query,
2038 void *current_batch)
2039 {
2040 uint32_t *start;
2041 uint32_t *last;
2042 uint32_t *end;
2043 struct gen_perf_config *perf_cfg = perf_ctx->perf;
2044
2045 /* We need the MI_REPORT_PERF_COUNT to land before we can start
2046 * accumulate. */
2047 assert(!perf_cfg->vtbl.batch_references(current_batch, query->oa.bo) &&
2048 !perf_cfg->vtbl.bo_busy(query->oa.bo));
2049
2050 /* Map the BO once here and let accumulate_oa_reports() unmap
2051 * it. */
2052 if (query->oa.map == NULL)
2053 query->oa.map = perf_cfg->vtbl.bo_map(perf_ctx->ctx, query->oa.bo, MAP_READ);
2054
2055 start = last = query->oa.map;
2056 end = query->oa.map + MI_RPC_BO_END_OFFSET_BYTES;
2057
2058 if (start[0] != query->oa.begin_report_id) {
2059 DBG("Spurious start report id=%"PRIu32"\n", start[0]);
2060 return true;
2061 }
2062 if (end[0] != (query->oa.begin_report_id + 1)) {
2063 DBG("Spurious end report id=%"PRIu32"\n", end[0]);
2064 return true;
2065 }
2066
2067 /* Read the reports until the end timestamp. */
2068 switch (read_oa_samples_until(perf_ctx, start[1], end[1])) {
2069 case OA_READ_STATUS_ERROR:
2070 /* Fallthrough and let accumulate_oa_reports() deal with the
2071 * error. */
2072 case OA_READ_STATUS_FINISHED:
2073 return true;
2074 case OA_READ_STATUS_UNFINISHED:
2075 return false;
2076 }
2077
2078 unreachable("invalid read status");
2079 return false;
2080 }
2081
2082 void
2083 gen_perf_wait_query(struct gen_perf_context *perf_ctx,
2084 struct gen_perf_query_object *query,
2085 void *current_batch)
2086 {
2087 struct gen_perf_config *perf_cfg = perf_ctx->perf;
2088 struct brw_bo *bo = NULL;
2089
2090 switch (query->queryinfo->kind) {
2091 case GEN_PERF_QUERY_TYPE_OA:
2092 case GEN_PERF_QUERY_TYPE_RAW:
2093 bo = query->oa.bo;
2094 break;
2095
2096 case GEN_PERF_QUERY_TYPE_PIPELINE:
2097 bo = query->pipeline_stats.bo;
2098 break;
2099
2100 default:
2101 unreachable("Unknown query type");
2102 break;
2103 }
2104
2105 if (bo == NULL)
2106 return;
2107
2108 /* If the current batch references our results bo then we need to
2109 * flush first...
2110 */
2111 if (perf_cfg->vtbl.batch_references(current_batch, bo))
2112 perf_cfg->vtbl.batchbuffer_flush(perf_ctx->ctx, __FILE__, __LINE__);
2113
2114 perf_cfg->vtbl.bo_wait_rendering(bo);
2115
2116 /* Due to a race condition between the OA unit signaling report
2117 * availability and the report actually being written into memory,
2118 * we need to wait for all the reports to come in before we can
2119 * read them.
2120 */
2121 if (query->queryinfo->kind == GEN_PERF_QUERY_TYPE_OA ||
2122 query->queryinfo->kind == GEN_PERF_QUERY_TYPE_RAW) {
2123 while (!read_oa_samples_for_query(perf_ctx, query, current_batch))
2124 ;
2125 }
2126 }
2127
2128 bool
2129 gen_perf_is_query_ready(struct gen_perf_context *perf_ctx,
2130 struct gen_perf_query_object *query,
2131 void *current_batch)
2132 {
2133 struct gen_perf_config *perf_cfg = perf_ctx->perf;
2134
2135 switch (query->queryinfo->kind) {
2136 case GEN_PERF_QUERY_TYPE_OA:
2137 case GEN_PERF_QUERY_TYPE_RAW:
2138 return (query->oa.results_accumulated ||
2139 (query->oa.bo &&
2140 !perf_cfg->vtbl.batch_references(current_batch, query->oa.bo) &&
2141 !perf_cfg->vtbl.bo_busy(query->oa.bo) &&
2142 read_oa_samples_for_query(perf_ctx, query, current_batch)));
2143 case GEN_PERF_QUERY_TYPE_PIPELINE:
2144 return (query->pipeline_stats.bo &&
2145 !perf_cfg->vtbl.batch_references(current_batch, query->pipeline_stats.bo) &&
2146 !perf_cfg->vtbl.bo_busy(query->pipeline_stats.bo));
2147
2148 default:
2149 unreachable("Unknown query type");
2150 break;
2151 }
2152
2153 return false;
2154 }
2155
2156 /**
2157 * Remove a query from the global list of unaccumulated queries once
2158 * after successfully accumulating the OA reports associated with the
2159 * query in accumulate_oa_reports() or when discarding unwanted query
2160 * results.
2161 */
2162 static void
2163 drop_from_unaccumulated_query_list(struct gen_perf_context *perf_ctx,
2164 struct gen_perf_query_object *query)
2165 {
2166 for (int i = 0; i < perf_ctx->unaccumulated_elements; i++) {
2167 if (perf_ctx->unaccumulated[i] == query) {
2168 int last_elt = --perf_ctx->unaccumulated_elements;
2169
2170 if (i == last_elt)
2171 perf_ctx->unaccumulated[i] = NULL;
2172 else {
2173 perf_ctx->unaccumulated[i] =
2174 perf_ctx->unaccumulated[last_elt];
2175 }
2176
2177 break;
2178 }
2179 }
2180
2181 /* Drop our samples_head reference so that associated periodic
2182 * sample data buffers can potentially be reaped if they aren't
2183 * referenced by any other queries...
2184 */
2185
2186 struct oa_sample_buf *buf =
2187 exec_node_data(struct oa_sample_buf, query->oa.samples_head, link);
2188
2189 assert(buf->refcount > 0);
2190 buf->refcount--;
2191
2192 query->oa.samples_head = NULL;
2193
2194 reap_old_sample_buffers(perf_ctx);
2195 }
2196
2197 /* In general if we see anything spurious while accumulating results,
2198 * we don't try and continue accumulating the current query, hoping
2199 * for the best, we scrap anything outstanding, and then hope for the
2200 * best with new queries.
2201 */
2202 static void
2203 discard_all_queries(struct gen_perf_context *perf_ctx)
2204 {
2205 while (perf_ctx->unaccumulated_elements) {
2206 struct gen_perf_query_object *query = perf_ctx->unaccumulated[0];
2207
2208 query->oa.results_accumulated = true;
2209 drop_from_unaccumulated_query_list(perf_ctx, query);
2210
2211 dec_n_users(perf_ctx);
2212 }
2213 }
2214
2215 /**
2216 * Accumulate raw OA counter values based on deltas between pairs of
2217 * OA reports.
2218 *
2219 * Accumulation starts from the first report captured via
2220 * MI_REPORT_PERF_COUNT (MI_RPC) by brw_begin_perf_query() until the
2221 * last MI_RPC report requested by brw_end_perf_query(). Between these
2222 * two reports there may also some number of periodically sampled OA
2223 * reports collected via the i915 perf interface - depending on the
2224 * duration of the query.
2225 *
2226 * These periodic snapshots help to ensure we handle counter overflow
2227 * correctly by being frequent enough to ensure we don't miss multiple
2228 * overflows of a counter between snapshots. For Gen8+ the i915 perf
2229 * snapshots provide the extra context-switch reports that let us
2230 * subtract out the progress of counters associated with other
2231 * contexts running on the system.
2232 */
2233 static void
2234 accumulate_oa_reports(struct gen_perf_context *perf_ctx,
2235 struct gen_perf_query_object *query)
2236 {
2237 const struct gen_device_info *devinfo = perf_ctx->devinfo;
2238 uint32_t *start;
2239 uint32_t *last;
2240 uint32_t *end;
2241 struct exec_node *first_samples_node;
2242 bool in_ctx = true;
2243 int out_duration = 0;
2244
2245 assert(query->oa.map != NULL);
2246
2247 start = last = query->oa.map;
2248 end = query->oa.map + MI_RPC_BO_END_OFFSET_BYTES;
2249
2250 if (start[0] != query->oa.begin_report_id) {
2251 DBG("Spurious start report id=%"PRIu32"\n", start[0]);
2252 goto error;
2253 }
2254 if (end[0] != (query->oa.begin_report_id + 1)) {
2255 DBG("Spurious end report id=%"PRIu32"\n", end[0]);
2256 goto error;
2257 }
2258
2259 /* On Gen12+ OA reports are sourced from per context counters, so we don't
2260 * ever have to look at the global OA buffer. Yey \o/
2261 */
2262 if (perf_ctx->devinfo->gen >= 12) {
2263 last = start;
2264 goto end;
2265 }
2266
2267 /* See if we have any periodic reports to accumulate too... */
2268
2269 /* N.B. The oa.samples_head was set when the query began and
2270 * pointed to the tail of the perf_ctx->sample_buffers list at
2271 * the time the query started. Since the buffer existed before the
2272 * first MI_REPORT_PERF_COUNT command was emitted we therefore know
2273 * that no data in this particular node's buffer can possibly be
2274 * associated with the query - so skip ahead one...
2275 */
2276 first_samples_node = query->oa.samples_head->next;
2277
2278 foreach_list_typed_from(struct oa_sample_buf, buf, link,
2279 &perf_ctx.sample_buffers,
2280 first_samples_node)
2281 {
2282 int offset = 0;
2283
2284 while (offset < buf->len) {
2285 const struct drm_i915_perf_record_header *header =
2286 (const struct drm_i915_perf_record_header *)(buf->buf + offset);
2287
2288 assert(header->size != 0);
2289 assert(header->size <= buf->len);
2290
2291 offset += header->size;
2292
2293 switch (header->type) {
2294 case DRM_I915_PERF_RECORD_SAMPLE: {
2295 uint32_t *report = (uint32_t *)(header + 1);
2296 bool add = true;
2297
2298 /* Ignore reports that come before the start marker.
2299 * (Note: takes care to allow overflow of 32bit timestamps)
2300 */
2301 if (gen_device_info_timebase_scale(devinfo,
2302 report[1] - start[1]) > 5000000000) {
2303 continue;
2304 }
2305
2306 /* Ignore reports that come after the end marker.
2307 * (Note: takes care to allow overflow of 32bit timestamps)
2308 */
2309 if (gen_device_info_timebase_scale(devinfo,
2310 report[1] - end[1]) <= 5000000000) {
2311 goto end;
2312 }
2313
2314 /* For Gen8+ since the counters continue while other
2315 * contexts are running we need to discount any unrelated
2316 * deltas. The hardware automatically generates a report
2317 * on context switch which gives us a new reference point
2318 * to continuing adding deltas from.
2319 *
2320 * For Haswell we can rely on the HW to stop the progress
2321 * of OA counters while any other context is acctive.
2322 */
2323 if (devinfo->gen >= 8) {
2324 if (in_ctx && report[2] != query->oa.result.hw_id) {
2325 DBG("i915 perf: Switch AWAY (observed by ID change)\n");
2326 in_ctx = false;
2327 out_duration = 0;
2328 } else if (in_ctx == false && report[2] == query->oa.result.hw_id) {
2329 DBG("i915 perf: Switch TO\n");
2330 in_ctx = true;
2331
2332 /* From experimentation in IGT, we found that the OA unit
2333 * might label some report as "idle" (using an invalid
2334 * context ID), right after a report for a given context.
2335 * Deltas generated by those reports actually belong to the
2336 * previous context, even though they're not labelled as
2337 * such.
2338 *
2339 * We didn't *really* Switch AWAY in the case that we e.g.
2340 * saw a single periodic report while idle...
2341 */
2342 if (out_duration >= 1)
2343 add = false;
2344 } else if (in_ctx) {
2345 assert(report[2] == query->oa.result.hw_id);
2346 DBG("i915 perf: Continuation IN\n");
2347 } else {
2348 assert(report[2] != query->oa.result.hw_id);
2349 DBG("i915 perf: Continuation OUT\n");
2350 add = false;
2351 out_duration++;
2352 }
2353 }
2354
2355 if (add) {
2356 gen_perf_query_result_accumulate(&query->oa.result,
2357 query->queryinfo,
2358 last, report);
2359 }
2360
2361 last = report;
2362
2363 break;
2364 }
2365
2366 case DRM_I915_PERF_RECORD_OA_BUFFER_LOST:
2367 DBG("i915 perf: OA error: all reports lost\n");
2368 goto error;
2369 case DRM_I915_PERF_RECORD_OA_REPORT_LOST:
2370 DBG("i915 perf: OA report lost\n");
2371 break;
2372 }
2373 }
2374 }
2375
2376 end:
2377
2378 gen_perf_query_result_accumulate(&query->oa.result, query->queryinfo,
2379 last, end);
2380
2381 query->oa.results_accumulated = true;
2382 drop_from_unaccumulated_query_list(perf_ctx, query);
2383 dec_n_users(perf_ctx);
2384
2385 return;
2386
2387 error:
2388
2389 discard_all_queries(perf_ctx);
2390 }
2391
2392 void
2393 gen_perf_delete_query(struct gen_perf_context *perf_ctx,
2394 struct gen_perf_query_object *query)
2395 {
2396 struct gen_perf_config *perf_cfg = perf_ctx->perf;
2397
2398 /* We can assume that the frontend waits for a query to complete
2399 * before ever calling into here, so we don't have to worry about
2400 * deleting an in-flight query object.
2401 */
2402 switch (query->queryinfo->kind) {
2403 case GEN_PERF_QUERY_TYPE_OA:
2404 case GEN_PERF_QUERY_TYPE_RAW:
2405 if (query->oa.bo) {
2406 if (!query->oa.results_accumulated) {
2407 drop_from_unaccumulated_query_list(perf_ctx, query);
2408 dec_n_users(perf_ctx);
2409 }
2410
2411 perf_cfg->vtbl.bo_unreference(query->oa.bo);
2412 query->oa.bo = NULL;
2413 }
2414
2415 query->oa.results_accumulated = false;
2416 break;
2417
2418 case GEN_PERF_QUERY_TYPE_PIPELINE:
2419 if (query->pipeline_stats.bo) {
2420 perf_cfg->vtbl.bo_unreference(query->pipeline_stats.bo);
2421 query->pipeline_stats.bo = NULL;
2422 }
2423 break;
2424
2425 default:
2426 unreachable("Unknown query type");
2427 break;
2428 }
2429
2430 /* As an indication that the INTEL_performance_query extension is no
2431 * longer in use, it's a good time to free our cache of sample
2432 * buffers and close any current i915-perf stream.
2433 */
2434 if (--perf_ctx->n_query_instances == 0) {
2435 free_sample_bufs(perf_ctx);
2436 gen_perf_close(perf_ctx, query->queryinfo);
2437 }
2438
2439 free(query);
2440 }
2441
2442 #define GET_FIELD(word, field) (((word) & field ## _MASK) >> field ## _SHIFT)
2443
2444 static void
2445 read_gt_frequency(struct gen_perf_context *perf_ctx,
2446 struct gen_perf_query_object *obj)
2447 {
2448 const struct gen_device_info *devinfo = perf_ctx->devinfo;
2449 uint32_t start = *((uint32_t *)(obj->oa.map + MI_FREQ_START_OFFSET_BYTES)),
2450 end = *((uint32_t *)(obj->oa.map + MI_FREQ_END_OFFSET_BYTES));
2451
2452 switch (devinfo->gen) {
2453 case 7:
2454 case 8:
2455 obj->oa.gt_frequency[0] = GET_FIELD(start, GEN7_RPSTAT1_CURR_GT_FREQ) * 50ULL;
2456 obj->oa.gt_frequency[1] = GET_FIELD(end, GEN7_RPSTAT1_CURR_GT_FREQ) * 50ULL;
2457 break;
2458 case 9:
2459 case 10:
2460 case 11:
2461 obj->oa.gt_frequency[0] = GET_FIELD(start, GEN9_RPSTAT0_CURR_GT_FREQ) * 50ULL / 3ULL;
2462 obj->oa.gt_frequency[1] = GET_FIELD(end, GEN9_RPSTAT0_CURR_GT_FREQ) * 50ULL / 3ULL;
2463 break;
2464 default:
2465 unreachable("unexpected gen");
2466 }
2467
2468 /* Put the numbers into Hz. */
2469 obj->oa.gt_frequency[0] *= 1000000ULL;
2470 obj->oa.gt_frequency[1] *= 1000000ULL;
2471 }
2472
2473 static int
2474 get_oa_counter_data(struct gen_perf_context *perf_ctx,
2475 struct gen_perf_query_object *query,
2476 size_t data_size,
2477 uint8_t *data)
2478 {
2479 struct gen_perf_config *perf_cfg = perf_ctx->perf;
2480 const struct gen_perf_query_info *queryinfo = query->queryinfo;
2481 int n_counters = queryinfo->n_counters;
2482 int written = 0;
2483
2484 for (int i = 0; i < n_counters; i++) {
2485 const struct gen_perf_query_counter *counter = &queryinfo->counters[i];
2486 uint64_t *out_uint64;
2487 float *out_float;
2488 size_t counter_size = gen_perf_query_counter_get_size(counter);
2489
2490 if (counter_size) {
2491 switch (counter->data_type) {
2492 case GEN_PERF_COUNTER_DATA_TYPE_UINT64:
2493 out_uint64 = (uint64_t *)(data + counter->offset);
2494 *out_uint64 =
2495 counter->oa_counter_read_uint64(perf_cfg, queryinfo,
2496 query->oa.result.accumulator);
2497 break;
2498 case GEN_PERF_COUNTER_DATA_TYPE_FLOAT:
2499 out_float = (float *)(data + counter->offset);
2500 *out_float =
2501 counter->oa_counter_read_float(perf_cfg, queryinfo,
2502 query->oa.result.accumulator);
2503 break;
2504 default:
2505 /* So far we aren't using uint32, double or bool32... */
2506 unreachable("unexpected counter data type");
2507 }
2508 written = counter->offset + counter_size;
2509 }
2510 }
2511
2512 return written;
2513 }
2514
2515 static int
2516 get_pipeline_stats_data(struct gen_perf_context *perf_ctx,
2517 struct gen_perf_query_object *query,
2518 size_t data_size,
2519 uint8_t *data)
2520
2521 {
2522 struct gen_perf_config *perf_cfg = perf_ctx->perf;
2523 const struct gen_perf_query_info *queryinfo = query->queryinfo;
2524 int n_counters = queryinfo->n_counters;
2525 uint8_t *p = data;
2526
2527 uint64_t *start = perf_cfg->vtbl.bo_map(perf_ctx->ctx, query->pipeline_stats.bo, MAP_READ);
2528 uint64_t *end = start + (STATS_BO_END_OFFSET_BYTES / sizeof(uint64_t));
2529
2530 for (int i = 0; i < n_counters; i++) {
2531 const struct gen_perf_query_counter *counter = &queryinfo->counters[i];
2532 uint64_t value = end[i] - start[i];
2533
2534 if (counter->pipeline_stat.numerator !=
2535 counter->pipeline_stat.denominator) {
2536 value *= counter->pipeline_stat.numerator;
2537 value /= counter->pipeline_stat.denominator;
2538 }
2539
2540 *((uint64_t *)p) = value;
2541 p += 8;
2542 }
2543
2544 perf_cfg->vtbl.bo_unmap(query->pipeline_stats.bo);
2545
2546 return p - data;
2547 }
2548
2549 void
2550 gen_perf_get_query_data(struct gen_perf_context *perf_ctx,
2551 struct gen_perf_query_object *query,
2552 int data_size,
2553 unsigned *data,
2554 unsigned *bytes_written)
2555 {
2556 struct gen_perf_config *perf_cfg = perf_ctx->perf;
2557 int written = 0;
2558
2559 switch (query->queryinfo->kind) {
2560 case GEN_PERF_QUERY_TYPE_OA:
2561 case GEN_PERF_QUERY_TYPE_RAW:
2562 if (!query->oa.results_accumulated) {
2563 read_gt_frequency(perf_ctx, query);
2564 uint32_t *begin_report = query->oa.map;
2565 uint32_t *end_report = query->oa.map + MI_RPC_BO_END_OFFSET_BYTES;
2566 gen_perf_query_result_read_frequencies(&query->oa.result,
2567 perf_ctx->devinfo,
2568 begin_report,
2569 end_report);
2570 accumulate_oa_reports(perf_ctx, query);
2571 assert(query->oa.results_accumulated);
2572
2573 perf_cfg->vtbl.bo_unmap(query->oa.bo);
2574 query->oa.map = NULL;
2575 }
2576 if (query->queryinfo->kind == GEN_PERF_QUERY_TYPE_OA) {
2577 written = get_oa_counter_data(perf_ctx, query, data_size, (uint8_t *)data);
2578 } else {
2579 const struct gen_device_info *devinfo = perf_ctx->devinfo;
2580
2581 written = gen_perf_query_result_write_mdapi((uint8_t *)data, data_size,
2582 devinfo, &query->oa.result,
2583 query->oa.gt_frequency[0],
2584 query->oa.gt_frequency[1]);
2585 }
2586 break;
2587
2588 case GEN_PERF_QUERY_TYPE_PIPELINE:
2589 written = get_pipeline_stats_data(perf_ctx, query, data_size, (uint8_t *)data);
2590 break;
2591
2592 default:
2593 unreachable("Unknown query type");
2594 break;
2595 }
2596
2597 if (bytes_written)
2598 *bytes_written = written;
2599 }
2600
2601 void
2602 gen_perf_dump_query_count(struct gen_perf_context *perf_ctx)
2603 {
2604 DBG("Queries: (Open queries = %d, OA users = %d)\n",
2605 perf_ctx->n_active_oa_queries, perf_ctx->n_oa_users);
2606 }
2607
2608 void
2609 gen_perf_dump_query(struct gen_perf_context *ctx,
2610 struct gen_perf_query_object *obj,
2611 void *current_batch)
2612 {
2613 switch (obj->queryinfo->kind) {
2614 case GEN_PERF_QUERY_TYPE_OA:
2615 case GEN_PERF_QUERY_TYPE_RAW:
2616 DBG("BO: %-4s OA data: %-10s %-15s\n",
2617 obj->oa.bo ? "yes," : "no,",
2618 gen_perf_is_query_ready(ctx, obj, current_batch) ? "ready," : "not ready,",
2619 obj->oa.results_accumulated ? "accumulated" : "not accumulated");
2620 break;
2621 case GEN_PERF_QUERY_TYPE_PIPELINE:
2622 DBG("BO: %-4s\n",
2623 obj->pipeline_stats.bo ? "yes" : "no");
2624 break;
2625 default:
2626 unreachable("Unknown query type");
2627 break;
2628 }
2629 }