i965: Make brw_vs_outputs_written static.
[mesa.git] / src / mesa / drivers / dri / i965 / brw_performance_query.c
1 /*
2 * Copyright © 2013 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
21 * DEALINGS IN THE SOFTWARE.
22 */
23
24 /**
25 * \file brw_performance_query.c
26 *
27 * Implementation of the GL_INTEL_performance_query extension.
28 *
29 * Currently there are two possible counter sources exposed here:
30 *
31 * On Gen6+ hardware we have numerous 64bit Pipeline Statistics Registers
32 * that we can snapshot at the beginning and end of a query.
33 *
34 * On Gen7.5+ we have Observability Architecture counters which are
35 * covered in separate document from the rest of the PRMs. It is available at:
36 * https://01.org/linuxgraphics/documentation/driver-documentation-prms
37 * => 2013 Intel Core Processor Family => Observability Performance Counters
38 * (This one volume covers Sandybridge, Ivybridge, Baytrail, and Haswell,
39 * though notably we currently only support OA counters for Haswell+)
40 */
41
42 #include <limits.h>
43 #include <dirent.h>
44
45 /* put before sys/types.h to silence glibc warnings */
46 #ifdef MAJOR_IN_MKDEV
47 #include <sys/mkdev.h>
48 #endif
49 #ifdef MAJOR_IN_SYSMACROS
50 #include <sys/sysmacros.h>
51 #endif
52 #include <sys/types.h>
53 #include <sys/stat.h>
54 #include <fcntl.h>
55 #include <sys/mman.h>
56 #include <sys/ioctl.h>
57
58 #include <xf86drm.h>
59 #include <i915_drm.h>
60
61 #include "main/hash.h"
62 #include "main/macros.h"
63 #include "main/mtypes.h"
64 #include "main/performance_query.h"
65
66 #include "util/bitset.h"
67 #include "util/ralloc.h"
68 #include "util/hash_table.h"
69 #include "util/list.h"
70
71 #include "brw_context.h"
72 #include "brw_defines.h"
73 #include "brw_performance_query.h"
74 #include "brw_oa_metrics.h"
75 #include "intel_batchbuffer.h"
76
77 #define FILE_DEBUG_FLAG DEBUG_PERFMON
78
79 #define OAREPORT_REASON_MASK 0x3f
80 #define OAREPORT_REASON_SHIFT 19
81 #define OAREPORT_REASON_TIMER (1<<0)
82 #define OAREPORT_REASON_TRIGGER1 (1<<1)
83 #define OAREPORT_REASON_TRIGGER2 (1<<2)
84 #define OAREPORT_REASON_CTX_SWITCH (1<<3)
85 #define OAREPORT_REASON_GO_TRANSITION (1<<4)
86
87 #define I915_PERF_OA_SAMPLE_SIZE (8 + /* drm_i915_perf_record_header */ \
88 256) /* OA counter report */
89
90 /**
91 * Periodic OA samples are read() into these buffer structures via the
92 * i915 perf kernel interface and appended to the
93 * brw->perfquery.sample_buffers linked list. When we process the
94 * results of an OA metrics query we need to consider all the periodic
95 * samples between the Begin and End MI_REPORT_PERF_COUNT command
96 * markers.
97 *
98 * 'Periodic' is a simplification as there are other automatic reports
99 * written by the hardware also buffered here.
100 *
101 * Considering three queries, A, B and C:
102 *
103 * Time ---->
104 * ________________A_________________
105 * | |
106 * | ________B_________ _____C___________
107 * | | | | | |
108 *
109 * And an illustration of sample buffers read over this time frame:
110 * [HEAD ][ ][ ][ ][ ][ ][ ][ ][TAIL ]
111 *
112 * These nodes may hold samples for query A:
113 * [ ][ ][ A ][ A ][ A ][ A ][ A ][ ][ ]
114 *
115 * These nodes may hold samples for query B:
116 * [ ][ ][ B ][ B ][ B ][ ][ ][ ][ ]
117 *
118 * These nodes may hold samples for query C:
119 * [ ][ ][ ][ ][ ][ C ][ C ][ C ][ ]
120 *
121 * The illustration assumes we have an even distribution of periodic
122 * samples so all nodes have the same size plotted against time:
123 *
124 * Note, to simplify code, the list is never empty.
125 *
126 * With overlapping queries we can see that periodic OA reports may
127 * relate to multiple queries and care needs to be take to keep
128 * track of sample buffers until there are no queries that might
129 * depend on their contents.
130 *
131 * We use a node ref counting system where a reference ensures that a
132 * node and all following nodes can't be freed/recycled until the
133 * reference drops to zero.
134 *
135 * E.g. with a ref of one here:
136 * [ 0 ][ 0 ][ 1 ][ 0 ][ 0 ][ 0 ][ 0 ][ 0 ][ 0 ]
137 *
138 * These nodes could be freed or recycled ("reaped"):
139 * [ 0 ][ 0 ]
140 *
141 * These must be preserved until the leading ref drops to zero:
142 * [ 1 ][ 0 ][ 0 ][ 0 ][ 0 ][ 0 ][ 0 ]
143 *
144 * When a query starts we take a reference on the current tail of
145 * the list, knowing that no already-buffered samples can possibly
146 * relate to the newly-started query. A pointer to this node is
147 * also saved in the query object's ->oa.samples_head.
148 *
149 * E.g. starting query A while there are two nodes in .sample_buffers:
150 * ________________A________
151 * |
152 *
153 * [ 0 ][ 1 ]
154 * ^_______ Add a reference and store pointer to node in
155 * A->oa.samples_head
156 *
157 * Moving forward to when the B query starts with no new buffer nodes:
158 * (for reference, i915 perf reads() are only done when queries finish)
159 * ________________A_______
160 * | ________B___
161 * | |
162 *
163 * [ 0 ][ 2 ]
164 * ^_______ Add a reference and store pointer to
165 * node in B->oa.samples_head
166 *
167 * Once a query is finished, after an OA query has become 'Ready',
168 * once the End OA report has landed and after we we have processed
169 * all the intermediate periodic samples then we drop the
170 * ->oa.samples_head reference we took at the start.
171 *
172 * So when the B query has finished we have:
173 * ________________A________
174 * | ______B___________
175 * | | |
176 * [ 0 ][ 1 ][ 0 ][ 0 ][ 0 ]
177 * ^_______ Drop B->oa.samples_head reference
178 *
179 * We still can't free these due to the A->oa.samples_head ref:
180 * [ 1 ][ 0 ][ 0 ][ 0 ]
181 *
182 * When the A query finishes: (note there's a new ref for C's samples_head)
183 * ________________A_________________
184 * | |
185 * | _____C_________
186 * | | |
187 * [ 0 ][ 0 ][ 0 ][ 0 ][ 1 ][ 0 ][ 0 ]
188 * ^_______ Drop A->oa.samples_head reference
189 *
190 * And we can now reap these nodes up to the C->oa.samples_head:
191 * [ X ][ X ][ X ][ X ]
192 * keeping -> [ 1 ][ 0 ][ 0 ]
193 *
194 * We reap old sample buffers each time we finish processing an OA
195 * query by iterating the sample_buffers list from the head until we
196 * find a referenced node and stop.
197 *
198 * Reaped buffers move to a perfquery.free_sample_buffers list and
199 * when we come to read() we first look to recycle a buffer from the
200 * free_sample_buffers list before allocating a new buffer.
201 */
202 struct brw_oa_sample_buf {
203 struct exec_node link;
204 int refcount;
205 int len;
206 uint8_t buf[I915_PERF_OA_SAMPLE_SIZE * 10];
207 uint32_t last_timestamp;
208 };
209
210 /** Downcasting convenience macro. */
211 static inline struct brw_perf_query_object *
212 brw_perf_query(struct gl_perf_query_object *o)
213 {
214 return (struct brw_perf_query_object *) o;
215 }
216
217 #define MI_RPC_BO_SIZE 4096
218 #define MI_RPC_BO_END_OFFSET_BYTES (MI_RPC_BO_SIZE / 2)
219 #define MI_FREQ_START_OFFSET_BYTES (3072)
220 #define MI_FREQ_END_OFFSET_BYTES (3076)
221
222 /******************************************************************************/
223
224 static bool
225 read_file_uint64(const char *file, uint64_t *val)
226 {
227 char buf[32];
228 int fd, n;
229
230 fd = open(file, 0);
231 if (fd < 0)
232 return false;
233 while ((n = read(fd, buf, sizeof (buf) - 1)) < 0 &&
234 errno == EINTR);
235 close(fd);
236 if (n < 0)
237 return false;
238
239 buf[n] = '\0';
240 *val = strtoull(buf, NULL, 0);
241
242 return true;
243 }
244
245 static bool
246 read_sysfs_drm_device_file_uint64(struct brw_context *brw,
247 const char *file,
248 uint64_t *value)
249 {
250 char buf[512];
251 int len;
252
253 len = snprintf(buf, sizeof(buf), "%s/%s",
254 brw->perfquery.sysfs_dev_dir, file);
255 if (len < 0 || len >= sizeof(buf)) {
256 DBG("Failed to concatenate sys filename to read u64 from\n");
257 return false;
258 }
259
260 return read_file_uint64(buf, value);
261 }
262
263 /******************************************************************************/
264
265 static bool
266 brw_is_perf_query_ready(struct gl_context *ctx,
267 struct gl_perf_query_object *o);
268
269 static uint64_t
270 brw_perf_query_get_metric_id(struct brw_context *brw,
271 const struct brw_perf_query_info *query)
272 {
273 /* These queries are know not to ever change, their config ID has been
274 * loaded upon the first query creation. No need to look them up again.
275 */
276 if (query->kind == OA_COUNTERS)
277 return query->oa_metrics_set_id;
278
279 assert(query->kind == OA_COUNTERS_RAW);
280
281 /* Raw queries can be reprogrammed up by an external application/library.
282 * When a raw query is used for the first time it's id is set to a value !=
283 * 0. When it stops being used the id returns to 0. No need to reload the
284 * ID when it's already loaded.
285 */
286 if (query->oa_metrics_set_id != 0) {
287 DBG("Raw query '%s' guid=%s using cached ID: %"PRIu64"\n",
288 query->name, query->guid, query->oa_metrics_set_id);
289 return query->oa_metrics_set_id;
290 }
291
292 char metric_id_file[280];
293 snprintf(metric_id_file, sizeof(metric_id_file),
294 "%s/metrics/%s/id", brw->perfquery.sysfs_dev_dir, query->guid);
295
296 struct brw_perf_query_info *raw_query = (struct brw_perf_query_info *)query;
297 if (!read_file_uint64(metric_id_file, &raw_query->oa_metrics_set_id)) {
298 DBG("Unable to read query guid=%s ID, falling back to test config\n", query->guid);
299 raw_query->oa_metrics_set_id = 1ULL;
300 } else {
301 DBG("Raw query '%s'guid=%s loaded ID: %"PRIu64"\n",
302 query->name, query->guid, query->oa_metrics_set_id);
303 }
304 return query->oa_metrics_set_id;
305 }
306
307 static void
308 dump_perf_query_callback(GLuint id, void *query_void, void *brw_void)
309 {
310 struct gl_context *ctx = brw_void;
311 struct gl_perf_query_object *o = query_void;
312 struct brw_perf_query_object *obj = query_void;
313
314 switch (obj->query->kind) {
315 case OA_COUNTERS:
316 case OA_COUNTERS_RAW:
317 DBG("%4d: %-6s %-8s BO: %-4s OA data: %-10s %-15s\n",
318 id,
319 o->Used ? "Dirty," : "New,",
320 o->Active ? "Active," : (o->Ready ? "Ready," : "Pending,"),
321 obj->oa.bo ? "yes," : "no,",
322 brw_is_perf_query_ready(ctx, o) ? "ready," : "not ready,",
323 obj->oa.results_accumulated ? "accumulated" : "not accumulated");
324 break;
325 case PIPELINE_STATS:
326 DBG("%4d: %-6s %-8s BO: %-4s\n",
327 id,
328 o->Used ? "Dirty," : "New,",
329 o->Active ? "Active," : (o->Ready ? "Ready," : "Pending,"),
330 obj->pipeline_stats.bo ? "yes" : "no");
331 break;
332 default:
333 unreachable("Unknown query type");
334 break;
335 }
336 }
337
338 static void
339 dump_perf_queries(struct brw_context *brw)
340 {
341 struct gl_context *ctx = &brw->ctx;
342 DBG("Queries: (Open queries = %d, OA users = %d)\n",
343 brw->perfquery.n_active_oa_queries, brw->perfquery.n_oa_users);
344 _mesa_HashWalk(ctx->PerfQuery.Objects, dump_perf_query_callback, brw);
345 }
346
347 /******************************************************************************/
348
349 static struct brw_oa_sample_buf *
350 get_free_sample_buf(struct brw_context *brw)
351 {
352 struct exec_node *node = exec_list_pop_head(&brw->perfquery.free_sample_buffers);
353 struct brw_oa_sample_buf *buf;
354
355 if (node)
356 buf = exec_node_data(struct brw_oa_sample_buf, node, link);
357 else {
358 buf = ralloc_size(brw, sizeof(*buf));
359
360 exec_node_init(&buf->link);
361 buf->refcount = 0;
362 buf->len = 0;
363 }
364
365 return buf;
366 }
367
368 static void
369 reap_old_sample_buffers(struct brw_context *brw)
370 {
371 struct exec_node *tail_node =
372 exec_list_get_tail(&brw->perfquery.sample_buffers);
373 struct brw_oa_sample_buf *tail_buf =
374 exec_node_data(struct brw_oa_sample_buf, tail_node, link);
375
376 /* Remove all old, unreferenced sample buffers walking forward from
377 * the head of the list, except always leave at least one node in
378 * the list so we always have a node to reference when we Begin
379 * a new query.
380 */
381 foreach_list_typed_safe(struct brw_oa_sample_buf, buf, link,
382 &brw->perfquery.sample_buffers)
383 {
384 if (buf->refcount == 0 && buf != tail_buf) {
385 exec_node_remove(&buf->link);
386 exec_list_push_head(&brw->perfquery.free_sample_buffers, &buf->link);
387 } else
388 return;
389 }
390 }
391
392 static void
393 free_sample_bufs(struct brw_context *brw)
394 {
395 foreach_list_typed_safe(struct brw_oa_sample_buf, buf, link,
396 &brw->perfquery.free_sample_buffers)
397 ralloc_free(buf);
398
399 exec_list_make_empty(&brw->perfquery.free_sample_buffers);
400 }
401
402 /******************************************************************************/
403
404 /**
405 * Driver hook for glGetPerfQueryInfoINTEL().
406 */
407 static void
408 brw_get_perf_query_info(struct gl_context *ctx,
409 unsigned query_index,
410 const char **name,
411 GLuint *data_size,
412 GLuint *n_counters,
413 GLuint *n_active)
414 {
415 struct brw_context *brw = brw_context(ctx);
416 const struct brw_perf_query_info *query =
417 &brw->perfquery.queries[query_index];
418
419 *name = query->name;
420 *data_size = query->data_size;
421 *n_counters = query->n_counters;
422
423 switch (query->kind) {
424 case OA_COUNTERS:
425 case OA_COUNTERS_RAW:
426 *n_active = brw->perfquery.n_active_oa_queries;
427 break;
428
429 case PIPELINE_STATS:
430 *n_active = brw->perfquery.n_active_pipeline_stats_queries;
431 break;
432
433 default:
434 unreachable("Unknown query type");
435 break;
436 }
437 }
438
439 /**
440 * Driver hook for glGetPerfCounterInfoINTEL().
441 */
442 static void
443 brw_get_perf_counter_info(struct gl_context *ctx,
444 unsigned query_index,
445 unsigned counter_index,
446 const char **name,
447 const char **desc,
448 GLuint *offset,
449 GLuint *data_size,
450 GLuint *type_enum,
451 GLuint *data_type_enum,
452 GLuint64 *raw_max)
453 {
454 struct brw_context *brw = brw_context(ctx);
455 const struct brw_perf_query_info *query =
456 &brw->perfquery.queries[query_index];
457 const struct brw_perf_query_counter *counter =
458 &query->counters[counter_index];
459
460 *name = counter->name;
461 *desc = counter->desc;
462 *offset = counter->offset;
463 *data_size = counter->size;
464 *type_enum = counter->type;
465 *data_type_enum = counter->data_type;
466 *raw_max = counter->raw_max;
467 }
468
469 /******************************************************************************/
470
471 /**
472 * Emit MI_STORE_REGISTER_MEM commands to capture all of the
473 * pipeline statistics for the performance query object.
474 */
475 static void
476 snapshot_statistics_registers(struct brw_context *brw,
477 struct brw_perf_query_object *obj,
478 uint32_t offset_in_bytes)
479 {
480 const struct brw_perf_query_info *query = obj->query;
481 const int n_counters = query->n_counters;
482
483 for (int i = 0; i < n_counters; i++) {
484 const struct brw_perf_query_counter *counter = &query->counters[i];
485
486 assert(counter->data_type == GL_PERFQUERY_COUNTER_DATA_UINT64_INTEL);
487
488 brw_store_register_mem64(brw, obj->pipeline_stats.bo,
489 counter->pipeline_stat.reg,
490 offset_in_bytes + i * sizeof(uint64_t));
491 }
492 }
493
494 /**
495 * Add a query to the global list of "unaccumulated queries."
496 *
497 * Queries are tracked here until all the associated OA reports have
498 * been accumulated via accumulate_oa_reports() after the end
499 * MI_REPORT_PERF_COUNT has landed in query->oa.bo.
500 */
501 static void
502 add_to_unaccumulated_query_list(struct brw_context *brw,
503 struct brw_perf_query_object *obj)
504 {
505 if (brw->perfquery.unaccumulated_elements >=
506 brw->perfquery.unaccumulated_array_size)
507 {
508 brw->perfquery.unaccumulated_array_size *= 1.5;
509 brw->perfquery.unaccumulated =
510 reralloc(brw, brw->perfquery.unaccumulated,
511 struct brw_perf_query_object *,
512 brw->perfquery.unaccumulated_array_size);
513 }
514
515 brw->perfquery.unaccumulated[brw->perfquery.unaccumulated_elements++] = obj;
516 }
517
518 /**
519 * Remove a query from the global list of unaccumulated queries once
520 * after successfully accumulating the OA reports associated with the
521 * query in accumulate_oa_reports() or when discarding unwanted query
522 * results.
523 */
524 static void
525 drop_from_unaccumulated_query_list(struct brw_context *brw,
526 struct brw_perf_query_object *obj)
527 {
528 for (int i = 0; i < brw->perfquery.unaccumulated_elements; i++) {
529 if (brw->perfquery.unaccumulated[i] == obj) {
530 int last_elt = --brw->perfquery.unaccumulated_elements;
531
532 if (i == last_elt)
533 brw->perfquery.unaccumulated[i] = NULL;
534 else {
535 brw->perfquery.unaccumulated[i] =
536 brw->perfquery.unaccumulated[last_elt];
537 }
538
539 break;
540 }
541 }
542
543 /* Drop our samples_head reference so that associated periodic
544 * sample data buffers can potentially be reaped if they aren't
545 * referenced by any other queries...
546 */
547
548 struct brw_oa_sample_buf *buf =
549 exec_node_data(struct brw_oa_sample_buf, obj->oa.samples_head, link);
550
551 assert(buf->refcount > 0);
552 buf->refcount--;
553
554 obj->oa.samples_head = NULL;
555
556 reap_old_sample_buffers(brw);
557 }
558
559 /**
560 * Given pointers to starting and ending OA snapshots, add the deltas for each
561 * counter to the results.
562 */
563 static void
564 add_deltas(struct brw_context *brw,
565 struct brw_perf_query_object *obj,
566 const uint32_t *start,
567 const uint32_t *end)
568 {
569 const struct brw_perf_query_info *query = obj->query;
570 uint64_t *accumulator = obj->oa.accumulator;
571 int idx = 0;
572 int i;
573
574 obj->oa.reports_accumulated++;
575
576 switch (query->oa_format) {
577 case I915_OA_FORMAT_A32u40_A4u32_B8_C8:
578 brw_perf_query_accumulate_uint32(start + 1, end + 1, accumulator + idx++); /* timestamp */
579 brw_perf_query_accumulate_uint32(start + 3, end + 3, accumulator + idx++); /* clock */
580
581 /* 32x 40bit A counters... */
582 for (i = 0; i < 32; i++)
583 brw_perf_query_accumulate_uint40(i, start, end, accumulator + idx++);
584
585 /* 4x 32bit A counters... */
586 for (i = 0; i < 4; i++)
587 brw_perf_query_accumulate_uint32(start + 36 + i, end + 36 + i,
588 accumulator + idx++);
589
590 /* 8x 32bit B counters + 8x 32bit C counters... */
591 for (i = 0; i < 16; i++)
592 brw_perf_query_accumulate_uint32(start + 48 + i, end + 48 + i,
593 accumulator + idx++);
594
595 break;
596 case I915_OA_FORMAT_A45_B8_C8:
597 brw_perf_query_accumulate_uint32(start + 1, end + 1, accumulator); /* timestamp */
598
599 for (i = 0; i < 61; i++)
600 brw_perf_query_accumulate_uint32(start + 3 + i, end + 3 + i, accumulator + 1 + i);
601
602 break;
603 default:
604 unreachable("Can't accumulate OA counters in unknown format");
605 }
606 }
607
608 static bool
609 inc_n_oa_users(struct brw_context *brw)
610 {
611 if (brw->perfquery.n_oa_users == 0 &&
612 drmIoctl(brw->perfquery.oa_stream_fd,
613 I915_PERF_IOCTL_ENABLE, 0) < 0)
614 {
615 return false;
616 }
617 ++brw->perfquery.n_oa_users;
618
619 return true;
620 }
621
622 static void
623 dec_n_oa_users(struct brw_context *brw)
624 {
625 /* Disabling the i915 perf stream will effectively disable the OA
626 * counters. Note it's important to be sure there are no outstanding
627 * MI_RPC commands at this point since they could stall the CS
628 * indefinitely once OACONTROL is disabled.
629 */
630 --brw->perfquery.n_oa_users;
631 if (brw->perfquery.n_oa_users == 0 &&
632 drmIoctl(brw->perfquery.oa_stream_fd, I915_PERF_IOCTL_DISABLE, 0) < 0)
633 {
634 DBG("WARNING: Error disabling i915 perf stream: %m\n");
635 }
636 }
637
638 /* In general if we see anything spurious while accumulating results,
639 * we don't try and continue accumulating the current query, hoping
640 * for the best, we scrap anything outstanding, and then hope for the
641 * best with new queries.
642 */
643 static void
644 discard_all_queries(struct brw_context *brw)
645 {
646 while (brw->perfquery.unaccumulated_elements) {
647 struct brw_perf_query_object *obj = brw->perfquery.unaccumulated[0];
648
649 obj->oa.results_accumulated = true;
650 drop_from_unaccumulated_query_list(brw, brw->perfquery.unaccumulated[0]);
651
652 dec_n_oa_users(brw);
653 }
654 }
655
656 enum OaReadStatus {
657 OA_READ_STATUS_ERROR,
658 OA_READ_STATUS_UNFINISHED,
659 OA_READ_STATUS_FINISHED,
660 };
661
662 static enum OaReadStatus
663 read_oa_samples_until(struct brw_context *brw,
664 uint32_t start_timestamp,
665 uint32_t end_timestamp)
666 {
667 struct exec_node *tail_node =
668 exec_list_get_tail(&brw->perfquery.sample_buffers);
669 struct brw_oa_sample_buf *tail_buf =
670 exec_node_data(struct brw_oa_sample_buf, tail_node, link);
671 uint32_t last_timestamp = tail_buf->last_timestamp;
672
673 while (1) {
674 struct brw_oa_sample_buf *buf = get_free_sample_buf(brw);
675 uint32_t offset;
676 int len;
677
678 while ((len = read(brw->perfquery.oa_stream_fd, buf->buf,
679 sizeof(buf->buf))) < 0 && errno == EINTR)
680 ;
681
682 if (len <= 0) {
683 exec_list_push_tail(&brw->perfquery.free_sample_buffers, &buf->link);
684
685 if (len < 0) {
686 if (errno == EAGAIN)
687 return ((last_timestamp - start_timestamp) >=
688 (end_timestamp - start_timestamp)) ?
689 OA_READ_STATUS_FINISHED :
690 OA_READ_STATUS_UNFINISHED;
691 else {
692 DBG("Error reading i915 perf samples: %m\n");
693 }
694 } else
695 DBG("Spurious EOF reading i915 perf samples\n");
696
697 return OA_READ_STATUS_ERROR;
698 }
699
700 buf->len = len;
701 exec_list_push_tail(&brw->perfquery.sample_buffers, &buf->link);
702
703 /* Go through the reports and update the last timestamp. */
704 offset = 0;
705 while (offset < buf->len) {
706 const struct drm_i915_perf_record_header *header =
707 (const struct drm_i915_perf_record_header *) &buf->buf[offset];
708 uint32_t *report = (uint32_t *) (header + 1);
709
710 if (header->type == DRM_I915_PERF_RECORD_SAMPLE)
711 last_timestamp = report[1];
712
713 offset += header->size;
714 }
715
716 buf->last_timestamp = last_timestamp;
717 }
718
719 unreachable("not reached");
720 return OA_READ_STATUS_ERROR;
721 }
722
723 /**
724 * Try to read all the reports until either the delimiting timestamp
725 * or an error arises.
726 */
727 static bool
728 read_oa_samples_for_query(struct brw_context *brw,
729 struct brw_perf_query_object *obj)
730 {
731 uint32_t *start;
732 uint32_t *last;
733 uint32_t *end;
734
735 /* We need the MI_REPORT_PERF_COUNT to land before we can start
736 * accumulate. */
737 assert(!brw_batch_references(&brw->batch, obj->oa.bo) &&
738 !brw_bo_busy(obj->oa.bo));
739
740 /* Map the BO once here and let accumulate_oa_reports() unmap
741 * it. */
742 if (obj->oa.map == NULL)
743 obj->oa.map = brw_bo_map(brw, obj->oa.bo, MAP_READ);
744
745 start = last = obj->oa.map;
746 end = obj->oa.map + MI_RPC_BO_END_OFFSET_BYTES;
747
748 if (start[0] != obj->oa.begin_report_id) {
749 DBG("Spurious start report id=%"PRIu32"\n", start[0]);
750 return true;
751 }
752 if (end[0] != (obj->oa.begin_report_id + 1)) {
753 DBG("Spurious end report id=%"PRIu32"\n", end[0]);
754 return true;
755 }
756
757 /* Read the reports until the end timestamp. */
758 switch (read_oa_samples_until(brw, start[1], end[1])) {
759 case OA_READ_STATUS_ERROR:
760 /* Fallthrough and let accumulate_oa_reports() deal with the
761 * error. */
762 case OA_READ_STATUS_FINISHED:
763 return true;
764 case OA_READ_STATUS_UNFINISHED:
765 return false;
766 }
767
768 unreachable("invalid read status");
769 return false;
770 }
771
772 /**
773 * Accumulate raw OA counter values based on deltas between pairs of
774 * OA reports.
775 *
776 * Accumulation starts from the first report captured via
777 * MI_REPORT_PERF_COUNT (MI_RPC) by brw_begin_perf_query() until the
778 * last MI_RPC report requested by brw_end_perf_query(). Between these
779 * two reports there may also some number of periodically sampled OA
780 * reports collected via the i915 perf interface - depending on the
781 * duration of the query.
782 *
783 * These periodic snapshots help to ensure we handle counter overflow
784 * correctly by being frequent enough to ensure we don't miss multiple
785 * overflows of a counter between snapshots. For Gen8+ the i915 perf
786 * snapshots provide the extra context-switch reports that let us
787 * subtract out the progress of counters associated with other
788 * contexts running on the system.
789 */
790 static void
791 accumulate_oa_reports(struct brw_context *brw,
792 struct brw_perf_query_object *obj)
793 {
794 const struct gen_device_info *devinfo = &brw->screen->devinfo;
795 struct gl_perf_query_object *o = &obj->base;
796 uint32_t *start;
797 uint32_t *last;
798 uint32_t *end;
799 struct exec_node *first_samples_node;
800 bool in_ctx = true;
801 int out_duration = 0;
802
803 assert(o->Ready);
804 assert(obj->oa.map != NULL);
805
806 start = last = obj->oa.map;
807 end = obj->oa.map + MI_RPC_BO_END_OFFSET_BYTES;
808
809 if (start[0] != obj->oa.begin_report_id) {
810 DBG("Spurious start report id=%"PRIu32"\n", start[0]);
811 goto error;
812 }
813 if (end[0] != (obj->oa.begin_report_id + 1)) {
814 DBG("Spurious end report id=%"PRIu32"\n", end[0]);
815 goto error;
816 }
817
818 obj->oa.hw_id = start[2];
819
820 /* See if we have any periodic reports to accumulate too... */
821
822 /* N.B. The oa.samples_head was set when the query began and
823 * pointed to the tail of the brw->perfquery.sample_buffers list at
824 * the time the query started. Since the buffer existed before the
825 * first MI_REPORT_PERF_COUNT command was emitted we therefore know
826 * that no data in this particular node's buffer can possibly be
827 * associated with the query - so skip ahead one...
828 */
829 first_samples_node = obj->oa.samples_head->next;
830
831 foreach_list_typed_from(struct brw_oa_sample_buf, buf, link,
832 &brw->perfquery.sample_buffers,
833 first_samples_node)
834 {
835 int offset = 0;
836
837 while (offset < buf->len) {
838 const struct drm_i915_perf_record_header *header =
839 (const struct drm_i915_perf_record_header *)(buf->buf + offset);
840
841 assert(header->size != 0);
842 assert(header->size <= buf->len);
843
844 offset += header->size;
845
846 switch (header->type) {
847 case DRM_I915_PERF_RECORD_SAMPLE: {
848 uint32_t *report = (uint32_t *)(header + 1);
849 bool add = true;
850
851 /* Ignore reports that come before the start marker.
852 * (Note: takes care to allow overflow of 32bit timestamps)
853 */
854 if (brw_timebase_scale(brw, report[1] - start[1]) > 5000000000)
855 continue;
856
857 /* Ignore reports that come after the end marker.
858 * (Note: takes care to allow overflow of 32bit timestamps)
859 */
860 if (brw_timebase_scale(brw, report[1] - end[1]) <= 5000000000)
861 goto end;
862
863 /* For Gen8+ since the counters continue while other
864 * contexts are running we need to discount any unrelated
865 * deltas. The hardware automatically generates a report
866 * on context switch which gives us a new reference point
867 * to continuing adding deltas from.
868 *
869 * For Haswell we can rely on the HW to stop the progress
870 * of OA counters while any other context is acctive.
871 */
872 if (devinfo->gen >= 8) {
873 if (in_ctx && report[2] != obj->oa.hw_id) {
874 DBG("i915 perf: Switch AWAY (observed by ID change)\n");
875 in_ctx = false;
876 out_duration = 0;
877 } else if (in_ctx == false && report[2] == obj->oa.hw_id) {
878 DBG("i915 perf: Switch TO\n");
879 in_ctx = true;
880
881 /* From experimentation in IGT, we found that the OA unit
882 * might label some report as "idle" (using an invalid
883 * context ID), right after a report for a given context.
884 * Deltas generated by those reports actually belong to the
885 * previous context, even though they're not labelled as
886 * such.
887 *
888 * We didn't *really* Switch AWAY in the case that we e.g.
889 * saw a single periodic report while idle...
890 */
891 if (out_duration >= 1)
892 add = false;
893 } else if (in_ctx) {
894 assert(report[2] == obj->oa.hw_id);
895 DBG("i915 perf: Continuation IN\n");
896 } else {
897 assert(report[2] != obj->oa.hw_id);
898 DBG("i915 perf: Continuation OUT\n");
899 add = false;
900 out_duration++;
901 }
902 }
903
904 if (add)
905 add_deltas(brw, obj, last, report);
906
907 last = report;
908
909 break;
910 }
911
912 case DRM_I915_PERF_RECORD_OA_BUFFER_LOST:
913 DBG("i915 perf: OA error: all reports lost\n");
914 goto error;
915 case DRM_I915_PERF_RECORD_OA_REPORT_LOST:
916 DBG("i915 perf: OA report lost\n");
917 break;
918 }
919 }
920 }
921
922 end:
923
924 add_deltas(brw, obj, last, end);
925
926 DBG("Marking %d accumulated - results gathered\n", o->Id);
927
928 obj->oa.results_accumulated = true;
929 drop_from_unaccumulated_query_list(brw, obj);
930 dec_n_oa_users(brw);
931
932 return;
933
934 error:
935
936 discard_all_queries(brw);
937 }
938
939 /******************************************************************************/
940
941 static bool
942 open_i915_perf_oa_stream(struct brw_context *brw,
943 int metrics_set_id,
944 int report_format,
945 int period_exponent,
946 int drm_fd,
947 uint32_t ctx_id)
948 {
949 uint64_t properties[] = {
950 /* Single context sampling */
951 DRM_I915_PERF_PROP_CTX_HANDLE, ctx_id,
952
953 /* Include OA reports in samples */
954 DRM_I915_PERF_PROP_SAMPLE_OA, true,
955
956 /* OA unit configuration */
957 DRM_I915_PERF_PROP_OA_METRICS_SET, metrics_set_id,
958 DRM_I915_PERF_PROP_OA_FORMAT, report_format,
959 DRM_I915_PERF_PROP_OA_EXPONENT, period_exponent,
960 };
961 struct drm_i915_perf_open_param param = {
962 .flags = I915_PERF_FLAG_FD_CLOEXEC |
963 I915_PERF_FLAG_FD_NONBLOCK |
964 I915_PERF_FLAG_DISABLED,
965 .num_properties = ARRAY_SIZE(properties) / 2,
966 .properties_ptr = (uintptr_t) properties,
967 };
968 int fd = drmIoctl(drm_fd, DRM_IOCTL_I915_PERF_OPEN, &param);
969 if (fd == -1) {
970 DBG("Error opening i915 perf OA stream: %m\n");
971 return false;
972 }
973
974 brw->perfquery.oa_stream_fd = fd;
975
976 brw->perfquery.current_oa_metrics_set_id = metrics_set_id;
977 brw->perfquery.current_oa_format = report_format;
978
979 return true;
980 }
981
982 static void
983 close_perf(struct brw_context *brw,
984 const struct brw_perf_query_info *query)
985 {
986 if (brw->perfquery.oa_stream_fd != -1) {
987 close(brw->perfquery.oa_stream_fd);
988 brw->perfquery.oa_stream_fd = -1;
989 }
990 if (query->kind == OA_COUNTERS_RAW) {
991 struct brw_perf_query_info *raw_query =
992 (struct brw_perf_query_info *) query;
993 raw_query->oa_metrics_set_id = 0;
994 }
995 }
996
997 static void
998 capture_frequency_stat_register(struct brw_context *brw,
999 struct brw_bo *bo,
1000 uint32_t bo_offset)
1001 {
1002 const struct gen_device_info *devinfo = &brw->screen->devinfo;
1003
1004 if (devinfo->gen >= 7 && devinfo->gen <= 8 &&
1005 !devinfo->is_baytrail && !devinfo->is_cherryview) {
1006 brw_store_register_mem32(brw, bo, GEN7_RPSTAT1, bo_offset);
1007 } else if (devinfo->gen >= 9) {
1008 brw_store_register_mem32(brw, bo, GEN9_RPSTAT0, bo_offset);
1009 }
1010 }
1011
1012 /**
1013 * Driver hook for glBeginPerfQueryINTEL().
1014 */
1015 static bool
1016 brw_begin_perf_query(struct gl_context *ctx,
1017 struct gl_perf_query_object *o)
1018 {
1019 struct brw_context *brw = brw_context(ctx);
1020 struct brw_perf_query_object *obj = brw_perf_query(o);
1021 const struct brw_perf_query_info *query = obj->query;
1022
1023 /* We can assume the frontend hides mistaken attempts to Begin a
1024 * query object multiple times before its End. Similarly if an
1025 * application reuses a query object before results have arrived
1026 * the frontend will wait for prior results so we don't need
1027 * to support abandoning in-flight results.
1028 */
1029 assert(!o->Active);
1030 assert(!o->Used || o->Ready); /* no in-flight query to worry about */
1031
1032 DBG("Begin(%d)\n", o->Id);
1033
1034 /* XXX: We have to consider that the command parser unit that parses batch
1035 * buffer commands and is used to capture begin/end counter snapshots isn't
1036 * implicitly synchronized with what's currently running across other GPU
1037 * units (such as the EUs running shaders) that the performance counters are
1038 * associated with.
1039 *
1040 * The intention of performance queries is to measure the work associated
1041 * with commands between the begin/end delimiters and so for that to be the
1042 * case we need to explicitly synchronize the parsing of commands to capture
1043 * Begin/End counter snapshots with what's running across other parts of the
1044 * GPU.
1045 *
1046 * When the command parser reaches a Begin marker it effectively needs to
1047 * drain everything currently running on the GPU until the hardware is idle
1048 * before capturing the first snapshot of counters - otherwise the results
1049 * would also be measuring the effects of earlier commands.
1050 *
1051 * When the command parser reaches an End marker it needs to stall until
1052 * everything currently running on the GPU has finished before capturing the
1053 * end snapshot - otherwise the results won't be a complete representation
1054 * of the work.
1055 *
1056 * Theoretically there could be opportunities to minimize how much of the
1057 * GPU pipeline is drained, or that we stall for, when we know what specific
1058 * units the performance counters being queried relate to but we don't
1059 * currently attempt to be clever here.
1060 *
1061 * Note: with our current simple approach here then for back-to-back queries
1062 * we will redundantly emit duplicate commands to synchronize the command
1063 * streamer with the rest of the GPU pipeline, but we assume that in HW the
1064 * second synchronization is effectively a NOOP.
1065 *
1066 * N.B. The final results are based on deltas of counters between (inside)
1067 * Begin/End markers so even though the total wall clock time of the
1068 * workload is stretched by larger pipeline bubbles the bubbles themselves
1069 * are generally invisible to the query results. Whether that's a good or a
1070 * bad thing depends on the use case. For a lower real-time impact while
1071 * capturing metrics then periodic sampling may be a better choice than
1072 * INTEL_performance_query.
1073 *
1074 *
1075 * This is our Begin synchronization point to drain current work on the
1076 * GPU before we capture our first counter snapshot...
1077 */
1078 brw_emit_mi_flush(brw);
1079
1080 switch (query->kind) {
1081 case OA_COUNTERS:
1082 case OA_COUNTERS_RAW: {
1083
1084 /* Opening an i915 perf stream implies exclusive access to the OA unit
1085 * which will generate counter reports for a specific counter set with a
1086 * specific layout/format so we can't begin any OA based queries that
1087 * require a different counter set or format unless we get an opportunity
1088 * to close the stream and open a new one...
1089 */
1090 uint64_t metric_id = brw_perf_query_get_metric_id(brw, query);
1091
1092 if (brw->perfquery.oa_stream_fd != -1 &&
1093 brw->perfquery.current_oa_metrics_set_id != metric_id) {
1094
1095 if (brw->perfquery.n_oa_users != 0) {
1096 DBG("WARNING: Begin(%d) failed already using perf config=%i/%"PRIu64"\n",
1097 o->Id, brw->perfquery.current_oa_metrics_set_id, metric_id);
1098 return false;
1099 } else
1100 close_perf(brw, query);
1101 }
1102
1103 /* If the OA counters aren't already on, enable them. */
1104 if (brw->perfquery.oa_stream_fd == -1) {
1105 __DRIscreen *screen = brw->screen->driScrnPriv;
1106 const struct gen_device_info *devinfo = &brw->screen->devinfo;
1107
1108 /* The period_exponent gives a sampling period as follows:
1109 * sample_period = timestamp_period * 2^(period_exponent + 1)
1110 *
1111 * The timestamps increments every 80ns (HSW), ~52ns (GEN9LP) or
1112 * ~83ns (GEN8/9).
1113 *
1114 * The counter overflow period is derived from the EuActive counter
1115 * which reads a counter that increments by the number of clock
1116 * cycles multiplied by the number of EUs. It can be calculated as:
1117 *
1118 * 2^(number of bits in A counter) / (n_eus * max_gen_freq * 2)
1119 *
1120 * (E.g. 40 EUs @ 1GHz = ~53ms)
1121 *
1122 * We select a sampling period inferior to that overflow period to
1123 * ensure we cannot see more than 1 counter overflow, otherwise we
1124 * could loose information.
1125 */
1126
1127 int a_counter_in_bits = 32;
1128 if (devinfo->gen >= 8)
1129 a_counter_in_bits = 40;
1130
1131 uint64_t overflow_period = pow(2, a_counter_in_bits) /
1132 (brw->perfquery.sys_vars.n_eus *
1133 /* drop 1GHz freq to have units in nanoseconds */
1134 2);
1135
1136 DBG("A counter overflow period: %"PRIu64"ns, %"PRIu64"ms (n_eus=%"PRIu64")\n",
1137 overflow_period, overflow_period / 1000000ul, brw->perfquery.sys_vars.n_eus);
1138
1139 int period_exponent = 0;
1140 uint64_t prev_sample_period, next_sample_period;
1141 for (int e = 0; e < 30; e++) {
1142 prev_sample_period = 1000000000ull * pow(2, e + 1) / devinfo->timestamp_frequency;
1143 next_sample_period = 1000000000ull * pow(2, e + 2) / devinfo->timestamp_frequency;
1144
1145 /* Take the previous sampling period, lower than the overflow
1146 * period.
1147 */
1148 if (prev_sample_period < overflow_period &&
1149 next_sample_period > overflow_period)
1150 period_exponent = e + 1;
1151 }
1152
1153 if (period_exponent == 0) {
1154 DBG("WARNING: enable to find a sampling exponent\n");
1155 return false;
1156 }
1157
1158 DBG("OA sampling exponent: %i ~= %"PRIu64"ms\n", period_exponent,
1159 prev_sample_period / 1000000ul);
1160
1161 if (!open_i915_perf_oa_stream(brw,
1162 metric_id,
1163 query->oa_format,
1164 period_exponent,
1165 screen->fd, /* drm fd */
1166 brw->hw_ctx))
1167 return false;
1168 } else {
1169 assert(brw->perfquery.current_oa_metrics_set_id == metric_id &&
1170 brw->perfquery.current_oa_format == query->oa_format);
1171 }
1172
1173 if (!inc_n_oa_users(brw)) {
1174 DBG("WARNING: Error enabling i915 perf stream: %m\n");
1175 return false;
1176 }
1177
1178 if (obj->oa.bo) {
1179 brw_bo_unreference(obj->oa.bo);
1180 obj->oa.bo = NULL;
1181 }
1182
1183 obj->oa.bo =
1184 brw_bo_alloc(brw->bufmgr, "perf. query OA MI_RPC bo", MI_RPC_BO_SIZE);
1185 #ifdef DEBUG
1186 /* Pre-filling the BO helps debug whether writes landed. */
1187 void *map = brw_bo_map(brw, obj->oa.bo, MAP_WRITE);
1188 memset(map, 0x80, MI_RPC_BO_SIZE);
1189 brw_bo_unmap(obj->oa.bo);
1190 #endif
1191
1192 obj->oa.begin_report_id = brw->perfquery.next_query_start_report_id;
1193 brw->perfquery.next_query_start_report_id += 2;
1194
1195 /* We flush the batchbuffer here to minimize the chances that MI_RPC
1196 * delimiting commands end up in different batchbuffers. If that's the
1197 * case, the measurement will include the time it takes for the kernel
1198 * scheduler to load a new request into the hardware. This is manifested in
1199 * tools like frameretrace by spikes in the "GPU Core Clocks" counter.
1200 */
1201 intel_batchbuffer_flush(brw);
1202
1203 /* Take a starting OA counter snapshot. */
1204 brw->vtbl.emit_mi_report_perf_count(brw, obj->oa.bo, 0,
1205 obj->oa.begin_report_id);
1206 capture_frequency_stat_register(brw, obj->oa.bo, MI_FREQ_START_OFFSET_BYTES);
1207
1208 ++brw->perfquery.n_active_oa_queries;
1209
1210 /* No already-buffered samples can possibly be associated with this query
1211 * so create a marker within the list of sample buffers enabling us to
1212 * easily ignore earlier samples when processing this query after
1213 * completion.
1214 */
1215 assert(!exec_list_is_empty(&brw->perfquery.sample_buffers));
1216 obj->oa.samples_head = exec_list_get_tail(&brw->perfquery.sample_buffers);
1217
1218 struct brw_oa_sample_buf *buf =
1219 exec_node_data(struct brw_oa_sample_buf, obj->oa.samples_head, link);
1220
1221 /* This reference will ensure that future/following sample
1222 * buffers (that may relate to this query) can't be freed until
1223 * this drops to zero.
1224 */
1225 buf->refcount++;
1226
1227 obj->oa.hw_id = 0xffffffff;
1228 memset(obj->oa.accumulator, 0, sizeof(obj->oa.accumulator));
1229 obj->oa.results_accumulated = false;
1230
1231 add_to_unaccumulated_query_list(brw, obj);
1232 break;
1233 }
1234
1235 case PIPELINE_STATS:
1236 if (obj->pipeline_stats.bo) {
1237 brw_bo_unreference(obj->pipeline_stats.bo);
1238 obj->pipeline_stats.bo = NULL;
1239 }
1240
1241 obj->pipeline_stats.bo =
1242 brw_bo_alloc(brw->bufmgr, "perf. query pipeline stats bo",
1243 STATS_BO_SIZE);
1244
1245 /* Take starting snapshots. */
1246 snapshot_statistics_registers(brw, obj, 0);
1247
1248 ++brw->perfquery.n_active_pipeline_stats_queries;
1249 break;
1250
1251 default:
1252 unreachable("Unknown query type");
1253 break;
1254 }
1255
1256 if (INTEL_DEBUG & DEBUG_PERFMON)
1257 dump_perf_queries(brw);
1258
1259 return true;
1260 }
1261
1262 /**
1263 * Driver hook for glEndPerfQueryINTEL().
1264 */
1265 static void
1266 brw_end_perf_query(struct gl_context *ctx,
1267 struct gl_perf_query_object *o)
1268 {
1269 struct brw_context *brw = brw_context(ctx);
1270 struct brw_perf_query_object *obj = brw_perf_query(o);
1271
1272 DBG("End(%d)\n", o->Id);
1273
1274 /* Ensure that the work associated with the queried commands will have
1275 * finished before taking our query end counter readings.
1276 *
1277 * For more details see comment in brw_begin_perf_query for
1278 * corresponding flush.
1279 */
1280 brw_emit_mi_flush(brw);
1281
1282 switch (obj->query->kind) {
1283 case OA_COUNTERS:
1284 case OA_COUNTERS_RAW:
1285
1286 /* NB: It's possible that the query will have already been marked
1287 * as 'accumulated' if an error was seen while reading samples
1288 * from perf. In this case we mustn't try and emit a closing
1289 * MI_RPC command in case the OA unit has already been disabled
1290 */
1291 if (!obj->oa.results_accumulated) {
1292 /* Take an ending OA counter snapshot. */
1293 capture_frequency_stat_register(brw, obj->oa.bo, MI_FREQ_END_OFFSET_BYTES);
1294 brw->vtbl.emit_mi_report_perf_count(brw, obj->oa.bo,
1295 MI_RPC_BO_END_OFFSET_BYTES,
1296 obj->oa.begin_report_id + 1);
1297 }
1298
1299 --brw->perfquery.n_active_oa_queries;
1300
1301 /* NB: even though the query has now ended, it can't be accumulated
1302 * until the end MI_REPORT_PERF_COUNT snapshot has been written
1303 * to query->oa.bo
1304 */
1305 break;
1306
1307 case PIPELINE_STATS:
1308 snapshot_statistics_registers(brw, obj,
1309 STATS_BO_END_OFFSET_BYTES);
1310 --brw->perfquery.n_active_pipeline_stats_queries;
1311 break;
1312
1313 default:
1314 unreachable("Unknown query type");
1315 break;
1316 }
1317 }
1318
1319 static void
1320 brw_wait_perf_query(struct gl_context *ctx, struct gl_perf_query_object *o)
1321 {
1322 struct brw_context *brw = brw_context(ctx);
1323 struct brw_perf_query_object *obj = brw_perf_query(o);
1324 struct brw_bo *bo = NULL;
1325
1326 assert(!o->Ready);
1327
1328 switch (obj->query->kind) {
1329 case OA_COUNTERS:
1330 case OA_COUNTERS_RAW:
1331 bo = obj->oa.bo;
1332 break;
1333
1334 case PIPELINE_STATS:
1335 bo = obj->pipeline_stats.bo;
1336 break;
1337
1338 default:
1339 unreachable("Unknown query type");
1340 break;
1341 }
1342
1343 if (bo == NULL)
1344 return;
1345
1346 /* If the current batch references our results bo then we need to
1347 * flush first...
1348 */
1349 if (brw_batch_references(&brw->batch, bo))
1350 intel_batchbuffer_flush(brw);
1351
1352 brw_bo_wait_rendering(bo);
1353
1354 /* Due to a race condition between the OA unit signaling report
1355 * availability and the report actually being written into memory,
1356 * we need to wait for all the reports to come in before we can
1357 * read them.
1358 */
1359 if (obj->query->kind == OA_COUNTERS ||
1360 obj->query->kind == OA_COUNTERS_RAW) {
1361 while (!read_oa_samples_for_query(brw, obj))
1362 ;
1363 }
1364 }
1365
1366 static bool
1367 brw_is_perf_query_ready(struct gl_context *ctx,
1368 struct gl_perf_query_object *o)
1369 {
1370 struct brw_context *brw = brw_context(ctx);
1371 struct brw_perf_query_object *obj = brw_perf_query(o);
1372
1373 if (o->Ready)
1374 return true;
1375
1376 switch (obj->query->kind) {
1377 case OA_COUNTERS:
1378 case OA_COUNTERS_RAW:
1379 return (obj->oa.results_accumulated ||
1380 (obj->oa.bo &&
1381 !brw_batch_references(&brw->batch, obj->oa.bo) &&
1382 !brw_bo_busy(obj->oa.bo) &&
1383 read_oa_samples_for_query(brw, obj)));
1384 case PIPELINE_STATS:
1385 return (obj->pipeline_stats.bo &&
1386 !brw_batch_references(&brw->batch, obj->pipeline_stats.bo) &&
1387 !brw_bo_busy(obj->pipeline_stats.bo));
1388
1389 default:
1390 unreachable("Unknown query type");
1391 break;
1392 }
1393
1394 return false;
1395 }
1396
1397 static void
1398 gen8_read_report_clock_ratios(const uint32_t *report,
1399 uint64_t *slice_freq_hz,
1400 uint64_t *unslice_freq_hz)
1401 {
1402 /* The lower 16bits of the RPT_ID field of the OA reports contains a
1403 * snapshot of the bits coming from the RP_FREQ_NORMAL register and is
1404 * divided this way :
1405 *
1406 * RPT_ID[31:25]: RP_FREQ_NORMAL[20:14] (low squashed_slice_clock_frequency)
1407 * RPT_ID[10:9]: RP_FREQ_NORMAL[22:21] (high squashed_slice_clock_frequency)
1408 * RPT_ID[8:0]: RP_FREQ_NORMAL[31:23] (squashed_unslice_clock_frequency)
1409 *
1410 * RP_FREQ_NORMAL[31:23]: Software Unslice Ratio Request
1411 * Multiple of 33.33MHz 2xclk (16 MHz 1xclk)
1412 *
1413 * RP_FREQ_NORMAL[22:14]: Software Slice Ratio Request
1414 * Multiple of 33.33MHz 2xclk (16 MHz 1xclk)
1415 */
1416
1417 uint32_t unslice_freq = report[0] & 0x1ff;
1418 uint32_t slice_freq_low = (report[0] >> 25) & 0x7f;
1419 uint32_t slice_freq_high = (report[0] >> 9) & 0x3;
1420 uint32_t slice_freq = slice_freq_low | (slice_freq_high << 7);
1421
1422 *slice_freq_hz = slice_freq * 16666667ULL;
1423 *unslice_freq_hz = unslice_freq * 16666667ULL;
1424 }
1425
1426 static void
1427 read_slice_unslice_frequencies(struct brw_context *brw,
1428 struct brw_perf_query_object *obj)
1429 {
1430 const struct gen_device_info *devinfo = &brw->screen->devinfo;
1431 uint32_t *begin_report, *end_report;
1432
1433 /* Slice/Unslice frequency is only available in the OA reports when the
1434 * "Disable OA reports due to clock ratio change" field in
1435 * OA_DEBUG_REGISTER is set to 1. This is how the kernel programs this
1436 * global register (see drivers/gpu/drm/i915/i915_perf.c)
1437 *
1438 * Documentation says this should be available on Gen9+ but experimentation
1439 * shows that Gen8 reports similar values, so we enable it there too.
1440 */
1441 if (devinfo->gen < 8)
1442 return;
1443
1444 begin_report = obj->oa.map;
1445 end_report = obj->oa.map + MI_RPC_BO_END_OFFSET_BYTES;
1446
1447 gen8_read_report_clock_ratios(begin_report,
1448 &obj->oa.slice_frequency[0],
1449 &obj->oa.unslice_frequency[0]);
1450 gen8_read_report_clock_ratios(end_report,
1451 &obj->oa.slice_frequency[1],
1452 &obj->oa.unslice_frequency[1]);
1453 }
1454
1455 static void
1456 read_gt_frequency(struct brw_context *brw,
1457 struct brw_perf_query_object *obj)
1458 {
1459 const struct gen_device_info *devinfo = &brw->screen->devinfo;
1460 uint32_t start = *((uint32_t *)(obj->oa.map + MI_FREQ_START_OFFSET_BYTES)),
1461 end = *((uint32_t *)(obj->oa.map + MI_FREQ_END_OFFSET_BYTES));
1462
1463 switch (devinfo->gen) {
1464 case 7:
1465 case 8:
1466 obj->oa.gt_frequency[0] = GET_FIELD(start, GEN7_RPSTAT1_CURR_GT_FREQ) * 50ULL;
1467 obj->oa.gt_frequency[1] = GET_FIELD(end, GEN7_RPSTAT1_CURR_GT_FREQ) * 50ULL;
1468 break;
1469 case 9:
1470 case 10:
1471 case 11:
1472 obj->oa.gt_frequency[0] = GET_FIELD(start, GEN9_RPSTAT0_CURR_GT_FREQ) * 50ULL / 3ULL;
1473 obj->oa.gt_frequency[1] = GET_FIELD(end, GEN9_RPSTAT0_CURR_GT_FREQ) * 50ULL / 3ULL;
1474 break;
1475 default:
1476 unreachable("unexpected gen");
1477 }
1478
1479 /* Put the numbers into Hz. */
1480 obj->oa.gt_frequency[0] *= 1000000ULL;
1481 obj->oa.gt_frequency[1] *= 1000000ULL;
1482 }
1483
1484 static int
1485 get_oa_counter_data(struct brw_context *brw,
1486 struct brw_perf_query_object *obj,
1487 size_t data_size,
1488 uint8_t *data)
1489 {
1490 const struct brw_perf_query_info *query = obj->query;
1491 int n_counters = query->n_counters;
1492 int written = 0;
1493
1494 for (int i = 0; i < n_counters; i++) {
1495 const struct brw_perf_query_counter *counter = &query->counters[i];
1496 uint64_t *out_uint64;
1497 float *out_float;
1498
1499 if (counter->size) {
1500 switch (counter->data_type) {
1501 case GL_PERFQUERY_COUNTER_DATA_UINT64_INTEL:
1502 out_uint64 = (uint64_t *)(data + counter->offset);
1503 *out_uint64 = counter->oa_counter_read_uint64(brw, query,
1504 obj->oa.accumulator);
1505 break;
1506 case GL_PERFQUERY_COUNTER_DATA_FLOAT_INTEL:
1507 out_float = (float *)(data + counter->offset);
1508 *out_float = counter->oa_counter_read_float(brw, query,
1509 obj->oa.accumulator);
1510 break;
1511 default:
1512 /* So far we aren't using uint32, double or bool32... */
1513 unreachable("unexpected counter data type");
1514 }
1515 written = counter->offset + counter->size;
1516 }
1517 }
1518
1519 return written;
1520 }
1521
1522 static int
1523 get_pipeline_stats_data(struct brw_context *brw,
1524 struct brw_perf_query_object *obj,
1525 size_t data_size,
1526 uint8_t *data)
1527
1528 {
1529 const struct brw_perf_query_info *query = obj->query;
1530 int n_counters = obj->query->n_counters;
1531 uint8_t *p = data;
1532
1533 uint64_t *start = brw_bo_map(brw, obj->pipeline_stats.bo, MAP_READ);
1534 uint64_t *end = start + (STATS_BO_END_OFFSET_BYTES / sizeof(uint64_t));
1535
1536 for (int i = 0; i < n_counters; i++) {
1537 const struct brw_perf_query_counter *counter = &query->counters[i];
1538 uint64_t value = end[i] - start[i];
1539
1540 if (counter->pipeline_stat.numerator !=
1541 counter->pipeline_stat.denominator) {
1542 value *= counter->pipeline_stat.numerator;
1543 value /= counter->pipeline_stat.denominator;
1544 }
1545
1546 *((uint64_t *)p) = value;
1547 p += 8;
1548 }
1549
1550 brw_bo_unmap(obj->pipeline_stats.bo);
1551
1552 return p - data;
1553 }
1554
1555 /**
1556 * Driver hook for glGetPerfQueryDataINTEL().
1557 */
1558 static void
1559 brw_get_perf_query_data(struct gl_context *ctx,
1560 struct gl_perf_query_object *o,
1561 GLsizei data_size,
1562 GLuint *data,
1563 GLuint *bytes_written)
1564 {
1565 struct brw_context *brw = brw_context(ctx);
1566 struct brw_perf_query_object *obj = brw_perf_query(o);
1567 int written = 0;
1568
1569 assert(brw_is_perf_query_ready(ctx, o));
1570
1571 DBG("GetData(%d)\n", o->Id);
1572
1573 if (INTEL_DEBUG & DEBUG_PERFMON)
1574 dump_perf_queries(brw);
1575
1576 /* We expect that the frontend only calls this hook when it knows
1577 * that results are available.
1578 */
1579 assert(o->Ready);
1580
1581 switch (obj->query->kind) {
1582 case OA_COUNTERS:
1583 case OA_COUNTERS_RAW:
1584 if (!obj->oa.results_accumulated) {
1585 read_gt_frequency(brw, obj);
1586 read_slice_unslice_frequencies(brw, obj);
1587 accumulate_oa_reports(brw, obj);
1588 assert(obj->oa.results_accumulated);
1589
1590 brw_bo_unmap(obj->oa.bo);
1591 obj->oa.map = NULL;
1592 }
1593 if (obj->query->kind == OA_COUNTERS)
1594 written = get_oa_counter_data(brw, obj, data_size, (uint8_t *)data);
1595 else
1596 written = brw_perf_query_get_mdapi_oa_data(brw, obj, data_size, (uint8_t *)data);
1597 break;
1598
1599 case PIPELINE_STATS:
1600 written = get_pipeline_stats_data(brw, obj, data_size, (uint8_t *)data);
1601 break;
1602
1603 default:
1604 unreachable("Unknown query type");
1605 break;
1606 }
1607
1608 if (bytes_written)
1609 *bytes_written = written;
1610 }
1611
1612 static struct gl_perf_query_object *
1613 brw_new_perf_query_object(struct gl_context *ctx, unsigned query_index)
1614 {
1615 struct brw_context *brw = brw_context(ctx);
1616 const struct brw_perf_query_info *query =
1617 &brw->perfquery.queries[query_index];
1618 struct brw_perf_query_object *obj =
1619 calloc(1, sizeof(struct brw_perf_query_object));
1620
1621 if (!obj)
1622 return NULL;
1623
1624 obj->query = query;
1625
1626 brw->perfquery.n_query_instances++;
1627
1628 return &obj->base;
1629 }
1630
1631 /**
1632 * Driver hook for glDeletePerfQueryINTEL().
1633 */
1634 static void
1635 brw_delete_perf_query(struct gl_context *ctx,
1636 struct gl_perf_query_object *o)
1637 {
1638 struct brw_context *brw = brw_context(ctx);
1639 struct brw_perf_query_object *obj = brw_perf_query(o);
1640
1641 /* We can assume that the frontend waits for a query to complete
1642 * before ever calling into here, so we don't have to worry about
1643 * deleting an in-flight query object.
1644 */
1645 assert(!o->Active);
1646 assert(!o->Used || o->Ready);
1647
1648 DBG("Delete(%d)\n", o->Id);
1649
1650 switch (obj->query->kind) {
1651 case OA_COUNTERS:
1652 case OA_COUNTERS_RAW:
1653 if (obj->oa.bo) {
1654 if (!obj->oa.results_accumulated) {
1655 drop_from_unaccumulated_query_list(brw, obj);
1656 dec_n_oa_users(brw);
1657 }
1658
1659 brw_bo_unreference(obj->oa.bo);
1660 obj->oa.bo = NULL;
1661 }
1662
1663 obj->oa.results_accumulated = false;
1664 break;
1665
1666 case PIPELINE_STATS:
1667 if (obj->pipeline_stats.bo) {
1668 brw_bo_unreference(obj->pipeline_stats.bo);
1669 obj->pipeline_stats.bo = NULL;
1670 }
1671 break;
1672
1673 default:
1674 unreachable("Unknown query type");
1675 break;
1676 }
1677
1678 /* As an indication that the INTEL_performance_query extension is no
1679 * longer in use, it's a good time to free our cache of sample
1680 * buffers and close any current i915-perf stream.
1681 */
1682 if (--brw->perfquery.n_query_instances == 0) {
1683 free_sample_bufs(brw);
1684 close_perf(brw, obj->query);
1685 }
1686
1687 free(obj);
1688 }
1689
1690 /******************************************************************************/
1691
1692 static void
1693 init_pipeline_statistic_query_registers(struct brw_context *brw)
1694 {
1695 const struct gen_device_info *devinfo = &brw->screen->devinfo;
1696 struct brw_perf_query_info *query = brw_perf_query_append_query_info(brw);
1697
1698 query->kind = PIPELINE_STATS;
1699 query->name = "Pipeline Statistics Registers";
1700 query->n_counters = 0;
1701 query->counters =
1702 rzalloc_array(brw, struct brw_perf_query_counter, MAX_STAT_COUNTERS);
1703
1704 brw_perf_query_info_add_basic_stat_reg(query, IA_VERTICES_COUNT,
1705 "N vertices submitted");
1706 brw_perf_query_info_add_basic_stat_reg(query, IA_PRIMITIVES_COUNT,
1707 "N primitives submitted");
1708 brw_perf_query_info_add_basic_stat_reg(query, VS_INVOCATION_COUNT,
1709 "N vertex shader invocations");
1710
1711 if (devinfo->gen == 6) {
1712 brw_perf_query_info_add_stat_reg(query, GEN6_SO_PRIM_STORAGE_NEEDED, 1, 1,
1713 "SO_PRIM_STORAGE_NEEDED",
1714 "N geometry shader stream-out primitives (total)");
1715 brw_perf_query_info_add_stat_reg(query, GEN6_SO_NUM_PRIMS_WRITTEN, 1, 1,
1716 "SO_NUM_PRIMS_WRITTEN",
1717 "N geometry shader stream-out primitives (written)");
1718 } else {
1719 brw_perf_query_info_add_stat_reg(query, GEN7_SO_PRIM_STORAGE_NEEDED(0), 1, 1,
1720 "SO_PRIM_STORAGE_NEEDED (Stream 0)",
1721 "N stream-out (stream 0) primitives (total)");
1722 brw_perf_query_info_add_stat_reg(query, GEN7_SO_PRIM_STORAGE_NEEDED(1), 1, 1,
1723 "SO_PRIM_STORAGE_NEEDED (Stream 1)",
1724 "N stream-out (stream 1) primitives (total)");
1725 brw_perf_query_info_add_stat_reg(query, GEN7_SO_PRIM_STORAGE_NEEDED(2), 1, 1,
1726 "SO_PRIM_STORAGE_NEEDED (Stream 2)",
1727 "N stream-out (stream 2) primitives (total)");
1728 brw_perf_query_info_add_stat_reg(query, GEN7_SO_PRIM_STORAGE_NEEDED(3), 1, 1,
1729 "SO_PRIM_STORAGE_NEEDED (Stream 3)",
1730 "N stream-out (stream 3) primitives (total)");
1731 brw_perf_query_info_add_stat_reg(query, GEN7_SO_NUM_PRIMS_WRITTEN(0), 1, 1,
1732 "SO_NUM_PRIMS_WRITTEN (Stream 0)",
1733 "N stream-out (stream 0) primitives (written)");
1734 brw_perf_query_info_add_stat_reg(query, GEN7_SO_NUM_PRIMS_WRITTEN(1), 1, 1,
1735 "SO_NUM_PRIMS_WRITTEN (Stream 1)",
1736 "N stream-out (stream 1) primitives (written)");
1737 brw_perf_query_info_add_stat_reg(query, GEN7_SO_NUM_PRIMS_WRITTEN(2), 1, 1,
1738 "SO_NUM_PRIMS_WRITTEN (Stream 2)",
1739 "N stream-out (stream 2) primitives (written)");
1740 brw_perf_query_info_add_stat_reg(query, GEN7_SO_NUM_PRIMS_WRITTEN(3), 1, 1,
1741 "SO_NUM_PRIMS_WRITTEN (Stream 3)",
1742 "N stream-out (stream 3) primitives (written)");
1743 }
1744
1745 brw_perf_query_info_add_basic_stat_reg(query, HS_INVOCATION_COUNT,
1746 "N TCS shader invocations");
1747 brw_perf_query_info_add_basic_stat_reg(query, DS_INVOCATION_COUNT,
1748 "N TES shader invocations");
1749
1750 brw_perf_query_info_add_basic_stat_reg(query, GS_INVOCATION_COUNT,
1751 "N geometry shader invocations");
1752 brw_perf_query_info_add_basic_stat_reg(query, GS_PRIMITIVES_COUNT,
1753 "N geometry shader primitives emitted");
1754
1755 brw_perf_query_info_add_basic_stat_reg(query, CL_INVOCATION_COUNT,
1756 "N primitives entering clipping");
1757 brw_perf_query_info_add_basic_stat_reg(query, CL_PRIMITIVES_COUNT,
1758 "N primitives leaving clipping");
1759
1760 if (devinfo->is_haswell || devinfo->gen == 8)
1761 brw_perf_query_info_add_stat_reg(query, PS_INVOCATION_COUNT, 1, 4,
1762 "N fragment shader invocations",
1763 "N fragment shader invocations");
1764 else
1765 brw_perf_query_info_add_basic_stat_reg(query, PS_INVOCATION_COUNT,
1766 "N fragment shader invocations");
1767
1768 brw_perf_query_info_add_basic_stat_reg(query, PS_DEPTH_COUNT, "N z-pass fragments");
1769
1770 if (devinfo->gen >= 7)
1771 brw_perf_query_info_add_basic_stat_reg(query, CS_INVOCATION_COUNT,
1772 "N compute shader invocations");
1773
1774 query->data_size = sizeof(uint64_t) * query->n_counters;
1775 }
1776
1777 static void
1778 register_oa_config(struct brw_context *brw,
1779 const struct brw_perf_query_info *query,
1780 uint64_t config_id)
1781 {
1782 struct brw_perf_query_info *registred_query =
1783 brw_perf_query_append_query_info(brw);
1784
1785 *registred_query = *query;
1786 registred_query->oa_metrics_set_id = config_id;
1787 DBG("metric set registred: id = %" PRIu64", guid = %s\n",
1788 registred_query->oa_metrics_set_id, query->guid);
1789 }
1790
1791 static void
1792 enumerate_sysfs_metrics(struct brw_context *brw)
1793 {
1794 char buf[256];
1795 DIR *metricsdir = NULL;
1796 struct dirent *metric_entry;
1797 int len;
1798
1799 len = snprintf(buf, sizeof(buf), "%s/metrics", brw->perfquery.sysfs_dev_dir);
1800 if (len < 0 || len >= sizeof(buf)) {
1801 DBG("Failed to concatenate path to sysfs metrics/ directory\n");
1802 return;
1803 }
1804
1805 metricsdir = opendir(buf);
1806 if (!metricsdir) {
1807 DBG("Failed to open %s: %m\n", buf);
1808 return;
1809 }
1810
1811 while ((metric_entry = readdir(metricsdir))) {
1812 struct hash_entry *entry;
1813
1814 if ((metric_entry->d_type != DT_DIR &&
1815 metric_entry->d_type != DT_LNK) ||
1816 metric_entry->d_name[0] == '.')
1817 continue;
1818
1819 DBG("metric set: %s\n", metric_entry->d_name);
1820 entry = _mesa_hash_table_search(brw->perfquery.oa_metrics_table,
1821 metric_entry->d_name);
1822 if (entry) {
1823 uint64_t id;
1824
1825 len = snprintf(buf, sizeof(buf), "%s/metrics/%s/id",
1826 brw->perfquery.sysfs_dev_dir, metric_entry->d_name);
1827 if (len < 0 || len >= sizeof(buf)) {
1828 DBG("Failed to concatenate path to sysfs metric id file\n");
1829 continue;
1830 }
1831
1832 if (!read_file_uint64(buf, &id)) {
1833 DBG("Failed to read metric set id from %s: %m", buf);
1834 continue;
1835 }
1836
1837 register_oa_config(brw, (const struct brw_perf_query_info *)entry->data, id);
1838 } else
1839 DBG("metric set not known by mesa (skipping)\n");
1840 }
1841
1842 closedir(metricsdir);
1843 }
1844
1845 static bool
1846 kernel_has_dynamic_config_support(struct brw_context *brw)
1847 {
1848 __DRIscreen *screen = brw->screen->driScrnPriv;
1849 struct hash_entry *entry;
1850
1851 hash_table_foreach(brw->perfquery.oa_metrics_table, entry) {
1852 struct brw_perf_query_info *query = entry->data;
1853 char config_path[280];
1854 uint64_t config_id;
1855
1856 snprintf(config_path, sizeof(config_path), "%s/metrics/%s/id",
1857 brw->perfquery.sysfs_dev_dir, query->guid);
1858
1859 /* Look for the test config, which we know we can't replace. */
1860 if (read_file_uint64(config_path, &config_id) && config_id == 1) {
1861 return drmIoctl(screen->fd, DRM_IOCTL_I915_PERF_REMOVE_CONFIG,
1862 &config_id) < 0 && errno == ENOENT;
1863 }
1864 }
1865
1866 return false;
1867 }
1868
1869 static void
1870 init_oa_configs(struct brw_context *brw)
1871 {
1872 __DRIscreen *screen = brw->screen->driScrnPriv;
1873 struct hash_entry *entry;
1874
1875 hash_table_foreach(brw->perfquery.oa_metrics_table, entry) {
1876 const struct brw_perf_query_info *query = entry->data;
1877 struct drm_i915_perf_oa_config config;
1878 char config_path[280];
1879 uint64_t config_id;
1880 int ret;
1881
1882 snprintf(config_path, sizeof(config_path), "%s/metrics/%s/id",
1883 brw->perfquery.sysfs_dev_dir, query->guid);
1884
1885 /* Don't recreate already loaded configs. */
1886 if (read_file_uint64(config_path, &config_id)) {
1887 DBG("metric set: %s (already loaded)\n", query->guid);
1888 register_oa_config(brw, query, config_id);
1889 continue;
1890 }
1891
1892 memset(&config, 0, sizeof(config));
1893
1894 memcpy(config.uuid, query->guid, sizeof(config.uuid));
1895
1896 config.n_mux_regs = query->n_mux_regs;
1897 config.mux_regs_ptr = (uintptr_t) query->mux_regs;
1898
1899 config.n_boolean_regs = query->n_b_counter_regs;
1900 config.boolean_regs_ptr = (uintptr_t) query->b_counter_regs;
1901
1902 config.n_flex_regs = query->n_flex_regs;
1903 config.flex_regs_ptr = (uintptr_t) query->flex_regs;
1904
1905 ret = drmIoctl(screen->fd, DRM_IOCTL_I915_PERF_ADD_CONFIG, &config);
1906 if (ret < 0) {
1907 DBG("Failed to load \"%s\" (%s) metrics set in kernel: %s\n",
1908 query->name, query->guid, strerror(errno));
1909 continue;
1910 }
1911
1912 register_oa_config(brw, query, ret);
1913 DBG("metric set: %s (added)\n", query->guid);
1914 }
1915 }
1916
1917 static bool
1918 query_topology(struct brw_context *brw)
1919 {
1920 __DRIscreen *screen = brw->screen->driScrnPriv;
1921 struct drm_i915_query_item item = {
1922 .query_id = DRM_I915_QUERY_TOPOLOGY_INFO,
1923 };
1924 struct drm_i915_query query = {
1925 .num_items = 1,
1926 .items_ptr = (uintptr_t) &item,
1927 };
1928
1929 if (drmIoctl(screen->fd, DRM_IOCTL_I915_QUERY, &query))
1930 return false;
1931
1932 struct drm_i915_query_topology_info *topo_info =
1933 (struct drm_i915_query_topology_info *) calloc(1, item.length);
1934 item.data_ptr = (uintptr_t) topo_info;
1935
1936 if (drmIoctl(screen->fd, DRM_IOCTL_I915_QUERY, &query) ||
1937 item.length <= 0)
1938 return false;
1939
1940 gen_device_info_update_from_topology(&brw->screen->devinfo,
1941 topo_info);
1942
1943 free(topo_info);
1944
1945 return true;
1946 }
1947
1948 static bool
1949 getparam_topology(struct brw_context *brw)
1950 {
1951 __DRIscreen *screen = brw->screen->driScrnPriv;
1952 drm_i915_getparam_t gp;
1953 int ret;
1954
1955 int slice_mask = 0;
1956 gp.param = I915_PARAM_SLICE_MASK;
1957 gp.value = &slice_mask;
1958 ret = drmIoctl(screen->fd, DRM_IOCTL_I915_GETPARAM, &gp);
1959 if (ret)
1960 return false;
1961
1962 int subslice_mask = 0;
1963 gp.param = I915_PARAM_SUBSLICE_MASK;
1964 gp.value = &subslice_mask;
1965 ret = drmIoctl(screen->fd, DRM_IOCTL_I915_GETPARAM, &gp);
1966 if (ret)
1967 return false;
1968
1969 gen_device_info_update_from_masks(&brw->screen->devinfo,
1970 slice_mask,
1971 subslice_mask,
1972 brw->screen->eu_total);
1973
1974 return true;
1975 }
1976
1977 static void
1978 compute_topology_builtins(struct brw_context *brw)
1979 {
1980 const struct gen_device_info *devinfo = &brw->screen->devinfo;
1981
1982 brw->perfquery.sys_vars.slice_mask = devinfo->slice_masks;
1983 brw->perfquery.sys_vars.n_eu_slices = devinfo->num_slices;
1984
1985 for (int i = 0; i < sizeof(devinfo->subslice_masks[i]); i++) {
1986 brw->perfquery.sys_vars.n_eu_sub_slices +=
1987 _mesa_bitcount(devinfo->subslice_masks[i]);
1988 }
1989
1990 for (int i = 0; i < sizeof(devinfo->eu_masks); i++)
1991 brw->perfquery.sys_vars.n_eus += _mesa_bitcount(devinfo->eu_masks[i]);
1992
1993 brw->perfquery.sys_vars.eu_threads_count =
1994 brw->perfquery.sys_vars.n_eus * devinfo->num_thread_per_eu;
1995
1996 /* At the moment the subslice mask builtin has groups of 3bits for each
1997 * slice.
1998 *
1999 * Ideally equations would be updated to have a slice/subslice query
2000 * function/operator.
2001 */
2002 brw->perfquery.sys_vars.subslice_mask = 0;
2003 for (int s = 0; s < util_last_bit(devinfo->slice_masks); s++) {
2004 for (int ss = 0; ss < (devinfo->subslice_slice_stride * 8); ss++) {
2005 if (gen_device_info_subslice_available(devinfo, s, ss))
2006 brw->perfquery.sys_vars.subslice_mask |= 1UL << (s * 3 + ss);
2007 }
2008 }
2009 }
2010
2011 static bool
2012 init_oa_sys_vars(struct brw_context *brw)
2013 {
2014 const struct gen_device_info *devinfo = &brw->screen->devinfo;
2015 uint64_t min_freq_mhz = 0, max_freq_mhz = 0;
2016 __DRIscreen *screen = brw->screen->driScrnPriv;
2017
2018 if (!read_sysfs_drm_device_file_uint64(brw, "gt_min_freq_mhz", &min_freq_mhz))
2019 return false;
2020
2021 if (!read_sysfs_drm_device_file_uint64(brw, "gt_max_freq_mhz", &max_freq_mhz))
2022 return false;
2023
2024 if (!query_topology(brw)) {
2025 /* We need the i915 query uAPI on CNL+ (kernel 4.17+). */
2026 if (devinfo->gen >= 10)
2027 return false;
2028
2029 if (!getparam_topology(brw)) {
2030 /* We need the SLICE_MASK/SUBSLICE_MASK on gen8+ (kernel 4.13+). */
2031 if (devinfo->gen >= 8)
2032 return false;
2033
2034 /* On Haswell, the values are already computed for us in
2035 * gen_device_info.
2036 */
2037 }
2038 }
2039
2040 memset(&brw->perfquery.sys_vars, 0, sizeof(brw->perfquery.sys_vars));
2041 brw->perfquery.sys_vars.gt_min_freq = min_freq_mhz * 1000000;
2042 brw->perfquery.sys_vars.gt_max_freq = max_freq_mhz * 1000000;
2043 brw->perfquery.sys_vars.timestamp_frequency = devinfo->timestamp_frequency;
2044 brw->perfquery.sys_vars.revision = intel_device_get_revision(screen->fd);
2045 compute_topology_builtins(brw);
2046
2047 return true;
2048 }
2049
2050 static bool
2051 get_sysfs_dev_dir(struct brw_context *brw)
2052 {
2053 __DRIscreen *screen = brw->screen->driScrnPriv;
2054 struct stat sb;
2055 int min, maj;
2056 DIR *drmdir;
2057 struct dirent *drm_entry;
2058 int len;
2059
2060 brw->perfquery.sysfs_dev_dir[0] = '\0';
2061
2062 if (fstat(screen->fd, &sb)) {
2063 DBG("Failed to stat DRM fd\n");
2064 return false;
2065 }
2066
2067 maj = major(sb.st_rdev);
2068 min = minor(sb.st_rdev);
2069
2070 if (!S_ISCHR(sb.st_mode)) {
2071 DBG("DRM fd is not a character device as expected\n");
2072 return false;
2073 }
2074
2075 len = snprintf(brw->perfquery.sysfs_dev_dir,
2076 sizeof(brw->perfquery.sysfs_dev_dir),
2077 "/sys/dev/char/%d:%d/device/drm", maj, min);
2078 if (len < 0 || len >= sizeof(brw->perfquery.sysfs_dev_dir)) {
2079 DBG("Failed to concatenate sysfs path to drm device\n");
2080 return false;
2081 }
2082
2083 drmdir = opendir(brw->perfquery.sysfs_dev_dir);
2084 if (!drmdir) {
2085 DBG("Failed to open %s: %m\n", brw->perfquery.sysfs_dev_dir);
2086 return false;
2087 }
2088
2089 while ((drm_entry = readdir(drmdir))) {
2090 if ((drm_entry->d_type == DT_DIR ||
2091 drm_entry->d_type == DT_LNK) &&
2092 strncmp(drm_entry->d_name, "card", 4) == 0)
2093 {
2094 len = snprintf(brw->perfquery.sysfs_dev_dir,
2095 sizeof(brw->perfquery.sysfs_dev_dir),
2096 "/sys/dev/char/%d:%d/device/drm/%s",
2097 maj, min, drm_entry->d_name);
2098 closedir(drmdir);
2099 if (len < 0 || len >= sizeof(brw->perfquery.sysfs_dev_dir))
2100 return false;
2101 else
2102 return true;
2103 }
2104 }
2105
2106 closedir(drmdir);
2107
2108 DBG("Failed to find cardX directory under /sys/dev/char/%d:%d/device/drm\n",
2109 maj, min);
2110
2111 return false;
2112 }
2113
2114 typedef void (*perf_register_oa_queries_t)(struct brw_context *);
2115
2116 static perf_register_oa_queries_t
2117 get_register_queries_function(const struct gen_device_info *devinfo)
2118 {
2119 if (devinfo->is_haswell)
2120 return brw_oa_register_queries_hsw;
2121 if (devinfo->is_cherryview)
2122 return brw_oa_register_queries_chv;
2123 if (devinfo->is_broadwell)
2124 return brw_oa_register_queries_bdw;
2125 if (devinfo->is_broxton)
2126 return brw_oa_register_queries_bxt;
2127 if (devinfo->is_skylake) {
2128 if (devinfo->gt == 2)
2129 return brw_oa_register_queries_sklgt2;
2130 if (devinfo->gt == 3)
2131 return brw_oa_register_queries_sklgt3;
2132 if (devinfo->gt == 4)
2133 return brw_oa_register_queries_sklgt4;
2134 }
2135 if (devinfo->is_kabylake) {
2136 if (devinfo->gt == 2)
2137 return brw_oa_register_queries_kblgt2;
2138 if (devinfo->gt == 3)
2139 return brw_oa_register_queries_kblgt3;
2140 }
2141 if (devinfo->is_geminilake)
2142 return brw_oa_register_queries_glk;
2143 if (devinfo->is_coffeelake) {
2144 if (devinfo->gt == 2)
2145 return brw_oa_register_queries_cflgt2;
2146 if (devinfo->gt == 3)
2147 return brw_oa_register_queries_cflgt3;
2148 }
2149 if (devinfo->is_cannonlake)
2150 return brw_oa_register_queries_cnl;
2151
2152 return NULL;
2153 }
2154
2155 static unsigned
2156 brw_init_perf_query_info(struct gl_context *ctx)
2157 {
2158 struct brw_context *brw = brw_context(ctx);
2159 const struct gen_device_info *devinfo = &brw->screen->devinfo;
2160 bool i915_perf_oa_available = false;
2161 struct stat sb;
2162 perf_register_oa_queries_t oa_register;
2163
2164 if (brw->perfquery.n_queries)
2165 return brw->perfquery.n_queries;
2166
2167 init_pipeline_statistic_query_registers(brw);
2168 brw_perf_query_register_mdapi_statistic_query(brw);
2169
2170 oa_register = get_register_queries_function(devinfo);
2171
2172 /* The existence of this sysctl parameter implies the kernel supports
2173 * the i915 perf interface.
2174 */
2175 if (stat("/proc/sys/dev/i915/perf_stream_paranoid", &sb) == 0) {
2176
2177 /* If _paranoid == 1 then on Gen8+ we won't be able to access OA
2178 * metrics unless running as root.
2179 */
2180 if (devinfo->is_haswell)
2181 i915_perf_oa_available = true;
2182 else {
2183 uint64_t paranoid = 1;
2184
2185 read_file_uint64("/proc/sys/dev/i915/perf_stream_paranoid", &paranoid);
2186
2187 if (paranoid == 0 || geteuid() == 0)
2188 i915_perf_oa_available = true;
2189 }
2190 }
2191
2192 if (i915_perf_oa_available &&
2193 oa_register &&
2194 get_sysfs_dev_dir(brw) &&
2195 init_oa_sys_vars(brw))
2196 {
2197 brw->perfquery.oa_metrics_table =
2198 _mesa_hash_table_create(NULL, _mesa_key_hash_string,
2199 _mesa_key_string_equal);
2200
2201 /* Index all the metric sets mesa knows about before looking to see what
2202 * the kernel is advertising.
2203 */
2204 oa_register(brw);
2205
2206 if (likely((INTEL_DEBUG & DEBUG_NO_OACONFIG) == 0) &&
2207 kernel_has_dynamic_config_support(brw))
2208 init_oa_configs(brw);
2209 else
2210 enumerate_sysfs_metrics(brw);
2211
2212 brw_perf_query_register_mdapi_oa_query(brw);
2213 }
2214
2215 brw->perfquery.unaccumulated =
2216 ralloc_array(brw, struct brw_perf_query_object *, 2);
2217 brw->perfquery.unaccumulated_elements = 0;
2218 brw->perfquery.unaccumulated_array_size = 2;
2219
2220 exec_list_make_empty(&brw->perfquery.sample_buffers);
2221 exec_list_make_empty(&brw->perfquery.free_sample_buffers);
2222
2223 /* It's convenient to guarantee that this linked list of sample
2224 * buffers is never empty so we add an empty head so when we
2225 * Begin an OA query we can always take a reference on a buffer
2226 * in this list.
2227 */
2228 struct brw_oa_sample_buf *buf = get_free_sample_buf(brw);
2229 exec_list_push_head(&brw->perfquery.sample_buffers, &buf->link);
2230
2231 brw->perfquery.oa_stream_fd = -1;
2232
2233 brw->perfquery.next_query_start_report_id = 1000;
2234
2235 return brw->perfquery.n_queries;
2236 }
2237
2238 void
2239 brw_init_performance_queries(struct brw_context *brw)
2240 {
2241 struct gl_context *ctx = &brw->ctx;
2242
2243 ctx->Driver.InitPerfQueryInfo = brw_init_perf_query_info;
2244 ctx->Driver.GetPerfQueryInfo = brw_get_perf_query_info;
2245 ctx->Driver.GetPerfCounterInfo = brw_get_perf_counter_info;
2246 ctx->Driver.NewPerfQueryObject = brw_new_perf_query_object;
2247 ctx->Driver.DeletePerfQuery = brw_delete_perf_query;
2248 ctx->Driver.BeginPerfQuery = brw_begin_perf_query;
2249 ctx->Driver.EndPerfQuery = brw_end_perf_query;
2250 ctx->Driver.WaitPerfQuery = brw_wait_perf_query;
2251 ctx->Driver.IsPerfQueryReady = brw_is_perf_query_ready;
2252 ctx->Driver.GetPerfQueryData = brw_get_perf_query_data;
2253 }