From: Imre Deak <imre.deak@intel.com>
To: <igt-dev@lists.freedesktop.org>
Subject: [PATCH i-g-t 1/3] lib/igt_kms: Add igt_kms_frame_time_from_vrefresh()
Date: Tue, 22 Oct 2024 18:53:09 +0300 [thread overview]
Message-ID: <20241022155311.2797257-2-imre.deak@intel.com> (raw)
In-Reply-To: <20241022155311.2797257-1-imre.deak@intel.com>
Export a helper originally added to kms_vrr.c to convert a vertical
refresh rate to frame time. Use uint32_t for the type of vrefresh
matching the type of drmModeModeInfo::vrefresh.
Signed-off-by: Imre Deak <imre.deak@intel.com>
---
lib/igt_kms.c | 12 ++++++++++++
lib/igt_kms.h | 2 ++
tests/kms_vrr.c | 37 +++++++++++++++++--------------------
3 files changed, 31 insertions(+), 20 deletions(-)
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index bb35d4b82..99231d6e7 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -52,6 +52,7 @@
#include <i915_drm.h>
#include "drmtest.h"
+#include "igt_core.h"
#include "igt_kms.h"
#include "igt_aux.h"
#include "igt_edid.h"
@@ -254,6 +255,17 @@ const struct edid *igt_kms_get_alt_edid(void)
return &edid;
}
+/**
+ * igt_kms_frame_time_from_vrefresh:
+ * @vrefresh: vertical refresh rate in 1/s units.
+ *
+ * Returns the frame time in nanoseconds for the given vrefresh rate.
+ */
+uint64_t igt_kms_frame_time_from_vrefresh(uint32_t vrefresh)
+{
+ return vrefresh ? (NSEC_PER_SEC / vrefresh) : 0;
+}
+
#define AUDIO_EDID_SIZE (2 * EDID_BLOCK_SIZE)
static const struct edid *
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index 2b26d2bbf..fc7e4cda1 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -274,6 +274,8 @@ enum joined_pipes {
JOINED_PIPES_ULTRA_JOINER = 4
};
+uint64_t igt_kms_frame_time_from_vrefresh(uint32_t vrefresh);
+
bool kmstest_force_connector(int fd, drmModeConnector *connector,
enum kmstest_force_connector_state state);
bool kmstest_force_connector_joiner(int drm_fd, drmModeConnector *connector, int joined_pipes);
diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c
index 36a22eebe..12d29aa82 100644
--- a/tests/kms_vrr.c
+++ b/tests/kms_vrr.c
@@ -192,12 +192,6 @@ static uint64_t get_time_ns(void)
return 0;
}
-/* Returns the rate duration in nanoseconds for the given refresh rate. */
-static uint64_t rate_from_refresh(uint64_t refresh)
-{
- return refresh ? (NSECS_PER_SEC / refresh) : 0;
-}
-
/* Instead of running on default mode, loop through the connector modes
* and find the mode with max refresh rate to exercise full vrr range.
*/
@@ -340,13 +334,13 @@ static void prepare_test(data_t *data, igt_output_t *output, enum pipe pipe)
mode = *igt_output_get_mode(output);
- data->vtest_ns.min = rate_from_refresh(data->range.min);
- data->vtest_ns.max = rate_from_refresh(data->range.max);
+ data->vtest_ns.min = igt_kms_frame_time_from_vrefresh(data->range.min);
+ data->vtest_ns.max = igt_kms_frame_time_from_vrefresh(data->range.max);
/* If unspecified on the command line, default rate to the midpoint */
if (data->vtest_ns.rate_ns == 0) {
range_t *range = &data->range;
- data->vtest_ns.rate_ns = rate_from_refresh(
+ data->vtest_ns.rate_ns = igt_kms_frame_time_from_vrefresh(
(range->min + range->max) / 2);
}
@@ -533,8 +527,8 @@ flip_and_measure_cmrr(data_t *data, igt_output_t *output, enum pipe pipe,
uint32_t total_flip = 0, total_pass = 0;
bool front = false;
drmModeModeInfoPtr mode = igt_output_get_mode(output);
- uint64_t req_rate_ns = rate_from_refresh(mode->vrefresh + VREFRESH_MODIFIER);
- uint64_t exp_rate_ns = rate_from_refresh(mode->vrefresh);
+ uint64_t req_rate_ns = igt_kms_frame_time_from_vrefresh(mode->vrefresh + VREFRESH_MODIFIER);
+ uint64_t exp_rate_ns = igt_kms_frame_time_from_vrefresh(mode->vrefresh);
uint64_t threshold_ns = exp_rate_ns / mode->vdisplay; /* Upto 1 scan line. */
igt_info("CMRR on: requested rate: %"PRIu64" ns (%.2f Hz) "
@@ -633,7 +627,7 @@ test_basic(data_t *data, enum pipe pipe, igt_output_t *output, uint32_t flags)
* next Vmin.
*/
if (flags & TEST_FLIPLINE) {
- rate[0] = rate_from_refresh(range.max + 5);
+ rate[0] = igt_kms_frame_time_from_vrefresh(range.max + 5);
result = flip_and_measure(data, output, pipe, rate, 1, data->duration_ns);
igt_assert_f(result > 75,
"Refresh rate (%u Hz) %"PRIu64"ns: Target VRR on threshold not reached, result was %u%%\n",
@@ -649,7 +643,7 @@ test_basic(data_t *data, enum pipe pipe, igt_output_t *output, uint32_t flags)
}
if (flags & TEST_FLIPLINE) {
- rate[0] = rate_from_refresh(range.min - 10);
+ rate[0] = igt_kms_frame_time_from_vrefresh(range.min - 10);
result = flip_and_measure(data, output, pipe, rate, 1, data->duration_ns);
igt_assert_f(result < 50,
"Refresh rate (%u Hz) %"PRIu64"ns: Target VRR on threshold exceeded, result was %u%%\n",
@@ -660,7 +654,10 @@ test_basic(data_t *data, enum pipe pipe, igt_output_t *output, uint32_t flags)
unsigned int range_min =
/* For Intel h/w tweak the min rate, as h/w will terminate the vblank at Vmax. */
is_intel_device(data->drm_fd) ? (range.min + 2) : range.min;
- uint64_t maxmin_rates[] = {vtest_ns.max, rate_from_refresh(range_min)};
+ uint64_t maxmin_rates[] = {
+ vtest_ns.max,
+ igt_kms_frame_time_from_vrefresh(range_min)
+ };
result = flip_and_measure(data, output, pipe, maxmin_rates, 2, data->duration_ns);
igt_assert_f(result > 75,
@@ -752,7 +749,7 @@ test_seamless_virtual_rr_basic(data_t *data, enum pipe pipe, igt_output_t *outpu
kmstest_dump_mode(&data->switch_modes[HIGH_RR_MODE]);
prepare_test(data, output, pipe);
- rate[0] = rate_from_refresh(data->switch_modes[HIGH_RR_MODE].vrefresh);
+ rate[0] = igt_kms_frame_time_from_vrefresh(data->switch_modes[HIGH_RR_MODE].vrefresh);
/*
* Sink with DRR and VRR can be in downclock mode so
@@ -784,7 +781,7 @@ test_seamless_virtual_rr_basic(data_t *data, enum pipe pipe, igt_output_t *outpu
igt_output_override_mode(output, &virtual_mode);
igt_assert(igt_display_try_commit_atomic(&data->display, 0, NULL) == 0);
- rate[0] = rate_from_refresh(vrefresh);
+ rate[0] = igt_kms_frame_time_from_vrefresh(vrefresh);
result = flip_and_measure(data, output, pipe, rate, 1, TEST_DURATION_NS);
igt_assert_f(result > 75,
"Refresh rate (%u Hz) %"PRIu64"ns: Target threshold not reached, result was %u%%\n",
@@ -802,7 +799,7 @@ test_lobf(data_t *data, enum pipe pipe, igt_output_t *output, uint32_t flags)
{
uint64_t rate[] = {0};
- rate[0] = rate_from_refresh(data->switch_modes[HIGH_RR_MODE].vrefresh);
+ rate[0] = igt_kms_frame_time_from_vrefresh(data->switch_modes[HIGH_RR_MODE].vrefresh);
prepare_test(data, output, pipe);
igt_info("LOBF test execution on %s, PIPE %s with VRR range: (%u-%u) Hz\n",
@@ -811,7 +808,7 @@ test_lobf(data_t *data, enum pipe pipe, igt_output_t *output, uint32_t flags)
igt_output_override_mode(output, &data->switch_modes[HIGH_RR_MODE]);
flip_and_measure(data, output, pipe, rate, 1, TEST_DURATION_NS);
igt_output_override_mode(output, &data->switch_modes[LOW_RR_MODE]);
- rate[0] = rate_from_refresh(data->switch_modes[LOW_RR_MODE].vrefresh);
+ rate[0] = igt_kms_frame_time_from_vrefresh(data->switch_modes[LOW_RR_MODE].vrefresh);
flip_and_measure(data, output, pipe, rate, 1, NSECS_PER_SEC);
igt_assert_f(igt_get_i915_edp_lobf_status(data->drm_fd, output->name),
"LOBF not enabled\n");
@@ -857,7 +854,7 @@ test_cmrr(data_t *data, enum pipe pipe, igt_output_t *output, uint32_t flags)
result = flip_and_measure_cmrr(data, output, pipe, TEST_DURATION_NS * 2);
igt_assert_f(result > 75,
"Refresh rate (%u Hz) %"PRIu64"ns: Target CMRR on threshold not reached, result was %u%%\n",
- mode.vrefresh, rate_from_refresh(mode.vrefresh), result);
+ mode.vrefresh, igt_kms_frame_time_from_vrefresh(mode.vrefresh), result);
}
static void test_cleanup(data_t *data, enum pipe pipe, igt_output_t *output)
@@ -1006,7 +1003,7 @@ static int opt_handler(int opt, int opt_index, void *_data)
data->duration_ns = atoi(optarg) * NSECS_PER_SEC;
break;
case 'r':
- data->vtest_ns.rate_ns = rate_from_refresh(atoi(optarg));
+ data->vtest_ns.rate_ns = igt_kms_frame_time_from_vrefresh(atoi(optarg));
break;
case 's':
data->static_image = true;
--
2.44.2
next prev parent reply other threads:[~2024-10-22 15:52 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-22 15:53 [PATCH i-g-t 0/3] tests/i915/kms_flip_tiling: Fix timeouts with low vrefresh modes Imre Deak
2024-10-22 15:53 ` Imre Deak [this message]
2024-10-24 4:12 ` [PATCH i-g-t 1/3] lib/igt_kms: Add igt_kms_frame_time_from_vrefresh() Srikanth V, NagaVenkata
2024-11-15 11:48 ` Sharma, Swati2
2024-10-22 15:53 ` [PATCH i-g-t 2/3] lib/igt_kms: Add kmstest_wait_for_pageflip_timeout() Imre Deak
2024-10-24 5:45 ` Srikanth V, NagaVenkata
2024-10-24 10:29 ` Imre Deak
2024-11-15 11:55 ` Sharma, Swati2
2024-10-22 15:53 ` [PATCH i-g-t 3/3] tests/i915/kms_flip_tiling: Fix pageflip timeout for low vrefresh modes Imre Deak
2024-11-15 11:44 ` Sharma, Swati2
2024-11-15 17:11 ` Imre Deak
2024-11-18 8:01 ` Sharma, Swati2
2024-11-18 11:31 ` Imre Deak
2024-10-22 18:56 ` ✓ Fi.CI.BAT: success for tests/i915/kms_flip_tiling: Fix timeouts with " Patchwork
2024-10-22 19:43 ` ✓ CI.xeBAT: " Patchwork
2024-10-23 1:14 ` ✗ CI.xeFULL: failure " Patchwork
2024-10-23 2:49 ` ✗ Fi.CI.IGT: " Patchwork
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20241022155311.2797257-2-imre.deak@intel.com \
--to=imre.deak@intel.com \
--cc=igt-dev@lists.freedesktop.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox