intel-xe.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/18] drm/i915/display: convert to generic read_poll_timeout()
@ 2025-06-27 11:36 Jani Nikula
  2025-06-27 11:36 ` [PATCH 01/18] drm/i915/hdmi: use generic read_poll_timeout() instead of __wait_for() Jani Nikula
                   ` (22 more replies)
  0 siblings, 23 replies; 34+ messages in thread
From: Jani Nikula @ 2025-06-27 11:36 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: jani.nikula

Convert waits that are not related to MMIO reads to the generic iopoll.h
read_poll_timeout() helper.

Together with [1] and [2], this series completely removes the custom
i915_utils.h wait macro usage from display code, and unifies on the
kernel generic poll waiter.


BR,
Jani.

[1] https://lore.kernel.org/r/cover.1750959689.git.jani.nikula@intel.com
[2] https://lore.kernel.org/r/20250626192632.2330349-1-jani.nikula@intel.com


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

 drivers/gpu/drm/i915/display/i9xx_wm.c        | 18 ++++++--
 drivers/gpu/drm/i915/display/icl_dsi.c        | 20 +++++++--
 drivers/gpu/drm/i915/display/intel_cdclk.c    | 41 ++++++++++--------
 drivers/gpu/drm/i915/display/intel_ddi.c      | 33 ++++++--------
 .../drm/i915/display/intel_display_power.c    |  9 +++-
 .../i915/display/intel_display_power_well.c   | 43 +++++++++++--------
 drivers/gpu/drm/i915/display/intel_dp.c       | 23 +++++-----
 .../drm/i915/display/intel_dp_link_training.c | 19 ++++++--
 drivers/gpu/drm/i915/display/intel_dsb.c      | 12 +++++-
 drivers/gpu/drm/i915/display/intel_gmbus.c    | 15 +++++--
 drivers/gpu/drm/i915/display/intel_hdcp.c     |  9 ++--
 drivers/gpu/drm/i915/display/intel_hdmi.c     | 10 ++---
 drivers/gpu/drm/i915/display/intel_lspcon.c   | 14 ++++--
 drivers/gpu/drm/i915/display/intel_opregion.c | 11 +++--
 drivers/gpu/drm/i915/display/intel_tc.c       | 18 +++++++-
 drivers/gpu/drm/i915/display/intel_vblank.c   | 10 ++++-
 drivers/gpu/drm/i915/display/vlv_dsi_pll.c    | 10 ++++-
 17 files changed, 210 insertions(+), 105 deletions(-)

-- 
2.39.5


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

* [PATCH 01/18] drm/i915/hdmi: use generic read_poll_timeout() instead of __wait_for()
  2025-06-27 11:36 [PATCH 00/18] drm/i915/display: convert to generic read_poll_timeout() Jani Nikula
@ 2025-06-27 11:36 ` Jani Nikula
  2025-06-27 11:36 ` [PATCH 02/18] drm/i915/hdcp: " Jani Nikula
                   ` (21 subsequent siblings)
  22 siblings, 0 replies; 34+ messages in thread
From: Jani Nikula @ 2025-06-27 11:36 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: jani.nikula, 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 9961ff259298..6a1fdb2c5f18 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 = read_poll_timeout(hdcp2_detect_msg_availability, ret,
+				!ret && msg_ready && msg_sz,
+				4000, timeout * 1000, false,
+				dig_port, msg_id, &msg_ready, &msg_sz);
 	if (ret)
 		drm_dbg_kms(display->drm,
 			    "msg_id: %d, ret: %d, timeout: %d\n",
-- 
2.39.5


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

* [PATCH 02/18] drm/i915/hdcp: use generic read_poll_timeout() instead of __wait_for()
  2025-06-27 11:36 [PATCH 00/18] drm/i915/display: convert to generic read_poll_timeout() Jani Nikula
  2025-06-27 11:36 ` [PATCH 01/18] drm/i915/hdmi: use generic read_poll_timeout() instead of __wait_for() Jani Nikula
@ 2025-06-27 11:36 ` Jani Nikula
  2025-06-29 13:39   ` Kandpal, Suraj
  2025-06-27 11:36 ` [PATCH 03/18] drm/i915/dsi: use generic read_poll_timeout() instead of wait_for_us() Jani Nikula
                   ` (20 subsequent siblings)
  22 siblings, 1 reply; 34+ messages in thread
From: Jani Nikula @ 2025-06-27 11:36 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: jani.nikula, 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 | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_hdcp.c b/drivers/gpu/drm/i915/display/intel_hdcp.c
index 619ccfc33000..9eeeae03b129 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>
@@ -324,10 +325,10 @@ 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 = read_poll_timeout(shim->read_ksv_ready, read_ret,
+				read_ret || ksv_ready,
+				100 * 1000, 5 * 1000 * 1000, false,
+				dig_port, &ksv_ready);
 	if (ret)
 		return ret;
 	if (read_ret)
-- 
2.39.5


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

* [PATCH 03/18] drm/i915/dsi: use generic read_poll_timeout() instead of wait_for_us()
  2025-06-27 11:36 [PATCH 00/18] drm/i915/display: convert to generic read_poll_timeout() Jani Nikula
  2025-06-27 11:36 ` [PATCH 01/18] drm/i915/hdmi: use generic read_poll_timeout() instead of __wait_for() Jani Nikula
  2025-06-27 11:36 ` [PATCH 02/18] drm/i915/hdcp: " Jani Nikula
@ 2025-06-27 11:36 ` Jani Nikula
  2025-06-27 11:36 ` [PATCH 04/18] drm/i915/dsi-pll: use generic read_poll_timeout() instead of wait_for() Jani Nikula
                   ` (19 subsequent siblings)
  22 siblings, 0 replies; 34+ messages in thread
From: Jani Nikula @ 2025-06-27 11:36 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: jani.nikula

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 | 20 ++++++++++++++++----
 1 file changed, 16 insertions(+), 4 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/icl_dsi.c b/drivers/gpu/drm/i915/display/icl_dsi.c
index 8d9cb73a93a7..d4c572305804 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,13 @@ 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;
+
+	ret = read_poll_timeout(header_credits_available, ret,
+				ret >= hdr_credit,
+				10, 100, false,
+				display, dsi_trans);
+	if (ret) {
 		drm_err(display->drm, "DSI header credits not released\n");
 		return false;
 	}
@@ -84,8 +91,13 @@ 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;
+
+	ret = read_poll_timeout(payload_credits_available, ret,
+				ret >= payld_credit,
+				10, 100, false,
+				display, dsi_trans);
+	if (ret) {
 		drm_err(display->drm, "DSI payload credits not released\n");
 		return false;
 	}
-- 
2.39.5


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

* [PATCH 04/18] drm/i915/dsi-pll: use generic read_poll_timeout() instead of wait_for()
  2025-06-27 11:36 [PATCH 00/18] drm/i915/display: convert to generic read_poll_timeout() Jani Nikula
                   ` (2 preceding siblings ...)
  2025-06-27 11:36 ` [PATCH 03/18] drm/i915/dsi: use generic read_poll_timeout() instead of wait_for_us() Jani Nikula
@ 2025-06-27 11:36 ` Jani Nikula
  2025-06-27 11:36 ` [PATCH 05/18] drm/i915/gmbus: use generic read_poll_timeout*() instead of wait_for*() Jani Nikula
                   ` (18 subsequent siblings)
  22 siblings, 0 replies; 34+ messages in thread
From: Jani Nikula @ 2025-06-27 11:36 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: jani.nikula

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 | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/vlv_dsi_pll.c b/drivers/gpu/drm/i915/display/vlv_dsi_pll.c
index d42b61e6f076..059a1cd9a4e6 100644
--- a/drivers/gpu/drm/i915/display/vlv_dsi_pll.c
+++ b/drivers/gpu/drm/i915/display/vlv_dsi_pll.c
@@ -25,6 +25,7 @@
  *	Yogesh Mohan Marimuthu <yogesh.mohan.marimuthu@intel.com>
  */
 
+#include <linux/iopoll.h>
 #include <linux/kernel.h>
 #include <linux/string_helpers.h>
 
@@ -216,6 +217,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");
 
@@ -233,8 +236,11 @@ 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 = read_poll_timeout(vlv_cck_read, val,
+				val & DSI_PLL_LOCK,
+				500, 20 * 1000, false,
+				display->drm, CCK_REG_DSI_PLL_CONTROL);
+	if (ret) {
 
 		vlv_cck_put(display->drm);
 		drm_err(display->drm, "DSI PLL lock failed\n");
-- 
2.39.5


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

* [PATCH 05/18] drm/i915/gmbus: use generic read_poll_timeout*() instead of wait_for*()
  2025-06-27 11:36 [PATCH 00/18] drm/i915/display: convert to generic read_poll_timeout() Jani Nikula
                   ` (3 preceding siblings ...)
  2025-06-27 11:36 ` [PATCH 04/18] drm/i915/dsi-pll: use generic read_poll_timeout() instead of wait_for() Jani Nikula
@ 2025-06-27 11:36 ` Jani Nikula
  2025-06-27 11:36 ` [PATCH 06/18] drm/i915/wm: use generic read_poll_timeout() instead of wait_for() Jani Nikula
                   ` (17 subsequent siblings)
  22 siblings, 0 replies; 34+ messages in thread
From: Jani Nikula @ 2025-06-27 11:36 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: jani.nikula

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 read_poll_timeout_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 | 15 +++++++++++----
 1 file changed, 11 insertions(+), 4 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_gmbus.c b/drivers/gpu/drm/i915/display/intel_gmbus.c
index 0d73f32fe7f1..6cc82d196438 100644
--- a/drivers/gpu/drm/i915/display/intel_gmbus.c
+++ b/drivers/gpu/drm/i915/display/intel_gmbus.c
@@ -30,6 +30,7 @@
 #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>
 
@@ -385,11 +386,17 @@ 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 = read_poll_timeout_atomic(intel_de_read_fw, gmbus2,
+				       gmbus2 & status,
+				       0, 2, false,
+				       display, GMBUS2(display));
+
 	if (ret)
-		ret = wait_for((gmbus2 = intel_de_read_fw(display, GMBUS2(display))) & status,
-			       50);
+		ret = read_poll_timeout(intel_de_read_fw, gmbus2,
+					gmbus2 & status,
+					500, 50 * 1000, false,
+					display, GMBUS2(display));
 
 	intel_de_write_fw(display, GMBUS4(display), 0);
 	remove_wait_queue(&display->gmbus.wait_queue, &wait);
-- 
2.39.5


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

* [PATCH 06/18] drm/i915/wm: use generic read_poll_timeout() instead of wait_for()
  2025-06-27 11:36 [PATCH 00/18] drm/i915/display: convert to generic read_poll_timeout() Jani Nikula
                   ` (4 preceding siblings ...)
  2025-06-27 11:36 ` [PATCH 05/18] drm/i915/gmbus: use generic read_poll_timeout*() instead of wait_for*() Jani Nikula
@ 2025-06-27 11:36 ` Jani Nikula
  2025-06-27 11:36 ` [PATCH 07/18] drm/i915/cdclk: " Jani Nikula
                   ` (16 subsequent siblings)
  22 siblings, 0 replies; 34+ messages in thread
From: Jani Nikula @ 2025-06-27 11:36 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: jani.nikula

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 | 18 ++++++++++++++----
 1 file changed, 14 insertions(+), 4 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/i9xx_wm.c b/drivers/gpu/drm/i915/display/i9xx_wm.c
index 1f9db5118777..6a8aa7fcfc2d 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 "i915_drv.h"
 #include "i915_reg.h"
 #include "i9xx_wm.h"
@@ -109,6 +111,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);
 
@@ -121,8 +124,11 @@ 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 = read_poll_timeout(vlv_punit_read, val,
+				(val & FORCE_DDR_FREQ_REQ_ACK) == 0,
+				500, 3000, false,
+				display->drm, PUNIT_REG_DDR_SETUP2);
+	if (ret)
 		drm_err(display->drm,
 			"timed out waiting for Punit DDR DVFS request\n");
 
@@ -3902,6 +3908,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);
 
