Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/11] Fix Adaptive-Sync SDP for PR with Link ON + Auxless-ALPM
@ 2026-05-25  5:22 Ankit Nautiyal
  2026-05-25  5:22 ` [PATCH 01/11] drm/i915/psr: Add helper to get Async Video timing support in PR active Ankit Nautiyal
                   ` (16 more replies)
  0 siblings, 17 replies; 22+ messages in thread
From: Ankit Nautiyal @ 2026-05-25  5:22 UTC (permalink / raw)
  To: intel-gfx, intel-xe
  Cc: ville.syrjala, jouni.hogander, animesh.manna, Ankit Nautiyal

Enable Adaptive Sync SDP for Panel replay + auxless ALPM.
First few patches are fixes in existing AS SDP enablement and drm core
changes for Panel replay with SDP.
Later patches add the support to send AS SDP for Panel replay with Link
ON and with auxless ALPM (Link-Off). 

This series is in continuation from discussions in [1] [2] [3]
and is actually revision 5 of the series [4].

While sending patches Rev 3 of [4], patchwork encountered an issue and
somehow dropped few patches from the series, and created new patchwork
links with incomplete list of patches for rev 3 and 4. With this CI couldnt
pick up the series for testing.

To avoid further confusion and more patchwork links with missing patches,
I am modifying the subject of the series to create new 'final' patchwork
link (with a hope that patchwork doesn't miss anymore patches) for which
we can get the CI results.

As the first few drm core changes get reviews, I intend to send those
separately and get them merge next.

[1] https://lore.kernel.org/all/1b8c6c6de1e5fe0db83e6ae942dfee7e6f950767.camel@intel.com/
[2] https://lore.kernel.org/all/aPtqdAxDwiuQZbrn@intel.com/
[3] https://lore.kernel.org/intel-gfx/7c2d6f4e-69e6-452a-89cc-5fd4254430bd@intel.com/T/#m6e8beab2cc3b6ff9d61f740f107d83a2f4e08114
[4] https://patchwork.freedesktop.org/series/161977/#rev2

Changes from last revision of Series [4]
 - Add helper to print SDP version in the logs and use it.
 - Fill missing sdp_type field in AS SDP unpack.
 - Check PR support also in helper
   intel_psr_pr_async_video_timing_supported()
 - Add #TODO to check Display ID 2.0 blocks for AS SDP for determining
   AS SDP v2 support.
 - Check if PR is enabled along with AS SDP enable before setting
   relevant Downspread CTRL DPCD bits.

Rev 5:
 - Since all DRM core changes and PCON related fixes are merged, rebase
   the remaining patches.

Rev 6:
 - Re-spin of previous 11-patch series with one previously omitted patch
   added as 12/12. Patches 1-11 are unchanged from previous revision.

Rev 7:
 - Address review comments form Ville.
 - Drop patch to split AS SDP computation between compute_config and
   compute_config_late.

Ankit Nautiyal (11):
  drm/i915/psr: Add helper to get Async Video timing support in PR
    active
  drm/i915/dp: Add member to intel_dp to store AS SDP v2 support
  drm/i915/dp: Allow AS SDP only if v2 is supported
  drm/i915/psr: Write the PR config DPCDs in burst mode
  drm/i915/display: Add helper for AS SDP transmission time selection
  drm/i915/psr: Program Panel Replay CONFIG3 using AS SDP transmission
    time
  drm/i915/dp: Set relevant Downspread Ctrl DPCD bits for PR + Auxless
    ALPM
  drm/i915/dp: Program AS SDP DB[1:0] for PR with Link off
  drm/i915/dp: Compute and include coasting vtotal for AS SDP
  drm/i915/dp: Enable AS SDP whenever VRR is possible
  drm/i915/dp: Account for AS_SDP guardband only when enabled

 drivers/gpu/drm/i915/display/intel_alpm.c     | 20 +++-
 drivers/gpu/drm/i915/display/intel_display.c  |  3 +-
 .../drm/i915/display/intel_display_types.h    |  1 +
 drivers/gpu/drm/i915/display/intel_dp.c       | 96 +++++++++++++++++--
 drivers/gpu/drm/i915/display/intel_dp.h       |  2 +
 .../drm/i915/display/intel_dp_link_training.c | 20 +++-
 .../drm/i915/display/intel_dp_link_training.h |  3 +-
 drivers/gpu/drm/i915/display/intel_dp_mst.c   |  2 +-
 drivers/gpu/drm/i915/display/intel_psr.c      | 40 +++++---
 drivers/gpu/drm/i915/display/intel_psr.h      |  1 +
 10 files changed, 161 insertions(+), 27 deletions(-)

-- 
2.45.2


^ permalink raw reply	[flat|nested] 22+ messages in thread

* [PATCH 01/11] drm/i915/psr: Add helper to get Async Video timing support in PR active
  2026-05-25  5:22 [PATCH 00/11] Fix Adaptive-Sync SDP for PR with Link ON + Auxless-ALPM Ankit Nautiyal
@ 2026-05-25  5:22 ` Ankit Nautiyal
  2026-05-25  5:22 ` [PATCH 02/11] drm/i915/dp: Add member to intel_dp to store AS SDP v2 support Ankit Nautiyal
                   ` (15 subsequent siblings)
  16 siblings, 0 replies; 22+ messages in thread
From: Ankit Nautiyal @ 2026-05-25  5:22 UTC (permalink / raw)
  To: intel-gfx, intel-xe
  Cc: ville.syrjala, jouni.hogander, animesh.manna, Ankit Nautiyal

Introduce a helper to check if Panel Replay has Async Video Timing support
during PR Active state.

v2: Confirm that Panel Replay is supported before checking for
    Async Video Timing Support during PR active. (Ville)

Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
 drivers/gpu/drm/i915/display/intel_psr.c | 11 +++++++++++
 drivers/gpu/drm/i915/display/intel_psr.h |  1 +
 2 files changed, 12 insertions(+)

diff --git a/drivers/gpu/drm/i915/display/intel_psr.c b/drivers/gpu/drm/i915/display/intel_psr.c
index b0414bd1dc6b..242c8cd27275 100644
--- a/drivers/gpu/drm/i915/display/intel_psr.c
+++ b/drivers/gpu/drm/i915/display/intel_psr.c
@@ -4694,3 +4694,14 @@ bool intel_psr_use_trans_push(const struct intel_crtc_state *crtc_state)
 
 	return HAS_PSR_TRANS_PUSH_FRAME_CHANGE(display) && crtc_state->has_psr;
 }
+
+bool intel_psr_pr_async_video_timing_supported(struct intel_dp *intel_dp)
+{
+	struct intel_connector *connector = intel_dp->attached_connector;
+	u8 *dpcd = connector->dp.panel_replay_caps.dpcd;
+	u8 pr_support = dpcd[INTEL_PR_DPCD_INDEX(DP_PANEL_REPLAY_CAP_SUPPORT)];
+	u8 pr_cap = dpcd[INTEL_PR_DPCD_INDEX(DP_PANEL_REPLAY_CAP_CAPABILITY)];
+
+	return (pr_support & DP_PANEL_REPLAY_SUPPORT) &&
+		!(pr_cap & DP_PANEL_REPLAY_ASYNC_VIDEO_TIMING_NOT_SUPPORTED_IN_PR);
+}
diff --git a/drivers/gpu/drm/i915/display/intel_psr.h b/drivers/gpu/drm/i915/display/intel_psr.h
index 394b641840b3..29723e63888f 100644
--- a/drivers/gpu/drm/i915/display/intel_psr.h
+++ b/drivers/gpu/drm/i915/display/intel_psr.h
@@ -86,5 +86,6 @@ void intel_psr_compute_config_late(struct intel_dp *intel_dp,
 				   struct intel_crtc_state *crtc_state);
 int intel_psr_min_guardband(struct intel_crtc_state *crtc_state);
 bool intel_psr_use_trans_push(const struct intel_crtc_state *crtc_state);
+bool intel_psr_pr_async_video_timing_supported(struct intel_dp *intel_dp);
 
 #endif /* __INTEL_PSR_H__ */
-- 
2.45.2


^ permalink raw reply related	[flat|nested] 22+ messages in thread

* [PATCH 02/11] drm/i915/dp: Add member to intel_dp to store AS SDP v2 support
  2026-05-25  5:22 [PATCH 00/11] Fix Adaptive-Sync SDP for PR with Link ON + Auxless-ALPM Ankit Nautiyal
  2026-05-25  5:22 ` [PATCH 01/11] drm/i915/psr: Add helper to get Async Video timing support in PR active Ankit Nautiyal
@ 2026-05-25  5:22 ` Ankit Nautiyal
  2026-05-25  5:22 ` [PATCH 03/11] drm/i915/dp: Allow AS SDP only if v2 is supported Ankit Nautiyal
                   ` (14 subsequent siblings)
  16 siblings, 0 replies; 22+ messages in thread
From: Ankit Nautiyal @ 2026-05-25  5:22 UTC (permalink / raw)
  To: intel-gfx, intel-xe
  Cc: ville.syrjala, jouni.hogander, animesh.manna, Ankit Nautiyal

eDP v1.5a advertises support for Adaptive Sync SDP and with that the
support for AS SDP v2 is mandatory.

DP v2.1 SCR advertises support for FAVT payload fields parsing in DPCD
0x2214 Bit 2. This indicates the support for Adaptive-Sync SDP version 2
(AS SDP v2), which allows the source to set the version in HB2[4:0] and the
payload length in HB3[5:0] of the AS SDP header.

DP v2.1 SCR also introduces ASYNC_VIDEO_TIMING_NOT_SUPPORTED_IN_PR in the
Panel Replay Capability DPCD 0x00b1 (Bit 3). When this bit is set, the sink
does not support asynchronous video timing while in a Panel Replay Active
state and the source is required to keep transmitting Adaptive-Sync
SDPs. The spec mandates that such sinks shall support AS SDP v2.

Infer AS SDP v2 support from these capabilities and store it in
struct intel_dp for use by subsequent feature enablement changes.

v2:
 - Include parsing ASYNC_VIDEO_TIMING_NOT_SUPPORTED_IN_PR bit to
   determine AS SDP v2 support. (Ville)
v3:
 - Use helper to determine asynch video timing support.
v4:
 - Add AS SDP v2 support for eDP as per v1.5a.
 - Add a check for Panel Replay support before checking for Async video
   timing support in PR
 - Add a TODO for Display ID and PCON considerations. (Ville)

Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
 .../drm/i915/display/intel_display_types.h    |  1 +
 drivers/gpu/drm/i915/display/intel_dp.c       | 49 +++++++++++++++++++
 2 files changed, 50 insertions(+)

diff --git a/drivers/gpu/drm/i915/display/intel_display_types.h b/drivers/gpu/drm/i915/display/intel_display_types.h
index 1c0c32c4e43a..e5d2c21e92e9 100644
--- a/drivers/gpu/drm/i915/display/intel_display_types.h
+++ b/drivers/gpu/drm/i915/display/intel_display_types.h
@@ -1873,6 +1873,7 @@ struct intel_dp {
 	/* connector directly attached - won't be use for modeset in mst world */
 	struct intel_connector *attached_connector;
 	bool as_sdp_supported;
+	bool as_sdp_v2_supported;
 
 	struct drm_dp_tunnel *tunnel;
 	bool tunnel_suspended:1;
diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
index 1920d2f02666..92a650a728d8 100644
--- a/drivers/gpu/drm/i915/display/intel_dp.c
+++ b/drivers/gpu/drm/i915/display/intel_dp.c
@@ -6365,6 +6365,46 @@ intel_dp_unset_edid(struct intel_dp *intel_dp)
 					       false);
 }
 
+static bool
+intel_dp_sink_supports_as_sdp_v2(struct intel_dp *intel_dp)
+{
+	u8 rx_features;
+
+	/*
+	 * The DP spec does not explicitly provide the AS SDP v2 capability.
+	 * So based on the DP v2.1 SCR, we infer it from the following bits:
+	 *
+	 * DP_AS_SDP_FAVT_PAYLOAD_FIELDS_PARSING_SUPPORTED indicates support for
+	 * FAVT, which is explicitly defined to use AS SDP v2.
+	 *
+	 * DP_ASYNC_VIDEO_TIMING_NOT_SUPPORTED_IN_PR indicates that the sink
+	 * does not support asynchronous video timing while in PR Active,
+	 * requiring the source to keep transmitting Adaptive-Sync SDPs. The
+	 * spec mandates that such sinks shall support AS SDP v2.
+	 *
+	 * #TODO: Check the Adaptive-Sync DisplayID 2.1 block once DisplayID
+	 * parsing is available. This may help detect AS SDP v2 support for
+	 * native DP 2.1 sinks that do not expose FAVT or PR-based capability
+	 * bits.
+	 *
+	 * In the presence of PCONs, check PCON support from DPCD and sink
+	 * support from Display ID.
+	 */
+
+	if (drm_dp_dpcd_read_byte(&intel_dp->aux,
+				  DP_DPRX_FEATURE_ENUMERATION_LIST_CONT_1,
+				  &rx_features) == 1) {
+		if (rx_features & DP_AS_SDP_FAVT_PAYLOAD_FIELDS_PARSING_SUPPORTED)
+			return true;
+	}
+
+	if (intel_dp->psr.sink_panel_replay_support &&
+	    !intel_psr_pr_async_video_timing_supported(intel_dp))
+		return true;
+
+	return false;
+}
+
 static void
 intel_dp_detect_sdp_caps(struct intel_dp *intel_dp)
 {
@@ -6372,6 +6412,15 @@ intel_dp_detect_sdp_caps(struct intel_dp *intel_dp)
 
 	intel_dp->as_sdp_supported = HAS_AS_SDP(display) &&
 		drm_dp_as_sdp_supported(&intel_dp->aux, intel_dp->dpcd);
+
+	if (!intel_dp->as_sdp_supported)
+		return;
+
+	/* eDP Adaptive-Sync SDP always uses AS SDP v2 */
+	if (intel_dp_is_edp(intel_dp))
+		intel_dp->as_sdp_v2_supported =  true;
+	else
+		intel_dp->as_sdp_v2_supported = intel_dp_sink_supports_as_sdp_v2(intel_dp);
 }
 
 static bool intel_dp_needs_dpcd_probe(struct intel_dp *intel_dp, bool force_on_external)
-- 
2.45.2


^ permalink raw reply related	[flat|nested] 22+ messages in thread

* [PATCH 03/11] drm/i915/dp: Allow AS SDP only if v2 is supported
  2026-05-25  5:22 [PATCH 00/11] Fix Adaptive-Sync SDP for PR with Link ON + Auxless-ALPM Ankit Nautiyal
  2026-05-25  5:22 ` [PATCH 01/11] drm/i915/psr: Add helper to get Async Video timing support in PR active Ankit Nautiyal
  2026-05-25  5:22 ` [PATCH 02/11] drm/i915/dp: Add member to intel_dp to store AS SDP v2 support Ankit Nautiyal
@ 2026-05-25  5:22 ` Ankit Nautiyal
  2026-05-25  5:22 ` [PATCH 04/11] drm/i915/psr: Write the PR config DPCDs in burst mode Ankit Nautiyal
                   ` (13 subsequent siblings)
  16 siblings, 0 replies; 22+ messages in thread
From: Ankit Nautiyal @ 2026-05-25  5:22 UTC (permalink / raw)
  To: intel-gfx, intel-xe
  Cc: ville.syrjala, jouni.hogander, animesh.manna, Ankit Nautiyal

We do not support AS SDP version 1, so allow AS SDP only if AS SDP v2 is
supported.

Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
 drivers/gpu/drm/i915/display/intel_dp.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
index 92a650a728d8..7ce45c28cc3a 100644
--- a/drivers/gpu/drm/i915/display/intel_dp.c
+++ b/drivers/gpu/drm/i915/display/intel_dp.c
@@ -3172,11 +3172,11 @@ static void intel_dp_compute_vsc_colorimetry(const struct intel_crtc_state *crtc
 static bool intel_dp_needs_as_sdp(struct intel_dp *intel_dp,
 				  struct intel_crtc_state *crtc_state)
 {
-	if (!intel_dp->as_sdp_supported)
+	if (!intel_dp->as_sdp_v2_supported)
 		return false;
 
 	/*
-	 * #TODO Implement AS SDP for DP branch device.
+	 * #TODO: Add AS SDP v1 support for PCONs (DP branch devices).
 	 */
 	if (drm_dp_is_branch(intel_dp->dpcd))
 		return false;
-- 
2.45.2


^ permalink raw reply related	[flat|nested] 22+ messages in thread

* [PATCH 04/11] drm/i915/psr: Write the PR config DPCDs in burst mode
  2026-05-25  5:22 [PATCH 00/11] Fix Adaptive-Sync SDP for PR with Link ON + Auxless-ALPM Ankit Nautiyal
                   ` (2 preceding siblings ...)
  2026-05-25  5:22 ` [PATCH 03/11] drm/i915/dp: Allow AS SDP only if v2 is supported Ankit Nautiyal
@ 2026-05-25  5:22 ` Ankit Nautiyal
  2026-05-25  5:22 ` [PATCH 05/11] drm/i915/display: Add helper for AS SDP transmission time selection Ankit Nautiyal
                   ` (12 subsequent siblings)
  16 siblings, 0 replies; 22+ messages in thread
From: Ankit Nautiyal @ 2026-05-25  5:22 UTC (permalink / raw)
  To: intel-gfx, intel-xe
  Cc: ville.syrjala, jouni.hogander, animesh.manna, Ankit Nautiyal

Replace the consecutive single-byte writes to PANEL_REPLAY_CONFIG and
CONFIG2 with one drm_dp_dpcd_write() burst starting at PANEL_REPLAY_CONFIG,
reducing AUX transactions.

v2: Drop extra conditions, and optimize variables. (Ville)
v3: Drop the error check after write. (Ville)

Suggested-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
 drivers/gpu/drm/i915/display/intel_psr.c | 26 ++++++++++++------------
 1 file changed, 13 insertions(+), 13 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_psr.c b/drivers/gpu/drm/i915/display/intel_psr.c
index 242c8cd27275..9ee47881c2e2 100644
--- a/drivers/gpu/drm/i915/display/intel_psr.c
+++ b/drivers/gpu/drm/i915/display/intel_psr.c
@@ -793,27 +793,27 @@ static bool psr2_su_region_et_valid(struct intel_connector *connector, bool pane
 static void _panel_replay_enable_sink(struct intel_dp *intel_dp,
 				      const struct intel_crtc_state *crtc_state)
 {
-	u8 val = DP_PANEL_REPLAY_ENABLE |
-		DP_PANEL_REPLAY_VSC_SDP_CRC_EN |
-		DP_PANEL_REPLAY_UNRECOVERABLE_ERROR_EN |
-		DP_PANEL_REPLAY_RFB_STORAGE_ERROR_EN |
-		DP_PANEL_REPLAY_ACTIVE_FRAME_CRC_ERROR_EN;
-	u8 panel_replay_config2 = DP_PANEL_REPLAY_CRC_VERIFICATION;
+	u8 panel_replay_config[2];
+
+	panel_replay_config[0] = DP_PANEL_REPLAY_ENABLE |
+				 DP_PANEL_REPLAY_VSC_SDP_CRC_EN |
+				 DP_PANEL_REPLAY_UNRECOVERABLE_ERROR_EN |
+				 DP_PANEL_REPLAY_RFB_STORAGE_ERROR_EN |
+				 DP_PANEL_REPLAY_ACTIVE_FRAME_CRC_ERROR_EN;
+	panel_replay_config[1] = DP_PANEL_REPLAY_CRC_VERIFICATION;
 
 	if (crtc_state->has_sel_update)
-		val |= DP_PANEL_REPLAY_SU_ENABLE;
+		panel_replay_config[0] |= DP_PANEL_REPLAY_SU_ENABLE;
 
 	if (crtc_state->enable_psr2_su_region_et)
-		val |= DP_PANEL_REPLAY_ENABLE_SU_REGION_ET;
+		panel_replay_config[0] |= DP_PANEL_REPLAY_ENABLE_SU_REGION_ET;
 
 	if (crtc_state->req_psr2_sdp_prior_scanline)
-		panel_replay_config2 |=
+		panel_replay_config[1] |=
 			DP_PANEL_REPLAY_SU_REGION_SCANLINE_CAPTURE;
 
-	drm_dp_dpcd_writeb(&intel_dp->aux, PANEL_REPLAY_CONFIG, val);
-
-	drm_dp_dpcd_writeb(&intel_dp->aux, PANEL_REPLAY_CONFIG2,
-			   panel_replay_config2);
+	drm_dp_dpcd_write(&intel_dp->aux, PANEL_REPLAY_CONFIG,
+			  panel_replay_config, sizeof(panel_replay_config));
 }
 
 static void _psr_enable_sink(struct intel_dp *intel_dp,
-- 
2.45.2


^ permalink raw reply related	[flat|nested] 22+ messages in thread

* [PATCH 05/11] drm/i915/display: Add helper for AS SDP transmission time selection
  2026-05-25  5:22 [PATCH 00/11] Fix Adaptive-Sync SDP for PR with Link ON + Auxless-ALPM Ankit Nautiyal
                   ` (3 preceding siblings ...)
  2026-05-25  5:22 ` [PATCH 04/11] drm/i915/psr: Write the PR config DPCDs in burst mode Ankit Nautiyal
@ 2026-05-25  5:22 ` Ankit Nautiyal
  2026-05-25  5:22 ` [PATCH 06/11] drm/i915/psr: Program Panel Replay CONFIG3 using AS SDP transmission time Ankit Nautiyal
                   ` (11 subsequent siblings)
  16 siblings, 0 replies; 22+ messages in thread
From: Ankit Nautiyal @ 2026-05-25  5:22 UTC (permalink / raw)
  To: intel-gfx, intel-xe
  Cc: ville.syrjala, jouni.hogander, animesh.manna, Ankit Nautiyal

AS SDP may be transmitted at T1 or T2 depending on Panel Replay and
Adaptive Sync SDP configuration as per DP 2.1. Current we are using
T1 only, but future PR/AS SDP modes/features may require T2 or dynamic
selection.

Introduce a helper to return the appropriate AS SDP transmission time so
that a single value is consistently used for programming PR_ALPM.
For now this returns T1.

v2: Avoid adding new member to crtc_state; use a helper. (Ville)
v3: Clarify why AS SDP transmission time is fixed to T1. (Ville)
v4: Return u8 from intel_dp_as_sdp_transmission_time(). (Ville)

Bspec: 68920
Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
 drivers/gpu/drm/i915/display/intel_alpm.c | 20 +++++++++++++++++++-
 drivers/gpu/drm/i915/display/intel_dp.c   | 11 +++++++++++
 drivers/gpu/drm/i915/display/intel_dp.h   |  2 ++
 3 files changed, 32 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/i915/display/intel_alpm.c b/drivers/gpu/drm/i915/display/intel_alpm.c
index a7350ce8e716..c6963ea420cc 100644
--- a/drivers/gpu/drm/i915/display/intel_alpm.c
+++ b/drivers/gpu/drm/i915/display/intel_alpm.c
@@ -11,6 +11,7 @@
 #include "intel_crtc.h"
 #include "intel_de.h"
 #include "intel_display_types.h"
+#include "intel_display_utils.h"
 #include "intel_dp.h"
 #include "intel_dp_aux.h"
 #include "intel_psr.h"
@@ -359,6 +360,23 @@ void intel_alpm_lobf_compute_config(struct intel_dp *intel_dp,
 	crtc_state->has_lobf = true;
 }
 
+static u32 get_pr_alpm_as_sdp_transmission_time(const struct intel_crtc_state *crtc_state)
+{
+	u8 as_sdp_setup_time = intel_dp_as_sdp_transmission_time();
+
+	switch (as_sdp_setup_time) {
+	case DP_PR_AS_SDP_SETUP_TIME_T1:
+		return PR_ALPM_CTL_ADAPTIVE_SYNC_SDP_POSITION_T1;
+	case DP_PR_AS_SDP_SETUP_TIME_DYNAMIC:
+		return PR_ALPM_CTL_ADAPTIVE_SYNC_SDP_POSITION_T1_OR_T2;
+	case DP_PR_AS_SDP_SETUP_TIME_T2:
+		return PR_ALPM_CTL_ADAPTIVE_SYNC_SDP_POSITION_T2;
+	default:
+		MISSING_CASE(as_sdp_setup_time);
+		return PR_ALPM_CTL_ADAPTIVE_SYNC_SDP_POSITION_T1;
+	}
+}
+
 static void lnl_alpm_configure(struct intel_dp *intel_dp,
 			       const struct intel_crtc_state *crtc_state)
 {
@@ -382,7 +400,7 @@ static void lnl_alpm_configure(struct intel_dp *intel_dp,
 			ALPM_CTL_AUX_LESS_WAKE_TIME(crtc_state->alpm_state.aux_less_wake_lines);
 
 		if (intel_dp->as_sdp_supported) {
-			u32 pr_alpm_ctl = PR_ALPM_CTL_ADAPTIVE_SYNC_SDP_POSITION_T1;
+			u32 pr_alpm_ctl = get_pr_alpm_as_sdp_transmission_time(crtc_state);
 
 			if (crtc_state->link_off_after_as_sdp_when_pr_active)
 				pr_alpm_ctl |= PR_ALPM_CTL_ALLOW_LINK_OFF_BETWEEN_AS_SDP_AND_SU;
diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
index 7ce45c28cc3a..64b3842adcce 100644
--- a/drivers/gpu/drm/i915/display/intel_dp.c
+++ b/drivers/gpu/drm/i915/display/intel_dp.c
@@ -7555,3 +7555,14 @@ bool intel_dp_joiner_candidate_valid(struct intel_connector *connector,
 
 	return true;
 }
+
+u8 intel_dp_as_sdp_transmission_time(void)
+{
+	/*
+	 * DP allows AS SDP position to move during PR active in some cases, but
+	 * software-controlled refresh rate changes with DC6v / ALPM require the
+	 * AS SDP to remain at T1. Use T1 unconditionally for now.
+	 */
+
+	return DP_PR_AS_SDP_SETUP_TIME_T1;
+}
diff --git a/drivers/gpu/drm/i915/display/intel_dp.h b/drivers/gpu/drm/i915/display/intel_dp.h
index f41480d24714..46a7f5c70981 100644
--- a/drivers/gpu/drm/i915/display/intel_dp.h
+++ b/drivers/gpu/drm/i915/display/intel_dp.h
@@ -241,4 +241,6 @@ bool intel_dp_joiner_candidate_valid(struct intel_connector *connector,
 	for ((__num_joined_pipes) = 1; (__num_joined_pipes) <= (I915_MAX_PIPES); (__num_joined_pipes)++) \
 		for_each_if(intel_dp_joiner_candidate_valid(__connector, (__mode)->hdisplay, __num_joined_pipes))
 
+u8 intel_dp_as_sdp_transmission_time(void);
+
 #endif /* __INTEL_DP_H__ */
-- 
2.45.2


^ permalink raw reply related	[flat|nested] 22+ messages in thread

* [PATCH 06/11] drm/i915/psr: Program Panel Replay CONFIG3 using AS SDP transmission time
  2026-05-25  5:22 [PATCH 00/11] Fix Adaptive-Sync SDP for PR with Link ON + Auxless-ALPM Ankit Nautiyal
                   ` (4 preceding siblings ...)
  2026-05-25  5:22 ` [PATCH 05/11] drm/i915/display: Add helper for AS SDP transmission time selection Ankit Nautiyal
@ 2026-05-25  5:22 ` Ankit Nautiyal
  2026-05-25  5:22 ` [PATCH 07/11] drm/i915/dp: Set relevant Downspread Ctrl DPCD bits for PR + Auxless ALPM Ankit Nautiyal
                   ` (10 subsequent siblings)
  16 siblings, 0 replies; 22+ messages in thread
From: Ankit Nautiyal @ 2026-05-25  5:22 UTC (permalink / raw)
  To: intel-gfx, intel-xe
  Cc: ville.syrjala, jouni.hogander, animesh.manna, Ankit Nautiyal

Panel Replay requires the AS SDP transmission time to be written into
PANEL_REPLAY_CONFIG3. This field was previously not programmed.

Use the AS SDP transmission-time helper to populate CONFIG3.

Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
 drivers/gpu/drm/i915/display/intel_psr.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/i915/display/intel_psr.c b/drivers/gpu/drm/i915/display/intel_psr.c
index 9ee47881c2e2..a7c012e1571d 100644
--- a/drivers/gpu/drm/i915/display/intel_psr.c
+++ b/drivers/gpu/drm/i915/display/intel_psr.c
@@ -794,6 +794,7 @@ static void _panel_replay_enable_sink(struct intel_dp *intel_dp,
 				      const struct intel_crtc_state *crtc_state)
 {
 	u8 panel_replay_config[2];
+	u8 panel_replay_config_3;
 
 	panel_replay_config[0] = DP_PANEL_REPLAY_ENABLE |
 				 DP_PANEL_REPLAY_VSC_SDP_CRC_EN |
@@ -801,7 +802,6 @@ static void _panel_replay_enable_sink(struct intel_dp *intel_dp,
 				 DP_PANEL_REPLAY_RFB_STORAGE_ERROR_EN |
 				 DP_PANEL_REPLAY_ACTIVE_FRAME_CRC_ERROR_EN;
 	panel_replay_config[1] = DP_PANEL_REPLAY_CRC_VERIFICATION;
-
 	if (crtc_state->has_sel_update)
 		panel_replay_config[0] |= DP_PANEL_REPLAY_SU_ENABLE;
 
@@ -814,6 +814,9 @@ static void _panel_replay_enable_sink(struct intel_dp *intel_dp,
 
 	drm_dp_dpcd_write(&intel_dp->aux, PANEL_REPLAY_CONFIG,
 			  panel_replay_config, sizeof(panel_replay_config));
+
+	panel_replay_config_3 = intel_dp_as_sdp_transmission_time();
+	drm_dp_dpcd_writeb(&intel_dp->aux, PANEL_REPLAY_CONFIG3, panel_replay_config_3);
 }
 
 static void _psr_enable_sink(struct intel_dp *intel_dp,
-- 
2.45.2


^ permalink raw reply related	[flat|nested] 22+ messages in thread

* [PATCH 07/11] drm/i915/dp: Set relevant Downspread Ctrl DPCD bits for PR + Auxless ALPM
  2026-05-25  5:22 [PATCH 00/11] Fix Adaptive-Sync SDP for PR with Link ON + Auxless-ALPM Ankit Nautiyal
                   ` (5 preceding siblings ...)
  2026-05-25  5:22 ` [PATCH 06/11] drm/i915/psr: Program Panel Replay CONFIG3 using AS SDP transmission time Ankit Nautiyal
@ 2026-05-25  5:22 ` Ankit Nautiyal
  2026-05-25  5:22 ` [PATCH 08/11] drm/i915/dp: Program AS SDP DB[1:0] for PR with Link off Ankit Nautiyal
                   ` (9 subsequent siblings)
  16 siblings, 0 replies; 22+ messages in thread
From: Ankit Nautiyal @ 2026-05-25  5:22 UTC (permalink / raw)
  To: intel-gfx, intel-xe
  Cc: ville.syrjala, jouni.hogander, animesh.manna, Ankit Nautiyal

If a Panel Replay capable sink, supports Async Video timing in
PR active state, then source does not necessarily need to send AS SDPs
during PR active.

However, if asynchronous video timing is not supported, then for PR with
Aux-less ALPM, the source must transmit Adaptive-Sync SDPs for video
timing synchronization while PR is active.

If the source needs to send AS SDP during PR active, this requires setting
DPCD 0x0107[6] (FIXED_VTOTAL_AS_SDP_EN_IN_PR_ACTIVE). This applies whether
VRR is enabled (AVT/FAVT) or fixed-timing mode is used.

This bit defines AS SDP timing behavior during PR Active, even if AS SDPs
are briefly suspended.

Program the relevant Downspread Ctrl DPCD bits accordingly.

v2: Instead of Panel Replay check simply use AS SDP enable check. (Ville)
v3: Since the bit is defined in context of Panel Replay and AS SDP, add
    a check for both. (Ville)
v4: Extract pr_with_as_sdp logic into helper function. (Ville)

Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
 .../drm/i915/display/intel_dp_link_training.c | 20 +++++++++++++++++--
 .../drm/i915/display/intel_dp_link_training.h |  3 ++-
 drivers/gpu/drm/i915/display/intel_dp_mst.c   |  2 +-
 3 files changed, 21 insertions(+), 4 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_dp_link_training.c b/drivers/gpu/drm/i915/display/intel_dp_link_training.c
index a26094223f78..e566f2b49594 100644
--- a/drivers/gpu/drm/i915/display/intel_dp_link_training.c
+++ b/drivers/gpu/drm/i915/display/intel_dp_link_training.c
@@ -34,8 +34,10 @@
 #include "intel_dp.h"
 #include "intel_dp_link_training.h"
 #include "intel_encoder.h"
+#include "intel_hdmi.h"
 #include "intel_hotplug.h"
 #include "intel_panel.h"
+#include "intel_psr.h"
 
 #define LT_MSG_PREFIX			"[CONNECTOR:%d:%s][ENCODER:%d:%s][%s] "
 #define LT_MSG_ARGS(_intel_dp, _dp_phy)	(_intel_dp)->attached_connector->base.base.id, \
@@ -710,16 +712,28 @@ static bool intel_dp_link_max_vswing_reached(struct intel_dp *intel_dp,
 	return true;
 }
 
-void intel_dp_link_training_set_mode(struct intel_dp *intel_dp, int link_rate, bool is_vrr)
+void intel_dp_link_training_set_mode(struct intel_dp *intel_dp, int link_rate,
+				     bool is_vrr,
+				     bool pr_with_as_sdp_enable)
 {
 	u8 link_config[2];
 
 	link_config[0] = is_vrr ? DP_MSA_TIMING_PAR_IGNORE_EN : 0;
+	link_config[0] |= pr_with_as_sdp_enable ? DP_FIXED_VTOTAL_AS_SDP_EN_IN_PR_ACTIVE : 0;
 	link_config[1] = drm_dp_is_uhbr_rate(link_rate) ?
 			 DP_SET_ANSI_128B132B : DP_SET_ANSI_8B10B;
 	drm_dp_dpcd_write(&intel_dp->aux, DP_DOWNSPREAD_CTRL, link_config, 2);
 }
 
+static bool
+intel_dp_pr_with_as_sdp_enabled(struct intel_dp *intel_dp,
+				const struct intel_crtc_state *crtc_state)
+{
+	return intel_psr_needs_alpm_aux_less(intel_dp, crtc_state) &&
+		(crtc_state->infoframes.enable &
+		 intel_hdmi_infoframe_enable(DP_SDP_ADAPTIVE_SYNC));
+}
+
 static void intel_dp_update_downspread_ctrl(struct intel_dp *intel_dp,
 					    const struct intel_crtc_state *crtc_state)
 {
@@ -737,7 +751,9 @@ static void intel_dp_update_downspread_ctrl(struct intel_dp *intel_dp,
 	  * especially on the first real commit when clearing the inherited flag.
 	  */
 	intel_dp_link_training_set_mode(intel_dp,
-					crtc_state->port_clock, crtc_state->vrr.in_range);
+					crtc_state->port_clock,
+					crtc_state->vrr.in_range,
+					intel_dp_pr_with_as_sdp_enabled(intel_dp, crtc_state));
 }
 
 void intel_dp_link_training_set_bw(struct intel_dp *intel_dp,
diff --git a/drivers/gpu/drm/i915/display/intel_dp_link_training.h b/drivers/gpu/drm/i915/display/intel_dp_link_training.h
index 33dcbde6a408..18c34c1a472f 100644
--- a/drivers/gpu/drm/i915/display/intel_dp_link_training.h
+++ b/drivers/gpu/drm/i915/display/intel_dp_link_training.h
@@ -18,7 +18,8 @@ int intel_dp_init_lttpr_and_dprx_caps(struct intel_dp *intel_dp);
 bool intel_dp_lttpr_transparent_mode_enabled(struct intel_dp *intel_dp);
 
 void intel_dp_link_training_set_mode(struct intel_dp *intel_dp,
-				     int link_rate, bool is_vrr);
+				     int link_rate, bool is_vrr,
+				     bool pr_with_as_sdp_enable);
 void intel_dp_link_training_set_bw(struct intel_dp *intel_dp,
 				   int link_bw, int rate_select, int lane_count,
 				   bool enhanced_framing, bool post_lt_adj_req);
diff --git a/drivers/gpu/drm/i915/display/intel_dp_mst.c b/drivers/gpu/drm/i915/display/intel_dp_mst.c
index 8f73e01db17c..a238f7948cec 100644
--- a/drivers/gpu/drm/i915/display/intel_dp_mst.c
+++ b/drivers/gpu/drm/i915/display/intel_dp_mst.c
@@ -2145,7 +2145,7 @@ void intel_dp_mst_prepare_probe(struct intel_dp *intel_dp)
 
 	intel_dp_compute_rate(intel_dp, link_rate, &link_bw, &rate_select);
 
-	intel_dp_link_training_set_mode(intel_dp, link_rate, false);
+	intel_dp_link_training_set_mode(intel_dp, link_rate, false, false);
 	intel_dp_link_training_set_bw(intel_dp, link_bw, rate_select, lane_count,
 				      drm_dp_enhanced_frame_cap(intel_dp->dpcd), false);
 
-- 
2.45.2


^ permalink raw reply related	[flat|nested] 22+ messages in thread

* [PATCH 08/11] drm/i915/dp: Program AS SDP DB[1:0] for PR with Link off
  2026-05-25  5:22 [PATCH 00/11] Fix Adaptive-Sync SDP for PR with Link ON + Auxless-ALPM Ankit Nautiyal
                   ` (6 preceding siblings ...)
  2026-05-25  5:22 ` [PATCH 07/11] drm/i915/dp: Set relevant Downspread Ctrl DPCD bits for PR + Auxless ALPM Ankit Nautiyal
@ 2026-05-25  5:22 ` Ankit Nautiyal
  2026-05-25  5:22 ` [PATCH 09/11] drm/i915/dp: Compute and include coasting vtotal for AS SDP Ankit Nautiyal
                   ` (8 subsequent siblings)
  16 siblings, 0 replies; 22+ messages in thread
From: Ankit Nautiyal @ 2026-05-25  5:22 UTC (permalink / raw)
  To: intel-gfx, intel-xe
  Cc: ville.syrjala, jouni.hogander, animesh.manna, Ankit Nautiyal

For Panel Replay with AUX-less ALPM (link-off PR), the source must send
Adaptive-Sync SDP v2. Program DB[1:0] per DP spec v2.1:
- VRR AVT: 00b (variable VTotal)
- VRR FAVT: 10b/11b (TRR not reached/reached)
- Fixed timing with PR link-off (VRR off): 01b (AS disabled; VTotal fixed)

Also, drop the redundant target_rr assignment.

v2: Fix the else case. (Ville)

Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
 drivers/gpu/drm/i915/display/intel_dp.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
index 64b3842adcce..6aac52750798 100644
--- a/drivers/gpu/drm/i915/display/intel_dp.c
+++ b/drivers/gpu/drm/i915/display/intel_dp.c
@@ -3211,9 +3211,10 @@ static void intel_dp_compute_as_sdp(struct intel_dp *intel_dp,
 		as_sdp->mode = DP_AS_SDP_FAVT_TRR_REACHED;
 		as_sdp->target_rr = drm_mode_vrefresh(adjusted_mode);
 		as_sdp->target_rr_divider = true;
-	} else {
+	} else if (crtc_state->vrr.enable) {
 		as_sdp->mode = DP_AS_SDP_AVT_DYNAMIC_VTOTAL;
-		as_sdp->target_rr = 0;
+	} else {
+		as_sdp->mode = DP_AS_SDP_AVT_FIXED_VTOTAL;
 	}
 }
 
-- 
2.45.2


^ permalink raw reply related	[flat|nested] 22+ messages in thread

* [PATCH 09/11] drm/i915/dp: Compute and include coasting vtotal for AS SDP
  2026-05-25  5:22 [PATCH 00/11] Fix Adaptive-Sync SDP for PR with Link ON + Auxless-ALPM Ankit Nautiyal
                   ` (7 preceding siblings ...)
  2026-05-25  5:22 ` [PATCH 08/11] drm/i915/dp: Program AS SDP DB[1:0] for PR with Link off Ankit Nautiyal
@ 2026-05-25  5:22 ` Ankit Nautiyal
  2026-05-25  5:22 ` [PATCH 10/11] drm/i915/dp: Enable AS SDP whenever VRR is possible Ankit Nautiyal
                   ` (7 subsequent siblings)
  16 siblings, 0 replies; 22+ messages in thread
From: Ankit Nautiyal @ 2026-05-25  5:22 UTC (permalink / raw)
  To: intel-gfx, intel-xe
  Cc: ville.syrjala, jouni.hogander, animesh.manna, Ankit Nautiyal

DP v2.1 allows the source to temporarily suspend Adaptive-Sync SDP
transmission while Panel Replay is active when the sink supports
asynchronous video timing.

In such cases, the sink relies on the last transmitted AS SDP timing
information to maintain the refresh rate. To support this behavior,
compute and populate the coasting vtotal field in the AS SDP payload.

Include coasting vtotal in AS SDP packing, unpacking, and comparison,
and set it during late AS SDP configuration for PR with Aux-less ALPM
when asynchronous video timing is supported.

Note:
The coasting vtotal value is fully under driver control i.e. the HW does
not overwrite these payload bytes. HW only samples the PR_ALPM_CTL[AS SDP
Transmission in Active Disable] bit during PR active state and reflects it
in the AS SDP payload at the appropriate time.

Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
 drivers/gpu/drm/i915/display/intel_display.c |  3 ++-
 drivers/gpu/drm/i915/display/intel_dp.c      | 20 ++++++++++++++++++++
 2 files changed, 22 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
index 6c8935f69db1..514c2e5c28cd 100644
--- a/drivers/gpu/drm/i915/display/intel_display.c
+++ b/drivers/gpu/drm/i915/display/intel_display.c
@@ -4892,7 +4892,8 @@ intel_compare_dp_as_sdp(const struct drm_dp_as_sdp *a,
 		a->duration_incr_ms == b->duration_incr_ms &&
 		a->duration_decr_ms == b->duration_decr_ms &&
 		a->target_rr_divider == b->target_rr_divider &&
-		a->mode == b->mode;
+		a->mode == b->mode &&
+		a->coasting_vtotal == b->coasting_vtotal;
 }
 
 static bool
diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
index 6aac52750798..a3aa0dadf0e1 100644
--- a/drivers/gpu/drm/i915/display/intel_dp.c
+++ b/drivers/gpu/drm/i915/display/intel_dp.c
@@ -3216,6 +3216,22 @@ static void intel_dp_compute_as_sdp(struct intel_dp *intel_dp,
 	} else {
 		as_sdp->mode = DP_AS_SDP_AVT_FIXED_VTOTAL;
 	}
+
+	/*
+	 * For Panel Replay with Async Video Timing support, the source can
+	 * disable sending the AS SDP during PR Active state. In that case,
+	 * the sink needs the coasting vtotal value to maintain the refresh
+	 * rate. The HW only samples this on PR_ALPM_CTL[AS SDP Transmission
+	 * in Active Disable], which we never program, so providing the value
+	 * unconditionally when the sink advertises the capability is safe.
+	 *
+	 * #TODO:
+	 * If we ever advertise support for coasting at other refresh targets,
+	 * this logic could be revisited. For now, use the minimum refresh rate
+	 * as the only safe coasting value.
+	 */
+	if (intel_psr_pr_async_video_timing_supported(intel_dp))
+		as_sdp->coasting_vtotal = crtc_state->vrr.vmax;
 }
 
 static void intel_dp_compute_vsc_sdp(struct intel_dp *intel_dp,
@@ -5195,6 +5211,9 @@ static ssize_t intel_dp_as_sdp_pack(const struct drm_dp_as_sdp *as_sdp,
 	if (as_sdp->target_rr_divider)
 		sdp->db[4] |= 0x20;
 
+	sdp->db[7] = as_sdp->coasting_vtotal & 0xFF;
+	sdp->db[8] = (as_sdp->coasting_vtotal >> 8) & 0xFF;
+
 	return length;
 }
 
@@ -5379,6 +5398,7 @@ int intel_dp_as_sdp_unpack(struct drm_dp_as_sdp *as_sdp,
 	as_sdp->vtotal = (sdp->db[2] << 8) | sdp->db[1];
 	as_sdp->target_rr = ((sdp->db[4] & 0x3) << 8) | sdp->db[3];
 	as_sdp->target_rr_divider = sdp->db[4] & 0x20 ? true : false;
+	as_sdp->coasting_vtotal = (sdp->db[8] << 8) | sdp->db[7];
 
 	return 0;
 }
-- 
2.45.2


^ permalink raw reply related	[flat|nested] 22+ messages in thread

* [PATCH 10/11] drm/i915/dp: Enable AS SDP whenever VRR is possible
  2026-05-25  5:22 [PATCH 00/11] Fix Adaptive-Sync SDP for PR with Link ON + Auxless-ALPM Ankit Nautiyal
                   ` (8 preceding siblings ...)
  2026-05-25  5:22 ` [PATCH 09/11] drm/i915/dp: Compute and include coasting vtotal for AS SDP Ankit Nautiyal
@ 2026-05-25  5:22 ` Ankit Nautiyal
  2026-05-25 14:24   ` Ville Syrjälä
  2026-05-26  6:43   ` [PATCH 10/11] drm/i915/dp: Enable AS SDP whenever VRR is possible or PR !async Ankit Nautiyal
  2026-05-25  5:22 ` [PATCH 11/11] drm/i915/dp: Account for AS_SDP guardband only when enabled Ankit Nautiyal
                   ` (6 subsequent siblings)
  16 siblings, 2 replies; 22+ messages in thread
From: Ankit Nautiyal @ 2026-05-25  5:22 UTC (permalink / raw)
  To: intel-gfx, intel-xe
  Cc: ville.syrjala, jouni.hogander, animesh.manna, Ankit Nautiyal

Currently AS SDP is only configured when VRR is enabled. With the optimized
guardband, the guardband must already account for AS SDP wakeup time
whenever AS SDP can be sent, otherwise turning VRR on after the initial
modeset could require a larger guardband and trigger a full modeset.

Switch the check in intel_dp_needs_as_sdp() from crtc_state->vrr.enable
to intel_vrr_possible(crtc_state), so AS SDP is enabled (and accounted
for in the guardband) on any configuration where VRR could be turned on,
not only when it currently is.

Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
 drivers/gpu/drm/i915/display/intel_dp.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
index a3aa0dadf0e1..c01ce3403ad1 100644
--- a/drivers/gpu/drm/i915/display/intel_dp.c
+++ b/drivers/gpu/drm/i915/display/intel_dp.c
@@ -3181,7 +3181,7 @@ static bool intel_dp_needs_as_sdp(struct intel_dp *intel_dp,
 	if (drm_dp_is_branch(intel_dp->dpcd))
 		return false;
 
-	return crtc_state->vrr.enable;
+	return intel_vrr_possible(crtc_state);
 }
 
 static void intel_dp_compute_as_sdp(struct intel_dp *intel_dp,
-- 
2.45.2


^ permalink raw reply related	[flat|nested] 22+ messages in thread

* [PATCH 11/11] drm/i915/dp: Account for AS_SDP guardband only when enabled
  2026-05-25  5:22 [PATCH 00/11] Fix Adaptive-Sync SDP for PR with Link ON + Auxless-ALPM Ankit Nautiyal
                   ` (9 preceding siblings ...)
  2026-05-25  5:22 ` [PATCH 10/11] drm/i915/dp: Enable AS SDP whenever VRR is possible Ankit Nautiyal
@ 2026-05-25  5:22 ` Ankit Nautiyal
  2026-05-25  6:05 ` ✓ CI.KUnit: success for Fix Adaptive-Sync SDP for PR with Link ON + Auxless-ALPM (rev4) Patchwork
                   ` (5 subsequent siblings)
  16 siblings, 0 replies; 22+ messages in thread
From: Ankit Nautiyal @ 2026-05-25  5:22 UTC (permalink / raw)
  To: intel-gfx, intel-xe
  Cc: ville.syrjala, jouni.hogander, animesh.manna, Ankit Nautiyal

Currently the intel_dp_sdp_min_guardband() accounts for AS_SDP for all
platforms that support adaptive sync SDP even for configurations where
it cannot be enabled. Instead account for adaptive sync SDP guardband
only when it is enabled.

Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
 drivers/gpu/drm/i915/display/intel_dp.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
index c01ce3403ad1..8694633693d6 100644
--- a/drivers/gpu/drm/i915/display/intel_dp.c
+++ b/drivers/gpu/drm/i915/display/intel_dp.c
@@ -7535,7 +7535,6 @@ int intel_dp_get_lines_for_sdp(const struct intel_crtc_state *crtc_state, u32 ty
 int intel_dp_sdp_min_guardband(const struct intel_crtc_state *crtc_state,
 			       bool assume_all_enabled)
 {
-	struct intel_display *display = to_intel_display(crtc_state);
 	int sdp_guardband = 0;
 
 	if (assume_all_enabled ||
@@ -7550,8 +7549,8 @@ int intel_dp_sdp_min_guardband(const struct intel_crtc_state *crtc_state,
 		sdp_guardband = max(sdp_guardband,
 				    intel_dp_get_lines_for_sdp(crtc_state, DP_SDP_PPS));
 
-	if ((assume_all_enabled && HAS_AS_SDP(display)) ||
-	    crtc_state->infoframes.enable & intel_hdmi_infoframe_enable(DP_SDP_ADAPTIVE_SYNC))
+	if (crtc_state->infoframes.enable &
+	    intel_hdmi_infoframe_enable(DP_SDP_ADAPTIVE_SYNC))
 		sdp_guardband = max(sdp_guardband,
 				    intel_dp_get_lines_for_sdp(crtc_state, DP_SDP_ADAPTIVE_SYNC));
 
-- 
2.45.2


^ permalink raw reply related	[flat|nested] 22+ messages in thread

* ✓ CI.KUnit: success for Fix Adaptive-Sync SDP for PR with Link ON + Auxless-ALPM (rev4)
  2026-05-25  5:22 [PATCH 00/11] Fix Adaptive-Sync SDP for PR with Link ON + Auxless-ALPM Ankit Nautiyal
                   ` (10 preceding siblings ...)
  2026-05-25  5:22 ` [PATCH 11/11] drm/i915/dp: Account for AS_SDP guardband only when enabled Ankit Nautiyal
@ 2026-05-25  6:05 ` Patchwork
  2026-05-25  6:43 ` ✓ Xe.CI.BAT: " Patchwork
                   ` (4 subsequent siblings)
  16 siblings, 0 replies; 22+ messages in thread
From: Patchwork @ 2026-05-25  6:05 UTC (permalink / raw)
  To: Ankit Nautiyal; +Cc: intel-xe

== Series Details ==

Series: Fix Adaptive-Sync SDP for PR with Link ON + Auxless-ALPM (rev4)
URL   : https://patchwork.freedesktop.org/series/164513/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[06:04:41] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[06:04:45] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[06:05:16] Starting KUnit Kernel (1/1)...
[06:05:16] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[06:05:17] ================== guc_buf (11 subtests) ===================
[06:05:17] [PASSED] test_smallest
[06:05:17] [PASSED] test_largest
[06:05:17] [PASSED] test_granular
[06:05:17] [PASSED] test_unique
[06:05:17] [PASSED] test_overlap
[06:05:17] [PASSED] test_reusable
[06:05:17] [PASSED] test_too_big
[06:05:17] [PASSED] test_flush
[06:05:17] [PASSED] test_lookup
[06:05:17] [PASSED] test_data
[06:05:17] [PASSED] test_class
[06:05:17] ===================== [PASSED] guc_buf =====================
[06:05:17] =================== guc_dbm (7 subtests) ===================
[06:05:17] [PASSED] test_empty
[06:05:17] [PASSED] test_default
[06:05:17] ======================== test_size  ========================
[06:05:17] [PASSED] 4
[06:05:17] [PASSED] 8
[06:05:17] [PASSED] 32
[06:05:17] [PASSED] 256
[06:05:17] ==================== [PASSED] test_size ====================
[06:05:17] ======================= test_reuse  ========================
[06:05:17] [PASSED] 4
[06:05:17] [PASSED] 8
[06:05:17] [PASSED] 32
[06:05:17] [PASSED] 256
[06:05:17] =================== [PASSED] test_reuse ====================
[06:05:17] =================== test_range_overlap  ====================
[06:05:17] [PASSED] 4
[06:05:17] [PASSED] 8
[06:05:17] [PASSED] 32
[06:05:17] [PASSED] 256
[06:05:17] =============== [PASSED] test_range_overlap ================
[06:05:17] =================== test_range_compact  ====================
[06:05:17] [PASSED] 4
[06:05:17] [PASSED] 8
[06:05:17] [PASSED] 32
[06:05:17] [PASSED] 256
[06:05:17] =============== [PASSED] test_range_compact ================
[06:05:17] ==================== test_range_spare  =====================
[06:05:17] [PASSED] 4
[06:05:17] [PASSED] 8
[06:05:17] [PASSED] 32
[06:05:17] [PASSED] 256
[06:05:17] ================ [PASSED] test_range_spare =================
[06:05:17] ===================== [PASSED] guc_dbm =====================
[06:05:17] =================== guc_idm (6 subtests) ===================
[06:05:17] [PASSED] bad_init
[06:05:17] [PASSED] no_init
[06:05:17] [PASSED] init_fini
[06:05:17] [PASSED] check_used
[06:05:17] [PASSED] check_quota
[06:05:17] [PASSED] check_all
[06:05:17] ===================== [PASSED] guc_idm =====================
[06:05:17] ================== no_relay (3 subtests) ===================
[06:05:17] [PASSED] xe_drops_guc2pf_if_not_ready
[06:05:17] [PASSED] xe_drops_guc2vf_if_not_ready
[06:05:17] [PASSED] xe_rejects_send_if_not_ready
[06:05:17] ==================== [PASSED] no_relay =====================
[06:05:17] ================== pf_relay (14 subtests) ==================
[06:05:17] [PASSED] pf_rejects_guc2pf_too_short
[06:05:17] [PASSED] pf_rejects_guc2pf_too_long
[06:05:17] [PASSED] pf_rejects_guc2pf_no_payload
[06:05:17] [PASSED] pf_fails_no_payload
[06:05:17] [PASSED] pf_fails_bad_origin
[06:05:17] [PASSED] pf_fails_bad_type
[06:05:17] [PASSED] pf_txn_reports_error
[06:05:17] [PASSED] pf_txn_sends_pf2guc
[06:05:17] [PASSED] pf_sends_pf2guc
[06:05:17] [SKIPPED] pf_loopback_nop
[06:05:17] [SKIPPED] pf_loopback_echo
[06:05:17] [SKIPPED] pf_loopback_fail
[06:05:17] [SKIPPED] pf_loopback_busy
[06:05:17] [SKIPPED] pf_loopback_retry
[06:05:17] ==================== [PASSED] pf_relay =====================
[06:05:17] ================== vf_relay (3 subtests) ===================
[06:05:17] [PASSED] vf_rejects_guc2vf_too_short
[06:05:17] [PASSED] vf_rejects_guc2vf_too_long
[06:05:17] [PASSED] vf_rejects_guc2vf_no_payload
[06:05:17] ==================== [PASSED] vf_relay =====================
[06:05:17] ================ pf_gt_config (9 subtests) =================
[06:05:17] [PASSED] fair_contexts_1vf
[06:05:17] [PASSED] fair_doorbells_1vf
[06:05:17] [PASSED] fair_ggtt_1vf
[06:05:17] ====================== fair_vram_1vf  ======================
[06:05:17] [PASSED] 3.50 GiB
[06:05:17] [PASSED] 11.5 GiB
[06:05:17] [PASSED] 15.5 GiB
[06:05:17] [PASSED] 31.5 GiB
[06:05:17] [PASSED] 63.5 GiB
[06:05:17] [PASSED] 1.91 GiB
[06:05:17] ================== [PASSED] fair_vram_1vf ==================
[06:05:17] ================ fair_vram_1vf_admin_only  =================
[06:05:17] [PASSED] 3.50 GiB
[06:05:17] [PASSED] 11.5 GiB
[06:05:17] [PASSED] 15.5 GiB
[06:05:17] [PASSED] 31.5 GiB
[06:05:17] [PASSED] 63.5 GiB
[06:05:17] [PASSED] 1.91 GiB
[06:05:17] ============ [PASSED] fair_vram_1vf_admin_only =============
[06:05:17] ====================== fair_contexts  ======================
[06:05:17] [PASSED] 1 VF
[06:05:17] [PASSED] 2 VFs
[06:05:17] [PASSED] 3 VFs
[06:05:17] [PASSED] 4 VFs
[06:05:17] [PASSED] 5 VFs
[06:05:17] [PASSED] 6 VFs
[06:05:17] [PASSED] 7 VFs
[06:05:17] [PASSED] 8 VFs
[06:05:17] [PASSED] 9 VFs
[06:05:17] [PASSED] 10 VFs
[06:05:17] [PASSED] 11 VFs
[06:05:17] [PASSED] 12 VFs
[06:05:17] [PASSED] 13 VFs
[06:05:17] [PASSED] 14 VFs
[06:05:17] [PASSED] 15 VFs
[06:05:17] [PASSED] 16 VFs
[06:05:17] [PASSED] 17 VFs
[06:05:17] [PASSED] 18 VFs
[06:05:17] [PASSED] 19 VFs
[06:05:17] [PASSED] 20 VFs
[06:05:17] [PASSED] 21 VFs
[06:05:17] [PASSED] 22 VFs
[06:05:17] [PASSED] 23 VFs
[06:05:17] [PASSED] 24 VFs
[06:05:17] [PASSED] 25 VFs
[06:05:17] [PASSED] 26 VFs
[06:05:17] [PASSED] 27 VFs
[06:05:17] [PASSED] 28 VFs
[06:05:17] [PASSED] 29 VFs
[06:05:17] [PASSED] 30 VFs
[06:05:17] [PASSED] 31 VFs
[06:05:17] [PASSED] 32 VFs
[06:05:17] [PASSED] 33 VFs
[06:05:17] [PASSED] 34 VFs
[06:05:17] [PASSED] 35 VFs
[06:05:17] [PASSED] 36 VFs
[06:05:17] [PASSED] 37 VFs
[06:05:17] [PASSED] 38 VFs
[06:05:17] [PASSED] 39 VFs
[06:05:17] [PASSED] 40 VFs
[06:05:17] [PASSED] 41 VFs
[06:05:17] [PASSED] 42 VFs
[06:05:17] [PASSED] 43 VFs
[06:05:17] [PASSED] 44 VFs
[06:05:17] [PASSED] 45 VFs
[06:05:17] [PASSED] 46 VFs
[06:05:17] [PASSED] 47 VFs
[06:05:17] [PASSED] 48 VFs
[06:05:17] [PASSED] 49 VFs
[06:05:17] [PASSED] 50 VFs
[06:05:17] [PASSED] 51 VFs
[06:05:17] [PASSED] 52 VFs
[06:05:17] [PASSED] 53 VFs
[06:05:17] [PASSED] 54 VFs
[06:05:17] [PASSED] 55 VFs
[06:05:17] [PASSED] 56 VFs
[06:05:17] [PASSED] 57 VFs
[06:05:17] [PASSED] 58 VFs
[06:05:17] [PASSED] 59 VFs
[06:05:17] [PASSED] 60 VFs
[06:05:17] [PASSED] 61 VFs
[06:05:17] [PASSED] 62 VFs
[06:05:17] [PASSED] 63 VFs
[06:05:17] ================== [PASSED] fair_contexts ==================
[06:05:17] ===================== fair_doorbells  ======================
[06:05:17] [PASSED] 1 VF
[06:05:17] [PASSED] 2 VFs
[06:05:17] [PASSED] 3 VFs
[06:05:17] [PASSED] 4 VFs
[06:05:17] [PASSED] 5 VFs
[06:05:17] [PASSED] 6 VFs
[06:05:17] [PASSED] 7 VFs
[06:05:17] [PASSED] 8 VFs
[06:05:17] [PASSED] 9 VFs
[06:05:17] [PASSED] 10 VFs
[06:05:17] [PASSED] 11 VFs
[06:05:17] [PASSED] 12 VFs
[06:05:17] [PASSED] 13 VFs
[06:05:17] [PASSED] 14 VFs
[06:05:17] [PASSED] 15 VFs
[06:05:17] [PASSED] 16 VFs
[06:05:17] [PASSED] 17 VFs
[06:05:17] [PASSED] 18 VFs
[06:05:17] [PASSED] 19 VFs
[06:05:17] [PASSED] 20 VFs
[06:05:17] [PASSED] 21 VFs
[06:05:17] [PASSED] 22 VFs
[06:05:17] [PASSED] 23 VFs
[06:05:17] [PASSED] 24 VFs
[06:05:17] [PASSED] 25 VFs
[06:05:17] [PASSED] 26 VFs
[06:05:17] [PASSED] 27 VFs
[06:05:17] [PASSED] 28 VFs
[06:05:17] [PASSED] 29 VFs
[06:05:17] [PASSED] 30 VFs
[06:05:17] [PASSED] 31 VFs
[06:05:17] [PASSED] 32 VFs
[06:05:17] [PASSED] 33 VFs
[06:05:17] [PASSED] 34 VFs
[06:05:17] [PASSED] 35 VFs
[06:05:17] [PASSED] 36 VFs
[06:05:17] [PASSED] 37 VFs
[06:05:17] [PASSED] 38 VFs
[06:05:17] [PASSED] 39 VFs
[06:05:17] [PASSED] 40 VFs
[06:05:17] [PASSED] 41 VFs
[06:05:17] [PASSED] 42 VFs
[06:05:17] [PASSED] 43 VFs
[06:05:17] [PASSED] 44 VFs
[06:05:17] [PASSED] 45 VFs
[06:05:17] [PASSED] 46 VFs
[06:05:17] [PASSED] 47 VFs
[06:05:17] [PASSED] 48 VFs
[06:05:17] [PASSED] 49 VFs
[06:05:17] [PASSED] 50 VFs
[06:05:17] [PASSED] 51 VFs
[06:05:17] [PASSED] 52 VFs
[06:05:17] [PASSED] 53 VFs
[06:05:17] [PASSED] 54 VFs
[06:05:17] [PASSED] 55 VFs
[06:05:17] [PASSED] 56 VFs
[06:05:17] [PASSED] 57 VFs
[06:05:17] [PASSED] 58 VFs
[06:05:17] [PASSED] 59 VFs
[06:05:17] [PASSED] 60 VFs
[06:05:17] [PASSED] 61 VFs
[06:05:17] [PASSED] 62 VFs
[06:05:17] [PASSED] 63 VFs
[06:05:17] ================= [PASSED] fair_doorbells ==================
[06:05:17] ======================== fair_ggtt  ========================
[06:05:17] [PASSED] 1 VF
[06:05:17] [PASSED] 2 VFs
[06:05:17] [PASSED] 3 VFs
[06:05:17] [PASSED] 4 VFs
[06:05:17] [PASSED] 5 VFs
[06:05:17] [PASSED] 6 VFs
[06:05:17] [PASSED] 7 VFs
[06:05:17] [PASSED] 8 VFs
[06:05:17] [PASSED] 9 VFs
[06:05:17] [PASSED] 10 VFs
[06:05:17] [PASSED] 11 VFs
[06:05:17] [PASSED] 12 VFs
[06:05:17] [PASSED] 13 VFs
[06:05:17] [PASSED] 14 VFs
[06:05:17] [PASSED] 15 VFs
[06:05:17] [PASSED] 16 VFs
[06:05:17] [PASSED] 17 VFs
[06:05:17] [PASSED] 18 VFs
[06:05:17] [PASSED] 19 VFs
[06:05:17] [PASSED] 20 VFs
[06:05:17] [PASSED] 21 VFs
[06:05:17] [PASSED] 22 VFs
[06:05:17] [PASSED] 23 VFs
[06:05:17] [PASSED] 24 VFs
[06:05:17] [PASSED] 25 VFs
[06:05:17] [PASSED] 26 VFs
[06:05:17] [PASSED] 27 VFs
[06:05:17] [PASSED] 28 VFs
[06:05:17] [PASSED] 29 VFs
[06:05:17] [PASSED] 30 VFs
[06:05:17] [PASSED] 31 VFs
[06:05:17] [PASSED] 32 VFs
[06:05:17] [PASSED] 33 VFs
[06:05:17] [PASSED] 34 VFs
[06:05:17] [PASSED] 35 VFs
[06:05:17] [PASSED] 36 VFs
[06:05:17] [PASSED] 37 VFs
[06:05:17] [PASSED] 38 VFs
[06:05:17] [PASSED] 39 VFs
[06:05:17] [PASSED] 40 VFs
[06:05:17] [PASSED] 41 VFs
[06:05:17] [PASSED] 42 VFs
[06:05:17] [PASSED] 43 VFs
[06:05:17] [PASSED] 44 VFs
[06:05:17] [PASSED] 45 VFs
[06:05:17] [PASSED] 46 VFs
[06:05:17] [PASSED] 47 VFs
[06:05:17] [PASSED] 48 VFs
[06:05:17] [PASSED] 49 VFs
[06:05:17] [PASSED] 50 VFs
[06:05:17] [PASSED] 51 VFs
[06:05:17] [PASSED] 52 VFs
[06:05:17] [PASSED] 53 VFs
[06:05:17] [PASSED] 54 VFs
[06:05:17] [PASSED] 55 VFs
[06:05:17] [PASSED] 56 VFs
[06:05:17] [PASSED] 57 VFs
[06:05:17] [PASSED] 58 VFs
[06:05:17] [PASSED] 59 VFs
[06:05:17] [PASSED] 60 VFs
[06:05:17] [PASSED] 61 VFs
[06:05:17] [PASSED] 62 VFs
[06:05:17] [PASSED] 63 VFs
[06:05:17] ==================== [PASSED] fair_ggtt ====================
[06:05:17] ======================== fair_vram  ========================
[06:05:17] [PASSED] 1 VF
[06:05:17] [PASSED] 2 VFs
[06:05:17] [PASSED] 3 VFs
[06:05:17] [PASSED] 4 VFs
[06:05:17] [PASSED] 5 VFs
[06:05:17] [PASSED] 6 VFs
[06:05:17] [PASSED] 7 VFs
[06:05:17] [PASSED] 8 VFs
[06:05:17] [PASSED] 9 VFs
[06:05:17] [PASSED] 10 VFs
[06:05:17] [PASSED] 11 VFs
[06:05:17] [PASSED] 12 VFs
[06:05:17] [PASSED] 13 VFs
[06:05:17] [PASSED] 14 VFs
[06:05:17] [PASSED] 15 VFs
[06:05:17] [PASSED] 16 VFs
[06:05:17] [PASSED] 17 VFs
[06:05:17] [PASSED] 18 VFs
[06:05:17] [PASSED] 19 VFs
[06:05:17] [PASSED] 20 VFs
[06:05:17] [PASSED] 21 VFs
[06:05:17] [PASSED] 22 VFs
[06:05:17] [PASSED] 23 VFs
[06:05:17] [PASSED] 24 VFs
[06:05:17] [PASSED] 25 VFs
[06:05:17] [PASSED] 26 VFs
[06:05:17] [PASSED] 27 VFs
[06:05:17] [PASSED] 28 VFs
[06:05:17] [PASSED] 29 VFs
[06:05:17] [PASSED] 30 VFs
[06:05:17] [PASSED] 31 VFs
[06:05:17] [PASSED] 32 VFs
[06:05:17] [PASSED] 33 VFs
[06:05:17] [PASSED] 34 VFs
[06:05:17] [PASSED] 35 VFs
[06:05:17] [PASSED] 36 VFs
[06:05:17] [PASSED] 37 VFs
[06:05:17] [PASSED] 38 VFs
[06:05:17] [PASSED] 39 VFs
[06:05:17] [PASSED] 40 VFs
[06:05:17] [PASSED] 41 VFs
[06:05:17] [PASSED] 42 VFs
[06:05:17] [PASSED] 43 VFs
[06:05:17] [PASSED] 44 VFs
[06:05:17] [PASSED] 45 VFs
[06:05:17] [PASSED] 46 VFs
[06:05:17] [PASSED] 47 VFs
[06:05:17] [PASSED] 48 VFs
[06:05:17] [PASSED] 49 VFs
[06:05:17] [PASSED] 50 VFs
[06:05:17] [PASSED] 51 VFs
[06:05:17] [PASSED] 52 VFs
[06:05:17] [PASSED] 53 VFs
[06:05:17] [PASSED] 54 VFs
[06:05:17] [PASSED] 55 VFs
[06:05:17] [PASSED] 56 VFs
[06:05:17] [PASSED] 57 VFs
[06:05:17] [PASSED] 58 VFs
[06:05:17] [PASSED] 59 VFs
[06:05:17] [PASSED] 60 VFs
[06:05:17] [PASSED] 61 VFs
[06:05:17] [PASSED] 62 VFs
[06:05:17] [PASSED] 63 VFs
[06:05:17] ==================== [PASSED] fair_vram ====================
[06:05:17] ================== [PASSED] pf_gt_config ===================
[06:05:17] ===================== lmtt (1 subtest) =====================
[06:05:17] ======================== test_ops  =========================
[06:05:17] [PASSED] 2-level
[06:05:17] [PASSED] multi-level
[06:05:17] ==================== [PASSED] test_ops =====================
[06:05:17] ====================== [PASSED] lmtt =======================
[06:05:17] ================= pf_service (11 subtests) =================
[06:05:17] [PASSED] pf_negotiate_any
[06:05:17] [PASSED] pf_negotiate_base_match
[06:05:17] [PASSED] pf_negotiate_base_newer
[06:05:17] [PASSED] pf_negotiate_base_next
[06:05:17] [SKIPPED] pf_negotiate_base_older
[06:05:17] [PASSED] pf_negotiate_base_prev
[06:05:17] [PASSED] pf_negotiate_latest_match
[06:05:17] [PASSED] pf_negotiate_latest_newer
[06:05:17] [PASSED] pf_negotiate_latest_next
[06:05:17] [SKIPPED] pf_negotiate_latest_older
[06:05:17] [SKIPPED] pf_negotiate_latest_prev
[06:05:17] =================== [PASSED] pf_service ====================
[06:05:17] ================= xe_guc_g2g (2 subtests) ==================
[06:05:17] ============== xe_live_guc_g2g_kunit_default  ==============
[06:05:17] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[06:05:17] ============== xe_live_guc_g2g_kunit_allmem  ===============
[06:05:17] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[06:05:17] =================== [SKIPPED] xe_guc_g2g ===================
[06:05:17] =================== xe_mocs (2 subtests) ===================
[06:05:17] ================ xe_live_mocs_kernel_kunit  ================
[06:05:17] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[06:05:17] ================ xe_live_mocs_reset_kunit  =================
[06:05:17] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[06:05:17] ==================== [SKIPPED] xe_mocs =====================
[06:05:17] ================= xe_migrate (2 subtests) ==================
[06:05:17] ================= xe_migrate_sanity_kunit  =================
[06:05:17] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[06:05:17] ================== xe_validate_ccs_kunit  ==================
[06:05:17] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[06:05:17] =================== [SKIPPED] xe_migrate ===================
[06:05:17] ================== xe_dma_buf (1 subtest) ==================
[06:05:17] ==================== xe_dma_buf_kunit  =====================
[06:05:17] ================ [SKIPPED] xe_dma_buf_kunit ================
[06:05:17] =================== [SKIPPED] xe_dma_buf ===================
[06:05:17] ================= xe_bo_shrink (1 subtest) =================
[06:05:17] =================== xe_bo_shrink_kunit  ====================
[06:05:17] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[06:05:17] ================== [SKIPPED] xe_bo_shrink ==================
[06:05:17] ==================== xe_bo (2 subtests) ====================
[06:05:17] ================== xe_ccs_migrate_kunit  ===================
[06:05:17] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[06:05:17] ==================== xe_bo_evict_kunit  ====================
[06:05:17] =============== [SKIPPED] xe_bo_evict_kunit ================
[06:05:17] ===================== [SKIPPED] xe_bo ======================
[06:05:17] ==================== args (13 subtests) ====================
[06:05:17] [PASSED] count_args_test
[06:05:17] [PASSED] call_args_example
[06:05:17] [PASSED] call_args_test
[06:05:17] [PASSED] drop_first_arg_example
[06:05:17] [PASSED] drop_first_arg_test
[06:05:17] [PASSED] first_arg_example
[06:05:17] [PASSED] first_arg_test
[06:05:17] [PASSED] last_arg_example
[06:05:17] [PASSED] last_arg_test
[06:05:17] [PASSED] pick_arg_example
[06:05:17] [PASSED] if_args_example
[06:05:17] [PASSED] if_args_test
[06:05:17] [PASSED] sep_comma_example
[06:05:17] ====================== [PASSED] args =======================
[06:05:17] =================== xe_pci (3 subtests) ====================
[06:05:17] ==================== check_graphics_ip  ====================
[06:05:17] [PASSED] 12.00 Xe_LP
[06:05:17] [PASSED] 12.10 Xe_LP+
[06:05:17] [PASSED] 12.55 Xe_HPG
[06:05:17] [PASSED] 12.60 Xe_HPC
[06:05:17] [PASSED] 12.70 Xe_LPG
[06:05:17] [PASSED] 12.71 Xe_LPG
[06:05:17] [PASSED] 12.74 Xe_LPG+
[06:05:17] [PASSED] 20.01 Xe2_HPG
[06:05:17] [PASSED] 20.02 Xe2_HPG
[06:05:17] [PASSED] 20.04 Xe2_LPG
[06:05:17] [PASSED] 30.00 Xe3_LPG
[06:05:17] [PASSED] 30.01 Xe3_LPG
[06:05:17] [PASSED] 30.03 Xe3_LPG
[06:05:17] [PASSED] 30.04 Xe3_LPG
[06:05:17] [PASSED] 30.05 Xe3_LPG
[06:05:17] [PASSED] 35.10 Xe3p_LPG
[06:05:17] [PASSED] 35.11 Xe3p_XPC
[06:05:17] ================ [PASSED] check_graphics_ip ================
[06:05:17] ===================== check_media_ip  ======================
[06:05:17] [PASSED] 12.00 Xe_M
[06:05:17] [PASSED] 12.55 Xe_HPM
[06:05:17] [PASSED] 13.00 Xe_LPM+
[06:05:17] [PASSED] 13.01 Xe2_HPM
[06:05:17] [PASSED] 20.00 Xe2_LPM
[06:05:17] [PASSED] 30.00 Xe3_LPM
[06:05:17] [PASSED] 30.02 Xe3_LPM
[06:05:17] [PASSED] 35.00 Xe3p_LPM
[06:05:17] [PASSED] 35.03 Xe3p_HPM
[06:05:17] ================= [PASSED] check_media_ip ==================
[06:05:17] =================== check_platform_desc  ===================
[06:05:17] [PASSED] 0x9A60 (TIGERLAKE)
[06:05:17] [PASSED] 0x9A68 (TIGERLAKE)
[06:05:17] [PASSED] 0x9A70 (TIGERLAKE)
[06:05:17] [PASSED] 0x9A40 (TIGERLAKE)
[06:05:17] [PASSED] 0x9A49 (TIGERLAKE)
[06:05:17] [PASSED] 0x9A59 (TIGERLAKE)
[06:05:17] [PASSED] 0x9A78 (TIGERLAKE)
[06:05:17] [PASSED] 0x9AC0 (TIGERLAKE)
[06:05:17] [PASSED] 0x9AC9 (TIGERLAKE)
[06:05:17] [PASSED] 0x9AD9 (TIGERLAKE)
[06:05:17] [PASSED] 0x9AF8 (TIGERLAKE)
[06:05:17] [PASSED] 0x4C80 (ROCKETLAKE)
[06:05:17] [PASSED] 0x4C8A (ROCKETLAKE)
[06:05:17] [PASSED] 0x4C8B (ROCKETLAKE)
[06:05:17] [PASSED] 0x4C8C (ROCKETLAKE)
[06:05:17] [PASSED] 0x4C90 (ROCKETLAKE)
[06:05:17] [PASSED] 0x4C9A (ROCKETLAKE)
[06:05:17] [PASSED] 0x4680 (ALDERLAKE_S)
[06:05:17] [PASSED] 0x4682 (ALDERLAKE_S)
[06:05:17] [PASSED] 0x4688 (ALDERLAKE_S)
[06:05:17] [PASSED] 0x468A (ALDERLAKE_S)
[06:05:17] [PASSED] 0x468B (ALDERLAKE_S)
[06:05:17] [PASSED] 0x4690 (ALDERLAKE_S)
[06:05:17] [PASSED] 0x4692 (ALDERLAKE_S)
[06:05:17] [PASSED] 0x4693 (ALDERLAKE_S)
[06:05:17] [PASSED] 0x46A0 (ALDERLAKE_P)
[06:05:17] [PASSED] 0x46A1 (ALDERLAKE_P)
[06:05:17] [PASSED] 0x46A2 (ALDERLAKE_P)
[06:05:17] [PASSED] 0x46A3 (ALDERLAKE_P)
[06:05:17] [PASSED] 0x46A6 (ALDERLAKE_P)
[06:05:17] [PASSED] 0x46A8 (ALDERLAKE_P)
[06:05:17] [PASSED] 0x46AA (ALDERLAKE_P)
[06:05:17] [PASSED] 0x462A (ALDERLAKE_P)
[06:05:17] [PASSED] 0x4626 (ALDERLAKE_P)
[06:05:17] [PASSED] 0x4628 (ALDERLAKE_P)
[06:05:17] [PASSED] 0x46B0 (ALDERLAKE_P)
[06:05:17] [PASSED] 0x46B1 (ALDERLAKE_P)
[06:05:17] [PASSED] 0x46B2 (ALDERLAKE_P)
[06:05:17] [PASSED] 0x46B3 (ALDERLAKE_P)
[06:05:17] [PASSED] 0x46C0 (ALDERLAKE_P)
[06:05:17] [PASSED] 0x46C1 (ALDERLAKE_P)
[06:05:17] [PASSED] 0x46C2 (ALDERLAKE_P)
[06:05:17] [PASSED] 0x46C3 (ALDERLAKE_P)
[06:05:17] [PASSED] 0x46D0 (ALDERLAKE_N)
[06:05:17] [PASSED] 0x46D1 (ALDERLAKE_N)
[06:05:17] [PASSED] 0x46D2 (ALDERLAKE_N)
[06:05:17] [PASSED] 0x46D3 (ALDERLAKE_N)
[06:05:17] [PASSED] 0x46D4 (ALDERLAKE_N)
[06:05:17] [PASSED] 0xA721 (ALDERLAKE_P)
[06:05:17] [PASSED] 0xA7A1 (ALDERLAKE_P)
[06:05:17] [PASSED] 0xA7A9 (ALDERLAKE_P)
[06:05:17] [PASSED] 0xA7AC (ALDERLAKE_P)
[06:05:17] [PASSED] 0xA7AD (ALDERLAKE_P)
[06:05:17] [PASSED] 0xA720 (ALDERLAKE_P)
[06:05:17] [PASSED] 0xA7A0 (ALDERLAKE_P)
[06:05:17] [PASSED] 0xA7A8 (ALDERLAKE_P)
[06:05:17] [PASSED] 0xA7AA (ALDERLAKE_P)
[06:05:17] [PASSED] 0xA7AB (ALDERLAKE_P)
[06:05:17] [PASSED] 0xA780 (ALDERLAKE_S)
[06:05:17] [PASSED] 0xA781 (ALDERLAKE_S)
[06:05:17] [PASSED] 0xA782 (ALDERLAKE_S)
[06:05:17] [PASSED] 0xA783 (ALDERLAKE_S)
[06:05:17] [PASSED] 0xA788 (ALDERLAKE_S)
[06:05:17] [PASSED] 0xA789 (ALDERLAKE_S)
[06:05:17] [PASSED] 0xA78A (ALDERLAKE_S)
[06:05:17] [PASSED] 0xA78B (ALDERLAKE_S)
[06:05:17] [PASSED] 0x4905 (DG1)
[06:05:17] [PASSED] 0x4906 (DG1)
[06:05:17] [PASSED] 0x4907 (DG1)
[06:05:17] [PASSED] 0x4908 (DG1)
[06:05:17] [PASSED] 0x4909 (DG1)
[06:05:17] [PASSED] 0x56C0 (DG2)
[06:05:17] [PASSED] 0x56C2 (DG2)
[06:05:17] [PASSED] 0x56C1 (DG2)
[06:05:17] [PASSED] 0x7D51 (METEORLAKE)
[06:05:17] [PASSED] 0x7DD1 (METEORLAKE)
[06:05:17] [PASSED] 0x7D41 (METEORLAKE)
[06:05:17] [PASSED] 0x7D67 (METEORLAKE)
[06:05:17] [PASSED] 0xB640 (METEORLAKE)
[06:05:17] [PASSED] 0x56A0 (DG2)
[06:05:17] [PASSED] 0x56A1 (DG2)
[06:05:17] [PASSED] 0x56A2 (DG2)
[06:05:17] [PASSED] 0x56BE (DG2)
[06:05:17] [PASSED] 0x56BF (DG2)
[06:05:17] [PASSED] 0x5690 (DG2)
[06:05:17] [PASSED] 0x5691 (DG2)
[06:05:17] [PASSED] 0x5692 (DG2)
[06:05:17] [PASSED] 0x56A5 (DG2)
[06:05:17] [PASSED] 0x56A6 (DG2)
[06:05:17] [PASSED] 0x56B0 (DG2)
[06:05:17] [PASSED] 0x56B1 (DG2)
[06:05:17] [PASSED] 0x56BA (DG2)
[06:05:17] [PASSED] 0x56BB (DG2)
[06:05:17] [PASSED] 0x56BC (DG2)
[06:05:17] [PASSED] 0x56BD (DG2)
[06:05:17] [PASSED] 0x5693 (DG2)
[06:05:17] [PASSED] 0x5694 (DG2)
[06:05:17] [PASSED] 0x5695 (DG2)
[06:05:17] [PASSED] 0x56A3 (DG2)
[06:05:17] [PASSED] 0x56A4 (DG2)
[06:05:17] [PASSED] 0x56B2 (DG2)
[06:05:17] [PASSED] 0x56B3 (DG2)
[06:05:17] [PASSED] 0x5696 (DG2)
[06:05:17] [PASSED] 0x5697 (DG2)
[06:05:17] [PASSED] 0xB69 (PVC)
[06:05:17] [PASSED] 0xB6E (PVC)
[06:05:17] [PASSED] 0xBD4 (PVC)
[06:05:17] [PASSED] 0xBD5 (PVC)
[06:05:17] [PASSED] 0xBD6 (PVC)
[06:05:17] [PASSED] 0xBD7 (PVC)
[06:05:17] [PASSED] 0xBD8 (PVC)
[06:05:17] [PASSED] 0xBD9 (PVC)
[06:05:17] [PASSED] 0xBDA (PVC)
[06:05:17] [PASSED] 0xBDB (PVC)
[06:05:17] [PASSED] 0xBE0 (PVC)
[06:05:17] [PASSED] 0xBE1 (PVC)
[06:05:17] [PASSED] 0xBE5 (PVC)
[06:05:17] [PASSED] 0x7D40 (METEORLAKE)
[06:05:17] [PASSED] 0x7D45 (METEORLAKE)
[06:05:17] [PASSED] 0x7D55 (METEORLAKE)
[06:05:17] [PASSED] 0x7D60 (METEORLAKE)
[06:05:17] [PASSED] 0x7DD5 (METEORLAKE)
[06:05:17] [PASSED] 0x6420 (LUNARLAKE)
[06:05:17] [PASSED] 0x64A0 (LUNARLAKE)
[06:05:17] [PASSED] 0x64B0 (LUNARLAKE)
[06:05:17] [PASSED] 0xE202 (BATTLEMAGE)
[06:05:17] [PASSED] 0xE209 (BATTLEMAGE)
[06:05:17] [PASSED] 0xE20B (BATTLEMAGE)
[06:05:17] [PASSED] 0xE20C (BATTLEMAGE)
[06:05:17] [PASSED] 0xE20D (BATTLEMAGE)
[06:05:17] [PASSED] 0xE210 (BATTLEMAGE)
[06:05:17] [PASSED] 0xE211 (BATTLEMAGE)
[06:05:17] [PASSED] 0xE212 (BATTLEMAGE)
[06:05:17] [PASSED] 0xE216 (BATTLEMAGE)
[06:05:17] [PASSED] 0xE220 (BATTLEMAGE)
[06:05:17] [PASSED] 0xE221 (BATTLEMAGE)
[06:05:17] [PASSED] 0xE222 (BATTLEMAGE)
[06:05:17] [PASSED] 0xE223 (BATTLEMAGE)
[06:05:17] [PASSED] 0xB080 (PANTHERLAKE)
[06:05:17] [PASSED] 0xB081 (PANTHERLAKE)
[06:05:17] [PASSED] 0xB082 (PANTHERLAKE)
[06:05:17] [PASSED] 0xB083 (PANTHERLAKE)
[06:05:17] [PASSED] 0xB084 (PANTHERLAKE)
[06:05:17] [PASSED] 0xB085 (PANTHERLAKE)
[06:05:17] [PASSED] 0xB086 (PANTHERLAKE)
[06:05:17] [PASSED] 0xB087 (PANTHERLAKE)
[06:05:17] [PASSED] 0xB08F (PANTHERLAKE)
[06:05:17] [PASSED] 0xB090 (PANTHERLAKE)
[06:05:17] [PASSED] 0xB0A0 (PANTHERLAKE)
[06:05:17] [PASSED] 0xB0B0 (PANTHERLAKE)
[06:05:17] [PASSED] 0xFD80 (PANTHERLAKE)
[06:05:17] [PASSED] 0xFD81 (PANTHERLAKE)
[06:05:17] [PASSED] 0xD740 (NOVALAKE_S)
[06:05:17] [PASSED] 0xD741 (NOVALAKE_S)
[06:05:17] [PASSED] 0xD742 (NOVALAKE_S)
[06:05:17] [PASSED] 0xD743 (NOVALAKE_S)
[06:05:17] [PASSED] 0xD744 (NOVALAKE_S)
[06:05:17] [PASSED] 0xD745 (NOVALAKE_S)
[06:05:17] [PASSED] 0x674C (CRESCENTISLAND)
[06:05:17] [PASSED] 0x674D (CRESCENTISLAND)
[06:05:17] [PASSED] 0x674E (CRESCENTISLAND)
[06:05:17] [PASSED] 0x674F (CRESCENTISLAND)
[06:05:17] [PASSED] 0x6750 (CRESCENTISLAND)
[06:05:17] [PASSED] 0xD750 (NOVALAKE_P)
[06:05:17] [PASSED] 0xD751 (NOVALAKE_P)
[06:05:17] [PASSED] 0xD752 (NOVALAKE_P)
[06:05:17] [PASSED] 0xD753 (NOVALAKE_P)
[06:05:17] [PASSED] 0xD754 (NOVALAKE_P)
[06:05:17] [PASSED] 0xD755 (NOVALAKE_P)
[06:05:17] [PASSED] 0xD756 (NOVALAKE_P)
[06:05:17] [PASSED] 0xD757 (NOVALAKE_P)
[06:05:17] [PASSED] 0xD75F (NOVALAKE_P)
[06:05:17] =============== [PASSED] check_platform_desc ===============
[06:05:17] ===================== [PASSED] xe_pci ======================
[06:05:17] =================== xe_rtp (3 subtests) ====================
[06:05:17] =================== xe_rtp_rules_tests  ====================
[06:05:17] [PASSED] no
[06:05:17] [PASSED] yes
[06:05:17] [PASSED] no-and-no
[06:05:17] [PASSED] no-and-yes
[06:05:17] [PASSED] yes-and-no
[06:05:17] [PASSED] yes-and-yes
[06:05:17] [PASSED] no-or-no
[06:05:17] [PASSED] no-or-yes
[06:05:17] [PASSED] yes-or-no
[06:05:17] [PASSED] yes-or-yes
[06:05:17] [PASSED] no-yes-or-yes-no
[06:05:17] [PASSED] no-yes-or-yes-yes
[06:05:17] [PASSED] yes-yes-or-no-yes
[06:05:17] [PASSED] yes-yes-or-yes-yes
[06:05:17] [PASSED] no-no-or-yes-or-no
[06:05:17] [PASSED] or
[06:05:17] [PASSED] or-yes
[06:05:17] [PASSED] or-no
[06:05:17] [PASSED] yes-or
[06:05:17] [PASSED] no-or
[06:05:17] [PASSED] no-or-or-yes
[06:05:17] [PASSED] yes-or-or-no
[06:05:17] [PASSED] no-or-or-no
[06:05:17] [PASSED] missing-context-engine-class
[06:05:17] [PASSED] missing-context-engine-class-or-yes
[06:05:17] [PASSED] missing-context-engine-class-or-or-yes
[06:05:17] =============== [PASSED] xe_rtp_rules_tests ================
[06:05:17] =============== xe_rtp_process_to_sr_tests  ================
[06:05:17] [PASSED] coalesce-same-reg
[06:05:17] [PASSED] no-match-no-add
[06:05:17] [PASSED] two-regs-two-entries
[06:05:17] [PASSED] clr-one-set-other
[06:05:17] [PASSED] set-field
[06:05:17] [PASSED] conflict-duplicate
[06:05:17] [PASSED] conflict-not-disjoint
[06:05:17] [PASSED] conflict-reg-type
[06:05:17] [PASSED] bad-mcr-reg-forced-to-regular
[06:05:17] [PASSED] bad-regular-reg-forced-to-mcr
[06:05:17] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[06:05:17] ================== xe_rtp_process_tests  ===================
[06:05:17] [PASSED] active1
[06:05:17] [PASSED] active2
[06:05:17] [PASSED] active-inactive
[06:05:17] [PASSED] inactive-active
[06:05:17] [PASSED] inactive-active-inactive
[06:05:17] [PASSED] inactive-inactive-inactive
[06:05:17] ============== [PASSED] xe_rtp_process_tests ===============
[06:05:17] ===================== [PASSED] xe_rtp ======================
[06:05:17] ==================== xe_wa (1 subtest) =====================
[06:05:17] ======================== xe_wa_gt  =========================
[06:05:17] [PASSED] TIGERLAKE B0
[06:05:17] [PASSED] DG1 A0
[06:05:17] [PASSED] DG1 B0
[06:05:17] [PASSED] ALDERLAKE_S A0
[06:05:17] [PASSED] ALDERLAKE_S B0
[06:05:17] [PASSED] ALDERLAKE_S C0
[06:05:17] [PASSED] ALDERLAKE_S D0
[06:05:17] [PASSED] ALDERLAKE_P A0
[06:05:17] [PASSED] ALDERLAKE_P B0
[06:05:17] [PASSED] ALDERLAKE_P C0
[06:05:17] [PASSED] ALDERLAKE_S RPLS D0
[06:05:17] [PASSED] ALDERLAKE_P RPLU E0
[06:05:17] [PASSED] DG2 G10 C0
[06:05:17] [PASSED] DG2 G11 B1
[06:05:17] [PASSED] DG2 G12 A1
[06:05:17] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[06:05:17] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[06:05:17] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[06:05:17] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[06:05:17] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[06:05:17] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[06:05:17] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[06:05:17] ==================== [PASSED] xe_wa_gt =====================
[06:05:17] ====================== [PASSED] xe_wa ======================
[06:05:17] ============================================================
[06:05:17] Testing complete. Ran 624 tests: passed: 606, skipped: 18
[06:05:17] Elapsed time: 36.189s total, 4.249s configuring, 31.274s building, 0.625s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[06:05:17] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[06:05:19] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[06:05:43] Starting KUnit Kernel (1/1)...
[06:05:43] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[06:05:43] ============ drm_test_pick_cmdline (2 subtests) ============
[06:05:43] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[06:05:43] =============== drm_test_pick_cmdline_named  ===============
[06:05:43] [PASSED] NTSC
[06:05:43] [PASSED] NTSC-J
[06:05:43] [PASSED] PAL
[06:05:43] [PASSED] PAL-M
[06:05:43] =========== [PASSED] drm_test_pick_cmdline_named ===========
[06:05:43] ============== [PASSED] drm_test_pick_cmdline ==============
[06:05:43] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[06:05:43] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[06:05:43] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[06:05:43] =========== drm_validate_clone_mode (2 subtests) ===========
[06:05:43] ============== drm_test_check_in_clone_mode  ===============
[06:05:43] [PASSED] in_clone_mode
[06:05:43] [PASSED] not_in_clone_mode
[06:05:43] ========== [PASSED] drm_test_check_in_clone_mode ===========
[06:05:43] =============== drm_test_check_valid_clones  ===============
[06:05:43] [PASSED] not_in_clone_mode
[06:05:43] [PASSED] valid_clone
[06:05:43] [PASSED] invalid_clone
[06:05:43] =========== [PASSED] drm_test_check_valid_clones ===========
[06:05:43] ============= [PASSED] drm_validate_clone_mode =============
[06:05:43] ============= drm_validate_modeset (1 subtest) =============
[06:05:43] [PASSED] drm_test_check_connector_changed_modeset
[06:05:43] ============== [PASSED] drm_validate_modeset ===============
[06:05:43] ====== drm_test_bridge_get_current_state (2 subtests) ======
[06:05:43] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[06:05:43] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[06:05:43] ======== [PASSED] drm_test_bridge_get_current_state ========
[06:05:43] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[06:05:43] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[06:05:43] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[06:05:43] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[06:05:43] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[06:05:43] ============== drm_bridge_alloc (2 subtests) ===============
[06:05:43] [PASSED] drm_test_drm_bridge_alloc_basic
[06:05:43] [PASSED] drm_test_drm_bridge_alloc_get_put
[06:05:43] ================ [PASSED] drm_bridge_alloc =================
[06:05:43] ============= drm_cmdline_parser (40 subtests) =============
[06:05:43] [PASSED] drm_test_cmdline_force_d_only
[06:05:43] [PASSED] drm_test_cmdline_force_D_only_dvi
[06:05:43] [PASSED] drm_test_cmdline_force_D_only_hdmi
[06:05:43] [PASSED] drm_test_cmdline_force_D_only_not_digital
[06:05:43] [PASSED] drm_test_cmdline_force_e_only
[06:05:43] [PASSED] drm_test_cmdline_res
[06:05:43] [PASSED] drm_test_cmdline_res_vesa
[06:05:43] [PASSED] drm_test_cmdline_res_vesa_rblank
[06:05:43] [PASSED] drm_test_cmdline_res_rblank
[06:05:43] [PASSED] drm_test_cmdline_res_bpp
[06:05:43] [PASSED] drm_test_cmdline_res_refresh
[06:05:43] [PASSED] drm_test_cmdline_res_bpp_refresh
[06:05:43] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[06:05:43] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[06:05:43] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[06:05:43] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[06:05:43] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[06:05:43] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[06:05:43] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[06:05:43] [PASSED] drm_test_cmdline_res_margins_force_on
[06:05:43] [PASSED] drm_test_cmdline_res_vesa_margins
[06:05:43] [PASSED] drm_test_cmdline_name
[06:05:43] [PASSED] drm_test_cmdline_name_bpp
[06:05:43] [PASSED] drm_test_cmdline_name_option
[06:05:43] [PASSED] drm_test_cmdline_name_bpp_option
[06:05:43] [PASSED] drm_test_cmdline_rotate_0
[06:05:43] [PASSED] drm_test_cmdline_rotate_90
[06:05:43] [PASSED] drm_test_cmdline_rotate_180
[06:05:43] [PASSED] drm_test_cmdline_rotate_270
[06:05:43] [PASSED] drm_test_cmdline_hmirror
[06:05:43] [PASSED] drm_test_cmdline_vmirror
[06:05:43] [PASSED] drm_test_cmdline_margin_options
[06:05:43] [PASSED] drm_test_cmdline_multiple_options
[06:05:43] [PASSED] drm_test_cmdline_bpp_extra_and_option
[06:05:43] [PASSED] drm_test_cmdline_extra_and_option
[06:05:43] [PASSED] drm_test_cmdline_freestanding_options
[06:05:43] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[06:05:43] [PASSED] drm_test_cmdline_panel_orientation
[06:05:43] ================ drm_test_cmdline_invalid  =================
[06:05:43] [PASSED] margin_only
[06:05:43] [PASSED] interlace_only
[06:05:43] [PASSED] res_missing_x
[06:05:43] [PASSED] res_missing_y
[06:05:43] [PASSED] res_bad_y
[06:05:43] [PASSED] res_missing_y_bpp
[06:05:43] [PASSED] res_bad_bpp
[06:05:43] [PASSED] res_bad_refresh
[06:05:43] [PASSED] res_bpp_refresh_force_on_off
[06:05:43] [PASSED] res_invalid_mode
[06:05:43] [PASSED] res_bpp_wrong_place_mode
[06:05:43] [PASSED] name_bpp_refresh
[06:05:43] [PASSED] name_refresh
[06:05:43] [PASSED] name_refresh_wrong_mode
[06:05:43] [PASSED] name_refresh_invalid_mode
[06:05:43] [PASSED] rotate_multiple
[06:05:43] [PASSED] rotate_invalid_val
[06:05:43] [PASSED] rotate_truncated
[06:05:43] [PASSED] invalid_option
[06:05:43] [PASSED] invalid_tv_option
[06:05:43] [PASSED] truncated_tv_option
[06:05:43] ============ [PASSED] drm_test_cmdline_invalid =============
[06:05:43] =============== drm_test_cmdline_tv_options  ===============
[06:05:43] [PASSED] NTSC
[06:05:43] [PASSED] NTSC_443
[06:05:43] [PASSED] NTSC_J
[06:05:43] [PASSED] PAL
[06:05:43] [PASSED] PAL_M
[06:05:43] [PASSED] PAL_N
[06:05:43] [PASSED] SECAM
[06:05:43] [PASSED] MONO_525
[06:05:43] [PASSED] MONO_625
[06:05:43] =========== [PASSED] drm_test_cmdline_tv_options ===========
[06:05:43] =============== [PASSED] drm_cmdline_parser ================
[06:05:43] ========== drmm_connector_hdmi_init (20 subtests) ==========
[06:05:43] [PASSED] drm_test_connector_hdmi_init_valid
[06:05:43] [PASSED] drm_test_connector_hdmi_init_bpc_8
[06:05:43] [PASSED] drm_test_connector_hdmi_init_bpc_10
[06:05:43] [PASSED] drm_test_connector_hdmi_init_bpc_12
[06:05:43] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[06:05:43] [PASSED] drm_test_connector_hdmi_init_bpc_null
[06:05:43] [PASSED] drm_test_connector_hdmi_init_formats_empty
[06:05:43] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[06:05:43] === drm_test_connector_hdmi_init_formats_yuv420_allowed  ===
[06:05:43] [PASSED] supported_formats=0x9 yuv420_allowed=1
[06:05:43] [PASSED] supported_formats=0x9 yuv420_allowed=0
[06:05:43] [PASSED] supported_formats=0x5 yuv420_allowed=1
[06:05:43] [PASSED] supported_formats=0x5 yuv420_allowed=0
[06:05:43] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[06:05:43] [PASSED] drm_test_connector_hdmi_init_null_ddc
[06:05:43] [PASSED] drm_test_connector_hdmi_init_null_product
[06:05:43] [PASSED] drm_test_connector_hdmi_init_null_vendor
[06:05:43] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[06:05:43] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[06:05:43] [PASSED] drm_test_connector_hdmi_init_product_valid
[06:05:43] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[06:05:43] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[06:05:43] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[06:05:43] ========= drm_test_connector_hdmi_init_type_valid  =========
[06:05:43] [PASSED] HDMI-A
[06:05:43] [PASSED] HDMI-B
[06:05:43] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[06:05:43] ======== drm_test_connector_hdmi_init_type_invalid  ========
[06:05:43] [PASSED] Unknown
[06:05:43] [PASSED] VGA
[06:05:43] [PASSED] DVI-I
[06:05:43] [PASSED] DVI-D
[06:05:43] [PASSED] DVI-A
[06:05:43] [PASSED] Composite
[06:05:43] [PASSED] SVIDEO
[06:05:43] [PASSED] LVDS
[06:05:43] [PASSED] Component
[06:05:43] [PASSED] DIN
[06:05:43] [PASSED] DP
[06:05:43] [PASSED] TV
[06:05:43] [PASSED] eDP
[06:05:43] [PASSED] Virtual
[06:05:43] [PASSED] DSI
[06:05:43] [PASSED] DPI
[06:05:43] [PASSED] Writeback
[06:05:43] [PASSED] SPI
[06:05:43] [PASSED] USB
[06:05:43] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[06:05:43] ============ [PASSED] drmm_connector_hdmi_init =============
[06:05:43] ============= drmm_connector_init (3 subtests) =============
[06:05:43] [PASSED] drm_test_drmm_connector_init
[06:05:43] [PASSED] drm_test_drmm_connector_init_null_ddc
[06:05:43] ========= drm_test_drmm_connector_init_type_valid  =========
[06:05:43] [PASSED] Unknown
[06:05:43] [PASSED] VGA
[06:05:43] [PASSED] DVI-I
[06:05:43] [PASSED] DVI-D
[06:05:43] [PASSED] DVI-A
[06:05:43] [PASSED] Composite
[06:05:43] [PASSED] SVIDEO
[06:05:43] [PASSED] LVDS
[06:05:43] [PASSED] Component
[06:05:43] [PASSED] DIN
[06:05:43] [PASSED] DP
[06:05:43] [PASSED] HDMI-A
[06:05:43] [PASSED] HDMI-B
[06:05:43] [PASSED] TV
[06:05:43] [PASSED] eDP
[06:05:43] [PASSED] Virtual
[06:05:43] [PASSED] DSI
[06:05:43] [PASSED] DPI
[06:05:43] [PASSED] Writeback
[06:05:43] [PASSED] SPI
[06:05:43] [PASSED] USB
[06:05:43] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[06:05:43] =============== [PASSED] drmm_connector_init ===============
[06:05:43] ========= drm_connector_dynamic_init (6 subtests) ==========
[06:05:43] [PASSED] drm_test_drm_connector_dynamic_init
[06:05:43] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[06:05:43] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[06:05:43] [PASSED] drm_test_drm_connector_dynamic_init_properties
[06:05:43] ===== drm_test_drm_connector_dynamic_init_type_valid  ======
[06:05:43] [PASSED] Unknown
[06:05:43] [PASSED] VGA
[06:05:43] [PASSED] DVI-I
[06:05:43] [PASSED] DVI-D
[06:05:43] [PASSED] DVI-A
[06:05:43] [PASSED] Composite
[06:05:43] [PASSED] SVIDEO
[06:05:43] [PASSED] LVDS
[06:05:43] [PASSED] Component
[06:05:43] [PASSED] DIN
[06:05:43] [PASSED] DP
[06:05:43] [PASSED] HDMI-A
[06:05:43] [PASSED] HDMI-B
[06:05:43] [PASSED] TV
[06:05:43] [PASSED] eDP
[06:05:43] [PASSED] Virtual
[06:05:43] [PASSED] DSI
[06:05:43] [PASSED] DPI
[06:05:43] [PASSED] Writeback
[06:05:43] [PASSED] SPI
[06:05:43] [PASSED] USB
[06:05:43] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[06:05:43] ======== drm_test_drm_connector_dynamic_init_name  =========
[06:05:43] [PASSED] Unknown
[06:05:43] [PASSED] VGA
[06:05:43] [PASSED] DVI-I
[06:05:43] [PASSED] DVI-D
[06:05:43] [PASSED] DVI-A
[06:05:43] [PASSED] Composite
[06:05:43] [PASSED] SVIDEO
[06:05:43] [PASSED] LVDS
[06:05:43] [PASSED] Component
[06:05:43] [PASSED] DIN
[06:05:43] [PASSED] DP
[06:05:43] [PASSED] HDMI-A
[06:05:43] [PASSED] HDMI-B
[06:05:43] [PASSED] TV
[06:05:43] [PASSED] eDP
[06:05:43] [PASSED] Virtual
[06:05:43] [PASSED] DSI
[06:05:43] [PASSED] DPI
[06:05:43] [PASSED] Writeback
[06:05:43] [PASSED] SPI
[06:05:43] [PASSED] USB
[06:05:43] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[06:05:43] =========== [PASSED] drm_connector_dynamic_init ============
[06:05:43] ==== drm_connector_dynamic_register_early (4 subtests) =====
[06:05:43] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[06:05:43] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[06:05:43] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[06:05:43] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[06:05:43] ====== [PASSED] drm_connector_dynamic_register_early =======
[06:05:43] ======= drm_connector_dynamic_register (7 subtests) ========
[06:05:43] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[06:05:43] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[06:05:43] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[06:05:43] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[06:05:43] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[06:05:43] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[06:05:43] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[06:05:43] ========= [PASSED] drm_connector_dynamic_register ==========
[06:05:43] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[06:05:43] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[06:05:43] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[06:05:43] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[06:05:43] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[06:05:43] ========== drm_test_get_tv_mode_from_name_valid  ===========
[06:05:43] [PASSED] NTSC
[06:05:43] [PASSED] NTSC-443
[06:05:43] [PASSED] NTSC-J
[06:05:43] [PASSED] PAL
[06:05:43] [PASSED] PAL-M
[06:05:43] [PASSED] PAL-N
[06:05:43] [PASSED] SECAM
[06:05:43] [PASSED] Mono
[06:05:43] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[06:05:43] [PASSED] drm_test_get_tv_mode_from_name_truncated
[06:05:43] ============ [PASSED] drm_get_tv_mode_from_name ============
[06:05:43] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[06:05:43] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[06:05:43] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[06:05:43] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[06:05:43] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[06:05:43] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[06:05:43] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[06:05:43] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid  =
[06:05:43] [PASSED] VIC 96
[06:05:43] [PASSED] VIC 97
[06:05:43] [PASSED] VIC 101
[06:05:43] [PASSED] VIC 102
[06:05:43] [PASSED] VIC 106
[06:05:43] [PASSED] VIC 107
[06:05:43] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[06:05:43] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[06:05:43] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[06:05:43] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[06:05:43] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[06:05:43] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[06:05:43] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[06:05:43] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[06:05:43] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name  ====
[06:05:43] [PASSED] Automatic
[06:05:43] [PASSED] Full
[06:05:43] [PASSED] Limited 16:235
[06:05:43] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[06:05:43] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[06:05:43] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[06:05:43] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[06:05:43] === drm_test_drm_hdmi_connector_get_output_format_name  ====
[06:05:43] [PASSED] RGB
[06:05:43] [PASSED] YUV 4:2:0
[06:05:43] [PASSED] YUV 4:2:2
[06:05:43] [PASSED] YUV 4:4:4
[06:05:43] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[06:05:43] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[06:05:43] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[06:05:43] ============= drm_damage_helper (21 subtests) ==============
[06:05:43] [PASSED] drm_test_damage_iter_no_damage
[06:05:43] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[06:05:43] [PASSED] drm_test_damage_iter_no_damage_src_moved
[06:05:43] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[06:05:43] [PASSED] drm_test_damage_iter_no_damage_not_visible
[06:05:43] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[06:05:43] [PASSED] drm_test_damage_iter_no_damage_no_fb
[06:05:43] [PASSED] drm_test_damage_iter_simple_damage
[06:05:43] [PASSED] drm_test_damage_iter_single_damage
[06:05:43] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[06:05:43] [PASSED] drm_test_damage_iter_single_damage_outside_src
[06:05:43] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[06:05:43] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[06:05:43] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[06:05:43] [PASSED] drm_test_damage_iter_single_damage_src_moved
[06:05:43] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[06:05:43] [PASSED] drm_test_damage_iter_damage
[06:05:43] [PASSED] drm_test_damage_iter_damage_one_intersect
[06:05:43] [PASSED] drm_test_damage_iter_damage_one_outside
[06:05:43] [PASSED] drm_test_damage_iter_damage_src_moved
[06:05:43] [PASSED] drm_test_damage_iter_damage_not_visible
[06:05:43] ================ [PASSED] drm_damage_helper ================
[06:05:43] ============== drm_dp_mst_helper (3 subtests) ==============
[06:05:43] ============== drm_test_dp_mst_calc_pbn_mode  ==============
[06:05:43] [PASSED] Clock 154000 BPP 30 DSC disabled
[06:05:43] [PASSED] Clock 234000 BPP 30 DSC disabled
[06:05:43] [PASSED] Clock 297000 BPP 24 DSC disabled
[06:05:43] [PASSED] Clock 332880 BPP 24 DSC enabled
[06:05:43] [PASSED] Clock 324540 BPP 24 DSC enabled
[06:05:43] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[06:05:43] ============== drm_test_dp_mst_calc_pbn_div  ===============
[06:05:43] [PASSED] Link rate 2000000 lane count 4
[06:05:43] [PASSED] Link rate 2000000 lane count 2
[06:05:43] [PASSED] Link rate 2000000 lane count 1
[06:05:43] [PASSED] Link rate 1350000 lane count 4
[06:05:43] [PASSED] Link rate 1350000 lane count 2
[06:05:43] [PASSED] Link rate 1350000 lane count 1
[06:05:43] [PASSED] Link rate 1000000 lane count 4
[06:05:43] [PASSED] Link rate 1000000 lane count 2
[06:05:43] [PASSED] Link rate 1000000 lane count 1
[06:05:43] [PASSED] Link rate 810000 lane count 4
[06:05:43] [PASSED] Link rate 810000 lane count 2
[06:05:43] [PASSED] Link rate 810000 lane count 1
[06:05:43] [PASSED] Link rate 540000 lane count 4
[06:05:43] [PASSED] Link rate 540000 lane count 2
[06:05:43] [PASSED] Link rate 540000 lane count 1
[06:05:43] [PASSED] Link rate 270000 lane count 4
[06:05:43] [PASSED] Link rate 270000 lane count 2
[06:05:43] [PASSED] Link rate 270000 lane count 1
[06:05:43] [PASSED] Link rate 162000 lane count 4
[06:05:43] [PASSED] Link rate 162000 lane count 2
[06:05:43] [PASSED] Link rate 162000 lane count 1
[06:05:43] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[06:05:43] ========= drm_test_dp_mst_sideband_msg_req_decode  =========
[06:05:43] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[06:05:43] [PASSED] DP_POWER_UP_PHY with port number
[06:05:43] [PASSED] DP_POWER_DOWN_PHY with port number
[06:05:43] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[06:05:43] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[06:05:43] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[06:05:43] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[06:05:43] [PASSED] DP_QUERY_PAYLOAD with port number
[06:05:43] [PASSED] DP_QUERY_PAYLOAD with VCPI
[06:05:43] [PASSED] DP_REMOTE_DPCD_READ with port number
[06:05:43] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[06:05:43] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[06:05:43] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[06:05:43] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[06:05:43] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[06:05:43] [PASSED] DP_REMOTE_I2C_READ with port number
[06:05:43] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[06:05:43] [PASSED] DP_REMOTE_I2C_READ with transactions array
[06:05:43] [PASSED] DP_REMOTE_I2C_WRITE with port number
[06:05:43] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[06:05:43] [PASSED] DP_REMOTE_I2C_WRITE with data array
[06:05:43] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[06:05:43] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[06:05:43] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[06:05:43] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[06:05:43] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[06:05:43] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[06:05:43] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[06:05:43] ================ [PASSED] drm_dp_mst_helper ================
[06:05:43] ================== drm_exec (7 subtests) ===================
[06:05:43] [PASSED] sanitycheck
[06:05:43] [PASSED] test_lock
[06:05:43] [PASSED] test_lock_unlock
[06:05:43] [PASSED] test_duplicates
[06:05:43] [PASSED] test_prepare
[06:05:43] [PASSED] test_prepare_array
[06:05:43] [PASSED] test_multiple_loops
[06:05:43] ==================== [PASSED] drm_exec =====================
[06:05:43] =========== drm_format_helper_test (17 subtests) ===========
[06:05:43] ============== drm_test_fb_xrgb8888_to_gray8  ==============
[06:05:43] [PASSED] single_pixel_source_buffer
[06:05:43] [PASSED] single_pixel_clip_rectangle
[06:05:43] [PASSED] well_known_colors
[06:05:43] [PASSED] destination_pitch
[06:05:43] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[06:05:43] ============= drm_test_fb_xrgb8888_to_rgb332  ==============
[06:05:43] [PASSED] single_pixel_source_buffer
[06:05:43] [PASSED] single_pixel_clip_rectangle
[06:05:43] [PASSED] well_known_colors
[06:05:43] [PASSED] destination_pitch
[06:05:43] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[06:05:43] ============= drm_test_fb_xrgb8888_to_rgb565  ==============
[06:05:43] [PASSED] single_pixel_source_buffer
[06:05:43] [PASSED] single_pixel_clip_rectangle
[06:05:43] [PASSED] well_known_colors
[06:05:43] [PASSED] destination_pitch
[06:05:43] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[06:05:43] ============ drm_test_fb_xrgb8888_to_xrgb1555  =============
[06:05:43] [PASSED] single_pixel_source_buffer
[06:05:43] [PASSED] single_pixel_clip_rectangle
[06:05:43] [PASSED] well_known_colors
[06:05:43] [PASSED] destination_pitch
[06:05:43] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[06:05:43] ============ drm_test_fb_xrgb8888_to_argb1555  =============
[06:05:43] [PASSED] single_pixel_source_buffer
[06:05:43] [PASSED] single_pixel_clip_rectangle
[06:05:43] [PASSED] well_known_colors
[06:05:43] [PASSED] destination_pitch
[06:05:43] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[06:05:43] ============ drm_test_fb_xrgb8888_to_rgba5551  =============
[06:05:43] [PASSED] single_pixel_source_buffer
[06:05:43] [PASSED] single_pixel_clip_rectangle
[06:05:43] [PASSED] well_known_colors
[06:05:43] [PASSED] destination_pitch
[06:05:43] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[06:05:43] ============= drm_test_fb_xrgb8888_to_rgb888  ==============
[06:05:43] [PASSED] single_pixel_source_buffer
[06:05:43] [PASSED] single_pixel_clip_rectangle
[06:05:43] [PASSED] well_known_colors
[06:05:43] [PASSED] destination_pitch
[06:05:43] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[06:05:43] ============= drm_test_fb_xrgb8888_to_bgr888  ==============
[06:05:43] [PASSED] single_pixel_source_buffer
[06:05:43] [PASSED] single_pixel_clip_rectangle
[06:05:43] [PASSED] well_known_colors
[06:05:43] [PASSED] destination_pitch
[06:05:43] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[06:05:43] ============ drm_test_fb_xrgb8888_to_argb8888  =============
[06:05:43] [PASSED] single_pixel_source_buffer
[06:05:43] [PASSED] single_pixel_clip_rectangle
[06:05:43] [PASSED] well_known_colors
[06:05:43] [PASSED] destination_pitch
[06:05:43] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[06:05:43] =========== drm_test_fb_xrgb8888_to_xrgb2101010  ===========
[06:05:43] [PASSED] single_pixel_source_buffer
[06:05:43] [PASSED] single_pixel_clip_rectangle
[06:05:43] [PASSED] well_known_colors
[06:05:43] [PASSED] destination_pitch
[06:05:43] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[06:05:43] =========== drm_test_fb_xrgb8888_to_argb2101010  ===========
[06:05:43] [PASSED] single_pixel_source_buffer
[06:05:43] [PASSED] single_pixel_clip_rectangle
[06:05:43] [PASSED] well_known_colors
[06:05:43] [PASSED] destination_pitch
[06:05:43] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[06:05:43] ============== drm_test_fb_xrgb8888_to_mono  ===============
[06:05:43] [PASSED] single_pixel_source_buffer
[06:05:43] [PASSED] single_pixel_clip_rectangle
[06:05:43] [PASSED] well_known_colors
[06:05:43] [PASSED] destination_pitch
[06:05:43] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[06:05:43] ==================== drm_test_fb_swab  =====================
[06:05:43] [PASSED] single_pixel_source_buffer
[06:05:43] [PASSED] single_pixel_clip_rectangle
[06:05:43] [PASSED] well_known_colors
[06:05:43] [PASSED] destination_pitch
[06:05:43] ================ [PASSED] drm_test_fb_swab =================
[06:05:43] ============ drm_test_fb_xrgb8888_to_xbgr8888  =============
[06:05:43] [PASSED] single_pixel_source_buffer
[06:05:43] [PASSED] single_pixel_clip_rectangle
[06:05:43] [PASSED] well_known_colors
[06:05:43] [PASSED] destination_pitch
[06:05:43] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[06:05:43] ============ drm_test_fb_xrgb8888_to_abgr8888  =============
[06:05:43] [PASSED] single_pixel_source_buffer
[06:05:43] [PASSED] single_pixel_clip_rectangle
[06:05:43] [PASSED] well_known_colors
[06:05:43] [PASSED] destination_pitch
[06:05:43] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[06:05:43] ================= drm_test_fb_clip_offset  =================
[06:05:43] [PASSED] pass through
[06:05:43] [PASSED] horizontal offset
[06:05:43] [PASSED] vertical offset
[06:05:43] [PASSED] horizontal and vertical offset
[06:05:43] [PASSED] horizontal offset (custom pitch)
[06:05:43] [PASSED] vertical offset (custom pitch)
[06:05:43] [PASSED] horizontal and vertical offset (custom pitch)
[06:05:43] ============= [PASSED] drm_test_fb_clip_offset =============
[06:05:43] =================== drm_test_fb_memcpy  ====================
[06:05:43] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[06:05:43] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[06:05:43] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[06:05:43] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[06:05:43] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[06:05:43] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[06:05:43] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[06:05:43] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[06:05:43] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[06:05:43] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[06:05:43] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[06:05:43] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[06:05:43] =============== [PASSED] drm_test_fb_memcpy ================
[06:05:43] ============= [PASSED] drm_format_helper_test ==============
[06:05:43] ================= drm_format (18 subtests) =================
[06:05:43] [PASSED] drm_test_format_block_width_invalid
[06:05:43] [PASSED] drm_test_format_block_width_one_plane
[06:05:43] [PASSED] drm_test_format_block_width_two_plane
[06:05:43] [PASSED] drm_test_format_block_width_three_plane
[06:05:43] [PASSED] drm_test_format_block_width_tiled
[06:05:43] [PASSED] drm_test_format_block_height_invalid
[06:05:43] [PASSED] drm_test_format_block_height_one_plane
[06:05:43] [PASSED] drm_test_format_block_height_two_plane
[06:05:43] [PASSED] drm_test_format_block_height_three_plane
[06:05:43] [PASSED] drm_test_format_block_height_tiled
[06:05:43] [PASSED] drm_test_format_min_pitch_invalid
[06:05:43] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[06:05:43] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[06:05:43] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[06:05:43] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[06:05:43] [PASSED] drm_test_format_min_pitch_two_plane
[06:05:43] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[06:05:43] [PASSED] drm_test_format_min_pitch_tiled
[06:05:43] =================== [PASSED] drm_format ====================
[06:05:43] ============== drm_framebuffer (10 subtests) ===============
[06:05:43] ========== drm_test_framebuffer_check_src_coords  ==========
[06:05:43] [PASSED] Success: source fits into fb
[06:05:43] [PASSED] Fail: overflowing fb with x-axis coordinate
[06:05:43] [PASSED] Fail: overflowing fb with y-axis coordinate
[06:05:43] [PASSED] Fail: overflowing fb with source width
[06:05:43] [PASSED] Fail: overflowing fb with source height
[06:05:43] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[06:05:43] [PASSED] drm_test_framebuffer_cleanup
[06:05:43] =============== drm_test_framebuffer_create  ===============
[06:05:43] [PASSED] ABGR8888 normal sizes
[06:05:43] [PASSED] ABGR8888 max sizes
[06:05:43] [PASSED] ABGR8888 pitch greater than min required
[06:05:43] [PASSED] ABGR8888 pitch less than min required
[06:05:43] [PASSED] ABGR8888 Invalid width
[06:05:43] [PASSED] ABGR8888 Invalid buffer handle
[06:05:43] [PASSED] No pixel format
[06:05:43] [PASSED] ABGR8888 Width 0
[06:05:43] [PASSED] ABGR8888 Height 0
[06:05:43] [PASSED] ABGR8888 Out of bound height * pitch combination
[06:05:43] [PASSED] ABGR8888 Large buffer offset
[06:05:43] [PASSED] ABGR8888 Buffer offset for inexistent plane
[06:05:43] [PASSED] ABGR8888 Invalid flag
[06:05:43] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[06:05:43] [PASSED] ABGR8888 Valid buffer modifier
[06:05:43] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[06:05:43] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[06:05:43] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[06:05:43] [PASSED] NV12 Normal sizes
[06:05:43] [PASSED] NV12 Max sizes
[06:05:43] [PASSED] NV12 Invalid pitch
[06:05:43] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[06:05:43] [PASSED] NV12 different  modifier per-plane
[06:05:43] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[06:05:43] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[06:05:43] [PASSED] NV12 Modifier for inexistent plane
[06:05:43] [PASSED] NV12 Handle for inexistent plane
[06:05:43] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[06:05:43] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[06:05:43] [PASSED] YVU420 Normal sizes
[06:05:43] [PASSED] YVU420 Max sizes
[06:05:43] [PASSED] YVU420 Invalid pitch
[06:05:43] [PASSED] YVU420 Different pitches
[06:05:43] [PASSED] YVU420 Different buffer offsets/pitches
[06:05:43] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[06:05:43] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[06:05:43] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[06:05:43] [PASSED] YVU420 Valid modifier
[06:05:43] [PASSED] YVU420 Different modifiers per plane
[06:05:43] [PASSED] YVU420 Modifier for inexistent plane
[06:05:43] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[06:05:43] [PASSED] X0L2 Normal sizes
[06:05:43] [PASSED] X0L2 Max sizes
[06:05:43] [PASSED] X0L2 Invalid pitch
[06:05:43] [PASSED] X0L2 Pitch greater than minimum required
[06:05:43] [PASSED] X0L2 Handle for inexistent plane
[06:05:43] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[06:05:43] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[06:05:43] [PASSED] X0L2 Valid modifier
[06:05:43] [PASSED] X0L2 Modifier for inexistent plane
[06:05:43] =========== [PASSED] drm_test_framebuffer_create ===========
[06:05:43] [PASSED] drm_test_framebuffer_free
[06:05:43] [PASSED] drm_test_framebuffer_init
[06:05:43] [PASSED] drm_test_framebuffer_init_bad_format
[06:05:43] [PASSED] drm_test_framebuffer_init_dev_mismatch
[06:05:43] [PASSED] drm_test_framebuffer_lookup
[06:05:43] [PASSED] drm_test_framebuffer_lookup_inexistent
[06:05:43] [PASSED] drm_test_framebuffer_modifiers_not_supported
[06:05:43] ================= [PASSED] drm_framebuffer =================
[06:05:43] ================ drm_gem_shmem (8 subtests) ================
[06:05:43] [PASSED] drm_gem_shmem_test_obj_create
[06:05:43] [PASSED] drm_gem_shmem_test_obj_create_private
[06:05:43] [PASSED] drm_gem_shmem_test_pin_pages
[06:05:43] [PASSED] drm_gem_shmem_test_vmap
[06:05:43] [PASSED] drm_gem_shmem_test_get_sg_table
[06:05:43] [PASSED] drm_gem_shmem_test_get_pages_sgt
[06:05:43] [PASSED] drm_gem_shmem_test_madvise
[06:05:43] [PASSED] drm_gem_shmem_test_purge
[06:05:43] ================== [PASSED] drm_gem_shmem ==================
[06:05:43] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[06:05:43] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[06:05:43] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[06:05:43] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[06:05:43] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[06:05:43] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[06:05:43] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[06:05:43] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420  =======
[06:05:43] [PASSED] Automatic
[06:05:43] [PASSED] Full
[06:05:43] [PASSED] Limited 16:235
[06:05:43] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[06:05:43] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[06:05:43] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[06:05:43] [PASSED] drm_test_check_disable_connector
[06:05:43] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[06:05:43] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[06:05:43] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[06:05:43] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[06:05:43] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[06:05:43] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[06:05:43] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[06:05:43] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[06:05:43] [PASSED] drm_test_check_output_bpc_dvi
[06:05:43] [PASSED] drm_test_check_output_bpc_format_vic_1
[06:05:43] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[06:05:43] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[06:05:43] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[06:05:43] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[06:05:43] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[06:05:43] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[06:05:43] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[06:05:43] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[06:05:43] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[06:05:43] [PASSED] drm_test_check_broadcast_rgb_value
[06:05:43] [PASSED] drm_test_check_bpc_8_value
[06:05:43] [PASSED] drm_test_check_bpc_10_value
[06:05:43] [PASSED] drm_test_check_bpc_12_value
[06:05:43] [PASSED] drm_test_check_format_value
[06:05:43] [PASSED] drm_test_check_tmds_char_value
[06:05:43] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[06:05:43] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[06:05:43] [PASSED] drm_test_check_mode_valid
[06:05:43] [PASSED] drm_test_check_mode_valid_reject
[06:05:43] [PASSED] drm_test_check_mode_valid_reject_rate
[06:05:43] [PASSED] drm_test_check_mode_valid_reject_max_clock
[06:05:43] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[06:05:43] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[06:05:43] [PASSED] drm_test_check_infoframes
[06:05:43] [PASSED] drm_test_check_reject_avi_infoframe
[06:05:43] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[06:05:43] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[06:05:43] [PASSED] drm_test_check_reject_audio_infoframe
[06:05:43] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[06:05:43] ================= drm_managed (2 subtests) =================
[06:05:43] [PASSED] drm_test_managed_release_action
[06:05:43] [PASSED] drm_test_managed_run_action
[06:05:43] =================== [PASSED] drm_managed ===================
[06:05:43] =================== drm_mm (6 subtests) ====================
[06:05:43] [PASSED] drm_test_mm_init
[06:05:43] [PASSED] drm_test_mm_debug
[06:05:43] [PASSED] drm_test_mm_align32
[06:05:43] [PASSED] drm_test_mm_align64
[06:05:43] [PASSED] drm_test_mm_lowest
[06:05:43] [PASSED] drm_test_mm_highest
[06:05:43] ===================== [PASSED] drm_mm ======================
[06:05:43] ============= drm_modes_analog_tv (5 subtests) =============
[06:05:43] [PASSED] drm_test_modes_analog_tv_mono_576i
[06:05:43] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[06:05:43] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[06:05:43] [PASSED] drm_test_modes_analog_tv_pal_576i
[06:05:43] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[06:05:43] =============== [PASSED] drm_modes_analog_tv ===============
[06:05:43] ============== drm_plane_helper (2 subtests) ===============
[06:05:43] =============== drm_test_check_plane_state  ================
[06:05:43] [PASSED] clipping_simple
[06:05:43] [PASSED] clipping_rotate_reflect
[06:05:43] [PASSED] positioning_simple
[06:05:43] [PASSED] upscaling
[06:05:43] [PASSED] downscaling
[06:05:43] [PASSED] rounding1
[06:05:43] [PASSED] rounding2
[06:05:43] [PASSED] rounding3
[06:05:43] [PASSED] rounding4
[06:05:43] =========== [PASSED] drm_test_check_plane_state ============
[06:05:43] =========== drm_test_check_invalid_plane_state  ============
[06:05:43] [PASSED] positioning_invalid
[06:05:43] [PASSED] upscaling_invalid
[06:05:43] [PASSED] downscaling_invalid
[06:05:43] ======= [PASSED] drm_test_check_invalid_plane_state ========
[06:05:43] ================ [PASSED] drm_plane_helper =================
[06:05:43] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[06:05:43] ====== drm_test_connector_helper_tv_get_modes_check  =======
[06:05:43] [PASSED] None
[06:05:43] [PASSED] PAL
[06:05:43] [PASSED] NTSC
[06:05:43] [PASSED] Both, NTSC Default
[06:05:43] [PASSED] Both, PAL Default
[06:05:43] [PASSED] Both, NTSC Default, with PAL on command-line
[06:05:43] [PASSED] Both, PAL Default, with NTSC on command-line
[06:05:43] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[06:05:43] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[06:05:43] ================== drm_rect (9 subtests) ===================
[06:05:43] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[06:05:43] [PASSED] drm_test_rect_clip_scaled_not_clipped
[06:05:43] [PASSED] drm_test_rect_clip_scaled_clipped
[06:05:43] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[06:05:43] ================= drm_test_rect_intersect  =================
[06:05:43] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[06:05:43] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[06:05:43] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[06:05:43] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[06:05:43] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[06:05:43] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[06:05:43] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[06:05:43] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[06:05:43] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[06:05:43] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[06:05:43] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[06:05:43] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[06:05:43] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[06:05:43] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[06:05:43] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[06:05:43] ============= [PASSED] drm_test_rect_intersect =============
[06:05:43] ================ drm_test_rect_calc_hscale  ================
[06:05:43] [PASSED] normal use
[06:05:43] [PASSED] out of max range
[06:05:43] [PASSED] out of min range
[06:05:43] [PASSED] zero dst
[06:05:43] [PASSED] negative src
[06:05:43] [PASSED] negative dst
[06:05:43] ============ [PASSED] drm_test_rect_calc_hscale ============
[06:05:43] ================ drm_test_rect_calc_vscale  ================
[06:05:43] [PASSED] normal use
[06:05:43] [PASSED] out of max range
[06:05:43] [PASSED] out of min range
[06:05:43] [PASSED] zero dst
[06:05:43] [PASSED] negative src
[06:05:43] [PASSED] negative dst
[06:05:43] ============ [PASSED] drm_test_rect_calc_vscale ============
[06:05:43] ================== drm_test_rect_rotate  ===================
[06:05:43] [PASSED] reflect-x
[06:05:43] [PASSED] reflect-y
[06:05:43] [PASSED] rotate-0
[06:05:43] [PASSED] rotate-90
[06:05:43] [PASSED] rotate-180
[06:05:43] [PASSED] rotate-270
[06:05:43] ============== [PASSED] drm_test_rect_rotate ===============
[06:05:43] ================ drm_test_rect_rotate_inv  =================
[06:05:43] [PASSED] reflect-x
[06:05:43] [PASSED] reflect-y
[06:05:43] [PASSED] rotate-0
[06:05:43] [PASSED] rotate-90
[06:05:43] [PASSED] rotate-180
[06:05:43] [PASSED] rotate-270
[06:05:43] ============ [PASSED] drm_test_rect_rotate_inv =============
[06:05:43] ==================== [PASSED] drm_rect =====================
[06:05:43] ============ drm_sysfb_modeset_test (1 subtest) ============
[06:05:43] ============ drm_test_sysfb_build_fourcc_list  =============
[06:05:43] [PASSED] no native formats
[06:05:43] [PASSED] XRGB8888 as native format
[06:05:43] [PASSED] remove duplicates
[06:05:43] [PASSED] convert alpha formats
[06:05:43] [PASSED] random formats
[06:05:43] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[06:05:43] ============= [PASSED] drm_sysfb_modeset_test ==============
[06:05:43] ================== drm_fixp (2 subtests) ===================
[06:05:43] [PASSED] drm_test_int2fixp
[06:05:43] [PASSED] drm_test_sm2fixp
[06:05:43] ==================== [PASSED] drm_fixp =====================
[06:05:43] ============================================================
[06:05:43] Testing complete. Ran 621 tests: passed: 621
[06:05:43] Elapsed time: 26.018s total, 1.691s configuring, 24.162s building, 0.119s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[06:05:43] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[06:05:45] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[06:05:55] Starting KUnit Kernel (1/1)...
[06:05:55] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[06:05:55] ================= ttm_device (5 subtests) ==================
[06:05:55] [PASSED] ttm_device_init_basic
[06:05:55] [PASSED] ttm_device_init_multiple
[06:05:55] [PASSED] ttm_device_fini_basic
[06:05:55] [PASSED] ttm_device_init_no_vma_man
[06:05:55] ================== ttm_device_init_pools  ==================
[06:05:55] [PASSED] No DMA allocations, no DMA32 required
[06:05:55] [PASSED] DMA allocations, DMA32 required
[06:05:55] [PASSED] No DMA allocations, DMA32 required
[06:05:55] [PASSED] DMA allocations, no DMA32 required
[06:05:55] ============== [PASSED] ttm_device_init_pools ==============
[06:05:55] =================== [PASSED] ttm_device ====================
[06:05:55] ================== ttm_pool (8 subtests) ===================
[06:05:55] ================== ttm_pool_alloc_basic  ===================
[06:05:55] [PASSED] One page
[06:05:55] [PASSED] More than one page
[06:05:55] [PASSED] Above the allocation limit
[06:05:55] [PASSED] One page, with coherent DMA mappings enabled
[06:05:55] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[06:05:55] ============== [PASSED] ttm_pool_alloc_basic ===============
[06:05:55] ============== ttm_pool_alloc_basic_dma_addr  ==============
[06:05:55] [PASSED] One page
[06:05:55] [PASSED] More than one page
[06:05:55] [PASSED] Above the allocation limit
[06:05:55] [PASSED] One page, with coherent DMA mappings enabled
[06:05:55] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[06:05:55] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[06:05:55] [PASSED] ttm_pool_alloc_order_caching_match
[06:05:55] [PASSED] ttm_pool_alloc_caching_mismatch
[06:05:55] [PASSED] ttm_pool_alloc_order_mismatch
[06:05:55] [PASSED] ttm_pool_free_dma_alloc
[06:05:55] [PASSED] ttm_pool_free_no_dma_alloc
[06:05:55] [PASSED] ttm_pool_fini_basic
[06:05:55] ==================== [PASSED] ttm_pool =====================
[06:05:55] ================ ttm_resource (8 subtests) =================
[06:05:55] ================= ttm_resource_init_basic  =================
[06:05:55] [PASSED] Init resource in TTM_PL_SYSTEM
[06:05:55] [PASSED] Init resource in TTM_PL_VRAM
[06:05:55] [PASSED] Init resource in a private placement
[06:05:55] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[06:05:55] ============= [PASSED] ttm_resource_init_basic =============
[06:05:55] [PASSED] ttm_resource_init_pinned
[06:05:55] [PASSED] ttm_resource_fini_basic
[06:05:55] [PASSED] ttm_resource_manager_init_basic
[06:05:55] [PASSED] ttm_resource_manager_usage_basic
[06:05:55] [PASSED] ttm_resource_manager_set_used_basic
[06:05:55] [PASSED] ttm_sys_man_alloc_basic
[06:05:55] [PASSED] ttm_sys_man_free_basic
[06:05:55] ================== [PASSED] ttm_resource ===================
[06:05:55] =================== ttm_tt (15 subtests) ===================
[06:05:55] ==================== ttm_tt_init_basic  ====================
[06:05:55] [PASSED] Page-aligned size
[06:05:55] [PASSED] Extra pages requested
[06:05:55] ================ [PASSED] ttm_tt_init_basic ================
[06:05:55] [PASSED] ttm_tt_init_misaligned
[06:05:55] [PASSED] ttm_tt_fini_basic
[06:05:55] [PASSED] ttm_tt_fini_sg
[06:05:55] [PASSED] ttm_tt_fini_shmem
[06:05:55] [PASSED] ttm_tt_create_basic
[06:05:55] [PASSED] ttm_tt_create_invalid_bo_type
[06:05:55] [PASSED] ttm_tt_create_ttm_exists
[06:05:55] [PASSED] ttm_tt_create_failed
[06:05:55] [PASSED] ttm_tt_destroy_basic
[06:05:55] [PASSED] ttm_tt_populate_null_ttm
[06:05:55] [PASSED] ttm_tt_populate_populated_ttm
[06:05:55] [PASSED] ttm_tt_unpopulate_basic
[06:05:55] [PASSED] ttm_tt_unpopulate_empty_ttm
[06:05:55] [PASSED] ttm_tt_swapin_basic
[06:05:55] ===================== [PASSED] ttm_tt ======================
[06:05:55] =================== ttm_bo (14 subtests) ===================
[06:05:55] =========== ttm_bo_reserve_optimistic_no_ticket  ===========
[06:05:55] [PASSED] Cannot be interrupted and sleeps
[06:05:55] [PASSED] Cannot be interrupted, locks straight away
[06:05:55] [PASSED] Can be interrupted, sleeps
[06:05:55] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[06:05:55] [PASSED] ttm_bo_reserve_locked_no_sleep
[06:05:55] [PASSED] ttm_bo_reserve_no_wait_ticket
[06:05:55] [PASSED] ttm_bo_reserve_double_resv
[06:05:55] [PASSED] ttm_bo_reserve_interrupted
[06:05:55] [PASSED] ttm_bo_reserve_deadlock
[06:05:55] [PASSED] ttm_bo_unreserve_basic
[06:05:55] [PASSED] ttm_bo_unreserve_pinned
[06:05:55] [PASSED] ttm_bo_unreserve_bulk
[06:05:55] [PASSED] ttm_bo_fini_basic
[06:05:55] [PASSED] ttm_bo_fini_shared_resv
[06:05:55] [PASSED] ttm_bo_pin_basic
[06:05:55] [PASSED] ttm_bo_pin_unpin_resource
[06:05:55] [PASSED] ttm_bo_multiple_pin_one_unpin
[06:05:55] ===================== [PASSED] ttm_bo ======================
[06:05:55] ============== ttm_bo_validate (22 subtests) ===============
[06:05:55] ============== ttm_bo_init_reserved_sys_man  ===============
[06:05:55] [PASSED] Buffer object for userspace
[06:05:55] [PASSED] Kernel buffer object
[06:05:55] [PASSED] Shared buffer object
[06:05:55] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[06:05:55] ============== ttm_bo_init_reserved_mock_man  ==============
[06:05:55] [PASSED] Buffer object for userspace
[06:05:55] [PASSED] Kernel buffer object
[06:05:55] [PASSED] Shared buffer object
[06:05:55] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[06:05:55] [PASSED] ttm_bo_init_reserved_resv
[06:05:55] ================== ttm_bo_validate_basic  ==================
[06:05:55] [PASSED] Buffer object for userspace
[06:05:55] [PASSED] Kernel buffer object
[06:05:55] [PASSED] Shared buffer object
[06:05:55] ============== [PASSED] ttm_bo_validate_basic ==============
[06:05:55] [PASSED] ttm_bo_validate_invalid_placement
[06:05:55] ============= ttm_bo_validate_same_placement  ==============
[06:05:55] [PASSED] System manager
[06:05:55] [PASSED] VRAM manager
[06:05:55] ========= [PASSED] ttm_bo_validate_same_placement ==========
[06:05:55] [PASSED] ttm_bo_validate_failed_alloc
[06:05:55] [PASSED] ttm_bo_validate_pinned
[06:05:55] [PASSED] ttm_bo_validate_busy_placement
[06:05:55] ================ ttm_bo_validate_multihop  =================
[06:05:55] [PASSED] Buffer object for userspace
[06:05:55] [PASSED] Kernel buffer object
[06:05:55] [PASSED] Shared buffer object
[06:05:55] ============ [PASSED] ttm_bo_validate_multihop =============
[06:05:55] ========== ttm_bo_validate_no_placement_signaled  ==========
[06:05:55] [PASSED] Buffer object in system domain, no page vector
[06:05:55] [PASSED] Buffer object in system domain with an existing page vector
[06:05:55] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[06:05:55] ======== ttm_bo_validate_no_placement_not_signaled  ========
[06:05:55] [PASSED] Buffer object for userspace
[06:05:55] [PASSED] Kernel buffer object
[06:05:55] [PASSED] Shared buffer object
[06:05:55] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[06:05:55] [PASSED] ttm_bo_validate_move_fence_signaled
[06:05:55] ========= ttm_bo_validate_move_fence_not_signaled  =========
[06:05:55] [PASSED] Waits for GPU
[06:05:55] [PASSED] Tries to lock straight away
[06:05:55] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[06:05:55] [PASSED] ttm_bo_validate_swapout
[06:05:55] [PASSED] ttm_bo_validate_happy_evict
[06:05:55] [PASSED] ttm_bo_validate_all_pinned_evict
[06:05:55] [PASSED] ttm_bo_validate_allowed_only_evict
[06:05:55] [PASSED] ttm_bo_validate_deleted_evict
[06:05:55] [PASSED] ttm_bo_validate_busy_domain_evict
[06:05:55] [PASSED] ttm_bo_validate_evict_gutting
[06:05:55] [PASSED] ttm_bo_validate_recrusive_evict
[06:05:55] ================= [PASSED] ttm_bo_validate =================
[06:05:55] ============================================================
[06:05:55] Testing complete. Ran 102 tests: passed: 102
[06:05:55] Elapsed time: 11.678s total, 1.760s configuring, 9.703s building, 0.181s running

+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel



^ permalink raw reply	[flat|nested] 22+ messages in thread

* ✓ Xe.CI.BAT: success for Fix Adaptive-Sync SDP for PR with Link ON + Auxless-ALPM (rev4)
  2026-05-25  5:22 [PATCH 00/11] Fix Adaptive-Sync SDP for PR with Link ON + Auxless-ALPM Ankit Nautiyal
                   ` (11 preceding siblings ...)
  2026-05-25  6:05 ` ✓ CI.KUnit: success for Fix Adaptive-Sync SDP for PR with Link ON + Auxless-ALPM (rev4) Patchwork
@ 2026-05-25  6:43 ` Patchwork
  2026-05-25  8:58 ` ✓ Xe.CI.FULL: " Patchwork
                   ` (3 subsequent siblings)
  16 siblings, 0 replies; 22+ messages in thread
From: Patchwork @ 2026-05-25  6:43 UTC (permalink / raw)
  To: Ankit Nautiyal; +Cc: intel-xe

[-- Attachment #1: Type: text/plain, Size: 977 bytes --]

== Series Details ==

Series: Fix Adaptive-Sync SDP for PR with Link ON + Auxless-ALPM (rev4)
URL   : https://patchwork.freedesktop.org/series/164513/
State : success

== Summary ==

CI Bug Log - changes from xe-5120-7ce39e849680d6c0bf2795bbb4d986ecd1649d88_BAT -> xe-pw-164513v4_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (13 -> 13)
------------------------------

  No changes in participating hosts


Changes
-------

  No changes found


Build changes
-------------

  * Linux: xe-5120-7ce39e849680d6c0bf2795bbb4d986ecd1649d88 -> xe-pw-164513v4

  IGT_8936: 98b65acc4f6edf68cd52b30f27b83049c4c5c83b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-5120-7ce39e849680d6c0bf2795bbb4d986ecd1649d88: 7ce39e849680d6c0bf2795bbb4d986ecd1649d88
  xe-pw-164513v4: 164513v4

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/index.html

[-- Attachment #2: Type: text/html, Size: 1525 bytes --]

^ permalink raw reply	[flat|nested] 22+ messages in thread

* ✓ Xe.CI.FULL: success for Fix Adaptive-Sync SDP for PR with Link ON + Auxless-ALPM (rev4)
  2026-05-25  5:22 [PATCH 00/11] Fix Adaptive-Sync SDP for PR with Link ON + Auxless-ALPM Ankit Nautiyal
                   ` (12 preceding siblings ...)
  2026-05-25  6:43 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-05-25  8:58 ` Patchwork
  2026-05-26  7:07 ` ✓ CI.KUnit: success for Fix Adaptive-Sync SDP for PR with Link ON + Auxless-ALPM (rev5) Patchwork
                   ` (2 subsequent siblings)
  16 siblings, 0 replies; 22+ messages in thread
From: Patchwork @ 2026-05-25  8:58 UTC (permalink / raw)
  To: Ankit Nautiyal; +Cc: intel-xe

[-- Attachment #1: Type: text/plain, Size: 34419 bytes --]

== Series Details ==

Series: Fix Adaptive-Sync SDP for PR with Link ON + Auxless-ALPM (rev4)
URL   : https://patchwork.freedesktop.org/series/164513/
State : success

== Summary ==

CI Bug Log - changes from xe-5120-7ce39e849680d6c0bf2795bbb4d986ecd1649d88_FULL -> xe-pw-164513v4_FULL
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (2 -> 2)
------------------------------

  No changes in participating hosts

Known issues
------------

  Here are the changes found in xe-pw-164513v4_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
    - shard-bmg:          NOTRUN -> [SKIP][1] ([Intel XE#2233])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html

  * igt@kms_async_flips@alternate-sync-async-flip:
    - shard-lnl:          [PASS][2] -> [FAIL][3] ([Intel XE#3718] / [Intel XE#7265])
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5120-7ce39e849680d6c0bf2795bbb4d986ecd1649d88/shard-lnl-4/igt@kms_async_flips@alternate-sync-async-flip.html
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-lnl-2/igt@kms_async_flips@alternate-sync-async-flip.html

  * igt@kms_async_flips@alternate-sync-async-flip@pipe-c-edp-1:
    - shard-lnl:          [PASS][4] -> [FAIL][5] ([Intel XE#7265])
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5120-7ce39e849680d6c0bf2795bbb4d986ecd1649d88/shard-lnl-4/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-edp-1.html
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-lnl-2/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-edp-1.html

  * igt@kms_big_fb@y-tiled-addfb:
    - shard-bmg:          NOTRUN -> [SKIP][6] ([Intel XE#2328] / [Intel XE#7367])
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-1/igt@kms_big_fb@y-tiled-addfb.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-bmg:          NOTRUN -> [SKIP][7] ([Intel XE#1124])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][8] ([Intel XE#2887]) +1 other test skip
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][9] ([Intel XE#3432])
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html

  * igt@kms_chamelium_edid@hdmi-mode-timings:
    - shard-bmg:          NOTRUN -> [SKIP][10] ([Intel XE#2252]) +1 other test skip
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-1/igt@kms_chamelium_edid@hdmi-mode-timings.html

  * igt@kms_cursor_crc@cursor-onscreen-32x10:
    - shard-bmg:          NOTRUN -> [SKIP][11] ([Intel XE#2320]) +1 other test skip
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-1/igt@kms_cursor_crc@cursor-onscreen-32x10.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible:
    - shard-bmg:          [PASS][12] -> [DMESG-FAIL][13] ([Intel XE#5545] / [Intel XE#7774]) +1 other test dmesg-fail
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5120-7ce39e849680d6c0bf2795bbb4d986ecd1649d88/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
    - shard-bmg:          NOTRUN -> [SKIP][14] ([Intel XE#7178] / [Intel XE#7351]) +2 other tests skip
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][15] ([Intel XE#4141]) +4 other tests skip
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-spr-indfb-move:
    - shard-bmg:          NOTRUN -> [SKIP][16] ([Intel XE#2311]) +11 other tests skip
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-spr-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][17] ([Intel XE#2313]) +7 other tests skip
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][18] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-blt.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-bmg:          NOTRUN -> [SKIP][19] ([Intel XE#3544] / [Intel XE#7915] / [Intel XE#7916])
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_hdr@brightness-with-hdr@pipe-a-dp-2-xrgb2101010:
    - shard-bmg:          NOTRUN -> [SKIP][20] ([Intel XE#7916]) +1 other test skip
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-1/igt@kms_hdr@brightness-with-hdr@pipe-a-dp-2-xrgb2101010.html

  * igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-3-xrgb16161616f:
    - shard-bmg:          NOTRUN -> [SKIP][21] ([Intel XE#7915]) +1 other test skip
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-1/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-3-xrgb16161616f.html

  * igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-3-xrgb16161616f:
    - shard-bmg:          [PASS][22] -> [SKIP][23] ([Intel XE#7915]) +1 other test skip
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5120-7ce39e849680d6c0bf2795bbb4d986ecd1649d88/shard-bmg-5/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-3-xrgb16161616f.html
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-3/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-3-xrgb16161616f.html

  * igt@kms_joiner@invalid-modeset-big-joiner:
    - shard-bmg:          NOTRUN -> [SKIP][24] ([Intel XE#6901])
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-1/igt@kms_joiner@invalid-modeset-big-joiner.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
    - shard-bmg:          NOTRUN -> [SKIP][25] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf:
    - shard-bmg:          NOTRUN -> [SKIP][26] ([Intel XE#1489])
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr@fbc-pr-sprite-plane-onoff:
    - shard-bmg:          NOTRUN -> [SKIP][27] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-1/igt@kms_psr@fbc-pr-sprite-plane-onoff.html

  * igt@kms_sharpness_filter@filter-scaler-downscale:
    - shard-bmg:          NOTRUN -> [SKIP][28] ([Intel XE#6503])
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-1/igt@kms_sharpness_filter@filter-scaler-downscale.html

  * igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-vram:
    - shard-bmg:          NOTRUN -> [SKIP][29] ([Intel XE#7636]) +2 other tests skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-1/igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-vram.html

  * igt@xe_exec_balancer@many-parallel-userptr-invalidate:
    - shard-bmg:          [PASS][30] -> [SKIP][31] ([Intel XE#6703]) +61 other tests skip
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5120-7ce39e849680d6c0bf2795bbb4d986ecd1649d88/shard-bmg-3/igt@xe_exec_balancer@many-parallel-userptr-invalidate.html
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-2/igt@xe_exec_balancer@many-parallel-userptr-invalidate.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race:
    - shard-bmg:          NOTRUN -> [SKIP][32] ([Intel XE#2322] / [Intel XE#7372])
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html

  * igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-race-prefetch:
    - shard-bmg:          NOTRUN -> [SKIP][33] ([Intel XE#7136]) +1 other test skip
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-1/igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-race-prefetch.html

  * igt@xe_exec_multi_queue@few-execs-preempt-mode-fault-dyn-priority:
    - shard-bmg:          NOTRUN -> [SKIP][34] ([Intel XE#6874]) +3 other tests skip
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-1/igt@xe_exec_multi_queue@few-execs-preempt-mode-fault-dyn-priority.html

  * igt@xe_exec_reset@long-spin-many-preempt-media:
    - shard-bmg:          [PASS][35] -> [FAIL][36] ([Intel XE#7956])
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5120-7ce39e849680d6c0bf2795bbb4d986ecd1649d88/shard-bmg-8/igt@xe_exec_reset@long-spin-many-preempt-media.html
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-7/igt@xe_exec_reset@long-spin-many-preempt-media.html

  * igt@xe_exec_reset@long-spin-reuse-many-preempt-threads:
    - shard-bmg:          [PASS][37] -> [FAIL][38] ([Intel XE#7850])
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5120-7ce39e849680d6c0bf2795bbb4d986ecd1649d88/shard-bmg-4/igt@xe_exec_reset@long-spin-reuse-many-preempt-threads.html
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-9/igt@xe_exec_reset@long-spin-reuse-many-preempt-threads.html

  * igt@xe_exec_reset@multi-queue-close-fd:
    - shard-bmg:          NOTRUN -> [SKIP][39] ([Intel XE#7866])
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-1/igt@xe_exec_reset@multi-queue-close-fd.html

  * igt@xe_exec_system_allocator@once-mmap-race-nomemset:
    - shard-bmg:          [PASS][40] -> [SKIP][41] ([Intel XE#6557] / [Intel XE#6703]) +1 other test skip
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5120-7ce39e849680d6c0bf2795bbb4d986ecd1649d88/shard-bmg-3/igt@xe_exec_system_allocator@once-mmap-race-nomemset.html
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-2/igt@xe_exec_system_allocator@once-mmap-race-nomemset.html

  * igt@xe_exec_threads@threads-multi-queue-mixed-fd-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][42] ([Intel XE#7138]) +1 other test skip
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-1/igt@xe_exec_threads@threads-multi-queue-mixed-fd-rebind.html

  * igt@xe_gpgpu_fill@offset-4x4:
    - shard-bmg:          NOTRUN -> [SKIP][43] ([Intel XE#7954])
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-1/igt@xe_gpgpu_fill@offset-4x4.html

  * igt@xe_page_reclaim@pat-index-xd:
    - shard-bmg:          NOTRUN -> [SKIP][44] ([Intel XE#7793])
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-1/igt@xe_page_reclaim@pat-index-xd.html

  * igt@xe_pat@pat-sw-hw-compare:
    - shard-bmg:          NOTRUN -> [FAIL][45] ([Intel XE#7695])
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-1/igt@xe_pat@pat-sw-hw-compare.html

  * igt@xe_sriov_auto_provisioning@fair-allocation@numvfs-random:
    - shard-bmg:          NOTRUN -> [FAIL][46] ([Intel XE#7992])
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-1/igt@xe_sriov_auto_provisioning@fair-allocation@numvfs-random.html

  
#### Possible fixes ####

  * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-mmap-wc:
    - shard-bmg:          [DMESG-FAIL][47] ([Intel XE#5545] / [Intel XE#7774]) -> [PASS][48]
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5120-7ce39e849680d6c0bf2795bbb4d986ecd1649d88/shard-bmg-2/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-mmap-wc.html
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-1/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-3-xrgb2101010:
    - shard-bmg:          [SKIP][49] ([Intel XE#7915]) -> [PASS][50] +1 other test pass
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5120-7ce39e849680d6c0bf2795bbb4d986ecd1649d88/shard-bmg-8/igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-3-xrgb2101010.html
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-4/igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-3-xrgb2101010.html

  * igt@kms_pm_rpm@i2c:
    - shard-bmg:          [FAIL][51] ([Intel XE#8165]) -> [PASS][52]
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5120-7ce39e849680d6c0bf2795bbb4d986ecd1649d88/shard-bmg-5/igt@kms_pm_rpm@i2c.html
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-3/igt@kms_pm_rpm@i2c.html

  * igt@xe_evict@evict-cm-threads-large-multi-vm:
    - shard-bmg:          [ABORT][53] -> [PASS][54]
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5120-7ce39e849680d6c0bf2795bbb4d986ecd1649d88/shard-bmg-2/igt@xe_evict@evict-cm-threads-large-multi-vm.html
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-1/igt@xe_evict@evict-cm-threads-large-multi-vm.html

  * igt@xe_evict@evict-mixed-many-threads-small:
    - shard-bmg:          [INCOMPLETE][55] ([Intel XE#6321]) -> [PASS][56]
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5120-7ce39e849680d6c0bf2795bbb4d986ecd1649d88/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-small.html
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-small.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap:
    - shard-bmg:          [SKIP][57] ([Intel XE#6557] / [Intel XE#6703]) -> [PASS][58]
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5120-7ce39e849680d6c0bf2795bbb4d986ecd1649d88/shard-bmg-2/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap.html
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-1/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-stride-new-prefetch:
    - shard-bmg:          [SKIP][59] ([Intel XE#6703]) -> [PASS][60] +53 other tests pass
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5120-7ce39e849680d6c0bf2795bbb4d986ecd1649d88/shard-bmg-2/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-new-prefetch.html
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-1/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-new-prefetch.html

  
#### Warnings ####

  * igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
    - shard-bmg:          [SKIP][61] ([Intel XE#6703]) -> [SKIP][62] ([Intel XE#1124])
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5120-7ce39e849680d6c0bf2795bbb4d986ecd1649d88/shard-bmg-2/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-1/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html

  * igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
    - shard-bmg:          [SKIP][63] ([Intel XE#1124]) -> [SKIP][64] ([Intel XE#6703])
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5120-7ce39e849680d6c0bf2795bbb4d986ecd1649d88/shard-bmg-3/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-2/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html

  * igt@kms_bw@linear-tiling-2-displays-target-2560x1440p:
    - shard-bmg:          [SKIP][65] ([Intel XE#6703]) -> [SKIP][66] ([Intel XE#367])
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5120-7ce39e849680d6c0bf2795bbb4d986ecd1649d88/shard-bmg-2/igt@kms_bw@linear-tiling-2-displays-target-2560x1440p.html
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-1/igt@kms_bw@linear-tiling-2-displays-target-2560x1440p.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
    - shard-bmg:          [SKIP][67] ([Intel XE#2652]) -> [SKIP][68] ([Intel XE#6703])
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5120-7ce39e849680d6c0bf2795bbb4d986ecd1649d88/shard-bmg-3/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-2/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc:
    - shard-bmg:          [SKIP][69] ([Intel XE#6703]) -> [SKIP][70] ([Intel XE#2887]) +1 other test skip
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5120-7ce39e849680d6c0bf2795bbb4d986ecd1649d88/shard-bmg-2/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-1/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html

  * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs:
    - shard-bmg:          [SKIP][71] ([Intel XE#2887]) -> [SKIP][72] ([Intel XE#6703]) +1 other test skip
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5120-7ce39e849680d6c0bf2795bbb4d986ecd1649d88/shard-bmg-3/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs.html
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-2/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs.html

  * igt@kms_content_protection@dp-mst-type-1:
    - shard-bmg:          [SKIP][73] ([Intel XE#2390] / [Intel XE#6974]) -> [SKIP][74] ([Intel XE#6703])
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5120-7ce39e849680d6c0bf2795bbb4d986ecd1649d88/shard-bmg-3/igt@kms_content_protection@dp-mst-type-1.html
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-2/igt@kms_content_protection@dp-mst-type-1.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][75] ([Intel XE#6703]) -> [SKIP][76] ([Intel XE#4141])
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5120-7ce39e849680d6c0bf2795bbb4d986ecd1649d88/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-stridechange:
    - shard-bmg:          [SKIP][77] ([Intel XE#4141]) -> [SKIP][78] ([Intel XE#6703]) +1 other test skip
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5120-7ce39e849680d6c0bf2795bbb4d986ecd1649d88/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-stridechange.html
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-stridechange.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          [SKIP][79] ([Intel XE#6703]) -> [SKIP][80] ([Intel XE#2311]) +3 other tests skip
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5120-7ce39e849680d6c0bf2795bbb4d986ecd1649d88/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-pgflip-blt.html
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrshdr-stridechange:
    - shard-bmg:          [SKIP][81] ([Intel XE#2311]) -> [SKIP][82] ([Intel XE#6703]) +3 other tests skip
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5120-7ce39e849680d6c0bf2795bbb4d986ecd1649d88/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrshdr-stridechange.html
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrshdr-stridechange.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-indfb-draw-render:
    - shard-bmg:          [SKIP][83] ([Intel XE#2313]) -> [SKIP][84] ([Intel XE#6703]) +6 other tests skip
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5120-7ce39e849680d6c0bf2795bbb4d986ecd1649d88/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-indfb-draw-render.html
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-render:
    - shard-bmg:          [SKIP][85] ([Intel XE#6703]) -> [SKIP][86] ([Intel XE#2313])
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5120-7ce39e849680d6c0bf2795bbb4d986ecd1649d88/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-render.html
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-render.html

  * igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping:
    - shard-bmg:          [SKIP][87] ([Intel XE#6703]) -> [SKIP][88] ([Intel XE#7283])
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5120-7ce39e849680d6c0bf2795bbb4d986ecd1649d88/shard-bmg-2/igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping.html
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-1/igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
    - shard-bmg:          [SKIP][89] ([Intel XE#1489]) -> [SKIP][90] ([Intel XE#6703])
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5120-7ce39e849680d6c0bf2795bbb4d986ecd1649d88/shard-bmg-3/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html

  * igt@kms_psr@pr-no-drrs:
    - shard-bmg:          [SKIP][91] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][92] ([Intel XE#6703])
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5120-7ce39e849680d6c0bf2795bbb4d986ecd1649d88/shard-bmg-3/igt@kms_psr@pr-no-drrs.html
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-2/igt@kms_psr@pr-no-drrs.html

  * igt@kms_sharpness_filter@filter-toggle:
    - shard-bmg:          [SKIP][93] ([Intel XE#6703]) -> [SKIP][94] ([Intel XE#6503])
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5120-7ce39e849680d6c0bf2795bbb4d986ecd1649d88/shard-bmg-2/igt@kms_sharpness_filter@filter-toggle.html
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-1/igt@kms_sharpness_filter@filter-toggle.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-bmg:          [FAIL][95] ([Intel XE#1729] / [Intel XE#7424]) -> [SKIP][96] ([Intel XE#2426] / [Intel XE#5848])
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5120-7ce39e849680d6c0bf2795bbb4d986ecd1649d88/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern.html
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-3/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          [SKIP][97] ([Intel XE#2426] / [Intel XE#5848]) -> [SKIP][98] ([Intel XE#2509] / [Intel XE#7437])
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5120-7ce39e849680d6c0bf2795bbb4d986ecd1649d88/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@xe_evict@evict-threads-small-multi-queue:
    - shard-bmg:          [SKIP][99] ([Intel XE#6703]) -> [SKIP][100] ([Intel XE#7140])
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5120-7ce39e849680d6c0bf2795bbb4d986ecd1649d88/shard-bmg-2/igt@xe_evict@evict-threads-small-multi-queue.html
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-1/igt@xe_evict@evict-threads-small-multi-queue.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind:
    - shard-bmg:          [SKIP][101] ([Intel XE#2322] / [Intel XE#7372]) -> [SKIP][102] ([Intel XE#6703])
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5120-7ce39e849680d6c0bf2795bbb4d986ecd1649d88/shard-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind.html
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind.html

  * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr:
    - shard-bmg:          [SKIP][103] ([Intel XE#6703]) -> [SKIP][104] ([Intel XE#2322] / [Intel XE#7372])
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5120-7ce39e849680d6c0bf2795bbb4d986ecd1649d88/shard-bmg-2/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr.html
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-1/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr.html

  * igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate:
    - shard-bmg:          [SKIP][105] ([Intel XE#7136]) -> [SKIP][106] ([Intel XE#6703]) +2 other tests skip
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5120-7ce39e849680d6c0bf2795bbb4d986ecd1649d88/shard-bmg-3/igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate.html
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-2/igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate.html

  * igt@xe_exec_multi_queue@few-execs-preempt-mode-priority-smem:
    - shard-bmg:          [SKIP][107] ([Intel XE#6874]) -> [SKIP][108] ([Intel XE#6703]) +3 other tests skip
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5120-7ce39e849680d6c0bf2795bbb4d986ecd1649d88/shard-bmg-3/igt@xe_exec_multi_queue@few-execs-preempt-mode-priority-smem.html
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-2/igt@xe_exec_multi_queue@few-execs-preempt-mode-priority-smem.html

  * igt@xe_exec_multi_queue@max-queues-userptr-invalidate:
    - shard-bmg:          [SKIP][109] ([Intel XE#6703]) -> [SKIP][110] ([Intel XE#6874]) +3 other tests skip
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5120-7ce39e849680d6c0bf2795bbb4d986ecd1649d88/shard-bmg-2/igt@xe_exec_multi_queue@max-queues-userptr-invalidate.html
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-1/igt@xe_exec_multi_queue@max-queues-userptr-invalidate.html

  * igt@xe_exec_reset@multi-queue-cat-error:
    - shard-bmg:          [SKIP][111] ([Intel XE#6703]) -> [SKIP][112] ([Intel XE#7866])
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5120-7ce39e849680d6c0bf2795bbb4d986ecd1649d88/shard-bmg-2/igt@xe_exec_reset@multi-queue-cat-error.html
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-1/igt@xe_exec_reset@multi-queue-cat-error.html

  * igt@xe_exec_threads@threads-multi-queue-fd-userptr-rebind:
    - shard-bmg:          [SKIP][113] ([Intel XE#6703]) -> [SKIP][114] ([Intel XE#7138]) +1 other test skip
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5120-7ce39e849680d6c0bf2795bbb4d986ecd1649d88/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-fd-userptr-rebind.html
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-1/igt@xe_exec_threads@threads-multi-queue-fd-userptr-rebind.html

  * igt@xe_exec_threads@threads-multi-queue-mixed-basic:
    - shard-bmg:          [SKIP][115] ([Intel XE#7138]) -> [SKIP][116] ([Intel XE#6703])
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5120-7ce39e849680d6c0bf2795bbb4d986ecd1649d88/shard-bmg-3/igt@xe_exec_threads@threads-multi-queue-mixed-basic.html
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-mixed-basic.html

  * igt@xe_page_reclaim@binds-large-split:
    - shard-bmg:          [SKIP][117] ([Intel XE#7793]) -> [SKIP][118] ([Intel XE#6703])
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5120-7ce39e849680d6c0bf2795bbb4d986ecd1649d88/shard-bmg-3/igt@xe_page_reclaim@binds-large-split.html
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-2/igt@xe_page_reclaim@binds-large-split.html

  * igt@xe_sriov_auto_provisioning@fair-allocation:
    - shard-bmg:          [SKIP][119] ([Intel XE#6703]) -> [FAIL][120] ([Intel XE#7992])
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5120-7ce39e849680d6c0bf2795bbb4d986ecd1649d88/shard-bmg-2/igt@xe_sriov_auto_provisioning@fair-allocation.html
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/shard-bmg-1/igt@xe_sriov_auto_provisioning@fair-allocation.html

  
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
  [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
  [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
  [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
  [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
  [Intel XE#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557
  [Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703
  [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
  [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
  [Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901
  [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
  [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
  [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
  [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
  [Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
  [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
  [Intel XE#7265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7265
  [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
  [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
  [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
  [Intel XE#7367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7367
  [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
  [Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
  [Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437
  [Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
  [Intel XE#7695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7695
  [Intel XE#7774]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7774
  [Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
  [Intel XE#7850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7850
  [Intel XE#7866]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7866
  [Intel XE#7915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7915
  [Intel XE#7916]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7916
  [Intel XE#7954]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7954
  [Intel XE#7956]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7956
  [Intel XE#7992]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7992
  [Intel XE#8165]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8165


Build changes
-------------

  * Linux: xe-5120-7ce39e849680d6c0bf2795bbb4d986ecd1649d88 -> xe-pw-164513v4

  IGT_8936: 98b65acc4f6edf68cd52b30f27b83049c4c5c83b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-5120-7ce39e849680d6c0bf2795bbb4d986ecd1649d88: 7ce39e849680d6c0bf2795bbb4d986ecd1649d88
  xe-pw-164513v4: 164513v4

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v4/index.html

[-- Attachment #2: Type: text/html, Size: 41304 bytes --]

^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: [PATCH 10/11] drm/i915/dp: Enable AS SDP whenever VRR is possible
  2026-05-25  5:22 ` [PATCH 10/11] drm/i915/dp: Enable AS SDP whenever VRR is possible Ankit Nautiyal
@ 2026-05-25 14:24   ` Ville Syrjälä
  2026-05-26  6:43   ` [PATCH 10/11] drm/i915/dp: Enable AS SDP whenever VRR is possible or PR !async Ankit Nautiyal
  1 sibling, 0 replies; 22+ messages in thread
From: Ville Syrjälä @ 2026-05-25 14:24 UTC (permalink / raw)
  To: Ankit Nautiyal; +Cc: intel-gfx, intel-xe, jouni.hogander, animesh.manna

On Mon, May 25, 2026 at 10:52:34AM +0530, Ankit Nautiyal wrote:
> Currently AS SDP is only configured when VRR is enabled. With the optimized
> guardband, the guardband must already account for AS SDP wakeup time
> whenever AS SDP can be sent, otherwise turning VRR on after the initial
> modeset could require a larger guardband and trigger a full modeset.
> 
> Switch the check in intel_dp_needs_as_sdp() from crtc_state->vrr.enable
> to intel_vrr_possible(crtc_state), so AS SDP is enabled (and accounted
> for in the guardband) on any configuration where VRR could be turned on,
> not only when it currently is.
> 
> Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
> ---
>  drivers/gpu/drm/i915/display/intel_dp.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
> index a3aa0dadf0e1..c01ce3403ad1 100644
> --- a/drivers/gpu/drm/i915/display/intel_dp.c
> +++ b/drivers/gpu/drm/i915/display/intel_dp.c
> @@ -3181,7 +3181,7 @@ static bool intel_dp_needs_as_sdp(struct intel_dp *intel_dp,
>  	if (drm_dp_is_branch(intel_dp->dpcd))
>  		return false;
>  
> -	return crtc_state->vrr.enable;
> +	return intel_vrr_possible(crtc_state);

We need AS SDP for the panel replay !async case.

>  }
>  
>  static void intel_dp_compute_as_sdp(struct intel_dp *intel_dp,
> -- 
> 2.45.2

-- 
Ville Syrjälä
Intel

^ permalink raw reply	[flat|nested] 22+ messages in thread

* [PATCH 10/11] drm/i915/dp: Enable AS SDP whenever VRR is possible or PR !async
  2026-05-25  5:22 ` [PATCH 10/11] drm/i915/dp: Enable AS SDP whenever VRR is possible Ankit Nautiyal
  2026-05-25 14:24   ` Ville Syrjälä
@ 2026-05-26  6:43   ` Ankit Nautiyal
  2026-05-26 14:04     ` Ville Syrjälä
  1 sibling, 1 reply; 22+ messages in thread
From: Ankit Nautiyal @ 2026-05-26  6:43 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: ville.syrjala, Ankit Nautiyal

Currently AS SDP is only configured when VRR is enabled.
With optimized guardband, we also need to account for wakeup time and other
relevant details that depend on the AS SDP position whenever AS SDP is
enabled. If a feature enabling AS SDP gets turned on later (after modeset),
the guardband might not be sufficient and may need to increase, triggering
a full modeset.

Additionally, for Panel Replay with Aux-less ALPM where the sink does
not support asynchronous video timing in PR active, the source must
keep transmitting Adaptive-Sync SDPs while PR is active.

So, always send AS SDP whenever there is a possibility to use it for VRR
OR for Panel Replay for synchronization.

v2: Check if AS SDP can be used for synchronization for VRR or PR. (Ville)
v3: Use intel_psr_needs_alpm_aux_less() instead of
    intel_alpm_is_alpm_aux_less() to avoid including the LOBF case. (Ville)
    Modify the commit message and subject.

Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
 drivers/gpu/drm/i915/display/intel_dp.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
index a3aa0dadf0e1..87d7857fbafa 100644
--- a/drivers/gpu/drm/i915/display/intel_dp.c
+++ b/drivers/gpu/drm/i915/display/intel_dp.c
@@ -3181,7 +3181,11 @@ static bool intel_dp_needs_as_sdp(struct intel_dp *intel_dp,
 	if (drm_dp_is_branch(intel_dp->dpcd))
 		return false;
 
-	return crtc_state->vrr.enable;
+	if (intel_psr_needs_alpm_aux_less(intel_dp, crtc_state) &&
+	    !intel_psr_pr_async_video_timing_supported(intel_dp))
+		return true;
+
+	return intel_vrr_possible(crtc_state);
 }
 
 static void intel_dp_compute_as_sdp(struct intel_dp *intel_dp,
-- 
2.45.2


^ permalink raw reply related	[flat|nested] 22+ messages in thread

* ✓ CI.KUnit: success for Fix Adaptive-Sync SDP for PR with Link ON + Auxless-ALPM (rev5)
  2026-05-25  5:22 [PATCH 00/11] Fix Adaptive-Sync SDP for PR with Link ON + Auxless-ALPM Ankit Nautiyal
                   ` (13 preceding siblings ...)
  2026-05-25  8:58 ` ✓ Xe.CI.FULL: " Patchwork
@ 2026-05-26  7:07 ` Patchwork
  2026-05-26  7:52 ` ✓ Xe.CI.BAT: " Patchwork
  2026-05-26  9:03 ` ✓ Xe.CI.FULL: " Patchwork
  16 siblings, 0 replies; 22+ messages in thread
From: Patchwork @ 2026-05-26  7:07 UTC (permalink / raw)
  To: Ankit Nautiyal; +Cc: intel-xe

== Series Details ==

Series: Fix Adaptive-Sync SDP for PR with Link ON + Auxless-ALPM (rev5)
URL   : https://patchwork.freedesktop.org/series/164513/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[07:06:00] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[07:06:05] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[07:06:36] Starting KUnit Kernel (1/1)...
[07:06:36] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[07:06:36] ================== guc_buf (11 subtests) ===================
[07:06:36] [PASSED] test_smallest
[07:06:36] [PASSED] test_largest
[07:06:36] [PASSED] test_granular
[07:06:36] [PASSED] test_unique
[07:06:36] [PASSED] test_overlap
[07:06:36] [PASSED] test_reusable
[07:06:36] [PASSED] test_too_big
[07:06:36] [PASSED] test_flush
[07:06:36] [PASSED] test_lookup
[07:06:36] [PASSED] test_data
[07:06:36] [PASSED] test_class
[07:06:36] ===================== [PASSED] guc_buf =====================
[07:06:36] =================== guc_dbm (7 subtests) ===================
[07:06:36] [PASSED] test_empty
[07:06:36] [PASSED] test_default
[07:06:36] ======================== test_size  ========================
[07:06:36] [PASSED] 4
[07:06:36] [PASSED] 8
[07:06:36] [PASSED] 32
[07:06:36] [PASSED] 256
[07:06:36] ==================== [PASSED] test_size ====================
[07:06:36] ======================= test_reuse  ========================
[07:06:36] [PASSED] 4
[07:06:36] [PASSED] 8
[07:06:36] [PASSED] 32
[07:06:36] [PASSED] 256
[07:06:36] =================== [PASSED] test_reuse ====================
[07:06:36] =================== test_range_overlap  ====================
[07:06:36] [PASSED] 4
[07:06:36] [PASSED] 8
[07:06:36] [PASSED] 32
[07:06:36] [PASSED] 256
[07:06:36] =============== [PASSED] test_range_overlap ================
[07:06:36] =================== test_range_compact  ====================
[07:06:36] [PASSED] 4
[07:06:36] [PASSED] 8
[07:06:36] [PASSED] 32
[07:06:36] [PASSED] 256
[07:06:36] =============== [PASSED] test_range_compact ================
[07:06:36] ==================== test_range_spare  =====================
[07:06:36] [PASSED] 4
[07:06:36] [PASSED] 8
[07:06:36] [PASSED] 32
[07:06:36] [PASSED] 256
[07:06:36] ================ [PASSED] test_range_spare =================
[07:06:36] ===================== [PASSED] guc_dbm =====================
[07:06:36] =================== guc_idm (6 subtests) ===================
[07:06:36] [PASSED] bad_init
[07:06:36] [PASSED] no_init
[07:06:36] [PASSED] init_fini
[07:06:36] [PASSED] check_used
[07:06:36] [PASSED] check_quota
[07:06:36] [PASSED] check_all
[07:06:36] ===================== [PASSED] guc_idm =====================
[07:06:36] ================== no_relay (3 subtests) ===================
[07:06:36] [PASSED] xe_drops_guc2pf_if_not_ready
[07:06:36] [PASSED] xe_drops_guc2vf_if_not_ready
[07:06:36] [PASSED] xe_rejects_send_if_not_ready
[07:06:36] ==================== [PASSED] no_relay =====================
[07:06:36] ================== pf_relay (14 subtests) ==================
[07:06:36] [PASSED] pf_rejects_guc2pf_too_short
[07:06:36] [PASSED] pf_rejects_guc2pf_too_long
[07:06:36] [PASSED] pf_rejects_guc2pf_no_payload
[07:06:36] [PASSED] pf_fails_no_payload
[07:06:36] [PASSED] pf_fails_bad_origin
[07:06:36] [PASSED] pf_fails_bad_type
[07:06:36] [PASSED] pf_txn_reports_error
[07:06:36] [PASSED] pf_txn_sends_pf2guc
[07:06:36] [PASSED] pf_sends_pf2guc
[07:06:36] [SKIPPED] pf_loopback_nop
[07:06:36] [SKIPPED] pf_loopback_echo
[07:06:36] [SKIPPED] pf_loopback_fail
[07:06:36] [SKIPPED] pf_loopback_busy
[07:06:36] [SKIPPED] pf_loopback_retry
[07:06:36] ==================== [PASSED] pf_relay =====================
[07:06:36] ================== vf_relay (3 subtests) ===================
[07:06:36] [PASSED] vf_rejects_guc2vf_too_short
[07:06:36] [PASSED] vf_rejects_guc2vf_too_long
[07:06:36] [PASSED] vf_rejects_guc2vf_no_payload
[07:06:36] ==================== [PASSED] vf_relay =====================
[07:06:36] ================ pf_gt_config (9 subtests) =================
[07:06:36] [PASSED] fair_contexts_1vf
[07:06:36] [PASSED] fair_doorbells_1vf
[07:06:36] [PASSED] fair_ggtt_1vf
[07:06:36] ====================== fair_vram_1vf  ======================
[07:06:36] [PASSED] 3.50 GiB
[07:06:36] [PASSED] 11.5 GiB
[07:06:36] [PASSED] 15.5 GiB
[07:06:36] [PASSED] 31.5 GiB
[07:06:36] [PASSED] 63.5 GiB
[07:06:36] [PASSED] 1.91 GiB
[07:06:36] ================== [PASSED] fair_vram_1vf ==================
[07:06:36] ================ fair_vram_1vf_admin_only  =================
[07:06:36] [PASSED] 3.50 GiB
[07:06:36] [PASSED] 11.5 GiB
[07:06:36] [PASSED] 15.5 GiB
[07:06:36] [PASSED] 31.5 GiB
[07:06:36] [PASSED] 63.5 GiB
[07:06:36] [PASSED] 1.91 GiB
[07:06:36] ============ [PASSED] fair_vram_1vf_admin_only =============
[07:06:36] ====================== fair_contexts  ======================
[07:06:36] [PASSED] 1 VF
[07:06:36] [PASSED] 2 VFs
[07:06:36] [PASSED] 3 VFs
[07:06:36] [PASSED] 4 VFs
[07:06:36] [PASSED] 5 VFs
[07:06:36] [PASSED] 6 VFs
[07:06:36] [PASSED] 7 VFs
[07:06:36] [PASSED] 8 VFs
[07:06:36] [PASSED] 9 VFs
[07:06:36] [PASSED] 10 VFs
[07:06:36] [PASSED] 11 VFs
[07:06:36] [PASSED] 12 VFs
[07:06:36] [PASSED] 13 VFs
[07:06:36] [PASSED] 14 VFs
[07:06:36] [PASSED] 15 VFs
[07:06:36] [PASSED] 16 VFs
[07:06:36] [PASSED] 17 VFs
[07:06:36] [PASSED] 18 VFs
[07:06:36] [PASSED] 19 VFs
[07:06:36] [PASSED] 20 VFs
[07:06:36] [PASSED] 21 VFs
[07:06:36] [PASSED] 22 VFs
[07:06:36] [PASSED] 23 VFs
[07:06:36] [PASSED] 24 VFs
[07:06:36] [PASSED] 25 VFs
[07:06:36] [PASSED] 26 VFs
[07:06:36] [PASSED] 27 VFs
[07:06:36] [PASSED] 28 VFs
[07:06:36] [PASSED] 29 VFs
[07:06:36] [PASSED] 30 VFs
[07:06:36] [PASSED] 31 VFs
[07:06:36] [PASSED] 32 VFs
[07:06:36] [PASSED] 33 VFs
[07:06:36] [PASSED] 34 VFs
[07:06:36] [PASSED] 35 VFs
[07:06:36] [PASSED] 36 VFs
[07:06:36] [PASSED] 37 VFs
[07:06:36] [PASSED] 38 VFs
[07:06:36] [PASSED] 39 VFs
[07:06:36] [PASSED] 40 VFs
[07:06:36] [PASSED] 41 VFs
[07:06:36] [PASSED] 42 VFs
[07:06:36] [PASSED] 43 VFs
[07:06:36] [PASSED] 44 VFs
[07:06:36] [PASSED] 45 VFs
[07:06:36] [PASSED] 46 VFs
[07:06:36] [PASSED] 47 VFs
[07:06:36] [PASSED] 48 VFs
[07:06:36] [PASSED] 49 VFs
[07:06:36] [PASSED] 50 VFs
[07:06:36] [PASSED] 51 VFs
[07:06:36] [PASSED] 52 VFs
[07:06:36] [PASSED] 53 VFs
[07:06:36] [PASSED] 54 VFs
[07:06:36] [PASSED] 55 VFs
[07:06:36] [PASSED] 56 VFs
[07:06:36] [PASSED] 57 VFs
[07:06:36] [PASSED] 58 VFs
[07:06:36] [PASSED] 59 VFs
[07:06:36] [PASSED] 60 VFs
[07:06:36] [PASSED] 61 VFs
[07:06:36] [PASSED] 62 VFs
[07:06:36] [PASSED] 63 VFs
[07:06:36] ================== [PASSED] fair_contexts ==================
[07:06:36] ===================== fair_doorbells  ======================
[07:06:36] [PASSED] 1 VF
[07:06:36] [PASSED] 2 VFs
[07:06:36] [PASSED] 3 VFs
[07:06:36] [PASSED] 4 VFs
[07:06:36] [PASSED] 5 VFs
[07:06:36] [PASSED] 6 VFs
[07:06:36] [PASSED] 7 VFs
[07:06:36] [PASSED] 8 VFs
[07:06:36] [PASSED] 9 VFs
[07:06:36] [PASSED] 10 VFs
[07:06:36] [PASSED] 11 VFs
[07:06:36] [PASSED] 12 VFs
[07:06:36] [PASSED] 13 VFs
[07:06:36] [PASSED] 14 VFs
[07:06:36] [PASSED] 15 VFs
[07:06:36] [PASSED] 16 VFs
[07:06:36] [PASSED] 17 VFs
[07:06:36] [PASSED] 18 VFs
[07:06:36] [PASSED] 19 VFs
[07:06:36] [PASSED] 20 VFs
[07:06:36] [PASSED] 21 VFs
[07:06:36] [PASSED] 22 VFs
[07:06:36] [PASSED] 23 VFs
[07:06:36] [PASSED] 24 VFs
[07:06:36] [PASSED] 25 VFs
[07:06:36] [PASSED] 26 VFs
[07:06:36] [PASSED] 27 VFs
[07:06:36] [PASSED] 28 VFs
[07:06:36] [PASSED] 29 VFs
[07:06:36] [PASSED] 30 VFs
[07:06:36] [PASSED] 31 VFs
[07:06:36] [PASSED] 32 VFs
[07:06:36] [PASSED] 33 VFs
[07:06:36] [PASSED] 34 VFs
[07:06:36] [PASSED] 35 VFs
[07:06:36] [PASSED] 36 VFs
[07:06:36] [PASSED] 37 VFs
[07:06:36] [PASSED] 38 VFs
[07:06:36] [PASSED] 39 VFs
[07:06:36] [PASSED] 40 VFs
[07:06:36] [PASSED] 41 VFs
[07:06:36] [PASSED] 42 VFs
[07:06:36] [PASSED] 43 VFs
[07:06:36] [PASSED] 44 VFs
[07:06:36] [PASSED] 45 VFs
[07:06:36] [PASSED] 46 VFs
[07:06:36] [PASSED] 47 VFs
[07:06:36] [PASSED] 48 VFs
[07:06:36] [PASSED] 49 VFs
[07:06:36] [PASSED] 50 VFs
[07:06:36] [PASSED] 51 VFs
[07:06:36] [PASSED] 52 VFs
[07:06:36] [PASSED] 53 VFs
[07:06:36] [PASSED] 54 VFs
[07:06:36] [PASSED] 55 VFs
[07:06:36] [PASSED] 56 VFs
[07:06:36] [PASSED] 57 VFs
[07:06:36] [PASSED] 58 VFs
[07:06:36] [PASSED] 59 VFs
[07:06:36] [PASSED] 60 VFs
[07:06:36] [PASSED] 61 VFs
[07:06:36] [PASSED] 62 VFs
[07:06:36] [PASSED] 63 VFs
[07:06:36] ================= [PASSED] fair_doorbells ==================
[07:06:36] ======================== fair_ggtt  ========================
[07:06:36] [PASSED] 1 VF
[07:06:36] [PASSED] 2 VFs
[07:06:36] [PASSED] 3 VFs
[07:06:36] [PASSED] 4 VFs
[07:06:36] [PASSED] 5 VFs
[07:06:36] [PASSED] 6 VFs
[07:06:36] [PASSED] 7 VFs
[07:06:36] [PASSED] 8 VFs
[07:06:36] [PASSED] 9 VFs
[07:06:36] [PASSED] 10 VFs
[07:06:36] [PASSED] 11 VFs
[07:06:36] [PASSED] 12 VFs
[07:06:36] [PASSED] 13 VFs
[07:06:36] [PASSED] 14 VFs
[07:06:36] [PASSED] 15 VFs
[07:06:36] [PASSED] 16 VFs
[07:06:36] [PASSED] 17 VFs
[07:06:36] [PASSED] 18 VFs
[07:06:36] [PASSED] 19 VFs
[07:06:36] [PASSED] 20 VFs
[07:06:36] [PASSED] 21 VFs
[07:06:36] [PASSED] 22 VFs
[07:06:36] [PASSED] 23 VFs
[07:06:36] [PASSED] 24 VFs
[07:06:36] [PASSED] 25 VFs
[07:06:36] [PASSED] 26 VFs
[07:06:36] [PASSED] 27 VFs
[07:06:36] [PASSED] 28 VFs
[07:06:36] [PASSED] 29 VFs
[07:06:36] [PASSED] 30 VFs
[07:06:36] [PASSED] 31 VFs
[07:06:36] [PASSED] 32 VFs
[07:06:36] [PASSED] 33 VFs
[07:06:36] [PASSED] 34 VFs
[07:06:36] [PASSED] 35 VFs
[07:06:36] [PASSED] 36 VFs
[07:06:36] [PASSED] 37 VFs
[07:06:36] [PASSED] 38 VFs
[07:06:36] [PASSED] 39 VFs
[07:06:36] [PASSED] 40 VFs
[07:06:36] [PASSED] 41 VFs
[07:06:36] [PASSED] 42 VFs
[07:06:36] [PASSED] 43 VFs
[07:06:36] [PASSED] 44 VFs
[07:06:36] [PASSED] 45 VFs
[07:06:36] [PASSED] 46 VFs
[07:06:36] [PASSED] 47 VFs
[07:06:36] [PASSED] 48 VFs
[07:06:36] [PASSED] 49 VFs
[07:06:36] [PASSED] 50 VFs
[07:06:36] [PASSED] 51 VFs
[07:06:36] [PASSED] 52 VFs
[07:06:36] [PASSED] 53 VFs
[07:06:36] [PASSED] 54 VFs
[07:06:36] [PASSED] 55 VFs
[07:06:36] [PASSED] 56 VFs
[07:06:36] [PASSED] 57 VFs
[07:06:36] [PASSED] 58 VFs
[07:06:36] [PASSED] 59 VFs
[07:06:36] [PASSED] 60 VFs
[07:06:36] [PASSED] 61 VFs
[07:06:36] [PASSED] 62 VFs
[07:06:36] [PASSED] 63 VFs
[07:06:36] ==================== [PASSED] fair_ggtt ====================
[07:06:36] ======================== fair_vram  ========================
[07:06:36] [PASSED] 1 VF
[07:06:36] [PASSED] 2 VFs
[07:06:36] [PASSED] 3 VFs
[07:06:36] [PASSED] 4 VFs
[07:06:36] [PASSED] 5 VFs
[07:06:36] [PASSED] 6 VFs
[07:06:36] [PASSED] 7 VFs
[07:06:36] [PASSED] 8 VFs
[07:06:36] [PASSED] 9 VFs
[07:06:36] [PASSED] 10 VFs
[07:06:36] [PASSED] 11 VFs
[07:06:36] [PASSED] 12 VFs
[07:06:36] [PASSED] 13 VFs
[07:06:36] [PASSED] 14 VFs
[07:06:36] [PASSED] 15 VFs
[07:06:36] [PASSED] 16 VFs
[07:06:36] [PASSED] 17 VFs
[07:06:36] [PASSED] 18 VFs
[07:06:36] [PASSED] 19 VFs
[07:06:36] [PASSED] 20 VFs
[07:06:36] [PASSED] 21 VFs
[07:06:36] [PASSED] 22 VFs
[07:06:36] [PASSED] 23 VFs
[07:06:36] [PASSED] 24 VFs
[07:06:36] [PASSED] 25 VFs
[07:06:36] [PASSED] 26 VFs
[07:06:36] [PASSED] 27 VFs
[07:06:36] [PASSED] 28 VFs
[07:06:36] [PASSED] 29 VFs
[07:06:36] [PASSED] 30 VFs
[07:06:36] [PASSED] 31 VFs
[07:06:36] [PASSED] 32 VFs
[07:06:36] [PASSED] 33 VFs
[07:06:36] [PASSED] 34 VFs
[07:06:36] [PASSED] 35 VFs
[07:06:36] [PASSED] 36 VFs
[07:06:36] [PASSED] 37 VFs
[07:06:36] [PASSED] 38 VFs
[07:06:36] [PASSED] 39 VFs
[07:06:36] [PASSED] 40 VFs
[07:06:36] [PASSED] 41 VFs
[07:06:36] [PASSED] 42 VFs
[07:06:36] [PASSED] 43 VFs
[07:06:36] [PASSED] 44 VFs
[07:06:36] [PASSED] 45 VFs
[07:06:36] [PASSED] 46 VFs
[07:06:36] [PASSED] 47 VFs
[07:06:36] [PASSED] 48 VFs
[07:06:36] [PASSED] 49 VFs
[07:06:36] [PASSED] 50 VFs
[07:06:36] [PASSED] 51 VFs
[07:06:36] [PASSED] 52 VFs
[07:06:36] [PASSED] 53 VFs
[07:06:36] [PASSED] 54 VFs
[07:06:36] [PASSED] 55 VFs
[07:06:36] [PASSED] 56 VFs
[07:06:36] [PASSED] 57 VFs
[07:06:36] [PASSED] 58 VFs
[07:06:36] [PASSED] 59 VFs
[07:06:36] [PASSED] 60 VFs
[07:06:36] [PASSED] 61 VFs
[07:06:36] [PASSED] 62 VFs
[07:06:36] [PASSED] 63 VFs
[07:06:36] ==================== [PASSED] fair_vram ====================
[07:06:36] ================== [PASSED] pf_gt_config ===================
[07:06:36] ===================== lmtt (1 subtest) =====================
[07:06:36] ======================== test_ops  =========================
[07:06:36] [PASSED] 2-level
[07:06:36] [PASSED] multi-level
[07:06:36] ==================== [PASSED] test_ops =====================
[07:06:36] ====================== [PASSED] lmtt =======================
[07:06:36] ================= pf_service (11 subtests) =================
[07:06:36] [PASSED] pf_negotiate_any
[07:06:36] [PASSED] pf_negotiate_base_match
[07:06:36] [PASSED] pf_negotiate_base_newer
[07:06:36] [PASSED] pf_negotiate_base_next
[07:06:36] [SKIPPED] pf_negotiate_base_older
[07:06:36] [PASSED] pf_negotiate_base_prev
[07:06:36] [PASSED] pf_negotiate_latest_match
[07:06:36] [PASSED] pf_negotiate_latest_newer
[07:06:36] [PASSED] pf_negotiate_latest_next
[07:06:36] [SKIPPED] pf_negotiate_latest_older
[07:06:36] [SKIPPED] pf_negotiate_latest_prev
[07:06:36] =================== [PASSED] pf_service ====================
[07:06:36] ================= xe_guc_g2g (2 subtests) ==================
[07:06:36] ============== xe_live_guc_g2g_kunit_default  ==============
[07:06:36] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[07:06:36] ============== xe_live_guc_g2g_kunit_allmem  ===============
[07:06:36] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[07:06:36] =================== [SKIPPED] xe_guc_g2g ===================
[07:06:36] =================== xe_mocs (2 subtests) ===================
[07:06:36] ================ xe_live_mocs_kernel_kunit  ================
[07:06:36] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[07:06:36] ================ xe_live_mocs_reset_kunit  =================
[07:06:36] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[07:06:36] ==================== [SKIPPED] xe_mocs =====================
[07:06:36] ================= xe_migrate (2 subtests) ==================
[07:06:36] ================= xe_migrate_sanity_kunit  =================
[07:06:36] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[07:06:36] ================== xe_validate_ccs_kunit  ==================
[07:06:36] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[07:06:36] =================== [SKIPPED] xe_migrate ===================
[07:06:36] ================== xe_dma_buf (1 subtest) ==================
[07:06:36] ==================== xe_dma_buf_kunit  =====================
[07:06:36] ================ [SKIPPED] xe_dma_buf_kunit ================
[07:06:36] =================== [SKIPPED] xe_dma_buf ===================
[07:06:36] ================= xe_bo_shrink (1 subtest) =================
[07:06:36] =================== xe_bo_shrink_kunit  ====================
[07:06:36] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[07:06:36] ================== [SKIPPED] xe_bo_shrink ==================
[07:06:36] ==================== xe_bo (2 subtests) ====================
[07:06:36] ================== xe_ccs_migrate_kunit  ===================
[07:06:36] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[07:06:36] ==================== xe_bo_evict_kunit  ====================
[07:06:36] =============== [SKIPPED] xe_bo_evict_kunit ================
[07:06:36] ===================== [SKIPPED] xe_bo ======================
[07:06:36] ==================== args (13 subtests) ====================
[07:06:36] [PASSED] count_args_test
[07:06:36] [PASSED] call_args_example
[07:06:36] [PASSED] call_args_test
[07:06:36] [PASSED] drop_first_arg_example
[07:06:36] [PASSED] drop_first_arg_test
[07:06:36] [PASSED] first_arg_example
[07:06:36] [PASSED] first_arg_test
[07:06:36] [PASSED] last_arg_example
[07:06:36] [PASSED] last_arg_test
[07:06:36] [PASSED] pick_arg_example
[07:06:36] [PASSED] if_args_example
[07:06:36] [PASSED] if_args_test
[07:06:36] [PASSED] sep_comma_example
[07:06:36] ====================== [PASSED] args =======================
[07:06:36] =================== xe_pci (3 subtests) ====================
[07:06:36] ==================== check_graphics_ip  ====================
[07:06:36] [PASSED] 12.00 Xe_LP
[07:06:36] [PASSED] 12.10 Xe_LP+
[07:06:36] [PASSED] 12.55 Xe_HPG
[07:06:36] [PASSED] 12.60 Xe_HPC
[07:06:36] [PASSED] 12.70 Xe_LPG
[07:06:36] [PASSED] 12.71 Xe_LPG
[07:06:36] [PASSED] 12.74 Xe_LPG+
[07:06:36] [PASSED] 20.01 Xe2_HPG
[07:06:36] [PASSED] 20.02 Xe2_HPG
[07:06:36] [PASSED] 20.04 Xe2_LPG
[07:06:36] [PASSED] 30.00 Xe3_LPG
[07:06:36] [PASSED] 30.01 Xe3_LPG
[07:06:36] [PASSED] 30.03 Xe3_LPG
[07:06:36] [PASSED] 30.04 Xe3_LPG
[07:06:36] [PASSED] 30.05 Xe3_LPG
[07:06:36] [PASSED] 35.10 Xe3p_LPG
[07:06:36] [PASSED] 35.11 Xe3p_XPC
[07:06:36] ================ [PASSED] check_graphics_ip ================
[07:06:36] ===================== check_media_ip  ======================
[07:06:36] [PASSED] 12.00 Xe_M
[07:06:36] [PASSED] 12.55 Xe_HPM
[07:06:36] [PASSED] 13.00 Xe_LPM+
[07:06:36] [PASSED] 13.01 Xe2_HPM
[07:06:36] [PASSED] 20.00 Xe2_LPM
[07:06:36] [PASSED] 30.00 Xe3_LPM
[07:06:36] [PASSED] 30.02 Xe3_LPM
[07:06:36] [PASSED] 35.00 Xe3p_LPM
[07:06:36] [PASSED] 35.03 Xe3p_HPM
[07:06:36] ================= [PASSED] check_media_ip ==================
[07:06:36] =================== check_platform_desc  ===================
[07:06:36] [PASSED] 0x9A60 (TIGERLAKE)
[07:06:36] [PASSED] 0x9A68 (TIGERLAKE)
[07:06:36] [PASSED] 0x9A70 (TIGERLAKE)
[07:06:36] [PASSED] 0x9A40 (TIGERLAKE)
[07:06:36] [PASSED] 0x9A49 (TIGERLAKE)
[07:06:36] [PASSED] 0x9A59 (TIGERLAKE)
[07:06:36] [PASSED] 0x9A78 (TIGERLAKE)
[07:06:36] [PASSED] 0x9AC0 (TIGERLAKE)
[07:06:36] [PASSED] 0x9AC9 (TIGERLAKE)
[07:06:36] [PASSED] 0x9AD9 (TIGERLAKE)
[07:06:36] [PASSED] 0x9AF8 (TIGERLAKE)
[07:06:36] [PASSED] 0x4C80 (ROCKETLAKE)
[07:06:36] [PASSED] 0x4C8A (ROCKETLAKE)
[07:06:36] [PASSED] 0x4C8B (ROCKETLAKE)
[07:06:36] [PASSED] 0x4C8C (ROCKETLAKE)
[07:06:36] [PASSED] 0x4C90 (ROCKETLAKE)
[07:06:36] [PASSED] 0x4C9A (ROCKETLAKE)
[07:06:36] [PASSED] 0x4680 (ALDERLAKE_S)
[07:06:36] [PASSED] 0x4682 (ALDERLAKE_S)
[07:06:36] [PASSED] 0x4688 (ALDERLAKE_S)
[07:06:36] [PASSED] 0x468A (ALDERLAKE_S)
[07:06:36] [PASSED] 0x468B (ALDERLAKE_S)
[07:06:36] [PASSED] 0x4690 (ALDERLAKE_S)
[07:06:36] [PASSED] 0x4692 (ALDERLAKE_S)
[07:06:36] [PASSED] 0x4693 (ALDERLAKE_S)
[07:06:36] [PASSED] 0x46A0 (ALDERLAKE_P)
[07:06:36] [PASSED] 0x46A1 (ALDERLAKE_P)
[07:06:36] [PASSED] 0x46A2 (ALDERLAKE_P)
[07:06:36] [PASSED] 0x46A3 (ALDERLAKE_P)
[07:06:36] [PASSED] 0x46A6 (ALDERLAKE_P)
[07:06:36] [PASSED] 0x46A8 (ALDERLAKE_P)
[07:06:36] [PASSED] 0x46AA (ALDERLAKE_P)
[07:06:36] [PASSED] 0x462A (ALDERLAKE_P)
[07:06:36] [PASSED] 0x4626 (ALDERLAKE_P)
[07:06:36] [PASSED] 0x4628 (ALDERLAKE_P)
[07:06:36] [PASSED] 0x46B0 (ALDERLAKE_P)
[07:06:36] [PASSED] 0x46B1 (ALDERLAKE_P)
[07:06:36] [PASSED] 0x46B2 (ALDERLAKE_P)
[07:06:36] [PASSED] 0x46B3 (ALDERLAKE_P)
[07:06:36] [PASSED] 0x46C0 (ALDERLAKE_P)
[07:06:36] [PASSED] 0x46C1 (ALDERLAKE_P)
[07:06:36] [PASSED] 0x46C2 (ALDERLAKE_P)
[07:06:36] [PASSED] 0x46C3 (ALDERLAKE_P)
[07:06:36] [PASSED] 0x46D0 (ALDERLAKE_N)
[07:06:36] [PASSED] 0x46D1 (ALDERLAKE_N)
[07:06:36] [PASSED] 0x46D2 (ALDERLAKE_N)
[07:06:36] [PASSED] 0x46D3 (ALDERLAKE_N)
[07:06:36] [PASSED] 0x46D4 (ALDERLAKE_N)
[07:06:36] [PASSED] 0xA721 (ALDERLAKE_P)
[07:06:36] [PASSED] 0xA7A1 (ALDERLAKE_P)
[07:06:36] [PASSED] 0xA7A9 (ALDERLAKE_P)
[07:06:36] [PASSED] 0xA7AC (ALDERLAKE_P)
[07:06:36] [PASSED] 0xA7AD (ALDERLAKE_P)
[07:06:36] [PASSED] 0xA720 (ALDERLAKE_P)
[07:06:36] [PASSED] 0xA7A0 (ALDERLAKE_P)
[07:06:36] [PASSED] 0xA7A8 (ALDERLAKE_P)
[07:06:36] [PASSED] 0xA7AA (ALDERLAKE_P)
[07:06:36] [PASSED] 0xA7AB (ALDERLAKE_P)
[07:06:36] [PASSED] 0xA780 (ALDERLAKE_S)
[07:06:36] [PASSED] 0xA781 (ALDERLAKE_S)
[07:06:36] [PASSED] 0xA782 (ALDERLAKE_S)
[07:06:36] [PASSED] 0xA783 (ALDERLAKE_S)
[07:06:36] [PASSED] 0xA788 (ALDERLAKE_S)
[07:06:36] [PASSED] 0xA789 (ALDERLAKE_S)
[07:06:36] [PASSED] 0xA78A (ALDERLAKE_S)
[07:06:36] [PASSED] 0xA78B (ALDERLAKE_S)
[07:06:36] [PASSED] 0x4905 (DG1)
[07:06:36] [PASSED] 0x4906 (DG1)
[07:06:36] [PASSED] 0x4907 (DG1)
[07:06:36] [PASSED] 0x4908 (DG1)
[07:06:36] [PASSED] 0x4909 (DG1)
[07:06:36] [PASSED] 0x56C0 (DG2)
[07:06:36] [PASSED] 0x56C2 (DG2)
[07:06:36] [PASSED] 0x56C1 (DG2)
[07:06:36] [PASSED] 0x7D51 (METEORLAKE)
[07:06:36] [PASSED] 0x7DD1 (METEORLAKE)
[07:06:36] [PASSED] 0x7D41 (METEORLAKE)
[07:06:36] [PASSED] 0x7D67 (METEORLAKE)
[07:06:36] [PASSED] 0xB640 (METEORLAKE)
[07:06:36] [PASSED] 0x56A0 (DG2)
[07:06:36] [PASSED] 0x56A1 (DG2)
[07:06:36] [PASSED] 0x56A2 (DG2)
[07:06:36] [PASSED] 0x56BE (DG2)
[07:06:36] [PASSED] 0x56BF (DG2)
[07:06:36] [PASSED] 0x5690 (DG2)
[07:06:36] [PASSED] 0x5691 (DG2)
[07:06:36] [PASSED] 0x5692 (DG2)
[07:06:36] [PASSED] 0x56A5 (DG2)
[07:06:36] [PASSED] 0x56A6 (DG2)
[07:06:36] [PASSED] 0x56B0 (DG2)
[07:06:36] [PASSED] 0x56B1 (DG2)
[07:06:36] [PASSED] 0x56BA (DG2)
[07:06:36] [PASSED] 0x56BB (DG2)
[07:06:36] [PASSED] 0x56BC (DG2)
[07:06:36] [PASSED] 0x56BD (DG2)
[07:06:36] [PASSED] 0x5693 (DG2)
[07:06:36] [PASSED] 0x5694 (DG2)
[07:06:36] [PASSED] 0x5695 (DG2)
[07:06:36] [PASSED] 0x56A3 (DG2)
[07:06:36] [PASSED] 0x56A4 (DG2)
[07:06:36] [PASSED] 0x56B2 (DG2)
[07:06:36] [PASSED] 0x56B3 (DG2)
[07:06:36] [PASSED] 0x5696 (DG2)
[07:06:36] [PASSED] 0x5697 (DG2)
[07:06:36] [PASSED] 0xB69 (PVC)
[07:06:36] [PASSED] 0xB6E (PVC)
[07:06:36] [PASSED] 0xBD4 (PVC)
[07:06:36] [PASSED] 0xBD5 (PVC)
[07:06:36] [PASSED] 0xBD6 (PVC)
[07:06:36] [PASSED] 0xBD7 (PVC)
[07:06:36] [PASSED] 0xBD8 (PVC)
[07:06:36] [PASSED] 0xBD9 (PVC)
[07:06:36] [PASSED] 0xBDA (PVC)
[07:06:36] [PASSED] 0xBDB (PVC)
[07:06:36] [PASSED] 0xBE0 (PVC)
[07:06:36] [PASSED] 0xBE1 (PVC)
[07:06:36] [PASSED] 0xBE5 (PVC)
[07:06:36] [PASSED] 0x7D40 (METEORLAKE)
[07:06:36] [PASSED] 0x7D45 (METEORLAKE)
[07:06:36] [PASSED] 0x7D55 (METEORLAKE)
[07:06:36] [PASSED] 0x7D60 (METEORLAKE)
[07:06:36] [PASSED] 0x7DD5 (METEORLAKE)
[07:06:36] [PASSED] 0x6420 (LUNARLAKE)
[07:06:36] [PASSED] 0x64A0 (LUNARLAKE)
[07:06:36] [PASSED] 0x64B0 (LUNARLAKE)
[07:06:36] [PASSED] 0xE202 (BATTLEMAGE)
[07:06:36] [PASSED] 0xE209 (BATTLEMAGE)
[07:06:36] [PASSED] 0xE20B (BATTLEMAGE)
[07:06:36] [PASSED] 0xE20C (BATTLEMAGE)
[07:06:36] [PASSED] 0xE20D (BATTLEMAGE)
[07:06:36] [PASSED] 0xE210 (BATTLEMAGE)
[07:06:36] [PASSED] 0xE211 (BATTLEMAGE)
[07:06:36] [PASSED] 0xE212 (BATTLEMAGE)
[07:06:36] [PASSED] 0xE216 (BATTLEMAGE)
[07:06:36] [PASSED] 0xE220 (BATTLEMAGE)
[07:06:36] [PASSED] 0xE221 (BATTLEMAGE)
[07:06:36] [PASSED] 0xE222 (BATTLEMAGE)
[07:06:36] [PASSED] 0xE223 (BATTLEMAGE)
[07:06:36] [PASSED] 0xB080 (PANTHERLAKE)
[07:06:36] [PASSED] 0xB081 (PANTHERLAKE)
[07:06:36] [PASSED] 0xB082 (PANTHERLAKE)
[07:06:36] [PASSED] 0xB083 (PANTHERLAKE)
[07:06:36] [PASSED] 0xB084 (PANTHERLAKE)
[07:06:36] [PASSED] 0xB085 (PANTHERLAKE)
[07:06:36] [PASSED] 0xB086 (PANTHERLAKE)
[07:06:36] [PASSED] 0xB087 (PANTHERLAKE)
[07:06:36] [PASSED] 0xB08F (PANTHERLAKE)
[07:06:36] [PASSED] 0xB090 (PANTHERLAKE)
[07:06:36] [PASSED] 0xB0A0 (PANTHERLAKE)
[07:06:36] [PASSED] 0xB0B0 (PANTHERLAKE)
[07:06:36] [PASSED] 0xFD80 (PANTHERLAKE)
[07:06:36] [PASSED] 0xFD81 (PANTHERLAKE)
[07:06:36] [PASSED] 0xD740 (NOVALAKE_S)
[07:06:36] [PASSED] 0xD741 (NOVALAKE_S)
[07:06:36] [PASSED] 0xD742 (NOVALAKE_S)
[07:06:36] [PASSED] 0xD743 (NOVALAKE_S)
[07:06:36] [PASSED] 0xD744 (NOVALAKE_S)
[07:06:36] [PASSED] 0xD745 (NOVALAKE_S)
[07:06:36] [PASSED] 0x674C (CRESCENTISLAND)
[07:06:36] [PASSED] 0x674D (CRESCENTISLAND)
[07:06:36] [PASSED] 0x674E (CRESCENTISLAND)
[07:06:36] [PASSED] 0x674F (CRESCENTISLAND)
[07:06:36] [PASSED] 0x6750 (CRESCENTISLAND)
[07:06:36] [PASSED] 0xD750 (NOVALAKE_P)
[07:06:36] [PASSED] 0xD751 (NOVALAKE_P)
[07:06:36] [PASSED] 0xD752 (NOVALAKE_P)
[07:06:36] [PASSED] 0xD753 (NOVALAKE_P)
[07:06:36] [PASSED] 0xD754 (NOVALAKE_P)
[07:06:36] [PASSED] 0xD755 (NOVALAKE_P)
[07:06:36] [PASSED] 0xD756 (NOVALAKE_P)
[07:06:36] [PASSED] 0xD757 (NOVALAKE_P)
[07:06:36] [PASSED] 0xD75F (NOVALAKE_P)
[07:06:36] =============== [PASSED] check_platform_desc ===============
[07:06:36] ===================== [PASSED] xe_pci ======================
[07:06:36] =================== xe_rtp (3 subtests) ====================
[07:06:36] =================== xe_rtp_rules_tests  ====================
[07:06:36] [PASSED] no
[07:06:36] [PASSED] yes
[07:06:36] [PASSED] no-and-no
[07:06:36] [PASSED] no-and-yes
[07:06:36] [PASSED] yes-and-no
[07:06:36] [PASSED] yes-and-yes
[07:06:36] [PASSED] no-or-no
[07:06:36] [PASSED] no-or-yes
[07:06:36] [PASSED] yes-or-no
[07:06:36] [PASSED] yes-or-yes
[07:06:36] [PASSED] no-yes-or-yes-no
[07:06:36] [PASSED] no-yes-or-yes-yes
[07:06:36] [PASSED] yes-yes-or-no-yes
[07:06:36] [PASSED] yes-yes-or-yes-yes
[07:06:36] [PASSED] no-no-or-yes-or-no
[07:06:36] [PASSED] or
[07:06:36] [PASSED] or-yes
[07:06:36] [PASSED] or-no
[07:06:36] [PASSED] yes-or
[07:06:36] [PASSED] no-or
[07:06:36] [PASSED] no-or-or-yes
[07:06:36] [PASSED] yes-or-or-no
[07:06:36] [PASSED] no-or-or-no
[07:06:36] [PASSED] missing-context-engine-class
[07:06:36] [PASSED] missing-context-engine-class-or-yes
[07:06:36] [PASSED] missing-context-engine-class-or-or-yes
[07:06:36] =============== [PASSED] xe_rtp_rules_tests ================
[07:06:36] =============== xe_rtp_process_to_sr_tests  ================
[07:06:36] [PASSED] coalesce-same-reg
[07:06:36] [PASSED] no-match-no-add
[07:06:36] [PASSED] two-regs-two-entries
[07:06:36] [PASSED] clr-one-set-other
[07:06:36] [PASSED] set-field
[07:06:36] [PASSED] conflict-duplicate
[07:06:36] [PASSED] conflict-not-disjoint
[07:06:36] [PASSED] conflict-reg-type
[07:06:36] [PASSED] bad-mcr-reg-forced-to-regular
[07:06:36] [PASSED] bad-regular-reg-forced-to-mcr
[07:06:36] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[07:06:36] ================== xe_rtp_process_tests  ===================
[07:06:36] [PASSED] active1
[07:06:36] [PASSED] active2
[07:06:36] [PASSED] active-inactive
[07:06:36] [PASSED] inactive-active
[07:06:36] [PASSED] inactive-active-inactive
[07:06:36] [PASSED] inactive-inactive-inactive
[07:06:36] ============== [PASSED] xe_rtp_process_tests ===============
[07:06:36] ===================== [PASSED] xe_rtp ======================
[07:06:36] ==================== xe_wa (1 subtest) =====================
[07:06:36] ======================== xe_wa_gt  =========================
[07:06:36] [PASSED] TIGERLAKE B0
[07:06:36] [PASSED] DG1 A0
[07:06:36] [PASSED] DG1 B0
[07:06:36] [PASSED] ALDERLAKE_S A0
[07:06:36] [PASSED] ALDERLAKE_S B0
[07:06:36] [PASSED] ALDERLAKE_S C0
[07:06:36] [PASSED] ALDERLAKE_S D0
[07:06:36] [PASSED] ALDERLAKE_P A0
[07:06:36] [PASSED] ALDERLAKE_P B0
[07:06:36] [PASSED] ALDERLAKE_P C0
[07:06:36] [PASSED] ALDERLAKE_S RPLS D0
[07:06:36] [PASSED] ALDERLAKE_P RPLU E0
[07:06:36] [PASSED] DG2 G10 C0
[07:06:36] [PASSED] DG2 G11 B1
[07:06:36] [PASSED] DG2 G12 A1
[07:06:36] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[07:06:36] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[07:06:36] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[07:06:37] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[07:06:37] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[07:06:37] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[07:06:37] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[07:06:37] ==================== [PASSED] xe_wa_gt =====================
[07:06:37] ====================== [PASSED] xe_wa ======================
[07:06:37] ============================================================
[07:06:37] Testing complete. Ran 624 tests: passed: 606, skipped: 18
[07:06:37] Elapsed time: 36.230s total, 4.350s configuring, 31.214s building, 0.628s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[07:06:37] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[07:06:38] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[07:07:03] Starting KUnit Kernel (1/1)...
[07:07:03] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[07:07:03] ============ drm_test_pick_cmdline (2 subtests) ============
[07:07:03] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[07:07:03] =============== drm_test_pick_cmdline_named  ===============
[07:07:03] [PASSED] NTSC
[07:07:03] [PASSED] NTSC-J
[07:07:03] [PASSED] PAL
[07:07:03] [PASSED] PAL-M
[07:07:03] =========== [PASSED] drm_test_pick_cmdline_named ===========
[07:07:03] ============== [PASSED] drm_test_pick_cmdline ==============
[07:07:03] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[07:07:03] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[07:07:03] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[07:07:03] =========== drm_validate_clone_mode (2 subtests) ===========
[07:07:03] ============== drm_test_check_in_clone_mode  ===============
[07:07:03] [PASSED] in_clone_mode
[07:07:03] [PASSED] not_in_clone_mode
[07:07:03] ========== [PASSED] drm_test_check_in_clone_mode ===========
[07:07:03] =============== drm_test_check_valid_clones  ===============
[07:07:03] [PASSED] not_in_clone_mode
[07:07:03] [PASSED] valid_clone
[07:07:03] [PASSED] invalid_clone
[07:07:03] =========== [PASSED] drm_test_check_valid_clones ===========
[07:07:03] ============= [PASSED] drm_validate_clone_mode =============
[07:07:03] ============= drm_validate_modeset (1 subtest) =============
[07:07:03] [PASSED] drm_test_check_connector_changed_modeset
[07:07:03] ============== [PASSED] drm_validate_modeset ===============
[07:07:03] ====== drm_test_bridge_get_current_state (2 subtests) ======
[07:07:03] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[07:07:03] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[07:07:03] ======== [PASSED] drm_test_bridge_get_current_state ========
[07:07:03] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[07:07:03] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[07:07:03] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[07:07:03] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[07:07:03] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[07:07:03] ============== drm_bridge_alloc (2 subtests) ===============
[07:07:03] [PASSED] drm_test_drm_bridge_alloc_basic
[07:07:03] [PASSED] drm_test_drm_bridge_alloc_get_put
[07:07:03] ================ [PASSED] drm_bridge_alloc =================
[07:07:03] ============= drm_cmdline_parser (40 subtests) =============
[07:07:03] [PASSED] drm_test_cmdline_force_d_only
[07:07:03] [PASSED] drm_test_cmdline_force_D_only_dvi
[07:07:03] [PASSED] drm_test_cmdline_force_D_only_hdmi
[07:07:03] [PASSED] drm_test_cmdline_force_D_only_not_digital
[07:07:03] [PASSED] drm_test_cmdline_force_e_only
[07:07:03] [PASSED] drm_test_cmdline_res
[07:07:03] [PASSED] drm_test_cmdline_res_vesa
[07:07:03] [PASSED] drm_test_cmdline_res_vesa_rblank
[07:07:03] [PASSED] drm_test_cmdline_res_rblank
[07:07:03] [PASSED] drm_test_cmdline_res_bpp
[07:07:03] [PASSED] drm_test_cmdline_res_refresh
[07:07:03] [PASSED] drm_test_cmdline_res_bpp_refresh
[07:07:03] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[07:07:03] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[07:07:03] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[07:07:03] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[07:07:03] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[07:07:03] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[07:07:03] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[07:07:03] [PASSED] drm_test_cmdline_res_margins_force_on
[07:07:03] [PASSED] drm_test_cmdline_res_vesa_margins
[07:07:03] [PASSED] drm_test_cmdline_name
[07:07:03] [PASSED] drm_test_cmdline_name_bpp
[07:07:03] [PASSED] drm_test_cmdline_name_option
[07:07:03] [PASSED] drm_test_cmdline_name_bpp_option
[07:07:03] [PASSED] drm_test_cmdline_rotate_0
[07:07:03] [PASSED] drm_test_cmdline_rotate_90
[07:07:03] [PASSED] drm_test_cmdline_rotate_180
[07:07:03] [PASSED] drm_test_cmdline_rotate_270
[07:07:03] [PASSED] drm_test_cmdline_hmirror
[07:07:03] [PASSED] drm_test_cmdline_vmirror
[07:07:03] [PASSED] drm_test_cmdline_margin_options
[07:07:03] [PASSED] drm_test_cmdline_multiple_options
[07:07:03] [PASSED] drm_test_cmdline_bpp_extra_and_option
[07:07:03] [PASSED] drm_test_cmdline_extra_and_option
[07:07:03] [PASSED] drm_test_cmdline_freestanding_options
[07:07:03] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[07:07:03] [PASSED] drm_test_cmdline_panel_orientation
[07:07:03] ================ drm_test_cmdline_invalid  =================
[07:07:03] [PASSED] margin_only
[07:07:03] [PASSED] interlace_only
[07:07:03] [PASSED] res_missing_x
[07:07:03] [PASSED] res_missing_y
[07:07:03] [PASSED] res_bad_y
[07:07:03] [PASSED] res_missing_y_bpp
[07:07:03] [PASSED] res_bad_bpp
[07:07:03] [PASSED] res_bad_refresh
[07:07:03] [PASSED] res_bpp_refresh_force_on_off
[07:07:03] [PASSED] res_invalid_mode
[07:07:03] [PASSED] res_bpp_wrong_place_mode
[07:07:03] [PASSED] name_bpp_refresh
[07:07:03] [PASSED] name_refresh
[07:07:03] [PASSED] name_refresh_wrong_mode
[07:07:03] [PASSED] name_refresh_invalid_mode
[07:07:03] [PASSED] rotate_multiple
[07:07:03] [PASSED] rotate_invalid_val
[07:07:03] [PASSED] rotate_truncated
[07:07:03] [PASSED] invalid_option
[07:07:03] [PASSED] invalid_tv_option
[07:07:03] [PASSED] truncated_tv_option
[07:07:03] ============ [PASSED] drm_test_cmdline_invalid =============
[07:07:03] =============== drm_test_cmdline_tv_options  ===============
[07:07:03] [PASSED] NTSC
[07:07:03] [PASSED] NTSC_443
[07:07:03] [PASSED] NTSC_J
[07:07:03] [PASSED] PAL
[07:07:03] [PASSED] PAL_M
[07:07:03] [PASSED] PAL_N
[07:07:03] [PASSED] SECAM
[07:07:03] [PASSED] MONO_525
[07:07:03] [PASSED] MONO_625
[07:07:03] =========== [PASSED] drm_test_cmdline_tv_options ===========
[07:07:03] =============== [PASSED] drm_cmdline_parser ================
[07:07:03] ========== drmm_connector_hdmi_init (20 subtests) ==========
[07:07:03] [PASSED] drm_test_connector_hdmi_init_valid
[07:07:03] [PASSED] drm_test_connector_hdmi_init_bpc_8
[07:07:03] [PASSED] drm_test_connector_hdmi_init_bpc_10
[07:07:03] [PASSED] drm_test_connector_hdmi_init_bpc_12
[07:07:03] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[07:07:03] [PASSED] drm_test_connector_hdmi_init_bpc_null
[07:07:03] [PASSED] drm_test_connector_hdmi_init_formats_empty
[07:07:03] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[07:07:03] === drm_test_connector_hdmi_init_formats_yuv420_allowed  ===
[07:07:03] [PASSED] supported_formats=0x9 yuv420_allowed=1
[07:07:03] [PASSED] supported_formats=0x9 yuv420_allowed=0
[07:07:03] [PASSED] supported_formats=0x5 yuv420_allowed=1
[07:07:03] [PASSED] supported_formats=0x5 yuv420_allowed=0
[07:07:03] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[07:07:03] [PASSED] drm_test_connector_hdmi_init_null_ddc
[07:07:03] [PASSED] drm_test_connector_hdmi_init_null_product
[07:07:03] [PASSED] drm_test_connector_hdmi_init_null_vendor
[07:07:03] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[07:07:03] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[07:07:03] [PASSED] drm_test_connector_hdmi_init_product_valid
[07:07:03] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[07:07:03] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[07:07:03] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[07:07:03] ========= drm_test_connector_hdmi_init_type_valid  =========
[07:07:03] [PASSED] HDMI-A
[07:07:03] [PASSED] HDMI-B
[07:07:03] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[07:07:03] ======== drm_test_connector_hdmi_init_type_invalid  ========
[07:07:03] [PASSED] Unknown
[07:07:03] [PASSED] VGA
[07:07:03] [PASSED] DVI-I
[07:07:03] [PASSED] DVI-D
[07:07:03] [PASSED] DVI-A
[07:07:03] [PASSED] Composite
[07:07:03] [PASSED] SVIDEO
[07:07:03] [PASSED] LVDS
[07:07:03] [PASSED] Component
[07:07:03] [PASSED] DIN
[07:07:03] [PASSED] DP
[07:07:03] [PASSED] TV
[07:07:03] [PASSED] eDP
[07:07:03] [PASSED] Virtual
[07:07:03] [PASSED] DSI
[07:07:03] [PASSED] DPI
[07:07:03] [PASSED] Writeback
[07:07:03] [PASSED] SPI
[07:07:03] [PASSED] USB
[07:07:03] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[07:07:03] ============ [PASSED] drmm_connector_hdmi_init =============
[07:07:03] ============= drmm_connector_init (3 subtests) =============
[07:07:03] [PASSED] drm_test_drmm_connector_init
[07:07:03] [PASSED] drm_test_drmm_connector_init_null_ddc
[07:07:03] ========= drm_test_drmm_connector_init_type_valid  =========
[07:07:03] [PASSED] Unknown
[07:07:03] [PASSED] VGA
[07:07:03] [PASSED] DVI-I
[07:07:03] [PASSED] DVI-D
[07:07:03] [PASSED] DVI-A
[07:07:03] [PASSED] Composite
[07:07:03] [PASSED] SVIDEO
[07:07:03] [PASSED] LVDS
[07:07:03] [PASSED] Component
[07:07:03] [PASSED] DIN
[07:07:03] [PASSED] DP
[07:07:03] [PASSED] HDMI-A
[07:07:03] [PASSED] HDMI-B
[07:07:03] [PASSED] TV
[07:07:03] [PASSED] eDP
[07:07:03] [PASSED] Virtual
[07:07:03] [PASSED] DSI
[07:07:03] [PASSED] DPI
[07:07:03] [PASSED] Writeback
[07:07:03] [PASSED] SPI
[07:07:03] [PASSED] USB
[07:07:03] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[07:07:03] =============== [PASSED] drmm_connector_init ===============
[07:07:03] ========= drm_connector_dynamic_init (6 subtests) ==========
[07:07:03] [PASSED] drm_test_drm_connector_dynamic_init
[07:07:03] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[07:07:03] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[07:07:03] [PASSED] drm_test_drm_connector_dynamic_init_properties
[07:07:03] ===== drm_test_drm_connector_dynamic_init_type_valid  ======
[07:07:03] [PASSED] Unknown
[07:07:03] [PASSED] VGA
[07:07:03] [PASSED] DVI-I
[07:07:03] [PASSED] DVI-D
[07:07:03] [PASSED] DVI-A
[07:07:03] [PASSED] Composite
[07:07:03] [PASSED] SVIDEO
[07:07:03] [PASSED] LVDS
[07:07:03] [PASSED] Component
[07:07:03] [PASSED] DIN
[07:07:03] [PASSED] DP
[07:07:03] [PASSED] HDMI-A
[07:07:03] [PASSED] HDMI-B
[07:07:03] [PASSED] TV
[07:07:03] [PASSED] eDP
[07:07:03] [PASSED] Virtual
[07:07:03] [PASSED] DSI
[07:07:03] [PASSED] DPI
[07:07:03] [PASSED] Writeback
[07:07:03] [PASSED] SPI
[07:07:03] [PASSED] USB
[07:07:03] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[07:07:03] ======== drm_test_drm_connector_dynamic_init_name  =========
[07:07:03] [PASSED] Unknown
[07:07:03] [PASSED] VGA
[07:07:03] [PASSED] DVI-I
[07:07:03] [PASSED] DVI-D
[07:07:03] [PASSED] DVI-A
[07:07:03] [PASSED] Composite
[07:07:03] [PASSED] SVIDEO
[07:07:03] [PASSED] LVDS
[07:07:03] [PASSED] Component
[07:07:03] [PASSED] DIN
[07:07:03] [PASSED] DP
[07:07:03] [PASSED] HDMI-A
[07:07:03] [PASSED] HDMI-B
[07:07:03] [PASSED] TV
[07:07:03] [PASSED] eDP
[07:07:03] [PASSED] Virtual
[07:07:03] [PASSED] DSI
[07:07:03] [PASSED] DPI
[07:07:03] [PASSED] Writeback
[07:07:03] [PASSED] SPI
[07:07:03] [PASSED] USB
[07:07:03] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[07:07:03] =========== [PASSED] drm_connector_dynamic_init ============
[07:07:03] ==== drm_connector_dynamic_register_early (4 subtests) =====
[07:07:03] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[07:07:03] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[07:07:03] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[07:07:03] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[07:07:03] ====== [PASSED] drm_connector_dynamic_register_early =======
[07:07:03] ======= drm_connector_dynamic_register (7 subtests) ========
[07:07:03] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[07:07:03] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[07:07:03] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[07:07:03] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[07:07:03] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[07:07:03] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[07:07:03] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[07:07:03] ========= [PASSED] drm_connector_dynamic_register ==========
[07:07:03] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[07:07:03] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[07:07:03] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[07:07:03] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[07:07:03] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[07:07:03] ========== drm_test_get_tv_mode_from_name_valid  ===========
[07:07:03] [PASSED] NTSC
[07:07:03] [PASSED] NTSC-443
[07:07:03] [PASSED] NTSC-J
[07:07:03] [PASSED] PAL
[07:07:03] [PASSED] PAL-M
[07:07:03] [PASSED] PAL-N
[07:07:03] [PASSED] SECAM
[07:07:03] [PASSED] Mono
[07:07:03] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[07:07:03] [PASSED] drm_test_get_tv_mode_from_name_truncated
[07:07:03] ============ [PASSED] drm_get_tv_mode_from_name ============
[07:07:03] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[07:07:03] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[07:07:03] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[07:07:03] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[07:07:03] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[07:07:03] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[07:07:03] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[07:07:03] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid  =
[07:07:03] [PASSED] VIC 96
[07:07:03] [PASSED] VIC 97
[07:07:03] [PASSED] VIC 101
[07:07:03] [PASSED] VIC 102
[07:07:03] [PASSED] VIC 106
[07:07:03] [PASSED] VIC 107
[07:07:03] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[07:07:03] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[07:07:03] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[07:07:03] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[07:07:03] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[07:07:03] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[07:07:03] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[07:07:03] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[07:07:03] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name  ====
[07:07:03] [PASSED] Automatic
[07:07:03] [PASSED] Full
[07:07:03] [PASSED] Limited 16:235
[07:07:03] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[07:07:03] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[07:07:03] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[07:07:03] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[07:07:03] === drm_test_drm_hdmi_connector_get_output_format_name  ====
[07:07:03] [PASSED] RGB
[07:07:03] [PASSED] YUV 4:2:0
[07:07:03] [PASSED] YUV 4:2:2
[07:07:03] [PASSED] YUV 4:4:4
[07:07:03] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[07:07:03] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[07:07:03] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[07:07:03] ============= drm_damage_helper (21 subtests) ==============
[07:07:03] [PASSED] drm_test_damage_iter_no_damage
[07:07:03] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[07:07:03] [PASSED] drm_test_damage_iter_no_damage_src_moved
[07:07:03] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[07:07:03] [PASSED] drm_test_damage_iter_no_damage_not_visible
[07:07:03] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[07:07:03] [PASSED] drm_test_damage_iter_no_damage_no_fb
[07:07:03] [PASSED] drm_test_damage_iter_simple_damage
[07:07:03] [PASSED] drm_test_damage_iter_single_damage
[07:07:03] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[07:07:03] [PASSED] drm_test_damage_iter_single_damage_outside_src
[07:07:03] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[07:07:03] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[07:07:03] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[07:07:03] [PASSED] drm_test_damage_iter_single_damage_src_moved
[07:07:03] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[07:07:03] [PASSED] drm_test_damage_iter_damage
[07:07:03] [PASSED] drm_test_damage_iter_damage_one_intersect
[07:07:03] [PASSED] drm_test_damage_iter_damage_one_outside
[07:07:03] [PASSED] drm_test_damage_iter_damage_src_moved
[07:07:03] [PASSED] drm_test_damage_iter_damage_not_visible
[07:07:03] ================ [PASSED] drm_damage_helper ================
[07:07:03] ============== drm_dp_mst_helper (3 subtests) ==============
[07:07:03] ============== drm_test_dp_mst_calc_pbn_mode  ==============
[07:07:03] [PASSED] Clock 154000 BPP 30 DSC disabled
[07:07:03] [PASSED] Clock 234000 BPP 30 DSC disabled
[07:07:03] [PASSED] Clock 297000 BPP 24 DSC disabled
[07:07:03] [PASSED] Clock 332880 BPP 24 DSC enabled
[07:07:03] [PASSED] Clock 324540 BPP 24 DSC enabled
[07:07:03] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[07:07:03] ============== drm_test_dp_mst_calc_pbn_div  ===============
[07:07:03] [PASSED] Link rate 2000000 lane count 4
[07:07:03] [PASSED] Link rate 2000000 lane count 2
[07:07:03] [PASSED] Link rate 2000000 lane count 1
[07:07:03] [PASSED] Link rate 1350000 lane count 4
[07:07:03] [PASSED] Link rate 1350000 lane count 2
[07:07:03] [PASSED] Link rate 1350000 lane count 1
[07:07:03] [PASSED] Link rate 1000000 lane count 4
[07:07:03] [PASSED] Link rate 1000000 lane count 2
[07:07:03] [PASSED] Link rate 1000000 lane count 1
[07:07:03] [PASSED] Link rate 810000 lane count 4
[07:07:03] [PASSED] Link rate 810000 lane count 2
[07:07:03] [PASSED] Link rate 810000 lane count 1
[07:07:03] [PASSED] Link rate 540000 lane count 4
[07:07:03] [PASSED] Link rate 540000 lane count 2
[07:07:03] [PASSED] Link rate 540000 lane count 1
[07:07:03] [PASSED] Link rate 270000 lane count 4
[07:07:03] [PASSED] Link rate 270000 lane count 2
[07:07:03] [PASSED] Link rate 270000 lane count 1
[07:07:03] [PASSED] Link rate 162000 lane count 4
[07:07:03] [PASSED] Link rate 162000 lane count 2
[07:07:03] [PASSED] Link rate 162000 lane count 1
[07:07:03] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[07:07:03] ========= drm_test_dp_mst_sideband_msg_req_decode  =========
[07:07:03] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[07:07:03] [PASSED] DP_POWER_UP_PHY with port number
[07:07:03] [PASSED] DP_POWER_DOWN_PHY with port number
[07:07:03] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[07:07:03] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[07:07:03] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[07:07:03] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[07:07:03] [PASSED] DP_QUERY_PAYLOAD with port number
[07:07:03] [PASSED] DP_QUERY_PAYLOAD with VCPI
[07:07:03] [PASSED] DP_REMOTE_DPCD_READ with port number
[07:07:03] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[07:07:03] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[07:07:03] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[07:07:03] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[07:07:03] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[07:07:03] [PASSED] DP_REMOTE_I2C_READ with port number
[07:07:03] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[07:07:03] [PASSED] DP_REMOTE_I2C_READ with transactions array
[07:07:03] [PASSED] DP_REMOTE_I2C_WRITE with port number
[07:07:03] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[07:07:03] [PASSED] DP_REMOTE_I2C_WRITE with data array
[07:07:03] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[07:07:03] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[07:07:03] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[07:07:03] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[07:07:03] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[07:07:03] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[07:07:03] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[07:07:03] ================ [PASSED] drm_dp_mst_helper ================
[07:07:03] ================== drm_exec (7 subtests) ===================
[07:07:03] [PASSED] sanitycheck
[07:07:03] [PASSED] test_lock
[07:07:03] [PASSED] test_lock_unlock
[07:07:03] [PASSED] test_duplicates
[07:07:03] [PASSED] test_prepare
[07:07:03] [PASSED] test_prepare_array
[07:07:03] [PASSED] test_multiple_loops
[07:07:03] ==================== [PASSED] drm_exec =====================
[07:07:03] =========== drm_format_helper_test (17 subtests) ===========
[07:07:03] ============== drm_test_fb_xrgb8888_to_gray8  ==============
[07:07:03] [PASSED] single_pixel_source_buffer
[07:07:03] [PASSED] single_pixel_clip_rectangle
[07:07:03] [PASSED] well_known_colors
[07:07:03] [PASSED] destination_pitch
[07:07:03] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[07:07:03] ============= drm_test_fb_xrgb8888_to_rgb332  ==============
[07:07:03] [PASSED] single_pixel_source_buffer
[07:07:03] [PASSED] single_pixel_clip_rectangle
[07:07:03] [PASSED] well_known_colors
[07:07:03] [PASSED] destination_pitch
[07:07:03] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[07:07:03] ============= drm_test_fb_xrgb8888_to_rgb565  ==============
[07:07:03] [PASSED] single_pixel_source_buffer
[07:07:03] [PASSED] single_pixel_clip_rectangle
[07:07:03] [PASSED] well_known_colors
[07:07:03] [PASSED] destination_pitch
[07:07:03] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[07:07:03] ============ drm_test_fb_xrgb8888_to_xrgb1555  =============
[07:07:03] [PASSED] single_pixel_source_buffer
[07:07:03] [PASSED] single_pixel_clip_rectangle
[07:07:03] [PASSED] well_known_colors
[07:07:03] [PASSED] destination_pitch
[07:07:03] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[07:07:03] ============ drm_test_fb_xrgb8888_to_argb1555  =============
[07:07:03] [PASSED] single_pixel_source_buffer
[07:07:03] [PASSED] single_pixel_clip_rectangle
[07:07:03] [PASSED] well_known_colors
[07:07:03] [PASSED] destination_pitch
[07:07:03] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[07:07:03] ============ drm_test_fb_xrgb8888_to_rgba5551  =============
[07:07:03] [PASSED] single_pixel_source_buffer
[07:07:03] [PASSED] single_pixel_clip_rectangle
[07:07:03] [PASSED] well_known_colors
[07:07:03] [PASSED] destination_pitch
[07:07:03] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[07:07:03] ============= drm_test_fb_xrgb8888_to_rgb888  ==============
[07:07:03] [PASSED] single_pixel_source_buffer
[07:07:03] [PASSED] single_pixel_clip_rectangle
[07:07:03] [PASSED] well_known_colors
[07:07:03] [PASSED] destination_pitch
[07:07:03] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[07:07:03] ============= drm_test_fb_xrgb8888_to_bgr888  ==============
[07:07:03] [PASSED] single_pixel_source_buffer
[07:07:03] [PASSED] single_pixel_clip_rectangle
[07:07:03] [PASSED] well_known_colors
[07:07:03] [PASSED] destination_pitch
[07:07:03] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[07:07:03] ============ drm_test_fb_xrgb8888_to_argb8888  =============
[07:07:03] [PASSED] single_pixel_source_buffer
[07:07:03] [PASSED] single_pixel_clip_rectangle
[07:07:03] [PASSED] well_known_colors
[07:07:03] [PASSED] destination_pitch
[07:07:03] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[07:07:03] =========== drm_test_fb_xrgb8888_to_xrgb2101010  ===========
[07:07:03] [PASSED] single_pixel_source_buffer
[07:07:03] [PASSED] single_pixel_clip_rectangle
[07:07:03] [PASSED] well_known_colors
[07:07:03] [PASSED] destination_pitch
[07:07:03] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[07:07:03] =========== drm_test_fb_xrgb8888_to_argb2101010  ===========
[07:07:03] [PASSED] single_pixel_source_buffer
[07:07:03] [PASSED] single_pixel_clip_rectangle
[07:07:03] [PASSED] well_known_colors
[07:07:03] [PASSED] destination_pitch
[07:07:03] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[07:07:03] ============== drm_test_fb_xrgb8888_to_mono  ===============
[07:07:03] [PASSED] single_pixel_source_buffer
[07:07:03] [PASSED] single_pixel_clip_rectangle
[07:07:03] [PASSED] well_known_colors
[07:07:03] [PASSED] destination_pitch
[07:07:03] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[07:07:03] ==================== drm_test_fb_swab  =====================
[07:07:03] [PASSED] single_pixel_source_buffer
[07:07:03] [PASSED] single_pixel_clip_rectangle
[07:07:03] [PASSED] well_known_colors
[07:07:03] [PASSED] destination_pitch
[07:07:03] ================ [PASSED] drm_test_fb_swab =================
[07:07:03] ============ drm_test_fb_xrgb8888_to_xbgr8888  =============
[07:07:03] [PASSED] single_pixel_source_buffer
[07:07:03] [PASSED] single_pixel_clip_rectangle
[07:07:03] [PASSED] well_known_colors
[07:07:03] [PASSED] destination_pitch
[07:07:03] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[07:07:03] ============ drm_test_fb_xrgb8888_to_abgr8888  =============
[07:07:03] [PASSED] single_pixel_source_buffer
[07:07:03] [PASSED] single_pixel_clip_rectangle
[07:07:03] [PASSED] well_known_colors
[07:07:03] [PASSED] destination_pitch
[07:07:03] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[07:07:03] ================= drm_test_fb_clip_offset  =================
[07:07:03] [PASSED] pass through
[07:07:03] [PASSED] horizontal offset
[07:07:03] [PASSED] vertical offset
[07:07:03] [PASSED] horizontal and vertical offset
[07:07:03] [PASSED] horizontal offset (custom pitch)
[07:07:03] [PASSED] vertical offset (custom pitch)
[07:07:03] [PASSED] horizontal and vertical offset (custom pitch)
[07:07:03] ============= [PASSED] drm_test_fb_clip_offset =============
[07:07:03] =================== drm_test_fb_memcpy  ====================
[07:07:03] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[07:07:03] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[07:07:03] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[07:07:03] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[07:07:03] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[07:07:03] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[07:07:03] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[07:07:03] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[07:07:03] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[07:07:03] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[07:07:03] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[07:07:03] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[07:07:03] =============== [PASSED] drm_test_fb_memcpy ================
[07:07:03] ============= [PASSED] drm_format_helper_test ==============
[07:07:03] ================= drm_format (18 subtests) =================
[07:07:03] [PASSED] drm_test_format_block_width_invalid
[07:07:03] [PASSED] drm_test_format_block_width_one_plane
[07:07:03] [PASSED] drm_test_format_block_width_two_plane
[07:07:03] [PASSED] drm_test_format_block_width_three_plane
[07:07:03] [PASSED] drm_test_format_block_width_tiled
[07:07:03] [PASSED] drm_test_format_block_height_invalid
[07:07:03] [PASSED] drm_test_format_block_height_one_plane
[07:07:03] [PASSED] drm_test_format_block_height_two_plane
[07:07:03] [PASSED] drm_test_format_block_height_three_plane
[07:07:03] [PASSED] drm_test_format_block_height_tiled
[07:07:03] [PASSED] drm_test_format_min_pitch_invalid
[07:07:03] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[07:07:03] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[07:07:03] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[07:07:03] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[07:07:03] [PASSED] drm_test_format_min_pitch_two_plane
[07:07:03] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[07:07:03] [PASSED] drm_test_format_min_pitch_tiled
[07:07:03] =================== [PASSED] drm_format ====================
[07:07:03] ============== drm_framebuffer (10 subtests) ===============
[07:07:03] ========== drm_test_framebuffer_check_src_coords  ==========
[07:07:03] [PASSED] Success: source fits into fb
[07:07:03] [PASSED] Fail: overflowing fb with x-axis coordinate
[07:07:03] [PASSED] Fail: overflowing fb with y-axis coordinate
[07:07:03] [PASSED] Fail: overflowing fb with source width
[07:07:03] [PASSED] Fail: overflowing fb with source height
[07:07:03] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[07:07:03] [PASSED] drm_test_framebuffer_cleanup
[07:07:03] =============== drm_test_framebuffer_create  ===============
[07:07:03] [PASSED] ABGR8888 normal sizes
[07:07:03] [PASSED] ABGR8888 max sizes
[07:07:03] [PASSED] ABGR8888 pitch greater than min required
[07:07:03] [PASSED] ABGR8888 pitch less than min required
[07:07:03] [PASSED] ABGR8888 Invalid width
[07:07:03] [PASSED] ABGR8888 Invalid buffer handle
[07:07:03] [PASSED] No pixel format
[07:07:03] [PASSED] ABGR8888 Width 0
[07:07:03] [PASSED] ABGR8888 Height 0
[07:07:03] [PASSED] ABGR8888 Out of bound height * pitch combination
[07:07:03] [PASSED] ABGR8888 Large buffer offset
[07:07:03] [PASSED] ABGR8888 Buffer offset for inexistent plane
[07:07:03] [PASSED] ABGR8888 Invalid flag
[07:07:03] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[07:07:03] [PASSED] ABGR8888 Valid buffer modifier
[07:07:03] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[07:07:03] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[07:07:03] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[07:07:03] [PASSED] NV12 Normal sizes
[07:07:03] [PASSED] NV12 Max sizes
[07:07:03] [PASSED] NV12 Invalid pitch
[07:07:03] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[07:07:03] [PASSED] NV12 different  modifier per-plane
[07:07:03] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[07:07:03] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[07:07:03] [PASSED] NV12 Modifier for inexistent plane
[07:07:03] [PASSED] NV12 Handle for inexistent plane
[07:07:03] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[07:07:03] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[07:07:03] [PASSED] YVU420 Normal sizes
[07:07:03] [PASSED] YVU420 Max sizes
[07:07:03] [PASSED] YVU420 Invalid pitch
[07:07:03] [PASSED] YVU420 Different pitches
[07:07:03] [PASSED] YVU420 Different buffer offsets/pitches
[07:07:03] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[07:07:03] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[07:07:03] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[07:07:03] [PASSED] YVU420 Valid modifier
[07:07:03] [PASSED] YVU420 Different modifiers per plane
[07:07:03] [PASSED] YVU420 Modifier for inexistent plane
[07:07:03] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[07:07:03] [PASSED] X0L2 Normal sizes
[07:07:03] [PASSED] X0L2 Max sizes
[07:07:03] [PASSED] X0L2 Invalid pitch
[07:07:03] [PASSED] X0L2 Pitch greater than minimum required
[07:07:03] [PASSED] X0L2 Handle for inexistent plane
[07:07:03] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[07:07:03] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[07:07:03] [PASSED] X0L2 Valid modifier
[07:07:03] [PASSED] X0L2 Modifier for inexistent plane
[07:07:03] =========== [PASSED] drm_test_framebuffer_create ===========
[07:07:03] [PASSED] drm_test_framebuffer_free
[07:07:03] [PASSED] drm_test_framebuffer_init
[07:07:03] [PASSED] drm_test_framebuffer_init_bad_format
[07:07:03] [PASSED] drm_test_framebuffer_init_dev_mismatch
[07:07:03] [PASSED] drm_test_framebuffer_lookup
[07:07:03] [PASSED] drm_test_framebuffer_lookup_inexistent
[07:07:03] [PASSED] drm_test_framebuffer_modifiers_not_supported
[07:07:03] ================= [PASSED] drm_framebuffer =================
[07:07:03] ================ drm_gem_shmem (8 subtests) ================
[07:07:03] [PASSED] drm_gem_shmem_test_obj_create
[07:07:03] [PASSED] drm_gem_shmem_test_obj_create_private
[07:07:03] [PASSED] drm_gem_shmem_test_pin_pages
[07:07:03] [PASSED] drm_gem_shmem_test_vmap
[07:07:03] [PASSED] drm_gem_shmem_test_get_sg_table
[07:07:03] [PASSED] drm_gem_shmem_test_get_pages_sgt
[07:07:03] [PASSED] drm_gem_shmem_test_madvise
[07:07:03] [PASSED] drm_gem_shmem_test_purge
[07:07:03] ================== [PASSED] drm_gem_shmem ==================
[07:07:03] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[07:07:03] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[07:07:03] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[07:07:03] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[07:07:03] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[07:07:03] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[07:07:03] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[07:07:03] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420  =======
[07:07:03] [PASSED] Automatic
[07:07:03] [PASSED] Full
[07:07:03] [PASSED] Limited 16:235
[07:07:03] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[07:07:03] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[07:07:03] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[07:07:03] [PASSED] drm_test_check_disable_connector
[07:07:03] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[07:07:03] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[07:07:03] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[07:07:03] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[07:07:03] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[07:07:03] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[07:07:03] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[07:07:03] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[07:07:03] [PASSED] drm_test_check_output_bpc_dvi
[07:07:03] [PASSED] drm_test_check_output_bpc_format_vic_1
[07:07:03] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[07:07:03] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[07:07:03] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[07:07:03] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[07:07:03] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[07:07:03] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[07:07:03] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[07:07:03] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[07:07:03] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[07:07:03] [PASSED] drm_test_check_broadcast_rgb_value
[07:07:03] [PASSED] drm_test_check_bpc_8_value
[07:07:03] [PASSED] drm_test_check_bpc_10_value
[07:07:03] [PASSED] drm_test_check_bpc_12_value
[07:07:03] [PASSED] drm_test_check_format_value
[07:07:03] [PASSED] drm_test_check_tmds_char_value
[07:07:03] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[07:07:03] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[07:07:03] [PASSED] drm_test_check_mode_valid
[07:07:03] [PASSED] drm_test_check_mode_valid_reject
[07:07:03] [PASSED] drm_test_check_mode_valid_reject_rate
[07:07:03] [PASSED] drm_test_check_mode_valid_reject_max_clock
[07:07:03] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[07:07:03] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[07:07:03] [PASSED] drm_test_check_infoframes
[07:07:03] [PASSED] drm_test_check_reject_avi_infoframe
[07:07:03] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[07:07:03] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[07:07:03] [PASSED] drm_test_check_reject_audio_infoframe
[07:07:03] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[07:07:03] ================= drm_managed (2 subtests) =================
[07:07:03] [PASSED] drm_test_managed_release_action
[07:07:03] [PASSED] drm_test_managed_run_action
[07:07:03] =================== [PASSED] drm_managed ===================
[07:07:03] =================== drm_mm (6 subtests) ====================
[07:07:03] [PASSED] drm_test_mm_init
[07:07:03] [PASSED] drm_test_mm_debug
[07:07:03] [PASSED] drm_test_mm_align32
[07:07:03] [PASSED] drm_test_mm_align64
[07:07:03] [PASSED] drm_test_mm_lowest
[07:07:03] [PASSED] drm_test_mm_highest
[07:07:03] ===================== [PASSED] drm_mm ======================
[07:07:03] ============= drm_modes_analog_tv (5 subtests) =============
[07:07:03] [PASSED] drm_test_modes_analog_tv_mono_576i
[07:07:03] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[07:07:03] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[07:07:03] [PASSED] drm_test_modes_analog_tv_pal_576i
[07:07:03] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[07:07:03] =============== [PASSED] drm_modes_analog_tv ===============
[07:07:03] ============== drm_plane_helper (2 subtests) ===============
[07:07:03] =============== drm_test_check_plane_state  ================
[07:07:03] [PASSED] clipping_simple
[07:07:03] [PASSED] clipping_rotate_reflect
[07:07:03] [PASSED] positioning_simple
[07:07:03] [PASSED] upscaling
[07:07:03] [PASSED] downscaling
[07:07:03] [PASSED] rounding1
[07:07:03] [PASSED] rounding2
[07:07:03] [PASSED] rounding3
[07:07:03] [PASSED] rounding4
[07:07:03] =========== [PASSED] drm_test_check_plane_state ============
[07:07:03] =========== drm_test_check_invalid_plane_state  ============
[07:07:03] [PASSED] positioning_invalid
[07:07:03] [PASSED] upscaling_invalid
[07:07:03] [PASSED] downscaling_invalid
[07:07:03] ======= [PASSED] drm_test_check_invalid_plane_state ========
[07:07:03] ================ [PASSED] drm_plane_helper =================
[07:07:03] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[07:07:03] ====== drm_test_connector_helper_tv_get_modes_check  =======
[07:07:03] [PASSED] None
[07:07:03] [PASSED] PAL
[07:07:03] [PASSED] NTSC
[07:07:03] [PASSED] Both, NTSC Default
[07:07:03] [PASSED] Both, PAL Default
[07:07:03] [PASSED] Both, NTSC Default, with PAL on command-line
[07:07:03] [PASSED] Both, PAL Default, with NTSC on command-line
[07:07:03] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[07:07:03] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[07:07:03] ================== drm_rect (9 subtests) ===================
[07:07:03] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[07:07:03] [PASSED] drm_test_rect_clip_scaled_not_clipped
[07:07:03] [PASSED] drm_test_rect_clip_scaled_clipped
[07:07:03] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[07:07:03] ================= drm_test_rect_intersect  =================
[07:07:03] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[07:07:03] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[07:07:03] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[07:07:03] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[07:07:03] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[07:07:03] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[07:07:03] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[07:07:03] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[07:07:03] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[07:07:03] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[07:07:03] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[07:07:03] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[07:07:03] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[07:07:03] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[07:07:03] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[07:07:03] ============= [PASSED] drm_test_rect_intersect =============
[07:07:03] ================ drm_test_rect_calc_hscale  ================
[07:07:03] [PASSED] normal use
[07:07:03] [PASSED] out of max range
[07:07:03] [PASSED] out of min range
[07:07:03] [PASSED] zero dst
[07:07:03] [PASSED] negative src
[07:07:03] [PASSED] negative dst
[07:07:03] ============ [PASSED] drm_test_rect_calc_hscale ============
[07:07:03] ================ drm_test_rect_calc_vscale  ================
[07:07:03] [PASSED] normal use
[07:07:03] [PASSED] out of max range
[07:07:03] [PASSED] out of min range
[07:07:03] [PASSED] zero dst
[07:07:03] [PASSED] negative src
[07:07:03] [PASSED] negative dst
[07:07:03] ============ [PASSED] drm_test_rect_calc_vscale ============
[07:07:03] ================== drm_test_rect_rotate  ===================
[07:07:03] [PASSED] reflect-x
[07:07:03] [PASSED] reflect-y
[07:07:03] [PASSED] rotate-0
[07:07:03] [PASSED] rotate-90
[07:07:03] [PASSED] rotate-180
[07:07:03] [PASSED] rotate-270
[07:07:03] ============== [PASSED] drm_test_rect_rotate ===============
[07:07:03] ================ drm_test_rect_rotate_inv  =================
[07:07:03] [PASSED] reflect-x
[07:07:03] [PASSED] reflect-y
[07:07:03] [PASSED] rotate-0
[07:07:03] [PASSED] rotate-90
[07:07:03] [PASSED] rotate-180
[07:07:03] [PASSED] rotate-270
[07:07:03] ============ [PASSED] drm_test_rect_rotate_inv =============
[07:07:03] ==================== [PASSED] drm_rect =====================
[07:07:03] ============ drm_sysfb_modeset_test (1 subtest) ============
[07:07:03] ============ drm_test_sysfb_build_fourcc_list  =============
[07:07:03] [PASSED] no native formats
[07:07:03] [PASSED] XRGB8888 as native format
[07:07:03] [PASSED] remove duplicates
[07:07:03] [PASSED] convert alpha formats
[07:07:03] [PASSED] random formats
[07:07:03] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[07:07:03] ============= [PASSED] drm_sysfb_modeset_test ==============
[07:07:03] ================== drm_fixp (2 subtests) ===================
[07:07:03] [PASSED] drm_test_int2fixp
[07:07:03] [PASSED] drm_test_sm2fixp
[07:07:03] ==================== [PASSED] drm_fixp =====================
[07:07:03] ============================================================
[07:07:03] Testing complete. Ran 621 tests: passed: 621
[07:07:03] Elapsed time: 26.049s total, 1.751s configuring, 24.130s building, 0.135s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[07:07:03] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[07:07:05] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[07:07:14] Starting KUnit Kernel (1/1)...
[07:07:14] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[07:07:14] ================= ttm_device (5 subtests) ==================
[07:07:14] [PASSED] ttm_device_init_basic
[07:07:14] [PASSED] ttm_device_init_multiple
[07:07:14] [PASSED] ttm_device_fini_basic
[07:07:14] [PASSED] ttm_device_init_no_vma_man
[07:07:14] ================== ttm_device_init_pools  ==================
[07:07:14] [PASSED] No DMA allocations, no DMA32 required
[07:07:14] [PASSED] DMA allocations, DMA32 required
[07:07:14] [PASSED] No DMA allocations, DMA32 required
[07:07:14] [PASSED] DMA allocations, no DMA32 required
[07:07:14] ============== [PASSED] ttm_device_init_pools ==============
[07:07:14] =================== [PASSED] ttm_device ====================
[07:07:14] ================== ttm_pool (8 subtests) ===================
[07:07:14] ================== ttm_pool_alloc_basic  ===================
[07:07:14] [PASSED] One page
[07:07:14] [PASSED] More than one page
[07:07:14] [PASSED] Above the allocation limit
[07:07:14] [PASSED] One page, with coherent DMA mappings enabled
[07:07:14] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[07:07:14] ============== [PASSED] ttm_pool_alloc_basic ===============
[07:07:14] ============== ttm_pool_alloc_basic_dma_addr  ==============
[07:07:14] [PASSED] One page
[07:07:14] [PASSED] More than one page
[07:07:14] [PASSED] Above the allocation limit
[07:07:14] [PASSED] One page, with coherent DMA mappings enabled
[07:07:14] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[07:07:14] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[07:07:14] [PASSED] ttm_pool_alloc_order_caching_match
[07:07:14] [PASSED] ttm_pool_alloc_caching_mismatch
[07:07:14] [PASSED] ttm_pool_alloc_order_mismatch
[07:07:14] [PASSED] ttm_pool_free_dma_alloc
[07:07:14] [PASSED] ttm_pool_free_no_dma_alloc
[07:07:14] [PASSED] ttm_pool_fini_basic
[07:07:14] ==================== [PASSED] ttm_pool =====================
[07:07:14] ================ ttm_resource (8 subtests) =================
[07:07:14] ================= ttm_resource_init_basic  =================
[07:07:14] [PASSED] Init resource in TTM_PL_SYSTEM
[07:07:14] [PASSED] Init resource in TTM_PL_VRAM
[07:07:14] [PASSED] Init resource in a private placement
[07:07:14] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[07:07:14] ============= [PASSED] ttm_resource_init_basic =============
[07:07:14] [PASSED] ttm_resource_init_pinned
[07:07:14] [PASSED] ttm_resource_fini_basic
[07:07:14] [PASSED] ttm_resource_manager_init_basic
[07:07:14] [PASSED] ttm_resource_manager_usage_basic
[07:07:14] [PASSED] ttm_resource_manager_set_used_basic
[07:07:14] [PASSED] ttm_sys_man_alloc_basic
[07:07:14] [PASSED] ttm_sys_man_free_basic
[07:07:14] ================== [PASSED] ttm_resource ===================
[07:07:14] =================== ttm_tt (15 subtests) ===================
[07:07:14] ==================== ttm_tt_init_basic  ====================
[07:07:14] [PASSED] Page-aligned size
[07:07:14] [PASSED] Extra pages requested
[07:07:14] ================ [PASSED] ttm_tt_init_basic ================
[07:07:14] [PASSED] ttm_tt_init_misaligned
[07:07:14] [PASSED] ttm_tt_fini_basic
[07:07:14] [PASSED] ttm_tt_fini_sg
[07:07:14] [PASSED] ttm_tt_fini_shmem
[07:07:14] [PASSED] ttm_tt_create_basic
[07:07:14] [PASSED] ttm_tt_create_invalid_bo_type
[07:07:14] [PASSED] ttm_tt_create_ttm_exists
[07:07:14] [PASSED] ttm_tt_create_failed
[07:07:14] [PASSED] ttm_tt_destroy_basic
[07:07:14] [PASSED] ttm_tt_populate_null_ttm
[07:07:14] [PASSED] ttm_tt_populate_populated_ttm
[07:07:14] [PASSED] ttm_tt_unpopulate_basic
[07:07:14] [PASSED] ttm_tt_unpopulate_empty_ttm
[07:07:14] [PASSED] ttm_tt_swapin_basic
[07:07:14] ===================== [PASSED] ttm_tt ======================
[07:07:14] =================== ttm_bo (14 subtests) ===================
[07:07:14] =========== ttm_bo_reserve_optimistic_no_ticket  ===========
[07:07:14] [PASSED] Cannot be interrupted and sleeps
[07:07:14] [PASSED] Cannot be interrupted, locks straight away
[07:07:14] [PASSED] Can be interrupted, sleeps
[07:07:14] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[07:07:14] [PASSED] ttm_bo_reserve_locked_no_sleep
[07:07:14] [PASSED] ttm_bo_reserve_no_wait_ticket
[07:07:14] [PASSED] ttm_bo_reserve_double_resv
[07:07:14] [PASSED] ttm_bo_reserve_interrupted
[07:07:14] [PASSED] ttm_bo_reserve_deadlock
[07:07:14] [PASSED] ttm_bo_unreserve_basic
[07:07:14] [PASSED] ttm_bo_unreserve_pinned
[07:07:14] [PASSED] ttm_bo_unreserve_bulk
[07:07:14] [PASSED] ttm_bo_fini_basic
[07:07:14] [PASSED] ttm_bo_fini_shared_resv
[07:07:14] [PASSED] ttm_bo_pin_basic
[07:07:14] [PASSED] ttm_bo_pin_unpin_resource
[07:07:14] [PASSED] ttm_bo_multiple_pin_one_unpin
[07:07:14] ===================== [PASSED] ttm_bo ======================
[07:07:14] ============== ttm_bo_validate (22 subtests) ===============
[07:07:14] ============== ttm_bo_init_reserved_sys_man  ===============
[07:07:14] [PASSED] Buffer object for userspace
[07:07:14] [PASSED] Kernel buffer object
[07:07:14] [PASSED] Shared buffer object
[07:07:14] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[07:07:14] ============== ttm_bo_init_reserved_mock_man  ==============
[07:07:14] [PASSED] Buffer object for userspace
[07:07:14] [PASSED] Kernel buffer object
[07:07:14] [PASSED] Shared buffer object
[07:07:14] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[07:07:14] [PASSED] ttm_bo_init_reserved_resv
[07:07:14] ================== ttm_bo_validate_basic  ==================
[07:07:14] [PASSED] Buffer object for userspace
[07:07:14] [PASSED] Kernel buffer object
[07:07:14] [PASSED] Shared buffer object
[07:07:14] ============== [PASSED] ttm_bo_validate_basic ==============
[07:07:14] [PASSED] ttm_bo_validate_invalid_placement
[07:07:14] ============= ttm_bo_validate_same_placement  ==============
[07:07:14] [PASSED] System manager
[07:07:14] [PASSED] VRAM manager
[07:07:14] ========= [PASSED] ttm_bo_validate_same_placement ==========
[07:07:14] [PASSED] ttm_bo_validate_failed_alloc
[07:07:14] [PASSED] ttm_bo_validate_pinned
[07:07:14] [PASSED] ttm_bo_validate_busy_placement
[07:07:14] ================ ttm_bo_validate_multihop  =================
[07:07:14] [PASSED] Buffer object for userspace
[07:07:14] [PASSED] Kernel buffer object
[07:07:14] [PASSED] Shared buffer object
[07:07:14] ============ [PASSED] ttm_bo_validate_multihop =============
[07:07:14] ========== ttm_bo_validate_no_placement_signaled  ==========
[07:07:14] [PASSED] Buffer object in system domain, no page vector
[07:07:14] [PASSED] Buffer object in system domain with an existing page vector
[07:07:14] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[07:07:14] ======== ttm_bo_validate_no_placement_not_signaled  ========
[07:07:14] [PASSED] Buffer object for userspace
[07:07:14] [PASSED] Kernel buffer object
[07:07:14] [PASSED] Shared buffer object
[07:07:14] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[07:07:14] [PASSED] ttm_bo_validate_move_fence_signaled
[07:07:14] ========= ttm_bo_validate_move_fence_not_signaled  =========
[07:07:14] [PASSED] Waits for GPU
[07:07:14] [PASSED] Tries to lock straight away
[07:07:14] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[07:07:14] [PASSED] ttm_bo_validate_swapout
[07:07:14] [PASSED] ttm_bo_validate_happy_evict
[07:07:14] [PASSED] ttm_bo_validate_all_pinned_evict
[07:07:14] [PASSED] ttm_bo_validate_allowed_only_evict
[07:07:14] [PASSED] ttm_bo_validate_deleted_evict
[07:07:14] [PASSED] ttm_bo_validate_busy_domain_evict
[07:07:14] [PASSED] ttm_bo_validate_evict_gutting
[07:07:14] [PASSED] ttm_bo_validate_recrusive_evict
[07:07:14] ================= [PASSED] ttm_bo_validate =================
[07:07:14] ============================================================
[07:07:14] Testing complete. Ran 102 tests: passed: 102
[07:07:14] Elapsed time: 11.598s total, 1.778s configuring, 9.605s building, 0.187s running

+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel



^ permalink raw reply	[flat|nested] 22+ messages in thread

* ✓ Xe.CI.BAT: success for Fix Adaptive-Sync SDP for PR with Link ON + Auxless-ALPM (rev5)
  2026-05-25  5:22 [PATCH 00/11] Fix Adaptive-Sync SDP for PR with Link ON + Auxless-ALPM Ankit Nautiyal
                   ` (14 preceding siblings ...)
  2026-05-26  7:07 ` ✓ CI.KUnit: success for Fix Adaptive-Sync SDP for PR with Link ON + Auxless-ALPM (rev5) Patchwork
@ 2026-05-26  7:52 ` Patchwork
  2026-05-26  9:03 ` ✓ Xe.CI.FULL: " Patchwork
  16 siblings, 0 replies; 22+ messages in thread
From: Patchwork @ 2026-05-26  7:52 UTC (permalink / raw)
  To: Ankit Nautiyal; +Cc: intel-xe

[-- Attachment #1: Type: text/plain, Size: 886 bytes --]

== Series Details ==

Series: Fix Adaptive-Sync SDP for PR with Link ON + Auxless-ALPM (rev5)
URL   : https://patchwork.freedesktop.org/series/164513/
State : success

== Summary ==

CI Bug Log - changes from xe-5127-6b6931ea69504481efd3df1cc99765141feb178c_BAT -> xe-pw-164513v5_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (13 -> 13)
------------------------------

  No changes in participating hosts


Changes
-------

  No changes found


Build changes
-------------

  * Linux: xe-5127-6b6931ea69504481efd3df1cc99765141feb178c -> xe-pw-164513v5

  IGT_8937: 8937
  xe-5127-6b6931ea69504481efd3df1cc99765141feb178c: 6b6931ea69504481efd3df1cc99765141feb178c
  xe-pw-164513v5: 164513v5

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/index.html

[-- Attachment #2: Type: text/html, Size: 1434 bytes --]

^ permalink raw reply	[flat|nested] 22+ messages in thread

* ✓ Xe.CI.FULL: success for Fix Adaptive-Sync SDP for PR with Link ON + Auxless-ALPM (rev5)
  2026-05-25  5:22 [PATCH 00/11] Fix Adaptive-Sync SDP for PR with Link ON + Auxless-ALPM Ankit Nautiyal
                   ` (15 preceding siblings ...)
  2026-05-26  7:52 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-05-26  9:03 ` Patchwork
  16 siblings, 0 replies; 22+ messages in thread
From: Patchwork @ 2026-05-26  9:03 UTC (permalink / raw)
  To: Ankit Nautiyal; +Cc: intel-xe

[-- Attachment #1: Type: text/plain, Size: 54909 bytes --]

== Series Details ==

Series: Fix Adaptive-Sync SDP for PR with Link ON + Auxless-ALPM (rev5)
URL   : https://patchwork.freedesktop.org/series/164513/
State : success

== Summary ==

CI Bug Log - changes from xe-5127-6b6931ea69504481efd3df1cc99765141feb178c_FULL -> xe-pw-164513v5_FULL
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (2 -> 2)
------------------------------

  No changes in participating hosts

New tests
---------

  New tests have been introduced between xe-5127-6b6931ea69504481efd3df1cc99765141feb178c_FULL and xe-pw-164513v5_FULL:

### New IGT tests (1) ###

  * igt@kms_flip_tiling:
    - Statuses :
    - Exec time: [None] s

  

Known issues
------------

  Here are the changes found in xe-pw-164513v5_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_big_fb@4-tiled-8bpp-rotate-270:
    - shard-bmg:          NOTRUN -> [SKIP][1] ([Intel XE#2327])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-3/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@linear-32bpp-rotate-90:
    - shard-lnl:          NOTRUN -> [SKIP][2] ([Intel XE#1407]) +2 other tests skip
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-5/igt@kms_big_fb@linear-32bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
    - shard-lnl:          NOTRUN -> [SKIP][3] ([Intel XE#1124]) +3 other tests skip
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
    - shard-bmg:          NOTRUN -> [SKIP][4] ([Intel XE#1124]) +2 other tests skip
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-3/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html

  * igt@kms_bw@connected-linear-tiling-3-displays-target-2160x1440p:
    - shard-lnl:          NOTRUN -> [SKIP][5] ([Intel XE#7679])
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-5/igt@kms_bw@connected-linear-tiling-3-displays-target-2160x1440p.html

  * igt@kms_bw@linear-tiling-1-displays-target-1920x1080p:
    - shard-bmg:          NOTRUN -> [SKIP][6] ([Intel XE#367]) +2 other tests skip
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-3/igt@kms_bw@linear-tiling-1-displays-target-1920x1080p.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs:
    - shard-lnl:          NOTRUN -> [SKIP][7] ([Intel XE#2887]) +5 other tests skip
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html

  * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][8] ([Intel XE#2887]) +2 other tests skip
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-3/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs.html

  * igt@kms_chamelium_color@ctm-blue-to-red:
    - shard-lnl:          NOTRUN -> [SKIP][9] ([Intel XE#306] / [Intel XE#7358])
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-5/igt@kms_chamelium_color@ctm-blue-to-red.html

  * igt@kms_chamelium_hpd@dp-hpd-after-hibernate:
    - shard-lnl:          NOTRUN -> [SKIP][10] ([Intel XE#373])
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-5/igt@kms_chamelium_hpd@dp-hpd-after-hibernate.html

  * igt@kms_chamelium_hpd@dp-hpd-storm:
    - shard-bmg:          NOTRUN -> [SKIP][11] ([Intel XE#2252]) +2 other tests skip
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-3/igt@kms_chamelium_hpd@dp-hpd-storm.html

  * igt@kms_content_protection@atomic:
    - shard-lnl:          NOTRUN -> [SKIP][12] ([Intel XE#7642])
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-5/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@atomic-hdcp14:
    - shard-bmg:          NOTRUN -> [FAIL][13] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-3/igt@kms_content_protection@atomic-hdcp14.html

  * igt@kms_cursor_crc@cursor-offscreen-64x21:
    - shard-bmg:          NOTRUN -> [SKIP][14] ([Intel XE#2320])
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-3/igt@kms_cursor_crc@cursor-offscreen-64x21.html

  * igt@kms_cursor_crc@cursor-random-512x512:
    - shard-lnl:          NOTRUN -> [SKIP][15] ([Intel XE#2321] / [Intel XE#7355])
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-5/igt@kms_cursor_crc@cursor-random-512x512.html

  * igt@kms_cursor_crc@cursor-sliding-32x10:
    - shard-lnl:          NOTRUN -> [SKIP][16] ([Intel XE#1424])
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-7/igt@kms_cursor_crc@cursor-sliding-32x10.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
    - shard-lnl:          NOTRUN -> [SKIP][17] ([Intel XE#309] / [Intel XE#7343]) +1 other test skip
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html

  * igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
    - shard-lnl:          NOTRUN -> [SKIP][18] ([Intel XE#1508])
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-5/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html

  * igt@kms_dsc@dsc-basic:
    - shard-bmg:          NOTRUN -> [SKIP][19] ([Intel XE#2244])
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-3/igt@kms_dsc@dsc-basic.html

  * igt@kms_dsc@dsc-fractional-bpp-with-bpc:
    - shard-lnl:          NOTRUN -> [SKIP][20] ([Intel XE#2244])
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-5/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html

  * igt@kms_flip@2x-flip-vs-rmfb:
    - shard-lnl:          NOTRUN -> [SKIP][21] ([Intel XE#1421]) +1 other test skip
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-5/igt@kms_flip@2x-flip-vs-rmfb.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible:
    - shard-lnl:          [PASS][22] -> [FAIL][23] ([Intel XE#301] / [Intel XE#3149]) +1 other test fail
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
    - shard-lnl:          [PASS][24] -> [FAIL][25] ([Intel XE#301]) +1 other test fail
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
    - shard-bmg:          NOTRUN -> [SKIP][26] ([Intel XE#7178] / [Intel XE#7349])
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
    - shard-bmg:          NOTRUN -> [SKIP][27] ([Intel XE#7178] / [Intel XE#7351])
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][28] ([Intel XE#2311]) +18 other tests skip
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@drrshdr-argb161616f-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][29] ([Intel XE#7061])
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-3/igt@kms_frontbuffer_tracking@drrshdr-argb161616f-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][30] ([Intel XE#4141]) +2 other tests skip
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-move:
    - shard-lnl:          NOTRUN -> [SKIP][31] ([Intel XE#6312] / [Intel XE#651]) +4 other tests skip
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-render:
    - shard-lnl:          NOTRUN -> [SKIP][32] ([Intel XE#656] / [Intel XE#7905]) +11 other tests skip
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-offscreen-pri-shrfb-draw-blt:
    - shard-lnl:          NOTRUN -> [SKIP][33] ([Intel XE#6312]) +2 other tests skip
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-offscreen-pri-shrfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-render:
    - shard-lnl:          NOTRUN -> [SKIP][34] ([Intel XE#7905]) +13 other tests skip
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-5/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@hdr-abgr161616f-draw-blt:
    - shard-lnl:          NOTRUN -> [SKIP][35] ([Intel XE#7061])
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-5/igt@kms_frontbuffer_tracking@hdr-abgr161616f-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-argb161616f-draw-blt:
    - shard-lnl:          NOTRUN -> [SKIP][36] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-5/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-blt.html

  * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-indfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][37] ([Intel XE#2313]) +14 other tests skip
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-3/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-indfb-draw-render:
    - shard-lnl:          NOTRUN -> [SKIP][38] ([Intel XE#7865]) +5 other tests skip
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-5/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-indfb-draw-render.html

  * igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb16161616f:
    - shard-bmg:          [PASS][39] -> [SKIP][40] ([Intel XE#7915]) +3 other tests skip
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb16161616f.html
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-1/igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb16161616f.html

  * igt@kms_joiner@invalid-modeset-ultra-joiner:
    - shard-bmg:          NOTRUN -> [SKIP][41] ([Intel XE#6911] / [Intel XE#7378])
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-3/igt@kms_joiner@invalid-modeset-ultra-joiner.html

  * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier:
    - shard-bmg:          NOTRUN -> [SKIP][42] ([Intel XE#7283])
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-3/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier.html

  * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping:
    - shard-lnl:          NOTRUN -> [SKIP][43] ([Intel XE#7283])
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-5/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html

  * igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5:
    - shard-bmg:          NOTRUN -> [SKIP][44] ([Intel XE#7130]) +1 other test skip
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-1/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html

  * igt@kms_pm_backlight@brightness-with-dpms:
    - shard-bmg:          NOTRUN -> [SKIP][45] ([Intel XE#2938] / [Intel XE#7376] / [Intel XE#7760])
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-3/igt@kms_pm_backlight@brightness-with-dpms.html

  * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
    - shard-bmg:          NOTRUN -> [SKIP][46] ([Intel XE#1489]) +1 other test skip
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-3/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf:
    - shard-lnl:          NOTRUN -> [SKIP][47] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304])
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][48] ([Intel XE#4608])
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-b-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][49] ([Intel XE#4608] / [Intel XE#7304])
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-b-edp-1.html

  * igt@kms_psr@fbc-psr2-dpms:
    - shard-lnl:          NOTRUN -> [SKIP][50] ([Intel XE#1406] / [Intel XE#7345])
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-5/igt@kms_psr@fbc-psr2-dpms.html

  * igt@kms_psr@fbc-psr2-dpms@edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][51] ([Intel XE#1406] / [Intel XE#4609])
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-5/igt@kms_psr@fbc-psr2-dpms@edp-1.html

  * igt@kms_psr@fbc-psr2-sprite-render:
    - shard-bmg:          NOTRUN -> [SKIP][52] ([Intel XE#2234] / [Intel XE#2850]) +4 other tests skip
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-3/igt@kms_psr@fbc-psr2-sprite-render.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
    - shard-lnl:          NOTRUN -> [SKIP][53] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342])
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html

  * igt@kms_rotation_crc@sprite-rotation-90:
    - shard-bmg:          NOTRUN -> [SKIP][54] ([Intel XE#3904] / [Intel XE#7342])
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-5/igt@kms_rotation_crc@sprite-rotation-90.html

  * igt@kms_sharpness_filter@filter-scaler-downscale:
    - shard-bmg:          NOTRUN -> [SKIP][55] ([Intel XE#6503])
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-3/igt@kms_sharpness_filter@filter-scaler-downscale.html

  * igt@xe_eudebug@basic-client:
    - shard-lnl:          NOTRUN -> [SKIP][56] ([Intel XE#7636]) +5 other tests skip
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-5/igt@xe_eudebug@basic-client.html

  * igt@xe_eudebug@vma-ufence:
    - shard-bmg:          NOTRUN -> [SKIP][57] ([Intel XE#7636]) +3 other tests skip
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-3/igt@xe_eudebug@vma-ufence.html

  * igt@xe_evict@evict-cm-threads-small-multi-queue:
    - shard-lnl:          NOTRUN -> [SKIP][58] ([Intel XE#6540] / [Intel XE#688]) +2 other tests skip
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-5/igt@xe_evict@evict-cm-threads-small-multi-queue.html

  * igt@xe_exec_balancer@many-virtual-userptr-invalidate-race:
    - shard-lnl:          NOTRUN -> [SKIP][59] ([Intel XE#7482]) +3 other tests skip
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-5/igt@xe_exec_balancer@many-virtual-userptr-invalidate-race.html

  * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind:
    - shard-lnl:          NOTRUN -> [SKIP][60] ([Intel XE#1392]) +2 other tests skip
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-5/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind.html

  * igt@xe_exec_basic@multigpu-once-basic:
    - shard-bmg:          NOTRUN -> [SKIP][61] ([Intel XE#2322] / [Intel XE#7372])
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-3/igt@xe_exec_basic@multigpu-once-basic.html

  * igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-race:
    - shard-lnl:          NOTRUN -> [SKIP][62] ([Intel XE#7136]) +5 other tests skip
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-5/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-race.html

  * igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][63] ([Intel XE#7136]) +2 other tests skip
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-3/igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind.html

  * igt@xe_exec_multi_queue@max-queues-preempt-mode-dyn-priority-smem:
    - shard-lnl:          NOTRUN -> [SKIP][64] ([Intel XE#6874]) +9 other tests skip
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-5/igt@xe_exec_multi_queue@max-queues-preempt-mode-dyn-priority-smem.html

  * igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-userptr:
    - shard-bmg:          NOTRUN -> [SKIP][65] ([Intel XE#6874]) +9 other tests skip
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-3/igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-userptr.html

  * igt@xe_exec_reset@multi-queue-cancel:
    - shard-lnl:          NOTRUN -> [SKIP][66] ([Intel XE#7866])
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-5/igt@xe_exec_reset@multi-queue-cancel.html

  * igt@xe_exec_system_allocator@many-stride-new-prefetch:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][67] ([Intel XE#7098] / [Intel XE#8159])
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-3/igt@xe_exec_system_allocator@many-stride-new-prefetch.html

  * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-comp-single-vma:
    - shard-lnl:          NOTRUN -> [SKIP][68] ([Intel XE#6196])
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-5/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-comp-single-vma.html

  * igt@xe_exec_system_allocator@threads-many-execqueues-mmap-shared-nomemset:
    - shard-lnl:          NOTRUN -> [ABORT][69] ([Intel XE#8007])
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-2/igt@xe_exec_system_allocator@threads-many-execqueues-mmap-shared-nomemset.html

  * igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr:
    - shard-bmg:          NOTRUN -> [SKIP][70] ([Intel XE#7138]) +1 other test skip
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-3/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr.html

  * igt@xe_exec_threads@threads-multi-queue-userptr-invalidate:
    - shard-lnl:          NOTRUN -> [SKIP][71] ([Intel XE#7138]) +1 other test skip
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-5/igt@xe_exec_threads@threads-multi-queue-userptr-invalidate.html

  * igt@xe_madvise@atomic-cpu:
    - shard-lnl:          NOTRUN -> [SKIP][72] ([Intel XE#7980])
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-5/igt@xe_madvise@atomic-cpu.html

  * igt@xe_mmap@small-bar:
    - shard-bmg:          NOTRUN -> [SKIP][73] ([Intel XE#586] / [Intel XE#7323] / [Intel XE#7384])
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-3/igt@xe_mmap@small-bar.html

  * igt@xe_module_load@load:
    - shard-lnl:          ([PASS][74], [PASS][75], [PASS][76], [PASS][77], [PASS][78], [PASS][79], [PASS][80], [PASS][81], [PASS][82], [PASS][83], [PASS][84], [PASS][85], [PASS][86], [PASS][87], [PASS][88], [PASS][89], [PASS][90], [PASS][91], [PASS][92], [PASS][93], [PASS][94], [PASS][95], [PASS][96], [PASS][97]) -> ([PASS][98], [PASS][99], [PASS][100], [PASS][101], [PASS][102], [PASS][103], [SKIP][104], [PASS][105], [PASS][106], [PASS][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [PASS][122]) ([Intel XE#378] / [Intel XE#7405])
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-1/igt@xe_module_load@load.html
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-8/igt@xe_module_load@load.html
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-5/igt@xe_module_load@load.html
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-2/igt@xe_module_load@load.html
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-7/igt@xe_module_load@load.html
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-7/igt@xe_module_load@load.html
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-4/igt@xe_module_load@load.html
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-4/igt@xe_module_load@load.html
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-4/igt@xe_module_load@load.html
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-2/igt@xe_module_load@load.html
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-8/igt@xe_module_load@load.html
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-8/igt@xe_module_load@load.html
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-6/igt@xe_module_load@load.html
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-8/igt@xe_module_load@load.html
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-2/igt@xe_module_load@load.html
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-7/igt@xe_module_load@load.html
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-5/igt@xe_module_load@load.html
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-5/igt@xe_module_load@load.html
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-7/igt@xe_module_load@load.html
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-1/igt@xe_module_load@load.html
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-1/igt@xe_module_load@load.html
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-3/igt@xe_module_load@load.html
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-3/igt@xe_module_load@load.html
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-3/igt@xe_module_load@load.html
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-3/igt@xe_module_load@load.html
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-2/igt@xe_module_load@load.html
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-8/igt@xe_module_load@load.html
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-8/igt@xe_module_load@load.html
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-3/igt@xe_module_load@load.html
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-6/igt@xe_module_load@load.html
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-5/igt@xe_module_load@load.html
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-8/igt@xe_module_load@load.html
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-8/igt@xe_module_load@load.html
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-3/igt@xe_module_load@load.html
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-2/igt@xe_module_load@load.html
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-7/igt@xe_module_load@load.html
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-7/igt@xe_module_load@load.html
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-5/igt@xe_module_load@load.html
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-7/igt@xe_module_load@load.html
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-7/igt@xe_module_load@load.html
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-5/igt@xe_module_load@load.html
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-5/igt@xe_module_load@load.html
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-1/igt@xe_module_load@load.html
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-4/igt@xe_module_load@load.html
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-1/igt@xe_module_load@load.html
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-1/igt@xe_module_load@load.html
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-4/igt@xe_module_load@load.html
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-1/igt@xe_module_load@load.html
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-4/igt@xe_module_load@load.html

  * igt@xe_multigpu_svm@mgpu-coherency-basic:
    - shard-bmg:          NOTRUN -> [SKIP][123] ([Intel XE#6964])
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-3/igt@xe_multigpu_svm@mgpu-coherency-basic.html

  * igt@xe_page_reclaim@invalid-1g:
    - shard-bmg:          NOTRUN -> [SKIP][124] ([Intel XE#7793])
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-3/igt@xe_page_reclaim@invalid-1g.html

  * igt@xe_page_reclaim@prl-invalidate-full:
    - shard-lnl:          NOTRUN -> [SKIP][125] ([Intel XE#7793])
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-5/igt@xe_page_reclaim@prl-invalidate-full.html

  * igt@xe_pat@xa-app-transient-media-off:
    - shard-bmg:          NOTRUN -> [SKIP][126] ([Intel XE#7590])
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-3/igt@xe_pat@xa-app-transient-media-off.html

  * igt@xe_pm@d3cold-basic-exec:
    - shard-lnl:          NOTRUN -> [SKIP][127] ([Intel XE#2284] / [Intel XE#366] / [Intel XE#7370])
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-5/igt@xe_pm@d3cold-basic-exec.html

  * igt@xe_pm@d3cold-i2c:
    - shard-bmg:          NOTRUN -> [SKIP][128] ([Intel XE#5694] / [Intel XE#7370])
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-5/igt@xe_pm@d3cold-i2c.html

  * igt@xe_prefetch_fault@prefetch-fault-svm:
    - shard-lnl:          NOTRUN -> [SKIP][129] ([Intel XE#7599])
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-5/igt@xe_prefetch_fault@prefetch-fault-svm.html

  * igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
    - shard-bmg:          NOTRUN -> [SKIP][130] ([Intel XE#944]) +1 other test skip
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-3/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html

  * igt@xe_query@multigpu-query-topology-l3-bank-mask:
    - shard-lnl:          NOTRUN -> [SKIP][131] ([Intel XE#944])
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-5/igt@xe_query@multigpu-query-topology-l3-bank-mask.html

  * igt@xe_sriov_vfio@open-basic:
    - shard-lnl:          NOTRUN -> [SKIP][132] ([Intel XE#7724])
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-5/igt@xe_sriov_vfio@open-basic.html

  * igt@xe_vm@overcommit-nonfault-vram-no-lr:
    - shard-lnl:          NOTRUN -> [SKIP][133] ([Intel XE#7892])
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-5/igt@xe_vm@overcommit-nonfault-vram-no-lr.html

  
#### Possible fixes ####

  * igt@core_hotunplug@unbind-rebind:
    - shard-bmg:          [SKIP][134] ([Intel XE#6779]) -> [PASS][135]
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@core_hotunplug@unbind-rebind.html
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-1/igt@core_hotunplug@unbind-rebind.html

  * igt@kms_addfb_basic@unused-pitches:
    - shard-bmg:          [SKIP][136] ([Intel XE#6557] / [Intel XE#6703]) -> [PASS][137]
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@kms_addfb_basic@unused-pitches.html
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-1/igt@kms_addfb_basic@unused-pitches.html

  * igt@kms_async_flips@alternate-sync-async-flip-atomic:
    - shard-bmg:          [FAIL][138] ([Intel XE#3718] / [Intel XE#6078]) -> [PASS][139]
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip-atomic.html

  * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-hdmi-a-3:
    - shard-bmg:          [FAIL][140] ([Intel XE#6078]) -> [PASS][141]
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-hdmi-a-3.html
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-hdmi-a-3.html

  * igt@kms_flip@flip-vs-expired-vblank@c-edp1:
    - shard-lnl:          [FAIL][142] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][143] +1 other test pass
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html

  * igt@kms_frontbuffer_tracking@fbcpsr-suspend:
    - shard-lnl:          [ABORT][144] ([Intel XE#2625]) -> [PASS][145]
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html

  * igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb16161616f:
    - shard-bmg:          [SKIP][146] ([Intel XE#7915]) -> [PASS][147] +1 other test pass
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-3/igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb16161616f.html
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-9/igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb16161616f.html

  * igt@kms_plane_lowres@tiling-4:
    - shard-bmg:          [ABORT][148] ([Intel XE#5545] / [Intel XE#7774] / [Intel XE#7814] / [Intel XE#7960]) -> [PASS][149]
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@kms_plane_lowres@tiling-4.html
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-3/igt@kms_plane_lowres@tiling-4.html

  * igt@kms_plane_lowres@tiling-4@pipe-a-dp-2:
    - shard-bmg:          [ABORT][150] ([Intel XE#5545] / [Intel XE#7774] / [Intel XE#7814]) -> [PASS][151]
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@kms_plane_lowres@tiling-4@pipe-a-dp-2.html
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-3/igt@kms_plane_lowres@tiling-4@pipe-a-dp-2.html

  * igt@kms_plane_lowres@tiling-4@pipe-a-hdmi-a-3:
    - shard-bmg:          [FAIL][152] ([Intel XE#8018]) -> [PASS][153]
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@kms_plane_lowres@tiling-4@pipe-a-hdmi-a-3.html
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-3/igt@kms_plane_lowres@tiling-4@pipe-a-hdmi-a-3.html

  * igt@xe_exec_system_allocator@many-large-execqueues-mmap-new:
    - shard-bmg:          [SKIP][154] ([Intel XE#6703]) -> [PASS][155] +81 other tests pass
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@xe_exec_system_allocator@many-large-execqueues-mmap-new.html
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-1/igt@xe_exec_system_allocator@many-large-execqueues-mmap-new.html

  * igt@xe_exec_system_allocator@process-many-stride-malloc-multi-fault:
    - shard-bmg:          [DMESG-WARN][156] ([Intel XE#7774]) -> [PASS][157]
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@xe_exec_system_allocator@process-many-stride-malloc-multi-fault.html
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-1/igt@xe_exec_system_allocator@process-many-stride-malloc-multi-fault.html

  * igt@xe_wedged@wedged-mode-toggle:
    - shard-lnl:          [ABORT][158] ([Intel XE#8007]) -> [PASS][159]
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-lnl-3/igt@xe_wedged@wedged-mode-toggle.html
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-lnl-2/igt@xe_wedged@wedged-mode-toggle.html

  
#### Warnings ####

  * igt@kms_big_fb@4-tiled-32bpp-rotate-270:
    - shard-bmg:          [SKIP][160] ([Intel XE#6703]) -> [SKIP][161] ([Intel XE#2327])
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-1/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
    - shard-bmg:          [SKIP][162] ([Intel XE#6703]) -> [SKIP][163] ([Intel XE#1124]) +2 other tests skip
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html

  * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs:
    - shard-bmg:          [SKIP][164] ([Intel XE#6703]) -> [SKIP][165] ([Intel XE#2887]) +1 other test skip
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-1/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html

  * igt@kms_chamelium_audio@hdmi-audio-edid:
    - shard-bmg:          [SKIP][166] ([Intel XE#6703]) -> [SKIP][167] ([Intel XE#2252])
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@kms_chamelium_audio@hdmi-audio-edid.html
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-1/igt@kms_chamelium_audio@hdmi-audio-edid.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling:
    - shard-bmg:          [SKIP][168] ([Intel XE#6703]) -> [SKIP][169] ([Intel XE#7178] / [Intel XE#7351])
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html

  * igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw:
    - shard-bmg:          [SKIP][170] ([Intel XE#6703]) -> [SKIP][171] ([Intel XE#2311]) +6 other tests skip
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render:
    - shard-bmg:          [SKIP][172] ([Intel XE#6703]) -> [SKIP][173] ([Intel XE#4141])
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrshdr-argb161616f-draw-blt:
    - shard-bmg:          [SKIP][174] ([Intel XE#6703]) -> [SKIP][175] ([Intel XE#7061])
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrshdr-argb161616f-draw-blt.html
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrshdr-argb161616f-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-render:
    - shard-bmg:          [SKIP][176] ([Intel XE#6703]) -> [SKIP][177] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-render.html
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-indfb-plflip-blt:
    - shard-bmg:          [SKIP][178] ([Intel XE#6703]) -> [SKIP][179] ([Intel XE#2313]) +4 other tests skip
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-indfb-plflip-blt.html
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-indfb-plflip-blt.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-bmg:          [SKIP][180] ([Intel XE#3544] / [Intel XE#7915] / [Intel XE#7916]) -> [SKIP][181] ([Intel XE#3544] / [Intel XE#7916])
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-8/igt@kms_hdr@brightness-with-hdr.html
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-2/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-3-xrgb2101010:
    - shard-bmg:          [SKIP][182] ([Intel XE#7915]) -> [SKIP][183] ([Intel XE#7916]) +1 other test skip
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-8/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-3-xrgb2101010.html
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-2/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-3-xrgb2101010.html

  * igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping:
    - shard-bmg:          [SKIP][184] ([Intel XE#6703]) -> [SKIP][185] ([Intel XE#7283])
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-1/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html

  * igt@kms_psr@fbc-psr-sprite-plane-onoff:
    - shard-bmg:          [SKIP][186] ([Intel XE#6703]) -> [SKIP][187] ([Intel XE#2234] / [Intel XE#2850])
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@kms_psr@fbc-psr-sprite-plane-onoff.html
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-1/igt@kms_psr@fbc-psr-sprite-plane-onoff.html

  * igt@kms_setmode@invalid-clone-exclusive-crtc:
    - shard-bmg:          [SKIP][188] ([Intel XE#6703]) -> [SKIP][189] ([Intel XE#1435])
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@kms_setmode@invalid-clone-exclusive-crtc.html
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-1/igt@kms_setmode@invalid-clone-exclusive-crtc.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-bmg:          [SKIP][190] ([Intel XE#2426] / [Intel XE#5848]) -> [FAIL][191] ([Intel XE#1729] / [Intel XE#7424])
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern.html
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_vrr@lobf:
    - shard-bmg:          [SKIP][192] ([Intel XE#8183]) -> [SKIP][193] ([Intel XE#2168] / [Intel XE#7444])
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@kms_vrr@lobf.html
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-1/igt@kms_vrr@lobf.html

  * igt@xe_evict@evict-small-multi-queue-priority-cm:
    - shard-bmg:          [SKIP][194] ([Intel XE#6703]) -> [SKIP][195] ([Intel XE#7140])
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@xe_evict@evict-small-multi-queue-priority-cm.html
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-1/igt@xe_evict@evict-small-multi-queue-priority-cm.html

  * igt@xe_exec_basic@multigpu-no-exec-basic:
    - shard-bmg:          [SKIP][196] ([Intel XE#6703]) -> [SKIP][197] ([Intel XE#2322] / [Intel XE#7372])
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@xe_exec_basic@multigpu-no-exec-basic.html
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-1/igt@xe_exec_basic@multigpu-no-exec-basic.html

  * igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind:
    - shard-bmg:          [SKIP][198] ([Intel XE#6703]) -> [SKIP][199] ([Intel XE#7136]) +1 other test skip
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind.html
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-1/igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind.html

  * igt@xe_exec_multi_queue@many-queues-userptr-invalidate:
    - shard-bmg:          [SKIP][200] ([Intel XE#6703]) -> [SKIP][201] ([Intel XE#6874]) +2 other tests skip
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@xe_exec_multi_queue@many-queues-userptr-invalidate.html
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-1/igt@xe_exec_multi_queue@many-queues-userptr-invalidate.html

  * igt@xe_page_reclaim@boundary-split:
    - shard-bmg:          [SKIP][202] ([Intel XE#6703]) -> [SKIP][203] ([Intel XE#7793])
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5127-6b6931ea69504481efd3df1cc99765141feb178c/shard-bmg-2/igt@xe_page_reclaim@boundary-split.html
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/shard-bmg-1/igt@xe_page_reclaim@boundary-split.html

  
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
  [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
  [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
  [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
  [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
  [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
  [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
  [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
  [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
  [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
  [Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694
  [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
  [Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586
  [Intel XE#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078
  [Intel XE#6196]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6196
  [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
  [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
  [Intel XE#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703
  [Intel XE#6779]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6779
  [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
  [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
  [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
  [Intel XE#7098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7098
  [Intel XE#7130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130
  [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
  [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
  [Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
  [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
  [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
  [Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304
  [Intel XE#7323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7323
  [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
  [Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
  [Intel XE#7345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7345
  [Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349
  [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
  [Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
  [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
  [Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
  [Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
  [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
  [Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
  [Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
  [Intel XE#7378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7378
  [Intel XE#7384]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7384
  [Intel XE#7405]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7405
  [Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
  [Intel XE#7444]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7444
  [Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
  [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
  [Intel XE#7599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7599
  [Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
  [Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642
  [Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
  [Intel XE#7724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7724
  [Intel XE#7760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7760
  [Intel XE#7774]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7774
  [Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
  [Intel XE#7814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7814
  [Intel XE#7865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7865
  [Intel XE#7866]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7866
  [Intel XE#7892]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7892
  [Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905
  [Intel XE#7915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7915
  [Intel XE#7916]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7916
  [Intel XE#7960]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7960
  [Intel XE#7980]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7980
  [Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007
  [Intel XE#8018]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8018
  [Intel XE#8159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8159
  [Intel XE#8183]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8183
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


Build changes
-------------

  * Linux: xe-5127-6b6931ea69504481efd3df1cc99765141feb178c -> xe-pw-164513v5

  IGT_8937: 8937
  xe-5127-6b6931ea69504481efd3df1cc99765141feb178c: 6b6931ea69504481efd3df1cc99765141feb178c
  xe-pw-164513v5: 164513v5

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164513v5/index.html

[-- Attachment #2: Type: text/html, Size: 63843 bytes --]

^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: [PATCH 10/11] drm/i915/dp: Enable AS SDP whenever VRR is possible or PR !async
  2026-05-26  6:43   ` [PATCH 10/11] drm/i915/dp: Enable AS SDP whenever VRR is possible or PR !async Ankit Nautiyal
@ 2026-05-26 14:04     ` Ville Syrjälä
  2026-05-26 15:15       ` Nautiyal, Ankit K
  0 siblings, 1 reply; 22+ messages in thread
From: Ville Syrjälä @ 2026-05-26 14:04 UTC (permalink / raw)
  To: Ankit Nautiyal; +Cc: intel-gfx, intel-xe

On Tue, May 26, 2026 at 12:13:09PM +0530, Ankit Nautiyal wrote:
> Currently AS SDP is only configured when VRR is enabled.
> With optimized guardband, we also need to account for wakeup time and other
> relevant details that depend on the AS SDP position whenever AS SDP is
> enabled. If a feature enabling AS SDP gets turned on later (after modeset),
> the guardband might not be sufficient and may need to increase, triggering
> a full modeset.
> 
> Additionally, for Panel Replay with Aux-less ALPM where the sink does
> not support asynchronous video timing in PR active, the source must
> keep transmitting Adaptive-Sync SDPs while PR is active.
> 
> So, always send AS SDP whenever there is a possibility to use it for VRR
> OR for Panel Replay for synchronization.
> 
> v2: Check if AS SDP can be used for synchronization for VRR or PR. (Ville)
> v3: Use intel_psr_needs_alpm_aux_less() instead of
>     intel_alpm_is_alpm_aux_less() to avoid including the LOBF case. (Ville)
>     Modify the commit message and subject.
> 
> Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
> ---
>  drivers/gpu/drm/i915/display/intel_dp.c | 6 +++++-
>  1 file changed, 5 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
> index a3aa0dadf0e1..87d7857fbafa 100644
> --- a/drivers/gpu/drm/i915/display/intel_dp.c
> +++ b/drivers/gpu/drm/i915/display/intel_dp.c
> @@ -3181,7 +3181,11 @@ static bool intel_dp_needs_as_sdp(struct intel_dp *intel_dp,
>  	if (drm_dp_is_branch(intel_dp->dpcd))
>  		return false;
>  
> -	return crtc_state->vrr.enable;
> +	if (intel_psr_needs_alpm_aux_less(intel_dp, crtc_state) &&

That depends on stuff computed by intel_psr_compute_config() but
currently that is called after intel_dp_compute_as_sdp() (which
is where intel_dp_needs_as_sdp() gets called). I can't immediately
see any other dependencies between those two functions so looks
like we could just reorder the calls.

> +	    !intel_psr_pr_async_video_timing_supported(intel_dp))
> +		return true;
> +
> +	return intel_vrr_possible(crtc_state);
>  }
>  
>  static void intel_dp_compute_as_sdp(struct intel_dp *intel_dp,
> -- 
> 2.45.2

-- 
Ville Syrjälä
Intel

^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: [PATCH 10/11] drm/i915/dp: Enable AS SDP whenever VRR is possible or PR !async
  2026-05-26 14:04     ` Ville Syrjälä
@ 2026-05-26 15:15       ` Nautiyal, Ankit K
  0 siblings, 0 replies; 22+ messages in thread
From: Nautiyal, Ankit K @ 2026-05-26 15:15 UTC (permalink / raw)
  To: Ville Syrjälä; +Cc: intel-gfx, intel-xe


On 5/26/2026 7:34 PM, Ville Syrjälä wrote:
> On Tue, May 26, 2026 at 12:13:09PM +0530, Ankit Nautiyal wrote:
>> Currently AS SDP is only configured when VRR is enabled.
>> With optimized guardband, we also need to account for wakeup time and other
>> relevant details that depend on the AS SDP position whenever AS SDP is
>> enabled. If a feature enabling AS SDP gets turned on later (after modeset),
>> the guardband might not be sufficient and may need to increase, triggering
>> a full modeset.
>>
>> Additionally, for Panel Replay with Aux-less ALPM where the sink does
>> not support asynchronous video timing in PR active, the source must
>> keep transmitting Adaptive-Sync SDPs while PR is active.
>>
>> So, always send AS SDP whenever there is a possibility to use it for VRR
>> OR for Panel Replay for synchronization.
>>
>> v2: Check if AS SDP can be used for synchronization for VRR or PR. (Ville)
>> v3: Use intel_psr_needs_alpm_aux_less() instead of
>>      intel_alpm_is_alpm_aux_less() to avoid including the LOBF case. (Ville)
>>      Modify the commit message and subject.
>>
>> Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
>> ---
>>   drivers/gpu/drm/i915/display/intel_dp.c | 6 +++++-
>>   1 file changed, 5 insertions(+), 1 deletion(-)
>>
>> diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
>> index a3aa0dadf0e1..87d7857fbafa 100644
>> --- a/drivers/gpu/drm/i915/display/intel_dp.c
>> +++ b/drivers/gpu/drm/i915/display/intel_dp.c
>> @@ -3181,7 +3181,11 @@ static bool intel_dp_needs_as_sdp(struct intel_dp *intel_dp,
>>   	if (drm_dp_is_branch(intel_dp->dpcd))
>>   		return false;
>>   
>> -	return crtc_state->vrr.enable;
>> +	if (intel_psr_needs_alpm_aux_less(intel_dp, crtc_state) &&
> That depends on stuff computed by intel_psr_compute_config() but
> currently that is called after intel_dp_compute_as_sdp() (which
> is where intel_dp_needs_as_sdp() gets called). I can't immediately
> see any other dependencies between those two functions so looks
> like we could just reorder the calls.

Ohh yes, I had the patch for this, somehow got missed :

https://lore.kernel.org/intel-gfx/20260223134431.1639308-8-ankit.k.nautiyal@intel.com/

I will re-order and send again.

Thanks for catching this.


Regards,

Ankit

>
>> +	    !intel_psr_pr_async_video_timing_supported(intel_dp))
>> +		return true;
>> +
>> +	return intel_vrr_possible(crtc_state);
>>   }
>>   
>>   static void intel_dp_compute_as_sdp(struct intel_dp *intel_dp,
>> -- 
>> 2.45.2

^ permalink raw reply	[flat|nested] 22+ messages in thread

end of thread, other threads:[~2026-05-26 15:15 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-25  5:22 [PATCH 00/11] Fix Adaptive-Sync SDP for PR with Link ON + Auxless-ALPM Ankit Nautiyal
2026-05-25  5:22 ` [PATCH 01/11] drm/i915/psr: Add helper to get Async Video timing support in PR active Ankit Nautiyal
2026-05-25  5:22 ` [PATCH 02/11] drm/i915/dp: Add member to intel_dp to store AS SDP v2 support Ankit Nautiyal
2026-05-25  5:22 ` [PATCH 03/11] drm/i915/dp: Allow AS SDP only if v2 is supported Ankit Nautiyal
2026-05-25  5:22 ` [PATCH 04/11] drm/i915/psr: Write the PR config DPCDs in burst mode Ankit Nautiyal
2026-05-25  5:22 ` [PATCH 05/11] drm/i915/display: Add helper for AS SDP transmission time selection Ankit Nautiyal
2026-05-25  5:22 ` [PATCH 06/11] drm/i915/psr: Program Panel Replay CONFIG3 using AS SDP transmission time Ankit Nautiyal
2026-05-25  5:22 ` [PATCH 07/11] drm/i915/dp: Set relevant Downspread Ctrl DPCD bits for PR + Auxless ALPM Ankit Nautiyal
2026-05-25  5:22 ` [PATCH 08/11] drm/i915/dp: Program AS SDP DB[1:0] for PR with Link off Ankit Nautiyal
2026-05-25  5:22 ` [PATCH 09/11] drm/i915/dp: Compute and include coasting vtotal for AS SDP Ankit Nautiyal
2026-05-25  5:22 ` [PATCH 10/11] drm/i915/dp: Enable AS SDP whenever VRR is possible Ankit Nautiyal
2026-05-25 14:24   ` Ville Syrjälä
2026-05-26  6:43   ` [PATCH 10/11] drm/i915/dp: Enable AS SDP whenever VRR is possible or PR !async Ankit Nautiyal
2026-05-26 14:04     ` Ville Syrjälä
2026-05-26 15:15       ` Nautiyal, Ankit K
2026-05-25  5:22 ` [PATCH 11/11] drm/i915/dp: Account for AS_SDP guardband only when enabled Ankit Nautiyal
2026-05-25  6:05 ` ✓ CI.KUnit: success for Fix Adaptive-Sync SDP for PR with Link ON + Auxless-ALPM (rev4) Patchwork
2026-05-25  6:43 ` ✓ Xe.CI.BAT: " Patchwork
2026-05-25  8:58 ` ✓ Xe.CI.FULL: " Patchwork
2026-05-26  7:07 ` ✓ CI.KUnit: success for Fix Adaptive-Sync SDP for PR with Link ON + Auxless-ALPM (rev5) Patchwork
2026-05-26  7:52 ` ✓ Xe.CI.BAT: " Patchwork
2026-05-26  9:03 ` ✓ Xe.CI.FULL: " Patchwork

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox