public inbox for intel-xe@lists.freedesktop.org
 help / color / mirror / Atom feed
* [RESEND PATCH 0/7] AS SDP cleanups and additions for Panel Replay + VRR
@ 2026-04-24  9:34 Ankit Nautiyal
  2026-04-24  9:34 ` [RESEND PATCH 1/7] drm/dp: Rename and relocate AS SDP payload field masks Ankit Nautiyal
                   ` (10 more replies)
  0 siblings, 11 replies; 16+ messages in thread
From: Ankit Nautiyal @ 2026-04-24  9:34 UTC (permalink / raw)
  To: intel-gfx, intel-xe, dri-devel; +Cc: ville.syrjala, Ankit Nautiyal

Resending with dri-devel added to the recipients, which was
missed in the original submission.

This is a subset of patches separated from the series at
https://patchwork.freedesktop.org/series/164512/ for merging.

These are drm-core (drm/dp) patches that clean up and extend the
Adaptive Sync SDP definitions and helpers in preparation for
Panel Replay + VRR support.

Ankit Nautiyal (7):
  drm/dp: Rename and relocate AS SDP payload field masks
  drm/dp: Clean up DPRX feature enumeration macros
  drm/dp: Add bits for AS SDP FAVT Payload Fields Parsing support
  drm/dp: Add DPCD for configuring AS SDP for PR + VRR
  drm/dp: Store coasting vtotal in struct drm_dp_as_sdp
  drm/dp: Add a helper to get the SDP type as a string
  drm/dp: Add target_rr_divider field in AS SDP logging

 drivers/gpu/drm/display/drm_dp_helper.c | 39 ++++++++++++++++++++++---
 drivers/gpu/drm/i915/display/intel_dp.c |  4 +--
 include/drm/display/drm_dp.h            | 20 +++++++++----
 include/drm/display/drm_dp_helper.h     |  1 +
 4 files changed, 52 insertions(+), 12 deletions(-)

-- 
2.45.2


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

* [RESEND PATCH 1/7] drm/dp: Rename and relocate AS SDP payload field masks
  2026-04-24  9:34 [RESEND PATCH 0/7] AS SDP cleanups and additions for Panel Replay + VRR Ankit Nautiyal
@ 2026-04-24  9:34 ` Ankit Nautiyal
  2026-04-24  9:34 ` [RESEND PATCH 2/7] drm/dp: Clean up DPRX feature enumeration macros Ankit Nautiyal
                   ` (9 subsequent siblings)
  10 siblings, 0 replies; 16+ messages in thread
From: Ankit Nautiyal @ 2026-04-24  9:34 UTC (permalink / raw)
  To: intel-gfx, intel-xe, dri-devel; +Cc: ville.syrjala, Ankit Nautiyal

The AS SDP payload field masks were misnamed and placed under the DPRX
feature enumeration list. These are not DPRX capability bits, but are
payload field masks for the Adaptive Sync SDP.

Relocate both masks next to the AS SDP definitions.
Update users to the corrected names. No functional change.

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 ++--
 include/drm/display/drm_dp.h            | 5 +++--
 2 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
index 35b8fb5740aa..893cf0252460 100644
--- a/drivers/gpu/drm/i915/display/intel_dp.c
+++ b/drivers/gpu/drm/i915/display/intel_dp.c
@@ -5354,8 +5354,8 @@ int intel_dp_as_sdp_unpack(struct drm_dp_as_sdp *as_sdp,
 	if ((sdp->sdp_header.HB3 & 0x3F) != 9)
 		return -EINVAL;
 
-	as_sdp->length = sdp->sdp_header.HB3 & DP_ADAPTIVE_SYNC_SDP_LENGTH;
-	as_sdp->mode = sdp->db[0] & DP_ADAPTIVE_SYNC_SDP_OPERATION_MODE;
+	as_sdp->length = sdp->sdp_header.HB3 & DP_AS_SDP_LENGTH_MASK;
+	as_sdp->mode = sdp->db[0] & DP_AS_SDP_OPERATION_MODE_MASK;
 	as_sdp->vtotal = (sdp->db[2] << 8) | sdp->db[1];
 	as_sdp->target_rr = (u64)sdp->db[3] | ((u64)sdp->db[4] & 0x3);
 	as_sdp->target_rr_divider = sdp->db[4] & 0x20 ? true : false;
diff --git a/include/drm/display/drm_dp.h b/include/drm/display/drm_dp.h
index 8b15d3eeb716..4ea3b5b08a12 100644
--- a/include/drm/display/drm_dp.h
+++ b/include/drm/display/drm_dp.h
@@ -1204,8 +1204,6 @@
 
 #define DP_DPRX_FEATURE_ENUMERATION_LIST_CONT_1         0x2214 /* 2.0 E11 */
 # define DP_ADAPTIVE_SYNC_SDP_SUPPORTED    (1 << 0)
-# define DP_ADAPTIVE_SYNC_SDP_OPERATION_MODE		GENMASK(1, 0)
-# define DP_ADAPTIVE_SYNC_SDP_LENGTH				GENMASK(5, 0)
 # define DP_AS_SDP_FIRST_HALF_LINE_OR_3840_PIXEL_CYCLE_WINDOW_NOT_SUPPORTED (1 << 1)
 # define DP_VSC_EXT_SDP_FRAMEWORK_VERSION_1_SUPPORTED  (1 << 4)
 
@@ -1870,4 +1868,7 @@ enum operation_mode {
 	DP_AS_SDP_FAVT_TRR_REACHED = 0x03
 };
 
+#define DP_AS_SDP_OPERATION_MODE_MASK	GENMASK(1, 0)
+#define DP_AS_SDP_LENGTH_MASK		GENMASK(5, 0)
+
 #endif /* _DRM_DP_H_ */
-- 
2.45.2


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

* [RESEND PATCH 2/7] drm/dp: Clean up DPRX feature enumeration macros
  2026-04-24  9:34 [RESEND PATCH 0/7] AS SDP cleanups and additions for Panel Replay + VRR Ankit Nautiyal
  2026-04-24  9:34 ` [RESEND PATCH 1/7] drm/dp: Rename and relocate AS SDP payload field masks Ankit Nautiyal
@ 2026-04-24  9:34 ` Ankit Nautiyal
  2026-04-24  9:34 ` [RESEND PATCH 3/7] drm/dp: Add bits for AS SDP FAVT Payload Fields Parsing support Ankit Nautiyal
                   ` (8 subsequent siblings)
  10 siblings, 0 replies; 16+ messages in thread
From: Ankit Nautiyal @ 2026-04-24  9:34 UTC (permalink / raw)
  To: intel-gfx, intel-xe, dri-devel; +Cc: ville.syrjala, Ankit Nautiyal

Align the DP_DPRX feature enumeration macros for better readability and
consistency, and use the BIT() macro instead of open-coded shifts.

Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
 include/drm/display/drm_dp.h | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/include/drm/display/drm_dp.h b/include/drm/display/drm_dp.h
index 4ea3b5b08a12..49f0154eb93c 100644
--- a/include/drm/display/drm_dp.h
+++ b/include/drm/display/drm_dp.h
@@ -1202,10 +1202,10 @@
 # define DP_DPRX_SLEEP_WAKE_TIMEOUT_PERIOD_80_MS	0x04
 # define DP_DPRX_SLEEP_WAKE_TIMEOUT_PERIOD_100_MS	0x05
 
-#define DP_DPRX_FEATURE_ENUMERATION_LIST_CONT_1         0x2214 /* 2.0 E11 */
-# define DP_ADAPTIVE_SYNC_SDP_SUPPORTED    (1 << 0)
-# define DP_AS_SDP_FIRST_HALF_LINE_OR_3840_PIXEL_CYCLE_WINDOW_NOT_SUPPORTED (1 << 1)
-# define DP_VSC_EXT_SDP_FRAMEWORK_VERSION_1_SUPPORTED  (1 << 4)
+#define DP_DPRX_FEATURE_ENUMERATION_LIST_CONT_1					0x2214 /* 2.0 E11 */
+# define DP_ADAPTIVE_SYNC_SDP_SUPPORTED						BIT(0)
+# define DP_AS_SDP_FIRST_HALF_LINE_OR_3840_PIXEL_CYCLE_WINDOW_NOT_SUPPORTED	BIT(1)
+# define DP_VSC_EXT_SDP_FRAMEWORK_VERSION_1_SUPPORTED				BIT(4)
 
 #define DP_128B132B_SUPPORTED_LINK_RATES       0x2215 /* 2.0 */
 # define DP_UHBR10                             (1 << 0)
-- 
2.45.2


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

* [RESEND PATCH 3/7] drm/dp: Add bits for AS SDP FAVT Payload Fields Parsing support
  2026-04-24  9:34 [RESEND PATCH 0/7] AS SDP cleanups and additions for Panel Replay + VRR Ankit Nautiyal
  2026-04-24  9:34 ` [RESEND PATCH 1/7] drm/dp: Rename and relocate AS SDP payload field masks Ankit Nautiyal
  2026-04-24  9:34 ` [RESEND PATCH 2/7] drm/dp: Clean up DPRX feature enumeration macros Ankit Nautiyal
@ 2026-04-24  9:34 ` Ankit Nautiyal
  2026-04-24  9:34 ` [RESEND PATCH 4/7] drm/dp: Add DPCD for configuring AS SDP for PR + VRR Ankit Nautiyal
                   ` (7 subsequent siblings)
  10 siblings, 0 replies; 16+ messages in thread
From: Ankit Nautiyal @ 2026-04-24  9:34 UTC (permalink / raw)
  To: intel-gfx, intel-xe, dri-devel; +Cc: ville.syrjala, Ankit Nautiyal

DP v2.1 introduced support for sending AS SDP payload bytes for FAVT.
Add the relavant bits for the same.

Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
 include/drm/display/drm_dp.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/include/drm/display/drm_dp.h b/include/drm/display/drm_dp.h
index 49f0154eb93c..8d172863eba3 100644
--- a/include/drm/display/drm_dp.h
+++ b/include/drm/display/drm_dp.h
@@ -1205,6 +1205,7 @@
 #define DP_DPRX_FEATURE_ENUMERATION_LIST_CONT_1					0x2214 /* 2.0 E11 */
 # define DP_ADAPTIVE_SYNC_SDP_SUPPORTED						BIT(0)
 # define DP_AS_SDP_FIRST_HALF_LINE_OR_3840_PIXEL_CYCLE_WINDOW_NOT_SUPPORTED	BIT(1)
+# define DP_AS_SDP_FAVT_PAYLOAD_FIELDS_PARSING_SUPPORTED			BIT(2) /* 2.1 */
 # define DP_VSC_EXT_SDP_FRAMEWORK_VERSION_1_SUPPORTED				BIT(4)
 
 #define DP_128B132B_SUPPORTED_LINK_RATES       0x2215 /* 2.0 */
-- 
2.45.2


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

* [RESEND PATCH 4/7] drm/dp: Add DPCD for configuring AS SDP for PR + VRR
  2026-04-24  9:34 [RESEND PATCH 0/7] AS SDP cleanups and additions for Panel Replay + VRR Ankit Nautiyal
                   ` (2 preceding siblings ...)
  2026-04-24  9:34 ` [RESEND PATCH 3/7] drm/dp: Add bits for AS SDP FAVT Payload Fields Parsing support Ankit Nautiyal
