From: Tvrtko Ursulin <[email protected]>

Verify that the reported busyness is in line with what would we expect
from a batch which causes a hang and gets kicked out from the engine.

v2: Change to explicit igt_force_gpu_reset instead of guessing when a spin
    batch will hang. (Chris Wilson)

Signed-off-by: Tvrtko Ursulin <[email protected]>
---
 tests/perf_pmu.c | 24 ++++++++++++++++++++++--
 1 file changed, 22 insertions(+), 2 deletions(-)

diff --git a/tests/perf_pmu.c b/tests/perf_pmu.c
index 3bbb18d2f216..f5c70776e2cf 100644
--- a/tests/perf_pmu.c
+++ b/tests/perf_pmu.c
@@ -168,6 +168,7 @@ static unsigned int e2ring(int gem_fd, const struct 
intel_execution_engine2 *e)
 #define TEST_TRAILING_IDLE (4)
 #define TEST_RUNTIME_PM (8)
 #define FLAG_LONG (16)
+#define FLAG_HANG (32)
 
 static void end_spin(int fd, igt_spin_t *spin, unsigned int flags)
 {
@@ -204,11 +205,27 @@ single(int gem_fd, const struct intel_execution_engine2 
*e, unsigned int flags)
                end_spin(gem_fd, spin, flags);
        val = pmu_read_single(fd) - val;
 
-       end_spin(gem_fd, spin, FLAG_SYNC);
+       if (flags & FLAG_HANG)
+               igt_force_gpu_reset(gem_fd);
+       else
+               end_spin(gem_fd, spin, FLAG_SYNC);
+
+       assert_within_epsilon(val, flags & TEST_BUSY ? slept : 0.f, tolerance);
+
+       /* Check for idle after hang. */
+       if (flags & FLAG_HANG) {
+               /* Sleep for a bit for reset unwind to settle. */
+               sleep(1);
+               val = pmu_read_single(fd);
+               slept = measured_usleep(batch_duration_ns / 1000);
+               val = pmu_read_single(fd) - val;
+
+               assert_within_epsilon(val, 0, tolerance);
+       }
+
        igt_spin_batch_free(gem_fd, spin);
        close(fd);
 
-       assert_within_epsilon(val, flags & TEST_BUSY ? slept : 0.f, tolerance);
        gem_quiescent_gpu(gem_fd);
 }
 
@@ -1690,6 +1707,9 @@ igt_main
                                              pct[i], e->name)
                                        accuracy(fd, e, pct[i]);
                        }
+
+                       igt_subtest_f("busy-hang-%s", e->name)
+                               single(fd, e, TEST_BUSY | FLAG_HANG);
                }
 
                /**
-- 
2.14.1

_______________________________________________
Intel-gfx mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

Reply via email to