From: Swati Sharma <swati2.sharma@intel.com>
To: igt-dev@lists.freedesktop.org
Cc: Swati Sharma <swati2.sharma@intel.com>,
Suraj Kandpal <suraj.kandpal@intel.com>
Subject: [PATCH i-g-t, v3 5/5] tests/intel/kms_frontbuffer_tracking: Enable HDR in feature tests
Date: Sat, 18 Apr 2026 03:08:18 +0530 [thread overview]
Message-ID: <20260417213818.2050571-6-swati2.sharma@intel.com> (raw)
In-Reply-To: <20260417213818.2050571-1-swati2.sharma@intel.com>
Enable HDR mode on the primary output when the test's feature mask
includes FEATURE_HDR. This lets the existing feature-test matrix
(draw methods × buffer modes × pipes) exercise FBC, PSR and DRRS
while an HDR infoframe is active.
The disable path tears down HDR metadata so subsequent tests start
from a clean SDR baseline.
v2: -place igt headers in alphabetical order (Kamil)
Co-developed-by: Claude Opus 4.6
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
Reviewed-by: Suraj Kandpal <suraj.kandpal@intel.com>
---
tests/intel/kms_frontbuffer_tracking.c | 153 +++++++++++++++++++++++--
1 file changed, 145 insertions(+), 8 deletions(-)
diff --git a/tests/intel/kms_frontbuffer_tracking.c b/tests/intel/kms_frontbuffer_tracking.c
index 273f1f584..3e445570c 100644
--- a/tests/intel/kms_frontbuffer_tracking.c
+++ b/tests/intel/kms_frontbuffer_tracking.c
@@ -38,6 +38,7 @@
#include <poll.h>
#include <pthread.h>
#include <limits.h>
+#include <inttypes.h>
#include "i915/gem.h"
#include "i915/gem_create.h"
@@ -45,6 +46,7 @@
#include "i915/intel_fbc.h"
#include "igt.h"
#include "igt_sysfs.h"
+#include "igt_hdr.h"
#include "igt_psr.h"
/**
@@ -1504,6 +1506,12 @@ struct {
.can_test = false,
};
+struct {
+ bool can_test;
+} hdr = {
+ .can_test = false,
+};
+
igt_pipe_crc_t *pipe_crc;
igt_crc_t *wanted_crc;
struct {
@@ -2448,6 +2456,11 @@ static void unset_all_crtcs(void)
igt_display_commit(&drm.display);
}
+static void intel_hdr_disable(igt_output_t *output)
+{
+ igt_hdr_disable(output);
+}
+
static bool disable_features(const struct test_mode *t)
{
if (t->feature == FEATURE_DEFAULT)
@@ -2455,6 +2468,7 @@ static bool disable_features(const struct test_mode *t)
intel_fbc_disable(&drm.display);
intel_drrs_disable(prim_mode_params.crtc);
+ intel_hdr_disable(prim_mode_params.output);
return psr.can_test ? psr_disable(drm.fd, drm.debugfs, NULL) : false;
}
@@ -2715,6 +2729,17 @@ static void teardown_fbc(void)
{
}
+static void teardown_hdr(void)
+{
+ if (!hdr.can_test)
+ return;
+
+ /* Disable HDR and restore connector state */
+ intel_hdr_disable(prim_mode_params.output);
+
+ hdr.can_test = false;
+}
+
static void setup_psr(void)
{
if (prim_mode_params.output->config.connector->connector_type !=
@@ -2749,6 +2774,27 @@ static void setup_drrs(void)
drrs.can_test = true;
}
+static void setup_hdr(void)
+{
+ if (!igt_output_supports_max_bpc(prim_mode_params.output) || !igt_output_supports_hdr(prim_mode_params.output)) {
+ igt_info("Can't test HDR: %s doesn't support IGT_CONNECTOR_MAX_BPC or IGT_CONNECTOR_HDR_OUTPUT_METADATA.\n",
+ igt_output_name(prim_mode_params.output));
+ return;
+ }
+
+ if (!igt_is_panel_hdr(drm.fd, prim_mode_params.output)) {
+ igt_info("Can't test HDR: %s not HDR capable.\n", igt_output_name(prim_mode_params.output));
+ return;
+ }
+
+ if (igt_get_output_max_bpc(prim_mode_params.output) < 10) {
+ igt_info("Can't test HDR: %s doesn't support 10 bpc.\n", igt_output_name(prim_mode_params.output));
+ return;
+ }
+
+ hdr.can_test = true;
+}
+
static void setup_environment(void)
{
setup_modeset();
@@ -2756,6 +2802,7 @@ static void setup_environment(void)
setup_fbc();
setup_psr();
setup_drrs();
+ setup_hdr();
setup_crcs();
}
@@ -2767,6 +2814,7 @@ static void teardown_environment(void)
teardown_crcs();
teardown_psr();
teardown_fbc();
+ teardown_hdr();
teardown_modeset();
teardown_drm();
}
@@ -2843,6 +2891,10 @@ static void do_flush(const struct test_mode *t)
#define ASSERT_NO_IDLE_GPU (1 << 11)
+#define HDR_ASSERT_FLAGS (3 << 12)
+#define ASSERT_HDR_ENABLED (1 << 12)
+#define ASSERT_HDR_DISABLED (1 << 13)
+
static int adjust_assertion_flags(const struct test_mode *t, int flags)
{
if (!(flags & DONT_ASSERT_FEATURE_STATUS)) {
@@ -2853,6 +2905,8 @@ static int adjust_assertion_flags(const struct test_mode *t, int flags)
if (!((flags & ASSERT_DRRS_LOW) ||
(flags & ASSERT_DRRS_INACTIVE)))
flags |= ASSERT_DRRS_HIGH;
+ if (!(flags & ASSERT_HDR_DISABLED))
+ flags |= ASSERT_HDR_ENABLED;
}
if ((t->feature & FEATURE_FBC) == 0 || (flags & DONT_ASSERT_FBC_STATUS))
@@ -2861,6 +2915,8 @@ static int adjust_assertion_flags(const struct test_mode *t, int flags)
flags &= ~PSR_ASSERT_FLAGS;
if ((t->feature & FEATURE_DRRS) == 0)
flags &= ~DRRS_ASSERT_FLAGS;
+ if ((t->feature & FEATURE_HDR) == 0)
+ flags &= ~HDR_ASSERT_FLAGS;
return flags;
}
@@ -2879,6 +2935,27 @@ static void do_crc_assertions(int flags)
igt_assert_crc_equal(&crc, wanted_crc);
}
+static bool intel_hdr_is_enabled(igt_output_t *output)
+{
+ uint64_t blob_id =
+ igt_output_get_prop(output, IGT_CONNECTOR_HDR_OUTPUT_METADATA);
+ uint64_t max_bpc =
+ igt_output_get_prop(output, IGT_CONNECTOR_MAX_BPC);
+
+ return blob_id != 0 && max_bpc >= 10;
+}
+
+static void hdr_print_status(igt_output_t *output)
+{
+ uint64_t blob_id =
+ igt_output_get_prop(output, IGT_CONNECTOR_HDR_OUTPUT_METADATA);
+ uint64_t max_bpc =
+ igt_output_get_prop(output, IGT_CONNECTOR_MAX_BPC);
+
+ igt_info("HDR metadata blob id: %" PRIu64 "\n", blob_id);
+ igt_info("MAX_BPC: %" PRIu64 "\n", max_bpc);
+}
+
static void do_status_assertions(int flags)
{
if (!opt.check_status) {
@@ -2927,6 +3004,18 @@ static void do_status_assertions(int flags)
} else if (flags & ASSERT_PSR_DISABLED)
igt_assert_f(psr_wait_update(drm.debugfs, PSR_MODE_1, NULL),
"PSR still enabled\n");
+
+ if (flags & ASSERT_HDR_ENABLED) {
+ if (!intel_hdr_is_enabled(prim_mode_params.output)) {
+ hdr_print_status(prim_mode_params.output);
+ igt_assert_f(false, "HDR not enabled\n");
+ }
+ } else if (flags & ASSERT_HDR_DISABLED) {
+ if (intel_hdr_is_enabled(prim_mode_params.output)) {
+ hdr_print_status(prim_mode_params.output);
+ igt_assert_f(false, "HDR still enabled\n");
+ }
+ }
}
static void __do_assertions(const struct test_mode *t, int flags,
@@ -2944,7 +3033,8 @@ static void __do_assertions(const struct test_mode *t, int flags,
/* Check the CRC to make sure the drawing operations work
* immediately, independently of the features being enabled. */
- do_crc_assertions(flags);
+ if (!(t->feature & FEATURE_HDR))
+ do_crc_assertions(flags);
/* Now we can flush things to make the test faster. */
do_flush(t);
@@ -2956,7 +3046,7 @@ static void __do_assertions(const struct test_mode *t, int flags,
* case, the first check should be enough and a new CRC check
* would only delay the test suite while adding no value to the
* test suite. */
- if (t->screen == SCREEN_PRIM)
+ if (!(t->feature & FEATURE_HDR) && t->screen == SCREEN_PRIM)
do_crc_assertions(flags);
if (fbc.supports_last_action && opt.fbc_check_last_action) {
@@ -3078,6 +3168,11 @@ static void set_plane_for_test_fbc(const struct test_mode *t, igt_plane_t *plane
igt_display_commit2(&drm.display, COMMIT_ATOMIC);
}
+static void intel_hdr_enable(igt_output_t *output)
+{
+ igt_hdr_enable(output);
+}
+
static bool enable_features_for_test(const struct test_mode *t)
{
bool ret = false;
@@ -3088,9 +3183,13 @@ static bool enable_features_for_test(const struct test_mode *t)
if (t->feature & FEATURE_FBC)
intel_fbc_enable(&drm.display);
if (t->feature & FEATURE_PSR)
- ret = psr_enable(drm.fd, drm.debugfs, PSR_MODE_1, NULL);
+ ret |= psr_enable(drm.fd, drm.debugfs, PSR_MODE_1, NULL);
if (t->feature & FEATURE_DRRS)
intel_drrs_enable(prim_mode_params.crtc);
+ if (t->feature & FEATURE_HDR) {
+ intel_hdr_enable(prim_mode_params.output);
+ ret |= true; /* HDR metadata must force a commit */
+ }
return ret;
}
@@ -3114,6 +3213,11 @@ static void check_test_requirements(const struct test_mode *t)
igt_require_f(drrs.can_test,
"Can't test DRRS with the current outputs\n");
+ if (t->feature & FEATURE_HDR) {
+ igt_require_f(hdr.can_test,
+ "Can't test HDR with the current outputs\n");
+ }
+
/*
* In kernel, When PSR is enabled, DRRS will be disabled. So If a test
* case needs DRRS + PSR enabled, that will be skipped.
@@ -3190,9 +3294,13 @@ static void prepare_subtest_data(const struct test_mode *t,
if (need_modeset)
igt_display_commit(&drm.display);
- init_blue_crc(t->format, t->tiling);
- if (pattern)
- init_crcs(t->format, t->tiling, pattern);
+ /* HDR alters the output (EOTF, tone-mapping, bpc), so CRCs won’t match
+ * the SDR reference CRCs. Skip CRC checks for HDR tests. */
+ if (!(t->feature & FEATURE_HDR)) {
+ init_blue_crc(t->format, t->tiling);
+ if (pattern)
+ init_crcs(t->format, t->tiling, pattern);
+ }
need_modeset = enable_features_for_test(t);
if (need_modeset)
@@ -3253,9 +3361,23 @@ static void rte_subtest(const struct test_mode *t)
prepare_subtest_data(t, NULL);
+ /*
+ * unset_all_crtcs() clears HDR metadata (blob_id becomes 0).
+ * After verifying the disabled state, re-arm HDR props on the
+ * output so the next modeset picks them up.
+ */
unset_all_crtcs();
do_assertions(ASSERT_FBC_DISABLED | ASSERT_PSR_DISABLED |
- DONT_ASSERT_CRC | ASSERT_DRRS_INACTIVE);
+ DONT_ASSERT_CRC | ASSERT_DRRS_INACTIVE |
+ ASSERT_HDR_DISABLED);
+
+ /*
+ * Re-arm HDR props on the in-memory output object.
+ * This only stages the state; the actual commit happens
+ * inside enable_prim_screen_and_wait().
+ */
+ if (t->feature & FEATURE_HDR)
+ intel_hdr_enable(prim_mode_params.output);
if (t->pipes == PIPE_SINGLE)
enable_prim_screen_and_wait(t);
@@ -4143,6 +4265,13 @@ static void modesetfrombusy_subtest(const struct test_mode *t)
usleep(10000);
unset_all_crtcs();
+ /*
+ * Re-arm HDR props on the in-memory output object.
+ * This only stages the state; the actual commit happens
+ * inside set_mode_for_params().
+ */
+ if (t->feature & FEATURE_HDR)
+ intel_hdr_enable(prim_mode_params.output);
params->primary.fb = &fb2;
set_mode_for_params(params);
@@ -4179,8 +4308,16 @@ static void suspend_subtest(const struct test_mode *t)
unset_all_crtcs();
igt_system_suspend_autoresume(SUSPEND_STATE_MEM, SUSPEND_TEST_NONE);
do_assertions(ASSERT_FBC_DISABLED | ASSERT_PSR_DISABLED |
- DONT_ASSERT_CRC | ASSERT_DRRS_INACTIVE);
+ DONT_ASSERT_CRC | ASSERT_DRRS_INACTIVE |
+ ASSERT_HDR_DISABLED);
+ /*
+ * Re-arm HDR props on the in-memory output object.
+ * This only stages the state; the actual commit happens
+ * inside set_mode_for_params().
+ */
+ if (t->feature & FEATURE_HDR)
+ intel_hdr_enable(prim_mode_params.output);
set_mode_for_params(params);
do_assertions(0);
}
--
2.25.1
next prev parent reply other threads:[~2026-04-17 21:30 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-04-17 21:38 [PATCH i-g-t,v3 0/5] Enable HDR in IGT Frontbuffer Feature Tests Swati Sharma
2026-04-17 21:38 ` [PATCH i-g-t, v3 1/5] lib/igt_hdr: Move HDR helpers from kms_hdr into shared library Swati Sharma
2026-04-17 23:36 ` Alex Hung
2026-04-28 11:15 ` Sharma, Swati2
2026-04-20 18:46 ` Kamil Konieczny
2026-04-21 12:41 ` Jani Nikula
2026-04-22 17:01 ` Kamil Konieczny
2026-04-28 11:33 ` Sharma, Swati2
2026-04-28 11:28 ` Sharma, Swati2
2026-04-17 21:38 ` [PATCH i-g-t,v3 2/5] lib/igt_hdr: Fix EOTF bit flag checking Swati Sharma
2026-04-17 21:38 ` [PATCH i-g-t, v3 3/5] tests/intel/kms_frontbuffer_tracking: Add HDR feature support Swati Sharma
2026-04-17 21:38 ` [PATCH i-g-t, v3 4/5] lib/igt_hdr: Add helpers to enable and disable HDR on an output Swati Sharma
2026-04-17 21:38 ` Swati Sharma [this message]
2026-04-21 12:31 ` ✓ i915.CI.BAT: success for Enable HDR in IGT Frontbuffer Feature Tests (rev3) Patchwork
2026-04-21 12:50 ` ✓ Xe.CI.BAT: " Patchwork
2026-04-21 13:59 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-04-21 17:01 ` ✗ i915.CI.Full: " 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=20260417213818.2050571-6-swati2.sharma@intel.com \
--to=swati2.sharma@intel.com \
--cc=igt-dev@lists.freedesktop.org \
--cc=suraj.kandpal@intel.com \
/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