@ 2026-04-24  9:34 ` Ankit Nautiyal
  2026-04-24  9:34 ` [RESEND PATCH 5/7] drm/dp: Store coasting vtotal in struct drm_dp_as_sdp Ankit Nautiyal
                   ` (6 subsequent siblings)
  10 siblings, 0 replies; 16+ messages in thread
From: Ankit Nautiyal @ 2026-04-24  9:34 UTC (permalink / raw)
  To: intel-gfx, intel-xe, dri-devel; +Cc: ville.syrjala, Ankit Nautiyal

Add additional DPCDs required to be configured to support VRR with Panel
Replay. These DPCDs are specifically required for configuring Adaptive Sync
SDP and are introduced in DP v2.1.

v2:
 - Correct the shift for the bits. (Ville)
 - Add DP_PR_ prefix for the PR-related fields.
v3:
 - Use macro values in their shifted form to match the convention. (Ville)
v4:
 - Add macro for the mask. (Ville)

Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
 include/drm/display/drm_dp.h | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/include/drm/display/drm_dp.h b/include/drm/display/drm_dp.h
index 8d172863eba3..829e4d98d61c 100644
--- a/include/drm/display/drm_dp.h
+++ b/include/drm/display/drm_dp.h
@@ -718,6 +718,12 @@
 #define DP_EXTENDED_DPRX_SLEEP_WAKE_TIMEOUT_GRANT	    0x119   /* 1.4a */
 # define DP_DPRX_SLEEP_WAKE_TIMEOUT_PERIOD_GRANTED	    (1 << 0)
 
+#define PANEL_REPLAY_CONFIG3			0x11a /* DP 2.1 */
+# define DP_PR_AS_SDP_SETUP_TIME_MASK		(3 << 6)
+# define DP_PR_AS_SDP_SETUP_TIME_T1		(0 << 6)
+# define DP_PR_AS_SDP_SETUP_TIME_DYNAMIC	(1 << 6) /* DP 2.1 Table 2-227 */
+# define DP_PR_AS_SDP_SETUP_TIME_T2		(2 << 6)
+
 #define DP_FEC_CONFIGURATION		    0x120    /* 1.4 */
 # define DP_FEC_READY			    (1 << 0)
 # define DP_FEC_ERR_COUNT_SEL_MASK	    (7 << 1)
-- 
2.45.2


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

* [RESEND PATCH 5/7] drm/dp: Store coasting vtotal in struct drm_dp_as_sdp
  2026-04-24  9:34 [RESEND PATCH 0/7] AS SDP cleanups and additions for Panel Replay + VRR Ankit Nautiyal
                   ` (3 preceding siblings ...)
  2026-04-24  9:34 ` [RESEND PATCH 4/7] drm/dp: Add DPCD for configuring AS SDP for PR + VRR Ankit Nautiyal
@ 2026-04-24  9:34 ` Ankit Nautiyal
  2026-04-27 12:42   ` Ville Syrjälä
  2026-04-24  9:34 ` [RESEND PATCH 6/7] drm/dp: Add a helper to get the SDP type as a string Ankit Nautiyal
                   ` (5 subsequent siblings)
  10 siblings, 1 reply; 16+ messages in thread
From: Ankit Nautiyal @ 2026-04-24  9:34 UTC (permalink / raw)
  To: intel-gfx, intel-xe, dri-devel; +Cc: ville.syrjala, Ankit Nautiyal

Add new field in struct drm_dp_as_sdp to store coasting vtotal.
This is used by the sinks that support Panel Replay and Asynchronous
timing during PR Active to derive refresh rate, when AS SDP transmission
is stopped by the source.

Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
 drivers/gpu/drm/display/drm_dp_helper.c | 1 +
 include/drm/display/drm_dp_helper.h     | 1 +
 2 files changed, 2 insertions(+)

diff --git a/drivers/gpu/drm/display/drm_dp_helper.c b/drivers/gpu/drm/display/drm_dp_helper.c
index a697cc227e28..e29958f8b0b6 100644
--- a/drivers/gpu/drm/display/drm_dp_helper.c
+++ b/drivers/gpu/drm/display/drm_dp_helper.c
@@ -3512,6 +3512,7 @@ void drm_dp_as_sdp_log(struct drm_printer *p, const struct drm_dp_as_sdp *as_sdp
 	drm_printf(p, "    duration_incr_ms: %d\n", as_sdp->duration_incr_ms);
 	drm_printf(p, "    duration_decr_ms: %d\n", as_sdp->duration_decr_ms);
 	drm_printf(p, "    operation_mode: %d\n", as_sdp->mode);
+	drm_printf(p, "    coasting vtotal: %d\n", as_sdp->coasting_vtotal);
 }
 EXPORT_SYMBOL(drm_dp_as_sdp_log);
 
diff --git a/include/drm/display/drm_dp_helper.h b/include/drm/display/drm_dp_helper.h
index 1d0acd58f486..8c2d77a032f0 100644
--- a/include/drm/display/drm_dp_helper.h
+++ b/include/drm/display/drm_dp_helper.h
@@ -126,6 +126,7 @@ struct drm_dp_as_sdp {
 	int duration_decr_ms;
 	bool target_rr_divider;
 	enum operation_mode mode;
+	int coasting_vtotal;
 };
 
 void drm_dp_as_sdp_log(struct drm_printer *p,
-- 
2.45.2


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

* [RESEND PATCH 6/7] drm/dp: Add a helper to get the SDP type as a string
  2026-04-24  9:34 [RESEND PATCH 0/7] AS SDP cleanups and additions for Panel Replay + VRR Ankit Nautiyal
                   ` (4 preceding siblings ...)
  2026-04-24  9:34 ` [RESEND PATCH 5/7] drm/dp: Store coasting vtotal in struct drm_dp_as_sdp Ankit Nautiyal
@ 2026-04-24  9:34 ` Ankit Nautiyal
  2026-04-27 12:57   ` Ville Syrjälä
  2026-04-24  9:34 ` [RESEND PATCH 7/7] drm/dp: Add target_rr_divider field in AS SDP logging Ankit Nautiyal
                   ` (4 subsequent siblings)
  10 siblings, 1 reply; 16+ messages in thread
From: Ankit Nautiyal @ 2026-04-24  9:34 UTC (permalink / raw)
  To: intel-gfx, intel-xe, dri-devel; +Cc: ville.syrjala, Ankit Nautiyal

Introduce dp_sdp_type_get_name() to get the SDP type as a string.
Use this to log the SDP type based on the sdp_type fields of the
VSC and AS SDPs instead of the hardcoded strings.

While at it, rename "SDP : AS_SDP" to "SDP : Adaptive Sync"

Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
 drivers/gpu/drm/display/drm_dp_helper.c | 36 ++++++++++++++++++++++---
 1 file changed, 32 insertions(+), 4 deletions(-)

diff --git a/drivers/gpu/drm/display/drm_dp_helper.c b/drivers/gpu/drm/display/drm_dp_helper.c
index e29958f8b0b6..102328d9022d 100644
--- a/drivers/gpu/drm/display/drm_dp_helper.c
+++ b/drivers/gpu/drm/display/drm_dp_helper.c
@@ -3487,10 +3487,38 @@ static const char *dp_content_type_get_name(enum dp_content_type content_type)
 	}
 }
 
+static const char *dp_sdp_type_get_name(unsigned char type)
+{
+	switch (type) {
+	case DP_SDP_AUDIO_TIMESTAMP:
+		return "Audio Timestamp";
+	case DP_SDP_AUDIO_STREAM:
+		return "Audio Stream";
+	case DP_SDP_EXTENSION:
+		return "Extension";
+	case DP_SDP_AUDIO_COPYMANAGEMENT:
+		return "Audio Copy Management";
+	case DP_SDP_ISRC:
+		return "ISRC";
+	case DP_SDP_VSC:
+		return "VSC";
+	case DP_SDP_PPS:
+		return "PPS";
+	case DP_SDP_VSC_EXT_VESA:
+		return "VSC EXT VESA";
+	case DP_SDP_VSC_EXT_CEA:
+		return "VSC EXT CEA";
+	case DP_SDP_ADAPTIVE_SYNC:
+		return "Adaptive Sync";
+	default:
+		return "Unknown";
+	}
+}
+
 void drm_dp_vsc_sdp_log(struct drm_printer *p, const struct drm_dp_vsc_sdp *vsc)
 {
-	drm_printf(p, "DP SDP: VSC, revision %u, length %u\n",
-		   vsc->revision, vsc->length);
+	drm_printf(p, "DP SDP: %s, revision %u, length %u\n",
+		   dp_sdp_type_get_name(vsc->sdp_type), vsc->revision, vsc->length);
 	drm_printf(p, "    pixelformat: %s\n",
 		   dp_pixelformat_get_name(vsc->pixelformat));
 	drm_printf(p, "    colorimetry: %s\n",
@@ -3505,8 +3533,8 @@ EXPORT_SYMBOL(drm_dp_vsc_sdp_log);
 
 void drm_dp_as_sdp_log(struct drm_printer *p, const struct drm_dp_as_sdp *as_sdp)
 {
-	drm_printf(p, "DP SDP: AS_SDP, revision %u, length %u\n",
-		   as_sdp->revision, as_sdp->length);
+	drm_printf(p, "DP SDP: %s, revision %u, length %u\n",
+		   dp_sdp_type_get_name(as_sdp->sdp_type), as_sdp->revision, as_sdp->length);
 	drm_printf(p, "    vtotal: %d\n", as_sdp->vtotal);
 	drm_printf(p, "    target_rr: %d\n", as_sdp->target_rr);
 	drm_printf(p, "    duration_incr_ms: %d\n", as_sdp->duration_incr_ms);
-- 
2.45.2


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

* [RESEND PATCH 7/7] drm/dp: Add target_rr_divider field in AS SDP logging
  2026-04-24  9:34 [RESEND PATCH 0/7] AS SDP cleanups and additions for Panel Replay + VRR Ankit Nautiyal
                   ` (5 preceding siblings ...)
  2026-04-24  9:34 ` [RESEND PATCH 6/7] drm/dp: Add a helper to get the SDP type as a string Ankit Nautiyal
@ 2026-04-24  9:34 ` Ankit Nautiyal
  2026-04-27 12:58   ` Ville Syrjälä
  2026-04-24 10:22 ` ✗ CI.checkpatch: warning for AS SDP cleanups and additions for Panel Replay + VRR Patchwork
                   ` (3 subsequent siblings)
  10 siblings, 1 reply; 16+ messages in thread
From: Ankit Nautiyal @ 2026-04-24  9:34 UTC (permalink / raw)
  To: intel-gfx, intel-xe, dri-devel; +Cc: ville.syrjala, Ankit Nautiyal

The field target_rr_divider is missing from the AS SDP logging.
Add it and print the divider value (1.001 or 1.000) as per the DP 2.1 spec.

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

diff --git a/drivers/gpu/drm/display/drm_dp_helper.c b/drivers/gpu/drm/display/drm_dp_helper.c
index 102328d9022d..c8421099a3ac 100644
--- a/drivers/gpu/drm/display/drm_dp_helper.c
+++ b/drivers/gpu/drm/display/drm_dp_helper.c
@@ -3537,6 +3537,8 @@ void drm_dp_as_sdp_log(struct drm_printer *p, const struct drm_dp_as_sdp *as_sdp
 		   dp_sdp_type_get_name(as_sdp->sdp_type), as_sdp->revision, as_sdp->length);
 	drm_printf(p, "    vtotal: %d\n", as_sdp->vtotal);
 	drm_printf(p, "    target_rr: %d\n", as_sdp->target_rr);
+	drm_printf(p, "    target_rr_divider: %s\n",
+		   as_sdp->target_rr_divider ? "1.001" : "1.000");
 	drm_printf(p, "    duration_incr_ms: %d\n", as_sdp->duration_incr_ms);
 	drm_printf(p, "    duration_decr_ms: %d\n", as_sdp->duration_decr_ms);
 	drm_printf(p, "    operation_mode: %d\n", as_sdp->mode);
-- 
2.45.2


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

* ✗ CI.checkpatch: warning for AS SDP cleanups and additions for Panel Replay + VRR
  2026-04-24  9:34 [RESEND PATCH 0/7] AS SDP cleanups and additions for Panel Replay + VRR Ankit Nautiyal
                   ` (6 preceding siblings ...)
  2026-04-24  9:34 ` [RESEND PATCH 7/7] drm/dp: Add target_rr_divider field in AS SDP logging Ankit Nautiyal
@ 2026-04-24 10:22 ` Patchwork
  2026-04-24 10:23 ` ✓ CI.KUnit: success " Patchwork
                   ` (2 subsequent siblings)
  10 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2026-04-24 10:22 UTC (permalink / raw)
  To: Ankit Nautiyal; +Cc: intel-xe