@@ -3928,8 +3935,11 @@ 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 = read_poll_timeout(vlv_punit_read, val,
+					(val & FORCE_DDR_FREQ_REQ_ACK) == 0,
+					500, 3000, false,
+					display->drm, PUNIT_REG_DDR_SETUP2);
+		if (ret) {
 			drm_dbg_kms(display->drm,
 				    "Punit not acking DDR DVFS request, "
 				    "assuming DDR DVFS is disabled\n");
-- 
2.39.5


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

* [PATCH 07/18] drm/i915/cdclk: use generic read_poll_timeout() instead of wait_for()
  2025-06-27 11:36 [PATCH 00/18] drm/i915/display: convert to generic read_poll_timeout() Jani Nikula
                   ` (5 preceding siblings ...)
  2025-06-27 11:36 ` [PATCH 06/18] drm/i915/wm: use generic read_poll_timeout() instead of wait_for() Jani Nikula
@ 2025-06-27 11:36 ` Jani Nikula
  2025-06-27 11:36 ` [PATCH 08/18] drm/i915/power: " Jani Nikula
                   ` (15 subsequent siblings)
  22 siblings, 0 replies; 34+ messages in thread
From: Jani Nikula @ 2025-06-27 11:36 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: jani.nikula

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 | 41 +++++++++++++---------
 1 file changed, 24 insertions(+), 17 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_cdclk.c b/drivers/gpu/drm/i915/display/intel_cdclk.c
index 228aa64c1349..9cb6cd59b438 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>
@@ -672,6 +673,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:
@@ -702,12 +704,13 @@ 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 = read_poll_timeout(vlv_punit_read, val,
+				(val & DSPFREQSTAT_MASK) == (cmd << DSPFREQSTAT_SHIFT),
+				500, 50 * 1000, false,
+				display->drm, PUNIT_REG_DSPSSPM);
+	if (ret)
+		drm_err(display->drm, "timed out waiting for CDCLK change\n");
 
 	if (cdclk == 400000) {
 		u32 divider;
@@ -721,11 +724,12 @@ 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 = read_poll_timeout(vlv_cck_read, val,
+					(val & CCK_FREQUENCY_STATUS) == (divider << CCK_FREQUENCY_STATUS_SHIFT),
+					500, 50 * 1000, false,
+					display->drm, CCK_DISPLAY_CLOCK_CONTROL);
+		if (ret)
+			drm_err(display->drm, "timed out waiting for CDCLK change\n");
 	}
 
 	/* adjust self-refresh exit latency value */
@@ -761,6 +765,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:
@@ -786,12 +791,14 @@ 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 = read_poll_timeout(vlv_punit_read, val,
+				(val & DSPFREQSTAT_MASK_CHV) == (cmd << DSPFREQSTAT_SHIFT_CHV),
+				500, 50 * 1000, false,
+				display->drm, PUNIT_REG_DSPSSPM);
+
+	if (ret)
+		drm_err(display->drm, "timed out waiting for CDCLK change\n");
 
 	vlv_punit_put(display->drm);
 
-- 
2.39.5


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

* [PATCH 08/18] drm/i915/power: use generic read_poll_timeout() instead of wait_for()
  2025-06-27 11:36 [PATCH 00/18] drm/i915/display: convert to generic read_poll_timeout() Jani Nikula
                   ` (6 preceding siblings ...)
  2025-06-27 11:36 ` [PATCH 07/18] drm/i915/cdclk: " Jani Nikula
@ 2025-06-27 11:36 ` Jani Nikula
  2025-06-27 11:36 ` [PATCH 09/18] drm/i915/power-well: use generic read_poll_timeout() instead of wait_for() for DKL PHY Jani Nikula
                   ` (14 subsequent siblings)
  22 siblings, 0 replies; 34+ messages in thread
From: Jani Nikula @ 2025-06-27 11:36 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: jani.nikula

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 | 9 +++++++--
 1 file changed, 7 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 273054c22325..b2b7b8ca64d2 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"
@@ -1278,6 +1279,7 @@ static void hsw_disable_lcpll(struct intel_display *display,
 			      bool switch_to_fclk, bool allow_power_down)
 {
 	u32 val;
+	int ret;
 
 	assert_can_disable_lcpll(display);
 
@@ -1306,8 +1308,11 @@ 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 = read_poll_timeout(hsw_read_dcomp, val,
+				(val & D_COMP_RCOMP_IN_PROGRESS) == 0,
+				100, 1000, false,
+				display);
+	if (ret)
 		drm_err(display->drm, "D_COMP RCOMP still in progress\n");
 
 	if (allow_power_down) {
-- 
2.39.5


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

* [PATCH 09/18] drm/i915/power-well: use generic read_poll_timeout() instead of wait_for() for DKL PHY
  2025-06-27 11:36 [PATCH 00/18] drm/i915/display: convert to generic read_poll_timeout() Jani Nikula
                   ` (7 preceding siblings ...)
  2025-06-27 11:36 ` [PATCH 08/18] drm/i915/power: " Jani Nikula
@ 2025-06-27 11:36 ` Jani Nikula
  2025-06-27 11:36 ` [PATCH 10/18] drm/i915/power-well: use generic read_poll_timeout() instead of wait_for() for VLV/CHV Jani Nikula
                   ` (13 subsequent siblings)
  22 siblings, 0 replies; 34+ messages in thread
From: Jani Nikula @ 2025-06-27 11:36 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: jani.nikula

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>
---
 .../drm/i915/display/intel_display_power_well.c    | 14 ++++++++++----
 1 file changed, 10 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 4a876fa815bd..92f4c81d9d1f 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"
@@ -521,6 +523,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);
 
@@ -547,10 +551,12 @@ 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 = read_poll_timeout(intel_dkl_phy_read, val,
+					val & DKL_CMN_UC_DW27_UC_HEALTH,
+					100, 1000, false,
+					display, DKL_CMN_UC_DW_27(tc_port));
+		if (ret)
+			drm_warn(display->drm, "Timeout waiting TC uC health\n");
 	}
 }
 
-- 
2.39.5


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

* [PATCH 10/18] drm/i915/power-well: use generic read_poll_timeout() instead of wait_for() for VLV/CHV
  2025-06-27 11:36 [PATCH 00/18] drm/i915/display: convert to generic read_poll_timeout() Jani Nikula
                   ` (8 preceding siblings ...)
  2025-06-27 11:36 ` [PATCH 09/18] drm/i915/power-well: use generic read_poll_timeout() instead of wait_for() for DKL PHY Jani Nikula
@ 2025-06-27 11:36 ` Jani Nikula
  2025-06-27 11:36 ` [PATCH 11/18] drm/i915/dp: use generic read_poll_timeout() instead of wait_for() Jani Nikula
                   ` (12 subsequent siblings)
  22 siblings, 0 replies; 34+ messages in thread
From: Jani Nikula @ 2025-06-27 11:36 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: jani.nikula

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, 16 insertions(+), 13 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 92f4c81d9d1f..711469627d14 100644
--- a/drivers/gpu/drm/i915/display/intel_display_power_well.c
+++ b/drivers/gpu/drm/i915/display/intel_display_power_well.c
@@ -1122,6 +1122,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) :
@@ -1129,10 +1131,7 @@ 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)
+	if ((vlv_punit_read(display->drm, PUNIT_REG_PWRGT_STATUS) & mask) == state)
 		goto out;
 
 	ctrl = vlv_punit_read(display->drm, PUNIT_REG_PWRGT_CTRL);
@@ -1140,14 +1139,16 @@ 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 = read_poll_timeout(vlv_punit_read, val,
+				(val & mask) == state,
+				500, 100 * 1000, false,
+				display->drm, PUNIT_REG_PWRGT_STATUS);
+	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);
 }
