intel-xe.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/20] drm/i915/display: convert to generic poll_timeout_us()
@ 2025-08-28 12:20 Jani Nikula
  2025-08-28 12:20 ` [PATCH 01/20] drm/i915/hdmi: use generic poll_timeout_us() instead of __wait_for() Jani Nikula
                   ` (24 more replies)
  0 siblings, 25 replies; 47+ messages in thread
From: Jani Nikula @ 2025-08-28 12:20 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: jani.nikula, ville.syrjala

Completely remove the remaining custom i915_utils.h wait macro usage
from display code, and unify on the kernel generic poll_timeout_us()
poll waiter. Also convert existing read_poll_timeout() and
readx_poll_timeout() to poll_timeout_us().

This is a rewrite of [1] switching to the new poll_timeout_us() instead
of read_poll_timeout().

The main functional change is losing the exponentially growing sleep
from the custom macros. This is highlighted in each commit message with
details.


BR,
Jani.


[1] https://lore.kernel.org/r/cover.1751023767.git.jani.nikula@intel.com


Jani Nikula (20):
  drm/i915/hdmi: use generic poll_timeout_us() instead of __wait_for()
  drm/i915/hdcp: use generic poll_timeout_us() instead of __wait_for()
  drm/i915/hdcp: use generic poll_timeout_us() instead of wait_for()
  drm/i915/dsi: use generic poll_timeout_us() instead of wait_for_us()
  drm/i915/dsi-pll: use generic poll_timeout_us() instead of wait_for()
  drm/i915/gmbus: use generic poll_timeout*() instead of wait_for*()
  drm/i915/wm: use generic poll_timeout_us() instead of wait_for()
  drm/i915/cdclk: use generic poll_timeout_us() instead of wait_for()
  drm/i915/power: use generic poll_timeout_us() instead of wait_for()
  drm/i915/power-well: use generic poll_timeout_us() instead of
    wait_for() for DKL PHY
  drm/i915/power-well: use generic poll_timeout_us() instead of
    wait_for() for VLV/CHV
  drm/i915/dp: use generic poll_timeout_us() instead of wait_for()
  drm/i915/dp: use generic poll_timeout_us() instead of wait_for() in
    link training
  drm/i915/vblank: use generic poll_timeout_us() instead of wait_for()
  drm/i915/tc: use generic poll_timeout_us() instead of wait_for()
  drm/i915/dsb: use generic poll_timeout_us() instead of wait_for()
  drm/i915/lspcon: use generic poll_timeout_us() instead of wait_for()
  drm/i915/opregion: use generic poll_timeout_us() instead of wait_for()
  drm/i915/ddi: prefer poll_timeout_us() over readx_poll_timeout()
  drm/i915/pps: prefer poll_timeout_us() over read_poll_timeout()

 drivers/gpu/drm/i915/display/i9xx_wm.c        | 16 +++++--
 drivers/gpu/drm/i915/display/icl_dsi.c        | 18 ++++++--
 drivers/gpu/drm/i915/display/intel_cdclk.c    | 37 ++++++++--------
 drivers/gpu/drm/i915/display/intel_ddi.c      | 32 +++++---------
 .../drm/i915/display/intel_display_power.c    |  7 +++-
 .../i915/display/intel_display_power_well.c   | 42 +++++++++++--------
 drivers/gpu/drm/i915/display/intel_dp.c       | 21 +++++-----
 .../drm/i915/display/intel_dp_link_training.c | 17 ++++++--
 drivers/gpu/drm/i915/display/intel_dsb.c      | 10 ++++-
 drivers/gpu/drm/i915/display/intel_gmbus.c    | 13 +++---
 drivers/gpu/drm/i915/display/intel_hdcp.c     | 25 ++++++-----
 drivers/gpu/drm/i915/display/intel_hdmi.c     | 10 ++---
 drivers/gpu/drm/i915/display/intel_lspcon.c   | 13 ++++--
 drivers/gpu/drm/i915/display/intel_opregion.c | 10 +++--
 drivers/gpu/drm/i915/display/intel_pps.c      |  8 ++--
 drivers/gpu/drm/i915/display/intel_tc.c       | 16 ++++++-
 drivers/gpu/drm/i915/display/intel_vblank.c   |  9 +++-
 drivers/gpu/drm/i915/display/vlv_dsi_pll.c    | 11 +++--
 18 files changed, 193 insertions(+), 122 deletions(-)

-- 
2.47.2


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

* [PATCH 01/20] drm/i915/hdmi: use generic poll_timeout_us() instead of __wait_for()
  2025-08-28 12:20 [PATCH 00/20] drm/i915/display: convert to generic poll_timeout_us() Jani Nikula
@ 2025-08-28 12:20 ` Jani Nikula
  2025-09-03 13:29   ` Hogander, Jouni
  2025-08-28 12:20 ` [PATCH 02/20] drm/i915/hdcp: " Jani Nikula
                   ` (23 subsequent siblings)
  24 siblings, 1 reply; 47+ messages in thread
From: Jani Nikula @ 2025-08-28 12:20 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: jani.nikula, ville.syrjala, Suraj Kandpal

Prefer generic poll helpers over i915 custom helpers.

The functional change is losing the exponentially growing sleep of
__wait_for(), which used to be 1, 2, 4, and 8 ms in this particular
case.

Use an arbitrary constant 4 ms sleep instead. The timeout remains,
varying between 20 ms and 3000 ms.

Cc: Suraj Kandpal <suraj.kandpal@intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
 drivers/gpu/drm/i915/display/intel_hdmi.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_hdmi.c b/drivers/gpu/drm/i915/display/intel_hdmi.c
index cbee628eb26b..09111e6d1d20 100644
--- a/drivers/gpu/drm/i915/display/intel_hdmi.c
+++ b/drivers/gpu/drm/i915/display/intel_hdmi.c
@@ -29,6 +29,7 @@
 #include <linux/delay.h>
 #include <linux/hdmi.h>
 #include <linux/i2c.h>
+#include <linux/iopoll.h>
 #include <linux/slab.h>
 #include <linux/string_helpers.h>
 