== Series Details ==

Series: AS SDP cleanups and additions for Panel Replay + VRR
URL   : https://patchwork.freedesktop.org/series/165419/
State : warning

== Summary ==

+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
1f57ba1afceae32108bd24770069f764d940a0e4
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 5e82109b6b55baa8ee6ef12eccf2d3e25e83eea8
Author: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Date:   Fri Apr 24 15:04:24 2026 +0530

    drm/dp: Add target_rr_divider field in AS SDP logging
    
    The field target_rr_divider is missing from the AS SDP logging.
    Add it and print the divider value (1.001 or 1.000) as per the DP 2.1 spec.
    
    Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
+ /mt/dim checkpatch 15ccea1aede9d776f85ed002cf0df3c8ea8bd81e drm-intel
ef5e755c75c1 drm/dp: Rename and relocate AS SDP payload field masks
47fbec7a53e2 drm/dp: Clean up DPRX feature enumeration macros
aac33beb8222 drm/dp: Add bits for AS SDP FAVT Payload Fields Parsing support
91f64a099df6 drm/dp: Add DPCD for configuring AS SDP for PR + VRR
-:23: WARNING:BAD_SIGN_OFF: Duplicate signature
#23: 
Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>

total: 0 errors, 1 warnings, 0 checks, 12 lines checked
4967d8f469e5 drm/dp: Store coasting vtotal in struct drm_dp_as_sdp
7ca35c3381dc drm/dp: Add a helper to get the SDP type as a string
5e82109b6b55 drm/dp: Add target_rr_divider field in AS SDP logging



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

* ✓ CI.KUnit: success for AS SDP cleanups and additions for Panel Replay + VRR
  2026-04-24  9:34 [RESEND PATCH 0/7] AS SDP cleanups and additions for Panel Replay + VRR Ankit Nautiyal
                   ` (7 preceding siblings ...)
  2026-04-24 10:22 ` ✗ CI.checkpatch: warning for AS SDP cleanups and additions for Panel Replay + VRR Patchwork
