Use the perf pmu interface for lowlevel rc6 measurement, hopefully for
greater stability.

v2: Fix timeout to run for 1s, not one pass!

Signed-off-by: Chris Wilson <ch...@chris-wilson.co.uk>
---
 tests/Makefile.am         |  1 +
 tests/gem_mocs_settings.c | 46 ++++++++++++++++++++++++++-------------
 tests/meson.build         |  8 ++++++-
 3 files changed, 39 insertions(+), 16 deletions(-)

diff --git a/tests/Makefile.am b/tests/Makefile.am
index 8712eb169..ee5a7c5e8 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -115,6 +115,7 @@ gem_fence_upload_CFLAGS = $(AM_CFLAGS) $(THREAD_CFLAGS)
 gem_fence_upload_LDADD = $(LDADD) -lpthread
 gem_flink_race_CFLAGS = $(AM_CFLAGS) $(THREAD_CFLAGS)
 gem_flink_race_LDADD = $(LDADD) -lpthread
+gem_mocs_settings_LDADD = $(LDADD) $(top_builddir)/lib/libigt_perf.la
 gem_mmap_gtt_CFLAGS = $(AM_CFLAGS) $(THREAD_CFLAGS)
 gem_mmap_gtt_LDADD = $(LDADD) -lpthread
 gem_mmap_wc_CFLAGS = $(AM_CFLAGS) $(THREAD_CFLAGS)
diff --git a/tests/gem_mocs_settings.c b/tests/gem_mocs_settings.c
index 9705fbfde..967223f1b 100644
--- a/tests/gem_mocs_settings.c
+++ b/tests/gem_mocs_settings.c
@@ -29,6 +29,7 @@
 
 #include "igt.h"
 #include "igt_gt.h"
+#include "igt_perf.h"
 #include "igt_sysfs.h"
 
 #define MAX_NUMBER_MOCS_REGISTERS      (64)
@@ -328,24 +329,39 @@ static void check_l3cc_registers(int fd,
        gem_close(fd, dst_handle);
 }
 
-
-static uint32_t rc6_residency(int dir)
-{
-       return igt_sysfs_get_u32(dir, "power/rc6_residency_ms");
-}
-
-static void rc6_wait(int fd)
+static void rc6_wait(int i915)
 {
-       int sysfs;
-       uint32_t residency;
-
-       sysfs = igt_sysfs_open(fd, NULL);
-       igt_assert_lte(0, sysfs);
+       uint64_t start[2], now[2], prev;
+       bool rc6 = false;
+       int fd;
+
+       fd = perf_i915_open(I915_PMU_RC6_RESIDENCY);
+       igt_require(fd != -1);
+
+       /* First wait for roughly an RC6 Evaluation Interval */
+       gem_quiescent_gpu(i915);
+       usleep(320e3);
+
+       /* Then poll for RC6 to start ticking */
+       igt_assert_eq(read(fd, start, sizeof(start)), sizeof(start));
+       prev = start[1];
+       do {
+               usleep(5e3);
+               igt_assert_eq(read(fd, now, sizeof(now)), sizeof(now));
+               if (now[1] - prev > 1e6) {
+                       rc6 = true;
+                       break;
+               }
+               prev = now[1];
+       } while (now[0] - start[0] < 1e9);
 
-       residency = rc6_residency(sysfs);
-       igt_require(igt_wait(rc6_residency(sysfs) != residency, 10000, 2));
+       close(fd);
 
-       close(sysfs);
+       igt_debug("rc6 residency %.2fms (delta %.1fms over 5ms), elapsed 
%.2fms\n",
+                 1e-6 * (now[1] - start[1]),
+                 1e-6 * (now[1] - prev),
+                 1e-6 * (now[0] - start[0]));
+       igt_require(rc6);
 }
 
 static void check_mocs_values(int fd, unsigned engine, uint32_t ctx_id, bool 
dirty)
diff --git a/tests/meson.build b/tests/meson.build
index 32c2156c6..8f9ead8c3 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -82,7 +82,6 @@ test_progs = [
        'gem_mmap_gtt',
        'gem_mmap_offset_exhaustion',
        'gem_mmap_wc',
-       'gem_mocs_settings',
        'gem_partial_pwrite_pread',
        'gem_persistent_relocs',
        'gem_pipe_control_store_loop',
@@ -279,6 +278,13 @@ test_executables += executable('gem_eio', 'gem_eio.c',
           install : true)
 test_progs += 'gem_eio'
 
+test_executables += executable('gem_mocs_settings', 'gem_mocs_settings.c',
+          dependencies : test_deps + [ lib_igt_perf ],
+          install_dir : libexecdir,
+          install_rpath : rpathdir,
+          install : true)
+test_progs += 'gem_mocs_settings'
+
 test_executables += executable('perf_pmu', 'perf_pmu.c',
           dependencies : test_deps + [ lib_igt_perf ],
           install_dir : libexecdir,
-- 
2.18.0

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

Reply via email to