@@ -1689,11 +1690,10 @@ intel_hdmi_hdcp2_wait_for_msg(struct intel_digital_port *dig_port,
 	if (timeout < 0)
 		return timeout;
 
-	ret = __wait_for(ret = hdcp2_detect_msg_availability(dig_port,
-							     msg_id, &msg_ready,
-							     &msg_sz),
-			 !ret && msg_ready && msg_sz, timeout * 1000,
-			 1000, 5 * 1000);
+	ret = poll_timeout_us(ret = hdcp2_detect_msg_availability(dig_port, msg_id,
+								  &msg_ready, &msg_sz),
+			      !ret && msg_ready && msg_sz,
+			      4000, timeout * 1000, false);
 	if (ret)
 		drm_dbg_kms(display->drm,
 			    "msg_id: %d, ret: %d, timeout: %d\n",
-- 
2.47.2


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

* [PATCH 02/20] drm/i915/hdcp: use generic poll_timeout_us() instead of __wait_for()
  2025-08-28 12:20 [PATCH 00/20] drm/i915/display: convert to generic poll_timeout_us() Jani Nikula
  2025-08-28 12:20 ` [PATCH 01/20] drm/i915/hdmi: use generic poll_timeout_us() instead of __wait_for() Jani Nikula
@ 2025-08-28 12:20 ` Jani Nikula
  2025-09-03 13:42   ` Hogander, Jouni
  2025-08-28 12:20 ` [PATCH 03/20] drm/i915/hdcp: use generic poll_timeout_us() instead of wait_for() Jani Nikula
                   ` (22 subsequent siblings)
  24 siblings, 1 reply; 47+ messages in thread
From: Jani Nikula @ 2025-08-28 12:20 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: jani.nikula, ville.syrjala, Suraj Kandpal

Prefer generic poll helpers over i915 custom helpers.

The functional change is losing the exponentially growing sleep of
__wait_for(), which used to be 1, 2, 4, ... 64, and 128 ms in this
particular case.

Use an arbitrary 100 ms sleep instead. The timeout remains at 5000 ms.

Cc: Suraj Kandpal <suraj.kandpal@intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
 drivers/gpu/drm/i915/display/intel_hdcp.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_hdcp.c b/drivers/gpu/drm/i915/display/intel_hdcp.c
index 42202c8bb066..0c98e50501a6 100644
--- a/drivers/gpu/drm/i915/display/intel_hdcp.c
+++ b/drivers/gpu/drm/i915/display/intel_hdcp.c
@@ -11,6 +11,7 @@
 #include <linux/component.h>
 #include <linux/debugfs.h>
 #include <linux/i2c.h>
+#include <linux/iopoll.h>
 #include <linux/random.h>
 
 #include <drm/display/drm_hdcp_helper.h>
@@ -326,10 +327,9 @@ static int intel_hdcp_poll_ksv_fifo(struct intel_digital_port *dig_port,
 	bool ksv_ready;
 
 	/* Poll for ksv list ready (spec says max time allowed is 5s) */
-	ret = __wait_for(read_ret = shim->read_ksv_ready(dig_port,
-							 &ksv_ready),
-			 read_ret || ksv_ready, 5 * 1000 * 1000, 1000,
-			 100 * 1000);
+	ret = poll_timeout_us(read_ret = shim->read_ksv_ready(dig_port, &ksv_ready),
+			      read_ret || ksv_ready,
+			      100 * 1000, 5 * 1000 * 1000, false);
 	if (ret)
 		return ret;
 	if (read_ret)
-- 
2.47.2


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

* [PATCH 03/20] drm/i915/hdcp: use generic poll_timeout_us() instead of wait_for()
  2025-08-28 12:20 [PATCH 00/20] drm/i915/display: convert to generic poll_timeout_us() Jani Nikula
  2025-08-28 12:20 ` [PATCH 01/20] drm/i915/hdmi: use generic poll_timeout_us() instead of __wait_for() Jani Nikula
  2025-08-28 12:20 ` [PATCH 02/20] drm/i915/hdcp: " Jani Nikula
@ 2025-08-28 12:20 ` Jani Nikula
  2025-09-04  4:14   ` Hogander, Jouni
  2025-08-28 12:20 ` [PATCH 04/20] drm/i915/dsi: use generic poll_timeout_us() instead of wait_for_us() Jani Nikula
                   ` (21 subsequent siblings)
  24 siblings, 1 reply; 47+ messages in thread
From: Jani Nikula @ 2025-08-28 12:20 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: jani.nikula, ville.syrjala

Prefer generic poll helpers over i915 custom helpers.

The functional change is losing the exponentially growing sleep of
wait_for(), which used to be 10, 20, 40, ..., 640, and 1280 us.

Use an arbitrary constant 100 us sleep instead. The timeout remains at 1
ms.

While at it, use the last failing value for debug logging instead of
reading it again.

Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
 drivers/gpu/drm/i915/display/intel_hdcp.c | 17 ++++++++++-------
 1 file changed, 10 insertions(+), 7 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_hdcp.c b/drivers/gpu/drm/i915/display/intel_hdcp.c
index 0c98e50501a6..d6a105959d26 100644
--- a/drivers/gpu/drm/i915/display/intel_hdcp.c
+++ b/drivers/gpu/drm/i915/display/intel_hdcp.c
@@ -817,6 +817,7 @@ static int intel_hdcp_auth(struct intel_connector *connector)
 	enum port port = dig_port->base.port;
 	unsigned long r0_prime_gen_start;
 	int ret, i, tries = 2;
+	u32 val;
 	union {
 		u32 reg[2];
 		u8 shim[DRM_HDCP_AN_LEN];
@@ -905,8 +906,10 @@ static int intel_hdcp_auth(struct intel_connector *connector)
 		       HDCP_CONF_AUTH_AND_ENC);
 
 	/* Wait for R0 ready */
-	if (wait_for(intel_de_read(display, HDCP_STATUS(display, cpu_transcoder, port)) &
-		     (HDCP_STATUS_R0_READY | HDCP_STATUS_ENC), 1)) {
+	ret = poll_timeout_us(val = intel_de_read(display, HDCP_STATUS(display, cpu_transcoder, port)),
+			      val & (HDCP_STATUS_R0_READY | HDCP_STATUS_ENC),
+			      100, 1000, false);
+	if (ret) {
 		drm_err(display->drm, "Timed out waiting for R0 ready\n");
 		return -ETIMEDOUT;
 	}
@@ -938,16 +941,16 @@ static int intel_hdcp_auth(struct intel_connector *connector)
 			       ri.reg);
 
 		/* Wait for Ri prime match */
-		if (!wait_for(intel_de_read(display, HDCP_STATUS(display, cpu_transcoder, port)) &
-			      (HDCP_STATUS_RI_MATCH | HDCP_STATUS_ENC), 1))
+		ret = poll_timeout_us(val = intel_de_read(display, HDCP_STATUS(display, cpu_transcoder, port)),
+				      val & (HDCP_STATUS_RI_MATCH | HDCP_STATUS_ENC),
+				      100, 1000, false);
+		if (!ret)
 			break;
 	}
 
 	if (i == tries) {
 		drm_dbg_kms(display->drm,
-			    "Timed out waiting for Ri prime match (%x)\n",
-			    intel_de_read(display,
-					  HDCP_STATUS(display, cpu_transcoder, port)));
+			    "Timed out waiting for Ri prime match (%x)\n", val);
 		return -ETIMEDOUT;
 	}
 
-- 
2.47.2


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

* [PATCH 04/20] drm/i915/dsi: use generic poll_timeout_us() instead of wait_for_us()
  2025-08-28 12:20 [PATCH 00/20] drm/i915/display: convert to generic poll_timeout_us() Jani Nikula
                   ` (2 preceding siblings ...)
  2025-08-28 12:20 ` [PATCH 03/20] drm/i915/hdcp: use generic poll_timeout_us() instead of wait_for() Jani Nikula
@ 2025-08-28 12:20 ` Jani Nikula
  2025-09-04  4:27   ` Hogander, Jouni
  2025-08-28 12:20 ` [PATCH 05/20] drm/i915/dsi-pll: use generic poll_timeout_us() instead of wait_for() Jani Nikula
                   ` (20 subsequent siblings)
  24 siblings, 1 reply; 47+ messages in thread
From: Jani Nikula @ 2025-08-28 12:20 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: jani.nikula, ville.syrjala

Prefer generic poll helpers over i915 custom helpers.

The sleep and timeout remain the same as for wait_for_us().

Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
 drivers/gpu/drm/i915/display/icl_dsi.c | 18 ++++++++++++++----
 1 file changed, 14 insertions(+), 4 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/icl_dsi.c b/drivers/gpu/drm/i915/display/icl_dsi.c
index 44310984bb57..37faa8f19f6e 100644
--- a/drivers/gpu/drm/i915/display/icl_dsi.c
+++ b/drivers/gpu/drm/i915/display/icl_dsi.c
@@ -25,6 +25,8 @@
  *   Jani Nikula <jani.nikula@intel.com>
  */
 
+#include <linux/iopoll.h>
+
 #include <drm/display/drm_dsc_helper.h>
 #include <drm/drm_atomic_helper.h>
 #include <drm/drm_fixed.h>
@@ -72,8 +74,12 @@ static int payload_credits_available(struct intel_display *display,
 static bool wait_for_header_credits(struct intel_display *display,
 				    enum transcoder dsi_trans, int hdr_credit)
 {
-	if (wait_for_us(header_credits_available(display, dsi_trans) >=
-			hdr_credit, 100)) {
+	int ret, available;
+
+	ret = poll_timeout_us(available = header_credits_available(display, dsi_trans),
+			      available >= hdr_credit,
+			      10, 100, false);
+	if (ret) {
 		drm_err(display->drm, "DSI header credits not released\n");
 		return false;
 	}
@@ -84,8 +90,12 @@ static bool wait_for_header_credits(struct intel_display *display,
 static bool wait_for_payload_credits(struct intel_display *display,
 				     enum transcoder dsi_trans, int payld_credit)
 {
-	if (wait_for_us(payload_credits_available(display, dsi_trans) >=
-			payld_credit, 100)) {
+	int ret, available;
+
+	ret = poll_timeout_us(available = payload_credits_available(display, dsi_trans),
+			      available >= payld_credit,
+			      10, 100, false);
+	if (ret) {
 		drm_err(display->drm, "DSI payload credits not released\n");
 		return false;
 	}
-- 
2.47.2


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

* [PATCH 05/20] drm/i915/dsi-pll: use generic poll_timeout_us() instead of wait_for()
  2025-08-28 12:20 [PATCH 00/20] drm/i915/display: convert to generic poll_timeout_us() Jani Nikula
                   ` (3 preceding siblings ...)
  2025-08-28 12:20 ` [PATCH 04/20] drm/i915/dsi: use generic poll_timeout_us() instead of wait_for_us() Jani Nikula
@ 2025-08-28 12:20 ` Jani Nikula
  2025-09-04  4:34   ` Hogander, Jouni
  2025-08-28 12:20 ` [PATCH 06/20] drm/i915/gmbus: use generic poll_timeout*() instead of wait_for*() Jani Nikula
                   ` (19 subsequent siblings)
  24 siblings, 1 reply; 47+ messages in thread
From: Jani Nikula @ 2025-08-28 12:20 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: jani.nikula, ville.syrjala

Prefer generic poll helpers over i915 custom helpers.

The functional change is losing the exponentially growing sleep of
wait_for(), which used to be 10, 20, 40, ..., 640, and 1280 us.

Use an arbitrary constant 500 us sleep instead. The timeout remains at
20 ms.

Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
 drivers/gpu/drm/i915/display/vlv_dsi_pll.c | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/vlv_dsi_pll.c b/drivers/gpu/drm/i915/display/vlv_dsi_pll.c
index 83afe1315e96..f078b9cda96c 100644
--- a/drivers/gpu/drm/i915/display/vlv_dsi_pll.c
+++ b/drivers/gpu/drm/i915/display/vlv_dsi_pll.c
@@ -25,12 +25,12 @@
  *	Yogesh Mohan Marimuthu <yogesh.mohan.marimuthu@intel.com>
  */
 
+#include <linux/iopoll.h>
 #include <linux/kernel.h>
 #include <linux/string_helpers.h>
 
 #include <drm/drm_print.h>
 
-#include "i915_utils.h"
 #include "intel_de.h"
 #include "intel_display_types.h"
 #include "intel_dsi.h"
@@ -214,6 +214,8 @@ void vlv_dsi_pll_enable(struct intel_encoder *encoder,
 			const struct intel_crtc_state *config)
 {
 	struct intel_display *display = to_intel_display(encoder);
+	u32 val;
+	int ret;
 
 	drm_dbg_kms(display->drm, "\n");
 
@@ -231,9 +233,10 @@ void vlv_dsi_pll_enable(struct intel_encoder *encoder,
 
 	vlv_cck_write(display->drm, CCK_REG_DSI_PLL_CONTROL, config->dsi_pll.ctrl);
 
-	if (wait_for(vlv_cck_read(display->drm, CCK_REG_DSI_PLL_CONTROL) &
-						DSI_PLL_LOCK, 20)) {
-
+	ret = poll_timeout_us(val = vlv_cck_read(display->drm, CCK_REG_DSI_PLL_CONTROL),
+			      val & DSI_PLL_LOCK,
+			      500, 20 * 1000, false);
+	if (ret) {
 		vlv_cck_put(display->drm);
 		drm_err(display->drm, "DSI PLL lock failed\n");
 		return;
-- 
2.47.2


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

* [PATCH 06/20] drm/i915/gmbus: use generic poll_timeout*() instead of wait_for*()
  2025-08-28 12:20 [PATCH 00/20] drm/i915/display: convert to generic poll_timeout_us() Jani Nikula
                   ` (4 preceding siblings ...)
  2025-08-28 12:20 ` [PATCH 05/20] drm/i915/dsi-pll: use generic poll_timeout_us() instead of wait_for() Jani Nikula
@ 2025-08-28 12:20 ` Jani Nikula
  2025-09-04  4:53   ` Hogander, Jouni
  2025-08-28 12:20 ` [PATCH 07/20] drm/i915/wm: use generic poll_timeout_us() instead of wait_for() Jani Nikula
                   ` (18 subsequent siblings)
  24 siblings, 1 reply; 47+ messages in thread
From: Jani Nikula @ 2025-08-28 12:20 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: jani.nikula, ville.syrjala

Prefer generic poll helpers over i915 custom helpers.

The "two tier" wait_for_us() + wait_for() combination appeared without
much explanation in commit 4e6c2d58ba86 ("drm/i915: Take forcewake once
for the entire GMBUS transaction"). Try to mimic roughly the same with
the generic helpers.

wait_for_us() with 10 us or shorter timeouts ends up in
_wait_for_atomic(). Thus use poll_timeout_us_atomic() for the first try,
with the same 2 us timeout and no sleep.

For the fallback, the functional change is losing the exponentially
growing sleep of wait_for(), which used to be 10, 20, 40, ..., 640, and
1280 us. Use an arbitrary constant 500 us sleep instead. The timeout
remains at 50 ms.

Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
 drivers/gpu/drm/i915/display/intel_gmbus.c | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_gmbus.c b/drivers/gpu/drm/i915/display/intel_gmbus.c
index 063335053d13..358210adb8f8 100644
--- a/drivers/gpu/drm/i915/display/intel_gmbus.c
+++ b/drivers/gpu/drm/i915/display/intel_gmbus.c
@@ -30,13 +30,13 @@
 #include <linux/export.h>
 #include <linux/i2c-algo-bit.h>
 #include <linux/i2c.h>
+#include <linux/iopoll.h>
 
 #include <drm/display/drm_hdcp_helper.h>
 
 #include "i915_drv.h"
 #include "i915_irq.h"
 #include "i915_reg.h"
-#include "i915_utils.h"
 #include "intel_de.h"
 #include "intel_display_regs.h"
 #include "intel_display_types.h"
@@ -415,11 +415,14 @@ static int gmbus_wait(struct intel_display *display, u32 status, u32 irq_en)
 	intel_de_write_fw(display, GMBUS4(display), irq_en);
 
 	status |= GMBUS_SATOER;
-	ret = wait_for_us((gmbus2 = intel_de_read_fw(display, GMBUS2(display))) & status,
-			  2);
+
+	ret = poll_timeout_us_atomic(gmbus2 = intel_de_read_fw(display, GMBUS2(display)),
+				     gmbus2 & status,
+				     0, 2, false);
 	if (ret)
-		ret = wait_for((gmbus2 = intel_de_read_fw(display, GMBUS2(display))) & status,
-			       50);
+		ret = poll_timeout_us(gmbus2 = intel_de_read_fw(display, GMBUS2(display)),
+				      gmbus2 & status,
+				      500, 50 * 1000, false);
 
 	intel_de_write_fw(display, GMBUS4(display), 0);
 	remove_wait_queue(&display->gmbus.wait_queue, &wait);
-- 
2.47.2


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

* [PATCH 07/20] drm/i915/wm: use generic poll_timeout_us() instead of wait_for()
  2025-08-28 12:20 [PATCH 00/20] drm/i915/display: convert to generic poll_timeout_us() Jani Nikula
                   ` (5 preceding siblings ...)
  2025-08-28 12:20 ` [PATCH 06/20] drm/i915/gmbus: use generic poll_timeout*() instead of wait_for*() Jani Nikula
@ 2025-08-28 12:20 ` Jani Nikula
  2025-09-04  5:01   ` Hogander, Jouni
  2025-08-28 12:20 ` [PATCH 08/20] drm/i915/cdclk: " Jani Nikula
                   ` (17 subsequent siblings)
  24 siblings, 1 reply; 47+ messages in thread
From: Jani Nikula @ 2025-08-28 12:20 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: jani.nikula, ville.syrjala

Prefer generic poll helpers over i915 custom helpers.

The functional change is losing the exponentially growing sleep of
wait_for(), which used to be 10, 20, 40, ..., 640, and 1280 us.

Use an arbitrary constant 500 us sleep instead. The timeout remains at 3
ms.

Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
 drivers/gpu/drm/i915/display/i9xx_wm.c | 16 ++++++++++++----
 1 file changed, 12 insertions(+), 4 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/i9xx_wm.c b/drivers/gpu/drm/i915/display/i9xx_wm.c
index 591acce2a4b1..060aff765994 100644
--- a/drivers/gpu/drm/i915/display/i9xx_wm.c
+++ b/drivers/gpu/drm/i915/display/i9xx_wm.c
@@ -3,6 +3,8 @@
  * Copyright © 2023 Intel Corporation
  */
 
+#include <linux/iopoll.h>
+
 #include "soc/intel_dram.h"
 
 #include "i915_drv.h"
@@ -112,6 +114,7 @@ static const struct cxsr_latency *pnv_get_cxsr_latency(struct intel_display *dis
 static void chv_set_memory_dvfs(struct intel_display *display, bool enable)
 {
 	u32 val;
+	int ret;
 
 	vlv_punit_get(display->drm);
 
@@ -124,8 +127,10 @@ static void chv_set_memory_dvfs(struct intel_display *display, bool enable)
 	val |= FORCE_DDR_FREQ_REQ_ACK;
 	vlv_punit_write(display->drm, PUNIT_REG_DDR_SETUP2, val);
 
-	if (wait_for((vlv_punit_read(display->drm, PUNIT_REG_DDR_SETUP2) &
-		      FORCE_DDR_FREQ_REQ_ACK) == 0, 3))
+	ret = poll_timeout_us(val = vlv_punit_read(display->drm, PUNIT_REG_DDR_SETUP2),
+			      (val & FORCE_DDR_FREQ_REQ_ACK) == 0,
+			      500, 3000, false);
+	if (ret)
 		drm_err(display->drm,
 			"timed out waiting for Punit DDR DVFS request\n");
 
@@ -3905,6 +3910,7 @@ static void vlv_wm_get_hw_state(struct intel_display *display)
 	struct vlv_wm_values *wm = &display->wm.vlv;
 	struct intel_crtc *crtc;
 	u32 val;
+	int ret;
 
 	vlv_read_wm_values(display, wm);
 
@@ -3931,8 +3937,10 @@ static void vlv_wm_get_hw_state(struct intel_display *display)
 		val |= FORCE_DDR_FREQ_REQ_ACK;
 		vlv_punit_write(display->drm, PUNIT_REG_DDR_SETUP2, val);
 
-		if (wait_for((vlv_punit_read(display->drm, PUNIT_REG_DDR_SETUP2) &
-			      FORCE_DDR_FREQ_REQ_ACK) == 0, 3)) {
+		ret = poll_timeout_us(val = vlv_punit_read(display->drm, PUNIT_REG_DDR_SETUP2),
+				      (val & FORCE_DDR_FREQ_REQ_ACK) == 0,
+				      500, 3000, false);
+		if (ret) {
 			drm_dbg_kms(display->drm,
 				    "Punit not acking DDR DVFS request, "
 				    "assuming DDR DVFS is disabled\n");
-- 
2.47.2


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

* [PATCH 08/20] drm/i915/cdclk: use generic poll_timeout_us() instead of wait_for()
  2025-08-28 12:20 [PATCH 00/20] drm/i915/display: convert to generic poll_timeout_us() Jani Nikula
                   ` (6 preceding siblings ...)
  2025-08-28 12:20 ` [PATCH 07/20] drm/i915/wm: use generic poll_timeout_us() instead of wait_for() Jani Nikula
@ 2025-08-28 12:20 ` Jani Nikula
  2025-09-04  5:45   ` Hogander, Jouni
  2025-08-28 12:20 ` [PATCH 09/20] drm/i915/power: " Jani Nikula
                   ` (16 subsequent siblings)
  24 siblings, 1 reply; 47+ messages in thread
From: Jani Nikula @ 2025-08-28 12:20 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: jani.nikula, ville.syrjala

Prefer generic poll helpers over i915 custom helpers.

The functional change is losing the exponentially growing sleep of
wait_for(), which used to be 10, 20, 40, ..., 640, and 1280 us.

Use an arbitrary constant 500 us sleep instead. The timeout remains at
50 ms.

Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
 drivers/gpu/drm/i915/display/intel_cdclk.c | 37 ++++++++++++----------
 1 file changed, 20 insertions(+), 17 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_cdclk.c b/drivers/gpu/drm/i915/display/intel_cdclk.c
index d7ba3970e1e9..9725eebe5706 100644
--- a/drivers/gpu/drm/i915/display/intel_cdclk.c
+++ b/drivers/gpu/drm/i915/display/intel_cdclk.c
@@ -22,6 +22,7 @@
  */
 
 #include <linux/debugfs.h>
+#include <linux/iopoll.h>
 #include <linux/time.h>
 
 #include <drm/drm_fixed.h>
@@ -673,6 +674,7 @@ static void vlv_set_cdclk(struct intel_display *display,
 	int cdclk = cdclk_config->cdclk;
 	u32 val, cmd = cdclk_config->voltage_level;
 	intel_wakeref_t wakeref;
+	int ret;
 
 	switch (cdclk) {
 	case 400000:
@@ -703,12 +705,12 @@ static void vlv_set_cdclk(struct intel_display *display,
 	val &= ~DSPFREQGUAR_MASK;
 	val |= (cmd << DSPFREQGUAR_SHIFT);
 	vlv_punit_write(display->drm, PUNIT_REG_DSPSSPM, val);
-	if (wait_for((vlv_punit_read(display->drm, PUNIT_REG_DSPSSPM) &
-		      DSPFREQSTAT_MASK) == (cmd << DSPFREQSTAT_SHIFT),
-		     50)) {
-		drm_err(display->drm,
-			"timed out waiting for CDclk change\n");
-	}
+
+	ret = poll_timeout_us(val = vlv_punit_read(display->drm, PUNIT_REG_DSPSSPM),
+			      (val & DSPFREQSTAT_MASK) == (cmd << DSPFREQSTAT_SHIFT),
+			      500, 50 * 1000, false);
+	if (ret)
+		drm_err(display->drm, "timed out waiting for CDCLK change\n");
 
 	if (cdclk == 400000) {
 		u32 divider;
@@ -722,11 +724,11 @@ static void vlv_set_cdclk(struct intel_display *display,
 		val |= divider;
 		vlv_cck_write(display->drm, CCK_DISPLAY_CLOCK_CONTROL, val);
 
-		if (wait_for((vlv_cck_read(display->drm, CCK_DISPLAY_CLOCK_CONTROL) &
-			      CCK_FREQUENCY_STATUS) == (divider << CCK_FREQUENCY_STATUS_SHIFT),
-			     50))
-			drm_err(display->drm,
-				"timed out waiting for CDclk change\n");
+		ret = poll_timeout_us(val = vlv_cck_read(display->drm, CCK_DISPLAY_CLOCK_CONTROL),
+				      (val & CCK_FREQUENCY_STATUS) == (divider << CCK_FREQUENCY_STATUS_SHIFT),
+				      500, 50 * 1000, false);
+		if (ret)
+			drm_err(display->drm, "timed out waiting for CDCLK change\n");
 	}
 
 	/* adjust self-refresh exit latency value */
@@ -762,6 +764,7 @@ static void chv_set_cdclk(struct intel_display *display,
 	int cdclk = cdclk_config->cdclk;
 	u32 val, cmd = cdclk_config->voltage_level;
 	intel_wakeref_t wakeref;
+	int ret;
 
 	switch (cdclk) {
 	case 333333:
@@ -787,12 +790,12 @@ static void chv_set_cdclk(struct intel_display *display,
 	val &= ~DSPFREQGUAR_MASK_CHV;
 	val |= (cmd << DSPFREQGUAR_SHIFT_CHV);
 	vlv_punit_write(display->drm, PUNIT_REG_DSPSSPM, val);
-	if (wait_for((vlv_punit_read(display->drm, PUNIT_REG_DSPSSPM) &
-		      DSPFREQSTAT_MASK_CHV) == (cmd << DSPFREQSTAT_SHIFT_CHV),
-		     50)) {
-		drm_err(display->drm,
-			"timed out waiting for CDclk change\n");
-	}
+
+	ret = poll_timeout_us(val = vlv_punit_read(display->drm, PUNIT_REG_DSPSSPM),
+			      (val & DSPFREQSTAT_MASK_CHV) == (cmd << DSPFREQSTAT_SHIFT_CHV),
+			      500, 50 * 1000, false);
+	if (ret)
+		drm_err(display->drm, "timed out waiting for CDCLK change\n");
 
 	vlv_punit_put(display->drm);
 
-- 
2.47.2


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

* [PATCH 09/20] drm/i915/power: use generic poll_timeout_us() instead of wait_for()
  2025-08-28 12:20 [PATCH 00/20] drm/i915/display: convert to generic poll_timeout_us() Jani Nikula
                   ` (7 preceding siblings ...)
  2025-08-28 12:20 ` [PATCH 08/20] drm/i915/cdclk: " Jani Nikula
@ 2025-08-28 12:20 ` Jani Nikula
  2025-09-04  5:47   ` Hogander, Jouni
  2025-08-28 12:20 ` [PATCH 10/20] drm/i915/power-well: use generic poll_timeout_us() instead of wait_for() for DKL PHY Jani Nikula
                   ` (15 subsequent siblings)
  24 siblings, 1 reply; 47+ messages in thread
From: Jani Nikula @ 2025-08-28 12:20 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: jani.nikula, ville.syrjala

Prefer generic poll helpers over i915 custom helpers.

The functional change is losing the exponentially growing sleep of
wait_for(), which used to be 10, 20, 40, ..., 640, and 1280 us.

Use an arbitrary constant 100 us sleep instead. The timeout remains at 1
ms.

Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
 drivers/gpu/drm/i915/display/intel_display_power.c | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_display_power.c b/drivers/gpu/drm/i915/display/intel_display_power.c
index d1d3b6f89e2a..7340d5a71673 100644
--- a/drivers/gpu/drm/i915/display/intel_display_power.c
+++ b/drivers/gpu/drm/i915/display/intel_display_power.c
@@ -3,6 +3,7 @@
  * Copyright © 2019 Intel Corporation
  */
 
+#include <linux/iopoll.h>
 #include <linux/string_helpers.h>
 
 #include "soc/intel_dram.h"
@@ -1310,8 +1311,10 @@ static void hsw_disable_lcpll(struct intel_display *display,
 	hsw_write_dcomp(display, val);
 	ndelay(100);
 
-	if (wait_for((hsw_read_dcomp(display) &
-		      D_COMP_RCOMP_IN_PROGRESS) == 0, 1))
+	ret = poll_timeout_us(val = hsw_read_dcomp(display),
+			      (val & D_COMP_RCOMP_IN_PROGRESS) == 0,
+			      100, 1000, false);
+	if (ret)
 		drm_err(display->drm, "D_COMP RCOMP still in progress\n");
 
 	if (allow_power_down) {
-- 
2.47.2


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

* [PATCH 10/20] drm/i915/power-well: use generic poll_timeout_us() instead of wait_for() for DKL PHY
  2025-08-28 12:20 [PATCH 00/20] drm/i915/display: convert to generic poll_timeout_us() Jani Nikula
                   ` (8 preceding siblings ...)
  2025-08-28 12:20 ` [PATCH 09/20] drm/i915/power: " Jani Nikula
@ 2025-08-28 12:20 ` Jani Nikula
  2025-09-04  5:48   ` Hogander, Jouni
  2025-08-28 12:20 ` [PATCH 11/20] drm/i915/power-well: use generic poll_timeout_us() instead of wait_for() for VLV/CHV Jani Nikula
                   ` (14 subsequent siblings)
  24 siblings, 1 reply; 47+ messages in thread
From: Jani Nikula @ 2025-08-28 12:20 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: jani.nikula, ville.syrjala

Prefer generic poll helpers over i915 custom helpers.

The functional change is losing the exponentially growing sleep of
wait_for(), which used to be 10, 20, 40, ..., 640, and 1280 us.

Use an arbitrary constant 100 us sleep instead. The timeout remains at 1
ms.

Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
 .../gpu/drm/i915/display/intel_display_power_well.c | 13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_display_power_well.c b/drivers/gpu/drm/i915/display/intel_display_power_well.c
index 31c2a07bb188..275bc2708a0e 100644
--- a/drivers/gpu/drm/i915/display/intel_display_power_well.c
+++ b/drivers/gpu/drm/i915/display/intel_display_power_well.c
@@ -3,6 +3,8 @@
  * Copyright © 2022 Intel Corporation
  */
 
+#include <linux/iopoll.h>
+
 #include "i915_drv.h"
 #include "i915_irq.h"
 #include "i915_reg.h"
@@ -528,6 +530,8 @@ icl_tc_phy_aux_power_well_enable(struct intel_display *display,
 	const struct i915_power_well_regs *regs = power_well->desc->ops->regs;
 	bool is_tbt = power_well->desc->is_tc_tbt;
 	bool timeout_expected;
+	u32 val;
+	int ret;
 
 	icl_tc_port_assert_ref_held(display, power_well, dig_port);
 
@@ -554,10 +558,11 @@ icl_tc_phy_aux_power_well_enable(struct intel_display *display,
 
 		tc_port = TGL_AUX_PW_TO_TC_PORT(i915_power_well_instance(power_well)->hsw.idx);
 
-		if (wait_for(intel_dkl_phy_read(display, DKL_CMN_UC_DW_27(tc_port)) &
-			     DKL_CMN_UC_DW27_UC_HEALTH, 1))
-			drm_warn(display->drm,
-				 "Timeout waiting TC uC health\n");
+		ret = poll_timeout_us(val = intel_dkl_phy_read(display, DKL_CMN_UC_DW_27(tc_port)),
+				      val & DKL_CMN_UC_DW27_UC_HEALTH,
+				      100, 1000, false);
+		if (ret)
+			drm_warn(display->drm, "Timeout waiting TC uC health\n");
 	}
 }
 
-- 
2.47.2


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

* [PATCH 11/20] drm/i915/power-well: use generic poll_timeout_us() instead of wait_for() for VLV/CHV
  2025-08-28 12:20 [PATCH 00/20] drm/i915/display: convert to generic poll_timeout_us() Jani Nikula
                   ` (9 preceding siblings ...)
  2025-08-28 12:20 ` [PATCH 10/20] drm/i915/power-well: use generic poll_timeout_us() instead of wait_for() for DKL PHY Jani Nikula
@ 2025-08-28 12:20 ` Jani Nikula
  2025-09-04  5:54   ` Hogander, Jouni
  2025-08-28 12:20 ` [PATCH 12/20] drm/i915/dp: use generic poll_timeout_us() instead of wait_for() Jani Nikula
                   ` (13 subsequent siblings)
  24 siblings, 1 reply; 47+ messages in thread
From: Jani Nikula @ 2025-08-28 12:20 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: jani.nikula, ville.syrjala

Prefer generic poll helpers over i915 custom helpers.

The functional change is losing the exponentially growing sleep of
wait_for(), which used to be 10, 20, 40, ..., 640, and 1280 us.

Use an arbitrary constant 500 us sleep instead. The timeout remains at
100 ms.

Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
 .../i915/display/intel_display_power_well.c   | 29 ++++++++++---------
 1 file changed, 15 insertions(+), 14 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_display_power_well.c b/drivers/gpu/drm/i915/display/intel_display_power_well.c
index 275bc2708a0e..dc1a8c297d16 100644
--- a/drivers/gpu/drm/i915/display/intel_display_power_well.c
+++ b/drivers/gpu/drm/i915/display/intel_display_power_well.c
@@ -8,7 +8,6 @@
 #include "i915_drv.h"
 #include "i915_irq.h"
 #include "i915_reg.h"
-#include "i915_utils.h"
 #include "intel_backlight_regs.h"
 #include "intel_combo_phy.h"
 #include "intel_combo_phy_regs.h"
@@ -1128,6 +1127,8 @@ static void vlv_set_power_well(struct intel_display *display,
 	u32 mask;
 	u32 state;
 	u32 ctrl;
+	u32 val;
+	int ret;
 
 	mask = PUNIT_PWRGT_MASK(pw_idx);
 	state = enable ? PUNIT_PWRGT_PWR_ON(pw_idx) :
@@ -1135,10 +1136,8 @@ static void vlv_set_power_well(struct intel_display *display,
 
 	vlv_punit_get(display->drm);
 
-#define COND \
-	((vlv_punit_read(display->drm, PUNIT_REG_PWRGT_STATUS) & mask) == state)
-
-	if (COND)
+	val = vlv_punit_read(display->drm, PUNIT_REG_PWRGT_STATUS);
+	if ((val & mask) == state)
 		goto out;
 
 	ctrl = vlv_punit_read(display->drm, PUNIT_REG_PWRGT_CTRL);
@@ -1146,14 +1145,15 @@ static void vlv_set_power_well(struct intel_display *display,
 	ctrl |= state;
 	vlv_punit_write(display->drm, PUNIT_REG_PWRGT_CTRL, ctrl);
 
-	if (wait_for(COND, 100))
+	ret = poll_timeout_us(val = vlv_punit_read(display->drm, PUNIT_REG_PWRGT_STATUS),
+			      (val & mask) == state,
+			      500, 100 * 1000, false);
+	if (ret)
 		drm_err(display->drm,
 			"timeout setting power well state %08x (%08x)\n",
 			state,
 			vlv_punit_read(display->drm, PUNIT_REG_PWRGT_CTRL));
 
-#undef COND
-
 out:
 	vlv_punit_put(display->drm);
 }
@@ -1717,23 +1717,24 @@ static void chv_set_pipe_power_well(struct intel_display *display,
 	enum pipe pipe = PIPE_A;
 	u32 state;
 	u32 ctrl;
+	int ret;
 
 	state = enable ? DP_SSS_PWR_ON(pipe) : DP_SSS_PWR_GATE(pipe);
 
 	vlv_punit_get(display->drm);
 
-#define COND \
-	((vlv_punit_read(display->drm, PUNIT_REG_DSPSSPM) & DP_SSS_MASK(pipe)) == state)
-
-	if (COND)
+	ctrl = vlv_punit_read(display->drm, PUNIT_REG_DSPSSPM);
+	if ((ctrl & DP_SSS_MASK(pipe)) == state)
 		goto out;
 
-	ctrl = vlv_punit_read(display->drm, PUNIT_REG_DSPSSPM);
 	ctrl &= ~DP_SSC_MASK(pipe);
 	ctrl |= enable ? DP_SSC_PWR_ON(pipe) : DP_SSC_PWR_GATE(pipe);
 	vlv_punit_write(display->drm, PUNIT_REG_DSPSSPM, ctrl);
 
-	if (wait_for(COND, 100))
+	ret = poll_timeout_us(ctrl = vlv_punit_read(display->drm, PUNIT_REG_DSPSSPM),
+			      (ctrl & DP_SSS_MASK(pipe)) == state,
+			      500, 100 * 1000, false);
+	if (ret)
 		drm_err(display->drm,
 			"timeout setting power well state %08x (%08x)\n",
 			state,
-- 
2.47.2


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

* [PATCH 12/20] drm/i915/dp: use generic poll_timeout_us() instead of wait_for()
  2025-08-28 12:20 [PATCH 00/20] drm/i915/display: convert to generic poll_timeout_us() Jani Nikula
                   ` (10 preceding siblings ...)
  2025-08-28 12:20 ` [PATCH 11/20] drm/i915/power-well: use generic poll_timeout_us() instead of wait_for() for VLV/CHV Jani Nikula
@ 2025-08-28 12:20 ` Jani Nikula
  2025-09-04  6:08   ` Hogander, Jouni
  2025-08-28 12:20 ` [PATCH 13/20] drm/i915/dp: use generic poll_timeout_us() instead of wait_for() in link training Jani Nikula
                   ` (12 subsequent siblings)
  24 siblings, 1 reply; 47+ messages in thread
From: Jani Nikula @ 2025-08-28 12:20 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: jani.nikula, ville.syrjala

Prefer generic poll helpers over i915 custom helpers.

The functional change is losing the exponentially growing sleep of
wait_for(), which used to be 10, 20, 40, ..., 640, and 1280 us.

Use an arbitrary constant 1 ms sleep instead. The timeouts remain, being
500 ms or 1000 ms depending on the case.

Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
 drivers/gpu/drm/i915/display/intel_dp.c | 21 +++++++++++----------
 1 file changed, 11 insertions(+), 10 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
index bed7cba1ca68..65468c0126ff 100644
--- a/drivers/gpu/drm/i915/display/intel_dp.c
+++ b/drivers/gpu/drm/i915/display/intel_dp.c
@@ -27,6 +27,7 @@
 
 #include <linux/export.h>
 #include <linux/i2c.h>
+#include <linux/iopoll.h>
 #include <linux/log2.h>
 #include <linux/math.h>
 #include <linux/notifier.h>
@@ -3878,10 +3879,11 @@ static int intel_dp_pcon_start_frl_training(struct intel_dp *intel_dp)
 	if (ret < 0)
 		return ret;
 	/* Wait for PCON to be FRL Ready */
-	wait_for(is_active = drm_dp_pcon_is_frl_ready(&intel_dp->aux) == true, TIMEOUT_FRL_READY_MS);
-
-	if (!is_active)
-		return -ETIMEDOUT;
+	ret = poll_timeout_us(is_active = drm_dp_pcon_is_frl_ready(&intel_dp->aux),
+			      is_active,
+			      1000, TIMEOUT_FRL_READY_MS * 1000, false);
+	if (ret)
+		return ret;
 
 	ret = drm_dp_pcon_frl_configure_1(&intel_dp->aux, max_frl_bw,
 					  DP_PCON_ENABLE_SEQUENTIAL_LINK);
@@ -3898,12 +3900,11 @@ static int intel_dp_pcon_start_frl_training(struct intel_dp *intel_dp)
 	 * Wait for FRL to be completed
 	 * Check if the HDMI Link is up and active.
 	 */
-	wait_for(is_active =
-		 intel_dp_pcon_is_frl_trained(intel_dp, max_frl_bw_mask, &frl_trained_mask),
-		 TIMEOUT_HDMI_LINK_ACTIVE_MS);
-
-	if (!is_active)
-		return -ETIMEDOUT;
+	ret = poll_timeout_us(is_active = intel_dp_pcon_is_frl_trained(intel_dp, max_frl_bw_mask, &frl_trained_mask),
+			      is_active,
+			      1000, TIMEOUT_HDMI_LINK_ACTIVE_MS * 1000, false);
+	if (ret)
+		return ret;
 
 frl_trained:
 	drm_dbg(display->drm, "FRL_TRAINED_MASK = %u\n", frl_trained_mask);
-- 
2.47.2


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

* [PATCH 13/20] drm/i915/dp: use generic poll_timeout_us() instead of wait_for() in link training
  2025-08-28 12:20 [PATCH 00/20] drm/i915/display: convert to generic poll_timeout_us() Jani Nikula
                   ` (11 preceding siblings ...)
  2025-08-28 12:20 ` [PATCH 12/20] drm/i915/dp: use generic poll_timeout_us() instead of wait_for() Jani Nikula
@ 2025-08-28 12:20 ` Jani Nikula
  2025-09-04  6:15   ` Hogander, Jouni
  2025-08-28 12:20 ` [PATCH 14/20] drm/i915/vblank: use generic poll_timeout_us() instead of wait_for() Jani Nikula
                   ` (11 subsequent siblings)
  24 siblings, 1 reply; 47+ messages in thread
From: Jani Nikula @ 2025-08-28 12:20 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: jani.nikula, ville.syrjala

Prefer generic poll helpers over i915 custom helpers.

The functional change is losing the exponentially growing sleep of
wait_for(), which used to be 10, 20, 40, ..., 640, and 1280 us.

Use an arbitrary constant 500 us sleep instead. The timeout remains at
500 ms.

Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
 .../drm/i915/display/intel_dp_link_training.c   | 17 +++++++++++++----
 1 file changed, 13 insertions(+), 4 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_dp_link_training.c b/drivers/gpu/drm/i915/display/intel_dp_link_training.c
index 9d14b4e59545..27f3716bdc1f 100644
--- a/drivers/gpu/drm/i915/display/intel_dp_link_training.c
+++ b/drivers/gpu/drm/i915/display/intel_dp_link_training.c
@@ -22,6 +22,7 @@
  */
 
 #include <linux/debugfs.h>
+#include <linux/iopoll.h>
 
 #include <drm/display/drm_dp_helper.h>
 #include <drm/drm_print.h>
@@ -1135,15 +1136,19 @@ void intel_dp_stop_link_train(struct intel_dp *intel_dp,
 {
 	struct intel_display *display = to_intel_display(intel_dp);
 	struct intel_encoder *encoder = &dp_to_dig_port(intel_dp)->base;
+	int ret;
 
 	intel_dp->link.active = true;
 
 	intel_dp_program_link_training_pattern(intel_dp, crtc_state, DP_PHY_DPRX,
 					       DP_TRAINING_PATTERN_DISABLE);
 
-	if (intel_dp_is_uhbr(crtc_state) &&
-	    wait_for(intel_dp_128b132b_intra_hop(intel_dp, crtc_state) == 0, 500)) {
-		lt_dbg(intel_dp, DP_PHY_DPRX, "128b/132b intra-hop not clearing\n");
+	if (intel_dp_is_uhbr(crtc_state)) {
+		ret = poll_timeout_us(ret = intel_dp_128b132b_intra_hop(intel_dp, crtc_state),
+				      ret == 0,
+				      500, 500 * 1000, false);
+		if (ret)
+			lt_dbg(intel_dp, DP_PHY_DPRX, "128b/132b intra-hop not clearing\n");
 	}
 
 	intel_hpd_unblock(encoder);
@@ -1581,8 +1586,12 @@ intel_dp_128b132b_link_train(struct intel_dp *intel_dp,
 			     int lttpr_count)
 {
 	bool passed = false;
+	int ret;
 
-	if (wait_for(intel_dp_128b132b_intra_hop(intel_dp, crtc_state) == 0, 500)) {
+	ret = poll_timeout_us(ret = intel_dp_128b132b_intra_hop(intel_dp, crtc_state),
+			      ret == 0,
+			      500, 500 * 1000, false);
+	if (ret) {
 		lt_err(intel_dp, DP_PHY_DPRX, "128b/132b intra-hop not clear\n");
 		goto out;
 	}
-- 
2.47.2


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

* [PATCH 14/20] drm/i915/vblank: use generic poll_timeout_us() instead of wait_for()
  2025-08-28 12:20 [PATCH 00/20] drm/i915/display: convert to generic poll_timeout_us() Jani Nikula
                   ` (12 preceding siblings ...)
  2025-08-28 12:20 ` [PATCH 13/20] drm/i915/dp: use generic poll_timeout_us() instead of wait_for() in link training Jani Nikula
@ 2025-08-28 12:20 ` Jani Nikula
  2025-09-04  8:05   ` Hogander, Jouni
  2025-08-28 12:20 ` [PATCH 15/20] drm/i915/tc: " Jani Nikula
                   ` (10 subsequent siblings)
  24 siblings, 1 reply; 47+ messages in thread
From: Jani Nikula @ 2025-08-28 12:20 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: jani.nikula, ville.syrjala

Prefer generic poll helpers over i915 custom helpers.

The functional change is losing the exponentially growing sleep of
wait_for(), which used to be 10, 20, 40, ..., 640, and 1280 us.

Use an arbitrary constant 500 us sleep instead. The timeout remains at
100 ms.

Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
 drivers/gpu/drm/i915/display/intel_vblank.c | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/i915/display/intel_vblank.c b/drivers/gpu/drm/i915/display/intel_vblank.c
index 46d6db5fed11..c15234c1d96e 100644
--- a/drivers/gpu/drm/i915/display/intel_vblank.c
+++ b/drivers/gpu/drm/i915/display/intel_vblank.c
@@ -3,6 +3,8 @@
  * Copyright © 2022-2023 Intel Corporation
  */
 
+#include <linux/iopoll.h>
+
 #include <drm/drm_vblank.h>
 
 #include "i915_drv.h"
@@ -493,9 +495,14 @@ static void wait_for_pipe_scanline_moving(struct intel_crtc *crtc, bool state)
 {
 	struct intel_display *display = to_intel_display(crtc);
 	enum pipe pipe = crtc->pipe;
+	bool is_moving;
+	int ret;
 
 	/* Wait for the display line to settle/start moving */
-	if (wait_for(pipe_scanline_is_moving(display, pipe) == state, 100))
+	ret = poll_timeout_us(is_moving = pipe_scanline_is_moving(display, pipe),
+			      is_moving == state,
+			      500, 100 * 1000, false);
+	if (ret)
 		drm_err(display->drm,
 			"pipe %c scanline %s wait timed out\n",
 			pipe_name(pipe), str_on_off(state));
-- 
2.47.2


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

* [PATCH 15/20] drm/i915/tc: use generic poll_timeout_us() instead of wait_for()
  2025-08-28 12:20 [PATCH 00/20] drm/i915/display: convert to generic poll_timeout_us() Jani Nikula
                   ` (13 preceding siblings ...)
  2025-08-28 12:20 ` [PATCH 14/20] drm/i915/vblank: use generic poll_timeout_us() instead of wait_for() Jani Nikula
@ 2025-08-28 12:20 ` Jani Nikula
  2025-09-04  8:41   ` Hogander, Jouni
  2025-08-28 12:20 ` [PATCH 16/20] drm/i915/dsb: " Jani Nikula
                   ` (9 subsequent siblings)
  24 siblings, 1 reply; 47+ messages in thread
From: Jani Nikula @ 2025-08-28 12:20 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: jani.nikula, ville.syrjala

Prefer generic poll helpers over i915 custom helpers.

The functional change is losing the exponentially growing sleep of
wait_for(), which used to be 10, 20, 40, ..., 640, and 1280 us.

Use an arbitrary constant 200 us sleep for the 5 ms timeout, and 1000 us
sleep for the 500 ms timeout. The timeouts remain the same.

Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
 drivers/gpu/drm/i915/display/intel_tc.c | 16 ++++++++++++++--
 1 file changed, 14 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_tc.c b/drivers/gpu/drm/i915/display/intel_tc.c
index 583fed5a386d..8974ffe2aabf 100644
--- a/drivers/gpu/drm/i915/display/intel_tc.c
+++ b/drivers/gpu/drm/i915/display/intel_tc.c
@@ -3,6 +3,8 @@
  * Copyright © 2019 Intel Corporation
  */
 
+#include <linux/iopoll.h>
+
 #include <drm/drm_print.h>
 
 #include "i915_reg.h"
@@ -1047,8 +1049,13 @@ static bool
 xelpdp_tc_phy_wait_for_tcss_power(struct intel_tc_port *tc, bool enabled)
 {
 	struct intel_display *display = to_intel_display(tc->dig_port);
+	bool is_enabled;
+	int ret;
 
-	if (wait_for(xelpdp_tc_phy_tcss_power_is_enabled(tc) == enabled, 5)) {
+	ret = poll_timeout_us(is_enabled = xelpdp_tc_phy_tcss_power_is_enabled(tc),
+			      is_enabled == enabled,
+			      200, 5000, false);
+	if (ret) {
 		drm_dbg_kms(display->drm,
 			    "Port %s: timeout waiting for TCSS power to get %s\n",
 			    str_enabled_disabled(enabled),
@@ -1329,8 +1336,13 @@ static bool tc_phy_is_connected(struct intel_tc_port *tc,
 static bool tc_phy_wait_for_ready(struct intel_tc_port *tc)
 {
 	struct intel_display *display = to_intel_display(tc->dig_port);
+	bool is_ready;
+	int ret;
 
-	if (wait_for(tc_phy_is_ready(tc), 500)) {
+	ret = poll_timeout_us(is_ready = tc_phy_is_ready(tc),
+			      is_ready,
+			      1000, 500 * 1000, false);
+	if (ret) {
 		drm_err(display->drm, "Port %s: timeout waiting for PHY ready\n",
 			tc->port_name);
 
-- 
2.47.2


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

* [PATCH 16/20] drm/i915/dsb: use generic poll_timeout_us() instead of wait_for()
  2025-08-28 12:20 [PATCH 00/20] drm/i915/display: convert to generic poll_timeout_us() Jani Nikula
                   ` (14 preceding siblings ...)
  2025-08-28 12:20 ` [PATCH 15/20] drm/i915/tc: " Jani Nikula
@ 2025-08-28 12:20 ` Jani Nikula
  2025-09-04  8:42   ` Hogander, Jouni
  2025-08-28 12:20 ` [PATCH 17/20] drm/i915/lspcon: " Jani Nikula
                   ` (8 subsequent siblings)
  24 siblings, 1 reply; 47+ messages in thread
From: Jani Nikula @ 2025-08-28 12:20 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: jani.nikula, ville.syrjala

Prefer generic poll helpers over i915 custom helpers.

The functional change is losing the exponentially growing sleep of
wait_for(), which used to be 10, 20, 40, ..., 640, and 1280 us.

Use an arbitrary constant 100 us sleep instead. The timeout remains at 1
ms.

Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
 drivers/gpu/drm/i915/display/intel_dsb.c | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_dsb.c b/drivers/gpu/drm/i915/display/intel_dsb.c
index 53d8ae3a70e9..dee44d45b668 100644
--- a/drivers/gpu/drm/i915/display/intel_dsb.c
+++ b/drivers/gpu/drm/i915/display/intel_dsb.c
@@ -4,10 +4,11 @@
  *
  */
 
+#include <linux/iopoll.h>
+
 #include <drm/drm_print.h>
 #include <drm/drm_vblank.h>
 
-#include "i915_utils.h"
 #include "intel_crtc.h"
 #include "intel_de.h"
 #include "intel_display_regs.h"
@@ -871,8 +872,13 @@ void intel_dsb_wait(struct intel_dsb *dsb)
 	struct intel_crtc *crtc = dsb->crtc;
 	struct intel_display *display = to_intel_display(crtc->base.dev);
 	enum pipe pipe = crtc->pipe;
+	bool is_busy;
+	int ret;
 
-	if (wait_for(!is_dsb_busy(display, pipe, dsb->id), 1)) {
+	ret = poll_timeout_us(is_busy = is_dsb_busy(display, pipe, dsb->id),
+			      !is_busy,
+			      100, 1000, false);
+	if (ret) {
 		u32 offset = intel_dsb_buffer_ggtt_offset(&dsb->dsb_buf);
 
 		intel_de_write_fw(display, DSB_CTRL(pipe, dsb->id),
-- 
2.47.2


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

* [PATCH 17/20] drm/i915/lspcon: use generic poll_timeout_us() instead of wait_for()
  2025-08-28 12:20 [PATCH 00/20] drm/i915/display: convert to generic poll_timeout_us() Jani Nikula
                   ` (15 preceding siblings ...)
  2025-08-28 12:20 ` [PATCH 16/20] drm/i915/dsb: " Jani Nikula
@ 2025-08-28 12:20 ` Jani Nikula
  2025-09-04  8:47   ` Hogander, Jouni
  2025-08-28 12:21 ` [PATCH 18/20] drm/i915/opregion: " Jani Nikula
                   ` (7 subsequent siblings)
  24 siblings, 1 reply; 47+ messages in thread
From: Jani Nikula @ 2025-08-28 12:20 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: jani.nikula, ville.syrjala

Prefer generic poll helpers over i915 custom helpers.

The functional change is losing the exponentially growing sleep of
wait_for(), which used to be 10, 20, 40, ..., 640, and 1280 us.

Use an arbitrary constant 5 ms sleep instead. The timeouts remain, being
400 ms or 800 ms, depending on the case.

Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
 drivers/gpu/drm/i915/display/intel_lspcon.c | 13 ++++++++++---
 1 file changed, 10 insertions(+), 3 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_lspcon.c b/drivers/gpu/drm/i915/display/intel_lspcon.c
index abc4b562083d..d56026c4efdd 100644
--- a/drivers/gpu/drm/i915/display/intel_lspcon.c
+++ b/drivers/gpu/drm/i915/display/intel_lspcon.c
@@ -23,6 +23,8 @@
  *
  */
 
+#include <linux/iopoll.h>
+
 #include <drm/display/drm_dp_dual_mode_helper.h>
 #include <drm/display/drm_hdmi_helper.h>
 #include <drm/drm_atomic_helper.h>
@@ -181,6 +183,8 @@ static enum drm_lspcon_mode lspcon_wait_mode(struct intel_lspcon *lspcon,
 	struct intel_dp *intel_dp = lspcon_to_intel_dp(lspcon);
 	struct intel_display *display = to_intel_display(intel_dp);
 	enum drm_lspcon_mode current_mode;
+	int timeout_us;
+	int ret;
 
 	current_mode = lspcon_get_current_mode(lspcon);
 	if (current_mode == mode)
@@ -189,9 +193,12 @@ static enum drm_lspcon_mode lspcon_wait_mode(struct intel_lspcon *lspcon,
 	drm_dbg_kms(display->drm, "Waiting for LSPCON mode %s to settle\n",
 		    lspcon_mode_name(mode));
 
-	wait_for((current_mode = lspcon_get_current_mode(lspcon)) == mode,
-		 lspcon_get_mode_settle_timeout(lspcon));
-	if (current_mode != mode)
+	timeout_us = lspcon_get_mode_settle_timeout(lspcon) * 1000;
+
+	ret = poll_timeout_us(current_mode = lspcon_get_current_mode(lspcon),
+			      current_mode == mode,
+			      5000, timeout_us, false);
+	if (ret)
 		drm_err(display->drm, "LSPCON mode hasn't settled\n");
 
 out:
-- 
2.47.2


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

* [PATCH 18/20] drm/i915/opregion: use generic poll_timeout_us() instead of wait_for()
  2025-08-28 12:20 [PATCH 00/20] drm/i915/display: convert to generic poll_timeout_us() Jani Nikula
                   ` (16 preceding siblings ...)
  2025-08-28 12:20 ` [PATCH 17/20] drm/i915/lspcon: " Jani Nikula
@ 2025-08-28 12:21 ` Jani Nikula
  2025-09-04  9:06   ` Hogander, Jouni
  2025-08-28 12:21 ` [PATCH 19/20] drm/i915/ddi: prefer poll_timeout_us() over readx_poll_timeout() Jani Nikula
                   ` (6 subsequent siblings)
  24 siblings, 1 reply; 47+ messages in thread
From: Jani Nikula @ 2025-08-28 12:21 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: jani.nikula, ville.syrjala

Prefer generic poll helpers over i915 custom helpers.

The functional change is losing the exponentially growing sleep of
wait_for(), which used to be 10, 20, 40, ..., 640, and 1280 us.

Use an arbitrary constant 1 ms sleep instead. The timeout remains, being
opregion defined, 50 ms by default, and 1500 ms at most.

Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
 drivers/gpu/drm/i915/display/intel_opregion.c | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_opregion.c b/drivers/gpu/drm/i915/display/intel_opregion.c
index 380314a3b4d9..cbc220310813 100644
--- a/drivers/gpu/drm/i915/display/intel_opregion.c
+++ b/drivers/gpu/drm/i915/display/intel_opregion.c
@@ -28,13 +28,13 @@
 #include <linux/acpi.h>
 #include <linux/debugfs.h>
 #include <linux/dmi.h>
+#include <linux/iopoll.h>
 #include <acpi/video.h>
 
 #include <drm/drm_edid.h>
 #include <drm/drm_file.h>
 #include <drm/drm_print.h>
 
-#include "i915_utils.h"
 #include "intel_acpi.h"
 #include "intel_backlight.h"
 #include "intel_display_core.h"
@@ -357,10 +357,12 @@ static int swsci(struct intel_display *display,
 	pci_write_config_word(pdev, SWSCI, swsci_val);
 
 	/* Poll for the result. */
-#define C (((scic = swsci->scic) & SWSCI_SCIC_INDICATOR) == 0)
-	if (wait_for(C, dslp)) {
+	ret = poll_timeout_us(scic = swsci->scic,
+			      (scic & SWSCI_SCIC_INDICATOR) == 0,
+			      1000, dslp * 1000, false);
+	if (ret) {
 		drm_dbg(display->drm, "SWSCI request timed out\n");
-		return -ETIMEDOUT;
+		return ret;
 	}
 
 	scic = (scic & SWSCI_SCIC_EXIT_STATUS_MASK) >>
-- 
2.47.2


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

* [PATCH 19/20] drm/i915/ddi: prefer poll_timeout_us() over readx_poll_timeout()
  2025-08-28 12:20 [PATCH 00/20] drm/i915/display: convert to generic poll_timeout_us() Jani Nikula
                   ` (17 preceding siblings ...)
  2025-08-28 12:21 ` [PATCH 18/20] drm/i915/opregion: " Jani Nikula
@ 2025-08-28 12:21 ` Jani Nikula
  2025-09-04  9:19   ` Hogander, Jouni
  2025-08-28 12:21 ` [PATCH 20/20] drm/i915/pps: prefer poll_timeout_us() over read_poll_timeout() Jani Nikula
                   ` (5 subsequent siblings)
  24 siblings, 1 reply; 47+ messages in thread
From: Jani Nikula @ 2025-08-28 12:21 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: jani.nikula, ville.syrjala, Imre Deak

Unify on using poll_timeout_us() throughout instead of mixing with
readx_poll_timeout(). While the latter can be ever so slightly simpler,
they are both complicated enough that it's better to unify on one
approach only.

While at it, better separate the handling of error returns from
drm_dp_dpcd_readb() and the actual status byte. This is best achieved by
inlining the read_fec_detected_status() function, and switching to
drm_dp_dpcd_read_byte().

v2: Use drm_dp_dpcd_read_byte() (Imre)

Cc: Imre Deak <imre.deak@intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
 drivers/gpu/drm/i915/display/intel_ddi.c | 32 ++++++++----------------
 1 file changed, 11 insertions(+), 21 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_ddi.c b/drivers/gpu/drm/i915/display/intel_ddi.c
index 4e4ea3a0ff83..46017091bb0b 100644
--- a/drivers/gpu/drm/i915/display/intel_ddi.c
+++ b/drivers/gpu/drm/i915/display/intel_ddi.c
@@ -2340,34 +2340,24 @@ static void intel_dp_sink_set_fec_ready(struct intel_dp *intel_dp,
 		drm_dbg_kms(display->drm, "Failed to clear FEC detected flags\n");
 }
 
-static int read_fec_detected_status(struct drm_dp_aux *aux)
-{
-	int ret;
-	u8 status;
-
-	ret = drm_dp_dpcd_readb(aux, DP_FEC_STATUS, &status);
-	if (ret < 0)
-		return ret;
-
-	return status;
-}
-
 static int wait_for_fec_detected(struct drm_dp_aux *aux, bool enabled)
 {
 	struct intel_display *display = to_intel_display(aux->drm_dev);
 	int mask = enabled ? DP_FEC_DECODE_EN_DETECTED : DP_FEC_DECODE_DIS_DETECTED;
-	int status;
-	int err;
+	u8 status = 0;
+	int ret, err;
 
-	err = readx_poll_timeout(read_fec_detected_status, aux, status,
-				 status & mask || status < 0,
-				 10000, 200000);
+	ret = poll_timeout_us(err = drm_dp_dpcd_read_byte(aux, DP_FEC_STATUS, &status),
+			      err || (status & mask),
+			      10 * 1000, 200 * 1000, false);
 
-	if (err || status < 0) {
+	/* Either can be non-zero, but not both */
+	ret = ret ?: err;
+	if (ret) {
 		drm_dbg_kms(display->drm,
-			    "Failed waiting for FEC %s to get detected: %d (status %d)\n",
-			    str_enabled_disabled(enabled), err, status);
-		return err ? err : status;
+			    "Failed waiting for FEC %s to get detected: %d (status 0x%02x)\n",
+			    str_enabled_disabled(enabled), ret, status);
+		return ret;
 	}
 
 	return 0;
-- 
2.47.2


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

* [PATCH 20/20] drm/i915/pps: prefer poll_timeout_us() over read_poll_timeout()
  2025-08-28 12:20 [PATCH 00/20] drm/i915/display: convert to generic poll_timeout_us() Jani Nikula
                   ` (18 preceding siblings ...)
  2025-08-28 12:21 ` [PATCH 19/20] drm/i915/ddi: prefer poll_timeout_us() over readx_poll_timeout() Jani Nikula
@ 2025-08-28 12:21 ` Jani Nikula
  2025-09-04 10:23   ` Hogander, Jouni
  2025-08-28 15:48 ` ✗ CI.checkpatch: warning for drm/i915/display: convert to generic poll_timeout_us() Patchwork
                   ` (4 subsequent siblings)
  24 siblings, 1 reply; 47+ messages in thread
From: Jani Nikula @ 2025-08-28 12:21 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: jani.nikula, ville.syrjala

Unify on using poll_timeout_us() throughout instead of mixing with
readx_poll_timeout().

Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
 drivers/gpu/drm/i915/display/intel_pps.c | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_pps.c b/drivers/gpu/drm/i915/display/intel_pps.c
index b84eb43bd2d0..327e0de86f1e 100644
--- a/drivers/gpu/drm/i915/display/intel_pps.c
+++ b/drivers/gpu/drm/i915/display/intel_pps.c
@@ -627,11 +627,9 @@ static void wait_panel_status(struct intel_dp *intel_dp,
 		    intel_de_read(display, pp_stat_reg),
 		    intel_de_read(display, pp_ctrl_reg));
 
-	ret = read_poll_timeout(intel_de_read, val,
-				(val & mask) == value,
-				10 * 1000, 5000 * 1000, true,
-				display, pp_stat_reg);
-
+	ret = poll_timeout_us(val = intel_de_read(display, pp_stat_reg),
+			      (val & mask) == value,
+			      10 * 1000, 5000 * 1000, true);
 	if (ret) {
 		drm_err(display->drm,
 			"[ENCODER:%d:%s] %s panel status timeout: PP_STATUS: 0x%08x PP_CONTROL: 0x%08x\n",
-- 
2.47.2


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

* ✗ CI.checkpatch: warning for drm/i915/display: convert to generic poll_timeout_us()
  2025-08-28 12:20 [PATCH 00/20] drm/i915/display: convert to generic poll_timeout_us() Jani Nikula
                   ` (19 preceding siblings ...)
  2025-08-28 12:21 ` [PATCH 20/20] drm/i915/pps: prefer poll_timeout_us() over read_poll_timeout() Jani Nikula
@ 2025-08-28 15:48 ` Patchwork
  2025-08-28 15:49 ` ✓ CI.KUnit: success " Patchwork
                   ` (3 subsequent siblings)
  24 siblings, 0 replies; 47+ messages in thread
From: Patchwork @ 2025-08-28 15:48 UTC (permalink / raw)
  To: Jani Nikula; +Cc: intel-xe

== Series Details ==

Series: drm/i915/display: convert to generic poll_timeout_us()
URL   : https://patchwork.freedesktop.org/series/153630/
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
e0fa7d6ad11ac6dc8dfa757164e518968a98b897
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 381a2c3ca549c9d375872521709c464778e50453
Author: Jani Nikula <jani.nikula@intel.com>
Date:   Thu Aug 28 15:21:02 2025 +0300

    drm/i915/pps: prefer poll_timeout_us() over read_poll_timeout()
    
    Unify on using poll_timeout_us() throughout instead of mixing with
    readx_poll_timeout().
    
    Signed-off-by: Jani Nikula <jani.nikula@intel.com>
+ /mt/dim checkpatch a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97 drm-intel
dd67440c56f1 drm/i915/hdmi: use generic poll_timeout_us() instead of __wait_for()
f58da9c77b91 drm/i915/hdcp: use generic poll_timeout_us() instead of __wait_for()
3e009722f7ca drm/i915/hdcp: use generic poll_timeout_us() instead of wait_for()
-:38: WARNING:LONG_LINE: line length of 103 exceeds 100 columns
#38: FILE: drivers/gpu/drm/i915/display/intel_hdcp.c:909:
+	ret = poll_timeout_us(val = intel_de_read(display, HDCP_STATUS(display, cpu_transcoder, port)),

-:51: WARNING:LONG_LINE: line length of 111 exceeds 100 columns
#51: FILE: drivers/gpu/drm/i915/display/intel_hdcp.c:944:
+		ret = poll_timeout_us(val = intel_de_read(display, HDCP_STATUS(display, cpu_transcoder, port)),

total: 0 errors, 2 warnings, 0 checks, 40 lines checked
e31def7b9154 drm/i915/dsi: use generic poll_timeout_us() instead of wait_for_us()
4bc0c2ac73d0 drm/i915/dsi-pll: use generic poll_timeout_us() instead of wait_for()
c53298027476 drm/i915/gmbus: use generic poll_timeout*() instead of wait_for*()
88bb512dbf66 drm/i915/wm: use generic poll_timeout_us() instead of wait_for()
c5cb2c8c0610 drm/i915/cdclk: use generic poll_timeout_us() instead of wait_for()
-:66: WARNING:LONG_LINE: line length of 110 exceeds 100 columns
#66: FILE: drivers/gpu/drm/i915/display/intel_cdclk.c:728:
+				      (val & CCK_FREQUENCY_STATUS) == (divider << CCK_FREQUENCY_STATUS_SHIFT),

total: 0 errors, 1 warnings, 0 checks, 73 lines checked
137902e056c1 drm/i915/power: use generic poll_timeout_us() instead of wait_for()
7a0fb50a6661 drm/i915/power-well: use generic poll_timeout_us() instead of wait_for() for DKL PHY
1dce2686ef61 drm/i915/power-well: use generic poll_timeout_us() instead of wait_for() for VLV/CHV
b77b7658ee30 drm/i915/dp: use generic poll_timeout_us() instead of wait_for()
-:55: WARNING:LONG_LINE: line length of 117 exceeds 100 columns
#55: FILE: drivers/gpu/drm/i915/display/intel_dp.c:3903:
+	ret = poll_timeout_us(is_active = intel_dp_pcon_is_frl_trained(intel_dp, max_frl_bw_mask, &frl_trained_mask),

total: 0 errors, 1 warnings, 0 checks, 39 lines checked
7b5b3c027070 drm/i915/dp: use generic poll_timeout_us() instead of wait_for() in link training
7619d32699c0 drm/i915/vblank: use generic poll_timeout_us() instead of wait_for()
92bd83bd119b drm/i915/tc: use generic poll_timeout_us() instead of wait_for()
5c97530b9142 drm/i915/dsb: use generic poll_timeout_us() instead of wait_for()
70bae7b959ff drm/i915/lspcon: use generic poll_timeout_us() instead of wait_for()
5b310419bcb6 drm/i915/opregion: use generic poll_timeout_us() instead of wait_for()
ebbf7a60103d drm/i915/ddi: prefer poll_timeout_us() over readx_poll_timeout()
381a2c3ca549 drm/i915/pps: prefer poll_timeout_us() over read_poll_timeout()



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

* ✓ CI.KUnit: success for drm/i915/display: convert to generic poll_timeout_us()
  2025-08-28 12:20 [PATCH 00/20] drm/i915/display: convert to generic poll_timeout_us() Jani Nikula
                   ` (20 preceding siblings ...)
  2025-08-28 15:48 ` ✗ CI.checkpatch: warning for drm/i915/display: convert to generic poll_timeout_us() Patchwork
@ 2025-08-28 15:49 ` Patchwork
  2025-08-28 16:05 ` ✗ CI.checksparse: warning " Patchwork
                   ` (2 subsequent siblings)
  24 siblings, 0 replies; 47+ messages in thread
From: Patchwork @ 2025-08-28 15:49 UTC (permalink / raw)
  To: Jani Nikula; +Cc: intel-xe

== Series Details ==

Series: drm/i915/display: convert to generic poll_timeout_us()
URL   : https://patchwork.freedesktop.org/series/153630/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[15:48:42] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[15:48:46] 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
[15:49:15] Starting KUnit Kernel (1/1)...
[15:49:15] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[15:49:15] ================== guc_buf (11 subtests) ===================
[15:49:15] [PASSED] test_smallest
[15:49:15] [PASSED] test_largest
[15:49:15] [PASSED] test_granular
[15:49:15] [PASSED] test_unique
[15:49:15] [PASSED] test_overlap
[15:49:15] [PASSED] test_reusable
[15:49:15] [PASSED] test_too_big
[15:49:15] [PASSED] test_flush
[15:49:15] [PASSED] test_lookup
[15:49:15] [PASSED] test_data
[15:49:15] [PASSED] test_class
[15:49:15] ===================== [PASSED] guc_buf =====================
[15:49:15] =================== guc_dbm (7 subtests) ===================
[15:49:15] [PASSED] test_empty
[15:49:15] [PASSED] test_default
[15:49:15] ======================== test_size  ========================
[15:49:15] [PASSED] 4
[15:49:15] [PASSED] 8
[15:49:15] [PASSED] 32
[15:49:15] [PASSED] 256
[15:49:15] ==================== [PASSED] test_size ====================
[15:49:15] ======================= test_reuse  ========================
[15:49:15] [PASSED] 4
[15:49:15] [PASSED] 8
[15:49:15] [PASSED] 32
[15:49:15] [PASSED] 256
[15:49:15] =================== [PASSED] test_reuse ====================
[15:49:15] =================== test_range_overlap  ====================
[15:49:15] [PASSED] 4
[15:49:15] [PASSED] 8
[15:49:15] [PASSED] 32
[15:49:15] [PASSED] 256
[15:49:15] =============== [PASSED] test_range_overlap ================
[15:49:15] =================== test_range_compact  ====================
[15:49:15] [PASSED] 4
[15:49:15] [PASSED] 8
[15:49:15] [PASSED] 32
[15:49:15] [PASSED] 256
[15:49:15] =============== [PASSED] test_range_compact ================
[15:49:15] ==================== test_range_spare  =====================
[15:49:15] [PASSED] 4
[15:49:15] [PASSED] 8
[15:49:15] [PASSED] 32
[15:49:15] [PASSED] 256
[15:49:15] ================ [PASSED] test_range_spare =================
[15:49:15] ===================== [PASSED] guc_dbm =====================
[15:49:15] =================== guc_idm (6 subtests) ===================
[15:49:15] [PASSED] bad_init
[15:49:15] [PASSED] no_init
[15:49:15] [PASSED] init_fini
[15:49:15] [PASSED] check_used
[15:49:15] [PASSED] check_quota
[15:49:15] [PASSED] check_all
[15:49:15] ===================== [PASSED] guc_idm =====================
[15:49:15] ================== no_relay (3 subtests) ===================
[15:49:15] [PASSED] xe_drops_guc2pf_if_not_ready
[15:49:15] [PASSED] xe_drops_guc2vf_if_not_ready
[15:49:15] [PASSED] xe_rejects_send_if_not_ready
[15:49:15] ==================== [PASSED] no_relay =====================
[15:49:15] ================== pf_relay (14 subtests) ==================
[15:49:15] [PASSED] pf_rejects_guc2pf_too_short
[15:49:15] [PASSED] pf_rejects_guc2pf_too_long
[15:49:15] [PASSED] pf_rejects_guc2pf_no_payload
[15:49:15] [PASSED] pf_fails_no_payload
[15:49:15] [PASSED] pf_fails_bad_origin
[15:49:15] [PASSED] pf_fails_bad_type
[15:49:15] [PASSED] pf_txn_reports_error
[15:49:15] [PASSED] pf_txn_sends_pf2guc
[15:49:15] [PASSED] pf_sends_pf2guc
[15:49:15] [SKIPPED] pf_loopback_nop
[15:49:15] [SKIPPED] pf_loopback_echo
[15:49:15] [SKIPPED] pf_loopback_fail
[15:49:15] [SKIPPED] pf_loopback_busy
[15:49:15] [SKIPPED] pf_loopback_retry
[15:49:15] ==================== [PASSED] pf_relay =====================
[15:49:15] ================== vf_relay (3 subtests) ===================
[15:49:15] [PASSED] vf_rejects_guc2vf_too_short
[15:49:15] [PASSED] vf_rejects_guc2vf_too_long
[15:49:15] [PASSED] vf_rejects_guc2vf_no_payload
[15:49:15] ==================== [PASSED] vf_relay =====================
[15:49:15] ===================== lmtt (1 subtest) =====================
[15:49:15] ======================== test_ops  =========================
[15:49:15] [PASSED] 2-level
[15:49:15] [PASSED] multi-level
[15:49:15] ==================== [PASSED] test_ops =====================
[15:49:15] ====================== [PASSED] lmtt =======================
[15:49:15] ================= pf_service (11 subtests) =================
[15:49:15] [PASSED] pf_negotiate_any
[15:49:15] [PASSED] pf_negotiate_base_match
[15:49:15] [PASSED] pf_negotiate_base_newer
[15:49:15] [PASSED] pf_negotiate_base_next
[15:49:15] [SKIPPED] pf_negotiate_base_older
[15:49:15] [PASSED] pf_negotiate_base_prev
[15:49:15] [PASSED] pf_negotiate_latest_match
[15:49:15] [PASSED] pf_negotiate_latest_newer
[15:49:15] [PASSED] pf_negotiate_latest_next
[15:49:15] [SKIPPED] pf_negotiate_latest_older
[15:49:15] [SKIPPED] pf_negotiate_latest_prev
[15:49:15] =================== [PASSED] pf_service ====================
[15:49:15] =================== xe_mocs (2 subtests) ===================
[15:49:15] ================ xe_live_mocs_kernel_kunit  ================
[15:49:15] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[15:49:15] ================ xe_live_mocs_reset_kunit  =================
[15:49:15] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[15:49:15] ==================== [SKIPPED] xe_mocs =====================
[15:49:15] ================= xe_migrate (2 subtests) ==================
[15:49:15] ================= xe_migrate_sanity_kunit  =================
[15:49:15] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[15:49:15] ================== xe_validate_ccs_kunit  ==================
[15:49:15] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[15:49:15] =================== [SKIPPED] xe_migrate ===================
[15:49:15] ================== xe_dma_buf (1 subtest) ==================
[15:49:15] ==================== xe_dma_buf_kunit  =====================
[15:49:15] ================ [SKIPPED] xe_dma_buf_kunit ================
[15:49:15] =================== [SKIPPED] xe_dma_buf ===================
[15:49:15] ================= xe_bo_shrink (1 subtest) =================
[15:49:15] =================== xe_bo_shrink_kunit  ====================
[15:49:15] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[15:49:15] ================== [SKIPPED] xe_bo_shrink ==================
[15:49:15] ==================== xe_bo (2 subtests) ====================
[15:49:15] ================== xe_ccs_migrate_kunit  ===================
[15:49:15] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[15:49:15] ==================== xe_bo_evict_kunit  ====================
[15:49:15] =============== [SKIPPED] xe_bo_evict_kunit ================
[15:49:15] ===================== [SKIPPED] xe_bo ======================
[15:49:15] ==================== args (11 subtests) ====================
[15:49:15] [PASSED] count_args_test
[15:49:15] [PASSED] call_args_example
[15:49:15] [PASSED] call_args_test
[15:49:15] [PASSED] drop_first_arg_example
[15:49:15] [PASSED] drop_first_arg_test
[15:49:15] [PASSED] first_arg_example
[15:49:15] [PASSED] first_arg_test
[15:49:15] [PASSED] last_arg_example
[15:49:15] [PASSED] last_arg_test
[15:49:15] [PASSED] pick_arg_example
[15:49:15] [PASSED] sep_comma_example
[15:49:15] ====================== [PASSED] args =======================
[15:49:15] =================== xe_pci (3 subtests) ====================
[15:49:15] ==================== check_graphics_ip  ====================
[15:49:15] [PASSED] 12.70 Xe_LPG
[15:49:15] [PASSED] 12.71 Xe_LPG
[15:49:15] [PASSED] 12.74 Xe_LPG+
[15:49:15] [PASSED] 20.01 Xe2_HPG
[15:49:15] [PASSED] 20.02 Xe2_HPG
[15:49:15] [PASSED] 20.04 Xe2_LPG
[15:49:15] [PASSED] 30.00 Xe3_LPG
[15:49:15] [PASSED] 30.01 Xe3_LPG
[15:49:15] [PASSED] 30.03 Xe3_LPG
[15:49:15] ================ [PASSED] check_graphics_ip ================
[15:49:15] ===================== check_media_ip  ======================
[15:49:15] [PASSED] 13.00 Xe_LPM+
[15:49:15] [PASSED] 13.01 Xe2_HPM
[15:49:15] [PASSED] 20.00 Xe2_LPM
[15:49:15] [PASSED] 30.00 Xe3_LPM
[15:49:15] [PASSED] 30.02 Xe3_LPM
[15:49:15] ================= [PASSED] check_media_ip ==================
[15:49:15] ================= check_platform_gt_count  =================
[15:49:15] [PASSED] 0x9A60 (TIGERLAKE)
[15:49:15] [PASSED] 0x9A68 (TIGERLAKE)
[15:49:15] [PASSED] 0x9A70 (TIGERLAKE)
[15:49:15] [PASSED] 0x9A40 (TIGERLAKE)
[15:49:15] [PASSED] 0x9A49 (TIGERLAKE)
[15:49:15] [PASSED] 0x9A59 (TIGERLAKE)
[15:49:15] [PASSED] 0x9A78 (TIGERLAKE)
[15:49:15] [PASSED] 0x9AC0 (TIGERLAKE)
[15:49:15] [PASSED] 0x9AC9 (TIGERLAKE)
[15:49:15] [PASSED] 0x9AD9 (TIGERLAKE)
[15:49:15] [PASSED] 0x9AF8 (TIGERLAKE)
[15:49:15] [PASSED] 0x4C80 (ROCKETLAKE)
[15:49:15] [PASSED] 0x4C8A (ROCKETLAKE)
[15:49:15] [PASSED] 0x4C8B (ROCKETLAKE)
[15:49:15] [PASSED] 0x4C8C (ROCKETLAKE)
[15:49:15] [PASSED] 0x4C90 (ROCKETLAKE)
[15:49:15] [PASSED] 0x4C9A (ROCKETLAKE)
[15:49:15] [PASSED] 0x4680 (ALDERLAKE_S)
[15:49:15] [PASSED] 0x4682 (ALDERLAKE_S)
[15:49:15] [PASSED] 0x4688 (ALDERLAKE_S)
[15:49:15] [PASSED] 0x468A (ALDERLAKE_S)
[15:49:15] [PASSED] 0x468B (ALDERLAKE_S)
[15:49:15] [PASSED] 0x4690 (ALDERLAKE_S)
[15:49:15] [PASSED] 0x4692 (ALDERLAKE_S)
[15:49:15] [PASSED] 0x4693 (ALDERLAKE_S)
[15:49:15] [PASSED] 0x46A0 (ALDERLAKE_P)
[15:49:15] [PASSED] 0x46A1 (ALDERLAKE_P)
[15:49:15] [PASSED] 0x46A2 (ALDERLAKE_P)
[15:49:15] [PASSED] 0x46A3 (ALDERLAKE_P)
[15:49:15] [PASSED] 0x46A6 (ALDERLAKE_P)
[15:49:15] [PASSED] 0x46A8 (ALDERLAKE_P)
[15:49:15] [PASSED] 0x46AA (ALDERLAKE_P)
[15:49:15] [PASSED] 0x462A (ALDERLAKE_P)
[15:49:15] [PASSED] 0x4626 (ALDERLAKE_P)
[15:49:15] [PASSED] 0x4628 (ALDERLAKE_P)
[15:49:15] [PASSED] 0x46B0 (ALDERLAKE_P)
[15:49:15] [PASSED] 0x46B1 (ALDERLAKE_P)
[15:49:15] [PASSED] 0x46B2 (ALDERLAKE_P)
[15:49:15] [PASSED] 0x46B3 (ALDERLAKE_P)
[15:49:15] [PASSED] 0x46C0 (ALDERLAKE_P)
[15:49:15] [PASSED] 0x46C1 (ALDERLAKE_P)
[15:49:15] [PASSED] 0x46C2 (ALDERLAKE_P)
[15:49:15] [PASSED] 0x46C3 (ALDERLAKE_P)
[15:49:15] [PASSED] 0x46D0 (ALDERLAKE_N)
[15:49:15] [PASSED] 0x46D1 (ALDERLAKE_N)
[15:49:15] [PASSED] 0x46D2 (ALDERLAKE_N)
[15:49:15] [PASSED] 0x46D3 (ALDERLAKE_N)
[15:49:15] [PASSED] 0x46D4 (ALDERLAKE_N)
[15:49:15] [PASSED] 0xA721 (ALDERLAKE_P)
[15:49:15] [PASSED] 0xA7A1 (ALDERLAKE_P)
[15:49:15] [PASSED] 0xA7A9 (ALDERLAKE_P)
[15:49:15] [PASSED] 0xA7AC (ALDERLAKE_P)
[15:49:15] [PASSED] 0xA7AD (ALDERLAKE_P)
[15:49:15] [PASSED] 0xA720 (ALDERLAKE_P)
[15:49:15] [PASSED] 0xA7A0 (ALDERLAKE_P)
[15:49:15] [PASSED] 0xA7A8 (ALDERLAKE_P)
[15:49:15] [PASSED] 0xA7AA (ALDERLAKE_P)
[15:49:15] [PASSED] 0xA7AB (ALDERLAKE_P)
[15:49:15] [PASSED] 0xA780 (ALDERLAKE_S)
[15:49:15] [PASSED] 0xA781 (ALDERLAKE_S)
[15:49:15] [PASSED] 0xA782 (ALDERLAKE_S)
[15:49:15] [PASSED] 0xA783 (ALDERLAKE_S)
[15:49:15] [PASSED] 0xA788 (ALDERLAKE_S)
[15:49:15] [PASSED] 0xA789 (ALDERLAKE_S)
[15:49:15] [PASSED] 0xA78A (ALDERLAKE_S)
[15:49:15] [PASSED] 0xA78B (ALDERLAKE_S)
[15:49:15] [PASSED] 0x4905 (DG1)
[15:49:15] [PASSED] 0x4906 (DG1)
[15:49:15] [PASSED] 0x4907 (DG1)
[15:49:15] [PASSED] 0x4908 (DG1)
[15:49:15] [PASSED] 0x4909 (DG1)
[15:49:15] [PASSED] 0x56C0 (DG2)
[15:49:15] [PASSED] 0x56C2 (DG2)
[15:49:15] [PASSED] 0x56C1 (DG2)
[15:49:15] [PASSED] 0x7D51 (METEORLAKE)
[15:49:15] [PASSED] 0x7DD1 (METEORLAKE)
[15:49:15] [PASSED] 0x7D41 (METEORLAKE)
[15:49:15] [PASSED] 0x7D67 (METEORLAKE)
[15:49:15] [PASSED] 0xB640 (METEORLAKE)
[15:49:15] [PASSED] 0x56A0 (DG2)
[15:49:15] [PASSED] 0x56A1 (DG2)
[15:49:15] [PASSED] 0x56A2 (DG2)
[15:49:15] [PASSED] 0x56BE (DG2)
[15:49:15] [PASSED] 0x56BF (DG2)
[15:49:15] [PASSED] 0x5690 (DG2)
[15:49:15] [PASSED] 0x5691 (DG2)
[15:49:15] [PASSED] 0x5692 (DG2)
[15:49:15] [PASSED] 0x56A5 (DG2)
[15:49:15] [PASSED] 0x56A6 (DG2)
[15:49:15] [PASSED] 0x56B0 (DG2)
[15:49:15] [PASSED] 0x56B1 (DG2)
[15:49:15] [PASSED] 0x56BA (DG2)
[15:49:15] [PASSED] 0x56BB (DG2)
[15:49:15] [PASSED] 0x56BC (DG2)
[15:49:15] [PASSED] 0x56BD (DG2)
[15:49:15] [PASSED] 0x5693 (DG2)
[15:49:15] [PASSED] 0x5694 (DG2)
[15:49:15] [PASSED] 0x5695 (DG2)
[15:49:15] [PASSED] 0x56A3 (DG2)
[15:49:15] [PASSED] 0x56A4 (DG2)
[15:49:15] [PASSED] 0x56B2 (DG2)
[15:49:15] [PASSED] 0x56B3 (DG2)
[15:49:15] [PASSED] 0x5696 (DG2)
[15:49:15] [PASSED] 0x5697 (DG2)
[15:49:15] [PASSED] 0xB69 (PVC)
[15:49:15] [PASSED] 0xB6E (PVC)
[15:49:15] [PASSED] 0xBD4 (PVC)
[15:49:15] [PASSED] 0xBD5 (PVC)
[15:49:15] [PASSED] 0xBD6 (PVC)
[15:49:15] [PASSED] 0xBD7 (PVC)
[15:49:15] [PASSED] 0xBD8 (PVC)
[15:49:15] [PASSED] 0xBD9 (PVC)
[15:49:15] [PASSED] 0xBDA (PVC)
[15:49:15] [PASSED] 0xBDB (PVC)
[15:49:15] [PASSED] 0xBE0 (PVC)
[15:49:15] [PASSED] 0xBE1 (PVC)
[15:49:15] [PASSED] 0xBE5 (PVC)
[15:49:15] [PASSED] 0x7D40 (METEORLAKE)
[15:49:15] [PASSED] 0x7D45 (METEORLAKE)
[15:49:15] [PASSED] 0x7D55 (METEORLAKE)
[15:49:15] [PASSED] 0x7D60 (METEORLAKE)
[15:49:15] [PASSED] 0x7DD5 (METEORLAKE)
[15:49:15] [PASSED] 0x6420 (LUNARLAKE)
[15:49:15] [PASSED] 0x64A0 (LUNARLAKE)
[15:49:15] [PASSED] 0x64B0 (LUNARLAKE)
[15:49:15] [PASSED] 0xE202 (BATTLEMAGE)
[15:49:15] [PASSED] 0xE209 (BATTLEMAGE)
[15:49:15] [PASSED] 0xE20B (BATTLEMAGE)
[15:49:15] [PASSED] 0xE20C (BATTLEMAGE)
[15:49:15] [PASSED] 0xE20D (BATTLEMAGE)
[15:49:15] [PASSED] 0xE210 (BATTLEMAGE)
[15:49:15] [PASSED] 0xE211 (BATTLEMAGE)
[15:49:15] [PASSED] 0xE212 (BATTLEMAGE)
[15:49:15] [PASSED] 0xE216 (BATTLEMAGE)
[15:49:15] [PASSED] 0xE220 (BATTLEMAGE)
[15:49:15] [PASSED] 0xE221 (BATTLEMAGE)
[15:49:15] [PASSED] 0xE222 (BATTLEMAGE)
[15:49:15] [PASSED] 0xE223 (BATTLEMAGE)
[15:49:15] [PASSED] 0xB080 (PANTHERLAKE)
[15:49:15] [PASSED] 0xB081 (PANTHERLAKE)
[15:49:15] [PASSED] 0xB082 (PANTHERLAKE)
[15:49:15] [PASSED] 0xB083 (PANTHERLAKE)
[15:49:15] [PASSED] 0xB084 (PANTHERLAKE)
[15:49:15] [PASSED] 0xB085 (PANTHERLAKE)
[15:49:15] [PASSED] 0xB086 (PANTHERLAKE)
[15:49:15] [PASSED] 0xB087 (PANTHERLAKE)
[15:49:15] [PASSED] 0xB08F (PANTHERLAKE)
[15:49:15] [PASSED] 0xB090 (PANTHERLAKE)
[15:49:15] [PASSED] 0xB0A0 (PANTHERLAKE)
[15:49:15] [PASSED] 0xB0B0 (PANTHERLAKE)
[15:49:15] [PASSED] 0xFD80 (PANTHERLAKE)
[15:49:15] [PASSED] 0xFD81 (PANTHERLAKE)
[15:49:15] ============= [PASSED] check_platform_gt_count =============
[15:49:15] ===================== [PASSED] xe_pci ======================
[15:49:15] =================== xe_rtp (2 subtests) ====================
[15:49:15] =============== xe_rtp_process_to_sr_tests  ================
[15:49:15] [PASSED] coalesce-same-reg
[15:49:15] [PASSED] no-match-no-add
[15:49:15] [PASSED] match-or
[15:49:15] [PASSED] match-or-xfail
[15:49:15] [PASSED] no-match-no-add-multiple-rules
[15:49:15] [PASSED] two-regs-two-entries
[15:49:15] [PASSED] clr-one-set-other
[15:49:15] [PASSED] set-field
[15:49:15] [PASSED] conflict-duplicate
[15:49:15] [PASSED] conflict-not-disjoint
[15:49:15] [PASSED] conflict-reg-type
[15:49:15] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[15:49:15] ================== xe_rtp_process_tests  ===================
[15:49:15] [PASSED] active1
[15:49:15] [PASSED] active2
[15:49:15] [PASSED] active-inactive
[15:49:15] [PASSED] inactive-active
[15:49:15] [PASSED] inactive-1st_or_active-inactive
[15:49:15] [PASSED] inactive-2nd_or_active-inactive
[15:49:15] [PASSED] inactive-last_or_active-inactive
[15:49:15] [PASSED] inactive-no_or_active-inactive
[15:49:15] ============== [PASSED] xe_rtp_process_tests ===============
[15:49:15] ===================== [PASSED] xe_rtp ======================
[15:49:15] ==================== xe_wa (1 subtest) =====================
[15:49:15] ======================== xe_wa_gt  =========================
[15:49:15] [PASSED] TIGERLAKE (B0)
[15:49:15] [PASSED] DG1 (A0)
[15:49:15] [PASSED] DG1 (B0)
[15:49:15] [PASSED] ALDERLAKE_S (A0)
[15:49:15] [PASSED] ALDERLAKE_S (B0)
[15:49:15] [PASSED] ALDERLAKE_S (C0)
[15:49:15] [PASSED] ALDERLAKE_S (D0)
[15:49:15] [PASSED] ALDERLAKE_P (A0)
[15:49:15] [PASSED] ALDERLAKE_P (B0)
[15:49:15] [PASSED] ALDERLAKE_P (C0)
[15:49:15] [PASSED] ALDERLAKE_S_RPLS (D0)
[15:49:15] [PASSED] ALDERLAKE_P_RPLU (E0)
[15:49:15] [PASSED] DG2_G10 (C0)
[15:49:15] [PASSED] DG2_G11 (B1)
[15:49:15] [PASSED] DG2_G12 (A1)
[15:49:15] [PASSED] METEORLAKE (g:A0, m:A0)
[15:49:15] [PASSED] METEORLAKE (g:A0, m:A0)
[15:49:15] [PASSED] METEORLAKE (g:A0, m:A0)
[15:49:15] [PASSED] LUNARLAKE (g:A0, m:A0)
[15:49:15] [PASSED] LUNARLAKE (g:B0, m:A0)
stty: 'standard input': Inappropriate ioctl for device
[15:49:15] [PASSED] BATTLEMAGE (g:A0, m:A1)
[15:49:15] [PASSED] PANTHERLAKE (g:A0, m:A0)
[15:49:15] ==================== [PASSED] xe_wa_gt =====================
[15:49:15] ====================== [PASSED] xe_wa ======================
[15:49:15] ============================================================
[15:49:15] Testing complete. Ran 298 tests: passed: 282, skipped: 16
[15:49:15] Elapsed time: 33.530s total, 4.294s configuring, 28.869s building, 0.320s running

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

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

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



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

* ✗ CI.checksparse: warning for drm/i915/display: convert to generic poll_timeout_us()
  2025-08-28 12:20 [PATCH 00/20] drm/i915/display: convert to generic poll_timeout_us() Jani Nikula
                   ` (21 preceding siblings ...)
  2025-08-28 15:49 ` ✓ CI.KUnit: success " Patchwork
@ 2025-08-28 16:05 ` Patchwork
  2025-08-28 16:29 ` ✓ Xe.CI.BAT: success " Patchwork
  2025-08-28 21:01 ` ✓ Xe.CI.Full: " Patchwork
  24 siblings, 0 replies; 47+ messages in thread
From: Patchwork @ 2025-08-28 16:05 UTC (permalink / raw)
  To: Jani Nikula; +Cc: intel-xe

== Series Details ==

Series: drm/i915/display: convert to generic poll_timeout_us()
URL   : https://patchwork.freedesktop.org/series/153630/
State : warning

== Summary ==

+ trap cleanup EXIT
+ KERNEL=/kernel
+ MT=/root/linux/maintainer-tools
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools /root/linux/maintainer-tools
Cloning into '/root/linux/maintainer-tools'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ make -C /root/linux/maintainer-tools
make: Entering directory '/root/linux/maintainer-tools'
cc -O2 -g -Wextra -o remap-log remap-log.c
make: Leaving directory '/root/linux/maintainer-tools'
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ /root/linux/maintainer-tools/dim sparse --fast a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97
Sparse version: 0.6.4 (Ubuntu: 0.6.4-4ubuntu3)
Fast mode used, each commit won't be checked separately.
+drivers/gpu/drm/i915/display/intel_cdclk.c: note: in included file:
+drivers/gpu/drm/i915/display/intel_ddi.c: note: in included file:
+drivers/gpu/drm/i915/display/intel_display_types.h:2021:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2021:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2021:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2021:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2021:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2021:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2021:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2034:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2034:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2034:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_hdcp.c: note: in included file:

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



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

* ✓ Xe.CI.BAT: success for drm/i915/display: convert to generic poll_timeout_us()
  2025-08-28 12:20 [PATCH 00/20] drm/i915/display: convert to generic poll_timeout_us() Jani Nikula
                   ` (22 preceding siblings ...)
  2025-08-28 16:05 ` ✗ CI.checksparse: warning " Patchwork
@ 2025-08-28 16:29 ` Patchwork
  2025-08-28 21:01 ` ✓ Xe.CI.Full: " Patchwork
  24 siblings, 0 replies; 47+ messages in thread
From: Patchwork @ 2025-08-28 16:29 UTC (permalink / raw)
  To: Jani Nikula; +Cc: intel-xe

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

== Series Details ==

Series: drm/i915/display: convert to generic poll_timeout_us()
URL   : https://patchwork.freedesktop.org/series/153630/
State : success

== Summary ==

CI Bug Log - changes from xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945_BAT -> xe-pw-153630v1_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (11 -> 11)
------------------------------

  No changes in participating hosts

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

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

### IGT changes ###

#### Issues hit ####

  * igt@kms_flip@basic-plain-flip@c-edp1:
    - bat-adlp-7:         [PASS][1] -> [DMESG-WARN][2] ([Intel XE#4543])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/bat-adlp-7/igt@kms_flip@basic-plain-flip@c-edp1.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/bat-adlp-7/igt@kms_flip@basic-plain-flip@c-edp1.html

  
#### Possible fixes ####

  * igt@kms_flip@basic-plain-flip@d-edp1:
    - bat-adlp-7:         [DMESG-WARN][3] ([Intel XE#4543]) -> [PASS][4]
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/bat-adlp-7/igt@kms_flip@basic-plain-flip@d-edp1.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/bat-adlp-7/igt@kms_flip@basic-plain-flip@d-edp1.html

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

  [Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
  [Intel XE#5783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5783


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

  * Linux: xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945 -> xe-pw-153630v1

  IGT_8512: 8512
  xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945: 12bdbc7687846f438afff8bfdc89873b3cd95945
  xe-pw-153630v1: 153630v1

== Logs ==

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

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

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

* ✓ Xe.CI.Full: success for drm/i915/display: convert to generic poll_timeout_us()
  2025-08-28 12:20 [PATCH 00/20] drm/i915/display: convert to generic poll_timeout_us() Jani Nikula
                   ` (23 preceding siblings ...)
  2025-08-28 16:29 ` ✓ Xe.CI.BAT: success " Patchwork
@ 2025-08-28 21:01 ` Patchwork
  24 siblings, 0 replies; 47+ messages in thread
From: Patchwork @ 2025-08-28 21:01 UTC (permalink / raw)
  To: Jani Nikula; +Cc: intel-xe

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

== Series Details ==

Series: drm/i915/display: convert to generic poll_timeout_us()
URL   : https://patchwork.freedesktop.org/series/153630/
State : success

== Summary ==

CI Bug Log - changes from xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945_FULL -> xe-pw-153630v1_FULL
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (4 -> 4)
------------------------------

  No changes in participating hosts

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

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

### IGT changes ###

#### Issues hit ####

  * igt@fbdev@write:
    - shard-dg2-set2:     [PASS][1] -> [SKIP][2] ([Intel XE#2134]) +2 other tests skip
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-436/igt@fbdev@write.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@fbdev@write.html

  * igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1:
    - shard-lnl:          NOTRUN -> [FAIL][3] ([Intel XE#911]) +1 other test fail
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-lnl-1/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html

  * igt@kms_async_flips@test-cursor-atomic:
    - shard-lnl:          NOTRUN -> [SKIP][4] ([Intel XE#664])
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-lnl-7/igt@kms_async_flips@test-cursor-atomic.html

  * igt@kms_atomic_transition@plane-toggle-modeset-transition:
    - shard-adlp:         [PASS][5] -> [FAIL][6] ([Intel XE#3908]) +3 other tests fail
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-adlp-6/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-adlp-2/igt@kms_atomic_transition@plane-toggle-modeset-transition.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
    - shard-lnl:          NOTRUN -> [SKIP][7] ([Intel XE#3658])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-lnl-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
    - shard-dg2-set2:     [PASS][8] -> [SKIP][9] ([Intel XE#2351] / [Intel XE#4208]) +10 other tests skip
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-435/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
    - shard-adlp:         [PASS][10] -> [DMESG-FAIL][11] ([Intel XE#4543]) +1 other test dmesg-fail
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-adlp-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-adlp-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
    - shard-lnl:          NOTRUN -> [SKIP][12] ([Intel XE#1124]) +5 other tests skip
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-lnl-7/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html

  * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-d-dp-2:
    - shard-dg2-set2:     NOTRUN -> [SKIP][13] ([Intel XE#455] / [Intel XE#787]) +10 other tests skip
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-d-dp-2.html

  * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [SKIP][14] ([Intel XE#787]) +76 other tests skip
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-464/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
    - shard-dg2-set2:     [PASS][15] -> [INCOMPLETE][16] ([Intel XE#2705] / [Intel XE#4212] / [Intel XE#4345])
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][17] ([Intel XE#2705] / [Intel XE#4212])
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs:
    - shard-lnl:          NOTRUN -> [SKIP][18] ([Intel XE#2887]) +3 other tests skip
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-lnl-1/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html

  * igt@kms_cdclk@mode-transition@pipe-b-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][19] ([Intel XE#4417]) +3 other tests skip
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-lnl-7/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html

  * igt@kms_chamelium_edid@dp-edid-stress-resolution-4k:
    - shard-lnl:          NOTRUN -> [SKIP][20] ([Intel XE#373]) +2 other tests skip
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-lnl-7/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html

  * igt@kms_content_protection@legacy@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][21] ([Intel XE#1178])
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-bmg-3/igt@kms_content_protection@legacy@pipe-a-dp-2.html

  * igt@kms_cursor_crc@cursor-offscreen-128x42:
    - shard-adlp:         [PASS][22] -> [DMESG-WARN][23] ([Intel XE#2953] / [Intel XE#4173]) +9 other tests dmesg-warn
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-adlp-2/igt@kms_cursor_crc@cursor-offscreen-128x42.html
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-adlp-3/igt@kms_cursor_crc@cursor-offscreen-128x42.html

  * igt@kms_cursor_crc@cursor-onscreen-64x64:
    - shard-dg2-set2:     [PASS][24] -> [SKIP][25] ([Intel XE#4208] / [i915#2575]) +78 other tests skip
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-432/igt@kms_cursor_crc@cursor-onscreen-64x64.html
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-64x64.html

  * igt@kms_cursor_crc@cursor-random-256x85:
    - shard-lnl:          NOTRUN -> [SKIP][26] ([Intel XE#1424])
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-lnl-1/igt@kms_cursor_crc@cursor-random-256x85.html

  * igt@kms_cursor_crc@cursor-sliding-512x170:
    - shard-dg2-set2:     NOTRUN -> [SKIP][27] ([Intel XE#4208] / [i915#2575]) +4 other tests skip
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@kms_cursor_crc@cursor-sliding-512x170.html

  * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
    - shard-lnl:          NOTRUN -> [SKIP][28] ([Intel XE#309])
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-lnl-1/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
    - shard-bmg:          [PASS][29] -> [SKIP][30] ([Intel XE#2291]) +4 other tests skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-bmg-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html

  * igt@kms_dp_linktrain_fallback@dp-fallback:
    - shard-bmg:          [PASS][31] -> [FAIL][32] ([Intel XE#4367])
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-bmg-8/igt@kms_dp_linktrain_fallback@dp-fallback.html
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-bmg-1/igt@kms_dp_linktrain_fallback@dp-fallback.html

  * igt@kms_flip@2x-plain-flip-ts-check-interruptible:
    - shard-bmg:          [PASS][33] -> [SKIP][34] ([Intel XE#2316]) +4 other tests skip
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-bmg-2/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-bmg-6/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html

  * igt@kms_flip@2x-wf_vblank-ts-check:
    - shard-lnl:          NOTRUN -> [SKIP][35] ([Intel XE#1421])
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-lnl-7/igt@kms_flip@2x-wf_vblank-ts-check.html

  * igt@kms_flip@dpms-vs-vblank-race:
    - shard-bmg:          [PASS][36] -> [FAIL][37] ([Intel XE#3098])
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-bmg-6/igt@kms_flip@dpms-vs-vblank-race.html
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-bmg-3/igt@kms_flip@dpms-vs-vblank-race.html

  * igt@kms_flip@dpms-vs-vblank-race@a-dp2:
    - shard-bmg:          NOTRUN -> [FAIL][38] ([Intel XE#3098])
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-bmg-3/igt@kms_flip@dpms-vs-vblank-race@a-dp2.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2:
    - shard-bmg:          [PASS][39] -> [FAIL][40] ([Intel XE#3321]) +1 other test fail
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-bmg-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html

  * igt@kms_flip@flip-vs-expired-vblank@b-edp1:
    - shard-lnl:          [PASS][41] -> [FAIL][42] ([Intel XE#301])
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html

  * igt@kms_flip@flip-vs-modeset-vs-hang@d-hdmi-a1:
    - shard-adlp:         [PASS][43] -> [DMESG-WARN][44] ([Intel XE#4543]) +4 other tests dmesg-warn
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-adlp-4/igt@kms_flip@flip-vs-modeset-vs-hang@d-hdmi-a1.html
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-adlp-8/igt@kms_flip@flip-vs-modeset-vs-hang@d-hdmi-a1.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-bmg:          [PASS][45] -> [INCOMPLETE][46] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-bmg-1/igt@kms_flip@flip-vs-suspend-interruptible.html
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-bmg-5/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_flip@flip-vs-suspend@d-dp4:
    - shard-dg2-set2:     [PASS][47] -> [INCOMPLETE][48] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-435/igt@kms_flip@flip-vs-suspend@d-dp4.html
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-464/igt@kms_flip@flip-vs-suspend@d-dp4.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
    - shard-lnl:          NOTRUN -> [SKIP][49] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
    - shard-lnl:          NOTRUN -> [SKIP][50] ([Intel XE#1401]) +1 other test skip
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
    - shard-dg2-set2:     NOTRUN -> [SKIP][51] ([Intel XE#455]) +2 other tests skip
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-464/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
    - shard-dg2-set2:     NOTRUN -> [SKIP][52] ([Intel XE#2351] / [Intel XE#4208]) +1 other test skip
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-plflip-blt:
    - shard-lnl:          NOTRUN -> [SKIP][53] ([Intel XE#656]) +10 other tests skip
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-lnl-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-render:
    - shard-lnl:          NOTRUN -> [SKIP][54] ([Intel XE#651]) +1 other test skip
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-render.html

  * igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][55] ([Intel XE#1450]) +1 other test skip
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-lnl-7/igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1.html

  * igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][56] ([Intel XE#1450] / [Intel XE#2568]) +1 other test skip
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-lnl-7/igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1.html

  * igt@kms_joiner@invalid-modeset-force-big-joiner:
    - shard-bmg:          [PASS][57] -> [SKIP][58] ([Intel XE#3012])
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-bmg-2/igt@kms_joiner@invalid-modeset-force-big-joiner.html
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html

  * igt@kms_plane_multiple@2x-tiling-x:
    - shard-bmg:          [PASS][59] -> [SKIP][60] ([Intel XE#4596])
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-x.html
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-x.html

  * igt@kms_plane_multiple@tiling-yf:
    - shard-lnl:          NOTRUN -> [SKIP][61] ([Intel XE#5020])
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-lnl-1/igt@kms_plane_multiple@tiling-yf.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a:
    - shard-lnl:          NOTRUN -> [SKIP][62] ([Intel XE#2763]) +3 other tests skip
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-lnl-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a.html

  * igt@kms_pm_dc@dc6-dpms:
    - shard-adlp:         [PASS][63] -> [FAIL][64] ([Intel XE#718])
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-adlp-8/igt@kms_pm_dc@dc6-dpms.html
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-adlp-9/igt@kms_pm_dc@dc6-dpms.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
    - shard-lnl:          NOTRUN -> [SKIP][65] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608])
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-lnl-7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-a-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][66] ([Intel XE#1406] / [Intel XE#4608]) +1 other test skip
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-lnl-7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-a-edp-1.html

  * igt@kms_vrr@negative-basic:
    - shard-bmg:          [PASS][67] -> [SKIP][68] ([Intel XE#1499])
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-bmg-2/igt@kms_vrr@negative-basic.html
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-bmg-6/igt@kms_vrr@negative-basic.html

  * igt@xe_compute_preempt@compute-preempt@engine-drm_xe_engine_class_compute:
    - shard-dg2-set2:     NOTRUN -> [SKIP][69] ([Intel XE#1280] / [Intel XE#455])
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-466/igt@xe_compute_preempt@compute-preempt@engine-drm_xe_engine_class_compute.html

  * igt@xe_eudebug_sriov@deny-sriov:
    - shard-lnl:          NOTRUN -> [SKIP][70] ([Intel XE#4518])
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-lnl-1/igt@xe_eudebug_sriov@deny-sriov.html

  * igt@xe_evict@evict-beng-large-multi-vm:
    - shard-lnl:          NOTRUN -> [SKIP][71] ([Intel XE#688])
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-lnl-7/igt@xe_evict@evict-beng-large-multi-vm.html

  * igt@xe_exec_balancer@once-parallel-rebind:
    - shard-dg2-set2:     [PASS][72] -> [SKIP][73] ([Intel XE#4208]) +185 other tests skip
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-436/igt@xe_exec_balancer@once-parallel-rebind.html
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@xe_exec_balancer@once-parallel-rebind.html

  * igt@xe_exec_basic@multigpu-once-basic-defer-bind:
    - shard-dg2-set2:     [PASS][74] -> [SKIP][75] ([Intel XE#1392]) +2 other tests skip
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-466/igt@xe_exec_basic@multigpu-once-basic-defer-bind.html
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-432/igt@xe_exec_basic@multigpu-once-basic-defer-bind.html

  * igt@xe_exec_basic@multigpu-once-basic-defer-mmap:
    - shard-lnl:          NOTRUN -> [SKIP][76] ([Intel XE#1392]) +2 other tests skip
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-lnl-1/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html

  * igt@xe_exec_reset@cm-close-fd:
    - shard-adlp:         [PASS][77] -> [DMESG-WARN][78] ([Intel XE#3868])
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-adlp-4/igt@xe_exec_reset@cm-close-fd.html
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-adlp-3/igt@xe_exec_reset@cm-close-fd.html

  * igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-free:
    - shard-dg2-set2:     NOTRUN -> [SKIP][79] ([Intel XE#4208]) +10 other tests skip
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-free.html

  * igt@xe_exec_system_allocator@threads-many-execqueues-mmap-huge-nomemset:
    - shard-lnl:          NOTRUN -> [SKIP][80] ([Intel XE#4943]) +5 other tests skip
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-lnl-7/igt@xe_exec_system_allocator@threads-many-execqueues-mmap-huge-nomemset.html

  * igt@xe_live_ktest@xe_bo:
    - shard-dg2-set2:     [PASS][81] -> [SKIP][82] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-464/igt@xe_live_ktest@xe_bo.html
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@xe_live_ktest@xe_bo.html

  * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
    - shard-dg2-set2:     [PASS][83] -> [SKIP][84] ([Intel XE#2229])
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-464/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html

  * igt@xe_live_ktest@xe_eudebug:
    - shard-lnl:          NOTRUN -> [SKIP][85] ([Intel XE#2833])
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-lnl-1/igt@xe_live_ktest@xe_eudebug.html

  * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
    - shard-lnl:          NOTRUN -> [SKIP][86] ([Intel XE#2229])
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-lnl-7/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html

  * igt@xe_noexec_ping_pong:
    - shard-lnl:          NOTRUN -> [SKIP][87] ([Intel XE#379])
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-lnl-1/igt@xe_noexec_ping_pong.html

  * igt@xe_pat@pat-index-xe2:
    - shard-bmg:          [PASS][88] -> [FAIL][89] ([Intel XE#5507]) +1 other test fail
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-bmg-6/igt@xe_pat@pat-index-xe2.html
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-bmg-3/igt@xe_pat@pat-index-xe2.html

  * igt@xe_pm@d3cold-basic:
    - shard-lnl:          NOTRUN -> [SKIP][90] ([Intel XE#2284] / [Intel XE#366])
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-lnl-7/igt@xe_pm@d3cold-basic.html

  * igt@xe_pm@d3hot-mmap-vram:
    - shard-lnl:          NOTRUN -> [SKIP][91] ([Intel XE#1948])
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-lnl-7/igt@xe_pm@d3hot-mmap-vram.html

  * igt@xe_pm@s3-vm-bind-prefetch:
    - shard-lnl:          NOTRUN -> [SKIP][92] ([Intel XE#584])
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-lnl-7/igt@xe_pm@s3-vm-bind-prefetch.html

  * igt@xe_query@multigpu-query-invalid-size:
    - shard-lnl:          NOTRUN -> [SKIP][93] ([Intel XE#944])
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-lnl-7/igt@xe_query@multigpu-query-invalid-size.html

  
#### Possible fixes ####

  * igt@kms_atomic@plane-invalid-params-fence:
    - shard-dg2-set2:     [SKIP][94] ([Intel XE#4208] / [i915#2575]) -> [PASS][95] +71 other tests pass
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-434/igt@kms_atomic@plane-invalid-params-fence.html
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-466/igt@kms_atomic@plane-invalid-params-fence.html

  * igt@kms_big_fb@linear-32bpp-rotate-180:
    - shard-adlp:         [DMESG-WARN][96] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][97] +5 other tests pass
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-adlp-2/igt@kms_big_fb@linear-32bpp-rotate-180.html
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-adlp-4/igt@kms_big_fb@linear-32bpp-rotate-180.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
    - shard-adlp:         [DMESG-FAIL][98] ([Intel XE#4543]) -> [PASS][99] +2 other tests pass
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-adlp-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-adlp-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html

  * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
    - shard-bmg:          [SKIP][100] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][101]
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-bmg-3/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs:
    - shard-dg2-set2:     [SKIP][102] ([Intel XE#2351] / [Intel XE#4208]) -> [PASS][103] +4 other tests pass
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-434/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs.html
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-466/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs.html

  * igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions-varying-size:
    - shard-bmg:          [DMESG-WARN][104] ([Intel XE#5354]) -> [PASS][105]
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-bmg-2/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions-varying-size.html
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
    - shard-bmg:          [SKIP][106] ([Intel XE#2291]) -> [PASS][107] +1 other test pass
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-bmg-3/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html

  * igt@kms_feature_discovery@display-2x:
    - shard-bmg:          [SKIP][108] ([Intel XE#2373]) -> [PASS][109]
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-bmg-6/igt@kms_feature_discovery@display-2x.html
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-bmg-3/igt@kms_feature_discovery@display-2x.html

  * igt@kms_flip@2x-flip-vs-dpms-on-nop:
    - shard-bmg:          [SKIP][110] ([Intel XE#2316]) -> [PASS][111] +3 other tests pass
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-bmg-3/igt@kms_flip@2x-flip-vs-dpms-on-nop.html

  * igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1:
    - shard-adlp:         [DMESG-WARN][112] ([Intel XE#4543]) -> [PASS][113] +4 other tests pass
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-adlp-3/igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1.html
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-adlp-6/igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1.html

  * igt@kms_flip@flip-vs-expired-vblank@a-edp1:
    - shard-lnl:          [FAIL][114] ([Intel XE#301]) -> [PASS][115]
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html

  * igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-x:
    - shard-adlp:         [FAIL][116] ([Intel XE#1874]) -> [PASS][117] +1 other test pass
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-adlp-8/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-x.html
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-adlp-9/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-x.html

  * igt@kms_hdr@static-toggle-suspend:
    - shard-bmg:          [SKIP][118] ([Intel XE#1503]) -> [PASS][119] +1 other test pass
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-bmg-6/igt@kms_hdr@static-toggle-suspend.html
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-bmg-3/igt@kms_hdr@static-toggle-suspend.html

  * igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
    - shard-lnl:          [FAIL][120] ([Intel XE#2142]) -> [PASS][121] +1 other test pass
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-lnl-4/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-lnl-7/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html

  * igt@xe_exec_basic@many-null-rebind:
    - shard-dg2-set2:     [SKIP][122] ([Intel XE#4208]) -> [PASS][123] +140 other tests pass
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-434/igt@xe_exec_basic@many-null-rebind.html
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-464/igt@xe_exec_basic@many-null-rebind.html

  * igt@xe_module_load@load:
    - shard-dg2-set2:     ([PASS][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128], [PASS][129], [PASS][130], [PASS][131], [SKIP][132], [PASS][133], [PASS][134], [PASS][135], [PASS][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142], [PASS][143], [PASS][144], [PASS][145], [PASS][146], [PASS][147], [PASS][148], [PASS][149]) ([Intel XE#378]) -> ([PASS][150], [PASS][151], [PASS][152], [PASS][153], [PASS][154], [PASS][155], [PASS][156], [PASS][157], [PASS][158], [PASS][159], [PASS][160], [PASS][161], [PASS][162], [PASS][163], [PASS][164], [PASS][165], [PASS][166], [PASS][167], [PASS][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174])
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-434/igt@xe_module_load@load.html
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-466/igt@xe_module_load@load.html
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-464/igt@xe_module_load@load.html
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-434/igt@xe_module_load@load.html
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-466/igt@xe_module_load@load.html
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-466/igt@xe_module_load@load.html
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-464/igt@xe_module_load@load.html
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-434/igt@xe_module_load@load.html
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-432/igt@xe_module_load@load.html
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-435/igt@xe_module_load@load.html
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-435/igt@xe_module_load@load.html
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-433/igt@xe_module_load@load.html
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-434/igt@xe_module_load@load.html
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-435/igt@xe_module_load@load.html
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-464/igt@xe_module_load@load.html
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-433/igt@xe_module_load@load.html
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-433/igt@xe_module_load@load.html
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-432/igt@xe_module_load@load.html
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-432/igt@xe_module_load@load.html
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-432/igt@xe_module_load@load.html
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-436/igt@xe_module_load@load.html
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-463/igt@xe_module_load@load.html
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-463/igt@xe_module_load@load.html
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-463/igt@xe_module_load@load.html
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-434/igt@xe_module_load@load.html
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-434/igt@xe_module_load@load.html
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-432/igt@xe_module_load@load.html
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-466/igt@xe_module_load@load.html
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@xe_module_load@load.html
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@xe_module_load@load.html
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-435/igt@xe_module_load@load.html
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-436/igt@xe_module_load@load.html
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-466/igt@xe_module_load@load.html
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-436/igt@xe_module_load@load.html
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-464/igt@xe_module_load@load.html
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-464/igt@xe_module_load@load.html
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-464/igt@xe_module_load@load.html
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-432/igt@xe_module_load@load.html
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-435/igt@xe_module_load@load.html
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@xe_module_load@load.html
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-435/igt@xe_module_load@load.html
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@xe_module_load@load.html
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@xe_module_load@load.html
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@xe_module_load@load.html
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-433/igt@xe_module_load@load.html
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-433/igt@xe_module_load@load.html
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-433/igt@xe_module_load@load.html
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-463/igt@xe_module_load@load.html
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-463/igt@xe_module_load@load.html
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-463/igt@xe_module_load@load.html
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@xe_module_load@load.html

  * igt@xe_pm@s2idle-basic:
    - shard-adlp:         [DMESG-WARN][175] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4504]) -> [PASS][176]
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-adlp-2/igt@xe_pm@s2idle-basic.html
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-adlp-4/igt@xe_pm@s2idle-basic.html

  
#### Warnings ####

  * igt@kms_big_fb@4-tiled-64bpp-rotate-90:
    - shard-dg2-set2:     [SKIP][177] ([Intel XE#4208]) -> [SKIP][178] ([Intel XE#316]) +1 other test skip
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-434/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-466/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@x-tiled-16bpp-rotate-270:
    - shard-dg2-set2:     [SKIP][179] ([Intel XE#316]) -> [SKIP][180] ([Intel XE#4208]) +2 other tests skip
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-464/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-32bpp-rotate-270:
    - shard-dg2-set2:     [SKIP][181] ([Intel XE#1124]) -> [SKIP][182] ([Intel XE#2351] / [Intel XE#4208])
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-436/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
    - shard-dg2-set2:     [SKIP][183] ([Intel XE#607]) -> [SKIP][184] ([Intel XE#2351] / [Intel XE#4208])
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-435/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
    - shard-dg2-set2:     [SKIP][185] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][186] ([Intel XE#1124]) +3 other tests skip
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
    - shard-dg2-set2:     [SKIP][187] ([Intel XE#4208]) -> [SKIP][188] ([Intel XE#1124]) +5 other tests skip
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-464/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html

  * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
    - shard-dg2-set2:     [SKIP][189] ([Intel XE#607]) -> [SKIP][190] ([Intel XE#4208])
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-464/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
    - shard-dg2-set2:     [SKIP][191] ([Intel XE#1124]) -> [SKIP][192] ([Intel XE#4208]) +8 other tests skip
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-464/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html

  * igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
    - shard-dg2-set2:     [SKIP][193] ([Intel XE#4208] / [i915#2575]) -> [SKIP][194] ([Intel XE#2191]) +1 other test skip
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-435/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html

  * igt@kms_bw@linear-tiling-2-displays-3840x2160p:
    - shard-dg2-set2:     [SKIP][195] ([Intel XE#4208] / [i915#2575]) -> [SKIP][196] ([Intel XE#367]) +1 other test skip
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-434/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-466/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html

  * igt@kms_bw@linear-tiling-3-displays-3840x2160p:
    - shard-dg2-set2:     [SKIP][197] ([Intel XE#367]) -> [SKIP][198] ([Intel XE#4208] / [i915#2575]) +3 other tests skip
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-464/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
    - shard-dg2-set2:     [SKIP][199] ([Intel XE#2907]) -> [SKIP][200] ([Intel XE#4208]) +1 other test skip
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-464/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html

  * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs:
    - shard-dg2-set2:     [SKIP][201] ([Intel XE#4208]) -> [SKIP][202] ([Intel XE#455] / [Intel XE#787]) +7 other tests skip
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-434/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs.html
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-464/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs:
    - shard-dg2-set2:     [SKIP][203] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][204] ([Intel XE#2351] / [Intel XE#4208])
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-432/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs.html
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
    - shard-dg2-set2:     [SKIP][205] ([Intel XE#4208]) -> [SKIP][206] ([Intel XE#2907]) +1 other test skip
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-435/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc:
    - shard-dg2-set2:     [SKIP][207] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][208] ([Intel XE#455] / [Intel XE#787])
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-464/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
    - shard-dg2-set2:     [INCOMPLETE][209] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) -> [SKIP][210] ([Intel XE#4208])
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc:
    - shard-dg2-set2:     [SKIP][211] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][212] ([Intel XE#4208]) +8 other tests skip
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html

  * igt@kms_cdclk@mode-transition-all-outputs:
    - shard-dg2-set2:     [SKIP][213] ([Intel XE#4418]) -> [SKIP][214] ([Intel XE#2351] / [Intel XE#4208])
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-464/igt@kms_cdclk@mode-transition-all-outputs.html
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@kms_cdclk@mode-transition-all-outputs.html

  * igt@kms_chamelium_color@ctm-0-75:
    - shard-dg2-set2:     [SKIP][215] ([Intel XE#306]) -> [SKIP][216] ([Intel XE#4208] / [i915#2575])
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-432/igt@kms_chamelium_color@ctm-0-75.html
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@kms_chamelium_color@ctm-0-75.html

  * igt@kms_chamelium_color@ctm-red-to-blue:
    - shard-dg2-set2:     [SKIP][217] ([Intel XE#4208] / [i915#2575]) -> [SKIP][218] ([Intel XE#306]) +1 other test skip
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-434/igt@kms_chamelium_color@ctm-red-to-blue.html
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-466/igt@kms_chamelium_color@ctm-red-to-blue.html

  * igt@kms_chamelium_edid@vga-edid-read:
    - shard-dg2-set2:     [SKIP][219] ([Intel XE#4208] / [i915#2575]) -> [SKIP][220] ([Intel XE#373]) +5 other tests skip
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-434/igt@kms_chamelium_edid@vga-edid-read.html
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-435/igt@kms_chamelium_edid@vga-edid-read.html

  * igt@kms_chamelium_frames@hdmi-aspect-ratio:
    - shard-dg2-set2:     [SKIP][221] ([Intel XE#373]) -> [SKIP][222] ([Intel XE#4208] / [i915#2575]) +8 other tests skip
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-435/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@kms_chamelium_frames@hdmi-aspect-ratio.html

  * igt@kms_content_protection@legacy:
    - shard-bmg:          [SKIP][223] ([Intel XE#2341]) -> [FAIL][224] ([Intel XE#1178])
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-bmg-6/igt@kms_content_protection@legacy.html
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-bmg-3/igt@kms_content_protection@legacy.html
    - shard-dg2-set2:     [FAIL][225] ([Intel XE#1178]) -> [SKIP][226] ([Intel XE#4208] / [i915#2575]) +1 other test skip
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-436/igt@kms_content_protection@legacy.html
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@kms_content_protection@legacy.html

  * igt@kms_content_protection@uevent:
    - shard-dg2-set2:     [FAIL][227] ([Intel XE#1188]) -> [SKIP][228] ([Intel XE#4208] / [i915#2575])
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-435/igt@kms_content_protection@uevent.html
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@cursor-onscreen-512x170:
    - shard-dg2-set2:     [SKIP][229] ([Intel XE#308]) -> [SKIP][230] ([Intel XE#4208] / [i915#2575]) +1 other test skip
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-464/igt@kms_cursor_crc@cursor-onscreen-512x170.html
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-512x170.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
    - shard-dg2-set2:     [SKIP][231] ([Intel XE#323]) -> [SKIP][232] ([Intel XE#4208] / [i915#2575])
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-432/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html

  * igt@kms_dp_link_training@uhbr-mst:
    - shard-dg2-set2:     [SKIP][233] ([Intel XE#4208]) -> [SKIP][234] ([Intel XE#4356])
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-434/igt@kms_dp_link_training@uhbr-mst.html
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-435/igt@kms_dp_link_training@uhbr-mst.html

  * igt@kms_dp_linktrain_fallback@dsc-fallback:
    - shard-dg2-set2:     [SKIP][235] ([Intel XE#4331]) -> [SKIP][236] ([Intel XE#4208])
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-436/igt@kms_dp_linktrain_fallback@dsc-fallback.html
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@kms_dp_linktrain_fallback@dsc-fallback.html

  * igt@kms_feature_discovery@psr2:
    - shard-dg2-set2:     [SKIP][237] ([Intel XE#4208] / [i915#2575]) -> [SKIP][238] ([Intel XE#1135])
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-434/igt@kms_feature_discovery@psr2.html
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-435/igt@kms_feature_discovery@psr2.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
    - shard-dg2-set2:     [SKIP][239] ([Intel XE#455]) -> [SKIP][240] ([Intel XE#4208]) +1 other test skip
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
    - shard-dg2-set2:     [SKIP][241] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][242] ([Intel XE#455]) +1 other test skip
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
    - shard-dg2-set2:     [SKIP][243] ([Intel XE#4208]) -> [SKIP][244] ([Intel XE#455]) +2 other tests skip
   [243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-464/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][245] ([Intel XE#2311]) -> [SKIP][246] ([Intel XE#2312]) +9 other tests skip
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html
   [246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff:
    - shard-dg2-set2:     [SKIP][247] ([Intel XE#651]) -> [SKIP][248] ([Intel XE#4208]) +17 other tests skip
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          [SKIP][249] ([Intel XE#2312]) -> [SKIP][250] ([Intel XE#2311]) +8 other tests skip
   [249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
   [250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
    - shard-bmg:          [SKIP][251] ([Intel XE#2312]) -> [SKIP][252] ([Intel XE#5390]) +5 other tests skip
   [251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
   [252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move:
    - shard-bmg:          [SKIP][253] ([Intel XE#5390]) -> [SKIP][254] ([Intel XE#2312]) +3 other tests skip
   [253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html
   [254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
    - shard-dg2-set2:     [SKIP][255] ([Intel XE#4208]) -> [SKIP][256] ([Intel XE#651]) +16 other tests skip
   [255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
   [256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff:
    - shard-dg2-set2:     [SKIP][257] ([Intel XE#651]) -> [SKIP][258] ([Intel XE#2351] / [Intel XE#4208]) +10 other tests skip
   [257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html
   [258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-blt:
    - shard-dg2-set2:     [SKIP][259] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][260] ([Intel XE#651]) +4 other tests skip
   [259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-blt.html
   [260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt:
    - shard-dg2-set2:     [SKIP][261] ([Intel XE#4208]) -> [SKIP][262] ([Intel XE#653]) +13 other tests skip
   [261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html
   [262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render:
    - shard-bmg:          [SKIP][263] ([Intel XE#2312]) -> [SKIP][264] ([Intel XE#2313]) +9 other tests skip
   [263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html
   [264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-slowdraw:
    - shard-dg2-set2:     [SKIP][265] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][266] ([Intel XE#653]) +7 other tests skip
   [265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html
   [266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
    - shard-dg2-set2:     [SKIP][267] ([Intel XE#653]) -> [SKIP][268] ([Intel XE#2351] / [Intel XE#4208]) +9 other tests skip
   [267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
   [268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
    - shard-dg2-set2:     [SKIP][269] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][270] ([Intel XE#658])
   [269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
   [270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt:
    - shard-bmg:          [SKIP][271] ([Intel XE#2313]) -> [SKIP][272] ([Intel XE#2312]) +5 other tests skip
   [271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html
   [272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-slowdraw:
    - shard-dg2-set2:     [SKIP][273] ([Intel XE#653]) -> [SKIP][274] ([Intel XE#4208]) +19 other tests skip
   [273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-slowdraw.html
   [274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-slowdraw.html

  * igt@kms_plane_multiple@tiling-y:
    - shard-dg2-set2:     [SKIP][275] ([Intel XE#5020]) -> [SKIP][276] ([Intel XE#4208] / [i915#2575])
   [275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-464/igt@kms_plane_multiple@tiling-y.html
   [276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@kms_plane_multiple@tiling-y.html

  * igt@kms_pm_backlight@bad-brightness:
    - shard-dg2-set2:     [SKIP][277] ([Intel XE#870]) -> [SKIP][278] ([Intel XE#4208])
   [277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-435/igt@kms_pm_backlight@bad-brightness.html
   [278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@kms_pm_backlight@bad-brightness.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-dg2-set2:     [SKIP][279] ([Intel XE#4208]) -> [SKIP][280] ([Intel XE#1129])
   [279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-434/igt@kms_pm_dc@dc5-psr.html
   [280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-435/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_pm_dc@deep-pkgc:
    - shard-dg2-set2:     [SKIP][281] ([Intel XE#4208]) -> [SKIP][282] ([Intel XE#908])
   [281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-434/igt@kms_pm_dc@deep-pkgc.html
   [282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-466/igt@kms_pm_dc@deep-pkgc.html

  * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf:
    - shard-dg2-set2:     [SKIP][283] ([Intel XE#1406] / [Intel XE#1489]) -> [SKIP][284] ([Intel XE#1406] / [Intel XE#4208]) +6 other tests skip
   [283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-436/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
   [284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
    - shard-dg2-set2:     [SKIP][285] ([Intel XE#1406] / [Intel XE#4208]) -> [SKIP][286] ([Intel XE#1406] / [Intel XE#1489]) +5 other tests skip
   [285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-434/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
   [286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-435/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html

  * igt@kms_psr2_su@page_flip-p010:
    - shard-dg2-set2:     [SKIP][287] ([Intel XE#1122] / [Intel XE#1406]) -> [SKIP][288] ([Intel XE#1406] / [Intel XE#4208]) +1 other test skip
   [287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-432/igt@kms_psr2_su@page_flip-p010.html
   [288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@kms_psr2_su@page_flip-p010.html

  * igt@kms_psr@fbc-pr-sprite-render:
    - shard-dg2-set2:     [SKIP][289] ([Intel XE#1406] / [Intel XE#2351] / [Intel XE#4208]) -> [SKIP][290] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +3 other tests skip
   [289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-434/igt@kms_psr@fbc-pr-sprite-render.html
   [290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-435/igt@kms_psr@fbc-pr-sprite-render.html

  * igt@kms_psr@fbc-psr-cursor-plane-onoff:
    - shard-dg2-set2:     [SKIP][291] ([Intel XE#1406] / [Intel XE#4208]) -> [SKIP][292] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +4 other tests skip
   [291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-434/igt@kms_psr@fbc-psr-cursor-plane-onoff.html
   [292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-435/igt@kms_psr@fbc-psr-cursor-plane-onoff.html

  * igt@kms_psr@fbc-psr-no-drrs:
    - shard-dg2-set2:     [SKIP][293] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) -> [SKIP][294] ([Intel XE#1406] / [Intel XE#2351] / [Intel XE#4208]) +1 other test skip
   [293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-436/igt@kms_psr@fbc-psr-no-drrs.html
   [294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@kms_psr@fbc-psr-no-drrs.html

  * igt@kms_psr@fbc-psr2-sprite-plane-move:
    - shard-dg2-set2:     [SKIP][295] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) -> [SKIP][296] ([Intel XE#1406] / [Intel XE#4208]) +8 other tests skip
   [295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-432/igt@kms_psr@fbc-psr2-sprite-plane-move.html
   [296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@kms_psr@fbc-psr2-sprite-plane-move.html

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-dg2-set2:     [SKIP][297] ([Intel XE#1406] / [Intel XE#2939]) -> [SKIP][298] ([Intel XE#1406] / [Intel XE#2351] / [Intel XE#4208])
   [297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-436/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
   [298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
    - shard-dg2-set2:     [SKIP][299] ([Intel XE#3414]) -> [SKIP][300] ([Intel XE#4208] / [i915#2575]) +2 other tests skip
   [299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
   [300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html

  * igt@kms_scaling_modes@scaling-mode-full-aspect:
    - shard-dg2-set2:     [SKIP][301] ([Intel XE#455]) -> [SKIP][302] ([Intel XE#4208] / [i915#2575]) +2 other tests skip
   [301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-464/igt@kms_scaling_modes@scaling-mode-full-aspect.html
   [302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@kms_scaling_modes@scaling-mode-full-aspect.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-dg2-set2:     [SKIP][303] ([Intel XE#4208] / [i915#2575]) -> [FAIL][304] ([Intel XE#1729])
   [303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern.html
   [304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-435/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_vrr@flip-basic-fastset:
    - shard-dg2-set2:     [SKIP][305] ([Intel XE#4208] / [i915#2575]) -> [SKIP][306] ([Intel XE#455]) +5 other tests skip
   [305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-434/igt@kms_vrr@flip-basic-fastset.html
   [306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-466/igt@kms_vrr@flip-basic-fastset.html

  * igt@kms_vrr@lobf:
    - shard-dg2-set2:     [SKIP][307] ([Intel XE#2168]) -> [SKIP][308] ([Intel XE#4208] / [i915#2575])
   [307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-436/igt@kms_vrr@lobf.html
   [308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@kms_vrr@lobf.html

  * igt@sriov_basic@enable-vfs-autoprobe-off:
    - shard-dg2-set2:     [SKIP][309] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][310] ([Intel XE#4208] / [i915#2575])
   [309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-464/igt@sriov_basic@enable-vfs-autoprobe-off.html
   [310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@sriov_basic@enable-vfs-autoprobe-off.html

  * igt@xe_compute_preempt@compute-preempt:
    - shard-dg2-set2:     [SKIP][311] ([Intel XE#4208]) -> [SKIP][312] ([Intel XE#1280] / [Intel XE#455])
   [311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-434/igt@xe_compute_preempt@compute-preempt.html
   [312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-466/igt@xe_compute_preempt@compute-preempt.html

  * igt@xe_configfs@survivability-mode:
    - shard-dg2-set2:     [SKIP][313] -> [SKIP][314] ([Intel XE#4208])
   [313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-432/igt@xe_configfs@survivability-mode.html
   [314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@xe_configfs@survivability-mode.html

  * igt@xe_copy_basic@mem-copy-linear-0x3fff:
    - shard-dg2-set2:     [SKIP][315] ([Intel XE#4208]) -> [SKIP][316] ([Intel XE#1123])
   [315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0x3fff.html
   [316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-435/igt@xe_copy_basic@mem-copy-linear-0x3fff.html

  * igt@xe_copy_basic@mem-copy-linear-0xfd:
    - shard-dg2-set2:     [SKIP][317] ([Intel XE#1123]) -> [SKIP][318] ([Intel XE#4208])
   [317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0xfd.html
   [318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0xfd.html

  * igt@xe_copy_basic@mem-set-linear-0x3fff:
    - shard-dg2-set2:     [SKIP][319] ([Intel XE#4208]) -> [SKIP][320] ([Intel XE#1126])
   [319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0x3fff.html
   [320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0x3fff.html

  * igt@xe_eu_stall@invalid-event-report-count:
    - shard-dg2-set2:     [SKIP][321] ([Intel XE#5626]) -> [SKIP][322] ([Intel XE#4208]) +1 other test skip
   [321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-435/igt@xe_eu_stall@invalid-event-report-count.html
   [322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@xe_eu_stall@invalid-event-report-count.html

  * igt@xe_eudebug@basic-close:
    - shard-dg2-set2:     [SKIP][323] ([Intel XE#4837]) -> [SKIP][324] ([Intel XE#4208]) +13 other tests skip
   [323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-432/igt@xe_eudebug@basic-close.html
   [324]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@xe_eudebug@basic-close.html

  * igt@xe_eudebug@vm-bind-clear-faultable:
    - shard-dg2-set2:     [SKIP][325] ([Intel XE#4208]) -> [SKIP][326] ([Intel XE#4837]) +8 other tests skip
   [325]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-434/igt@xe_eudebug@vm-bind-clear-faultable.html
   [326]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-435/igt@xe_eudebug@vm-bind-clear-faultable.html

  * igt@xe_exec_basic@multigpu-once-bindexecqueue:
    - shard-dg2-set2:     [SKIP][327] ([Intel XE#1392]) -> [SKIP][328] ([Intel XE#4208]) +1 other test skip
   [327]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-432/igt@xe_exec_basic@multigpu-once-bindexecqueue.html
   [328]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@xe_exec_basic@multigpu-once-bindexecqueue.html

  * igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm:
    - shard-dg2-set2:     [SKIP][329] ([Intel XE#288]) -> [SKIP][330] ([Intel XE#4208]) +22 other tests skip
   [329]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-432/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm.html
   [330]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm.html

  * igt@xe_exec_fault_mode@once-bindexecqueue-rebind:
    - shard-dg2-set2:     [SKIP][331] ([Intel XE#4208]) -> [SKIP][332] ([Intel XE#288]) +18 other tests skip
   [331]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-434/igt@xe_exec_fault_mode@once-bindexecqueue-rebind.html
   [332]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-466/igt@xe_exec_fault_mode@once-bindexecqueue-rebind.html

  * igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence:
    - shard-dg2-set2:     [SKIP][333] ([Intel XE#4208]) -> [SKIP][334] ([Intel XE#2360])
   [333]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-434/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html
   [334]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-466/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html

  * igt@xe_exec_system_allocator@threads-many-stride-mmap-remap-eocheck:
    - shard-dg2-set2:     [SKIP][335] ([Intel XE#4208]) -> [SKIP][336] ([Intel XE#4915]) +185 other tests skip
   [335]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-434/igt@xe_exec_system_allocator@threads-many-stride-mmap-remap-eocheck.html
   [336]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-464/igt@xe_exec_system_allocator@threads-many-stride-mmap-remap-eocheck.html

  * igt@xe_exec_system_allocator@twice-large-mmap-file-nomemset:
    - shard-dg2-set2:     [SKIP][337] ([Intel XE#4915]) -> [SKIP][338] ([Intel XE#4208]) +233 other tests skip
   [337]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-432/igt@xe_exec_system_allocator@twice-large-mmap-file-nomemset.html
   [338]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@xe_exec_system_allocator@twice-large-mmap-file-nomemset.html

  * igt@xe_huc_copy@huc_copy:
    - shard-dg2-set2:     [SKIP][339] ([Intel XE#4208]) -> [SKIP][340] ([Intel XE#255])
   [339]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-434/igt@xe_huc_copy@huc_copy.html
   [340]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-466/igt@xe_huc_copy@huc_copy.html

  * igt@xe_oa@oa-unit-exclusive-stream-sample-oa:
    - shard-dg2-set2:     [SKIP][341] ([Intel XE#4208]) -> [SKIP][342] ([Intel XE#3573]) +4 other tests skip
   [341]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-434/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
   [342]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-435/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html

  * igt@xe_oa@whitelisted-registers-userspace-config:
    - shard-dg2-set2:     [SKIP][343] ([Intel XE#3573]) -> [SKIP][344] ([Intel XE#4208]) +8 other tests skip
   [343]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-432/igt@xe_oa@whitelisted-registers-userspace-config.html
   [344]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@xe_oa@whitelisted-registers-userspace-config.html

  * igt@xe_pat@display-vs-wb-transient:
    - shard-dg2-set2:     [SKIP][345] ([Intel XE#1337]) -> [SKIP][346] ([Intel XE#4208])
   [345]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-464/igt@xe_pat@display-vs-wb-transient.html
   [346]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@xe_pat@display-vs-wb-transient.html

  * igt@xe_pat@pat-index-xe2:
    - shard-dg2-set2:     [SKIP][347] ([Intel XE#977]) -> [SKIP][348] ([Intel XE#4208])
   [347]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-436/igt@xe_pat@pat-index-xe2.html
   [348]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@xe_pat@pat-index-xe2.html

  * igt@xe_pm@d3cold-i2c:
    - shard-dg2-set2:     [SKIP][349] ([Intel XE#4208]) -> [SKIP][350] ([Intel XE#5694])
   [349]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-434/igt@xe_pm@d3cold-i2c.html
   [350]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-466/igt@xe_pm@d3cold-i2c.html

  * igt@xe_pm@d3cold-mmap-system:
    - shard-dg2-set2:     [SKIP][351] ([Intel XE#4208]) -> [SKIP][352] ([Intel XE#2284] / [Intel XE#366])
   [351]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-434/igt@xe_pm@d3cold-mmap-system.html
   [352]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-464/igt@xe_pm@d3cold-mmap-system.html

  * igt@xe_pmu@fn-engine-activity-load:
    - shard-dg2-set2:     [SKIP][353] ([Intel XE#4650]) -> [SKIP][354] ([Intel XE#4208])
   [353]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-432/igt@xe_pmu@fn-engine-activity-load.html
   [354]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@xe_pmu@fn-engine-activity-load.html

  * igt@xe_pxp@pxp-stale-bo-bind-post-rpm:
    - shard-dg2-set2:     [SKIP][355] ([Intel XE#4733]) -> [SKIP][356] ([Intel XE#4208]) +2 other tests skip
   [355]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-436/igt@xe_pxp@pxp-stale-bo-bind-post-rpm.html
   [356]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@xe_pxp@pxp-stale-bo-bind-post-rpm.html

  * igt@xe_query@multigpu-query-engines:
    - shard-dg2-set2:     [SKIP][357] ([Intel XE#944]) -> [SKIP][358] ([Intel XE#4208]) +1 other test skip
   [357]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-432/igt@xe_query@multigpu-query-engines.html
   [358]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@xe_query@multigpu-query-engines.html

  * igt@xe_query@multigpu-query-oa-units:
    - shard-dg2-set2:     [SKIP][359] ([Intel XE#4208]) -> [SKIP][360] ([Intel XE#944]) +3 other tests skip
   [359]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-434/igt@xe_query@multigpu-query-oa-units.html
   [360]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-435/igt@xe_query@multigpu-query-oa-units.html

  * igt@xe_render_copy@render-stress-0-copies:
    - shard-dg2-set2:     [SKIP][361] ([Intel XE#4814]) -> [SKIP][362] ([Intel XE#4208])
   [361]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-432/igt@xe_render_copy@render-stress-0-copies.html
   [362]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@xe_render_copy@render-stress-0-copies.html

  * igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling:
    - shard-dg2-set2:     [SKIP][363] ([Intel XE#4208]) -> [SKIP][364] ([Intel XE#4130]) +2 other tests skip
   [363]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-434/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html
   [364]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-464/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html

  * igt@xe_sriov_flr@flr-vf1-clear:
    - shard-dg2-set2:     [SKIP][365] ([Intel XE#3342]) -> [SKIP][366] ([Intel XE#4208]) +1 other test skip
   [365]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-436/igt@xe_sriov_flr@flr-vf1-clear.html
   [366]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-434/igt@xe_sriov_flr@flr-vf1-clear.html

  * igt@xe_sriov_flr@flr-vfs-parallel:
    - shard-dg2-set2:     [SKIP][367] ([Intel XE#4208]) -> [SKIP][368] ([Intel XE#4273])
   [367]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945/shard-dg2-434/igt@xe_sriov_flr@flr-vfs-parallel.html
   [368]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153630v1/shard-dg2-464/igt@xe_sriov_flr@flr-vfs-parallel.html

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

  [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
  [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
  [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
  [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
  [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
  [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
  [Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
  [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
  [Intel XE#1450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1450
  [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#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
  [Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
  [Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948
  [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
  [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#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
  [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [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#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
  [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
  [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
  [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
  [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
  [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
  [Intel XE#2568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2568
  [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
  [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
  [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
  [Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
  [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
  [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
  [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
  [Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
  [Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
  [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
  [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
  [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
  [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
  [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
  [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
  [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
  [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
  [Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
  [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
  [Intel XE#379]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/379
  [Intel XE#3868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868
  [Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908
  [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
  [Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
  [Intel XE#4208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4208
  [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
  [Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
  [Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
  [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
  [Intel XE#4356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4356
  [Intel XE#4367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4367
  [Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417
  [Intel XE#4418]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4418
  [Intel XE#4504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4504
  [Intel XE#4518]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4518
  [Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
  [Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
  [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
  [Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
  [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
  [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
  [Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
  [Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
  [Intel XE#5503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5503
  [Intel XE#5507]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5507
  [Intel XE#5626]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5626
  [Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694
  [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
  [Intel XE#5890]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5890
  [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
  [Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
  [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
  [Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
  [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
  [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575


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

  * Linux: xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945 -> xe-pw-153630v1

  IGT_8512: 8512
  xe-3630-12bdbc7687846f438afff8bfdc89873b3cd95945: 12bdbc7687846f438afff8bfdc89873b3cd95945
  xe-pw-153630v1: 153630v1

== Logs ==

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

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

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

* Re: [PATCH 01/20] drm/i915/hdmi: use generic poll_timeout_us() instead of __wait_for()
  2025-08-28 12:20 ` [PATCH 01/20] drm/i915/hdmi: use generic poll_timeout_us() instead of __wait_for() Jani Nikula
@ 2025-09-03 13:29   ` Hogander, Jouni
  2025-09-04 11:26     ` Jani Nikula
  0 siblings, 1 reply; 47+ messages in thread
From: Hogander, Jouni @ 2025-09-03 13:29 UTC (permalink / raw)
  To: intel-xe@lists.freedesktop.org, Nikula, Jani,
	intel-gfx@lists.freedesktop.org
  Cc: ville.syrjala@linux.intel.com, Kandpal,  Suraj

On Thu, 2025-08-28 at 15:20 +0300, Jani Nikula wrote:
> Prefer generic poll helpers over i915 custom helpers.
> 
> The functional change is losing the exponentially growing sleep of
> __wait_for(), which used to be 1, 2, 4, and 8 ms in this particular
> case.
> 
> Use an arbitrary constant 4 ms sleep instead. The timeout remains,
> varying between 20 ms and 3000 ms.
> 
> Cc: Suraj Kandpal <suraj.kandpal@intel.com>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>

Reviewed-by: Jouni Högander <jouni.hogander@intel.com>

> ---
>  drivers/gpu/drm/i915/display/intel_hdmi.c | 10 +++++-----
>  1 file changed, 5 insertions(+), 5 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_hdmi.c
> b/drivers/gpu/drm/i915/display/intel_hdmi.c
> index cbee628eb26b..09111e6d1d20 100644
> --- a/drivers/gpu/drm/i915/display/intel_hdmi.c
> +++ b/drivers/gpu/drm/i915/display/intel_hdmi.c
> @@ -29,6 +29,7 @@
>  #include <linux/delay.h>
>  #include <linux/hdmi.h>
>  #include <linux/i2c.h>
> +#include <linux/iopoll.h>
>  #include <linux/slab.h>
>  #include <linux/string_helpers.h>
>  
> @@ -1689,11 +1690,10 @@ intel_hdmi_hdcp2_wait_for_msg(struct
> intel_digital_port *dig_port,
>  	if (timeout < 0)
>  		return timeout;
>  
> -	ret = __wait_for(ret =
> hdcp2_detect_msg_availability(dig_port,
> -							     msg_id,
> &msg_ready,
> -							    
> &msg_sz),
> -			 !ret && msg_ready && msg_sz, timeout *
> 1000,
> -			 1000, 5 * 1000);
> +	ret = poll_timeout_us(ret =
> hdcp2_detect_msg_availability(dig_port, msg_id,
> +								 
> &msg_ready, &msg_sz),
> +			      !ret && msg_ready && msg_sz,
> +			      4000, timeout * 1000, false);
>  	if (ret)
>  		drm_dbg_kms(display->drm,
>  			    "msg_id: %d, ret: %d, timeout: %d\n",


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

* Re: [PATCH 02/20] drm/i915/hdcp: use generic poll_timeout_us() instead of __wait_for()
  2025-08-28 12:20 ` [PATCH 02/20] drm/i915/hdcp: " Jani Nikula
@ 2025-09-03 13:42   ` Hogander, Jouni
  0 siblings, 0 replies; 47+ messages in thread
From: Hogander, Jouni @ 2025-09-03 13:42 UTC (permalink / raw)
  To: intel-xe@lists.freedesktop.org, Nikula, Jani,
	intel-gfx@lists.freedesktop.org
  Cc: ville.syrjala@linux.intel.com, Kandpal,  Suraj

On Thu, 2025-08-28 at 15:20 +0300, Jani Nikula wrote:
> Prefer generic poll helpers over i915 custom helpers.
> 
> The functional change is losing the exponentially growing sleep of
> __wait_for(), which used to be 1, 2, 4, ... 64, and 128 ms in this
> particular case.
> 
> Use an arbitrary 100 ms sleep instead. The timeout remains at 5000
> ms.
> 
> Cc: Suraj Kandpal <suraj.kandpal@intel.com>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>

Reviewed-by: Jouni Högander <jouni.hogander@intel.com>
> ---
>  drivers/gpu/drm/i915/display/intel_hdcp.c | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_hdcp.c
> b/drivers/gpu/drm/i915/display/intel_hdcp.c
> index 42202c8bb066..0c98e50501a6 100644
> --- a/drivers/gpu/drm/i915/display/intel_hdcp.c
> +++ b/drivers/gpu/drm/i915/display/intel_hdcp.c
> @@ -11,6 +11,7 @@
>  #include <linux/component.h>
>  #include <linux/debugfs.h>
>  #include <linux/i2c.h>
> +#include <linux/iopoll.h>
>  #include <linux/random.h>
>  
>  #include <drm/display/drm_hdcp_helper.h>
> @@ -326,10 +327,9 @@ static int intel_hdcp_poll_ksv_fifo(struct
> intel_digital_port *dig_port,
>  	bool ksv_ready;
>  
>  	/* Poll for ksv list ready (spec says max time allowed is
> 5s) */
> -	ret = __wait_for(read_ret = shim->read_ksv_ready(dig_port,
> -							
> &ksv_ready),
> -			 read_ret || ksv_ready, 5 * 1000 * 1000,
> 1000,
> -			 100 * 1000);
> +	ret = poll_timeout_us(read_ret = shim-
> >read_ksv_ready(dig_port, &ksv_ready),
> +			      read_ret || ksv_ready,
> +			      100 * 1000, 5 * 1000 * 1000, false);
>  	if (ret)
>  		return ret;
>  	if (read_ret)


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

* Re: [PATCH 03/20] drm/i915/hdcp: use generic poll_timeout_us() instead of wait_for()
  2025-08-28 12:20 ` [PATCH 03/20] drm/i915/hdcp: use generic poll_timeout_us() instead of wait_for() Jani Nikula
@ 2025-09-04  4:14   ` Hogander, Jouni
  0 siblings, 0 replies; 47+ messages in thread
From: Hogander, Jouni @ 2025-09-04  4:14 UTC (permalink / raw)
  To: intel-xe@lists.freedesktop.org, Nikula, Jani,
	intel-gfx@lists.freedesktop.org
  Cc: ville.syrjala@linux.intel.com

On Thu, 2025-08-28 at 15:20 +0300, Jani Nikula wrote:
> Prefer generic poll helpers over i915 custom helpers.
> 
> The functional change is losing the exponentially growing sleep of
> wait_for(), which used to be 10, 20, 40, ..., 640, and 1280 us.
> 
> Use an arbitrary constant 100 us sleep instead. The timeout remains
> at 1
> ms.
> 
> While at it, use the last failing value for debug logging instead of
> reading it again.
> 
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
> ---
>  drivers/gpu/drm/i915/display/intel_hdcp.c | 17 ++++++++++-------
>  1 file changed, 10 insertions(+), 7 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_hdcp.c
> b/drivers/gpu/drm/i915/display/intel_hdcp.c
> index 0c98e50501a6..d6a105959d26 100644
> --- a/drivers/gpu/drm/i915/display/intel_hdcp.c
> +++ b/drivers/gpu/drm/i915/display/intel_hdcp.c
> @@ -817,6 +817,7 @@ static int intel_hdcp_auth(struct intel_connector
> *connector)
>  	enum port port = dig_port->base.port;
>  	unsigned long r0_prime_gen_start;
>  	int ret, i, tries = 2;
> +	u32 val;
>  	union {
>  		u32 reg[2];
>  		u8 shim[DRM_HDCP_AN_LEN];
> @@ -905,8 +906,10 @@ static int intel_hdcp_auth(struct
> intel_connector *connector)
>  		       HDCP_CONF_AUTH_AND_ENC);
>  
>  	/* Wait for R0 ready */
> -	if (wait_for(intel_de_read(display, HDCP_STATUS(display,
> cpu_transcoder, port)) &
> -		     (HDCP_STATUS_R0_READY | HDCP_STATUS_ENC), 1)) {
> +	ret = poll_timeout_us(val = intel_de_read(display,
> HDCP_STATUS(display, cpu_transcoder, port)),
> +			      val & (HDCP_STATUS_R0_READY |
> HDCP_STATUS_ENC),
> +			      100, 1000, false);
> +	if (ret) {
>  		drm_err(display->drm, "Timed out waiting for R0
> ready\n");
>  		return -ETIMEDOUT;

You can return ret here?

Anyways:

Reviewed-by: Jouni Högander <jouni.hogander@intel.com>

>  	}
> @@ -938,16 +941,16 @@ static int intel_hdcp_auth(struct
> intel_connector *connector)
>  			       ri.reg);
>  
>  		/* Wait for Ri prime match */
> -		if (!wait_for(intel_de_read(display,
> HDCP_STATUS(display, cpu_transcoder, port)) &
> -			      (HDCP_STATUS_RI_MATCH |
> HDCP_STATUS_ENC), 1))
> +		ret = poll_timeout_us(val = intel_de_read(display,
> HDCP_STATUS(display, cpu_transcoder, port)),
> +				      val & (HDCP_STATUS_RI_MATCH |
> HDCP_STATUS_ENC),
> +				      100, 1000, false);
> +		if (!ret)
>  			break;
>  	}
>  
>  	if (i == tries) {
>  		drm_dbg_kms(display->drm,
> -			    "Timed out waiting for Ri prime match
> (%x)\n",
> -			    intel_de_read(display,
> -					  HDCP_STATUS(display,
> cpu_transcoder, port)));
> +			    "Timed out waiting for Ri prime match
> (%x)\n", val);
>  		return -ETIMEDOUT;
>  	}
>  


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

* Re: [PATCH 04/20] drm/i915/dsi: use generic poll_timeout_us() instead of wait_for_us()
  2025-08-28 12:20 ` [PATCH 04/20] drm/i915/dsi: use generic poll_timeout_us() instead of wait_for_us() Jani Nikula
@ 2025-09-04  4:27   ` Hogander, Jouni
  0 siblings, 0 replies; 47+ messages in thread
From: Hogander, Jouni @ 2025-09-04  4:27 UTC (permalink / raw)
  To: intel-xe@lists.freedesktop.org, Nikula, Jani,
	intel-gfx@lists.freedesktop.org
  Cc: ville.syrjala@linux.intel.com

On Thu, 2025-08-28 at 15:20 +0300, Jani Nikula wrote:
> Prefer generic poll helpers over i915 custom helpers.
> 
> The sleep and timeout remain the same as for wait_for_us().
> 
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>

Reviewed-by: Jouni Högander <jouni.hogander@intel.com>

> ---
>  drivers/gpu/drm/i915/display/icl_dsi.c | 18 ++++++++++++++----
>  1 file changed, 14 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/display/icl_dsi.c
> b/drivers/gpu/drm/i915/display/icl_dsi.c
> index 44310984bb57..37faa8f19f6e 100644
> --- a/drivers/gpu/drm/i915/display/icl_dsi.c
> +++ b/drivers/gpu/drm/i915/display/icl_dsi.c
> @@ -25,6 +25,8 @@
>   *   Jani Nikula <jani.nikula@intel.com>
>   */
>  
> +#include <linux/iopoll.h>
> +
>  #include <drm/display/drm_dsc_helper.h>
>  #include <drm/drm_atomic_helper.h>
>  #include <drm/drm_fixed.h>
> @@ -72,8 +74,12 @@ static int payload_credits_available(struct
> intel_display *display,
>  static bool wait_for_header_credits(struct intel_display *display,
>  				    enum transcoder dsi_trans, int
> hdr_credit)
>  {
> -	if (wait_for_us(header_credits_available(display, dsi_trans)
> >=
> -			hdr_credit, 100)) {
> +	int ret, available;
> +
> +	ret = poll_timeout_us(available =
> header_credits_available(display, dsi_trans),
> +			      available >= hdr_credit,
> +			      10, 100, false);
> +	if (ret) {
>  		drm_err(display->drm, "DSI header credits not
> released\n");
>  		return false;
>  	}
> @@ -84,8 +90,12 @@ static bool wait_for_header_credits(struct
> intel_display *display,
>  static bool wait_for_payload_credits(struct intel_display *display,
>  				     enum transcoder dsi_trans, int
> payld_credit)
>  {
> -	if (wait_for_us(payload_credits_available(display,
> dsi_trans) >=
> -			payld_credit, 100)) {
> +	int ret, available;
> +
> +	ret = poll_timeout_us(available =
> payload_credits_available(display, dsi_trans),
> +			      available >= payld_credit,
> +			      10, 100, false);
> +	if (ret) {
>  		drm_err(display->drm, "DSI payload credits not
> released\n");
>  		return false;
>  	}


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

* Re: [PATCH 05/20] drm/i915/dsi-pll: use generic poll_timeout_us() instead of wait_for()
  2025-08-28 12:20 ` [PATCH 05/20] drm/i915/dsi-pll: use generic poll_timeout_us() instead of wait_for() Jani Nikula
@ 2025-09-04  4:34   ` Hogander, Jouni
  0 siblings, 0 replies; 47+ messages in thread
From: Hogander, Jouni @ 2025-09-04  4:34 UTC (permalink / raw)
  To: intel-xe@lists.freedesktop.org, Nikula, Jani,
	intel-gfx@lists.freedesktop.org
  Cc: ville.syrjala@linux.intel.com

On Thu, 2025-08-28 at 15:20 +0300, Jani Nikula wrote:
> Prefer generic poll helpers over i915 custom helpers.
> 
> The functional change is losing the exponentially growing sleep of
> wait_for(), which used to be 10, 20, 40, ..., 640, and 1280 us.
> 
> Use an arbitrary constant 500 us sleep instead. The timeout remains
> at
> 20 ms.
> 
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>

Reviewed-by: Jouni Högander <jouni.hogander@intel.com>

> ---
>  drivers/gpu/drm/i915/display/vlv_dsi_pll.c | 11 +++++++----
>  1 file changed, 7 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/display/vlv_dsi_pll.c
> b/drivers/gpu/drm/i915/display/vlv_dsi_pll.c
> index 83afe1315e96..f078b9cda96c 100644
> --- a/drivers/gpu/drm/i915/display/vlv_dsi_pll.c
> +++ b/drivers/gpu/drm/i915/display/vlv_dsi_pll.c
> @@ -25,12 +25,12 @@
>   *	Yogesh Mohan Marimuthu <yogesh.mohan.marimuthu@intel.com>
>   */
>  
> +#include <linux/iopoll.h>
>  #include <linux/kernel.h>
>  #include <linux/string_helpers.h>
>  
>  #include <drm/drm_print.h>
>  
> -#include "i915_utils.h"
>  #include "intel_de.h"
>  #include "intel_display_types.h"
>  #include "intel_dsi.h"
> @@ -214,6 +214,8 @@ void vlv_dsi_pll_enable(struct intel_encoder
> *encoder,
>  			const struct intel_crtc_state *config)
>  {
>  	struct intel_display *display = to_intel_display(encoder);
> +	u32 val;
> +	int ret;
>  
>  	drm_dbg_kms(display->drm, "\n");
>  
> @@ -231,9 +233,10 @@ void vlv_dsi_pll_enable(struct intel_encoder
> *encoder,
>  
>  	vlv_cck_write(display->drm, CCK_REG_DSI_PLL_CONTROL, config-
> >dsi_pll.ctrl);
>  
> -	if (wait_for(vlv_cck_read(display->drm,
> CCK_REG_DSI_PLL_CONTROL) &
> -						DSI_PLL_LOCK, 20)) {
> -
> +	ret = poll_timeout_us(val = vlv_cck_read(display->drm,
> CCK_REG_DSI_PLL_CONTROL),
> +			      val & DSI_PLL_LOCK,
> +			      500, 20 * 1000, false);
> +	if (ret) {
>  		vlv_cck_put(display->drm);
>  		drm_err(display->drm, "DSI PLL lock failed\n");
>  		return;


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

* Re: [PATCH 06/20] drm/i915/gmbus: use generic poll_timeout*() instead of wait_for*()
  2025-08-28 12:20 ` [PATCH 06/20] drm/i915/gmbus: use generic poll_timeout*() instead of wait_for*() Jani Nikula
@ 2025-09-04  4:53   ` Hogander, Jouni
  0 siblings, 0 replies; 47+ messages in thread
From: Hogander, Jouni @ 2025-09-04  4:53 UTC (permalink / raw)
  To: intel-xe@lists.freedesktop.org, Nikula, Jani,
	intel-gfx@lists.freedesktop.org
  Cc: ville.syrjala@linux.intel.com

On Thu, 2025-08-28 at 15:20 +0300, Jani Nikula wrote:
> Prefer generic poll helpers over i915 custom helpers.
> 
> The "two tier" wait_for_us() + wait_for() combination appeared
> without
> much explanation in commit 4e6c2d58ba86 ("drm/i915: Take forcewake
> once
> for the entire GMBUS transaction"). Try to mimic roughly the same
> with
> the generic helpers.
> 
> wait_for_us() with 10 us or shorter timeouts ends up in
> _wait_for_atomic(). Thus use poll_timeout_us_atomic() for the first
> try,
> with the same 2 us timeout and no sleep.
> 
> For the fallback, the functional change is losing the exponentially
> growing sleep of wait_for(), which used to be 10, 20, 40, ..., 640,
> and
> 1280 us. Use an arbitrary constant 500 us sleep instead. The timeout
> remains at 50 ms.
> 
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>

Reviewed-by: Jouni Högander <jouni.hogander@intel.com>

> ---
>  drivers/gpu/drm/i915/display/intel_gmbus.c | 13 ++++++++-----
>  1 file changed, 8 insertions(+), 5 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_gmbus.c
> b/drivers/gpu/drm/i915/display/intel_gmbus.c
> index 063335053d13..358210adb8f8 100644
> --- a/drivers/gpu/drm/i915/display/intel_gmbus.c
> +++ b/drivers/gpu/drm/i915/display/intel_gmbus.c
> @@ -30,13 +30,13 @@
>  #include <linux/export.h>
>  #include <linux/i2c-algo-bit.h>
>  #include <linux/i2c.h>
> +#include <linux/iopoll.h>
>  
>  #include <drm/display/drm_hdcp_helper.h>
>  
>  #include "i915_drv.h"
>  #include "i915_irq.h"
>  #include "i915_reg.h"
> -#include "i915_utils.h"
>  #include "intel_de.h"
>  #include "intel_display_regs.h"
>  #include "intel_display_types.h"
> @@ -415,11 +415,14 @@ static int gmbus_wait(struct intel_display
> *display, u32 status, u32 irq_en)
>  	intel_de_write_fw(display, GMBUS4(display), irq_en);
>  
>  	status |= GMBUS_SATOER;
> -	ret = wait_for_us((gmbus2 = intel_de_read_fw(display,
> GMBUS2(display))) & status,
> -			  2);
> +
> +	ret = poll_timeout_us_atomic(gmbus2 =
> intel_de_read_fw(display, GMBUS2(display)),
> +				     gmbus2 & status,
> +				     0, 2, false);
>  	if (ret)
> -		ret = wait_for((gmbus2 = intel_de_read_fw(display,
> GMBUS2(display))) & status,
> -			       50);
> +		ret = poll_timeout_us(gmbus2 =
> intel_de_read_fw(display, GMBUS2(display)),
> +				      gmbus2 & status,
> +				      500, 50 * 1000, false);
>  
>  	intel_de_write_fw(display, GMBUS4(display), 0);
>  	remove_wait_queue(&display->gmbus.wait_queue, &wait);


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

* Re: [PATCH 07/20] drm/i915/wm: use generic poll_timeout_us() instead of wait_for()
  2025-08-28 12:20 ` [PATCH 07/20] drm/i915/wm: use generic poll_timeout_us() instead of wait_for() Jani Nikula
@ 2025-09-04  5:01   ` Hogander, Jouni
  0 siblings, 0 replies; 47+ messages in thread
From: Hogander, Jouni @ 2025-09-04  5:01 UTC (permalink / raw)
  To: intel-xe@lists.freedesktop.org, Nikula, Jani,
	intel-gfx@lists.freedesktop.org
  Cc: ville.syrjala@linux.intel.com

On Thu, 2025-08-28 at 15:20 +0300, Jani Nikula wrote:
> Prefer generic poll helpers over i915 custom helpers.
> 
> The functional change is losing the exponentially growing sleep of
> wait_for(), which used to be 10, 20, 40, ..., 640, and 1280 us.
> 
> Use an arbitrary constant 500 us sleep instead. The timeout remains
> at 3
> ms.
> 
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>

Reviewed-by: Jouni Högander <jouni.hogander@intel.com>
> ---
>  drivers/gpu/drm/i915/display/i9xx_wm.c | 16 ++++++++++++----
>  1 file changed, 12 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/display/i9xx_wm.c
> b/drivers/gpu/drm/i915/display/i9xx_wm.c
> index 591acce2a4b1..060aff765994 100644
> --- a/drivers/gpu/drm/i915/display/i9xx_wm.c
> +++ b/drivers/gpu/drm/i915/display/i9xx_wm.c
> @@ -3,6 +3,8 @@
>   * Copyright © 2023 Intel Corporation
>   */
>  
> +#include <linux/iopoll.h>
> +
>  #include "soc/intel_dram.h"
>  
>  #include "i915_drv.h"
> @@ -112,6 +114,7 @@ static const struct cxsr_latency
> *pnv_get_cxsr_latency(struct intel_display *dis
>  static void chv_set_memory_dvfs(struct intel_display *display, bool
> enable)
>  {
>  	u32 val;
> +	int ret;
>  
>  	vlv_punit_get(display->drm);
>  
> @@ -124,8 +127,10 @@ static void chv_set_memory_dvfs(struct
> intel_display *display, bool enable)
>  	val |= FORCE_DDR_FREQ_REQ_ACK;
>  	vlv_punit_write(display->drm, PUNIT_REG_DDR_SETUP2, val);
>  
> -	if (wait_for((vlv_punit_read(display->drm,
> PUNIT_REG_DDR_SETUP2) &
> -		      FORCE_DDR_FREQ_REQ_ACK) == 0, 3))
> +	ret = poll_timeout_us(val = vlv_punit_read(display->drm,
> PUNIT_REG_DDR_SETUP2),
> +			      (val & FORCE_DDR_FREQ_REQ_ACK) == 0,
> +			      500, 3000, false);
> +	if (ret)
>  		drm_err(display->drm,
>  			"timed out waiting for Punit DDR DVFS
> request\n");
>  
> @@ -3905,6 +3910,7 @@ static void vlv_wm_get_hw_state(struct
> intel_display *display)
>  	struct vlv_wm_values *wm = &display->wm.vlv;
>  	struct intel_crtc *crtc;
>  	u32 val;
> +	int ret;
>  
>  	vlv_read_wm_values(display, wm);
>  
> @@ -3931,8 +3937,10 @@ static void vlv_wm_get_hw_state(struct
> intel_display *display)
>  		val |= FORCE_DDR_FREQ_REQ_ACK;
>  		vlv_punit_write(display->drm, PUNIT_REG_DDR_SETUP2,
> val);
>  
> -		if (wait_for((vlv_punit_read(display->drm,
> PUNIT_REG_DDR_SETUP2) &
> -			      FORCE_DDR_FREQ_REQ_ACK) == 0, 3)) {
> +		ret = poll_timeout_us(val = vlv_punit_read(display-
> >drm, PUNIT_REG_DDR_SETUP2),
> +				      (val & FORCE_DDR_FREQ_REQ_ACK)
> == 0,
> +				      500, 3000, false);
> +		if (ret) {
>  			drm_dbg_kms(display->drm,
>  				    "Punit not acking DDR DVFS
> request, "
>  				    "assuming DDR DVFS is
> disabled\n");


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

* Re: [PATCH 08/20] drm/i915/cdclk: use generic poll_timeout_us() instead of wait_for()
  2025-08-28 12:20 ` [PATCH 08/20] drm/i915/cdclk: " Jani Nikula
@ 2025-09-04  5:45   ` Hogander, Jouni
  0 siblings, 0 replies; 47+ messages in thread
From: Hogander, Jouni @ 2025-09-04  5:45 UTC (permalink / raw)
  To: intel-xe@lists.freedesktop.org, Nikula, Jani,
	intel-gfx@lists.freedesktop.org
  Cc: ville.syrjala@linux.intel.com

On Thu, 2025-08-28 at 15:20 +0300, Jani Nikula wrote:
> Prefer generic poll helpers over i915 custom helpers.
> 
> The functional change is losing the exponentially growing sleep of
> wait_for(), which used to be 10, 20, 40, ..., 640, and 1280 us.
> 
> Use an arbitrary constant 500 us sleep instead. The timeout remains
> at
> 50 ms.
> 
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>

Reviewed-by: Jouni Högander <jouni.hogander@intel.com>

> ---
>  drivers/gpu/drm/i915/display/intel_cdclk.c | 37 ++++++++++++--------
> --
>  1 file changed, 20 insertions(+), 17 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_cdclk.c
> b/drivers/gpu/drm/i915/display/intel_cdclk.c
> index d7ba3970e1e9..9725eebe5706 100644
> --- a/drivers/gpu/drm/i915/display/intel_cdclk.c
> +++ b/drivers/gpu/drm/i915/display/intel_cdclk.c
> @@ -22,6 +22,7 @@
>   */
>  
>  #include <linux/debugfs.h>
> +#include <linux/iopoll.h>
>  #include <linux/time.h>
>  
>  #include <drm/drm_fixed.h>
> @@ -673,6 +674,7 @@ static void vlv_set_cdclk(struct intel_display
> *display,
>  	int cdclk = cdclk_config->cdclk;
>  	u32 val, cmd = cdclk_config->voltage_level;
>  	intel_wakeref_t wakeref;
> +	int ret;
>  
>  	switch (cdclk) {
>  	case 400000:
> @@ -703,12 +705,12 @@ static void vlv_set_cdclk(struct intel_display
> *display,
>  	val &= ~DSPFREQGUAR_MASK;
>  	val |= (cmd << DSPFREQGUAR_SHIFT);
>  	vlv_punit_write(display->drm, PUNIT_REG_DSPSSPM, val);
> -	if (wait_for((vlv_punit_read(display->drm,
> PUNIT_REG_DSPSSPM) &
> -		      DSPFREQSTAT_MASK) == (cmd <<
> DSPFREQSTAT_SHIFT),
> -		     50)) {
> -		drm_err(display->drm,
> -			"timed out waiting for CDclk change\n");
> -	}
> +
> +	ret = poll_timeout_us(val = vlv_punit_read(display->drm,
> PUNIT_REG_DSPSSPM),
> +			      (val & DSPFREQSTAT_MASK) == (cmd <<
> DSPFREQSTAT_SHIFT),
> +			      500, 50 * 1000, false);
> +	if (ret)
> +		drm_err(display->drm, "timed out waiting for CDCLK
> change\n");
>  
>  	if (cdclk == 400000) {
>  		u32 divider;
> @@ -722,11 +724,11 @@ static void vlv_set_cdclk(struct intel_display
> *display,
>  		val |= divider;
>  		vlv_cck_write(display->drm,
> CCK_DISPLAY_CLOCK_CONTROL, val);
>  
> -		if (wait_for((vlv_cck_read(display->drm,
> CCK_DISPLAY_CLOCK_CONTROL) &
> -			      CCK_FREQUENCY_STATUS) == (divider <<
> CCK_FREQUENCY_STATUS_SHIFT),
> -			     50))
> -			drm_err(display->drm,
> -				"timed out waiting for CDclk
> change\n");
> +		ret = poll_timeout_us(val = vlv_cck_read(display-
> >drm, CCK_DISPLAY_CLOCK_CONTROL),
> +				      (val & CCK_FREQUENCY_STATUS)
> == (divider << CCK_FREQUENCY_STATUS_SHIFT),
> +				      500, 50 * 1000, false);
> +		if (ret)
> +			drm_err(display->drm, "timed out waiting for
> CDCLK change\n");
>  	}
>  
>  	/* adjust self-refresh exit latency value */
> @@ -762,6 +764,7 @@ static void chv_set_cdclk(struct intel_display
> *display,
>  	int cdclk = cdclk_config->cdclk;
>  	u32 val, cmd = cdclk_config->voltage_level;
>  	intel_wakeref_t wakeref;
> +	int ret;
>  
>  	switch (cdclk) {
>  	case 333333:
> @@ -787,12 +790,12 @@ static void chv_set_cdclk(struct intel_display
> *display,
>  	val &= ~DSPFREQGUAR_MASK_CHV;
>  	val |= (cmd << DSPFREQGUAR_SHIFT_CHV);
>  	vlv_punit_write(display->drm, PUNIT_REG_DSPSSPM, val);
> -	if (wait_for((vlv_punit_read(display->drm,
> PUNIT_REG_DSPSSPM) &
> -		      DSPFREQSTAT_MASK_CHV) == (cmd <<
> DSPFREQSTAT_SHIFT_CHV),
> -		     50)) {
> -		drm_err(display->drm,
> -			"timed out waiting for CDclk change\n");
> -	}
> +
> +	ret = poll_timeout_us(val = vlv_punit_read(display->drm,
> PUNIT_REG_DSPSSPM),
> +			      (val & DSPFREQSTAT_MASK_CHV) == (cmd
> << DSPFREQSTAT_SHIFT_CHV),
> +			      500, 50 * 1000, false);
> +	if (ret)
> +		drm_err(display->drm, "timed out waiting for CDCLK
> change\n");
>  
>  	vlv_punit_put(display->drm);
>  


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

* Re: [PATCH 09/20] drm/i915/power: use generic poll_timeout_us() instead of wait_for()
  2025-08-28 12:20 ` [PATCH 09/20] drm/i915/power: " Jani Nikula
@ 2025-09-04  5:47   ` Hogander, Jouni
  0 siblings, 0 replies; 47+ messages in thread
From: Hogander, Jouni @ 2025-09-04  5:47 UTC (permalink / raw)
  To: intel-xe@lists.freedesktop.org, Nikula, Jani,
	intel-gfx@lists.freedesktop.org
  Cc: ville.syrjala@linux.intel.com

On Thu, 2025-08-28 at 15:20 +0300, Jani Nikula wrote:
> Prefer generic poll helpers over i915 custom helpers.
> 
> The functional change is losing the exponentially growing sleep of
> wait_for(), which used to be 10, 20, 40, ..., 640, and 1280 us.
> 
> Use an arbitrary constant 100 us sleep instead. The timeout remains
> at 1
> ms.
> 
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>

Reviewed-by: Jouni Högander <jouni.hogander@intel.com>

> ---
>  drivers/gpu/drm/i915/display/intel_display_power.c | 7 +++++--
>  1 file changed, 5 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_display_power.c
> b/drivers/gpu/drm/i915/display/intel_display_power.c
> index d1d3b6f89e2a..7340d5a71673 100644
> --- a/drivers/gpu/drm/i915/display/intel_display_power.c
> +++ b/drivers/gpu/drm/i915/display/intel_display_power.c
> @@ -3,6 +3,7 @@
>   * Copyright © 2019 Intel Corporation
>   */
>  
> +#include <linux/iopoll.h>
>  #include <linux/string_helpers.h>
>  
>  #include "soc/intel_dram.h"
> @@ -1310,8 +1311,10 @@ static void hsw_disable_lcpll(struct
> intel_display *display,
>  	hsw_write_dcomp(display, val);
>  	ndelay(100);
>  
> -	if (wait_for((hsw_read_dcomp(display) &
> -		      D_COMP_RCOMP_IN_PROGRESS) == 0, 1))
> +	ret = poll_timeout_us(val = hsw_read_dcomp(display),
> +			      (val & D_COMP_RCOMP_IN_PROGRESS) == 0,
> +			      100, 1000, false);
> +	if (ret)
>  		drm_err(display->drm, "D_COMP RCOMP still in
> progress\n");
>  
>  	if (allow_power_down) {


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

* Re: [PATCH 10/20] drm/i915/power-well: use generic poll_timeout_us() instead of wait_for() for DKL PHY
  2025-08-28 12:20 ` [PATCH 10/20] drm/i915/power-well: use generic poll_timeout_us() instead of wait_for() for DKL PHY Jani Nikula
@ 2025-09-04  5:48   ` Hogander, Jouni
  0 siblings, 0 replies; 47+ messages in thread
From: Hogander, Jouni @ 2025-09-04  5:48 UTC (permalink / raw)
  To: intel-xe@lists.freedesktop.org, Nikula, Jani,
	intel-gfx@lists.freedesktop.org
  Cc: ville.syrjala@linux.intel.com

On Thu, 2025-08-28 at 15:20 +0300, Jani Nikula wrote:
> Prefer generic poll helpers over i915 custom helpers.
> 
> The functional change is losing the exponentially growing sleep of
> wait_for(), which used to be 10, 20, 40, ..., 640, and 1280 us.
> 
> Use an arbitrary constant 100 us sleep instead. The timeout remains
> at 1
> ms.
> 
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>

Reviewed-by: Jouni Högander <jouni.hogander@intel.com>

> ---
>  .../gpu/drm/i915/display/intel_display_power_well.c | 13 +++++++++--
> --
>  1 file changed, 9 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_display_power_well.c
> b/drivers/gpu/drm/i915/display/intel_display_power_well.c
> index 31c2a07bb188..275bc2708a0e 100644
> --- a/drivers/gpu/drm/i915/display/intel_display_power_well.c
> +++ b/drivers/gpu/drm/i915/display/intel_display_power_well.c
> @@ -3,6 +3,8 @@
>   * Copyright © 2022 Intel Corporation
>   */
>  
> +#include <linux/iopoll.h>
> +
>  #include "i915_drv.h"
>  #include "i915_irq.h"
>  #include "i915_reg.h"
> @@ -528,6 +530,8 @@ icl_tc_phy_aux_power_well_enable(struct
> intel_display *display,
>  	const struct i915_power_well_regs *regs = power_well->desc-
> >ops->regs;
>  	bool is_tbt = power_well->desc->is_tc_tbt;
>  	bool timeout_expected;
> +	u32 val;
> +	int ret;
>  
>  	icl_tc_port_assert_ref_held(display, power_well, dig_port);
>  
> @@ -554,10 +558,11 @@ icl_tc_phy_aux_power_well_enable(struct
> intel_display *display,
>  
>  		tc_port =
> TGL_AUX_PW_TO_TC_PORT(i915_power_well_instance(power_well)->hsw.idx);
>  
> -		if (wait_for(intel_dkl_phy_read(display,
> DKL_CMN_UC_DW_27(tc_port)) &
> -			     DKL_CMN_UC_DW27_UC_HEALTH, 1))
> -			drm_warn(display->drm,
> -				 "Timeout waiting TC uC health\n");
> +		ret = poll_timeout_us(val =
> intel_dkl_phy_read(display, DKL_CMN_UC_DW_27(tc_port)),
> +				      val &
> DKL_CMN_UC_DW27_UC_HEALTH,
> +				      100, 1000, false);
> +		if (ret)
> +			drm_warn(display->drm, "Timeout waiting TC
> uC health\n");
>  	}
>  }
>  


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

* Re: [PATCH 11/20] drm/i915/power-well: use generic poll_timeout_us() instead of wait_for() for VLV/CHV
  2025-08-28 12:20 ` [PATCH 11/20] drm/i915/power-well: use generic poll_timeout_us() instead of wait_for() for VLV/CHV Jani Nikula
@ 2025-09-04  5:54   ` Hogander, Jouni
  0 siblings, 0 replies; 47+ messages in thread
From: Hogander, Jouni @ 2025-09-04  5:54 UTC (permalink / raw)
  To: intel-xe@lists.freedesktop.org, Nikula, Jani,
	intel-gfx@lists.freedesktop.org
  Cc: ville.syrjala@linux.intel.com

On Thu, 2025-08-28 at 15:20 +0300, Jani Nikula wrote:
> Prefer generic poll helpers over i915 custom helpers.
> 
> The functional change is losing the exponentially growing sleep of
> wait_for(), which used to be 10, 20, 40, ..., 640, and 1280 us.
> 
> Use an arbitrary constant 500 us sleep instead. The timeout remains
> at
> 100 ms.
> 
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>

Reviewed-by: Jouni Högander <jouni.hogander@intel.com>
> ---
>  .../i915/display/intel_display_power_well.c   | 29 ++++++++++-------
> --
>  1 file changed, 15 insertions(+), 14 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_display_power_well.c
> b/drivers/gpu/drm/i915/display/intel_display_power_well.c
> index 275bc2708a0e..dc1a8c297d16 100644
> --- a/drivers/gpu/drm/i915/display/intel_display_power_well.c
> +++ b/drivers/gpu/drm/i915/display/intel_display_power_well.c
> @@ -8,7 +8,6 @@
>  #include "i915_drv.h"
>  #include "i915_irq.h"
>  #include "i915_reg.h"
> -#include "i915_utils.h"
>  #include "intel_backlight_regs.h"
>  #include "intel_combo_phy.h"
>  #include "intel_combo_phy_regs.h"
> @@ -1128,6 +1127,8 @@ static void vlv_set_power_well(struct
> intel_display *display,
>  	u32 mask;
>  	u32 state;
>  	u32 ctrl;
> +	u32 val;
> +	int ret;
>  
>  	mask = PUNIT_PWRGT_MASK(pw_idx);
>  	state = enable ? PUNIT_PWRGT_PWR_ON(pw_idx) :
> @@ -1135,10 +1136,8 @@ static void vlv_set_power_well(struct
> intel_display *display,
>  
>  	vlv_punit_get(display->drm);
>  
> -#define COND \
> -	((vlv_punit_read(display->drm, PUNIT_REG_PWRGT_STATUS) &
> mask) == state)
> -
> -	if (COND)
> +	val = vlv_punit_read(display->drm, PUNIT_REG_PWRGT_STATUS);
> +	if ((val & mask) == state)
>  		goto out;
>  
>  	ctrl = vlv_punit_read(display->drm, PUNIT_REG_PWRGT_CTRL);
> @@ -1146,14 +1145,15 @@ static void vlv_set_power_well(struct
> intel_display *display,
>  	ctrl |= state;
>  	vlv_punit_write(display->drm, PUNIT_REG_PWRGT_CTRL, ctrl);
>  
> -	if (wait_for(COND, 100))
> +	ret = poll_timeout_us(val = vlv_punit_read(display->drm,
> PUNIT_REG_PWRGT_STATUS),
> +			      (val & mask) == state,
> +			      500, 100 * 1000, false);
> +	if (ret)
>  		drm_err(display->drm,
>  			"timeout setting power well state %08x
> (%08x)\n",
>  			state,
>  			vlv_punit_read(display->drm,
> PUNIT_REG_PWRGT_CTRL));
>  
> -#undef COND
> -
>  out:
>  	vlv_punit_put(display->drm);
>  }
> @@ -1717,23 +1717,24 @@ static void chv_set_pipe_power_well(struct
> intel_display *display,
>  	enum pipe pipe = PIPE_A;
>  	u32 state;
>  	u32 ctrl;
> +	int ret;
>  
>  	state = enable ? DP_SSS_PWR_ON(pipe) :
> DP_SSS_PWR_GATE(pipe);
>  
>  	vlv_punit_get(display->drm);
>  
> -#define COND \
> -	((vlv_punit_read(display->drm, PUNIT_REG_DSPSSPM) &
> DP_SSS_MASK(pipe)) == state)
> -
> -	if (COND)
> +	ctrl = vlv_punit_read(display->drm, PUNIT_REG_DSPSSPM);
> +	if ((ctrl & DP_SSS_MASK(pipe)) == state)
>  		goto out;
>  
> -	ctrl = vlv_punit_read(display->drm, PUNIT_REG_DSPSSPM);
>  	ctrl &= ~DP_SSC_MASK(pipe);
>  	ctrl |= enable ? DP_SSC_PWR_ON(pipe) :
> DP_SSC_PWR_GATE(pipe);
>  	vlv_punit_write(display->drm, PUNIT_REG_DSPSSPM, ctrl);
>  
> -	if (wait_for(COND, 100))
> +	ret = poll_timeout_us(ctrl = vlv_punit_read(display->drm,
> PUNIT_REG_DSPSSPM),
> +			      (ctrl & DP_SSS_MASK(pipe)) == state,
> +			      500, 100 * 1000, false);
> +	if (ret)
>  		drm_err(display->drm,
>  			"timeout setting power well state %08x
> (%08x)\n",
>  			state,


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

* Re: [PATCH 12/20] drm/i915/dp: use generic poll_timeout_us() instead of wait_for()
  2025-08-28 12:20 ` [PATCH 12/20] drm/i915/dp: use generic poll_timeout_us() instead of wait_for() Jani Nikula
@ 2025-09-04  6:08   ` Hogander, Jouni
  0 siblings, 0 replies; 47+ messages in thread
From: Hogander, Jouni @ 2025-09-04  6:08 UTC (permalink / raw)
  To: intel-xe@lists.freedesktop.org, Nikula, Jani,
	intel-gfx@lists.freedesktop.org
  Cc: ville.syrjala@linux.intel.com

On Thu, 2025-08-28 at 15:20 +0300, Jani Nikula wrote:
> Prefer generic poll helpers over i915 custom helpers.
> 
> The functional change is losing the exponentially growing sleep of
> wait_for(), which used to be 10, 20, 40, ..., 640, and 1280 us.
> 
> Use an arbitrary constant 1 ms sleep instead. The timeouts remain,
> being
> 500 ms or 1000 ms depending on the case.
> 
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>

Reviewed-by: Jouni Högander <jouni.hogander@intel.com>
> ---
>  drivers/gpu/drm/i915/display/intel_dp.c | 21 +++++++++++----------
>  1 file changed, 11 insertions(+), 10 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_dp.c
> b/drivers/gpu/drm/i915/display/intel_dp.c
> index bed7cba1ca68..65468c0126ff 100644
> --- a/drivers/gpu/drm/i915/display/intel_dp.c
> +++ b/drivers/gpu/drm/i915/display/intel_dp.c
> @@ -27,6 +27,7 @@
>  
>  #include <linux/export.h>
>  #include <linux/i2c.h>
> +#include <linux/iopoll.h>
>  #include <linux/log2.h>
>  #include <linux/math.h>
>  #include <linux/notifier.h>
> @@ -3878,10 +3879,11 @@ static int
> intel_dp_pcon_start_frl_training(struct intel_dp *intel_dp)
>  	if (ret < 0)
>  		return ret;
>  	/* Wait for PCON to be FRL Ready */
> -	wait_for(is_active = drm_dp_pcon_is_frl_ready(&intel_dp-
> >aux) == true, TIMEOUT_FRL_READY_MS);
> -
> -	if (!is_active)
> -		return -ETIMEDOUT;
> +	ret = poll_timeout_us(is_active =
> drm_dp_pcon_is_frl_ready(&intel_dp->aux),
> +			      is_active,
> +			      1000, TIMEOUT_FRL_READY_MS * 1000,
> false);
> +	if (ret)
> +		return ret;
>  
>  	ret = drm_dp_pcon_frl_configure_1(&intel_dp->aux,
> max_frl_bw,
>  					 
> DP_PCON_ENABLE_SEQUENTIAL_LINK);
> @@ -3898,12 +3900,11 @@ static int
> intel_dp_pcon_start_frl_training(struct intel_dp *intel_dp)
>  	 * Wait for FRL to be completed
>  	 * Check if the HDMI Link is up and active.
>  	 */
> -	wait_for(is_active =
> -		 intel_dp_pcon_is_frl_trained(intel_dp,
> max_frl_bw_mask, &frl_trained_mask),
> -		 TIMEOUT_HDMI_LINK_ACTIVE_MS);
> -
> -	if (!is_active)
> -		return -ETIMEDOUT;
> +	ret = poll_timeout_us(is_active =
> intel_dp_pcon_is_frl_trained(intel_dp, max_frl_bw_mask,
> &frl_trained_mask),
> +			      is_active,
> +			      1000, TIMEOUT_HDMI_LINK_ACTIVE_MS *
> 1000, false);
> +	if (ret)
> +		return ret;
>  
>  frl_trained:
>  	drm_dbg(display->drm, "FRL_TRAINED_MASK = %u\n",
> frl_trained_mask);


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

* Re: [PATCH 13/20] drm/i915/dp: use generic poll_timeout_us() instead of wait_for() in link training
  2025-08-28 12:20 ` [PATCH 13/20] drm/i915/dp: use generic poll_timeout_us() instead of wait_for() in link training Jani Nikula
@ 2025-09-04  6:15   ` Hogander, Jouni
  0 siblings, 0 replies; 47+ messages in thread
From: Hogander, Jouni @ 2025-09-04  6:15 UTC (permalink / raw)
  To: intel-xe@lists.freedesktop.org, Nikula, Jani,
	intel-gfx@lists.freedesktop.org
  Cc: ville.syrjala@linux.intel.com

On Thu, 2025-08-28 at 15:20 +0300, Jani Nikula wrote:
> Prefer generic poll helpers over i915 custom helpers.
> 
> The functional change is losing the exponentially growing sleep of
> wait_for(), which used to be 10, 20, 40, ..., 640, and 1280 us.
> 
> Use an arbitrary constant 500 us sleep instead. The timeout remains
> at
> 500 ms.
> 
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>

Reviewed-by: Jouni Högander <jouni.hogander@intel.com>

> ---
>  .../drm/i915/display/intel_dp_link_training.c   | 17 +++++++++++++--
> --
>  1 file changed, 13 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_dp_link_training.c
> b/drivers/gpu/drm/i915/display/intel_dp_link_training.c
> index 9d14b4e59545..27f3716bdc1f 100644
> --- a/drivers/gpu/drm/i915/display/intel_dp_link_training.c
> +++ b/drivers/gpu/drm/i915/display/intel_dp_link_training.c
> @@ -22,6 +22,7 @@
>   */
>  
>  #include <linux/debugfs.h>
> +#include <linux/iopoll.h>
>  
>  #include <drm/display/drm_dp_helper.h>
>  #include <drm/drm_print.h>
> @@ -1135,15 +1136,19 @@ void intel_dp_stop_link_train(struct intel_dp
> *intel_dp,
>  {
>  	struct intel_display *display = to_intel_display(intel_dp);
>  	struct intel_encoder *encoder = &dp_to_dig_port(intel_dp)-
> >base;
> +	int ret;
>  
>  	intel_dp->link.active = true;
>  
>  	intel_dp_program_link_training_pattern(intel_dp, crtc_state,
> DP_PHY_DPRX,
>  					      
> DP_TRAINING_PATTERN_DISABLE);
>  
> -	if (intel_dp_is_uhbr(crtc_state) &&
> -	    wait_for(intel_dp_128b132b_intra_hop(intel_dp,
> crtc_state) == 0, 500)) {
> -		lt_dbg(intel_dp, DP_PHY_DPRX, "128b/132b intra-hop
> not clearing\n");
> +	if (intel_dp_is_uhbr(crtc_state)) {
> +		ret = poll_timeout_us(ret =
> intel_dp_128b132b_intra_hop(intel_dp, crtc_state),
> +				      ret == 0,
> +				      500, 500 * 1000, false);
> +		if (ret)
> +			lt_dbg(intel_dp, DP_PHY_DPRX, "128b/132b
> intra-hop not clearing\n");
>  	}
>  
>  	intel_hpd_unblock(encoder);
> @@ -1581,8 +1586,12 @@ intel_dp_128b132b_link_train(struct intel_dp
> *intel_dp,
>  			     int lttpr_count)
>  {
>  	bool passed = false;
> +	int ret;
>  
> -	if (wait_for(intel_dp_128b132b_intra_hop(intel_dp,
> crtc_state) == 0, 500)) {
> +	ret = poll_timeout_us(ret =
> intel_dp_128b132b_intra_hop(intel_dp, crtc_state),
> +			      ret == 0,
> +			      500, 500 * 1000, false);
> +	if (ret) {
>  		lt_err(intel_dp, DP_PHY_DPRX, "128b/132b intra-hop
> not clear\n");
>  		goto out;
>  	}


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

* Re: [PATCH 14/20] drm/i915/vblank: use generic poll_timeout_us() instead of wait_for()
  2025-08-28 12:20 ` [PATCH 14/20] drm/i915/vblank: use generic poll_timeout_us() instead of wait_for() Jani Nikula
@ 2025-09-04  8:05   ` Hogander, Jouni
  0 siblings, 0 replies; 47+ messages in thread
From: Hogander, Jouni @ 2025-09-04  8:05 UTC (permalink / raw)
  To: intel-xe@lists.freedesktop.org, Nikula, Jani,
	intel-gfx@lists.freedesktop.org
  Cc: ville.syrjala@linux.intel.com

On Thu, 2025-08-28 at 15:20 +0300, Jani Nikula wrote:
> Prefer generic poll helpers over i915 custom helpers.
> 
> The functional change is losing the exponentially growing sleep of
> wait_for(), which used to be 10, 20, 40, ..., 640, and 1280 us.
> 
> Use an arbitrary constant 500 us sleep instead. The timeout remains
> at
> 100 ms.
> 
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>

Reviewed-by: Jouni Högander <jouni.hogander@intel.com>

> ---
>  drivers/gpu/drm/i915/display/intel_vblank.c | 9 ++++++++-
>  1 file changed, 8 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_vblank.c
> b/drivers/gpu/drm/i915/display/intel_vblank.c
> index 46d6db5fed11..c15234c1d96e 100644
> --- a/drivers/gpu/drm/i915/display/intel_vblank.c
> +++ b/drivers/gpu/drm/i915/display/intel_vblank.c
> @@ -3,6 +3,8 @@
>   * Copyright © 2022-2023 Intel Corporation
>   */
>  
> +#include <linux/iopoll.h>
> +
>  #include <drm/drm_vblank.h>
>  
>  #include "i915_drv.h"
> @@ -493,9 +495,14 @@ static void wait_for_pipe_scanline_moving(struct
> intel_crtc *crtc, bool state)
>  {
>  	struct intel_display *display = to_intel_display(crtc);
>  	enum pipe pipe = crtc->pipe;
> +	bool is_moving;
> +	int ret;
>  
>  	/* Wait for the display line to settle/start moving */
> -	if (wait_for(pipe_scanline_is_moving(display, pipe) ==
> state, 100))
> +	ret = poll_timeout_us(is_moving =
> pipe_scanline_is_moving(display, pipe),
> +			      is_moving == state,
> +			      500, 100 * 1000, false);
> +	if (ret)
>  		drm_err(display->drm,
>  			"pipe %c scanline %s wait timed out\n",
>  			pipe_name(pipe), str_on_off(state));


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

* Re: [PATCH 15/20] drm/i915/tc: use generic poll_timeout_us() instead of wait_for()
  2025-08-28 12:20 ` [PATCH 15/20] drm/i915/tc: " Jani Nikula
@ 2025-09-04  8:41   ` Hogander, Jouni
  0 siblings, 0 replies; 47+ messages in thread
From: Hogander, Jouni @ 2025-09-04  8:41 UTC (permalink / raw)
  To: intel-xe@lists.freedesktop.org, Nikula, Jani,
	intel-gfx@lists.freedesktop.org
  Cc: ville.syrjala@linux.intel.com

On Thu, 2025-08-28 at 15:20 +0300, Jani Nikula wrote:
> Prefer generic poll helpers over i915 custom helpers.
> 
> The functional change is losing the exponentially growing sleep of
> wait_for(), which used to be 10, 20, 40, ..., 640, and 1280 us.
> 
> Use an arbitrary constant 200 us sleep for the 5 ms timeout, and 1000
> us
> sleep for the 500 ms timeout. The timeouts remain the same.
> 
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>

Reviewed-by: Jouni Högander <jouni.hogander@intel.com>

> ---
>  drivers/gpu/drm/i915/display/intel_tc.c | 16 ++++++++++++++--
>  1 file changed, 14 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_tc.c
> b/drivers/gpu/drm/i915/display/intel_tc.c
> index 583fed5a386d..8974ffe2aabf 100644
> --- a/drivers/gpu/drm/i915/display/intel_tc.c
> +++ b/drivers/gpu/drm/i915/display/intel_tc.c
> @@ -3,6 +3,8 @@
>   * Copyright © 2019 Intel Corporation
>   */
>  
> +#include <linux/iopoll.h>
> +
>  #include <drm/drm_print.h>
>  
>  #include "i915_reg.h"
> @@ -1047,8 +1049,13 @@ static bool
>  xelpdp_tc_phy_wait_for_tcss_power(struct intel_tc_port *tc, bool
> enabled)
>  {
>  	struct intel_display *display = to_intel_display(tc-
> >dig_port);
> +	bool is_enabled;
> +	int ret;
>  
> -	if (wait_for(xelpdp_tc_phy_tcss_power_is_enabled(tc) ==
> enabled, 5)) {
> +	ret = poll_timeout_us(is_enabled =
> xelpdp_tc_phy_tcss_power_is_enabled(tc),
> +			      is_enabled == enabled,
> +			      200, 5000, false);
> +	if (ret) {
>  		drm_dbg_kms(display->drm,
>  			    "Port %s: timeout waiting for TCSS power
> to get %s\n",
>  			    str_enabled_disabled(enabled),
> @@ -1329,8 +1336,13 @@ static bool tc_phy_is_connected(struct
> intel_tc_port *tc,
>  static bool tc_phy_wait_for_ready(struct intel_tc_port *tc)
>  {
>  	struct intel_display *display = to_intel_display(tc-
> >dig_port);
> +	bool is_ready;
> +	int ret;
>  
> -	if (wait_for(tc_phy_is_ready(tc), 500)) {
> +	ret = poll_timeout_us(is_ready = tc_phy_is_ready(tc),
> +			      is_ready,
> +			      1000, 500 * 1000, false);
> +	if (ret) {
>  		drm_err(display->drm, "Port %s: timeout waiting for
> PHY ready\n",
>  			tc->port_name);
>  


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

* Re: [PATCH 16/20] drm/i915/dsb: use generic poll_timeout_us() instead of wait_for()
  2025-08-28 12:20 ` [PATCH 16/20] drm/i915/dsb: " Jani Nikula
@ 2025-09-04  8:42   ` Hogander, Jouni
  0 siblings, 0 replies; 47+ messages in thread
From: Hogander, Jouni @ 2025-09-04  8:42 UTC (permalink / raw)
  To: intel-xe@lists.freedesktop.org, Nikula, Jani,
	intel-gfx@lists.freedesktop.org
  Cc: ville.syrjala@linux.intel.com

On Thu, 2025-08-28 at 15:20 +0300, Jani Nikula wrote:
> Prefer generic poll helpers over i915 custom helpers.
> 
> The functional change is losing the exponentially growing sleep of
> wait_for(), which used to be 10, 20, 40, ..., 640, and 1280 us.
> 
> Use an arbitrary constant 100 us sleep instead. The timeout remains
> at 1
> ms.
> 
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>

Reviewed-by: Jouni Högander <jouni.hogander@intel.com>

> ---
>  drivers/gpu/drm/i915/display/intel_dsb.c | 10 ++++++++--
>  1 file changed, 8 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_dsb.c
> b/drivers/gpu/drm/i915/display/intel_dsb.c
> index 53d8ae3a70e9..dee44d45b668 100644
> --- a/drivers/gpu/drm/i915/display/intel_dsb.c
> +++ b/drivers/gpu/drm/i915/display/intel_dsb.c
> @@ -4,10 +4,11 @@
>   *
>   */
>  
> +#include <linux/iopoll.h>
> +
>  #include <drm/drm_print.h>
>  #include <drm/drm_vblank.h>
>  
> -#include "i915_utils.h"
>  #include "intel_crtc.h"
>  #include "intel_de.h"
>  #include "intel_display_regs.h"
> @@ -871,8 +872,13 @@ void intel_dsb_wait(struct intel_dsb *dsb)
>  	struct intel_crtc *crtc = dsb->crtc;
>  	struct intel_display *display = to_intel_display(crtc-
> >base.dev);
>  	enum pipe pipe = crtc->pipe;
> +	bool is_busy;
> +	int ret;
>  
> -	if (wait_for(!is_dsb_busy(display, pipe, dsb->id), 1)) {
> +	ret = poll_timeout_us(is_busy = is_dsb_busy(display, pipe,
> dsb->id),
> +			      !is_busy,
> +			      100, 1000, false);
> +	if (ret) {
>  		u32 offset = intel_dsb_buffer_ggtt_offset(&dsb-
> >dsb_buf);
>  
>  		intel_de_write_fw(display, DSB_CTRL(pipe, dsb->id),


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

* Re: [PATCH 17/20] drm/i915/lspcon: use generic poll_timeout_us() instead of wait_for()
  2025-08-28 12:20 ` [PATCH 17/20] drm/i915/lspcon: " Jani Nikula
@ 2025-09-04  8:47   ` Hogander, Jouni
  0 siblings, 0 replies; 47+ messages in thread
From: Hogander, Jouni @ 2025-09-04  8:47 UTC (permalink / raw)
  To: intel-xe@lists.freedesktop.org, Nikula, Jani,
	intel-gfx@lists.freedesktop.org
  Cc: ville.syrjala@linux.intel.com

On Thu, 2025-08-28 at 15:20 +0300, Jani Nikula wrote:
> Prefer generic poll helpers over i915 custom helpers.
> 
> The functional change is losing the exponentially growing sleep of
> wait_for(), which used to be 10, 20, 40, ..., 640, and 1280 us.
> 
> Use an arbitrary constant 5 ms sleep instead. The timeouts remain,
> being
> 400 ms or 800 ms, depending on the case.
> 
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>

Reviewed-by: Jouni Högander <jouni.hogander@intel.com>
> ---
>  drivers/gpu/drm/i915/display/intel_lspcon.c | 13 ++++++++++---
>  1 file changed, 10 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_lspcon.c
> b/drivers/gpu/drm/i915/display/intel_lspcon.c
> index abc4b562083d..d56026c4efdd 100644
> --- a/drivers/gpu/drm/i915/display/intel_lspcon.c
> +++ b/drivers/gpu/drm/i915/display/intel_lspcon.c
> @@ -23,6 +23,8 @@
>   *
>   */
>  
> +#include <linux/iopoll.h>
> +
>  #include <drm/display/drm_dp_dual_mode_helper.h>
>  #include <drm/display/drm_hdmi_helper.h>
>  #include <drm/drm_atomic_helper.h>
> @@ -181,6 +183,8 @@ static enum drm_lspcon_mode
> lspcon_wait_mode(struct intel_lspcon *lspcon,
>  	struct intel_dp *intel_dp = lspcon_to_intel_dp(lspcon);
>  	struct intel_display *display = to_intel_display(intel_dp);
>  	enum drm_lspcon_mode current_mode;
> +	int timeout_us;
> +	int ret;
>  
>  	current_mode = lspcon_get_current_mode(lspcon);
>  	if (current_mode == mode)
> @@ -189,9 +193,12 @@ static enum drm_lspcon_mode
> lspcon_wait_mode(struct intel_lspcon *lspcon,
>  	drm_dbg_kms(display->drm, "Waiting for LSPCON mode %s to
> settle\n",
>  		    lspcon_mode_name(mode));
>  
> -	wait_for((current_mode = lspcon_get_current_mode(lspcon)) ==
> mode,
> -		 lspcon_get_mode_settle_timeout(lspcon));
> -	if (current_mode != mode)
> +	timeout_us = lspcon_get_mode_settle_timeout(lspcon) * 1000;
> +
> +	ret = poll_timeout_us(current_mode =
> lspcon_get_current_mode(lspcon),
> +			      current_mode == mode,
> +			      5000, timeout_us, false);
> +	if (ret)
>  		drm_err(display->drm, "LSPCON mode hasn't
> settled\n");
>  
>  out:


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

* Re: [PATCH 18/20] drm/i915/opregion: use generic poll_timeout_us() instead of wait_for()
  2025-08-28 12:21 ` [PATCH 18/20] drm/i915/opregion: " Jani Nikula
@ 2025-09-04  9:06   ` Hogander, Jouni
  0 siblings, 0 replies; 47+ messages in thread
From: Hogander, Jouni @ 2025-09-04  9:06 UTC (permalink / raw)
  To: intel-xe@lists.freedesktop.org, Nikula, Jani,
	intel-gfx@lists.freedesktop.org
  Cc: ville.syrjala@linux.intel.com

On Thu, 2025-08-28 at 15:21 +0300, Jani Nikula wrote:
> Prefer generic poll helpers over i915 custom helpers.
> 
> The functional change is losing the exponentially growing sleep of
> wait_for(), which used to be 10, 20, 40, ..., 640, and 1280 us.
> 
> Use an arbitrary constant 1 ms sleep instead. The timeout remains,
> being
> opregion defined, 50 ms by default, and 1500 ms at most.
> 
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>

Reviewed-by: Jouni Högander <jouni.hogander@intel.com>

> ---
>  drivers/gpu/drm/i915/display/intel_opregion.c | 10 ++++++----
>  1 file changed, 6 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_opregion.c
> b/drivers/gpu/drm/i915/display/intel_opregion.c
> index 380314a3b4d9..cbc220310813 100644
> --- a/drivers/gpu/drm/i915/display/intel_opregion.c
> +++ b/drivers/gpu/drm/i915/display/intel_opregion.c
> @@ -28,13 +28,13 @@
>  #include <linux/acpi.h>
>  #include <linux/debugfs.h>
>  #include <linux/dmi.h>
> +#include <linux/iopoll.h>
>  #include <acpi/video.h>
>  
>  #include <drm/drm_edid.h>
>  #include <drm/drm_file.h>
>  #include <drm/drm_print.h>
>  
> -#include "i915_utils.h"
>  #include "intel_acpi.h"
>  #include "intel_backlight.h"
>  #include "intel_display_core.h"
> @@ -357,10 +357,12 @@ static int swsci(struct intel_display *display,
>  	pci_write_config_word(pdev, SWSCI, swsci_val);
>  
>  	/* Poll for the result. */
> -#define C (((scic = swsci->scic) & SWSCI_SCIC_INDICATOR) == 0)
> -	if (wait_for(C, dslp)) {
> +	ret = poll_timeout_us(scic = swsci->scic,
> +			      (scic & SWSCI_SCIC_INDICATOR) == 0,
> +			      1000, dslp * 1000, false);
> +	if (ret) {
>  		drm_dbg(display->drm, "SWSCI request timed out\n");
> -		return -ETIMEDOUT;
> +		return ret;
>  	}
>  
>  	scic = (scic & SWSCI_SCIC_EXIT_STATUS_MASK) >>


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

* Re: [PATCH 19/20] drm/i915/ddi: prefer poll_timeout_us() over readx_poll_timeout()
  2025-08-28 12:21 ` [PATCH 19/20] drm/i915/ddi: prefer poll_timeout_us() over readx_poll_timeout() Jani Nikula
@ 2025-09-04  9:19   ` Hogander, Jouni
  0 siblings, 0 replies; 47+ messages in thread
From: Hogander, Jouni @ 2025-09-04  9:19 UTC (permalink / raw)
  To: intel-xe@lists.freedesktop.org, Nikula, Jani,
	intel-gfx@lists.freedesktop.org
  Cc: ville.syrjala@linux.intel.com, Deak, Imre

On Thu, 2025-08-28 at 15:21 +0300, Jani Nikula wrote:
> Unify on using poll_timeout_us() throughout instead of mixing with
> readx_poll_timeout(). While the latter can be ever so slightly
> simpler,
> they are both complicated enough that it's better to unify on one
> approach only.
> 
> While at it, better separate the handling of error returns from
> drm_dp_dpcd_readb() and the actual status byte. This is best achieved
> by
> inlining the read_fec_detected_status() function, and switching to
> drm_dp_dpcd_read_byte().
> 
> v2: Use drm_dp_dpcd_read_byte() (Imre)
> 
> Cc: Imre Deak <imre.deak@intel.com>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>

Reviewed-by: Jouni Högander <jouni.hogander@intel.com>
> ---
>  drivers/gpu/drm/i915/display/intel_ddi.c | 32 ++++++++--------------
> --
>  1 file changed, 11 insertions(+), 21 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_ddi.c
> b/drivers/gpu/drm/i915/display/intel_ddi.c
> index 4e4ea3a0ff83..46017091bb0b 100644
> --- a/drivers/gpu/drm/i915/display/intel_ddi.c
> +++ b/drivers/gpu/drm/i915/display/intel_ddi.c
> @@ -2340,34 +2340,24 @@ static void
> intel_dp_sink_set_fec_ready(struct intel_dp *intel_dp,
>  		drm_dbg_kms(display->drm, "Failed to clear FEC
> detected flags\n");
>  }
>  
> -static int read_fec_detected_status(struct drm_dp_aux *aux)
> -{
> -	int ret;
> -	u8 status;
> -
> -	ret = drm_dp_dpcd_readb(aux, DP_FEC_STATUS, &status);
> -	if (ret < 0)
> -		return ret;
> -
> -	return status;
> -}
> -
>  static int wait_for_fec_detected(struct drm_dp_aux *aux, bool
> enabled)
>  {
>  	struct intel_display *display = to_intel_display(aux-
> >drm_dev);
>  	int mask = enabled ? DP_FEC_DECODE_EN_DETECTED :
> DP_FEC_DECODE_DIS_DETECTED;
> -	int status;
> -	int err;
> +	u8 status = 0;
> +	int ret, err;
>  
> -	err = readx_poll_timeout(read_fec_detected_status, aux,
> status,
> -				 status & mask || status < 0,
> -				 10000, 200000);
> +	ret = poll_timeout_us(err = drm_dp_dpcd_read_byte(aux,
> DP_FEC_STATUS, &status),
> +			      err || (status & mask),
> +			      10 * 1000, 200 * 1000, false);
>  
> -	if (err || status < 0) {
> +	/* Either can be non-zero, but not both */
> +	ret = ret ?: err;
> +	if (ret) {
>  		drm_dbg_kms(display->drm,
> -			    "Failed waiting for FEC %s to get
> detected: %d (status %d)\n",
> -			    str_enabled_disabled(enabled), err,
> status);
> -		return err ? err : status;
> +			    "Failed waiting for FEC %s to get
> detected: %d (status 0x%02x)\n",
> +			    str_enabled_disabled(enabled), ret,
> status);
> +		return ret;
>  	}
>  
>  	return 0;


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

* Re: [PATCH 20/20] drm/i915/pps: prefer poll_timeout_us() over read_poll_timeout()
  2025-08-28 12:21 ` [PATCH 20/20] drm/i915/pps: prefer poll_timeout_us() over read_poll_timeout() Jani Nikula
@ 2025-09-04 10:23   ` Hogander, Jouni
  0 siblings, 0 replies; 47+ messages in thread
From: Hogander, Jouni @ 2025-09-04 10:23 UTC (permalink / raw)
  To: intel-xe@lists.freedesktop.org, Nikula, Jani,
	intel-gfx@lists.freedesktop.org
  Cc: ville.syrjala@linux.intel.com

On Thu, 2025-08-28 at 15:21 +0300, Jani Nikula wrote:
> Unify on using poll_timeout_us() throughout instead of mixing with
> readx_poll_timeout().
> 
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>

Reviewed-by: Jouni Högander <jouni.hogander@intel.com>

> ---
>  drivers/gpu/drm/i915/display/intel_pps.c | 8 +++-----
>  1 file changed, 3 insertions(+), 5 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_pps.c
> b/drivers/gpu/drm/i915/display/intel_pps.c
> index b84eb43bd2d0..327e0de86f1e 100644
> --- a/drivers/gpu/drm/i915/display/intel_pps.c
> +++ b/drivers/gpu/drm/i915/display/intel_pps.c
> @@ -627,11 +627,9 @@ static void wait_panel_status(struct intel_dp
> *intel_dp,
>  		    intel_de_read(display, pp_stat_reg),
>  		    intel_de_read(display, pp_ctrl_reg));
>  
> -	ret = read_poll_timeout(intel_de_read, val,
> -				(val & mask) == value,
> -				10 * 1000, 5000 * 1000, true,
> -				display, pp_stat_reg);
> -
> +	ret = poll_timeout_us(val = intel_de_read(display,
> pp_stat_reg),
> +			      (val & mask) == value,
> +			      10 * 1000, 5000 * 1000, true);
>  	if (ret) {
>  		drm_err(display->drm,
>  			"[ENCODER:%d:%s] %s panel status timeout:
> PP_STATUS: 0x%08x PP_CONTROL: 0x%08x\n",


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

* Re: [PATCH 01/20] drm/i915/hdmi: use generic poll_timeout_us() instead of __wait_for()
  2025-09-03 13:29   ` Hogander, Jouni
@ 2025-09-04 11:26     ` Jani Nikula
  0 siblings, 0 replies; 47+ messages in thread
From: Jani Nikula @ 2025-09-04 11:26 UTC (permalink / raw)
  To: Hogander, Jouni, intel-xe@lists.freedesktop.org,
	intel-gfx@lists.freedesktop.org
  Cc: ville.syrjala@linux.intel.com, Kandpal,  Suraj

On Wed, 03 Sep 2025, "Hogander, Jouni" <jouni.hogander@intel.com> wrote:
> On Thu, 2025-08-28 at 15:20 +0300, Jani Nikula wrote:
>> Prefer generic poll helpers over i915 custom helpers.
>> 
>> The functional change is losing the exponentially growing sleep of
>> __wait_for(), which used to be 1, 2, 4, and 8 ms in this particular
>> case.
>> 
>> Use an arbitrary constant 4 ms sleep instead. The timeout remains,
>> varying between 20 ms and 3000 ms.
>> 
>> Cc: Suraj Kandpal <suraj.kandpal@intel.com>
>> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
>
> Reviewed-by: Jouni Högander <jouni.hogander@intel.com>

Thanks a lot for the review, series pushed to din.

BR,
Jani.

-- 
Jani Nikula, Intel

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

end of thread, other threads:[~2025-09-04 11:26 UTC | newest]

Thread overview: 47+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-28 12:20 [PATCH 00/20] drm/i915/display: convert to generic poll_timeout_us() Jani Nikula
2025-08-28 12:20 ` [PATCH 01/20] drm/i915/hdmi: use generic poll_timeout_us() instead of __wait_for() Jani Nikula
2025-09-03 13:29   ` Hogander, Jouni
2025-09-04 11:26     ` Jani Nikula
2025-08-28 12:20 ` [PATCH 02/20] drm/i915/hdcp: " Jani Nikula
2025-09-03 13:42   ` Hogander, Jouni
2025-08-28 12:20 ` [PATCH 03/20] drm/i915/hdcp: use generic poll_timeout_us() instead of wait_for() Jani Nikula
2025-09-04  4:14   ` Hogander, Jouni
2025-08-28 12:20 ` [PATCH 04/20] drm/i915/dsi: use generic poll_timeout_us() instead of wait_for_us() Jani Nikula
2025-09-04  4:27   ` Hogander, Jouni
2025-08-28 12:20 ` [PATCH 05/20] drm/i915/dsi-pll: use generic poll_timeout_us() instead of wait_for() Jani Nikula
2025-09-04  4:34   ` Hogander, Jouni
2025-08-28 12:20 ` [PATCH 06/20] drm/i915/gmbus: use generic poll_timeout*() instead of wait_for*() Jani Nikula
2025-09-04  4:53   ` Hogander, Jouni
2025-08-28 12:20 ` [PATCH 07/20] drm/i915/wm: use generic poll_timeout_us() instead of wait_for() Jani Nikula
2025-09-04  5:01   ` Hogander, Jouni
2025-08-28 12:20 ` [PATCH 08/20] drm/i915/cdclk: " Jani Nikula
2025-09-04  5:45   ` Hogander, Jouni
2025-08-28 12:20 ` [PATCH 09/20] drm/i915/power: " Jani Nikula
2025-09-04  5:47   ` Hogander, Jouni
2025-08-28 12:20 ` [PATCH 10/20] drm/i915/power-well: use generic poll_timeout_us() instead of wait_for() for DKL PHY Jani Nikula
2025-09-04  5:48   ` Hogander, Jouni
2025-08-28 12:20 ` [PATCH 11/20] drm/i915/power-well: use generic poll_timeout_us() instead of wait_for() for VLV/CHV Jani Nikula
2025-09-04  5:54   ` Hogander, Jouni
2025-08-28 12:20 ` [PATCH 12/20] drm/i915/dp: use generic poll_timeout_us() instead of wait_for() Jani Nikula
2025-09-04  6:08   ` Hogander, Jouni
2025-08-28 12:20 ` [PATCH 13/20] drm/i915/dp: use generic poll_timeout_us() instead of wait_for() in link training Jani Nikula
2025-09-04  6:15   ` Hogander, Jouni
2025-08-28 12:20 ` [PATCH 14/20] drm/i915/vblank: use generic poll_timeout_us() instead of wait_for() Jani Nikula
2025-09-04  8:05   ` Hogander, Jouni
2025-08-28 12:20 ` [PATCH 15/20] drm/i915/tc: " Jani Nikula
2025-09-04  8:41   ` Hogander, Jouni
2025-08-28 12:20 ` [PATCH 16/20] drm/i915/dsb: " Jani Nikula
2025-09-04  8:42   ` Hogander, Jouni
2025-08-28 12:20 ` [PATCH 17/20] drm/i915/lspcon: " Jani Nikula
2025-09-04  8:47   ` Hogander, Jouni
2025-08-28 12:21 ` [PATCH 18/20] drm/i915/opregion: " Jani Nikula
2025-09-04  9:06   ` Hogander, Jouni
2025-08-28 12:21 ` [PATCH 19/20] drm/i915/ddi: prefer poll_timeout_us() over readx_poll_timeout() Jani Nikula
2025-09-04  9:19   ` Hogander, Jouni
2025-08-28 12:21 ` [PATCH 20/20] drm/i915/pps: prefer poll_timeout_us() over read_poll_timeout() Jani Nikula
2025-09-04 10:23   ` Hogander, Jouni
2025-08-28 15:48 ` ✗ CI.checkpatch: warning for drm/i915/display: convert to generic poll_timeout_us() Patchwork
2025-08-28 15:49 ` ✓ CI.KUnit: success " Patchwork
2025-08-28 16:05 ` ✗ CI.checksparse: warning " Patchwork
2025-08-28 16:29 ` ✓ Xe.CI.BAT: success " Patchwork
2025-08-28 21:01 ` ✓ Xe.CI.Full: " Patchwork

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).