@ 2026-04-24 10:23 ` Patchwork
  2026-04-24 11:29 ` ✓ Xe.CI.BAT: " Patchwork
  2026-04-24 12:35 ` ✗ Xe.CI.FULL: failure " Patchwork
  10 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2026-04-24 10:23 UTC (permalink / raw)
  To: Ankit Nautiyal; +Cc: intel-xe

== Series Details ==

Series: AS SDP cleanups and additions for Panel Replay + VRR
URL   : https://patchwork.freedesktop.org/series/165419/
State : success

== Summary ==

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

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

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

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



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

* ✓ Xe.CI.BAT: success for AS SDP cleanups and additions for Panel Replay + VRR
  2026-04-24  9:34 [RESEND PATCH 0/7] AS SDP cleanups and additions for Panel Replay + VRR Ankit Nautiyal
                   ` (8 preceding siblings ...)
  2026-04-24 10:23 ` ✓ CI.KUnit: success " Patchwork
@ 2026-04-24 11:29 ` Patchwork
  2026-04-24 12:35 ` ✗ Xe.CI.FULL: failure " Patchwork
  10 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2026-04-24 11:29 UTC (permalink / raw)
  To: Ankit Nautiyal; +Cc: intel-xe

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

== Series Details ==

Series: AS SDP cleanups and additions for Panel Replay + VRR
URL   : https://patchwork.freedesktop.org/series/165419/
State : success

== Summary ==

CI Bug Log - changes from xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e_BAT -> xe-pw-165419v1_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  Additional (1): bat-bmg-3 

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

  Here are the changes found in xe-pw-165419v1_BAT that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1:
    - bat-adlp-7:         [PASS][1] -> [DMESG-WARN][2] ([Intel XE#7483])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html

  * igt@xe_create@multigpu-create-massive-size:
    - bat-bmg-3:          NOTRUN -> [SKIP][3] ([Intel XE#2504] / [Intel XE#7319] / [Intel XE#7350])
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/bat-bmg-3/igt@xe_create@multigpu-create-massive-size.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind:
    - bat-bmg-3:          NOTRUN -> [SKIP][4] ([Intel XE#2322] / [Intel XE#7372]) +53 other tests skip
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/bat-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html

  * igt@xe_multigpu_svm@mgpu-latency-prefetch:
    - bat-bmg-3:          NOTRUN -> [SKIP][5] ([Intel XE#6964]) +20 other tests skip
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/bat-bmg-3/igt@xe_multigpu_svm@mgpu-latency-prefetch.html

  * igt@xe_peer2peer@read:
    - bat-bmg-3:          NOTRUN -> [SKIP][6] ([Intel XE#2427] / [Intel XE#6953] / [Intel XE#7326] / [Intel XE#7353]) +1 other test skip
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/bat-bmg-3/igt@xe_peer2peer@read.html

  * igt@xe_query@multigpu-query-pxp-status:
    - bat-bmg-3:          NOTRUN -> [SKIP][7] ([Intel XE#944]) +16 other tests skip
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/bat-bmg-3/igt@xe_query@multigpu-query-pxp-status.html

  
#### Possible fixes ####

  * igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1:
    - bat-adlp-7:         [DMESG-WARN][8] ([Intel XE#7483]) -> [PASS][9]
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html

  
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
  [Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504
  [Intel XE#6953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6953
  [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
  [Intel XE#7319]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7319
  [Intel XE#7326]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7326
  [Intel XE#7350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7350
  [Intel XE#7353]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7353
  [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
  [Intel XE#7483]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7483
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


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

  * Linux: xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e -> xe-pw-165419v1

  IGT_8872: e70db143b7bafe09bdea4d33188cb10d2070d0e5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e: 15ccea1aede9d776f85ed002cf0df3c8ea8bd81e
  xe-pw-165419v1: 165419v1

== Logs ==

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

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

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

* ✗ Xe.CI.FULL: failure for AS SDP cleanups and additions for Panel Replay + VRR
  2026-04-24  9:34 [RESEND PATCH 0/7] AS SDP cleanups and additions for Panel Replay + VRR Ankit Nautiyal
                   ` (9 preceding siblings ...)
  2026-04-24 11:29 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-04-24 12:35 ` Patchwork
  10 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2026-04-24 12:35 UTC (permalink / raw)
  To: Ankit Nautiyal; +Cc: intel-xe

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

== Series Details ==

Series: AS SDP cleanups and additions for Panel Replay + VRR
URL   : https://patchwork.freedesktop.org/series/165419/
State : failure

== Summary ==

CI Bug Log - changes from xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e_FULL -> xe-pw-165419v1_FULL
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with xe-pw-165419v1_FULL absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in xe-pw-165419v1_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
  to document this new failure mode, which will reduce false positives in CI.

  

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

  No changes in participating hosts

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in xe-pw-165419v1_FULL:

### IGT changes ###

#### Possible regressions ####

  * igt@xe_exec_balancer@many-cm-parallel-basic:
    - shard-bmg:          [PASS][1] -> [SKIP][2] +44 other tests skip
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-3/igt@xe_exec_balancer@many-cm-parallel-basic.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@xe_exec_balancer@many-cm-parallel-basic.html

  * igt@xe_exec_reset@long-spin-comp-reuse-many-preempt-threads:
    - shard-bmg:          [PASS][3] -> [INCOMPLETE][4]
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-8/igt@xe_exec_reset@long-spin-comp-reuse-many-preempt-threads.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@xe_exec_reset@long-spin-comp-reuse-many-preempt-threads.html

  * igt@xe_exec_sip@invalidinstr-disabled@drm_xe_engine_class_render0:
    - shard-bmg:          [PASS][5] -> [FAIL][6] +8 other tests fail
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-8/igt@xe_exec_sip@invalidinstr-disabled@drm_xe_engine_class_render0.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@xe_exec_sip@invalidinstr-disabled@drm_xe_engine_class_render0.html

  * igt@xe_exec_sip@invalidinstr-thread-enabled:
    - shard-bmg:          NOTRUN -> [FAIL][7] +1 other test fail
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@xe_exec_sip@invalidinstr-thread-enabled.html

  * igt@xe_oa@polling:
    - shard-bmg:          NOTRUN -> [SKIP][8] +9 other tests skip
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@xe_oa@polling.html

  * igt@xe_vm@vm-get-property-exercise:
    - shard-bmg:          [PASS][9] -> [DMESG-FAIL][10]
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-8/igt@xe_vm@vm-get-property-exercise.html
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@xe_vm@vm-get-property-exercise.html

  
#### Warnings ####

  * igt@kms_cdclk@mode-transition:
    - shard-bmg:          [SKIP][11] ([Intel XE#2724] / [Intel XE#7449]) -> [SKIP][12]
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-5/igt@kms_cdclk@mode-transition.html
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_cdclk@mode-transition.html

  * igt@xe_evict@evict-small-multi-queue-priority-cm:
    - shard-bmg:          [SKIP][13] ([Intel XE#7140]) -> [SKIP][14]
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-8/igt@xe_evict@evict-small-multi-queue-priority-cm.html
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@xe_evict@evict-small-multi-queue-priority-cm.html

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

  Here are the changes found in xe-pw-165419v1_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@fbdev@unaligned-write:
    - shard-bmg:          [PASS][15] -> [SKIP][16] ([Intel XE#2134])
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-3/igt@fbdev@unaligned-write.html
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@fbdev@unaligned-write.html

  * igt@kms_big_fb@yf-tiled-16bpp-rotate-0:
    - shard-bmg:          NOTRUN -> [SKIP][17] ([Intel XE#1124])
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-10/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html

  * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][18] ([Intel XE#2887]) +1 other test skip
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-10/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
    - shard-bmg:          NOTRUN -> [SKIP][19] ([Intel XE#2652]) +15 other tests skip
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc:
    - shard-bmg:          NOTRUN -> [SKIP][20] ([Intel XE#3432])
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-10/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][21] ([Intel XE#7825]) +27 other tests skip
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html

  * igt@kms_chamelium_color@ctm-max:
    - shard-bmg:          NOTRUN -> [SKIP][22] ([Intel XE#2325] / [Intel XE#7358])
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_chamelium_color@ctm-max.html

  * igt@kms_chamelium_hpd@dp-hpd-storm:
    - shard-bmg:          NOTRUN -> [SKIP][23] ([Intel XE#2252])
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_chamelium_hpd@dp-hpd-storm.html

  * igt@kms_color@deep-color:
    - shard-bmg:          [PASS][24] -> [SKIP][25] ([Intel XE#1511] / [Intel XE#3297])
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-8/igt@kms_color@deep-color.html
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_color@deep-color.html

  * igt@kms_color@legacy-gamma:
    - shard-bmg:          NOTRUN -> [SKIP][26] ([Intel XE#3297])
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_color@legacy-gamma.html

  * igt@kms_color_pipeline@plane-lut1d:
    - shard-bmg:          [PASS][27] -> [SKIP][28] ([Intel XE#7006])
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-8/igt@kms_color_pipeline@plane-lut1d.html
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_color_pipeline@plane-lut1d.html

  * igt@kms_color_pipeline@plane-lut1d-post-ctm3x4:
    - shard-bmg:          NOTRUN -> [SKIP][29] ([Intel XE#7006])
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_color_pipeline@plane-lut1d-post-ctm3x4.html

  * igt@kms_color_pipeline@plane-lut3d-green-only@pipe-b-plane-0:
    - shard-bmg:          NOTRUN -> [SKIP][30] ([Intel XE#6969]) +10 other tests skip
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-8/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-b-plane-0.html

  * igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-plane-2:
    - shard-bmg:          NOTRUN -> [SKIP][31] ([Intel XE#6969] / [Intel XE#7006])
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-8/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-plane-2.html

  * igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][32] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-3/igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2.html

  * igt@kms_content_protection@uevent-hdcp14@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][33] ([Intel XE#6707] / [Intel XE#7439])
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-8/igt@kms_content_protection@uevent-hdcp14@pipe-a-dp-2.html

  * igt@kms_cursor_crc@cursor-sliding-128x128:
    - shard-bmg:          [PASS][34] -> [SKIP][35] ([Intel XE#2320])
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-7/igt@kms_cursor_crc@cursor-sliding-128x128.html
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-6/igt@kms_cursor_crc@cursor-sliding-128x128.html

  * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
    - shard-bmg:          NOTRUN -> [SKIP][36] ([Intel XE#2316])
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html

  * igt@kms_flip@2x-wf_vblank-ts-check:
    - shard-bmg:          [PASS][37] -> [SKIP][38] ([Intel XE#2316]) +5 other tests skip
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-5/igt@kms_flip@2x-wf_vblank-ts-check.html
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_flip@2x-wf_vblank-ts-check.html

  * igt@kms_flip@basic-flip-vs-wf_vblank@b-dp2:
    - shard-bmg:          [PASS][39] -> [FAIL][40] ([Intel XE#6266]) +3 other tests fail
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-1/igt@kms_flip@basic-flip-vs-wf_vblank@b-dp2.html
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-6/igt@kms_flip@basic-flip-vs-wf_vblank@b-dp2.html

  * igt@kms_flip@flip-vs-expired-vblank:
    - shard-bmg:          NOTRUN -> [SKIP][41] ([Intel XE#2482]) +2 other tests skip
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_flip@flip-vs-expired-vblank.html

  * igt@kms_flip@plain-flip-interruptible:
    - shard-bmg:          [PASS][42] -> [SKIP][43] ([Intel XE#2482]) +6 other tests skip
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-3/igt@kms_flip@plain-flip-interruptible.html
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_flip@plain-flip-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
    - shard-bmg:          NOTRUN -> [SKIP][44] ([Intel XE#7178] / [Intel XE#7349])
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-10/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
    - shard-bmg:          [PASS][45] -> [SKIP][46] ([Intel XE#7178])
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
    - shard-bmg:          NOTRUN -> [SKIP][47] ([Intel XE#7178] / [Intel XE#7351])
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-10/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling:
    - shard-bmg:          [PASS][48] -> [SKIP][49] ([Intel XE#2380]) +2 other tests skip
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-upscaling:
    - shard-bmg:          NOTRUN -> [SKIP][50] ([Intel XE#2380])
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-upscaling.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][51] ([Intel XE#2311]) +4 other tests skip
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-10/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][52] ([Intel XE#2434] / [Intel XE#2548] / [Intel XE#6314]) +8 other tests skip
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][53] ([Intel XE#4141])
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][54] ([Intel XE#6314])
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary:
    - shard-bmg:          NOTRUN -> [SKIP][55] ([Intel XE#2313]) +1 other test skip
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][56] ([Intel XE#2548] / [Intel XE#6314]) +8 other tests skip
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_invalid_mode@bad-htotal:
    - shard-bmg:          NOTRUN -> [SKIP][57] ([Intel XE#2568])
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_invalid_mode@bad-htotal.html

  * igt@kms_invalid_mode@int-max-clock:
    - shard-bmg:          [PASS][58] -> [SKIP][59] ([Intel XE#2568]) +1 other test skip
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-8/igt@kms_invalid_mode@int-max-clock.html
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_invalid_mode@int-max-clock.html

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

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-bmg:          NOTRUN -> [SKIP][61] ([Intel XE#7591])
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping:
    - shard-bmg:          NOTRUN -> [SKIP][62] ([Intel XE#7283])
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html

  * igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping:
    - shard-bmg:          NOTRUN -> [SKIP][63] ([Intel XE#7111])
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping.html

  * igt@kms_plane@plane-panning-top-left:
    - shard-bmg:          [PASS][64] -> [SKIP][65] ([Intel XE#7111])
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-5/igt@kms_plane@plane-panning-top-left.html
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_plane@plane-panning-top-left.html

  * igt@kms_plane_alpha_blend@constant-alpha-max:
    - shard-bmg:          [PASS][66] -> [SKIP][67] ([Intel XE#7082]) +2 other tests skip
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-5/igt@kms_plane_alpha_blend@constant-alpha-max.html
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_plane_alpha_blend@constant-alpha-max.html

  * igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant:
    - shard-bmg:          NOTRUN -> [SKIP][68] ([Intel XE#7082])
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant.html

  * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a:
    - shard-bmg:          NOTRUN -> [SKIP][69] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a.html

  * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-c:
    - shard-bmg:          [PASS][70] -> [SKIP][71] ([Intel XE#2763] / [Intel XE#6886]) +24 other tests skip
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-c.html
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-c.html

  * igt@kms_pm_backlight@bad-brightness:
    - shard-bmg:          NOTRUN -> [SKIP][72] ([Intel XE#7376] / [Intel XE#870])
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_pm_backlight@bad-brightness.html

  * igt@kms_pm_dc@dc5-dpms:
    - shard-bmg:          [PASS][73] -> [FAIL][74] ([Intel XE#7340])
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-5/igt@kms_pm_dc@dc5-dpms.html
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_pm_dc@dc5-dpms.html

  * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
    - shard-bmg:          [PASS][75] -> [SKIP][76] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383])
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html

  * igt@kms_pm_rpm@modeset-stress-extra-wait:
    - shard-bmg:          NOTRUN -> [SKIP][77] ([Intel XE#1439] / [Intel XE#836])
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_pm_rpm@modeset-stress-extra-wait.html

  * igt@kms_pm_rpm@universal-planes-dpms:
    - shard-bmg:          [PASS][78] -> [SKIP][79] ([Intel XE#4886])
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-8/igt@kms_pm_rpm@universal-planes-dpms.html
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_pm_rpm@universal-planes-dpms.html

  * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
    - shard-bmg:          NOTRUN -> [SKIP][80] ([Intel XE#1489]) +2 other tests skip
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html

  * igt@kms_psr@psr-sprite-plane-move:
    - shard-bmg:          NOTRUN -> [SKIP][81] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_psr@psr-sprite-plane-move.html

  * igt@kms_sequence@get-idle:
    - shard-bmg:          [PASS][82] -> [SKIP][83] ([Intel XE#7825]) +51 other tests skip
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-5/igt@kms_sequence@get-idle.html
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_sequence@get-idle.html

  * igt@kms_vrr@flipline:
    - shard-bmg:          NOTRUN -> [SKIP][84] ([Intel XE#1499])
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-10/igt@kms_vrr@flipline.html

  * igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
    - shard-lnl:          [PASS][85] -> [FAIL][86] ([Intel XE#2142]) +1 other test fail
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-lnl-2/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-lnl-2/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html

  * igt@xe_eu_stall@invalid-sampling-rate:
    - shard-bmg:          [PASS][87] -> [SKIP][88] ([Intel XE#6568])
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-8/igt@xe_eu_stall@invalid-sampling-rate.html
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@xe_eu_stall@invalid-sampling-rate.html

  * igt@xe_eu_stall@unprivileged-access:
    - shard-bmg:          NOTRUN -> [SKIP][89] ([Intel XE#6568])
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@xe_eu_stall@unprivileged-access.html

  * igt@xe_eudebug_online@interrupt-reconnect:
    - shard-bmg:          NOTRUN -> [SKIP][90] ([Intel XE#7636]) +3 other tests skip
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@xe_eudebug_online@interrupt-reconnect.html

  * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate:
    - shard-bmg:          NOTRUN -> [SKIP][91] ([Intel XE#2322] / [Intel XE#7372]) +3 other tests skip
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-10/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate.html

  * igt@xe_exec_fault_mode@twice-bindexecqueue-prefetch:
    - shard-bmg:          NOTRUN -> [SKIP][92] ([Intel XE#7826]) +8 other tests skip
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@xe_exec_fault_mode@twice-bindexecqueue-prefetch.html

  * igt@xe_exec_fault_mode@twice-userptr-invalidate-race-imm:
    - shard-bmg:          [PASS][93] -> [SKIP][94] ([Intel XE#7826]) +23 other tests skip
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-5/igt@xe_exec_fault_mode@twice-userptr-invalidate-race-imm.html
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@xe_exec_fault_mode@twice-userptr-invalidate-race-imm.html

  * igt@xe_exec_multi_queue@many-queues-basic-smem:
    - shard-bmg:          NOTRUN -> [SKIP][95] ([Intel XE#6874]) +11 other tests skip
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-10/igt@xe_exec_multi_queue@many-queues-basic-smem.html

  * igt@xe_exec_system_allocator@process-many-new-nomemset:
    - shard-bmg:          [PASS][96] -> [SKIP][97] ([Intel XE#7824]) +311 other tests skip
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-3/igt@xe_exec_system_allocator@process-many-new-nomemset.html
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@xe_exec_system_allocator@process-many-new-nomemset.html

  * igt@xe_exec_system_allocator@twice-large-mmap-new-race-nomemset:
    - shard-bmg:          NOTRUN -> [SKIP][98] ([Intel XE#7824]) +77 other tests skip
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@xe_exec_system_allocator@twice-large-mmap-new-race-nomemset.html

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

  * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
    - shard-bmg:          [PASS][100] -> [SKIP][101] ([Intel XE#2229])
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-8/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html

  * igt@xe_mmap@pci-membarrier-parallel:
    - shard-bmg:          NOTRUN -> [SKIP][102] ([Intel XE#5100])
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@xe_mmap@pci-membarrier-parallel.html

  * igt@xe_multigpu_svm@mgpu-atomic-op-conflict:
    - shard-bmg:          NOTRUN -> [SKIP][103] ([Intel XE#6964])
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@xe_multigpu_svm@mgpu-atomic-op-conflict.html

  * igt@xe_pat@display-vs-wb-transient:
    - shard-bmg:          [PASS][104] -> [SKIP][105] ([Intel XE#7590])
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-3/igt@xe_pat@display-vs-wb-transient.html
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@xe_pat@display-vs-wb-transient.html

  * igt@xe_pat@pat-sw-hw-compare:
    - shard-bmg:          [PASS][106] -> [FAIL][107] ([Intel XE#7695])
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@xe_pat@pat-sw-hw-compare.html
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-1/igt@xe_pat@pat-sw-hw-compare.html

  * igt@xe_pat@pat-sw-hw-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][108] ([Intel XE#7590])
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-10/igt@xe_pat@pat-sw-hw-suspend.html

  * igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq:
    - shard-bmg:          NOTRUN -> [SKIP][109] ([Intel XE#4733] / [Intel XE#7417]) +1 other test skip
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-10/igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq.html

  * igt@xe_wedged@wedged-at-any-timeout:
    - shard-bmg:          [PASS][110] -> [DMESG-WARN][111] ([Intel XE#5545])
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@xe_wedged@wedged-at-any-timeout.html
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-1/igt@xe_wedged@wedged-at-any-timeout.html

  
#### Possible fixes ####

  * igt@fbdev@write:
    - shard-bmg:          [SKIP][112] ([Intel XE#2134]) -> [PASS][113]
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@fbdev@write.html
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-3/igt@fbdev@write.html

  * igt@kms_async_flips@alternate-sync-async-flip-atomic:
    - shard-bmg:          [FAIL][114] ([Intel XE#3718] / [Intel XE#6078]) -> [PASS][115] +2 other tests pass
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-3/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-2/igt@kms_async_flips@alternate-sync-async-flip-atomic.html

  * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2:
    - shard-bmg:          [FAIL][116] ([Intel XE#6078]) -> [PASS][117]
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2.html
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-5/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-bmg:          [SKIP][118] ([Intel XE#7825]) -> [PASS][119] +98 other tests pass
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_color@gamma:
    - shard-bmg:          [SKIP][120] ([Intel XE#3297]) -> [PASS][121] +4 other tests pass
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_color@gamma.html
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-3/igt@kms_color@gamma.html

  * igt@kms_color_pipeline@plane-lut1d-ctm3x4-lut1d:
    - shard-bmg:          [SKIP][122] ([Intel XE#7006]) -> [PASS][123]
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_color_pipeline@plane-lut1d-ctm3x4-lut1d.html
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-3/igt@kms_color_pipeline@plane-lut1d-ctm3x4-lut1d.html

  * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
    - shard-bmg:          [SKIP][124] ([Intel XE#2291]) -> [PASS][125]
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-6/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-10/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html

  * igt@kms_feature_discovery@display-2x:
    - shard-bmg:          [SKIP][126] ([Intel XE#2373] / [Intel XE#7344]) -> [PASS][127]
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_feature_discovery@display-2x.html
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-3/igt@kms_feature_discovery@display-2x.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3:
    - shard-bmg:          [FAIL][128] ([Intel XE#3321]) -> [PASS][129] +1 other test pass
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html

  * igt@kms_flip@2x-plain-flip-fb-recreate:
    - shard-bmg:          [SKIP][130] ([Intel XE#2316]) -> [PASS][131] +12 other tests pass
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_flip@2x-plain-flip-fb-recreate.html
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-8/igt@kms_flip@2x-plain-flip-fb-recreate.html

  * igt@kms_flip@flip-vs-dpms-on-nop-interruptible:
    - shard-bmg:          [SKIP][132] ([Intel XE#4882]) -> [PASS][133]
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_flip@flip-vs-dpms-on-nop-interruptible.html
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-8/igt@kms_flip@flip-vs-dpms-on-nop-interruptible.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-bmg:          [SKIP][134] ([Intel XE#2482]) -> [PASS][135] +8 other tests pass
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_flip@flip-vs-suspend-interruptible.html
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-1/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
    - shard-bmg:          [SKIP][136] ([Intel XE#7178]) -> [PASS][137] +1 other test pass
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-upscaling:
    - shard-bmg:          [SKIP][138] ([Intel XE#2380]) -> [PASS][139] +2 other tests pass
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-upscaling.html
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-upscaling.html

  * igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-blt:
    - shard-bmg:          [SKIP][140] ([Intel XE#2548] / [Intel XE#6314]) -> [PASS][141]
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-blt.html
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-blt.html

  * igt@kms_hdr@invalid-hdr:
    - shard-bmg:          [SKIP][142] ([Intel XE#1503]) -> [PASS][143]
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-10/igt@kms_hdr@invalid-hdr.html
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-1/igt@kms_hdr@invalid-hdr.html

  * igt@kms_invalid_mode@clock-too-high:
    - shard-bmg:          [SKIP][144] ([Intel XE#2568]) -> [PASS][145] +2 other tests pass
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_invalid_mode@clock-too-high.html
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-1/igt@kms_invalid_mode@clock-too-high.html

  * igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping:
    - shard-bmg:          [SKIP][146] ([Intel XE#7111]) -> [PASS][147]
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping.html
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-1/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping.html

  * igt@kms_plane_alpha_blend@alpha-7efc:
    - shard-bmg:          [SKIP][148] ([Intel XE#7082]) -> [PASS][149] +1 other test pass
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_plane_alpha_blend@alpha-7efc.html
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-1/igt@kms_plane_alpha_blend@alpha-7efc.html

  * igt@kms_plane_scaling@invalid-parameters:
    - shard-bmg:          [SKIP][150] ([Intel XE#7687]) -> [PASS][151]
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_plane_scaling@invalid-parameters.html
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-3/igt@kms_plane_scaling@invalid-parameters.html

  * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-d:
    - shard-bmg:          [SKIP][152] ([Intel XE#2763] / [Intel XE#6886]) -> [PASS][153] +44 other tests pass
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-d.html
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-1/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-d.html

  * igt@kms_pm_dc@dc5-dpms-negative:
    - shard-bmg:          [SKIP][154] ([Intel XE#1131] / [Intel XE#3957]) -> [PASS][155]
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_pm_dc@dc5-dpms-negative.html
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-8/igt@kms_pm_dc@dc5-dpms-negative.html

  * igt@kms_pm_dc@dc6-dpms:
    - shard-bmg:          [FAIL][156] ([Intel XE#7340]) -> [PASS][157]
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_pm_dc@dc6-dpms.html
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-8/igt@kms_pm_dc@dc6-dpms.html

  * igt@kms_pm_dc@deep-pkgc:
    - shard-lnl:          [FAIL][158] ([Intel XE#2029] / [Intel XE#7395]) -> [PASS][159]
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-lnl-1/igt@kms_pm_dc@deep-pkgc.html
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-lnl-3/igt@kms_pm_dc@deep-pkgc.html

  * igt@kms_pm_rpm@drm-resources-equal:
    - shard-bmg:          [SKIP][160] ([Intel XE#7079]) -> [PASS][161]
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_pm_rpm@drm-resources-equal.html
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-1/igt@kms_pm_rpm@drm-resources-equal.html

  * igt@kms_pm_rpm@universal-planes:
    - shard-bmg:          [SKIP][162] ([Intel XE#4886]) -> [PASS][163] +2 other tests pass
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_pm_rpm@universal-planes.html
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-3/igt@kms_pm_rpm@universal-planes.html

  * igt@kms_properties@colorop-properties-legacy:
    - shard-bmg:          [SKIP][164] ([Intel XE#7089]) -> [PASS][165]
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_properties@colorop-properties-legacy.html
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-1/igt@kms_properties@colorop-properties-legacy.html

  * igt@kms_properties@plane-properties-legacy:
    - shard-bmg:          [SKIP][166] ([Intel XE#7112]) -> [PASS][167]
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_properties@plane-properties-legacy.html
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-1/igt@kms_properties@plane-properties-legacy.html

  * igt@kms_setmode@basic:
    - shard-bmg:          [SKIP][168] ([Intel XE#1435]) -> [PASS][169]
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_setmode@basic.html
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-8/igt@kms_setmode@basic.html

  * igt@xe_eu_stall@non-blocking-re-enable:
    - shard-bmg:          [SKIP][170] ([Intel XE#6568]) -> [PASS][171] +1 other test pass
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@xe_eu_stall@non-blocking-re-enable.html
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-1/igt@xe_eu_stall@non-blocking-re-enable.html

  * igt@xe_exec_balancer@many-execqueues-cm-virtual-userptr-rebind:
    - shard-bmg:          [SKIP][172] ([Intel XE#7827]) -> [PASS][173] +13 other tests pass
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@xe_exec_balancer@many-execqueues-cm-virtual-userptr-rebind.html
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-8/igt@xe_exec_balancer@many-execqueues-cm-virtual-userptr-rebind.html

  * igt@xe_exec_compute_mode@many-preempt-fence-early:
    - shard-bmg:          [DMESG-FAIL][174] -> [PASS][175]
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@xe_exec_compute_mode@many-preempt-fence-early.html
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-8/igt@xe_exec_compute_mode@many-preempt-fence-early.html

  * igt@xe_exec_fault_mode@twice-userptr-rebind:
    - shard-bmg:          [SKIP][176] ([Intel XE#7826]) -> [PASS][177] +38 other tests pass
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@xe_exec_fault_mode@twice-userptr-rebind.html
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-1/igt@xe_exec_fault_mode@twice-userptr-rebind.html

  * igt@xe_exec_reset@cm-cat-error:
    - shard-bmg:          [DMESG-WARN][178] -> [PASS][179]
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@xe_exec_reset@cm-cat-error.html
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-1/igt@xe_exec_reset@cm-cat-error.html

  * igt@xe_exec_sip@invalidinstr-walker-enabled:
    - shard-bmg:          [FAIL][180] -> [PASS][181] +5 other tests pass
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@xe_exec_sip@invalidinstr-walker-enabled.html
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-8/igt@xe_exec_sip@invalidinstr-walker-enabled.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-malloc-race:
    - shard-bmg:          [SKIP][182] ([Intel XE#7824]) -> [PASS][183] +541 other tests pass
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@xe_exec_system_allocator@threads-shared-vm-many-malloc-race.html
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-8/igt@xe_exec_system_allocator@threads-shared-vm-many-malloc-race.html

  * igt@xe_live_ktest@xe_bo:
    - shard-bmg:          [SKIP][184] ([Intel XE#2229]) -> [PASS][185] +1 other test pass
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@xe_live_ktest@xe_bo.html
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-3/igt@xe_live_ktest@xe_bo.html

  * igt@xe_mmap@pci-membarrier:
    - shard-bmg:          [SKIP][186] ([Intel XE#5100]) -> [PASS][187] +1 other test pass
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@xe_mmap@pci-membarrier.html
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-8/igt@xe_mmap@pci-membarrier.html

  * igt@xe_pat@false-sharing:
    - shard-bmg:          [SKIP][188] ([Intel XE#7590]) -> [PASS][189]
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@xe_pat@false-sharing.html
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-8/igt@xe_pat@false-sharing.html

  * igt@xe_sriov_vram@vf-access-provisioned:
    - shard-bmg:          [SKIP][190] -> [PASS][191] +67 other tests pass
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@xe_sriov_vram@vf-access-provisioned.html
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-1/igt@xe_sriov_vram@vf-access-provisioned.html

  
#### Warnings ####

  * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
    - shard-bmg:          [SKIP][192] ([Intel XE#2370]) -> [SKIP][193] ([Intel XE#7825])
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html

  * igt@kms_big_fb@linear-32bpp-rotate-270:
    - shard-bmg:          [SKIP][194] ([Intel XE#7825]) -> [SKIP][195] ([Intel XE#2327]) +5 other tests skip
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_big_fb@linear-32bpp-rotate-270.html
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-1/igt@kms_big_fb@linear-32bpp-rotate-270.html

  * igt@kms_big_fb@linear-32bpp-rotate-90:
    - shard-bmg:          [SKIP][196] ([Intel XE#2327]) -> [SKIP][197] ([Intel XE#7825]) +4 other tests skip
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-5/igt@kms_big_fb@linear-32bpp-rotate-90.html
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_big_fb@linear-32bpp-rotate-90.html

  * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip:
    - shard-bmg:          [SKIP][198] ([Intel XE#7059] / [Intel XE#7085]) -> [SKIP][199] ([Intel XE#7825])
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-8/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html

  * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-bmg:          [SKIP][200] ([Intel XE#7825]) -> [SKIP][201] ([Intel XE#7059] / [Intel XE#7085])
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-3/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_fb@y-tiled-8bpp-rotate-90:
    - shard-bmg:          [SKIP][202] ([Intel XE#7825]) -> [SKIP][203] ([Intel XE#1124]) +16 other tests skip
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-1/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
    - shard-bmg:          [SKIP][204] ([Intel XE#607] / [Intel XE#7361]) -> [SKIP][205] ([Intel XE#7825])
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-8/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@y-tiled-addfb-size-overflow:
    - shard-bmg:          [SKIP][206] ([Intel XE#7825]) -> [SKIP][207] ([Intel XE#610] / [Intel XE#7387])
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-8/igt@kms_big_fb@y-tiled-addfb-size-overflow.html

  * igt@kms_big_fb@yf-tiled-addfb:
    - shard-bmg:          [SKIP][208] ([Intel XE#2328] / [Intel XE#7367]) -> [SKIP][209] ([Intel XE#7825])
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-8/igt@kms_big_fb@yf-tiled-addfb.html
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_big_fb@yf-tiled-addfb.html

  * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
    - shard-bmg:          [SKIP][210] ([Intel XE#7825]) -> [SKIP][211] ([Intel XE#607] / [Intel XE#7361])
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-1/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-bmg:          [SKIP][212] ([Intel XE#1124]) -> [SKIP][213] ([Intel XE#7825]) +8 other tests skip
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc:
    - shard-bmg:          [SKIP][214] ([Intel XE#7825]) -> [SKIP][215] ([Intel XE#2887]) +25 other tests skip
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc.html
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-1/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
    - shard-bmg:          [SKIP][216] ([Intel XE#2652]) -> [SKIP][217] ([Intel XE#7825])
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-8/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
    - shard-bmg:          [SKIP][218] ([Intel XE#7825]) -> [SKIP][219] ([Intel XE#2652]) +1 other test skip
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
    - shard-bmg:          [SKIP][220] ([Intel XE#3432]) -> [SKIP][221] ([Intel XE#7825])
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html

  * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
    - shard-bmg:          [SKIP][222] ([Intel XE#7825]) -> [SKIP][223] ([Intel XE#3432]) +2 other tests skip
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html

  * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs:
    - shard-bmg:          [SKIP][224] ([Intel XE#2887]) -> [SKIP][225] ([Intel XE#7825]) +15 other tests skip
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-8/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs.html
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs.html

  * igt@kms_cdclk@mode-transition-all-outputs:
    - shard-bmg:          [SKIP][226] -> [SKIP][227] ([Intel XE#2724] / [Intel XE#7449])
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_cdclk@mode-transition-all-outputs.html
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-8/igt@kms_cdclk@mode-transition-all-outputs.html

  * igt@kms_color_pipeline@plane-lut3d-green-only:
    - shard-bmg:          [SKIP][228] ([Intel XE#7006]) -> [SKIP][229] ([Intel XE#6969] / [Intel XE#7006])
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_color_pipeline@plane-lut3d-green-only.html
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-8/igt@kms_color_pipeline@plane-lut3d-green-only.html

  * igt@kms_content_protection@atomic-hdcp14:
    - shard-bmg:          [FAIL][230] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) -> [SKIP][231] ([Intel XE#7825]) +1 other test skip
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-8/igt@kms_content_protection@atomic-hdcp14.html
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_content_protection@atomic-hdcp14.html

  * igt@kms_content_protection@content-type-change:
    - shard-bmg:          [SKIP][232] ([Intel XE#7825]) -> [SKIP][233] ([Intel XE#7642]) +2 other tests skip
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_content_protection@content-type-change.html
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-1/igt@kms_content_protection@content-type-change.html

  * igt@kms_content_protection@dp-mst-lic-type-0:
    - shard-bmg:          [SKIP][234] ([Intel XE#7825]) -> [SKIP][235] ([Intel XE#2390] / [Intel XE#6974])
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_content_protection@dp-mst-lic-type-0.html
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-8/igt@kms_content_protection@dp-mst-lic-type-0.html

  * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
    - shard-bmg:          [SKIP][236] ([Intel XE#6974]) -> [SKIP][237] ([Intel XE#7825])
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-3/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html

  * igt@kms_content_protection@lic-type-0-hdcp14:
    - shard-bmg:          [SKIP][238] ([Intel XE#7825]) -> [FAIL][239] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_content_protection@lic-type-0-hdcp14.html
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-3/igt@kms_content_protection@lic-type-0-hdcp14.html

  * igt@kms_content_protection@type1:
    - shard-bmg:          [SKIP][240] ([Intel XE#7642]) -> [SKIP][241] ([Intel XE#7825])
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-3/igt@kms_content_protection@type1.html
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_content_protection@type1.html

  * igt@kms_content_protection@uevent-hdcp14:
    - shard-bmg:          [SKIP][242] ([Intel XE#7825]) -> [FAIL][243] ([Intel XE#6707] / [Intel XE#7439])
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_content_protection@uevent-hdcp14.html
   [243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-8/igt@kms_content_protection@uevent-hdcp14.html

  * igt@kms_cursor_crc@cursor-offscreen-128x42:
    - shard-bmg:          [SKIP][244] ([Intel XE#7825]) -> [SKIP][245] ([Intel XE#2320]) +10 other tests skip
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_cursor_crc@cursor-offscreen-128x42.html
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-1/igt@kms_cursor_crc@cursor-offscreen-128x42.html

  * igt@kms_cursor_crc@cursor-offscreen-32x32:
    - shard-bmg:          [SKIP][246] ([Intel XE#2320]) -> [SKIP][247] ([Intel XE#7825]) +5 other tests skip
   [246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-8/igt@kms_cursor_crc@cursor-offscreen-32x32.html
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_cursor_crc@cursor-offscreen-32x32.html

  * igt@kms_cursor_crc@cursor-offscreen-512x512:
    - shard-bmg:          [SKIP][248] ([Intel XE#7825]) -> [SKIP][249] ([Intel XE#2321] / [Intel XE#7355]) +1 other test skip
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_cursor_crc@cursor-offscreen-512x512.html
   [249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-1/igt@kms_cursor_crc@cursor-offscreen-512x512.html

  * igt@kms_cursor_crc@cursor-sliding-512x170:
    - shard-bmg:          [SKIP][250] ([Intel XE#2321] / [Intel XE#7355]) -> [SKIP][251] ([Intel XE#7825]) +1 other test skip
   [250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-8/igt@kms_cursor_crc@cursor-sliding-512x170.html
   [251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_cursor_crc@cursor-sliding-512x170.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
    - shard-bmg:          [SKIP][252] ([Intel XE#7825]) -> [SKIP][253] ([Intel XE#2286] / [Intel XE#6035])
   [252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
   [253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html

  * igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
    - shard-bmg:          [SKIP][254] ([Intel XE#1508]) -> [SKIP][255] ([Intel XE#7825])
   [254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-8/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
   [255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html

  * igt@kms_dirtyfb@psr-dirtyfb-ioctl:
    - shard-bmg:          [SKIP][256] ([Intel XE#7825]) -> [SKIP][257] ([Intel XE#1508])
   [256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
   [257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-3/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html

  * igt@kms_dp_link_training@uhbr-mst:
    - shard-bmg:          [SKIP][258] ([Intel XE#4354] / [Intel XE#7386]) -> [SKIP][259] ([Intel XE#7825])
   [258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-3/igt@kms_dp_link_training@uhbr-mst.html
   [259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_dp_link_training@uhbr-mst.html

  * igt@kms_dp_link_training@uhbr-sst:
    - shard-bmg:          [SKIP][260] ([Intel XE#7825]) -> [SKIP][261] ([Intel XE#4354] / [Intel XE#5870])
   [260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_dp_link_training@uhbr-sst.html
   [261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-1/igt@kms_dp_link_training@uhbr-sst.html

  * igt@kms_dp_linktrain_fallback@dsc-fallback:
    - shard-bmg:          [SKIP][262] ([Intel XE#7825]) -> [SKIP][263] ([Intel XE#4331] / [Intel XE#7227])
   [262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_dp_linktrain_fallback@dsc-fallback.html
   [263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-8/igt@kms_dp_linktrain_fallback@dsc-fallback.html

  * igt@kms_dsc@dsc-fractional-bpp:
    - shard-bmg:          [SKIP][264] ([Intel XE#7825]) -> [SKIP][265] ([Intel XE#2244]) +1 other test skip
   [264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_dsc@dsc-fractional-bpp.html
   [265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-8/igt@kms_dsc@dsc-fractional-bpp.html

  * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area:
    - shard-bmg:          [SKIP][266] ([Intel XE#7825]) -> [SKIP][267] ([Intel XE#4422] / [Intel XE#7442]) +1 other test skip
   [266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html
   [267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-1/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-bmg:          [SKIP][268] -> [SKIP][269] ([Intel XE#4156] / [Intel XE#7425])
   [268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_fbcon_fbt@fbc-suspend.html
   [269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-3/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
    - shard-bmg:          [SKIP][270] ([Intel XE#7178] / [Intel XE#7349]) -> [SKIP][271] ([Intel XE#7178])
   [270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
   [271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
    - shard-bmg:          [SKIP][272] ([Intel XE#2380]) -> [SKIP][273] ([Intel XE#7178] / [Intel XE#7351]) +2 other tests skip
   [272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
   [273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
    - shard-bmg:          [SKIP][274] ([Intel XE#7178] / [Intel XE#7351]) -> [SKIP][275] ([Intel XE#2380])
   [274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
   [275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
    - shard-bmg:          [SKIP][276] ([Intel XE#7178]) -> [SKIP][277] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip
   [276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
   [277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html

  * igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-render:
    - shard-bmg:          [SKIP][278] ([Intel XE#6314]) -> [SKIP][279] ([Intel XE#2311]) +2 other tests skip
   [278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-render.html
   [279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][280] ([Intel XE#2311]) -> [SKIP][281] ([Intel XE#6314]) +2 other tests skip
   [280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-mmap-wc.html
   [281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][282] ([Intel XE#2311]) -> [SKIP][283] ([Intel XE#2312]) +1 other test skip
   [282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html
   [283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc:
    - shard-bmg:          [SKIP][284] ([Intel XE#7061] / [Intel XE#7356]) -> [SKIP][285] ([Intel XE#6314]) +3 other tests skip
   [284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc.html
   [285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render:
    - shard-bmg:          [SKIP][286] ([Intel XE#2434] / [Intel XE#2548] / [Intel XE#6314]) -> [SKIP][287] ([Intel XE#2311]) +33 other tests skip
   [286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html
   [287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-blt:
    - shard-bmg:          [SKIP][288] ([Intel XE#4141]) -> [SKIP][289] ([Intel XE#6314]) +1 other test skip
   [288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-blt.html
   [289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-render:
    - shard-bmg:          [SKIP][290] ([Intel XE#6314]) -> [SKIP][291] ([Intel XE#4141])
   [290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-render.html
   [291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][292] ([Intel XE#2434] / [Intel XE#2548] / [Intel XE#6314]) -> [SKIP][293] ([Intel XE#4141]) +18 other tests skip
   [292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html
   [293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt:
    - shard-bmg:          [SKIP][294] ([Intel XE#4141]) -> [SKIP][295] ([Intel XE#2434] / [Intel XE#2548] / [Intel XE#6314]) +13 other tests skip
   [294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html
   [295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt:
    - shard-bmg:          [SKIP][296] ([Intel XE#2548] / [Intel XE#6314]) -> [SKIP][297] ([Intel XE#4141]) +4 other tests skip
   [296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html
   [297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-tiling-4:
    - shard-bmg:          [SKIP][298] ([Intel XE#4141]) -> [SKIP][299] ([Intel XE#2548] / [Intel XE#6314]) +1 other test skip
   [298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
   [299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-tiling-4.html

  * igt@kms_frontbuffer_tracking@fbc-tiling-y:
    - shard-bmg:          [SKIP][300] ([Intel XE#2352] / [Intel XE#7399]) -> [SKIP][301] ([Intel XE#2548] / [Intel XE#6314])
   [300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
   [301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-tiling-y.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt:
    - shard-bmg:          [SKIP][302] ([Intel XE#2311]) -> [SKIP][303] ([Intel XE#2434] / [Intel XE#2548] / [Intel XE#6314]) +19 other tests skip
   [302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html
   [303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][304] ([Intel XE#2312]) -> [SKIP][305] ([Intel XE#2311])
   [304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
   [305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt:
    - shard-bmg:          [SKIP][306] ([Intel XE#2548] / [Intel XE#6314]) -> [SKIP][307] ([Intel XE#2311]) +11 other tests skip
   [306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html
   [307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render:
    - shard-bmg:          [SKIP][308] ([Intel XE#6314]) -> [SKIP][309] ([Intel XE#7061] / [Intel XE#7356]) +11 other tests skip
   [308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render.html
   [309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-suspend:
    - shard-bmg:          [SKIP][310] ([Intel XE#2311]) -> [SKIP][311] ([Intel XE#2548] / [Intel XE#6314]) +5 other tests skip
   [310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-suspend.html
   [311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-suspend.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][312] ([Intel XE#2313]) -> [SKIP][313] ([Intel XE#2312])
   [312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
   [313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render:
    - shard-bmg:          [SKIP][314] ([Intel XE#2313]) -> [SKIP][315] ([Intel XE#6314]) +1 other test skip
   [314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render.html
   [315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][316] ([Intel XE#6314]) -> [SKIP][317] ([Intel XE#2313]) +2 other tests skip
   [316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
   [317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render:
    - shard-bmg:          [SKIP][318] ([Intel XE#2313]) -> [SKIP][319] ([Intel XE#2548] / [Intel XE#6314]) +25 other tests skip
   [318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html
   [319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff:
    - shard-bmg:          [SKIP][320] ([Intel XE#2312]) -> [SKIP][321] ([Intel XE#2313]) +1 other test skip
   [320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff.html
   [321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-10/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
    - shard-bmg:          [SKIP][322] ([Intel XE#2548] / [Intel XE#6314]) -> [SKIP][323] ([Intel XE#2313]) +47 other tests skip
   [322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
   [323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-bmg:          [SKIP][324] ([Intel XE#7825]) -> [SKIP][325] ([Intel XE#3374] / [Intel XE#3544])
   [324]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_hdr@brightness-with-hdr.html
   [325]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-8/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_joiner@basic-force-ultra-joiner:
    - shard-bmg:          [SKIP][326] -> [SKIP][327] ([Intel XE#6911] / [Intel XE#7466])
   [326]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_joiner@basic-force-ultra-joiner.html
   [327]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-3/igt@kms_joiner@basic-force-ultra-joiner.html

  * igt@kms_joiner@invalid-modeset-ultra-joiner:
    - shard-bmg:          [SKIP][328] -> [SKIP][329] ([Intel XE#6911] / [Intel XE#7378])
   [328]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_joiner@invalid-modeset-ultra-joiner.html
   [329]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-3/igt@kms_joiner@invalid-modeset-ultra-joiner.html

  * igt@kms_panel_fitting@legacy:
    - shard-bmg:          [SKIP][330] ([Intel XE#2486]) -> [SKIP][331] ([Intel XE#7825])
   [330]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-3/igt@kms_panel_fitting@legacy.html
   [331]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_panel_fitting@legacy.html

  * igt@kms_plane@pixel-format-y-tiled-modifier:
    - shard-bmg:          [SKIP][332] ([Intel XE#7283]) -> [SKIP][333] ([Intel XE#7111])
   [332]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-8/igt@kms_plane@pixel-format-y-tiled-modifier.html
   [333]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_plane@pixel-format-y-tiled-modifier.html

  * igt@kms_plane_multiple@2x-tiling-y:
    - shard-bmg:          [SKIP][334] ([Intel XE#5021] / [Intel XE#7377]) -> [SKIP][335] ([Intel XE#7825])
   [334]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-8/igt@kms_plane_multiple@2x-tiling-y.html
   [335]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_plane_multiple@2x-tiling-y.html

  * igt@kms_plane_multiple@tiling-yf:
    - shard-bmg:          [SKIP][336] ([Intel XE#7825]) -> [SKIP][337] ([Intel XE#5020] / [Intel XE#7348])
   [336]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_plane_multiple@tiling-yf.html
   [337]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-1/igt@kms_plane_multiple@tiling-yf.html

  * igt@kms_pm_rpm@package-g7:
    - shard-bmg:          [SKIP][338] ([Intel XE#6813]) -> [SKIP][339] ([Intel XE#6814] / [Intel XE#7428])
   [338]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_pm_rpm@package-g7.html
   [339]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-8/igt@kms_pm_rpm@package-g7.html

  * igt@kms_rotation_crc@primary-rotation-270:
    - shard-bmg:          [SKIP][340] ([Intel XE#7825]) -> [SKIP][341] ([Intel XE#3904] / [Intel XE#7342]) +3 other tests skip
   [340]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_rotation_crc@primary-rotation-270.html
   [341]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-3/igt@kms_rotation_crc@primary-rotation-270.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
    - shard-bmg:          [SKIP][342] ([Intel XE#2330] / [Intel XE#5813]) -> [SKIP][343] ([Intel XE#7825]) +1 other test skip
   [342]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
   [343]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html

  * igt@kms_scaling_modes@scaling-mode-center:
    - shard-bmg:          [SKIP][344] ([Intel XE#2413]) -> [SKIP][345] ([Intel XE#7825])
   [344]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-8/igt@kms_scaling_modes@scaling-mode-center.html
   [345]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_scaling_modes@scaling-mode-center.html

  * igt@kms_sharpness_filter@filter-rotations:
    - shard-bmg:          [SKIP][346] ([Intel XE#7825]) -> [SKIP][347] ([Intel XE#6503]) +3 other tests skip
   [346]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_sharpness_filter@filter-rotations.html
   [347]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-1/igt@kms_sharpness_filter@filter-rotations.html

  * igt@kms_sharpness_filter@invalid-filter-with-plane:
    - shard-bmg:          [SKIP][348] ([Intel XE#6503]) -> [SKIP][349] ([Intel XE#7825]) +1 other test skip
   [348]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-8/igt@kms_sharpness_filter@invalid-filter-with-plane.html
   [349]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_sharpness_filter@invalid-filter-with-plane.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-bmg:          [SKIP][350] ([Intel XE#2426] / [Intel XE#5848]) -> [SKIP][351] ([Intel XE#7825])
   [350]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern.html
   [351]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          [SKIP][352] ([Intel XE#7825]) -> [SKIP][353] ([Intel XE#2426] / [Intel XE#5848])
   [352]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [353]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@kms_vrr@lobf:
    - shard-bmg:          [SKIP][354] ([Intel XE#7825]) -> [SKIP][355] ([Intel XE#2168] / [Intel XE#7444]) +1 other test skip
   [354]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@kms_vrr@lobf.html
   [355]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-8/igt@kms_vrr@lobf.html

  * igt@kms_vrr@seamless-rr-switch-drrs:
    - shard-bmg:          [SKIP][356] ([Intel XE#1499]) -> [SKIP][357] ([Intel XE#7825]) +1 other test skip
   [356]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-3/igt@kms_vrr@seamless-rr-switch-drrs.html
   [357]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@kms_vrr@seamless-rr-switch-drrs.html

  * igt@xe_evict@evict-beng-mixed-many-threads-small:
    - shard-bmg:          [SKIP][358] -> [INCOMPLETE][359] ([Intel XE#6321])
   [358]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@xe_evict@evict-beng-mixed-many-threads-small.html
   [359]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-8/igt@xe_evict@evict-beng-mixed-many-threads-small.html

  * igt@xe_evict@evict-small-multi-queue-cm:
    - shard-bmg:          [SKIP][360] -> [SKIP][361] ([Intel XE#7140]) +1 other test skip
   [360]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@xe_evict@evict-small-multi-queue-cm.html
   [361]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-8/igt@xe_evict@evict-small-multi-queue-cm.html

  * igt@xe_exec_fault_mode@many-execqueues-multi-queue-invalid-userptr-fault:
    - shard-bmg:          [SKIP][362] ([Intel XE#7136]) -> [SKIP][363] ([Intel XE#7826]) +12 other tests skip
   [362]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-8/igt@xe_exec_fault_mode@many-execqueues-multi-queue-invalid-userptr-fault.html
   [363]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-9/igt@xe_exec_fault_mode@many-execqueues-multi-queue-invalid-userptr-fault.html

  * igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr:
    - shard-bmg:          [SKIP][364] ([Intel XE#7826]) -> [SKIP][365] ([Intel XE#7136]) +25 other tests skip
   [364]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e/shard-bmg-9/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr.html
   [365]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165419v1/shard-bmg-3/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1131
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
  [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
  [Intel XE#1511]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1511
  [Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
  [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
  [Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142
  [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
  [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
  [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#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
  [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
  [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#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
  [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
  [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
  [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
  [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
  [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
  [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
  [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2434]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2434
  [Intel XE#2482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2482
  [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
  [Intel XE#2548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2548
  [Intel XE#2568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2568
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
  [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#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
  [Intel XE#3297]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3297
  [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
  [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
  [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
  [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#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#3957]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3957
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156
  [Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
  [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
  [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#4882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4882
  [Intel XE#4886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4886
  [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
  [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
  [Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100
  [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
  [Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813
  [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
  [Intel XE#5870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5870
  [Intel XE#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035
  [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
  [Intel XE#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078
  [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
  [Intel XE#6266]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6266
  [Intel XE#6314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6314
  [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#6568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6568
  [Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
  [Intel XE#6813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6813
  [Intel XE#6814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6814
  [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#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
  [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
  [Intel XE#6969]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6969
  [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
  [Intel XE#7006]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7006
  [Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059
  [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
  [Intel XE#7079]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7079
  [Intel XE#7082]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7082
  [Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085
  [Intel XE#7089]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7089
  [Intel XE#7111]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7111
  [Intel XE#7112]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7112
  [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#7227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7227
  [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
  [Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340
  [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
  [Intel XE#7344]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7344
  [Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348
  [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#7361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7361
  [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#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
  [Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
  [Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377
  [Intel XE#7378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7378
  [Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383
  [Intel XE#7386]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7386
  [Intel XE#7387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7387
  [Intel XE#7395]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7395
  [Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
  [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
  [Intel XE#7425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7425
  [Intel XE#7428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7428
  [Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439
  [Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442
  [Intel XE#7444]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7444
  [Intel XE#7449]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7449
  [Intel XE#7466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7466
  [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
  [Intel XE#7591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7591
  [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#7687]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7687
  [Intel XE#7695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7695
  [Intel XE#7824]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7824
  [Intel XE#7825]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7825
  [Intel XE#7826]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7826
  [Intel XE#7827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7827
  [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870


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

  * Linux: xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e -> xe-pw-165419v1

  IGT_8872: e70db143b7bafe09bdea4d33188cb10d2070d0e5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e: 15ccea1aede9d776f85ed002cf0df3c8ea8bd81e
  xe-pw-165419v1: 165419v1

== Logs ==

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

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

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

* Re: [RESEND PATCH 5/7] drm/dp: Store coasting vtotal in struct drm_dp_as_sdp
  2026-04-24  9:34 ` [RESEND PATCH 5/7] drm/dp: Store coasting vtotal in struct drm_dp_as_sdp Ankit Nautiyal
