summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVinay Belgaumkar <vinay.belgaumkar@intel.com>2024-04-25 12:56:57 -0700
committerAshutosh Dixit <ashutosh.dixit@intel.com>2024-05-02 18:29:34 -0700
commitadcc68266b8e8a0e6d7d052e8450c86c999a0cd8 (patch)
tree6634b50b6e0d83aa3139755c2b97a4560a0f484b
parent68a055ff91b91dadb01d9501cd8670f654b5b952 (diff)
tests/intel/xe_gt_freq: Check for RPe freq updates
Pcode can dynamically update RPe frequency. Use the latest value in tests that check it. Signed-off-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com> Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
-rw-r--r--tests/intel/xe_gt_freq.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/intel/xe_gt_freq.c b/tests/intel/xe_gt_freq.c
index c12f6c52c..5c6373016 100644
--- a/tests/intel/xe_gt_freq.c
+++ b/tests/intel/xe_gt_freq.c
@@ -186,6 +186,9 @@ static void test_freq_fixed(int fd, int gt_id, bool gt_idle)
igt_assert(get_freq(fd, gt_id, "act") == rpn);
}
+ /* Refresh value of rpe, pcode could have adjusted it */
+ rpe = get_freq(fd, gt_id, "rpe");
+
igt_assert(set_freq(fd, gt_id, "min", rpe) > 0);
igt_assert(set_freq(fd, gt_id, "max", rpe) > 0);
usleep(ACT_FREQ_LATENCY_US);
@@ -268,6 +271,10 @@ static void test_freq_low_max(int fd, int gt_id)
igt_assert(set_freq(fd, gt_id, "min", rpe) > 0);
igt_assert(set_freq(fd, gt_id, "max", rpn) > 0);
usleep(ACT_FREQ_LATENCY_US);
+
+ /* Refresh value of rpe, pcode could have adjusted it */
+ rpe = get_freq(fd, gt_id, "rpe");
+
igt_assert(get_freq(fd, gt_id, "cur") == rpe);
if (!xe_is_gt_in_c6(fd, gt_id))