@@ -1711,23 +1712,25 @@ 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 = read_poll_timeout(vlv_punit_read, ctrl,
+				(ctrl & DP_SSS_MASK(pipe)) == state,
+				500, 100 * 1000, false,
+				display->drm, PUNIT_REG_DSPSSPM);
+	if (ret)
 		drm_err(display->drm,
 			"timeout setting power well state %08x (%08x)\n",
 			state,
-- 
2.39.5


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

* [PATCH 11/18] drm/i915/dp: use generic read_poll_timeout() instead of wait_for()
  2025-06-27 11:36 [PATCH 00/18] drm/i915/display: convert to generic read_poll_timeout() Jani Nikula
                   ` (9 preceding siblings ...)
  2025-06-27 11:36 ` [PATCH 10/18] drm/i915/power-well: use generic read_poll_timeout() instead of wait_for() for VLV/CHV Jani Nikula
@ 2025-06-27 11:36 ` Jani Nikula
  2025-06-27 11:36 ` [PATCH 12/18] drm/i915/dp: use generic read_poll_timeout() instead of wait_for() in link training Jani Nikula
                   ` (11 subsequent siblings)
  22 siblings, 0 replies; 34+ messages in thread
From: Jani Nikula @ 2025-06-27 11:36 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: jani.nikula

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 | 23 +++++++++++++----------
 1 file changed, 13 insertions(+), 10 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
index f48912f308df..65c951704989 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>
@@ -3836,10 +3837,12 @@ 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 = read_poll_timeout(drm_dp_pcon_is_frl_ready, is_active,
+				is_active,
+				1000, TIMEOUT_FRL_READY_MS * 1000, false,
+				&intel_dp->aux);
+	if (ret)
+		return ret;
 
 	ret = drm_dp_pcon_frl_configure_1(&intel_dp->aux, max_frl_bw,
 					  DP_PCON_ENABLE_SEQUENTIAL_LINK);
@@ -3856,12 +3859,12 @@ 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 = read_poll_timeout(intel_dp_pcon_is_frl_trained, is_active,
+				is_active,
+				1000, TIMEOUT_HDMI_LINK_ACTIVE_MS * 1000, false,
+				intel_dp, max_frl_bw_mask, &frl_trained_mask);
+	if (ret)
+		return ret;
 
 frl_trained:
 	drm_dbg(display->drm, "FRL_TRAINED_MASK = %u\n", frl_trained_mask);
-- 
2.39.5


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

* [PATCH 12/18] drm/i915/dp: use generic read_poll_timeout() instead of wait_for() in link training
  2025-06-27 11:36 [PATCH 00/18] drm/i915/display: convert to generic read_poll_timeout() Jani Nikula
                   ` (10 preceding siblings ...)
  2025-06-27 11:36 ` [PATCH 11/18] drm/i915/dp: use generic read_poll_timeout() instead of wait_for() Jani Nikula
@ 2025-06-27 11:36 ` Jani Nikula
  2025-06-27 11:36 ` [PATCH 13/18] drm/i915/vblank: use generic read_poll_timeout() instead of wait_for() Jani Nikula
                   ` (10 subsequent siblings)
  22 siblings, 0 replies; 34+ messages in thread
From: Jani Nikula @ 2025-06-27 11:36 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: jani.nikula

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 | 19 +++++++++++++++----
 1 file changed, 15 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 a479b63112ea..d1d11de366b0 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>
@@ -1127,6 +1128,7 @@ 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;
 
@@ -1134,9 +1136,13 @@ void intel_dp_stop_link_train(struct intel_dp *intel_dp,
 	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 = read_poll_timeout(intel_dp_128b132b_intra_hop, ret,
+					ret == 0,
+					500, 500 * 1000, false,
+					intel_dp, crtc_state);
+		if (ret)
+			lt_dbg(intel_dp, DP_PHY_DPRX, "128b/132b intra-hop not clearing\n");
 	}
 
 	intel_hpd_unblock(encoder);
@@ -1574,8 +1580,13 @@ 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 = read_poll_timeout(intel_dp_128b132b_intra_hop, ret,
+				ret == 0,
+				500, 500 * 1000, false,
+				intel_dp, crtc_state);
+	if (ret) {
 		lt_err(intel_dp, DP_PHY_DPRX, "128b/132b intra-hop not clear\n");
 		goto out;
 	}
-- 
2.39.5


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

* [PATCH 13/18] drm/i915/vblank: use generic read_poll_timeout() instead of wait_for()
  2025-06-27 11:36 [PATCH 00/18] drm/i915/display: convert to generic read_poll_timeout() Jani Nikula
                   ` (11 preceding siblings ...)
  2025-06-27 11:36 ` [PATCH 12/18] drm/i915/dp: use generic read_poll_timeout() instead of wait_for() in link training Jani Nikula
@ 2025-06-27 11:36 ` Jani Nikula
  2025-06-27 11:36 ` [PATCH 14/18] drm/i915/tc: " Jani Nikula
                   ` (9 subsequent siblings)
  22 siblings, 0 replies; 34+ messages in thread
From: Jani Nikula @ 2025-06-27 11:36 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: jani.nikula

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 | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/i915/display/intel_vblank.c b/drivers/gpu/drm/i915/display/intel_vblank.c
index 70ba7aa26bf4..98ab7f03ec8d 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"
@@ -492,9 +494,15 @@ 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 = read_poll_timeout(pipe_scanline_is_moving, is_moving,
+				is_moving == state,
+				500, 100 * 1000, false,
+				display, pipe);
+	if (ret)
 		drm_err(display->drm,
 			"pipe %c scanline %s wait timed out\n",
 			pipe_name(pipe), str_on_off(state));
-- 
2.39.5


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

* [PATCH 14/18] drm/i915/tc: use generic read_poll_timeout() instead of wait_for()
  2025-06-27 11:36 [PATCH 00/18] drm/i915/display: convert to generic read_poll_timeout() Jani Nikula
                   ` (12 preceding siblings ...)
  2025-06-27 11:36 ` [PATCH 13/18] drm/i915/vblank: use generic read_poll_timeout() instead of wait_for() Jani Nikula
@ 2025-06-27 11:36 ` Jani Nikula
  2025-06-27 11:36 ` [PATCH 15/18] drm/i915/dsb: " Jani Nikula
                   ` (8 subsequent siblings)
  22 siblings, 0 replies; 34+ messages in thread
From: Jani Nikula @ 2025-06-27 11:36 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: jani.nikula

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 | 18 ++++++++++++++++--
 1 file changed, 16 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_tc.c b/drivers/gpu/drm/i915/display/intel_tc.c
index 3bc57579fe53..e32ea20e0e7f 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"
@@ -1000,8 +1002,14 @@ 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 = read_poll_timeout(xelpdp_tc_phy_tcss_power_is_enabled, is_enabled,
+				is_enabled == enabled,
+				200, 5000, false,
+				tc);
+	if (ret) {
 		drm_dbg_kms(display->drm,
 			    "Port %s: timeout waiting for TCSS power to get %s\n",
 			    str_enabled_disabled(enabled),
@@ -1263,8 +1271,14 @@ 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 = read_poll_timeout(tc_phy_is_ready, is_ready,
+				is_ready,
+				1000, 500 * 1000, false,
+				tc);
+	if (ret) {
 		drm_err(display->drm, "Port %s: timeout waiting for PHY ready\n",
 			tc->port_name);
 
-- 
2.39.5


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

* [PATCH 15/18] drm/i915/dsb: use generic read_poll_timeout() instead of wait_for()
  2025-06-27 11:36 [PATCH 00/18] drm/i915/display: convert to generic read_poll_timeout() Jani Nikula
                   ` (13 preceding siblings ...)
  2025-06-27 11:36 ` [PATCH 14/18] drm/i915/tc: " Jani Nikula
@ 2025-06-27 11:36 ` Jani Nikula
  2025-06-27 11:36 ` [PATCH 16/18] drm/i915/lspcon: " Jani Nikula
                   ` (7 subsequent siblings)
  22 siblings, 0 replies; 34+ messages in thread
From: Jani Nikula @ 2025-06-27 11:36 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: jani.nikula

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 | 12 ++++++++++--
 1 file changed, 10 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..6b43bd466714 100644
--- a/drivers/gpu/drm/i915/display/intel_dsb.c
+++ b/drivers/gpu/drm/i915/display/intel_dsb.c
@@ -4,6 +4,8 @@
  *
  */
 
+#include <linux/iopoll.h>
+
 #include <drm/drm_print.h>
 #include <drm/drm_vblank.h>
 
@@ -871,8 +873,14 @@ 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;
-
-	if (wait_for(!is_dsb_busy(display, pipe, dsb->id), 1)) {
+	bool is_busy;
+	int ret;
+
+	ret = read_poll_timeout(is_dsb_busy, is_busy,
+				!is_busy,
+				100, 1000, false,
+				display, pipe, dsb->id);
+	if (ret) {
 		u32 offset = intel_dsb_buffer_ggtt_offset(&dsb->dsb_buf);
 
 		intel_de_write_fw(display, DSB_CTRL(pipe, dsb->id),
-- 
2.39.5


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

* [PATCH 16/18] drm/i915/lspcon: use generic read_poll_timeout() instead of wait_for()
  2025-06-27 11:36 [PATCH 00/18] drm/i915/display: convert to generic read_poll_timeout() Jani Nikula
                   ` (14 preceding siblings ...)
  2025-06-27 11:36 ` [PATCH 15/18] drm/i915/dsb: " Jani Nikula
@ 2025-06-27 11:36 ` Jani Nikula
  2025-06-27 11:36 ` [PATCH 17/18] drm/i915/opregion: " Jani Nikula
                   ` (6 subsequent siblings)
  22 siblings, 0 replies; 34+ messages in thread
From: Jani Nikula @ 2025-06-27 11:36 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: jani.nikula

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 | 14 +++++++++++---
 1 file changed, 11 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..68411ade2863 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,13 @@ 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 = read_poll_timeout(lspcon_get_current_mode, current_mode,
+				current_mode == mode,
+				5000, timeout_us, false,
+				lspcon);
+	if (ret)
 		drm_err(display->drm, "LSPCON mode hasn't settled\n");
 
 out:
-- 
2.39.5


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

* [PATCH 17/18] drm/i915/opregion: use generic read_poll_timeout() instead of wait_for()
  2025-06-27 11:36 [PATCH 00/18] drm/i915/display: convert to generic read_poll_timeout() Jani Nikula
                   ` (15 preceding siblings ...)
  2025-06-27 11:36 ` [PATCH 16/18] drm/i915/lspcon: " Jani Nikula
@ 2025-06-27 11:36 ` Jani Nikula
  2025-06-27 11:36 ` [PATCH 18/18] drm/i915/ddi: prefer read_poll_timeout() over readx_poll_timeout() Jani Nikula
                   ` (5 subsequent siblings)
  22 siblings, 0 replies; 34+ messages in thread
From: Jani Nikula @ 2025-06-27 11:36 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: jani.nikula

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 | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_opregion.c b/drivers/gpu/drm/i915/display/intel_opregion.c
index 2b8538fcfd1d..0c3f190c4bfa 100644
--- a/drivers/gpu/drm/i915/display/intel_opregion.c
+++ b/drivers/gpu/drm/i915/display/intel_opregion.c
@@ -28,6 +28,7 @@
 #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>
@@ -355,10 +356,14 @@ 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)) {
+#define C(__swsci) ((__swsci)->scic)
+	ret = read_poll_timeout(C, scic,
+				(scic & SWSCI_SCIC_INDICATOR) == 0,
+				1000, dslp * 1000, false,
+				swsci);
+	if (ret) {
 		drm_dbg(display->drm, "SWSCI request timed out\n");
-		return -ETIMEDOUT;
+		return ret;
 	}
 
 	scic = (scic & SWSCI_SCIC_EXIT_STATUS_MASK) >>
-- 
2.39.5


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

* [PATCH 18/18] drm/i915/ddi: prefer read_poll_timeout() over readx_poll_timeout()
  2025-06-27 11:36 [PATCH 00/18] drm/i915/display: convert to generic read_poll_timeout() Jani Nikula
                   ` (16 preceding siblings ...)
  2025-06-27 11:36 ` [PATCH 17/18] drm/i915/opregion: " Jani Nikula
@ 2025-06-27 11:36 ` Jani Nikula
  2025-06-27 12:00   ` Imre Deak
                     ` (2 more replies)
  2025-06-30 15:35 ` ✗ CI.checkpatch: warning for drm/i915/display: convert to generic read_poll_timeout() (rev2) Patchwork
                   ` (4 subsequent siblings)
  22 siblings, 3 replies; 34+ messages in thread
From: Jani Nikula @ 2025-06-27 11:36 UTC (permalink / raw)
  To: intel-gfx, intel-xe; +Cc: jani.nikula, Imre Deak

Unify on using read_poll_timeout() 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.

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

diff --git a/drivers/gpu/drm/i915/display/intel_ddi.c b/drivers/gpu/drm/i915/display/intel_ddi.c
index 0405396c7750..fc4587311607 100644
--- a/drivers/gpu/drm/i915/display/intel_ddi.c
+++ b/drivers/gpu/drm/i915/display/intel_ddi.c
@@ -2339,34 +2339,25 @@ 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 = read_poll_timeout(drm_dp_dpcd_readb, err,
+				err || (status & mask),
+				10 * 1000, 200 * 1000, false,
+				aux, DP_FEC_STATUS, &status);
 
-	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.39.5


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

* Re: [PATCH 18/18] drm/i915/ddi: prefer read_poll_timeout() over readx_poll_timeout()
  2025-06-27 11:36 ` [PATCH 18/18] drm/i915/ddi: prefer read_poll_timeout() over readx_poll_timeout() Jani Nikula
@ 2025-06-27 12:00   ` Imre Deak
  2025-06-27 12:43     ` Jani Nikula
  2025-06-27 12:53   ` Ville Syrjälä
  2025-06-27 14:15   ` [PATCH v2] " Jani Nikula
  2 siblings, 1 reply; 34+ messages in thread
From: Imre Deak @ 2025-06-27 12:00 UTC (permalink / raw)
  To: Jani Nikula; +Cc: intel-gfx, intel-xe

On Fri, Jun 27, 2025 at 02:36:32PM +0300, Jani Nikula wrote:
> Unify on using read_poll_timeout() 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.
> 
> Cc: Imre Deak <imre.deak@intel.com>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
> ---
>  drivers/gpu/drm/i915/display/intel_ddi.c | 33 +++++++++---------------
>  1 file changed, 12 insertions(+), 21 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_ddi.c b/drivers/gpu/drm/i915/display/intel_ddi.c
> index 0405396c7750..fc4587311607 100644
> --- a/drivers/gpu/drm/i915/display/intel_ddi.c
> +++ b/drivers/gpu/drm/i915/display/intel_ddi.c
> @@ -2339,34 +2339,25 @@ 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 = read_poll_timeout(drm_dp_dpcd_readb, err,

drm_dp_dpcd_read_byte()? With that it looks ok:

Reviewed-by: Imre Deak <imre.deak@intel.com>

> +				err || (status & mask),
> +				10 * 1000, 200 * 1000, false,

Nit: there's also USEC_PER_MSEC.

> +				aux, DP_FEC_STATUS, &status);
>  
> -	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.39.5
> 

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

* Re: [PATCH 18/18] drm/i915/ddi: prefer read_poll_timeout() over readx_poll_timeout()
  2025-06-27 12:00   ` Imre Deak
@ 2025-06-27 12:43     ` Jani Nikula
  0 siblings, 0 replies; 34+ messages in thread
From: Jani Nikula @ 2025-06-27 12:43 UTC (permalink / raw)
  To: imre.deak; +Cc: intel-gfx, intel-xe

On Fri, 27 Jun 2025, Imre Deak <imre.deak@intel.com> wrote:
> On Fri, Jun 27, 2025 at 02:36:32PM +0300, Jani Nikula wrote:
>> Unify on using read_poll_timeout() 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.
>> 
>> Cc: Imre Deak <imre.deak@intel.com>
>> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
>> ---
>>  drivers/gpu/drm/i915/display/intel_ddi.c | 33 +++++++++---------------
>>  1 file changed, 12 insertions(+), 21 deletions(-)
>> 
>> diff --git a/drivers/gpu/drm/i915/display/intel_ddi.c b/drivers/gpu/drm/i915/display/intel_ddi.c
>> index 0405396c7750..fc4587311607 100644
>> --- a/drivers/gpu/drm/i915/display/intel_ddi.c
>> +++ b/drivers/gpu/drm/i915/display/intel_ddi.c
>> @@ -2339,34 +2339,25 @@ 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 = read_poll_timeout(drm_dp_dpcd_readb, err,
>
> drm_dp_dpcd_read_byte()? With that it looks ok:

Oh, yes.

>
> Reviewed-by: Imre Deak <imre.deak@intel.com>
>
>> +				err || (status & mask),
>> +				10 * 1000, 200 * 1000, false,
>
> Nit: there's also USEC_PER_MSEC.

I considered that, and decided the straight 1000 is more obvious.

BR,
Jani.

>
>> +				aux, DP_FEC_STATUS, &status);
>>  
>> -	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.39.5
>> 

-- 
Jani Nikula, Intel

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

* Re: [PATCH 18/18] drm/i915/ddi: prefer read_poll_timeout() over readx_poll_timeout()
  2025-06-27 11:36 ` [PATCH 18/18] drm/i915/ddi: prefer read_poll_timeout() over readx_poll_timeout() Jani Nikula
  2025-06-27 12:00   ` Imre Deak
@ 2025-06-27 12:53   ` Ville Syrjälä
  2025-06-27 13:34     ` Jani Nikula
  2025-06-27 14:15   ` [PATCH v2] " Jani Nikula
  2 siblings, 1 reply; 34+ messages in thread
From: Ville Syrjälä @ 2025-06-27 12:53 UTC (permalink / raw)
  To: Jani Nikula
  Cc: intel-gfx, intel-xe, Imre Deak, Geert Uytterhoeven,
	Matt Wagantall, Dejin Zheng, linux-kernel

On Fri, Jun 27, 2025 at 02:36:32PM +0300, Jani Nikula wrote:
> Unify on using read_poll_timeout() 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.
> 
> Cc: Imre Deak <imre.deak@intel.com>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
> ---
>  drivers/gpu/drm/i915/display/intel_ddi.c | 33 +++++++++---------------
>  1 file changed, 12 insertions(+), 21 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_ddi.c b/drivers/gpu/drm/i915/display/intel_ddi.c
> index 0405396c7750..fc4587311607 100644
> --- a/drivers/gpu/drm/i915/display/intel_ddi.c
> +++ b/drivers/gpu/drm/i915/display/intel_ddi.c
> @@ -2339,34 +2339,25 @@ 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 = read_poll_timeout(drm_dp_dpcd_readb, err,
> +				err || (status & mask),
> +				10 * 1000, 200 * 1000, false,
> +				aux, DP_FEC_STATUS, &status);

I think I hate these macros. It's very hard to tell from this
soup what is actually being done here.

The 'val', 'op', and 'args' look very disconnected here even though
they are always part of the same thing. Is there a reason they can't
just be a single 'op' parameter like we have in wait_for() so you can
actually see the code?

Ie.
read_poll_timeout(err = drm_dp_dpcd_readb(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.39.5

-- 
Ville Syrjälä
Intel

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

* Re: [PATCH 18/18] drm/i915/ddi: prefer read_poll_timeout() over readx_poll_timeout()
  2025-06-27 12:53   ` Ville Syrjälä
@ 2025-06-27 13:34     ` Jani Nikula
  2025-06-27 15:40       ` Ville Syrjälä
  0 siblings, 1 reply; 34+ messages in thread
From: Jani Nikula @ 2025-06-27 13:34 UTC (permalink / raw)
  To: Ville Syrjälä
  Cc: intel-gfx, intel-xe, Imre Deak, Geert Uytterhoeven,
	Matt Wagantall, Dejin Zheng, linux-kernel

On Fri, 27 Jun 2025, Ville Syrjälä <ville.syrjala@linux.intel.com> wrote:
> On Fri, Jun 27, 2025 at 02:36:32PM +0300, Jani Nikula wrote:
>> Unify on using read_poll_timeout() 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.
>> 
>> Cc: Imre Deak <imre.deak@intel.com>
>> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
>> ---
>>  drivers/gpu/drm/i915/display/intel_ddi.c | 33 +++++++++---------------
>>  1 file changed, 12 insertions(+), 21 deletions(-)
>> 
>> diff --git a/drivers/gpu/drm/i915/display/intel_ddi.c b/drivers/gpu/drm/i915/display/intel_ddi.c
>> index 0405396c7750..fc4587311607 100644
>> --- a/drivers/gpu/drm/i915/display/intel_ddi.c
>> +++ b/drivers/gpu/drm/i915/display/intel_ddi.c
>> @@ -2339,34 +2339,25 @@ 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 = read_poll_timeout(drm_dp_dpcd_readb, err,
>> +				err || (status & mask),
>> +				10 * 1000, 200 * 1000, false,
>> +				aux, DP_FEC_STATUS, &status);
>
> I think I hate these macros. It's very hard to tell from this
> soup what is actually being done here.

The thing is, I hate __wait_for(), wait_for(), wait_for_us(),
wait_for_atomic_us(), and wait_for_atomic() even more.

It's also very hard to figure out what is actually going on with
them. The timeouts are arbitrarily either ms or us. wait_for_us() is
atomic depending on the timeout. __wait_for() Wmax parameter actually
isn't the max sleep, it's 2*Wmax-2. Some of them have exponentially
growing sleeps, while some arbitrarily don't.

It's a fscking mess, and people randomly choose whichever version with
no idea what's actually going on behind the scenes.

> The 'val', 'op', and 'args' look very disconnected here even though
> they are always part of the same thing. Is there a reason they can't
> just be a single 'op' parameter like we have in wait_for() so you can
> actually see the code?
>
> Ie.
> read_poll_timeout(err = drm_dp_dpcd_readb(aux, DP_FEC_STATUS, &status),
> 		  err || (status & mask),
>                   10 * 1000, 200 * 1000, false);
> ?

Internally the macro has:

#define read_poll_timeout(op, val, cond, sleep_us, timeout_us, \
				sleep_before_read, args...) \

...

		(val) = op(args); \

So you do need to provide an lvalue val, and you need to be able to add
() after op. I think GCC allows not passing varargs. IOW you'd need to
implement another macro (which could be used to implement the existing
one, but not the other way round).

I'm really not enthusiastic about blocking this series waiting on that
kind of refactoring in iopoll.h which might happen, or might not,
considering there's no active maintainer for iopoll.h.

So yeah, the interface isn't great, and I'm not claiming it is, but it
is *one* *single* *documented* *interface* that's used across the
kernel. On the whole, warts and all, I think it's still much better than
what we currently have. And it breaks the dependency on i915_utils.h.

I've carefully tried to do the line breaks so that it's always:

        read_poll_timeout(op, val,
                          cond,
                          sleep_us, timeout_us, sleep_before_read,
                          args...);

I think that helps a bit.


BR,
Jani.


>
>>  
>> -	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.39.5

-- 
Jani Nikula, Intel

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

* [PATCH v2] drm/i915/ddi: prefer read_poll_timeout() over readx_poll_timeout()
  2025-06-27 11:36 ` [PATCH 18/18] drm/i915/ddi: prefer read_poll_timeout() over readx_poll_timeout() Jani Nikula
  2025-06-27 12:00   ` Imre Deak
  2025-06-27 12:53   ` Ville Syrjälä
@ 2025-06-27 14:15   ` Jani Nikula
  2 siblings, 0 replies; 34+ messages in thread
From: Jani Nikula @ 2025-06-27 14:15 UTC (permalink / raw)
  To: Jani Nikula, intel-gfx, intel-xe; +Cc: Imre Deak

Unify on using read_poll_timeout() 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 | 33 +++++++++---------------
 1 file changed, 12 insertions(+), 21 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_ddi.c b/drivers/gpu/drm/i915/display/intel_ddi.c
index 0405396c7750..f2ac37159a28 100644
--- a/drivers/gpu/drm/i915/display/intel_ddi.c
+++ b/drivers/gpu/drm/i915/display/intel_ddi.c
@@ -2339,34 +2339,25 @@ 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 = read_poll_timeout(drm_dp_dpcd_read_byte, err,
+				err || (status & mask),
+				10 * 1000, 200 * 1000, false,
+				aux, DP_FEC_STATUS, &status);
 
-	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.39.5


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

* Re: [PATCH 18/18] drm/i915/ddi: prefer read_poll_timeout() over readx_poll_timeout()
  2025-06-27 13:34     ` Jani Nikula
@ 2025-06-27 15:40       ` Ville Syrjälä
  2025-06-27 16:26         ` Jani Nikula
  0 siblings, 1 reply; 34+ messages in thread
From: Ville Syrjälä @ 2025-06-27 15:40 UTC (permalink / raw)
  To: Jani Nikula
  Cc: intel-gfx, intel-xe, Imre Deak, Geert Uytterhoeven,
	Matt Wagantall, Dejin Zheng, linux-kernel

On Fri, Jun 27, 2025 at 04:34:23PM +0300, Jani Nikula wrote:
> On Fri, 27 Jun 2025, Ville Syrjälä <ville.syrjala@linux.intel.com> wrote:
> > On Fri, Jun 27, 2025 at 02:36:32PM +0300, Jani Nikula wrote:
> >> Unify on using read_poll_timeout() 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.
> >> 
> >> Cc: Imre Deak <imre.deak@intel.com>
> >> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
> >> ---
> >>  drivers/gpu/drm/i915/display/intel_ddi.c | 33 +++++++++---------------
> >>  1 file changed, 12 insertions(+), 21 deletions(-)
> >> 
> >> diff --git a/drivers/gpu/drm/i915/display/intel_ddi.c b/drivers/gpu/drm/i915/display/intel_ddi.c
> >> index 0405396c7750..fc4587311607 100644
> >> --- a/drivers/gpu/drm/i915/display/intel_ddi.c
> >> +++ b/drivers/gpu/drm/i915/display/intel_ddi.c
> >> @@ -2339,34 +2339,25 @@ 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 = read_poll_timeout(drm_dp_dpcd_readb, err,
> >> +				err || (status & mask),
> >> +				10 * 1000, 200 * 1000, false,
> >> +				aux, DP_FEC_STATUS, &status);
> >
> > I think I hate these macros. It's very hard to tell from this
> > soup what is actually being done here.
> 
> The thing is, I hate __wait_for(), wait_for(), wait_for_us(),
> wait_for_atomic_us(), and wait_for_atomic() even more.
> 
> It's also very hard to figure out what is actually going on with
> them. The timeouts are arbitrarily either ms or us. wait_for_us() is
> atomic depending on the timeout. __wait_for() Wmax parameter actually
> isn't the max sleep, it's 2*Wmax-2. Some of them have exponentially
> growing sleeps, while some arbitrarily don't.
> 
> It's a fscking mess, and people randomly choose whichever version with
> no idea what's actually going on behind the scenes.
> 
> > The 'val', 'op', and 'args' look very disconnected here even though
> > they are always part of the same thing. Is there a reason they can't
> > just be a single 'op' parameter like we have in wait_for() so you can
> > actually see the code?
> >
> > Ie.
> > read_poll_timeout(err = drm_dp_dpcd_readb(aux, DP_FEC_STATUS, &status),
> > 		  err || (status & mask),
> >                   10 * 1000, 200 * 1000, false);
> > ?
> 
> Internally the macro has:
> 
> #define read_poll_timeout(op, val, cond, sleep_us, timeout_us, \
> 				sleep_before_read, args...) \
> 
> ...
> 
> 		(val) = op(args); \
> 
> So you do need to provide an lvalue val, and you need to be able to add
> () after op. I think GCC allows not passing varargs. IOW you'd need to
> implement another macro (which could be used to implement the existing
> one, but not the other way round).

Just get rid of the 'args' and 'val' and it'll work just fine.
Then it'll be almost identical to wait_for() (basically just missing the
increasing backoff stuff).

AFAICS this thing was originally added just for reading a single
register and checking some bit/etc, so the name made some sense.
But now we're abusing it for all kinds of random things, so even
the name no longer makes that much sense.

So I think just something like this would work fine for us:

diff --git a/include/linux/iopoll.h b/include/linux/iopoll.h
index 91324c331a4b..9c38fd732028 100644
--- a/include/linux/iopoll.h
+++ b/include/linux/iopoll.h
@@ -14,27 +14,24 @@
 #include <linux/io.h>
 
 /**
- * read_poll_timeout - Periodically poll an address until a condition is
- *			met or a timeout occurs
- * @op: accessor function (takes @args as its arguments)
- * @val: Variable to read the value into
- * @cond: Break condition (usually involving @val)
- * @sleep_us: Maximum time to sleep between reads in us (0 tight-loops). Please
- *            read usleep_range() function description for details and
+ * poll_timeout - Periodically poll and perform an operaion until
+ *                a condition is met or a timeout occurs
+ *
+ * @op: Operation
+ * @cond: Break condition
+ * @sleep_us: Maximum time to sleep between operations in us (0 tight-loops).
+ *            Please read usleep_range() function description for details and
  *            limitations.
  * @timeout_us: Timeout in us, 0 means never timeout
- * @sleep_before_read: if it is true, sleep @sleep_us before read.
- * @args: arguments for @op poll
+ * @sleep_before_read: if it is true, sleep @sleep_us before operation.
  *
  * When available, you'll probably want to use one of the specialized
  * macros defined below rather than this macro directly.
  *
- * Returns: 0 on success and -ETIMEDOUT upon a timeout. In either
- * case, the last read value at @args is stored in @val. Must not
+ * Returns: 0 on success and -ETIMEDOUT upon a timeout. Must not
  * be called from atomic context if sleep_us or timeout_us are used.
  */
-#define read_poll_timeout(op, val, cond, sleep_us, timeout_us, \
-				sleep_before_read, args...) \
+#define poll_timeout(op, cond, sleep_us, timeout_us, sleep_before_read) \
 ({ \
 	u64 __timeout_us = (timeout_us); \
 	unsigned long __sleep_us = (sleep_us); \
@@ -43,12 +40,12 @@
 	if (sleep_before_read && __sleep_us) \
 		usleep_range((__sleep_us >> 2) + 1, __sleep_us); \
 	for (;;) { \
-		(val) = op(args); \
+		op; \
 		if (cond) \
 			break; \
 		if (__timeout_us && \
 		    ktime_compare(ktime_get(), __timeout) > 0) { \
-			(val) = op(args); \
+			op; \
 			break; \
 		} \
 		if (__sleep_us) \
@@ -58,6 +55,30 @@
 	(cond) ? 0 : -ETIMEDOUT; \
 })
 
+/**
+ * read_poll_timeout - Periodically poll an address until a condition is
+ *                     met or a timeout occurs
+ * @op: accessor function (takes @args as its arguments)
+ * @val: Variable to read the value into
+ * @cond: Break condition (usually involving @val)
+ * @sleep_us: Maximum time to sleep between reads in us (0 tight-loops). Please
+ *            read usleep_range() function description for details and
+ *            limitations.
+ * @timeout_us: Timeout in us, 0 means never timeout
+ * @sleep_before_read: if it is true, sleep @sleep_us before read.
+ * @args: arguments for @op poll
+ *
+ * When available, you'll probably want to use one of the specialized
+ * macros defined below rather than this macro directly.
+ *
+ * Returns: 0 on success and -ETIMEDOUT upon a timeout. In either
+ * case, the last read value at @args is stored in @val. Must not
+ * be called from atomic context if sleep_us or timeout_us are used.
+ */
+#define read_poll_timeout(op, val, cond, sleep_us, timeout_us, \
+			  sleep_before_read, args...) \
+	poll_timeout((val) = op(args), cond, sleep_us, timeout_us, sleep_before_read)
+
 /**
  * read_poll_timeout_atomic - Periodically poll an address until a condition is
  * 				met or a timeout occurs
-- 
2.49.0

-- 
Ville Syrjälä
Intel

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

* Re: [PATCH 18/18] drm/i915/ddi: prefer read_poll_timeout() over readx_poll_timeout()
  2025-06-27 15:40       ` Ville Syrjälä
@ 2025-06-27 16:26         ` Jani Nikula
  2025-06-27 17:32           ` Ville Syrjälä
  2025-06-30 20:52           ` David Laight
  0 siblings, 2 replies; 34+ messages in thread
From: Jani Nikula @ 2025-06-27 16:26 UTC (permalink / raw)
  To: Ville Syrjälä
  Cc: intel-gfx, intel-xe, Imre Deak, Geert Uytterhoeven,
	Matt Wagantall, Dejin Zheng, linux-kernel

On Fri, 27 Jun 2025, Ville Syrjälä <ville.syrjala@linux.intel.com> wrote:
> On Fri, Jun 27, 2025 at 04:34:23PM +0300, Jani Nikula wrote:
>> Internally the macro has:
>> 
>> #define read_poll_timeout(op, val, cond, sleep_us, timeout_us, \
>> 				sleep_before_read, args...) \
>> 
>> ...
>> 
>> 		(val) = op(args); \
>> 
>> So you do need to provide an lvalue val, and you need to be able to add
>> () after op. I think GCC allows not passing varargs. IOW you'd need to
>> implement another macro (which could be used to implement the existing
>> one, but not the other way round).
>
> Just get rid of the 'args' and 'val' and it'll work just fine.
> Then it'll be almost identical to wait_for() (basically just missing the
> increasing backoff stuff).
>
> AFAICS this thing was originally added just for reading a single
> register and checking some bit/etc, so the name made some sense.
> But now we're abusing it for all kinds of random things, so even
> the name no longer makes that much sense.

Yeah, evolution not intelligent design.

> So I think just something like this would work fine for us:

LGTM, with the _atomic version for completeness.

Want to send it to lkml?


BR,
Jani.


>
> diff --git a/include/linux/iopoll.h b/include/linux/iopoll.h
> index 91324c331a4b..9c38fd732028 100644
> --- a/include/linux/iopoll.h
> +++ b/include/linux/iopoll.h
> @@ -14,27 +14,24 @@
>  #include <linux/io.h>
>  
>  /**
> - * read_poll_timeout - Periodically poll an address until a condition is
> - *			met or a timeout occurs
> - * @op: accessor function (takes @args as its arguments)
> - * @val: Variable to read the value into
> - * @cond: Break condition (usually involving @val)
> - * @sleep_us: Maximum time to sleep between reads in us (0 tight-loops). Please
> - *            read usleep_range() function description for details and
> + * poll_timeout - Periodically poll and perform an operaion until
> + *                a condition is met or a timeout occurs
> + *
> + * @op: Operation
> + * @cond: Break condition
> + * @sleep_us: Maximum time to sleep between operations in us (0 tight-loops).
> + *            Please read usleep_range() function description for details and
>   *            limitations.
>   * @timeout_us: Timeout in us, 0 means never timeout
> - * @sleep_before_read: if it is true, sleep @sleep_us before read.
> - * @args: arguments for @op poll
> + * @sleep_before_read: if it is true, sleep @sleep_us before operation.
>   *
>   * When available, you'll probably want to use one of the specialized
>   * macros defined below rather than this macro directly.
>   *
> - * Returns: 0 on success and -ETIMEDOUT upon a timeout. In either
> - * case, the last read value at @args is stored in @val. Must not
> + * Returns: 0 on success and -ETIMEDOUT upon a timeout. Must not
>   * be called from atomic context if sleep_us or timeout_us are used.
>   */
> -#define read_poll_timeout(op, val, cond, sleep_us, timeout_us, \
> -				sleep_before_read, args...) \
> +#define poll_timeout(op, cond, sleep_us, timeout_us, sleep_before_read) \
>  ({ \
>  	u64 __timeout_us = (timeout_us); \
>  	unsigned long __sleep_us = (sleep_us); \
> @@ -43,12 +40,12 @@
>  	if (sleep_before_read && __sleep_us) \
>  		usleep_range((__sleep_us >> 2) + 1, __sleep_us); \
>  	for (;;) { \
> -		(val) = op(args); \
> +		op; \
>  		if (cond) \
>  			break; \
>  		if (__timeout_us && \
>  		    ktime_compare(ktime_get(), __timeout) > 0) { \
> -			(val) = op(args); \
> +			op; \
>  			break; \
>  		} \
>  		if (__sleep_us) \
> @@ -58,6 +55,30 @@
>  	(cond) ? 0 : -ETIMEDOUT; \
>  })
>  
> +/**
> + * read_poll_timeout - Periodically poll an address until a condition is
> + *                     met or a timeout occurs
> + * @op: accessor function (takes @args as its arguments)
> + * @val: Variable to read the value into
> + * @cond: Break condition (usually involving @val)
> + * @sleep_us: Maximum time to sleep between reads in us (0 tight-loops). Please
> + *            read usleep_range() function description for details and
> + *            limitations.
> + * @timeout_us: Timeout in us, 0 means never timeout
> + * @sleep_before_read: if it is true, sleep @sleep_us before read.
> + * @args: arguments for @op poll
> + *
> + * When available, you'll probably want to use one of the specialized
> + * macros defined below rather than this macro directly.
> + *
> + * Returns: 0 on success and -ETIMEDOUT upon a timeout. In either
> + * case, the last read value at @args is stored in @val. Must not
> + * be called from atomic context if sleep_us or timeout_us are used.
> + */
> +#define read_poll_timeout(op, val, cond, sleep_us, timeout_us, \
> +			  sleep_before_read, args...) \
> +	poll_timeout((val) = op(args), cond, sleep_us, timeout_us, sleep_before_read)
> +
>  /**
>   * read_poll_timeout_atomic - Periodically poll an address until a condition is
>   * 				met or a timeout occurs
> -- 
> 2.49.0

-- 
Jani Nikula, Intel

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

* Re: [PATCH 18/18] drm/i915/ddi: prefer read_poll_timeout() over readx_poll_timeout()
  2025-06-27 16:26         ` Jani Nikula
@ 2025-06-27 17:32           ` Ville Syrjälä
  2025-06-30 20:52           ` David Laight
  1 sibling, 0 replies; 34+ messages in thread
From: Ville Syrjälä @ 2025-06-27 17:32 UTC (permalink / raw)
  To: Jani Nikula
  Cc: intel-gfx, intel-xe, Imre Deak, Geert Uytterhoeven,
	Matt Wagantall, Dejin Zheng, linux-kernel

On Fri, Jun 27, 2025 at 07:26:22PM +0300, Jani Nikula wrote:
> On Fri, 27 Jun 2025, Ville Syrjälä <ville.syrjala@linux.intel.com> wrote:
> > On Fri, Jun 27, 2025 at 04:34:23PM +0300, Jani Nikula wrote:
> >> Internally the macro has:
> >> 
> >> #define read_poll_timeout(op, val, cond, sleep_us, timeout_us, \
> >> 				sleep_before_read, args...) \
> >> 
> >> ...
> >> 
> >> 		(val) = op(args); \
> >> 
> >> So you do need to provide an lvalue val, and you need to be able to add
> >> () after op. I think GCC allows not passing varargs. IOW you'd need to
> >> implement another macro (which could be used to implement the existing
> >> one, but not the other way round).
> >
> > Just get rid of the 'args' and 'val' and it'll work just fine.
> > Then it'll be almost identical to wait_for() (basically just missing the
> > increasing backoff stuff).
> >
> > AFAICS this thing was originally added just for reading a single
> > register and checking some bit/etc, so the name made some sense.
> > But now we're abusing it for all kinds of random things, so even
> > the name no longer makes that much sense.
> 
> Yeah, evolution not intelligent design.
> 
> > So I think just something like this would work fine for us:
> 
> LGTM, with the _atomic version for completeness.

The other differences between wait_for() and read_poll_timeout()
I see are:

- read_poll_timeout() always evaluates 'cond' at least twice.
  For some things I think it would make sense to omit 'op'
  entirely so we don't have to introduce pointless variables
  in the caller (eg. poll_timeout(, pipe_scanline_is_moving(...), ...))

  but the double evaluation of 'cond' there is not desirable.
  Should be an easy change to make read_poll_timeout() more
  like wait_for() and stash the return value into a variable.

- ktime_get() vs. ktime_get_raw(). I suppose it doesn't really
  matter too much which is used?

- 'op' and 'cond' are evaluated twice during the same iteration of
  the loop for the timeout case in read_poll_timeout(). wait_for()
  is a bit more optimal here by sampling the timeout first, then
  doing the 'op'+'cond', and finally checking whether the timeout
  happened.

  I suppose optimizing the timeout case isn't very critical. Though
  the code would be a bit less repetitive, with the caveat that we
  need an extra variable for the timeout result.

- wait_for() has an explicit compiler barrier to make sure 'cond'
  and the timeout evaluation aren't reordered. Though I think it's
  in the wrong spot for the cases where 'op' is the one that samples
  the thing that 'cond' checks.

  However I *think* ktime_get() being a function call should be enough
  to prevent that reordering from happening?

I guess I'll see what I can cook up to make this stuff
more agreeable...

-- 
Ville Syrjälä
Intel

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

* RE: [PATCH 02/18] drm/i915/hdcp: use generic read_poll_timeout() instead of __wait_for()
  2025-06-27 11:36 ` [PATCH 02/18] drm/i915/hdcp: " Jani Nikula
@ 2025-06-29 13:39   ` Kandpal, Suraj
  0 siblings, 0 replies; 34+ messages in thread
From: Kandpal, Suraj @ 2025-06-29 13:39 UTC (permalink / raw)
  To: Nikula, Jani, intel-gfx@lists.freedesktop.org,
	intel-xe@lists.freedesktop.org

> Subject: [PATCH 02/18] drm/i915/hdcp: use generic read_poll_timeout()
> instead of __wait_for()
> 
> 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>

LGTM,
Reviewed-by: Suraj Kandpal <suraj.kandpal@intel.com>

> ---
>  drivers/gpu/drm/i915/display/intel_hdcp.c | 9 +++++----
>  1 file changed, 5 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_hdcp.c
> b/drivers/gpu/drm/i915/display/intel_hdcp.c
> index 619ccfc33000..9eeeae03b129 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> @@ -324,10 +325,10 @@ 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 = read_poll_timeout(shim->read_ksv_ready, read_ret,
> +				read_ret || ksv_ready,
> +				100 * 1000, 5 * 1000 * 1000, false,
> +				dig_port, &ksv_ready);
>  	if (ret)
>  		return ret;
>  	if (read_ret)
> --
> 2.39.5


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

* ✗ CI.checkpatch: warning for drm/i915/display: convert to generic read_poll_timeout() (rev2)
  2025-06-27 11:36 [PATCH 00/18] drm/i915/display: convert to generic read_poll_timeout() Jani Nikula
                   ` (17 preceding siblings ...)
  2025-06-27 11:36 ` [PATCH 18/18] drm/i915/ddi: prefer read_poll_timeout() over readx_poll_timeout() Jani Nikula
@ 2025-06-30 15:35 ` Patchwork
  2025-06-30 15:36 ` ✓ CI.KUnit: success " Patchwork
                   ` (3 subsequent siblings)
  22 siblings, 0 replies; 34+ messages in thread
From: Patchwork @ 2025-06-30 15:35 UTC (permalink / raw)
  To: Jani Nikula; +Cc: intel-xe

== Series Details ==

Series: drm/i915/display: convert to generic read_poll_timeout() (rev2)
URL   : https://patchwork.freedesktop.org/series/150872/
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
f8ff75ae1d2127635239b134695774ed4045d05b
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit b0e754cfcc1e976651b48ec3d75424ca72aed247
Author: Jani Nikula <jani.nikula@intel.com>
Date:   Fri Jun 27 17:15:29 2025 +0300

    drm/i915/ddi: prefer read_poll_timeout() over readx_poll_timeout()
    
    Unify on using read_poll_timeout() 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>
+ /mt/dim checkpatch 51249df9fddf0b362b0e4d837e53830c22f3e73c drm-intel
be2f33918fc9 drm/i915/hdmi: use generic read_poll_timeout() instead of __wait_for()
a1201f345e4e drm/i915/hdcp: use generic read_poll_timeout() instead of __wait_for()
545fcbf162bb drm/i915/dsi: use generic read_poll_timeout() instead of wait_for_us()
c4753e481f5b drm/i915/dsi-pll: use generic read_poll_timeout() instead of wait_for()
2bcbde35ef70 drm/i915/gmbus: use generic read_poll_timeout*() instead of wait_for*()
3c5dd5b5b043 drm/i915/wm: use generic read_poll_timeout() instead of wait_for()
55a365ff9b86 drm/i915/cdclk: use generic read_poll_timeout() instead of wait_for()
-:67: WARNING:LONG_LINE: line length of 112 exceeds 100 columns
#67: 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, 77 lines checked
45af41b89398 drm/i915/power: use generic read_poll_timeout() instead of wait_for()
c188e1f35fd9 drm/i915/power-well: use generic read_poll_timeout() instead of wait_for() for DKL PHY
9ba503bf5a07 drm/i915/power-well: use generic read_poll_timeout() instead of wait_for() for VLV/CHV
230d57347667 drm/i915/dp: use generic read_poll_timeout() instead of wait_for()
b50b7f63f44b drm/i915/dp: use generic read_poll_timeout() instead of wait_for() in link training
87372a16ebf3 drm/i915/vblank: use generic read_poll_timeout() instead of wait_for()
0221d83ee8b6 drm/i915/tc: use generic read_poll_timeout() instead of wait_for()
e32ab41eadc3 drm/i915/dsb: use generic read_poll_timeout() instead of wait_for()
c7d73a2e4940 drm/i915/lspcon: use generic read_poll_timeout() instead of wait_for()
6ad8d2b51631 drm/i915/opregion: use generic read_poll_timeout() instead of wait_for()
b0e754cfcc1e drm/i915/ddi: prefer read_poll_timeout() over readx_poll_timeout()



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

* ✓ CI.KUnit: success for drm/i915/display: convert to generic read_poll_timeout() (rev2)
  2025-06-27 11:36 [PATCH 00/18] drm/i915/display: convert to generic read_poll_timeout() Jani Nikula
                   ` (18 preceding siblings ...)
  2025-06-30 15:35 ` ✗ CI.checkpatch: warning for drm/i915/display: convert to generic read_poll_timeout() (rev2) Patchwork
@ 2025-06-30 15:36 ` Patchwork
  2025-06-30 15:50 ` ✗ CI.checksparse: warning " Patchwork
                   ` (2 subsequent siblings)
  22 siblings, 0 replies; 34+ messages in thread
From: Patchwork @ 2025-06-30 15:36 UTC (permalink / raw)
  To: Jani Nikula; +Cc: intel-xe

== Series Details ==

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

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[15:35:04] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[15:35:08] 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:35:35] Starting KUnit Kernel (1/1)...
[15:35:35] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[15:35:35] ================== guc_buf (11 subtests) ===================
[15:35:35] [PASSED] test_smallest
[15:35:35] [PASSED] test_largest
[15:35:35] [PASSED] test_granular
[15:35:35] [PASSED] test_unique
[15:35:35] [PASSED] test_overlap
[15:35:35] [PASSED] test_reusable
[15:35:35] [PASSED] test_too_big
[15:35:35] [PASSED] test_flush
[15:35:35] [PASSED] test_lookup
[15:35:35] [PASSED] test_data
[15:35:35] [PASSED] test_class
[15:35:35] ===================== [PASSED] guc_buf =====================
[15:35:35] =================== guc_dbm (7 subtests) ===================
[15:35:35] [PASSED] test_empty
[15:35:35] [PASSED] test_default
[15:35:35] ======================== test_size  ========================
[15:35:35] [PASSED] 4
[15:35:35] [PASSED] 8
[15:35:35] [PASSED] 32
[15:35:35] [PASSED] 256
[15:35:35] ==================== [PASSED] test_size ====================
[15:35:35] ======================= test_reuse  ========================
[15:35:35] [PASSED] 4
[15:35:35] [PASSED] 8
[15:35:35] [PASSED] 32
[15:35:35] [PASSED] 256
[15:35:35] =================== [PASSED] test_reuse ====================
[15:35:35] =================== test_range_overlap  ====================
[15:35:35] [PASSED] 4
[15:35:35] [PASSED] 8
[15:35:35] [PASSED] 32
[15:35:35] [PASSED] 256
[15:35:35] =============== [PASSED] test_range_overlap ================
[15:35:35] =================== test_range_compact  ====================
[15:35:35] [PASSED] 4
[15:35:35] [PASSED] 8
[15:35:35] [PASSED] 32
[15:35:35] [PASSED] 256
[15:35:35] =============== [PASSED] test_range_compact ================
[15:35:35] ==================== test_range_spare  =====================
[15:35:35] [PASSED] 4
[15:35:35] [PASSED] 8
[15:35:35] [PASSED] 32
[15:35:35] [PASSED] 256
[15:35:35] ================ [PASSED] test_range_spare =================
[15:35:35] ===================== [PASSED] guc_dbm =====================
[15:35:35] =================== guc_idm (6 subtests) ===================
[15:35:35] [PASSED] bad_init
[15:35:35] [PASSED] no_init
[15:35:35] [PASSED] init_fini
[15:35:35] [PASSED] check_used
[15:35:35] [PASSED] check_quota
[15:35:35] [PASSED] check_all
[15:35:35] ===================== [PASSED] guc_idm =====================
[15:35:35] ================== no_relay (3 subtests) ===================
[15:35:35] [PASSED] xe_drops_guc2pf_if_not_ready
[15:35:35] [PASSED] xe_drops_guc2vf_if_not_ready
[15:35:35] [PASSED] xe_rejects_send_if_not_ready
[15:35:35] ==================== [PASSED] no_relay =====================
[15:35:35] ================== pf_relay (14 subtests) ==================
[15:35:35] [PASSED] pf_rejects_guc2pf_too_short
[15:35:35] [PASSED] pf_rejects_guc2pf_too_long
[15:35:35] [PASSED] pf_rejects_guc2pf_no_payload
[15:35:35] [PASSED] pf_fails_no_payload
[15:35:35] [PASSED] pf_fails_bad_origin
[15:35:35] [PASSED] pf_fails_bad_type
[15:35:35] [PASSED] pf_txn_reports_error
[15:35:35] [PASSED] pf_txn_sends_pf2guc
[15:35:35] [PASSED] pf_sends_pf2guc
[15:35:35] [SKIPPED] pf_loopback_nop
[15:35:35] [SKIPPED] pf_loopback_echo
[15:35:35] [SKIPPED] pf_loopback_fail
[15:35:35] [SKIPPED] pf_loopback_busy
[15:35:35] [SKIPPED] pf_loopback_retry
[15:35:35] ==================== [PASSED] pf_relay =====================
[15:35:35] ================== vf_relay (3 subtests) ===================
[15:35:35] [PASSED] vf_rejects_guc2vf_too_short
[15:35:35] [PASSED] vf_rejects_guc2vf_too_long
[15:35:35] [PASSED] vf_rejects_guc2vf_no_payload
[15:35:35] ==================== [PASSED] vf_relay =====================
[15:35:35] ================= pf_service (11 subtests) =================
[15:35:35] [PASSED] pf_negotiate_any
[15:35:35] [PASSED] pf_negotiate_base_match
[15:35:35] [PASSED] pf_negotiate_base_newer
[15:35:35] [PASSED] pf_negotiate_base_next
[15:35:35] [SKIPPED] pf_negotiate_base_older
[15:35:35] [PASSED] pf_negotiate_base_prev
[15:35:35] [PASSED] pf_negotiate_latest_match
[15:35:35] [PASSED] pf_negotiate_latest_newer
[15:35:35] [PASSED] pf_negotiate_latest_next
[15:35:35] [SKIPPED] pf_negotiate_latest_older
[15:35:35] [SKIPPED] pf_negotiate_latest_prev
[15:35:35] =================== [PASSED] pf_service ====================
[15:35:35] ===================== lmtt (1 subtest) =====================
[15:35:35] ======================== test_ops  =========================
[15:35:35] [PASSED] 2-level
[15:35:35] [PASSED] multi-level
[15:35:35] ==================== [PASSED] test_ops =====================
[15:35:35] ====================== [PASSED] lmtt =======================
[15:35:35] =================== xe_mocs (2 subtests) ===================
[15:35:35] ================ xe_live_mocs_kernel_kunit  ================
[15:35:35] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[15:35:35] ================ xe_live_mocs_reset_kunit  =================
[15:35:35] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[15:35:35] ==================== [SKIPPED] xe_mocs =====================
[15:35:35] ================= xe_migrate (2 subtests) ==================
[15:35:35] ================= xe_migrate_sanity_kunit  =================
[15:35:35] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[15:35:35] ================== xe_validate_ccs_kunit  ==================
[15:35:35] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[15:35:35] =================== [SKIPPED] xe_migrate ===================
[15:35:35] ================== xe_dma_buf (1 subtest) ==================
[15:35:35] ==================== xe_dma_buf_kunit  =====================
[15:35:35] ================ [SKIPPED] xe_dma_buf_kunit ================
[15:35:35] =================== [SKIPPED] xe_dma_buf ===================
[15:35:35] ================= xe_bo_shrink (1 subtest) =================
[15:35:35] =================== xe_bo_shrink_kunit  ====================
[15:35:35] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[15:35:35] ================== [SKIPPED] xe_bo_shrink ==================
[15:35:35] ==================== xe_bo (2 subtests) ====================
[15:35:35] ================== xe_ccs_migrate_kunit  ===================
[15:35:35] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[15:35:35] ==================== xe_bo_evict_kunit  ====================
[15:35:35] =============== [SKIPPED] xe_bo_evict_kunit ================
[15:35:35] ===================== [SKIPPED] xe_bo ======================
[15:35:35] ==================== args (11 subtests) ====================
[15:35:35] [PASSED] count_args_test
[15:35:35] [PASSED] call_args_example
[15:35:35] [PASSED] call_args_test
[15:35:35] [PASSED] drop_first_arg_example
[15:35:35] [PASSED] drop_first_arg_test
[15:35:35] [PASSED] first_arg_example
[15:35:35] [PASSED] first_arg_test
[15:35:35] [PASSED] last_arg_example
[15:35:35] [PASSED] last_arg_test
[15:35:35] [PASSED] pick_arg_example
[15:35:35] [PASSED] sep_comma_example
[15:35:35] ====================== [PASSED] args =======================
[15:35:35] =================== xe_pci (2 subtests) ====================
[15:35:35] ==================== check_graphics_ip  ====================
[15:35:35] [PASSED] 12.70 Xe_LPG
[15:35:35] [PASSED] 12.71 Xe_LPG
[15:35:35] [PASSED] 12.74 Xe_LPG+
[15:35:35] [PASSED] 20.01 Xe2_HPG
[15:35:35] [PASSED] 20.02 Xe2_HPG
[15:35:35] [PASSED] 20.04 Xe2_LPG
[15:35:35] [PASSED] 30.00 Xe3_LPG
[15:35:35] [PASSED] 30.01 Xe3_LPG
[15:35:35] [PASSED] 30.03 Xe3_LPG
[15:35:35] ================ [PASSED] check_graphics_ip ================
[15:35:35] ===================== check_media_ip  ======================
[15:35:35] [PASSED] 13.00 Xe_LPM+
[15:35:35] [PASSED] 13.01 Xe2_HPM
[15:35:35] [PASSED] 20.00 Xe2_LPM
[15:35:35] [PASSED] 30.00 Xe3_LPM
[15:35:35] [PASSED] 30.02 Xe3_LPM
stty: 'standard input': Inappropriate ioctl for device
[15:35:35] ================= [PASSED] check_media_ip ==================
[15:35:35] ===================== [PASSED] xe_pci ======================
[15:35:35] =================== xe_rtp (2 subtests) ====================
[15:35:35] =============== xe_rtp_process_to_sr_tests  ================
[15:35:35] [PASSED] coalesce-same-reg
[15:35:35] [PASSED] no-match-no-add
[15:35:35] [PASSED] match-or
[15:35:35] [PASSED] match-or-xfail
[15:35:35] [PASSED] no-match-no-add-multiple-rules
[15:35:35] [PASSED] two-regs-two-entries
[15:35:35] [PASSED] clr-one-set-other
[15:35:35] [PASSED] set-field
[15:35:35] [PASSED] conflict-duplicate
[15:35:35] [PASSED] conflict-not-disjoint
[15:35:35] [PASSED] conflict-reg-type
[15:35:35] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[15:35:35] ================== xe_rtp_process_tests  ===================
[15:35:35] [PASSED] active1
[15:35:35] [PASSED] active2
[15:35:35] [PASSED] active-inactive
[15:35:35] [PASSED] inactive-active
[15:35:35] [PASSED] inactive-1st_or_active-inactive
[15:35:35] [PASSED] inactive-2nd_or_active-inactive
[15:35:35] [PASSED] inactive-last_or_active-inactive
[15:35:35] [PASSED] inactive-no_or_active-inactive
[15:35:35] ============== [PASSED] xe_rtp_process_tests ===============
[15:35:35] ===================== [PASSED] xe_rtp ======================
[15:35:35] ==================== xe_wa (1 subtest) =====================
[15:35:35] ======================== xe_wa_gt  =========================
[15:35:35] [PASSED] TIGERLAKE (B0)
[15:35:35] [PASSED] DG1 (A0)
[15:35:35] [PASSED] DG1 (B0)
[15:35:35] [PASSED] ALDERLAKE_S (A0)
[15:35:35] [PASSED] ALDERLAKE_S (B0)
[15:35:35] [PASSED] ALDERLAKE_S (C0)
[15:35:35] [PASSED] ALDERLAKE_S (D0)
[15:35:35] [PASSED] ALDERLAKE_P (A0)
[15:35:35] [PASSED] ALDERLAKE_P (B0)
[15:35:35] [PASSED] ALDERLAKE_P (C0)
[15:35:35] [PASSED] ALDERLAKE_S_RPLS (D0)
[15:35:35] [PASSED] ALDERLAKE_P_RPLU (E0)
[15:35:35] [PASSED] DG2_G10 (C0)
[15:35:35] [PASSED] DG2_G11 (B1)
[15:35:35] [PASSED] DG2_G12 (A1)
[15:35:35] [PASSED] METEORLAKE (g:A0, m:A0)
[15:35:35] [PASSED] METEORLAKE (g:A0, m:A0)
[15:35:35] [PASSED] METEORLAKE (g:A0, m:A0)
[15:35:35] [PASSED] LUNARLAKE (g:A0, m:A0)
[15:35:35] [PASSED] LUNARLAKE (g:B0, m:A0)
[15:35:35] [PASSED] BATTLEMAGE (g:A0, m:A1)
[15:35:35] ==================== [PASSED] xe_wa_gt =====================
[15:35:35] ====================== [PASSED] xe_wa ======================
[15:35:35] ============================================================
[15:35:35] Testing complete. Ran 145 tests: passed: 129, skipped: 16
[15:35:35] Elapsed time: 31.162s total, 4.130s configuring, 26.715s building, 0.299s running

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

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

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



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

* ✗ CI.checksparse: warning for drm/i915/display: convert to generic read_poll_timeout() (rev2)
  2025-06-27 11:36 [PATCH 00/18] drm/i915/display: convert to generic read_poll_timeout() Jani Nikula
                   ` (19 preceding siblings ...)
  2025-06-30 15:36 ` ✓ CI.KUnit: success " Patchwork
@ 2025-06-30 15:50 ` Patchwork
  2025-06-30 16:17 ` ✓ Xe.CI.BAT: success " Patchwork
  2025-07-01 17:57 ` ✗ Xe.CI.Full: failure " Patchwork
  22 siblings, 0 replies; 34+ messages in thread
From: Patchwork @ 2025-06-30 15:50 UTC (permalink / raw)
  To: Jani Nikula; +Cc: intel-xe

== Series Details ==

Series: drm/i915/display: convert to generic read_poll_timeout() (rev2)
URL   : https://patchwork.freedesktop.org/series/150872/
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 51249df9fddf0b362b0e4d837e53830c22f3e73c
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_display_types.h:2019:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2019:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2019:24: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:2032: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] 34+ messages in thread

* ✓ Xe.CI.BAT: success for drm/i915/display: convert to generic read_poll_timeout() (rev2)
  2025-06-27 11:36 [PATCH 00/18] drm/i915/display: convert to generic read_poll_timeout() Jani Nikula
                   ` (20 preceding siblings ...)
  2025-06-30 15:50 ` ✗ CI.checksparse: warning " Patchwork
@ 2025-06-30 16:17 ` Patchwork
  2025-07-01 17:57 ` ✗ Xe.CI.Full: failure " Patchwork
  22 siblings, 0 replies; 34+ messages in thread
From: Patchwork @ 2025-06-30 16:17 UTC (permalink / raw)
  To: Jani Nikula; +Cc: intel-xe

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

== Series Details ==

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

== Summary ==

CI Bug Log - changes from xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd_BAT -> xe-pw-150872v2_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (9 -> 8)
------------------------------

  Missing    (1): bat-adlp-vm 


Changes
-------

  No changes found


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

  * Linux: xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd -> xe-pw-150872v2

  IGT_8431: 8431
  xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd: 078be02b4585b9a9703401d89a3ac93e2d15a6bd
  xe-pw-150872v2: 150872v2

== Logs ==

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

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

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

* Re: [PATCH 18/18] drm/i915/ddi: prefer read_poll_timeout() over readx_poll_timeout()
  2025-06-27 16:26         ` Jani Nikula
  2025-06-27 17:32           ` Ville Syrjälä
@ 2025-06-30 20:52           ` David Laight
  1 sibling, 0 replies; 34+ messages in thread
From: David Laight @ 2025-06-30 20:52 UTC (permalink / raw)
  To: Jani Nikula
  Cc: Ville Syrjälä, intel-gfx, intel-xe, Imre Deak,
	Geert Uytterhoeven, Matt Wagantall, Dejin Zheng, linux-kernel

On Fri, 27 Jun 2025 19:26:22 +0300
Jani Nikula <jani.nikula@intel.com> wrote:

> On Fri, 27 Jun 2025, Ville Syrjälä <ville.syrjala@linux.intel.com> wrote:
> > On Fri, Jun 27, 2025 at 04:34:23PM +0300, Jani Nikula wrote:  
> >> Internally the macro has:
> >> 
> >> #define read_poll_timeout(op, val, cond, sleep_us, timeout_us, \
> >> 				sleep_before_read, args...) \
> >> 
> >> ...
> >> 
> >> 		(val) = op(args); \
> >> 
> >> So you do need to provide an lvalue val, and you need to be able to add
> >> () after op. I think GCC allows not passing varargs. IOW you'd need to
> >> implement another macro (which could be used to implement the existing
> >> one, but not the other way round).  
> >
> > Just get rid of the 'args' and 'val' and it'll work just fine.
> > Then it'll be almost identical to wait_for() (basically just missing the
> > increasing backoff stuff).
> >
> > AFAICS this thing was originally added just for reading a single
> > register and checking some bit/etc, so the name made some sense.
> > But now we're abusing it for all kinds of random things, so even
> > the name no longer makes that much sense.  
> 
> Yeah, evolution not intelligent design.
> 
> > So I think just something like this would work fine for us:  
> 
> LGTM, with the _atomic version for completeness.
> 
> Want to send it to lkml?
> 
> 
> BR,
> Jani.
> 
> 
> >
> > diff --git a/include/linux/iopoll.h b/include/linux/iopoll.h
> > index 91324c331a4b..9c38fd732028 100644
> > --- a/include/linux/iopoll.h
> > +++ b/include/linux/iopoll.h
> > @@ -14,27 +14,24 @@
> >  #include <linux/io.h>
> >  
> >  /**
> > - * read_poll_timeout - Periodically poll an address until a condition is
> > - *			met or a timeout occurs
> > - * @op: accessor function (takes @args as its arguments)
> > - * @val: Variable to read the value into
> > - * @cond: Break condition (usually involving @val)
> > - * @sleep_us: Maximum time to sleep between reads in us (0 tight-loops). Please
> > - *            read usleep_range() function description for details and
> > + * poll_timeout - Periodically poll and perform an operaion until
> > + *                a condition is met or a timeout occurs
> > + *
> > + * @op: Operation
> > + * @cond: Break condition
> > + * @sleep_us: Maximum time to sleep between operations in us (0 tight-loops).
> > + *            Please read usleep_range() function description for details and
> >   *            limitations.
> >   * @timeout_us: Timeout in us, 0 means never timeout
> > - * @sleep_before_read: if it is true, sleep @sleep_us before read.
> > - * @args: arguments for @op poll
> > + * @sleep_before_read: if it is true, sleep @sleep_us before operation.
> >   *
> >   * When available, you'll probably want to use one of the specialized
> >   * macros defined below rather than this macro directly.
> >   *
> > - * Returns: 0 on success and -ETIMEDOUT upon a timeout. In either
> > - * case, the last read value at @args is stored in @val. Must not
> > + * Returns: 0 on success and -ETIMEDOUT upon a timeout. Must not
> >   * be called from atomic context if sleep_us or timeout_us are used.
> >   */
> > -#define read_poll_timeout(op, val, cond, sleep_us, timeout_us, \
> > -				sleep_before_read, args...) \
> > +#define poll_timeout(op, cond, sleep_us, timeout_us, sleep_before_read) \

I might name it poll_timeout_us(...) so that the units are obvious
at the call site.
There are so many different units for timeouts its is worth always
appending _sec, _ms, _us (etc) just to avoid all the silly bugs.

	David


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

* ✗ Xe.CI.Full: failure for drm/i915/display: convert to generic read_poll_timeout() (rev2)
  2025-06-27 11:36 [PATCH 00/18] drm/i915/display: convert to generic read_poll_timeout() Jani Nikula
                   ` (21 preceding siblings ...)
  2025-06-30 16:17 ` ✓ Xe.CI.BAT: success " Patchwork
@ 2025-07-01 17:57 ` Patchwork
  22 siblings, 0 replies; 34+ messages in thread
From: Patchwork @ 2025-07-01 17:57 UTC (permalink / raw)
  To: Jani Nikula; +Cc: intel-xe

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

== Series Details ==

Series: drm/i915/display: convert to generic read_poll_timeout() (rev2)
URL   : https://patchwork.freedesktop.org/series/150872/
State : failure

== Summary ==

CI Bug Log - changes from xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd_FULL -> xe-pw-150872v2_FULL
====================================================

Summary
-------

  **FAILURE**

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

  

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

  No changes in participating hosts

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

  Here are the unknown changes that may have been introduced in xe-pw-150872v2_FULL:

### IGT changes ###

#### Possible regressions ####

  * igt@kms_flip@blocking-absolute-wf_vblank:
    - shard-bmg:          [PASS][1] -> [FAIL][2] +1 other test fail
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-6/igt@kms_flip@blocking-absolute-wf_vblank.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-bmg-4/igt@kms_flip@blocking-absolute-wf_vblank.html

  * igt@kms_flip@blocking-absolute-wf_vblank@b-dp2:
    - shard-bmg:          NOTRUN -> [FAIL][3]
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-bmg-4/igt@kms_flip@blocking-absolute-wf_vblank@b-dp2.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-new-bo-map:
    - shard-lnl:          [PASS][4] -> [FAIL][5]
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-lnl-4/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-new-bo-map.html
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-lnl-3/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-new-bo-map.html

  
#### Warnings ####

  * igt@intel_hwmon@hwmon-write:
    - shard-adlp:         [SKIP][6] ([Intel XE#1125]) -> [SKIP][7]
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-1/igt@intel_hwmon@hwmon-write.html
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-adlp-8/igt@intel_hwmon@hwmon-write.html

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

  Here are the changes found in xe-pw-150872v2_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_big_fb@linear-16bpp-rotate-270:
    - shard-dg2-set2:     NOTRUN -> [SKIP][8] ([Intel XE#316]) +1 other test skip
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-435/igt@kms_big_fb@linear-16bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip:
    - shard-adlp:         [PASS][9] -> [SKIP][10] ([Intel XE#4947]) +2 other tests skip
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-adlp-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0:
    - shard-dg2-set2:     NOTRUN -> [SKIP][11] ([Intel XE#1124]) +3 other tests skip
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-433/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-bmg:          NOTRUN -> [SKIP][12] ([Intel XE#1124]) +1 other test skip
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-bmg-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_fb@yf-tiled-addfb-size-overflow:
    - shard-dg2-set2:     NOTRUN -> [SKIP][13] ([Intel XE#610])
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-433/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html

  * igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
    - shard-dg2-set2:     NOTRUN -> [SKIP][14] ([Intel XE#2191])
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-464/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html

  * igt@kms_bw@linear-tiling-4-displays-2160x1440p:
    - shard-dg2-set2:     NOTRUN -> [SKIP][15] ([Intel XE#367]) +2 other tests skip
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-433/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html

  * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-dp-2:
    - shard-dg2-set2:     NOTRUN -> [SKIP][16] ([Intel XE#455] / [Intel XE#787]) +20 other tests skip
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-432/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-dp-2.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:
    - shard-dg2-set2:     NOTRUN -> [SKIP][17] ([Intel XE#787]) +118 other tests skip
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-435/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs:
    - shard-dg2-set2:     [PASS][18] -> [SKIP][19] ([Intel XE#2351] / [Intel XE#4208])
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-463/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs.html
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-464/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][20] ([Intel XE#2887])
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-bmg-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html

  * igt@kms_chamelium_color@ctm-blue-to-red:
    - shard-bmg:          NOTRUN -> [SKIP][21] ([Intel XE#2325])
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-bmg-4/igt@kms_chamelium_color@ctm-blue-to-red.html
    - shard-dg2-set2:     NOTRUN -> [SKIP][22] ([Intel XE#306]) +1 other test skip
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-464/igt@kms_chamelium_color@ctm-blue-to-red.html

  * igt@kms_chamelium_edid@vga-edid-read:
    - shard-dg2-set2:     NOTRUN -> [SKIP][23] ([Intel XE#373]) +5 other tests skip
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-435/igt@kms_chamelium_edid@vga-edid-read.html

  * igt@kms_content_protection@atomic:
    - shard-dg2-set2:     NOTRUN -> [FAIL][24] ([Intel XE#1178]) +1 other test fail
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-433/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@content-type-change:
    - shard-bmg:          NOTRUN -> [SKIP][25] ([Intel XE#2341])
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-bmg-4/igt@kms_content_protection@content-type-change.html

  * igt@kms_content_protection@uevent@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][26] ([Intel XE#1188])
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-bmg-1/igt@kms_content_protection@uevent@pipe-a-dp-2.html

  * igt@kms_cursor_crc@cursor-onscreen-512x512:
    - shard-dg2-set2:     NOTRUN -> [SKIP][27] ([Intel XE#308])
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-435/igt@kms_cursor_crc@cursor-onscreen-512x512.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
    - shard-bmg:          [PASS][28] -> [SKIP][29] ([Intel XE#2291]) +3 other tests skip
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@forked-move:
    - shard-dg2-set2:     [PASS][30] -> [SKIP][31] ([Intel XE#4208] / [i915#2575]) +4 other tests skip
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-463/igt@kms_cursor_legacy@forked-move.html
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-464/igt@kms_cursor_legacy@forked-move.html

  * igt@kms_dp_link_training@non-uhbr-sst:
    - shard-bmg:          [PASS][32] -> [SKIP][33] ([Intel XE#4354])
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-4/igt@kms_dp_link_training@non-uhbr-sst.html
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-bmg-6/igt@kms_dp_link_training@non-uhbr-sst.html

  * igt@kms_dp_link_training@uhbr-sst:
    - shard-dg2-set2:     NOTRUN -> [SKIP][34] ([Intel XE#4356])
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-435/igt@kms_dp_link_training@uhbr-sst.html

  * igt@kms_fbcon_fbt@psr:
    - shard-dg2-set2:     NOTRUN -> [SKIP][35] ([Intel XE#776])
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-433/igt@kms_fbcon_fbt@psr.html

  * igt@kms_feature_discovery@display-1x:
    - shard-adlp:         [PASS][36] -> [SKIP][37] ([Intel XE#4950]) +24 other tests skip
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-1/igt@kms_feature_discovery@display-1x.html
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-adlp-8/igt@kms_feature_discovery@display-1x.html

  * igt@kms_feature_discovery@psr1:
    - shard-dg2-set2:     NOTRUN -> [SKIP][38] ([Intel XE#1135])
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-435/igt@kms_feature_discovery@psr1.html

  * igt@kms_flip@2x-flip-vs-dpms-on-nop:
    - shard-bmg:          [PASS][39] -> [SKIP][40] ([Intel XE#2316]) +2 other tests skip
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-2/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop.html

  * igt@kms_flip@flip-vs-absolute-wf_vblank:
    - shard-dg2-set2:     NOTRUN -> [SKIP][41] ([Intel XE#4208] / [i915#2575]) +25 other tests skip
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-464/igt@kms_flip@flip-vs-absolute-wf_vblank.html

  * igt@kms_flip@flip-vs-expired-vblank@a-edp1:
    - shard-lnl:          [PASS][42] -> [FAIL][43] ([Intel XE#301]) +1 other test fail
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html

  * igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-x-to-y:
    - shard-adlp:         [PASS][44] -> [FAIL][45] ([Intel XE#1874])
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-9/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-x-to-y.html
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-adlp-6/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-x-to-y.html

  * igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-to-y:
    - shard-adlp:         [PASS][46] -> [DMESG-FAIL][47] ([Intel XE#4543]) +1 other test dmesg-fail
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-9/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-to-y.html
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-adlp-6/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-to-y.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][48] ([Intel XE#2311]) +3 other tests skip
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][49] ([Intel XE#4141]) +1 other test skip
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
    - shard-dg2-set2:     NOTRUN -> [SKIP][50] ([Intel XE#651]) +20 other tests skip
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][51] ([Intel XE#2351] / [Intel XE#4208]) +3 other tests skip
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][52] ([Intel XE#653]) +19 other tests skip
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][53] ([Intel XE#2313]) +2 other tests skip
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html

  * igt@kms_hdr@static-toggle:
    - shard-bmg:          [PASS][54] -> [SKIP][55] ([Intel XE#1503]) +1 other test skip
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-4/igt@kms_hdr@static-toggle.html
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-bmg-6/igt@kms_hdr@static-toggle.html

  * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
    - shard-dg2-set2:     NOTRUN -> [SKIP][56] ([Intel XE#2925]) +1 other test skip
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-435/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html

  * igt@kms_lease@lease-unleased-connector:
    - shard-adlp:         [PASS][57] -> [ABORT][58] ([Intel XE#2953]) +1 other test abort
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-9/igt@kms_lease@lease-unleased-connector.html
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-adlp-6/igt@kms_lease@lease-unleased-connector.html

  * igt@kms_plane@plane-panning-bottom-right-suspend:
    - shard-adlp:         [PASS][59] -> [DMESG-WARN][60] ([Intel XE#2953] / [Intel XE#4173]) +9 other tests dmesg-warn
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-9/igt@kms_plane@plane-panning-bottom-right-suspend.html
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-adlp-6/igt@kms_plane@plane-panning-bottom-right-suspend.html

  * igt@kms_plane_multiple@2x-tiling-4:
    - shard-bmg:          [PASS][61] -> [SKIP][62] ([Intel XE#4596])
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-4.html
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-4.html

  * igt@kms_pm_backlight@bad-brightness:
    - shard-dg2-set2:     NOTRUN -> [SKIP][63] ([Intel XE#870])
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-433/igt@kms_pm_backlight@bad-brightness.html

  * igt@kms_pm_dc@dc6-dpms:
    - shard-adlp:         [PASS][64] -> [FAIL][65] ([Intel XE#718])
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-8/igt@kms_pm_dc@dc6-dpms.html
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-adlp-9/igt@kms_pm_dc@dc6-dpms.html

  * igt@kms_pm_rpm@modeset-lpsp:
    - shard-adlp:         [PASS][66] -> [SKIP][67] ([Intel XE#4962])
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-1/igt@kms_pm_rpm@modeset-lpsp.html
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-adlp-8/igt@kms_pm_rpm@modeset-lpsp.html

  * igt@kms_pm_rpm@modeset-lpsp-stress:
    - shard-bmg:          NOTRUN -> [SKIP][68] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-bmg-4/igt@kms_pm_rpm@modeset-lpsp-stress.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
    - shard-dg2-set2:     NOTRUN -> [SKIP][69] ([Intel XE#1489]) +3 other tests skip
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-464/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html

  * igt@kms_psr@fbc-psr2-primary-render:
    - shard-dg2-set2:     NOTRUN -> [SKIP][70] ([Intel XE#2850] / [Intel XE#929]) +9 other tests skip
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-433/igt@kms_psr@fbc-psr2-primary-render.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
    - shard-dg2-set2:     NOTRUN -> [SKIP][71] ([Intel XE#3414]) +1 other test skip
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-433/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html

  * igt@kms_setmode@invalid-clone-single-crtc:
    - shard-bmg:          [PASS][72] -> [SKIP][73] ([Intel XE#1435])
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-4/igt@kms_setmode@invalid-clone-single-crtc.html
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-dg2-set2:     NOTRUN -> [FAIL][74] ([Intel XE#1729])
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-433/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_vrr@flip-dpms:
    - shard-dg2-set2:     NOTRUN -> [SKIP][75] ([Intel XE#455]) +6 other tests skip
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-433/igt@kms_vrr@flip-dpms.html

  * igt@xe_eu_stall@invalid-gt-id:
    - shard-dg2-set2:     NOTRUN -> [SKIP][76] ([Intel XE#5308])
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-435/igt@xe_eu_stall@invalid-gt-id.html

  * igt@xe_eudebug@basic-close:
    - shard-dg2-set2:     NOTRUN -> [SKIP][77] ([Intel XE#4837]) +7 other tests skip
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-433/igt@xe_eudebug@basic-close.html

  * igt@xe_eudebug_online@resume-one:
    - shard-bmg:          NOTRUN -> [SKIP][78] ([Intel XE#4837])
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-bmg-4/igt@xe_eudebug_online@resume-one.html

  * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][79] ([Intel XE#2322])
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-bmg-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind.html

  * igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap:
    - shard-dg2-set2:     [PASS][80] -> [SKIP][81] ([Intel XE#1392]) +4 other tests skip
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-433/igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap.html
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap.html

  * igt@xe_exec_fault_mode@once-invalid-userptr-fault:
    - shard-dg2-set2:     NOTRUN -> [SKIP][82] ([Intel XE#288]) +14 other tests skip
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-435/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html

  * igt@xe_exec_mix_modes@exec-simple-batch-store-lr:
    - shard-dg2-set2:     NOTRUN -> [SKIP][83] ([Intel XE#2360])
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-435/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html

  * igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-multi-fault:
    - shard-dg2-set2:     NOTRUN -> [SKIP][84] ([Intel XE#4915]) +140 other tests skip
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-433/igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-multi-fault.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-free-huge-nomemset:
    - shard-bmg:          NOTRUN -> [SKIP][85] ([Intel XE#4943])
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-bmg-4/igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-free-huge-nomemset.html

  * igt@xe_exec_threads@threads-shared-vm-userptr-invalidate-race:
    - shard-dg2-set2:     [PASS][86] -> [SKIP][87] ([Intel XE#4208]) +10 other tests skip
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-463/igt@xe_exec_threads@threads-shared-vm-userptr-invalidate-race.html
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-464/igt@xe_exec_threads@threads-shared-vm-userptr-invalidate-race.html

  * igt@xe_media_fill@media-fill:
    - shard-dg2-set2:     NOTRUN -> [SKIP][88] ([Intel XE#560])
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-433/igt@xe_media_fill@media-fill.html

  * igt@xe_module_load@load:
    - shard-dg2-set2:     ([PASS][89], [PASS][90], [PASS][91], [PASS][92], [PASS][93], [PASS][94], [PASS][95], [PASS][96], [PASS][97], [PASS][98], [PASS][99], [PASS][100], [PASS][101], [PASS][102], [PASS][103], [PASS][104], [PASS][105], [PASS][106], [PASS][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113]) -> ([PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [PASS][122], [PASS][123], [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]) ([Intel XE#378])
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-432/igt@xe_module_load@load.html
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-463/igt@xe_module_load@load.html
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-464/igt@xe_module_load@load.html
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-464/igt@xe_module_load@load.html
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-463/igt@xe_module_load@load.html
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-463/igt@xe_module_load@load.html
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-464/igt@xe_module_load@load.html
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-432/igt@xe_module_load@load.html
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-433/igt@xe_module_load@load.html
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-433/igt@xe_module_load@load.html
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-433/igt@xe_module_load@load.html
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-433/igt@xe_module_load@load.html
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-432/igt@xe_module_load@load.html
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-432/igt@xe_module_load@load.html
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-464/igt@xe_module_load@load.html
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-433/igt@xe_module_load@load.html
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-466/igt@xe_module_load@load.html
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-466/igt@xe_module_load@load.html
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-466/igt@xe_module_load@load.html
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-435/igt@xe_module_load@load.html
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-435/igt@xe_module_load@load.html
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-435/igt@xe_module_load@load.html
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-435/igt@xe_module_load@load.html
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-435/igt@xe_module_load@load.html
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-432/igt@xe_module_load@load.html
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-433/igt@xe_module_load@load.html
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-433/igt@xe_module_load@load.html
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-433/igt@xe_module_load@load.html
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-464/igt@xe_module_load@load.html
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-432/igt@xe_module_load@load.html
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-432/igt@xe_module_load@load.html
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-432/igt@xe_module_load@load.html
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-432/igt@xe_module_load@load.html
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-432/igt@xe_module_load@load.html
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-466/igt@xe_module_load@load.html
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-466/igt@xe_module_load@load.html
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-464/igt@xe_module_load@load.html
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-433/igt@xe_module_load@load.html
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-463/igt@xe_module_load@load.html
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-463/igt@xe_module_load@load.html
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-466/igt@xe_module_load@load.html
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-435/igt@xe_module_load@load.html
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-463/igt@xe_module_load@load.html
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-464/igt@xe_module_load@load.html
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-435/igt@xe_module_load@load.html
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-463/igt@xe_module_load@load.html
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-435/igt@xe_module_load@load.html
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-435/igt@xe_module_load@load.html
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-435/igt@xe_module_load@load.html
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-464/igt@xe_module_load@load.html
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-464/igt@xe_module_load@load.html

  * igt@xe_module_load@reload-no-display:
    - shard-bmg:          [PASS][140] -> [ABORT][141] ([Intel XE#5087])
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-3/igt@xe_module_load@reload-no-display.html
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-bmg-4/igt@xe_module_load@reload-no-display.html

  * igt@xe_oa@buffer-size:
    - shard-dg2-set2:     NOTRUN -> [SKIP][142] ([Intel XE#4501])
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-435/igt@xe_oa@buffer-size.html

  * igt@xe_oa@closed-fd-and-unmapped-access:
    - shard-dg2-set2:     NOTRUN -> [SKIP][143] ([Intel XE#2541] / [Intel XE#3573]) +3 other tests skip
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-464/igt@xe_oa@closed-fd-and-unmapped-access.html

  * igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p:
    - shard-dg2-set2:     NOTRUN -> [FAIL][144] ([Intel XE#1173]) +1 other test fail
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-433/igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p.html

  * igt@xe_pm@s2idle-d3cold-basic-exec:
    - shard-dg2-set2:     NOTRUN -> [SKIP][145] ([Intel XE#2284] / [Intel XE#366])
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-435/igt@xe_pm@s2idle-d3cold-basic-exec.html

  * igt@xe_pm@s2idle-exec-after:
    - shard-dg2-set2:     NOTRUN -> [SKIP][146] ([Intel XE#4208]) +109 other tests skip
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-464/igt@xe_pm@s2idle-exec-after.html

  * igt@xe_pxp@display-pxp-fb:
    - shard-bmg:          NOTRUN -> [SKIP][147] ([Intel XE#4733])
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-bmg-2/igt@xe_pxp@display-pxp-fb.html

  * igt@xe_pxp@pxp-termination-key-update-post-termination-irq:
    - shard-dg2-set2:     NOTRUN -> [SKIP][148] ([Intel XE#4733]) +1 other test skip
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-435/igt@xe_pxp@pxp-termination-key-update-post-termination-irq.html

  * igt@xe_query@multigpu-query-invalid-extension:
    - shard-dg2-set2:     NOTRUN -> [SKIP][149] ([Intel XE#944])
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-433/igt@xe_query@multigpu-query-invalid-extension.html

  * igt@xe_sriov_flr@flr-twice:
    - shard-dg2-set2:     NOTRUN -> [SKIP][150] ([Intel XE#4273])
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-464/igt@xe_sriov_flr@flr-twice.html

  * igt@xe_vm@large-misaligned-binds-2147483648:
    - shard-adlp:         [PASS][151] -> [SKIP][152] ([Intel XE#4945]) +36 other tests skip
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-1/igt@xe_vm@large-misaligned-binds-2147483648.html
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-adlp-8/igt@xe_vm@large-misaligned-binds-2147483648.html

  
#### Possible fixes ####

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
    - shard-adlp:         [DMESG-FAIL][153] ([Intel XE#4543]) -> [PASS][154]
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-adlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@y-tiled-16bpp-rotate-180:
    - shard-adlp:         [DMESG-WARN][155] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][156] +4 other tests pass
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-6/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-adlp-2/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html

  * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
    - shard-bmg:          [SKIP][157] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][158]
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-bmg-3/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
    - shard-dg2-set2:     [INCOMPLETE][159] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345]) -> [PASS][160] +1 other test pass
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-433/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-hdmi-a-6:
    - shard-dg2-set2:     [INCOMPLETE][161] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) -> [PASS][162]
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4:
    - shard-dg2-set2:     [INCOMPLETE][163] ([Intel XE#3124]) -> [PASS][164]
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4.html
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6:
    - shard-dg2-set2:     [DMESG-WARN][165] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][166]
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6.html
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
    - shard-bmg:          [SKIP][167] ([Intel XE#2291]) -> [PASS][168] +4 other tests pass
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html

  * igt@kms_display_modes@extended-mode-basic:
    - shard-bmg:          [SKIP][169] ([Intel XE#4302]) -> [PASS][170]
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-bmg-1/igt@kms_display_modes@extended-mode-basic.html

  * igt@kms_dp_linktrain_fallback@dp-fallback:
    - shard-bmg:          [SKIP][171] ([Intel XE#4294]) -> [PASS][172]
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-5/igt@kms_dp_linktrain_fallback@dp-fallback.html
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-bmg-1/igt@kms_dp_linktrain_fallback@dp-fallback.html

  * igt@kms_flip@2x-plain-flip:
    - shard-bmg:          [SKIP][173] ([Intel XE#2316]) -> [PASS][174] +4 other tests pass
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-5/igt@kms_flip@2x-plain-flip.html
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-bmg-1/igt@kms_flip@2x-plain-flip.html

  * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-hdmi-a1:
    - shard-adlp:         [DMESG-WARN][175] ([Intel XE#4543]) -> [PASS][176]
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-hdmi-a1.html
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-adlp-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-hdmi-a1.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-bmg:          [INCOMPLETE][177] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][178] +3 other tests pass
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-8/igt@kms_flip@flip-vs-suspend-interruptible.html
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-bmg-8/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_flip@flip-vs-suspend-interruptible@c-dp2:
    - shard-dg2-set2:     [INCOMPLETE][179] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][180] +1 other test pass
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-432/igt@kms_flip@flip-vs-suspend-interruptible@c-dp2.html
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-432/igt@kms_flip@flip-vs-suspend-interruptible@c-dp2.html

  * igt@kms_joiner@invalid-modeset-force-big-joiner:
    - shard-bmg:          [SKIP][181] ([Intel XE#3012]) -> [PASS][182]
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-bmg-4/igt@kms_joiner@invalid-modeset-force-big-joiner.html

  * igt@kms_plane_multiple@2x-tiling-none:
    - shard-bmg:          [SKIP][183] ([Intel XE#4596]) -> [PASS][184]
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-none.html
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-bmg-1/igt@kms_plane_multiple@2x-tiling-none.html

  * igt@kms_setmode@clone-exclusive-crtc:
    - shard-bmg:          [SKIP][185] ([Intel XE#1435]) -> [PASS][186] +1 other test pass
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-5/igt@kms_setmode@clone-exclusive-crtc.html
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-bmg-1/igt@kms_setmode@clone-exclusive-crtc.html

  * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind:
    - shard-dg2-set2:     [SKIP][187] ([Intel XE#1392]) -> [PASS][188] +3 other tests pass
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind.html
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-463/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset:
    - shard-lnl:          [FAIL][189] ([Intel XE#4937] / [Intel XE#5018]) -> [PASS][190]
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-lnl-3/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset.html
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-lnl-7/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset.html

  
#### Warnings ####

  * igt@kms_big_fb@4-tiled-64bpp-rotate-270:
    - shard-dg2-set2:     [SKIP][191] ([Intel XE#316]) -> [SKIP][192] ([Intel XE#2351] / [Intel XE#4208])
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-463/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-464/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-64bpp-rotate-180:
    - shard-adlp:         [DMESG-FAIL][193] ([Intel XE#4543]) -> [SKIP][194] ([Intel XE#4947])
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-1/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-adlp-8/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html

  * igt@kms_big_fb@y-tiled-64bpp-rotate-180:
    - shard-adlp:         [DMESG-FAIL][195] ([Intel XE#4543]) -> [DMESG-FAIL][196] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4543])
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-2/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-adlp-8/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
    - shard-adlp:         [SKIP][197] ([Intel XE#1124]) -> [SKIP][198] ([Intel XE#4947]) +2 other tests skip
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-adlp-8/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs:
    - shard-adlp:         [SKIP][199] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][200] ([Intel XE#2351] / [Intel XE#4947])
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-1/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs.html
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-adlp-8/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
    - shard-adlp:         [SKIP][201] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][202] ([Intel XE#4947]) +4 other tests skip
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-1/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-adlp-8/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
    - shard-dg2-set2:     [SKIP][203] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][204] ([Intel XE#4208])
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-464/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html

  * igt@kms_chamelium_edid@hdmi-mode-timings:
    - shard-adlp:         [SKIP][205] ([Intel XE#373]) -> [SKIP][206] ([Intel XE#4950])
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-1/igt@kms_chamelium_edid@hdmi-mode-timings.html
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-adlp-8/igt@kms_chamelium_edid@hdmi-mode-timings.html

  * igt@kms_content_protection@legacy:
    - shard-bmg:          [FAIL][207] ([Intel XE#1178]) -> [SKIP][208] ([Intel XE#2341])
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-2/igt@kms_content_protection@legacy.html
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-bmg-6/igt@kms_content_protection@legacy.html

  * igt@kms_content_protection@uevent:
    - shard-bmg:          [SKIP][209] ([Intel XE#2341]) -> [FAIL][210] ([Intel XE#1188])
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-5/igt@kms_content_protection@uevent.html
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-bmg-1/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
    - shard-bmg:          [DMESG-WARN][211] -> [SKIP][212] ([Intel XE#2291])
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic:
    - shard-adlp:         [SKIP][213] ([Intel XE#309]) -> [SKIP][214] ([Intel XE#4950])
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-adlp-8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html

  * igt@kms_dp_link_training@non-uhbr-mst:
    - shard-dg2-set2:     [SKIP][215] ([Intel XE#4354]) -> [SKIP][216] ([Intel XE#4208])
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-463/igt@kms_dp_link_training@non-uhbr-mst.html
   [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-464/igt@kms_dp_link_training@non-uhbr-mst.html
    - shard-adlp:         [SKIP][217] ([Intel XE#4354]) -> [SKIP][218] ([Intel XE#4947])
   [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-1/igt@kms_dp_link_training@non-uhbr-mst.html
   [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-adlp-8/igt@kms_dp_link_training@non-uhbr-mst.html

  * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
    - shard-adlp:         [SKIP][219] ([Intel XE#310]) -> [SKIP][220] ([Intel XE#4950])
   [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-1/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
   [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-adlp-8/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling:
    - shard-adlp:         [SKIP][221] ([Intel XE#455]) -> [SKIP][222] ([Intel XE#4947]) +1 other test skip
   [221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html
   [222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-adlp-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          [SKIP][223] ([Intel XE#2312]) -> [SKIP][224] ([Intel XE#2311]) +15 other tests skip
   [223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
   [224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render:
    - shard-bmg:          [SKIP][225] ([Intel XE#4141]) -> [SKIP][226] ([Intel XE#2312]) +5 other tests skip
   [225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html
   [226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
    - shard-bmg:          [SKIP][227] ([Intel XE#2312]) -> [SKIP][228] ([Intel XE#4141]) +4 other tests skip
   [227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
   [228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-pgflip-blt:
    - shard-adlp:         [SKIP][229] ([Intel XE#651]) -> [SKIP][230] ([Intel XE#4947]) +2 other tests skip
   [229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-1/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-pgflip-blt.html
   [230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-adlp-8/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
    - shard-adlp:         [SKIP][231] ([Intel XE#656]) -> [SKIP][232] ([Intel XE#4947]) +6 other tests skip
   [231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
   [232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-adlp-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt:
    - shard-bmg:          [SKIP][233] ([Intel XE#2311]) -> [SKIP][234] ([Intel XE#2312]) +9 other tests skip
   [233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt.html
   [234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
    - shard-bmg:          [SKIP][235] ([Intel XE#2312]) -> [SKIP][236] ([Intel XE#2313]) +16 other tests skip
   [235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
   [236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
    - shard-adlp:         [SKIP][237] ([Intel XE#653]) -> [SKIP][238] ([Intel XE#4947]) +3 other tests skip
   [237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
   [238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-adlp-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
    - shard-bmg:          [SKIP][239] ([Intel XE#2313]) -> [SKIP][240] ([Intel XE#2312]) +11 other tests skip
   [239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
   [240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt:
    - shard-dg2-set2:     [SKIP][241] ([Intel XE#653]) -> [SKIP][242] ([Intel XE#4208]) +2 other tests skip
   [241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html
   [242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html

  * igt@kms_hdr@bpc-switch:
    - shard-dg2-set2:     [INCOMPLETE][243] ([Intel XE#4842]) -> [SKIP][244] ([Intel XE#4208] / [i915#2575])
   [243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-463/igt@kms_hdr@bpc-switch.html
   [244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-464/igt@kms_hdr@bpc-switch.html

  * igt@kms_plane@pixel-format-source-clamping:
    - shard-adlp:         [FAIL][245] ([Intel XE#5195]) -> [SKIP][246] ([Intel XE#4950])
   [245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-1/igt@kms_plane@pixel-format-source-clamping.html
   [246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-adlp-8/igt@kms_plane@pixel-format-source-clamping.html

  * igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
    - shard-adlp:         [SKIP][247] ([Intel XE#1489]) -> [SKIP][248] ([Intel XE#4947]) +1 other test skip
   [247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-1/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
   [248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-adlp-8/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html

  * igt@kms_psr@fbc-pr-suspend:
    - shard-adlp:         [SKIP][249] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][250] ([Intel XE#2351] / [Intel XE#4947])
   [249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-1/igt@kms_psr@fbc-pr-suspend.html
   [250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-adlp-8/igt@kms_psr@fbc-pr-suspend.html
    - shard-dg2-set2:     [SKIP][251] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][252] ([Intel XE#2351] / [Intel XE#4208])
   [251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-463/igt@kms_psr@fbc-pr-suspend.html
   [252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-464/igt@kms_psr@fbc-pr-suspend.html

  * igt@kms_psr@pr-cursor-plane-onoff:
    - shard-adlp:         [SKIP][253] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][254] ([Intel XE#4947]) +2 other tests skip
   [253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-1/igt@kms_psr@pr-cursor-plane-onoff.html
   [254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-adlp-8/igt@kms_psr@pr-cursor-plane-onoff.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          [SKIP][255] ([Intel XE#2509]) -> [SKIP][256] ([Intel XE#2426])
   [255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@kms_tv_load_detect@load-detect:
    - shard-adlp:         [SKIP][257] ([Intel XE#330]) -> [SKIP][258] ([Intel XE#4950])
   [257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-1/igt@kms_tv_load_detect@load-detect.html
   [258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-adlp-8/igt@kms_tv_load_detect@load-detect.html

  * igt@kms_vrr@flip-suspend:
    - shard-adlp:         [SKIP][259] ([Intel XE#455]) -> [SKIP][260] ([Intel XE#4950]) +1 other test skip
   [259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-1/igt@kms_vrr@flip-suspend.html
   [260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-adlp-8/igt@kms_vrr@flip-suspend.html

  * igt@xe_eudebug_online@breakpoint-many-sessions-single-tile:
    - shard-adlp:         [SKIP][261] ([Intel XE#4837]) -> [SKIP][262] ([Intel XE#4945]) +2 other tests skip
   [261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-1/igt@xe_eudebug_online@breakpoint-many-sessions-single-tile.html
   [262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-adlp-8/igt@xe_eudebug_online@breakpoint-many-sessions-single-tile.html

  * igt@xe_evict@evict-beng-small:
    - shard-adlp:         [SKIP][263] ([Intel XE#261] / [Intel XE#688]) -> [SKIP][264] ([Intel XE#4945])
   [263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-1/igt@xe_evict@evict-beng-small.html
   [264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-adlp-8/igt@xe_evict@evict-beng-small.html

  * igt@xe_exec_basic@multigpu-no-exec-null-defer-bind:
    - shard-adlp:         [SKIP][265] ([Intel XE#1392]) -> [SKIP][266] ([Intel XE#4945])
   [265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-1/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html
   [266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-adlp-8/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html

  * igt@xe_exec_fault_mode@once-basic-imm:
    - shard-adlp:         [SKIP][267] ([Intel XE#288]) -> [SKIP][268] ([Intel XE#4945]) +5 other tests skip
   [267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-1/igt@xe_exec_fault_mode@once-basic-imm.html
   [268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-adlp-8/igt@xe_exec_fault_mode@once-basic-imm.html

  * igt@xe_exec_system_allocator@once-mmap-huge-nomemset:
    - shard-adlp:         [SKIP][269] ([Intel XE#4915]) -> [SKIP][270] ([Intel XE#4945]) +60 other tests skip
   [269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-1/igt@xe_exec_system_allocator@once-mmap-huge-nomemset.html
   [270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-adlp-8/igt@xe_exec_system_allocator@once-mmap-huge-nomemset.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-shared-remap:
    - shard-dg2-set2:     [SKIP][271] ([Intel XE#4915]) -> [SKIP][272] ([Intel XE#4208]) +15 other tests skip
   [271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-463/igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-shared-remap.html
   [272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-464/igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-shared-remap.html

  * igt@xe_oa@disabled-read-error:
    - shard-adlp:         [SKIP][273] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][274] ([Intel XE#4945])
   [273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-1/igt@xe_oa@disabled-read-error.html
   [274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-adlp-8/igt@xe_oa@disabled-read-error.html

  * igt@xe_oa@syncs-syncobj-none:
    - shard-adlp:         [SKIP][275] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501]) -> [SKIP][276] ([Intel XE#4945])
   [275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-1/igt@xe_oa@syncs-syncobj-none.html
   [276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-adlp-8/igt@xe_oa@syncs-syncobj-none.html

  * igt@xe_pmu@gt-frequency:
    - shard-dg2-set2:     [FAIL][277] ([Intel XE#4819]) -> [FAIL][278] ([Intel XE#5166]) +1 other test fail
   [277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-432/igt@xe_pmu@gt-frequency.html
   [278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-432/igt@xe_pmu@gt-frequency.html

  * igt@xe_query@multigpu-query-invalid-cs-cycles:
    - shard-dg2-set2:     [SKIP][279] ([Intel XE#944]) -> [SKIP][280] ([Intel XE#4208])
   [279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-dg2-463/igt@xe_query@multigpu-query-invalid-cs-cycles.html
   [280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-dg2-464/igt@xe_query@multigpu-query-invalid-cs-cycles.html
    - shard-adlp:         [SKIP][281] ([Intel XE#944]) -> [SKIP][282] ([Intel XE#4945])
   [281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd/shard-adlp-1/igt@xe_query@multigpu-query-invalid-cs-cycles.html
   [282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150872v2/shard-adlp-8/igt@xe_query@multigpu-query-invalid-cs-cycles.html

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

  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
  [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
  [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
  [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#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#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#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
  [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
  [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
  [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#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
  [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#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
  [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
  [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
  [Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
  [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#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
  [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
  [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#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
  [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
  [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
  [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
  [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
  [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
  [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#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#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [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#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
  [Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
  [Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
  [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
  [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
  [Intel XE#4356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4356
  [Intel XE#4501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4501
  [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#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#4819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4819
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#4842]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4842
  [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
  [Intel XE#4937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4937
  [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
  [Intel XE#4945]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4945
  [Intel XE#4947]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4947
  [Intel XE#4950]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4950
  [Intel XE#4962]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4962
  [Intel XE#5018]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5018
  [Intel XE#5087]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5087
  [Intel XE#5166]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5166
  [Intel XE#5191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5191
  [Intel XE#5195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5195
  [Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300
  [Intel XE#5308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5308
  [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
  [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
  [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#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
  [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
  [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575


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

  * Linux: xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd -> xe-pw-150872v2

  IGT_8431: 8431
  xe-3321-078be02b4585b9a9703401d89a3ac93e2d15a6bd: 078be02b4585b9a9703401d89a3ac93e2d15a6bd
  xe-pw-150872v2: 150872v2

== Logs ==

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

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

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

end of thread, other threads:[~2025-07-02 18:54 UTC | newest]

Thread overview: 34+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-27 11:36 [PATCH 00/18] drm/i915/display: convert to generic read_poll_timeout() Jani Nikula
2025-06-27 11:36 ` [PATCH 01/18] drm/i915/hdmi: use generic read_poll_timeout() instead of __wait_for() Jani Nikula
2025-06-27 11:36 ` [PATCH 02/18] drm/i915/hdcp: " Jani Nikula
2025-06-29 13:39   ` Kandpal, Suraj
2025-06-27 11:36 ` [PATCH 03/18] drm/i915/dsi: use generic read_poll_timeout() instead of wait_for_us() Jani Nikula
2025-06-27 11:36 ` [PATCH 04/18] drm/i915/dsi-pll: use generic read_poll_timeout() instead of wait_for() Jani Nikula
2025-06-27 11:36 ` [PATCH 05/18] drm/i915/gmbus: use generic read_poll_timeout*() instead of wait_for*() Jani Nikula
2025-06-27 11:36 ` [PATCH 06/18] drm/i915/wm: use generic read_poll_timeout() instead of wait_for() Jani Nikula
2025-06-27 11:36 ` [PATCH 07/18] drm/i915/cdclk: " Jani Nikula
2025-06-27 11:36 ` [PATCH 08/18] drm/i915/power: " Jani Nikula
2025-06-27 11:36 ` [PATCH 09/18] drm/i915/power-well: use generic read_poll_timeout() instead of wait_for() for DKL PHY Jani Nikula
2025-06-27 11:36 ` [PATCH 10/18] drm/i915/power-well: use generic read_poll_timeout() instead of wait_for() for VLV/CHV Jani Nikula
2025-06-27 11:36 ` [PATCH 11/18] drm/i915/dp: use generic read_poll_timeout() instead of wait_for() Jani Nikula
2025-06-27 11:36 ` [PATCH 12/18] drm/i915/dp: use generic read_poll_timeout() instead of wait_for() in link training Jani Nikula
2025-06-27 11:36 ` [PATCH 13/18] drm/i915/vblank: use generic read_poll_timeout() instead of wait_for() Jani Nikula
2025-06-27 11:36 ` [PATCH 14/18] drm/i915/tc: " Jani Nikula
2025-06-27 11:36 ` [PATCH 15/18] drm/i915/dsb: " Jani Nikula
2025-06-27 11:36 ` [PATCH 16/18] drm/i915/lspcon: " Jani Nikula
2025-06-27 11:36 ` [PATCH 17/18] drm/i915/opregion: " Jani Nikula
2025-06-27 11:36 ` [PATCH 18/18] drm/i915/ddi: prefer read_poll_timeout() over readx_poll_timeout() Jani Nikula
2025-06-27 12:00   ` Imre Deak
2025-06-27 12:43     ` Jani Nikula
2025-06-27 12:53   ` Ville Syrjälä
2025-06-27 13:34     ` Jani Nikula
2025-06-27 15:40       ` Ville Syrjälä
2025-06-27 16:26         ` Jani Nikula
2025-06-27 17:32           ` Ville Syrjälä
2025-06-30 20:52           ` David Laight
2025-06-27 14:15   ` [PATCH v2] " Jani Nikula
2025-06-30 15:35 ` ✗ CI.checkpatch: warning for drm/i915/display: convert to generic read_poll_timeout() (rev2) Patchwork
2025-06-30 15:36 ` ✓ CI.KUnit: success " Patchwork
2025-06-30 15:50 ` ✗ CI.checksparse: warning " Patchwork
2025-06-30 16:17 ` ✓ Xe.CI.BAT: success " Patchwork
2025-07-01 17:57 ` ✗ Xe.CI.Full: failure " Patchwork

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