@ 2026-04-27 12:42   ` Ville Syrjälä
  2026-04-27 12:52     ` Jani Nikula
  0 siblings, 1 reply; 16+ messages in thread
From: Ville Syrjälä @ 2026-04-27 12:42 UTC (permalink / raw)
  To: Ankit Nautiyal; +Cc: intel-gfx, intel-xe, dri-devel

On Fri, Apr 24, 2026 at 03:04:22PM +0530, Ankit Nautiyal wrote:
> Add new field in struct drm_dp_as_sdp to store coasting vtotal.
> This is used by the sinks that support Panel Replay and Asynchronous
> timing during PR Active to derive refresh rate, when AS SDP transmission
> is stopped by the source.
> 
> Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
> ---
>  drivers/gpu/drm/display/drm_dp_helper.c | 1 +
>  include/drm/display/drm_dp_helper.h     | 1 +
>  2 files changed, 2 insertions(+)
> 
> diff --git a/drivers/gpu/drm/display/drm_dp_helper.c b/drivers/gpu/drm/display/drm_dp_helper.c
> index a697cc227e28..e29958f8b0b6 100644
> --- a/drivers/gpu/drm/display/drm_dp_helper.c
> +++ b/drivers/gpu/drm/display/drm_dp_helper.c
> @@ -3512,6 +3512,7 @@ void drm_dp_as_sdp_log(struct drm_printer *p, const struct drm_dp_as_sdp *as_sdp
>  	drm_printf(p, "    duration_incr_ms: %d\n", as_sdp->duration_incr_ms);
>  	drm_printf(p, "    duration_decr_ms: %d\n", as_sdp->duration_decr_ms);
>  	drm_printf(p, "    operation_mode: %d\n", as_sdp->mode);
> +	drm_printf(p, "    coasting vtotal: %d\n", as_sdp->coasting_vtotal);

For some reason the existing fields are using '_', this one ' '.
Looks like VSC uses ' ' as well. So the existing stuff in
drm_dp_as_sdp_log() should be fixed to conform to the common 
style, in a separate patch.

Otherwise this looks fine
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>

>  }
>  EXPORT_SYMBOL(drm_dp_as_sdp_log);
>  
> diff --git a/include/drm/display/drm_dp_helper.h b/include/drm/display/drm_dp_helper.h
> index 1d0acd58f486..8c2d77a032f0 100644
> --- a/include/drm/display/drm_dp_helper.h
> +++ b/include/drm/display/drm_dp_helper.h
> @@ -126,6 +126,7 @@ struct drm_dp_as_sdp {
>  	int duration_decr_ms;
>  	bool target_rr_divider;
>  	enum operation_mode mode;
> +	int coasting_vtotal;
>  };
>  
>  void drm_dp_as_sdp_log(struct drm_printer *p,
> -- 
> 2.45.2

-- 
Ville Syrjälä
Intel

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

* Re: [RESEND PATCH 5/7] drm/dp: Store coasting vtotal in struct drm_dp_as_sdp
  2026-04-27 12:42   ` Ville Syrjälä
@ 2026-04-27 12:52     ` Jani Nikula
  0 siblings, 0 replies; 16+ messages in thread
From: Jani Nikula @ 2026-04-27 12:52 UTC (permalink / raw)
  To: Ville Syrjälä, Ankit Nautiyal; +Cc: intel-gfx, intel-xe, dri-devel

On Mon, 27 Apr 2026, Ville Syrjälä <ville.syrjala@linux.intel.com> wrote:
> On Fri, Apr 24, 2026 at 03:04:22PM +0530, Ankit Nautiyal wrote:
>> Add new field in struct drm_dp_as_sdp to store coasting vtotal.
>> This is used by the sinks that support Panel Replay and Asynchronous
>> timing during PR Active to derive refresh rate, when AS SDP transmission
>> is stopped by the source.
>> 
>> Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
>> ---
>>  drivers/gpu/drm/display/drm_dp_helper.c | 1 +
>>  include/drm/display/drm_dp_helper.h     | 1 +
>>  2 files changed, 2 insertions(+)
>> 
>> diff --git a/drivers/gpu/drm/display/drm_dp_helper.c b/drivers/gpu/drm/display/drm_dp_helper.c
>> index a697cc227e28..e29958f8b0b6 100644
>> --- a/drivers/gpu/drm/display/drm_dp_helper.c
>> +++ b/drivers/gpu/drm/display/drm_dp_helper.c
>> @@ -3512,6 +3512,7 @@ void drm_dp_as_sdp_log(struct drm_printer *p, const struct drm_dp_as_sdp *as_sdp
>>  	drm_printf(p, "    duration_incr_ms: %d\n", as_sdp->duration_incr_ms);
>>  	drm_printf(p, "    duration_decr_ms: %d\n", as_sdp->duration_decr_ms);
>>  	drm_printf(p, "    operation_mode: %d\n", as_sdp->mode);
>> +	drm_printf(p, "    coasting vtotal: %d\n", as_sdp->coasting_vtotal);
>
> For some reason the existing fields are using '_', this one ' '.
> Looks like VSC uses ' ' as well. So the existing stuff in
> drm_dp_as_sdp_log() should be fixed to conform to the common 
> style, in a separate patch.

The indentation should be switched to tabs, and should be done using
drm_printf_indent() which keeps the format strings readable.

Can be done in follow-up.

BR,
Jani.


>
> Otherwise this looks fine
> Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
>>  }
>>  EXPORT_SYMBOL(drm_dp_as_sdp_log);
>>  
>> diff --git a/include/drm/display/drm_dp_helper.h b/include/drm/display/drm_dp_helper.h
>> index 1d0acd58f486..8c2d77a032f0 100644
>> --- a/include/drm/display/drm_dp_helper.h
>> +++ b/include/drm/display/drm_dp_helper.h
>> @@ -126,6 +126,7 @@ struct drm_dp_as_sdp {
>>  	int duration_decr_ms;
>>  	bool target_rr_divider;
>>  	enum operation_mode mode;
>> +	int coasting_vtotal;
>>  };
>>  
>>  void drm_dp_as_sdp_log(struct drm_printer *p,
>> -- 
>> 2.45.2

-- 
Jani Nikula, Intel

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

* Re: [RESEND PATCH 6/7] drm/dp: Add a helper to get the SDP type as a string
  2026-04-24  9:34 ` [RESEND PATCH 6/7] drm/dp: Add a helper to get the SDP type as a string Ankit Nautiyal
@ 2026-04-27 12:57   ` Ville Syrjälä
  0 siblings, 0 replies; 16+ messages in thread
From: Ville Syrjälä @ 2026-04-27 12:57 UTC (permalink / raw)
  To: Ankit Nautiyal; +Cc: intel-gfx, intel-xe, dri-devel

On Fri, Apr 24, 2026 at 03:04:23PM +0530, Ankit Nautiyal wrote:
> Introduce dp_sdp_type_get_name() to get the SDP type as a string.
> Use this to log the SDP type based on the sdp_type fields of the
> VSC and AS SDPs instead of the hardcoded strings.
> 
> While at it, rename "SDP : AS_SDP" to "SDP : Adaptive Sync"
> 
> Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
> ---
>  drivers/gpu/drm/display/drm_dp_helper.c | 36 ++++++++++++++++++++++---
>  1 file changed, 32 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/gpu/drm/display/drm_dp_helper.c b/drivers/gpu/drm/display/drm_dp_helper.c
> index e29958f8b0b6..102328d9022d 100644
> --- a/drivers/gpu/drm/display/drm_dp_helper.c
> +++ b/drivers/gpu/drm/display/drm_dp_helper.c
> @@ -3487,10 +3487,38 @@ static const char *dp_content_type_get_name(enum dp_content_type content_type)
>  	}
>  }
>  
> +static const char *dp_sdp_type_get_name(unsigned char type)

I dislike this "_get_" stuff in the name. It's redundant, and can be
confused with some refcounting related get/put. I really wish people
would stop using it...

But looks like all the other similar things here already use the "_get_"
naming, so I guess we should stick to a consistent style for now.

> +{
> +	switch (type) {
> +	case DP_SDP_AUDIO_TIMESTAMP:
> +		return "Audio Timestamp";

"Audio_TimeStamp" to match the spec.

> +	case DP_SDP_AUDIO_STREAM:
> +		return "Audio Stream";

"Audio_Stream"

> +	case DP_SDP_EXTENSION:
> +		return "Extension";
> +	case DP_SDP_AUDIO_COPYMANAGEMENT:
> +		return "Audio Copy Management";

"Audio_CopyManagement"

> +	case DP_SDP_ISRC:
> +		return "ISRC";
> +	case DP_SDP_VSC:
> +		return "VSC";
> +	case DP_SDP_PPS:
> +		return "PPS";
> +	case DP_SDP_VSC_EXT_VESA:
> +		return "VSC EXT VESA";
> +	case DP_SDP_VSC_EXT_CEA:
> +		return "VSC EXT CEA";

Looks like the spec does favor the acronym form for all of
those. So I guess that's what we want here as well. The ' '
should all be '_' to match the spec though.

> +	case DP_SDP_ADAPTIVE_SYNC:
> +		return "Adaptive Sync";

"Adaptive-Sync" seems to be the preferred form for this
in the spec.

> +	default:
> +		return "Unknown";
> +	}
> +}
> +
>  void drm_dp_vsc_sdp_log(struct drm_printer *p, const struct drm_dp_vsc_sdp *vsc)
>  {
> -	drm_printf(p, "DP SDP: VSC, revision %u, length %u\n",
> -		   vsc->revision, vsc->length);
> +	drm_printf(p, "DP SDP: %s, revision %u, length %u\n",
> +		   dp_sdp_type_get_name(vsc->sdp_type), vsc->revision, vsc->length);
>  	drm_printf(p, "    pixelformat: %s\n",
>  		   dp_pixelformat_get_name(vsc->pixelformat));
>  	drm_printf(p, "    colorimetry: %s\n",
> @@ -3505,8 +3533,8 @@ EXPORT_SYMBOL(drm_dp_vsc_sdp_log);
>  
>  void drm_dp_as_sdp_log(struct drm_printer *p, const struct drm_dp_as_sdp *as_sdp)
>  {
> -	drm_printf(p, "DP SDP: AS_SDP, revision %u, length %u\n",
> -		   as_sdp->revision, as_sdp->length);
> +	drm_printf(p, "DP SDP: %s, revision %u, length %u\n",
> +		   dp_sdp_type_get_name(as_sdp->sdp_type), as_sdp->revision, as_sdp->length);
>  	drm_printf(p, "    vtotal: %d\n", as_sdp->vtotal);
>  	drm_printf(p, "    target_rr: %d\n", as_sdp->target_rr);
>  	drm_printf(p, "    duration_incr_ms: %d\n", as_sdp->duration_incr_ms);
> -- 
> 2.45.2

-- 
Ville Syrjälä
Intel

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

* Re: [RESEND PATCH 7/7] drm/dp: Add target_rr_divider field in AS SDP logging
  2026-04-24  9:34 ` [RESEND PATCH 7/7] drm/dp: Add target_rr_divider field in AS SDP logging Ankit Nautiyal
@ 2026-04-27 12:58   ` Ville Syrjälä
  0 siblings, 0 replies; 16+ messages in thread
From: Ville Syrjälä @ 2026-04-27 12:58 UTC (permalink / raw)
  To: Ankit Nautiyal; +Cc: intel-gfx, intel-xe, dri-devel

On Fri, Apr 24, 2026 at 03:04:24PM +0530, Ankit Nautiyal wrote:
> The field target_rr_divider is missing from the AS SDP logging.
> Add it and print the divider value (1.001 or 1.000) as per the DP 2.1 spec.
> 
> Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>

Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>

> ---
>  drivers/gpu/drm/display/drm_dp_helper.c | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/drivers/gpu/drm/display/drm_dp_helper.c b/drivers/gpu/drm/display/drm_dp_helper.c
> index 102328d9022d..c8421099a3ac 100644
> --- a/drivers/gpu/drm/display/drm_dp_helper.c
> +++ b/drivers/gpu/drm/display/drm_dp_helper.c
> @@ -3537,6 +3537,8 @@ void drm_dp_as_sdp_log(struct drm_printer *p, const struct drm_dp_as_sdp *as_sdp
>  		   dp_sdp_type_get_name(as_sdp->sdp_type), as_sdp->revision, as_sdp->length);
>  	drm_printf(p, "    vtotal: %d\n", as_sdp->vtotal);
>  	drm_printf(p, "    target_rr: %d\n", as_sdp->target_rr);
> +	drm_printf(p, "    target_rr_divider: %s\n",
> +		   as_sdp->target_rr_divider ? "1.001" : "1.000");
>  	drm_printf(p, "    duration_incr_ms: %d\n", as_sdp->duration_incr_ms);
>  	drm_printf(p, "    duration_decr_ms: %d\n", as_sdp->duration_decr_ms);
>  	drm_printf(p, "    operation_mode: %d\n", as_sdp->mode);
> -- 
> 2.45.2

-- 
Ville Syrjälä
Intel

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

end of thread, other threads:[~2026-04-27 12:59 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-24  9:34 [RESEND PATCH 0/7] AS SDP cleanups and additions for Panel Replay + VRR Ankit Nautiyal
2026-04-24  9:34 ` [RESEND PATCH 1/7] drm/dp: Rename and relocate AS SDP payload field masks Ankit Nautiyal
2026-04-24  9:34 ` [RESEND PATCH 2/7] drm/dp: Clean up DPRX feature enumeration macros Ankit Nautiyal
2026-04-24  9:34 ` [RESEND PATCH 3/7] drm/dp: Add bits for AS SDP FAVT Payload Fields Parsing support Ankit Nautiyal
2026-04-24  9:34 ` [RESEND PATCH 4/7] drm/dp: Add DPCD for configuring AS SDP for PR + VRR Ankit Nautiyal
2026-04-24  9:34 ` [RESEND PATCH 5/7] drm/dp: Store coasting vtotal in struct drm_dp_as_sdp Ankit Nautiyal
2026-04-27 12:42   ` Ville Syrjälä
2026-04-27 12:52     ` Jani Nikula
2026-04-24  9:34 ` [RESEND PATCH 6/7] drm/dp: Add a helper to get the SDP type as a string Ankit Nautiyal
2026-04-27 12:57   ` Ville Syrjälä
2026-04-24  9:34 ` [RESEND PATCH 7/7] drm/dp: Add target_rr_divider field in AS SDP logging Ankit Nautiyal
2026-04-27 12:58   ` Ville Syrjälä
2026-04-24 10:22 ` ✗ CI.checkpatch: warning for AS SDP cleanups and additions for Panel Replay + VRR Patchwork
2026-04-24 10:23 ` ✓ CI.KUnit: success " Patchwork
2026-04-24 11:29 ` ✓ Xe.CI.BAT: " Patchwork
2026-04-24 12:35 ` ✗ Xe.CI.FULL: failure " Patchwork

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