* [PATCH 0/3] drm/i915/de: Move register polling into display code
@ 2026-03-13 11:10 Ville Syrjala
2026-03-13 11:10 ` [PATCH 1/3] drm/i915/de: Introduce intel_de.c and move intel_de_{read, write}8() there Ville Syrjala
` (10 more replies)
0 siblings, 11 replies; 19+ messages in thread
From: Ville Syrjala @ 2026-03-13 11:10 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Implement register polling directly in the display code
In an effort to decouple the display code from i915/xe.
This is just the first step in a larger display mmio rework.
My final aim is to move the entire mmio stuff into the display
code. That will give us:
- better control over how things are done
- decouple display register locking from forcewake/etc
- less overhead. We access a lot of registers, and
during vblank evasion critical section performance is
especially important.
- unified RMbus unclaimed error checking for both i915 and xe
Ville Syrjälä (3):
drm/i915/de: Introduce intel_de.c and move intel_de_{read,write}8()
there
drm/i915/de: Move intel_de_wait*() into intel_de.c
drm/i915/de: Implement register polling in the display code
drivers/gpu/drm/i915/Makefile | 1 +
drivers/gpu/drm/i915/display/intel_de.c | 178 ++++++++++++++++++
drivers/gpu/drm/i915/display/intel_de.h | 121 +++---------
drivers/gpu/drm/xe/Makefile | 1 +
.../drm/xe/compat-i915-headers/intel_uncore.h | 31 ---
5 files changed, 203 insertions(+), 129 deletions(-)
create mode 100644 drivers/gpu/drm/i915/display/intel_de.c
--
2.52.0
^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH 1/3] drm/i915/de: Introduce intel_de.c and move intel_de_{read, write}8() there
2026-03-13 11:10 [PATCH 0/3] drm/i915/de: Move register polling into display code Ville Syrjala
@ 2026-03-13 11:10 ` Ville Syrjala
2026-03-13 14:21 ` Jani Nikula
2026-03-13 11:10 ` [PATCH 2/3] drm/i915/de: Move intel_de_wait*() into intel_de.c Ville Syrjala
` (9 subsequent siblings)
10 siblings, 1 reply; 19+ messages in thread
From: Ville Syrjala @ 2026-03-13 11:10 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
intel_de_{read,write}() aren't performance critical so having them
as static inline is pointless. Introduce intel_de.c and move the
implementation there.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/Makefile | 1 +
drivers/gpu/drm/i915/display/intel_de.c | 23 +++++++++++++++++++++++
drivers/gpu/drm/i915/display/intel_de.h | 22 +++-------------------
drivers/gpu/drm/xe/Makefile | 1 +
4 files changed, 28 insertions(+), 19 deletions(-)
create mode 100644 drivers/gpu/drm/i915/display/intel_de.c
diff --git a/drivers/gpu/drm/i915/Makefile b/drivers/gpu/drm/i915/Makefile
index 7e9d9b666511..099f7b68bb30 100644
--- a/drivers/gpu/drm/i915/Makefile
+++ b/drivers/gpu/drm/i915/Makefile
@@ -253,6 +253,7 @@ i915-y += \
display/intel_crtc_state_dump.o \
display/intel_cursor.o \
display/intel_dbuf_bw.o \
+ display/intel_de.o \
display/intel_display.o \
display/intel_display_conversion.o \
display/intel_display_driver.o \
diff --git a/drivers/gpu/drm/i915/display/intel_de.c b/drivers/gpu/drm/i915/display/intel_de.c
new file mode 100644
index 000000000000..5348c1d51eb8
--- /dev/null
+++ b/drivers/gpu/drm/i915/display/intel_de.c
@@ -0,0 +1,23 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2026 Intel Corporation
+ */
+
+#include <drm/drm_print.h>
+
+#include "intel_de.h"
+
+u8 intel_de_read8(struct intel_display *display, i915_reg_t reg)
+{
+ /* this is only used on VGA registers (possible on pre-g4x) */
+ drm_WARN_ON(display->drm, DISPLAY_VER(display) >= 5 || display->platform.g4x);
+
+ return intel_uncore_read8(__to_uncore(display), reg);
+}
+
+void intel_de_write8(struct intel_display *display, i915_reg_t reg, u8 val)
+{
+ drm_WARN_ON(display->drm, DISPLAY_VER(display) >= 5 || display->platform.g4x);
+
+ intel_uncore_write8(__to_uncore(display), reg, val);
+}
diff --git a/drivers/gpu/drm/i915/display/intel_de.h b/drivers/gpu/drm/i915/display/intel_de.h
index f30f3f8ebee1..8ca5904ba84e 100644
--- a/drivers/gpu/drm/i915/display/intel_de.h
+++ b/drivers/gpu/drm/i915/display/intel_de.h
@@ -6,8 +6,6 @@
#ifndef __INTEL_DE_H__
#define __INTEL_DE_H__
-#include <drm/drm_print.h>
-
#include "intel_display_core.h"
#include "intel_dmc_wl.h"
#include "intel_dsb.h"
@@ -19,6 +17,9 @@ static inline struct intel_uncore *__to_uncore(struct intel_display *display)
return to_intel_uncore(display->drm);
}
+u8 intel_de_read8(struct intel_display *display, i915_reg_t reg);
+void intel_de_write8(struct intel_display *display, i915_reg_t reg, u8 val);
+
static inline u32
intel_de_read(struct intel_display *display, i915_reg_t reg)
{
@@ -33,23 +34,6 @@ intel_de_read(struct intel_display *display, i915_reg_t reg)
return val;
}
-static inline u8
-intel_de_read8(struct intel_display *display, i915_reg_t reg)
-{
- /* this is only used on VGA registers (possible on pre-g4x) */
- drm_WARN_ON(display->drm, DISPLAY_VER(display) >= 5 || display->platform.g4x);
-
- return intel_uncore_read8(__to_uncore(display), reg);
-}
-
-static inline void
-intel_de_write8(struct intel_display *display, i915_reg_t reg, u8 val)
-{
- drm_WARN_ON(display->drm, DISPLAY_VER(display) >= 5 || display->platform.g4x);
-
- intel_uncore_write8(__to_uncore(display), reg, val);
-}
-
static inline u64
intel_de_read64_2x32(struct intel_display *display,
i915_reg_t lower_reg, i915_reg_t upper_reg)
diff --git a/drivers/gpu/drm/xe/Makefile b/drivers/gpu/drm/xe/Makefile
index 50608312bc66..0399a5f9a107 100644
--- a/drivers/gpu/drm/xe/Makefile
+++ b/drivers/gpu/drm/xe/Makefile
@@ -251,6 +251,7 @@ xe-$(CONFIG_DRM_XE_DISPLAY) += \
i915-display/intel_dbuf_bw.o \
i915-display/intel_ddi.o \
i915-display/intel_ddi_buf_trans.o \
+ i915-display/intel_de.o \
i915-display/intel_display.o \
i915-display/intel_display_conversion.o \
i915-display/intel_display_device.o \
--
2.52.0
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [PATCH 2/3] drm/i915/de: Move intel_de_wait*() into intel_de.c
2026-03-13 11:10 [PATCH 0/3] drm/i915/de: Move register polling into display code Ville Syrjala
2026-03-13 11:10 ` [PATCH 1/3] drm/i915/de: Introduce intel_de.c and move intel_de_{read, write}8() there Ville Syrjala
@ 2026-03-13 11:10 ` Ville Syrjala
2026-03-13 14:21 ` Jani Nikula
2026-03-13 11:10 ` [PATCH 3/3] drm/i915/de: Implement register polling in the display code Ville Syrjala
` (8 subsequent siblings)
10 siblings, 1 reply; 19+ messages in thread
From: Ville Syrjala @ 2026-03-13 11:10 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
intel_de_wait*() end up doing quite a bit of stuff, so the one
function call overhead from them seems insignificant. Move the
implementation intel_de.c.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/intel_de.c | 72 ++++++++++++++++++
drivers/gpu/drm/i915/display/intel_de.h | 99 +++++--------------------
2 files changed, 92 insertions(+), 79 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_de.c b/drivers/gpu/drm/i915/display/intel_de.c
index 5348c1d51eb8..fce92535bd6a 100644
--- a/drivers/gpu/drm/i915/display/intel_de.c
+++ b/drivers/gpu/drm/i915/display/intel_de.c
@@ -7,6 +7,78 @@
#include "intel_de.h"
+int intel_de_wait_us(struct intel_display *display, i915_reg_t reg,
+ u32 mask, u32 value, unsigned int timeout_us,
+ u32 *out_value)
+{
+ int ret;
+
+ intel_dmc_wl_get(display, reg);
+
+ ret = __intel_wait_for_register(__to_uncore(display), reg, mask,
+ value, timeout_us, 0, out_value);
+
+ intel_dmc_wl_put(display, reg);
+
+ return ret;
+}
+
+int intel_de_wait_ms(struct intel_display *display, i915_reg_t reg,
+ u32 mask, u32 value, unsigned int timeout_ms,
+ u32 *out_value)
+{
+ int ret;
+
+ intel_dmc_wl_get(display, reg);
+
+ ret = __intel_wait_for_register(__to_uncore(display), reg, mask,
+ value, 2, timeout_ms, out_value);
+
+ intel_dmc_wl_put(display, reg);
+
+ return ret;
+}
+
+int intel_de_wait_fw_ms(struct intel_display *display, i915_reg_t reg,
+ u32 mask, u32 value, unsigned int timeout_ms,
+ u32 *out_value)
+{
+ return __intel_wait_for_register_fw(__to_uncore(display), reg, mask,
+ value, 2, timeout_ms, out_value);
+}
+
+int intel_de_wait_fw_us_atomic(struct intel_display *display, i915_reg_t reg,
+ u32 mask, u32 value, unsigned int timeout_us,
+ u32 *out_value)
+{
+ return __intel_wait_for_register_fw(__to_uncore(display), reg, mask,
+ value, timeout_us, 0, out_value);
+}
+
+int intel_de_wait_for_set_us(struct intel_display *display, i915_reg_t reg,
+ u32 mask, unsigned int timeout_us)
+{
+ return intel_de_wait_us(display, reg, mask, mask, timeout_us, NULL);
+}
+
+int intel_de_wait_for_clear_us(struct intel_display *display, i915_reg_t reg,
+ u32 mask, unsigned int timeout_us)
+{
+ return intel_de_wait_us(display, reg, mask, 0, timeout_us, NULL);
+}
+
+int intel_de_wait_for_set_ms(struct intel_display *display, i915_reg_t reg,
+ u32 mask, unsigned int timeout_ms)
+{
+ return intel_de_wait_ms(display, reg, mask, mask, timeout_ms, NULL);
+}
+
+int intel_de_wait_for_clear_ms(struct intel_display *display, i915_reg_t reg,
+ u32 mask, unsigned int timeout_ms)
+{
+ return intel_de_wait_ms(display, reg, mask, 0, timeout_ms, NULL);
+}
+
u8 intel_de_read8(struct intel_display *display, i915_reg_t reg)
{
/* this is only used on VGA registers (possible on pre-g4x) */
diff --git a/drivers/gpu/drm/i915/display/intel_de.h b/drivers/gpu/drm/i915/display/intel_de.h
index 8ca5904ba84e..f87b84ab9d6d 100644
--- a/drivers/gpu/drm/i915/display/intel_de.h
+++ b/drivers/gpu/drm/i915/display/intel_de.h
@@ -86,85 +86,26 @@ intel_de_rmw(struct intel_display *display, i915_reg_t reg, u32 clear, u32 set)
return val;
}
-static inline int
-intel_de_wait_us(struct intel_display *display, i915_reg_t reg,
- u32 mask, u32 value, unsigned int timeout_us,
- u32 *out_value)
-{
- int ret;
-
- intel_dmc_wl_get(display, reg);
-
- ret = __intel_wait_for_register(__to_uncore(display), reg, mask,
- value, timeout_us, 0, out_value);
-
- intel_dmc_wl_put(display, reg);
-
- return ret;
-}
-
-static inline int
-intel_de_wait_ms(struct intel_display *display, i915_reg_t reg,
- u32 mask, u32 value, unsigned int timeout_ms,
- u32 *out_value)
-{
- int ret;
-
- intel_dmc_wl_get(display, reg);
-
- ret = __intel_wait_for_register(__to_uncore(display), reg, mask,
- value, 2, timeout_ms, out_value);
-
- intel_dmc_wl_put(display, reg);
-
- return ret;
-}
-
-static inline int
-intel_de_wait_fw_ms(struct intel_display *display, i915_reg_t reg,
- u32 mask, u32 value, unsigned int timeout_ms,
- u32 *out_value)
-{
- return __intel_wait_for_register_fw(__to_uncore(display), reg, mask,
- value, 2, timeout_ms, out_value);
-}
-
-static inline int
-intel_de_wait_fw_us_atomic(struct intel_display *display, i915_reg_t reg,
- u32 mask, u32 value, unsigned int timeout_us,
- u32 *out_value)
-{
- return __intel_wait_for_register_fw(__to_uncore(display), reg, mask,
- value, timeout_us, 0, out_value);
-}
-
-static inline int
-intel_de_wait_for_set_us(struct intel_display *display, i915_reg_t reg,
- u32 mask, unsigned int timeout_us)
-{
- return intel_de_wait_us(display, reg, mask, mask, timeout_us, NULL);
-}
-
-static inline int
-intel_de_wait_for_clear_us(struct intel_display *display, i915_reg_t reg,
- u32 mask, unsigned int timeout_us)
-{
- return intel_de_wait_us(display, reg, mask, 0, timeout_us, NULL);
-}
-
-static inline int
-intel_de_wait_for_set_ms(struct intel_display *display, i915_reg_t reg,
- u32 mask, unsigned int timeout_ms)
-{
- return intel_de_wait_ms(display, reg, mask, mask, timeout_ms, NULL);
-}
-
-static inline int
-intel_de_wait_for_clear_ms(struct intel_display *display, i915_reg_t reg,
- u32 mask, unsigned int timeout_ms)
-{
- return intel_de_wait_ms(display, reg, mask, 0, timeout_ms, NULL);
-}
+int intel_de_wait_us(struct intel_display *display, i915_reg_t reg,
+ u32 mask, u32 value, unsigned int timeout_us,
+ u32 *out_value);
+int intel_de_wait_ms(struct intel_display *display, i915_reg_t reg,
+ u32 mask, u32 value, unsigned int timeout_ms,
+ u32 *out_value);
+int intel_de_wait_fw_ms(struct intel_display *display, i915_reg_t reg,
+ u32 mask, u32 value, unsigned int timeout_ms,
+ u32 *out_value);
+int intel_de_wait_fw_us_atomic(struct intel_display *display, i915_reg_t reg,
+ u32 mask, u32 value, unsigned int timeout_us,
+ u32 *out_value);
+int intel_de_wait_for_set_us(struct intel_display *display, i915_reg_t reg,
+ u32 mask, unsigned int timeout_us);
+int intel_de_wait_for_clear_us(struct intel_display *display, i915_reg_t reg,
+ u32 mask, unsigned int timeout_us);
+int intel_de_wait_for_set_ms(struct intel_display *display, i915_reg_t reg,
+ u32 mask, unsigned int timeout_ms);
+int intel_de_wait_for_clear_ms(struct intel_display *display, i915_reg_t reg,
+ u32 mask, unsigned int timeout_ms);
/*
* Unlocked mmio-accessors, think carefully before using these.
--
2.52.0
^ permalink raw reply related [flat|nested] 19+ messages in thread
* [PATCH 3/3] drm/i915/de: Implement register polling in the display code
2026-03-13 11:10 [PATCH 0/3] drm/i915/de: Move register polling into display code Ville Syrjala
2026-03-13 11:10 ` [PATCH 1/3] drm/i915/de: Introduce intel_de.c and move intel_de_{read, write}8() there Ville Syrjala
2026-03-13 11:10 ` [PATCH 2/3] drm/i915/de: Move intel_de_wait*() into intel_de.c Ville Syrjala
@ 2026-03-13 11:10 ` Ville Syrjala
2026-03-13 15:03 ` Jani Nikula
` (2 more replies)
2026-03-13 11:15 ` ✗ CI.checkpatch: warning for drm/i915/de: Move register polling into " Patchwork
` (7 subsequent siblings)
10 siblings, 3 replies; 19+ messages in thread
From: Ville Syrjala @ 2026-03-13 11:10 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
The plan is to move all the mmio stuff into the display code itself.
As a first step implement the register polling in intel_de.c.
Currently i915 and xe implement this stuff in slightly different
ways, so there are some functional changes here. Try to go for a
reasonable middle ground between the i915 and xe implementations:
- the exponential backoff limit is the simpler approach taken
by i915 (== just clamp the max sleep duration to 1 ms)
- the fast vs. slow timeout handling is similar to i915 where
we first try the fast timeout and then again the slow timeout
if the condition still isn't satisfied. xe just adds up the
timeouts together, which is a bit weird.
- the atomic wait variant uses udelay() like xe, whereas i915
has no udelay()s in its atomic loop. As a compromise go for a
fixed 1 usec delay for short waits, instead of the somewhat
peculiar xe behaviour where it effectively just does one
iteration of the loop.
- keep the "use udelay() for < 10 usec waits" logic (which
more or less mirrors fsleep()), but include an explicit
might_sleep() even for these short waits when called from
a non-atomic intel_de_wait*() function. This should prevent
people from calling the non-atomic functions from the wrong
place.
Eventually we may want to switch over to poll_timeout*(),
but that lacks the exponential backoff, so a bit too
radical to change in one go.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/intel_de.c | 99 +++++++++++++++++--
| 31 ------
2 files changed, 91 insertions(+), 39 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_de.c b/drivers/gpu/drm/i915/display/intel_de.c
index fce92535bd6a..6cbe50f3e2b4 100644
--- a/drivers/gpu/drm/i915/display/intel_de.c
+++ b/drivers/gpu/drm/i915/display/intel_de.c
@@ -3,10 +3,85 @@
* Copyright © 2026 Intel Corporation
*/
+#include <linux/delay.h>
+
#include <drm/drm_print.h>
#include "intel_de.h"
+static int __intel_de_wait_for_register(struct intel_display *display,
+ i915_reg_t reg, u32 mask, u32 value,
+ unsigned int timeout_us,
+ u32 (*read)(struct intel_display *display, i915_reg_t reg),
+ u32 *out_val, bool is_atomic)
+{
+ const ktime_t end = ktime_add_us(ktime_get_raw(), timeout_us);
+ int wait_max = 1000;
+ int wait = 10;
+ u32 reg_value;
+ int ret;
+
+ might_sleep_if(!is_atomic);
+
+ if (timeout_us <= 10) {
+ is_atomic = true;
+ wait = 1;
+ }
+
+ for (;;) {
+ bool expired = ktime_after(ktime_get_raw(), end);
+
+ /* guarantee the condition is evaluated after timeout expired */
+ barrier();
+
+ reg_value = read(display, reg);
+ if ((reg_value & mask) == value) {
+ ret = 0;
+ break;
+ }
+
+ if (expired) {
+ ret = -ETIMEDOUT;
+ break;
+ }
+
+ if (is_atomic)
+ udelay(wait);
+ else
+ usleep_range(wait, wait << 1);
+
+ if (wait < wait_max)
+ wait <<= 1;
+ }
+
+ if (out_val)
+ *out_val = reg_value;
+
+ return ret;
+}
+
+static int intel_de_wait_for_register(struct intel_display *display,
+ i915_reg_t reg, u32 mask, u32 value,
+ unsigned int fast_timeout_us,
+ unsigned int slow_timeout_us,
+ u32 (*read)(struct intel_display *display, i915_reg_t reg),
+ u32 *out_value, bool is_atomic)
+{
+ int ret;
+
+ if (fast_timeout_us)
+ ret = __intel_de_wait_for_register(display, reg, mask, value,
+ fast_timeout_us, read,
+ out_value, is_atomic);
+
+ if (ret && slow_timeout_us)
+ ret = __intel_de_wait_for_register(display, reg, mask, value,
+ slow_timeout_us, read,
+ out_value, is_atomic);
+
+ return ret;
+}
+
int intel_de_wait_us(struct intel_display *display, i915_reg_t reg,
u32 mask, u32 value, unsigned int timeout_us,
u32 *out_value)
@@ -15,8 +90,10 @@ int intel_de_wait_us(struct intel_display *display, i915_reg_t reg,
intel_dmc_wl_get(display, reg);
- ret = __intel_wait_for_register(__to_uncore(display), reg, mask,
- value, timeout_us, 0, out_value);
+ ret = intel_de_wait_for_register(display, reg, mask, value,
+ timeout_us, 0,
+ intel_de_read,
+ out_value, false);
intel_dmc_wl_put(display, reg);
@@ -31,8 +108,10 @@ int intel_de_wait_ms(struct intel_display *display, i915_reg_t reg,
intel_dmc_wl_get(display, reg);
- ret = __intel_wait_for_register(__to_uncore(display), reg, mask,
- value, 2, timeout_ms, out_value);
+ ret = intel_de_wait_for_register(display, reg, mask, value,
+ 2, timeout_ms * 1000,
+ intel_de_read,
+ out_value, false);
intel_dmc_wl_put(display, reg);
@@ -43,16 +122,20 @@ int intel_de_wait_fw_ms(struct intel_display *display, i915_reg_t reg,
u32 mask, u32 value, unsigned int timeout_ms,
u32 *out_value)
{
- return __intel_wait_for_register_fw(__to_uncore(display), reg, mask,
- value, 2, timeout_ms, out_value);
+ return intel_de_wait_for_register(display, reg, mask, value,
+ 2, timeout_ms * 1000,
+ intel_de_read_fw,
+ out_value, false);
}
int intel_de_wait_fw_us_atomic(struct intel_display *display, i915_reg_t reg,
u32 mask, u32 value, unsigned int timeout_us,
u32 *out_value)
{
- return __intel_wait_for_register_fw(__to_uncore(display), reg, mask,
- value, timeout_us, 0, out_value);
+ return intel_de_wait_for_register(display, reg, mask, value,
+ timeout_us, 0,
+ intel_de_read_fw,
+ out_value, true);
}
int intel_de_wait_for_set_us(struct intel_display *display, i915_reg_t reg,
--git a/drivers/gpu/drm/xe/compat-i915-headers/intel_uncore.h b/drivers/gpu/drm/xe/compat-i915-headers/intel_uncore.h
index a8cfd65119e0..08d7ab933672 100644
--- a/drivers/gpu/drm/xe/compat-i915-headers/intel_uncore.h
+++ b/drivers/gpu/drm/xe/compat-i915-headers/intel_uncore.h
@@ -98,37 +98,6 @@ static inline u32 intel_uncore_rmw(struct intel_uncore *uncore,
return xe_mmio_rmw32(__compat_uncore_to_mmio(uncore), reg, clear, set);
}
-static inline int
-__intel_wait_for_register(struct intel_uncore *uncore, i915_reg_t i915_reg,
- u32 mask, u32 value, unsigned int fast_timeout_us,
- unsigned int slow_timeout_ms, u32 *out_value)
-{
- struct xe_reg reg = XE_REG(i915_mmio_reg_offset(i915_reg));
- bool atomic;
-
- /*
- * Replicate the behavior from i915 here, in which sleep is not
- * performed if slow_timeout_ms == 0. This is necessary because
- * of some paths in display code where waits are done in atomic
- * context.
- */
- atomic = !slow_timeout_ms && fast_timeout_us > 0;
-
- return xe_mmio_wait32(__compat_uncore_to_mmio(uncore), reg, mask, value,
- fast_timeout_us + 1000 * slow_timeout_ms,
- out_value, atomic);
-}
-
-static inline int
-__intel_wait_for_register_fw(struct intel_uncore *uncore, i915_reg_t i915_reg,
- u32 mask, u32 value, unsigned int fast_timeout_us,
- unsigned int slow_timeout_ms, u32 *out_value)
-{
- return __intel_wait_for_register(uncore, i915_reg, mask, value,
- fast_timeout_us, slow_timeout_ms,
- out_value);
-}
-
static inline u32 intel_uncore_read_fw(struct intel_uncore *uncore,
i915_reg_t i915_reg)
{
--
2.52.0
^ permalink raw reply related [flat|nested] 19+ messages in thread
* ✗ CI.checkpatch: warning for drm/i915/de: Move register polling into display code
2026-03-13 11:10 [PATCH 0/3] drm/i915/de: Move register polling into display code Ville Syrjala
` (2 preceding siblings ...)
2026-03-13 11:10 ` [PATCH 3/3] drm/i915/de: Implement register polling in the display code Ville Syrjala
@ 2026-03-13 11:15 ` Patchwork
2026-03-13 11:17 ` ✓ CI.KUnit: success " Patchwork
` (6 subsequent siblings)
10 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2026-03-13 11:15 UTC (permalink / raw)
To: Ville Syrjala; +Cc: intel-xe
== Series Details ==
Series: drm/i915/de: Move register polling into display code
URL : https://patchwork.freedesktop.org/series/163181/
State : warning
== Summary ==
+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
1f57ba1afceae32108bd24770069f764d940a0e4
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 4d261a55689f1fcdf035155e5a757016f0c60421
Author: Ville Syrjälä <ville.syrjala@linux.intel.com>
Date: Fri Mar 13 13:10:28 2026 +0200
drm/i915/de: Implement register polling in the display code
The plan is to move all the mmio stuff into the display code itself.
As a first step implement the register polling in intel_de.c.
Currently i915 and xe implement this stuff in slightly different
ways, so there are some functional changes here. Try to go for a
reasonable middle ground between the i915 and xe implementations:
- the exponential backoff limit is the simpler approach taken
by i915 (== just clamp the max sleep duration to 1 ms)
- the fast vs. slow timeout handling is similar to i915 where
we first try the fast timeout and then again the slow timeout
if the condition still isn't satisfied. xe just adds up the
timeouts together, which is a bit weird.
- the atomic wait variant uses udelay() like xe, whereas i915
has no udelay()s in its atomic loop. As a compromise go for a
fixed 1 usec delay for short waits, instead of the somewhat
peculiar xe behaviour where it effectively just does one
iteration of the loop.
- keep the "use udelay() for < 10 usec waits" logic (which
more or less mirrors fsleep()), but include an explicit
might_sleep() even for these short waits when called from
a non-atomic intel_de_wait*() function. This should prevent
people from calling the non-atomic functions from the wrong
place.
Eventually we may want to switch over to poll_timeout*(),
but that lacks the exponential backoff, so a bit too
radical to change in one go.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
+ /mt/dim checkpatch 4082c266f2930288f1e9faadd4a389f15306a209 drm-intel
75224a182797 drm/i915/de: Introduce intel_de.c and move intel_de_{read, write}8() there
-:29: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#29:
new file mode 100644
total: 0 errors, 1 warnings, 0 checks, 77 lines checked
a1f6d9082662 drm/i915/de: Move intel_de_wait*() into intel_de.c
4d261a55689f drm/i915/de: Implement register polling in the display code
^ permalink raw reply [flat|nested] 19+ messages in thread
* ✓ CI.KUnit: success for drm/i915/de: Move register polling into display code
2026-03-13 11:10 [PATCH 0/3] drm/i915/de: Move register polling into display code Ville Syrjala
` (3 preceding siblings ...)
2026-03-13 11:15 ` ✗ CI.checkpatch: warning for drm/i915/de: Move register polling into " Patchwork
@ 2026-03-13 11:17 ` Patchwork
2026-03-13 11:51 ` ✓ Xe.CI.BAT: " Patchwork
` (5 subsequent siblings)
10 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2026-03-13 11:17 UTC (permalink / raw)
To: Ville Syrjala; +Cc: intel-xe
== Series Details ==
Series: drm/i915/de: Move register polling into display code
URL : https://patchwork.freedesktop.org/series/163181/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[11:15:52] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[11:15:56] 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
[11:16:27] Starting KUnit Kernel (1/1)...
[11:16:27] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[11:16:27] ================== guc_buf (11 subtests) ===================
[11:16:27] [PASSED] test_smallest
[11:16:27] [PASSED] test_largest
[11:16:27] [PASSED] test_granular
[11:16:27] [PASSED] test_unique
[11:16:27] [PASSED] test_overlap
[11:16:27] [PASSED] test_reusable
[11:16:27] [PASSED] test_too_big
[11:16:27] [PASSED] test_flush
[11:16:27] [PASSED] test_lookup
[11:16:27] [PASSED] test_data
[11:16:27] [PASSED] test_class
[11:16:27] ===================== [PASSED] guc_buf =====================
[11:16:27] =================== guc_dbm (7 subtests) ===================
[11:16:27] [PASSED] test_empty
[11:16:27] [PASSED] test_default
[11:16:27] ======================== test_size ========================
[11:16:27] [PASSED] 4
[11:16:27] [PASSED] 8
[11:16:27] [PASSED] 32
[11:16:27] [PASSED] 256
[11:16:27] ==================== [PASSED] test_size ====================
[11:16:27] ======================= test_reuse ========================
[11:16:27] [PASSED] 4
[11:16:27] [PASSED] 8
[11:16:27] [PASSED] 32
[11:16:27] [PASSED] 256
[11:16:27] =================== [PASSED] test_reuse ====================
[11:16:27] =================== test_range_overlap ====================
[11:16:27] [PASSED] 4
[11:16:27] [PASSED] 8
[11:16:27] [PASSED] 32
[11:16:27] [PASSED] 256
[11:16:27] =============== [PASSED] test_range_overlap ================
[11:16:27] =================== test_range_compact ====================
[11:16:27] [PASSED] 4
[11:16:27] [PASSED] 8
[11:16:27] [PASSED] 32
[11:16:27] [PASSED] 256
[11:16:27] =============== [PASSED] test_range_compact ================
[11:16:27] ==================== test_range_spare =====================
[11:16:27] [PASSED] 4
[11:16:27] [PASSED] 8
[11:16:27] [PASSED] 32
[11:16:27] [PASSED] 256
[11:16:27] ================ [PASSED] test_range_spare =================
[11:16:27] ===================== [PASSED] guc_dbm =====================
[11:16:27] =================== guc_idm (6 subtests) ===================
[11:16:27] [PASSED] bad_init
[11:16:27] [PASSED] no_init
[11:16:27] [PASSED] init_fini
[11:16:27] [PASSED] check_used
[11:16:27] [PASSED] check_quota
[11:16:27] [PASSED] check_all
[11:16:27] ===================== [PASSED] guc_idm =====================
[11:16:27] ================== no_relay (3 subtests) ===================
[11:16:27] [PASSED] xe_drops_guc2pf_if_not_ready
[11:16:27] [PASSED] xe_drops_guc2vf_if_not_ready
[11:16:27] [PASSED] xe_rejects_send_if_not_ready
[11:16:27] ==================== [PASSED] no_relay =====================
[11:16:27] ================== pf_relay (14 subtests) ==================
[11:16:27] [PASSED] pf_rejects_guc2pf_too_short
[11:16:27] [PASSED] pf_rejects_guc2pf_too_long
[11:16:27] [PASSED] pf_rejects_guc2pf_no_payload
[11:16:27] [PASSED] pf_fails_no_payload
[11:16:27] [PASSED] pf_fails_bad_origin
[11:16:27] [PASSED] pf_fails_bad_type
[11:16:27] [PASSED] pf_txn_reports_error
[11:16:27] [PASSED] pf_txn_sends_pf2guc
[11:16:27] [PASSED] pf_sends_pf2guc
[11:16:27] [SKIPPED] pf_loopback_nop
[11:16:27] [SKIPPED] pf_loopback_echo
[11:16:27] [SKIPPED] pf_loopback_fail
[11:16:27] [SKIPPED] pf_loopback_busy
[11:16:27] [SKIPPED] pf_loopback_retry
[11:16:27] ==================== [PASSED] pf_relay =====================
[11:16:27] ================== vf_relay (3 subtests) ===================
[11:16:27] [PASSED] vf_rejects_guc2vf_too_short
[11:16:27] [PASSED] vf_rejects_guc2vf_too_long
[11:16:27] [PASSED] vf_rejects_guc2vf_no_payload
[11:16:27] ==================== [PASSED] vf_relay =====================
[11:16:27] ================ pf_gt_config (9 subtests) =================
[11:16:27] [PASSED] fair_contexts_1vf
[11:16:27] [PASSED] fair_doorbells_1vf
[11:16:27] [PASSED] fair_ggtt_1vf
[11:16:27] ====================== fair_vram_1vf ======================
[11:16:27] [PASSED] 3.50 GiB
[11:16:27] [PASSED] 11.5 GiB
[11:16:27] [PASSED] 15.5 GiB
[11:16:27] [PASSED] 31.5 GiB
[11:16:27] [PASSED] 63.5 GiB
[11:16:27] [PASSED] 1.91 GiB
[11:16:27] ================== [PASSED] fair_vram_1vf ==================
[11:16:27] ================ fair_vram_1vf_admin_only =================
[11:16:27] [PASSED] 3.50 GiB
[11:16:27] [PASSED] 11.5 GiB
[11:16:27] [PASSED] 15.5 GiB
[11:16:27] [PASSED] 31.5 GiB
[11:16:27] [PASSED] 63.5 GiB
[11:16:27] [PASSED] 1.91 GiB
[11:16:27] ============ [PASSED] fair_vram_1vf_admin_only =============
[11:16:27] ====================== fair_contexts ======================
[11:16:27] [PASSED] 1 VF
[11:16:27] [PASSED] 2 VFs
[11:16:27] [PASSED] 3 VFs
[11:16:27] [PASSED] 4 VFs
[11:16:27] [PASSED] 5 VFs
[11:16:27] [PASSED] 6 VFs
[11:16:27] [PASSED] 7 VFs
[11:16:27] [PASSED] 8 VFs
[11:16:27] [PASSED] 9 VFs
[11:16:27] [PASSED] 10 VFs
[11:16:27] [PASSED] 11 VFs
[11:16:27] [PASSED] 12 VFs
[11:16:27] [PASSED] 13 VFs
[11:16:27] [PASSED] 14 VFs
[11:16:27] [PASSED] 15 VFs
[11:16:27] [PASSED] 16 VFs
[11:16:27] [PASSED] 17 VFs
[11:16:27] [PASSED] 18 VFs
[11:16:27] [PASSED] 19 VFs
[11:16:27] [PASSED] 20 VFs
[11:16:27] [PASSED] 21 VFs
[11:16:27] [PASSED] 22 VFs
[11:16:27] [PASSED] 23 VFs
[11:16:27] [PASSED] 24 VFs
[11:16:27] [PASSED] 25 VFs
[11:16:27] [PASSED] 26 VFs
[11:16:27] [PASSED] 27 VFs
[11:16:27] [PASSED] 28 VFs
[11:16:27] [PASSED] 29 VFs
[11:16:27] [PASSED] 30 VFs
[11:16:27] [PASSED] 31 VFs
[11:16:27] [PASSED] 32 VFs
[11:16:27] [PASSED] 33 VFs
[11:16:27] [PASSED] 34 VFs
[11:16:27] [PASSED] 35 VFs
[11:16:27] [PASSED] 36 VFs
[11:16:27] [PASSED] 37 VFs
[11:16:27] [PASSED] 38 VFs
[11:16:27] [PASSED] 39 VFs
[11:16:27] [PASSED] 40 VFs
[11:16:27] [PASSED] 41 VFs
[11:16:27] [PASSED] 42 VFs
[11:16:27] [PASSED] 43 VFs
[11:16:27] [PASSED] 44 VFs
[11:16:27] [PASSED] 45 VFs
[11:16:27] [PASSED] 46 VFs
[11:16:27] [PASSED] 47 VFs
[11:16:27] [PASSED] 48 VFs
[11:16:27] [PASSED] 49 VFs
[11:16:27] [PASSED] 50 VFs
[11:16:27] [PASSED] 51 VFs
[11:16:27] [PASSED] 52 VFs
[11:16:27] [PASSED] 53 VFs
[11:16:27] [PASSED] 54 VFs
[11:16:27] [PASSED] 55 VFs
[11:16:27] [PASSED] 56 VFs
[11:16:27] [PASSED] 57 VFs
[11:16:27] [PASSED] 58 VFs
[11:16:27] [PASSED] 59 VFs
[11:16:27] [PASSED] 60 VFs
[11:16:27] [PASSED] 61 VFs
[11:16:27] [PASSED] 62 VFs
[11:16:27] [PASSED] 63 VFs
[11:16:27] ================== [PASSED] fair_contexts ==================
[11:16:27] ===================== fair_doorbells ======================
[11:16:27] [PASSED] 1 VF
[11:16:27] [PASSED] 2 VFs
[11:16:27] [PASSED] 3 VFs
[11:16:27] [PASSED] 4 VFs
[11:16:27] [PASSED] 5 VFs
[11:16:27] [PASSED] 6 VFs
[11:16:27] [PASSED] 7 VFs
[11:16:27] [PASSED] 8 VFs
[11:16:27] [PASSED] 9 VFs
[11:16:27] [PASSED] 10 VFs
[11:16:27] [PASSED] 11 VFs
[11:16:27] [PASSED] 12 VFs
[11:16:27] [PASSED] 13 VFs
[11:16:27] [PASSED] 14 VFs
[11:16:27] [PASSED] 15 VFs
[11:16:27] [PASSED] 16 VFs
[11:16:27] [PASSED] 17 VFs
[11:16:27] [PASSED] 18 VFs
[11:16:27] [PASSED] 19 VFs
[11:16:27] [PASSED] 20 VFs
[11:16:27] [PASSED] 21 VFs
[11:16:27] [PASSED] 22 VFs
[11:16:27] [PASSED] 23 VFs
[11:16:27] [PASSED] 24 VFs
[11:16:27] [PASSED] 25 VFs
[11:16:27] [PASSED] 26 VFs
[11:16:27] [PASSED] 27 VFs
[11:16:27] [PASSED] 28 VFs
[11:16:27] [PASSED] 29 VFs
[11:16:27] [PASSED] 30 VFs
[11:16:27] [PASSED] 31 VFs
[11:16:27] [PASSED] 32 VFs
[11:16:27] [PASSED] 33 VFs
[11:16:27] [PASSED] 34 VFs
[11:16:27] [PASSED] 35 VFs
[11:16:27] [PASSED] 36 VFs
[11:16:27] [PASSED] 37 VFs
[11:16:27] [PASSED] 38 VFs
[11:16:27] [PASSED] 39 VFs
[11:16:27] [PASSED] 40 VFs
[11:16:27] [PASSED] 41 VFs
[11:16:27] [PASSED] 42 VFs
[11:16:27] [PASSED] 43 VFs
[11:16:27] [PASSED] 44 VFs
[11:16:27] [PASSED] 45 VFs
[11:16:27] [PASSED] 46 VFs
[11:16:27] [PASSED] 47 VFs
[11:16:27] [PASSED] 48 VFs
[11:16:27] [PASSED] 49 VFs
[11:16:27] [PASSED] 50 VFs
[11:16:27] [PASSED] 51 VFs
[11:16:27] [PASSED] 52 VFs
[11:16:27] [PASSED] 53 VFs
[11:16:27] [PASSED] 54 VFs
[11:16:27] [PASSED] 55 VFs
[11:16:27] [PASSED] 56 VFs
[11:16:27] [PASSED] 57 VFs
[11:16:27] [PASSED] 58 VFs
[11:16:27] [PASSED] 59 VFs
[11:16:27] [PASSED] 60 VFs
[11:16:27] [PASSED] 61 VFs
[11:16:27] [PASSED] 62 VFs
[11:16:27] [PASSED] 63 VFs
[11:16:27] ================= [PASSED] fair_doorbells ==================
[11:16:27] ======================== fair_ggtt ========================
[11:16:27] [PASSED] 1 VF
[11:16:27] [PASSED] 2 VFs
[11:16:27] [PASSED] 3 VFs
[11:16:27] [PASSED] 4 VFs
[11:16:27] [PASSED] 5 VFs
[11:16:27] [PASSED] 6 VFs
[11:16:27] [PASSED] 7 VFs
[11:16:27] [PASSED] 8 VFs
[11:16:27] [PASSED] 9 VFs
[11:16:27] [PASSED] 10 VFs
[11:16:27] [PASSED] 11 VFs
[11:16:27] [PASSED] 12 VFs
[11:16:27] [PASSED] 13 VFs
[11:16:27] [PASSED] 14 VFs
[11:16:27] [PASSED] 15 VFs
[11:16:27] [PASSED] 16 VFs
[11:16:27] [PASSED] 17 VFs
[11:16:27] [PASSED] 18 VFs
[11:16:27] [PASSED] 19 VFs
[11:16:27] [PASSED] 20 VFs
[11:16:27] [PASSED] 21 VFs
[11:16:27] [PASSED] 22 VFs
[11:16:27] [PASSED] 23 VFs
[11:16:27] [PASSED] 24 VFs
[11:16:27] [PASSED] 25 VFs
[11:16:27] [PASSED] 26 VFs
[11:16:27] [PASSED] 27 VFs
[11:16:27] [PASSED] 28 VFs
[11:16:27] [PASSED] 29 VFs
[11:16:27] [PASSED] 30 VFs
[11:16:27] [PASSED] 31 VFs
[11:16:27] [PASSED] 32 VFs
[11:16:27] [PASSED] 33 VFs
[11:16:27] [PASSED] 34 VFs
[11:16:27] [PASSED] 35 VFs
[11:16:27] [PASSED] 36 VFs
[11:16:27] [PASSED] 37 VFs
[11:16:27] [PASSED] 38 VFs
[11:16:27] [PASSED] 39 VFs
[11:16:27] [PASSED] 40 VFs
[11:16:27] [PASSED] 41 VFs
[11:16:27] [PASSED] 42 VFs
[11:16:27] [PASSED] 43 VFs
[11:16:27] [PASSED] 44 VFs
[11:16:27] [PASSED] 45 VFs
[11:16:27] [PASSED] 46 VFs
[11:16:27] [PASSED] 47 VFs
[11:16:27] [PASSED] 48 VFs
[11:16:27] [PASSED] 49 VFs
[11:16:27] [PASSED] 50 VFs
[11:16:27] [PASSED] 51 VFs
[11:16:27] [PASSED] 52 VFs
[11:16:27] [PASSED] 53 VFs
[11:16:27] [PASSED] 54 VFs
[11:16:27] [PASSED] 55 VFs
[11:16:27] [PASSED] 56 VFs
[11:16:27] [PASSED] 57 VFs
[11:16:27] [PASSED] 58 VFs
[11:16:27] [PASSED] 59 VFs
[11:16:27] [PASSED] 60 VFs
[11:16:27] [PASSED] 61 VFs
[11:16:27] [PASSED] 62 VFs
[11:16:27] [PASSED] 63 VFs
[11:16:27] ==================== [PASSED] fair_ggtt ====================
[11:16:27] ======================== fair_vram ========================
[11:16:27] [PASSED] 1 VF
[11:16:27] [PASSED] 2 VFs
[11:16:27] [PASSED] 3 VFs
[11:16:27] [PASSED] 4 VFs
[11:16:27] [PASSED] 5 VFs
[11:16:27] [PASSED] 6 VFs
[11:16:27] [PASSED] 7 VFs
[11:16:27] [PASSED] 8 VFs
[11:16:27] [PASSED] 9 VFs
[11:16:27] [PASSED] 10 VFs
[11:16:27] [PASSED] 11 VFs
[11:16:27] [PASSED] 12 VFs
[11:16:27] [PASSED] 13 VFs
[11:16:27] [PASSED] 14 VFs
[11:16:27] [PASSED] 15 VFs
[11:16:27] [PASSED] 16 VFs
[11:16:27] [PASSED] 17 VFs
[11:16:27] [PASSED] 18 VFs
[11:16:27] [PASSED] 19 VFs
[11:16:27] [PASSED] 20 VFs
[11:16:27] [PASSED] 21 VFs
[11:16:27] [PASSED] 22 VFs
[11:16:27] [PASSED] 23 VFs
[11:16:27] [PASSED] 24 VFs
[11:16:27] [PASSED] 25 VFs
[11:16:27] [PASSED] 26 VFs
[11:16:27] [PASSED] 27 VFs
[11:16:27] [PASSED] 28 VFs
[11:16:27] [PASSED] 29 VFs
[11:16:27] [PASSED] 30 VFs
[11:16:27] [PASSED] 31 VFs
[11:16:27] [PASSED] 32 VFs
[11:16:27] [PASSED] 33 VFs
[11:16:27] [PASSED] 34 VFs
[11:16:27] [PASSED] 35 VFs
[11:16:27] [PASSED] 36 VFs
[11:16:27] [PASSED] 37 VFs
[11:16:27] [PASSED] 38 VFs
[11:16:27] [PASSED] 39 VFs
[11:16:27] [PASSED] 40 VFs
[11:16:27] [PASSED] 41 VFs
[11:16:27] [PASSED] 42 VFs
[11:16:27] [PASSED] 43 VFs
[11:16:27] [PASSED] 44 VFs
[11:16:27] [PASSED] 45 VFs
[11:16:27] [PASSED] 46 VFs
[11:16:27] [PASSED] 47 VFs
[11:16:27] [PASSED] 48 VFs
[11:16:27] [PASSED] 49 VFs
[11:16:27] [PASSED] 50 VFs
[11:16:27] [PASSED] 51 VFs
[11:16:27] [PASSED] 52 VFs
[11:16:27] [PASSED] 53 VFs
[11:16:27] [PASSED] 54 VFs
[11:16:27] [PASSED] 55 VFs
[11:16:27] [PASSED] 56 VFs
[11:16:27] [PASSED] 57 VFs
[11:16:27] [PASSED] 58 VFs
[11:16:27] [PASSED] 59 VFs
[11:16:27] [PASSED] 60 VFs
[11:16:27] [PASSED] 61 VFs
[11:16:27] [PASSED] 62 VFs
[11:16:27] [PASSED] 63 VFs
[11:16:27] ==================== [PASSED] fair_vram ====================
[11:16:27] ================== [PASSED] pf_gt_config ===================
[11:16:27] ===================== lmtt (1 subtest) =====================
[11:16:27] ======================== test_ops =========================
[11:16:27] [PASSED] 2-level
[11:16:27] [PASSED] multi-level
[11:16:27] ==================== [PASSED] test_ops =====================
[11:16:27] ====================== [PASSED] lmtt =======================
[11:16:27] ================= pf_service (11 subtests) =================
[11:16:27] [PASSED] pf_negotiate_any
[11:16:27] [PASSED] pf_negotiate_base_match
[11:16:27] [PASSED] pf_negotiate_base_newer
[11:16:27] [PASSED] pf_negotiate_base_next
[11:16:27] [SKIPPED] pf_negotiate_base_older
[11:16:27] [PASSED] pf_negotiate_base_prev
[11:16:27] [PASSED] pf_negotiate_latest_match
[11:16:27] [PASSED] pf_negotiate_latest_newer
[11:16:27] [PASSED] pf_negotiate_latest_next
[11:16:27] [SKIPPED] pf_negotiate_latest_older
[11:16:27] [SKIPPED] pf_negotiate_latest_prev
[11:16:27] =================== [PASSED] pf_service ====================
[11:16:27] ================= xe_guc_g2g (2 subtests) ==================
[11:16:27] ============== xe_live_guc_g2g_kunit_default ==============
[11:16:27] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[11:16:27] ============== xe_live_guc_g2g_kunit_allmem ===============
[11:16:27] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[11:16:27] =================== [SKIPPED] xe_guc_g2g ===================
[11:16:27] =================== xe_mocs (2 subtests) ===================
[11:16:27] ================ xe_live_mocs_kernel_kunit ================
[11:16:27] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[11:16:27] ================ xe_live_mocs_reset_kunit =================
[11:16:27] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[11:16:27] ==================== [SKIPPED] xe_mocs =====================
[11:16:27] ================= xe_migrate (2 subtests) ==================
[11:16:27] ================= xe_migrate_sanity_kunit =================
[11:16:27] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[11:16:27] ================== xe_validate_ccs_kunit ==================
[11:16:27] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[11:16:27] =================== [SKIPPED] xe_migrate ===================
[11:16:27] ================== xe_dma_buf (1 subtest) ==================
[11:16:27] ==================== xe_dma_buf_kunit =====================
[11:16:27] ================ [SKIPPED] xe_dma_buf_kunit ================
[11:16:27] =================== [SKIPPED] xe_dma_buf ===================
[11:16:27] ================= xe_bo_shrink (1 subtest) =================
[11:16:27] =================== xe_bo_shrink_kunit ====================
[11:16:27] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[11:16:27] ================== [SKIPPED] xe_bo_shrink ==================
[11:16:27] ==================== xe_bo (2 subtests) ====================
[11:16:27] ================== xe_ccs_migrate_kunit ===================
[11:16:27] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[11:16:27] ==================== xe_bo_evict_kunit ====================
[11:16:27] =============== [SKIPPED] xe_bo_evict_kunit ================
[11:16:27] ===================== [SKIPPED] xe_bo ======================
[11:16:27] ==================== args (13 subtests) ====================
[11:16:27] [PASSED] count_args_test
[11:16:27] [PASSED] call_args_example
[11:16:27] [PASSED] call_args_test
[11:16:27] [PASSED] drop_first_arg_example
[11:16:27] [PASSED] drop_first_arg_test
[11:16:27] [PASSED] first_arg_example
[11:16:27] [PASSED] first_arg_test
[11:16:27] [PASSED] last_arg_example
[11:16:27] [PASSED] last_arg_test
[11:16:27] [PASSED] pick_arg_example
[11:16:27] [PASSED] if_args_example
[11:16:27] [PASSED] if_args_test
[11:16:27] [PASSED] sep_comma_example
[11:16:27] ====================== [PASSED] args =======================
[11:16:27] =================== xe_pci (3 subtests) ====================
[11:16:27] ==================== check_graphics_ip ====================
[11:16:27] [PASSED] 12.00 Xe_LP
[11:16:27] [PASSED] 12.10 Xe_LP+
[11:16:27] [PASSED] 12.55 Xe_HPG
[11:16:27] [PASSED] 12.60 Xe_HPC
[11:16:27] [PASSED] 12.70 Xe_LPG
[11:16:27] [PASSED] 12.71 Xe_LPG
[11:16:27] [PASSED] 12.74 Xe_LPG+
[11:16:27] [PASSED] 20.01 Xe2_HPG
[11:16:27] [PASSED] 20.02 Xe2_HPG
[11:16:27] [PASSED] 20.04 Xe2_LPG
[11:16:27] [PASSED] 30.00 Xe3_LPG
[11:16:27] [PASSED] 30.01 Xe3_LPG
[11:16:27] [PASSED] 30.03 Xe3_LPG
[11:16:27] [PASSED] 30.04 Xe3_LPG
[11:16:27] [PASSED] 30.05 Xe3_LPG
[11:16:27] [PASSED] 35.10 Xe3p_LPG
[11:16:27] [PASSED] 35.11 Xe3p_XPC
[11:16:27] ================ [PASSED] check_graphics_ip ================
[11:16:27] ===================== check_media_ip ======================
[11:16:27] [PASSED] 12.00 Xe_M
[11:16:27] [PASSED] 12.55 Xe_HPM
[11:16:27] [PASSED] 13.00 Xe_LPM+
[11:16:27] [PASSED] 13.01 Xe2_HPM
[11:16:27] [PASSED] 20.00 Xe2_LPM
[11:16:27] [PASSED] 30.00 Xe3_LPM
[11:16:27] [PASSED] 30.02 Xe3_LPM
[11:16:27] [PASSED] 35.00 Xe3p_LPM
[11:16:27] [PASSED] 35.03 Xe3p_HPM
[11:16:27] ================= [PASSED] check_media_ip ==================
[11:16:27] =================== check_platform_desc ===================
[11:16:27] [PASSED] 0x9A60 (TIGERLAKE)
[11:16:27] [PASSED] 0x9A68 (TIGERLAKE)
[11:16:27] [PASSED] 0x9A70 (TIGERLAKE)
[11:16:27] [PASSED] 0x9A40 (TIGERLAKE)
[11:16:27] [PASSED] 0x9A49 (TIGERLAKE)
[11:16:27] [PASSED] 0x9A59 (TIGERLAKE)
[11:16:27] [PASSED] 0x9A78 (TIGERLAKE)
[11:16:27] [PASSED] 0x9AC0 (TIGERLAKE)
[11:16:27] [PASSED] 0x9AC9 (TIGERLAKE)
[11:16:27] [PASSED] 0x9AD9 (TIGERLAKE)
[11:16:27] [PASSED] 0x9AF8 (TIGERLAKE)
[11:16:27] [PASSED] 0x4C80 (ROCKETLAKE)
[11:16:27] [PASSED] 0x4C8A (ROCKETLAKE)
[11:16:27] [PASSED] 0x4C8B (ROCKETLAKE)
[11:16:27] [PASSED] 0x4C8C (ROCKETLAKE)
[11:16:27] [PASSED] 0x4C90 (ROCKETLAKE)
[11:16:27] [PASSED] 0x4C9A (ROCKETLAKE)
[11:16:27] [PASSED] 0x4680 (ALDERLAKE_S)
[11:16:27] [PASSED] 0x4682 (ALDERLAKE_S)
[11:16:27] [PASSED] 0x4688 (ALDERLAKE_S)
[11:16:27] [PASSED] 0x468A (ALDERLAKE_S)
[11:16:27] [PASSED] 0x468B (ALDERLAKE_S)
[11:16:27] [PASSED] 0x4690 (ALDERLAKE_S)
[11:16:27] [PASSED] 0x4692 (ALDERLAKE_S)
[11:16:27] [PASSED] 0x4693 (ALDERLAKE_S)
[11:16:27] [PASSED] 0x46A0 (ALDERLAKE_P)
[11:16:27] [PASSED] 0x46A1 (ALDERLAKE_P)
[11:16:27] [PASSED] 0x46A2 (ALDERLAKE_P)
[11:16:27] [PASSED] 0x46A3 (ALDERLAKE_P)
[11:16:27] [PASSED] 0x46A6 (ALDERLAKE_P)
[11:16:27] [PASSED] 0x46A8 (ALDERLAKE_P)
[11:16:27] [PASSED] 0x46AA (ALDERLAKE_P)
[11:16:27] [PASSED] 0x462A (ALDERLAKE_P)
[11:16:27] [PASSED] 0x4626 (ALDERLAKE_P)
[11:16:27] [PASSED] 0x4628 (ALDERLAKE_P)
[11:16:27] [PASSED] 0x46B0 (ALDERLAKE_P)
[11:16:27] [PASSED] 0x46B1 (ALDERLAKE_P)
[11:16:27] [PASSED] 0x46B2 (ALDERLAKE_P)
[11:16:27] [PASSED] 0x46B3 (ALDERLAKE_P)
[11:16:27] [PASSED] 0x46C0 (ALDERLAKE_P)
[11:16:27] [PASSED] 0x46C1 (ALDERLAKE_P)
[11:16:27] [PASSED] 0x46C2 (ALDERLAKE_P)
[11:16:27] [PASSED] 0x46C3 (ALDERLAKE_P)
[11:16:27] [PASSED] 0x46D0 (ALDERLAKE_N)
[11:16:27] [PASSED] 0x46D1 (ALDERLAKE_N)
[11:16:27] [PASSED] 0x46D2 (ALDERLAKE_N)
[11:16:27] [PASSED] 0x46D3 (ALDERLAKE_N)
[11:16:27] [PASSED] 0x46D4 (ALDERLAKE_N)
[11:16:27] [PASSED] 0xA721 (ALDERLAKE_P)
[11:16:27] [PASSED] 0xA7A1 (ALDERLAKE_P)
[11:16:27] [PASSED] 0xA7A9 (ALDERLAKE_P)
[11:16:27] [PASSED] 0xA7AC (ALDERLAKE_P)
[11:16:27] [PASSED] 0xA7AD (ALDERLAKE_P)
[11:16:27] [PASSED] 0xA720 (ALDERLAKE_P)
[11:16:27] [PASSED] 0xA7A0 (ALDERLAKE_P)
[11:16:27] [PASSED] 0xA7A8 (ALDERLAKE_P)
[11:16:27] [PASSED] 0xA7AA (ALDERLAKE_P)
[11:16:27] [PASSED] 0xA7AB (ALDERLAKE_P)
[11:16:27] [PASSED] 0xA780 (ALDERLAKE_S)
[11:16:27] [PASSED] 0xA781 (ALDERLAKE_S)
[11:16:27] [PASSED] 0xA782 (ALDERLAKE_S)
[11:16:27] [PASSED] 0xA783 (ALDERLAKE_S)
[11:16:27] [PASSED] 0xA788 (ALDERLAKE_S)
[11:16:27] [PASSED] 0xA789 (ALDERLAKE_S)
[11:16:27] [PASSED] 0xA78A (ALDERLAKE_S)
[11:16:27] [PASSED] 0xA78B (ALDERLAKE_S)
[11:16:27] [PASSED] 0x4905 (DG1)
[11:16:27] [PASSED] 0x4906 (DG1)
[11:16:27] [PASSED] 0x4907 (DG1)
[11:16:27] [PASSED] 0x4908 (DG1)
[11:16:27] [PASSED] 0x4909 (DG1)
[11:16:27] [PASSED] 0x56C0 (DG2)
[11:16:27] [PASSED] 0x56C2 (DG2)
[11:16:27] [PASSED] 0x56C1 (DG2)
[11:16:27] [PASSED] 0x7D51 (METEORLAKE)
[11:16:27] [PASSED] 0x7DD1 (METEORLAKE)
[11:16:27] [PASSED] 0x7D41 (METEORLAKE)
[11:16:27] [PASSED] 0x7D67 (METEORLAKE)
[11:16:27] [PASSED] 0xB640 (METEORLAKE)
[11:16:27] [PASSED] 0x56A0 (DG2)
[11:16:27] [PASSED] 0x56A1 (DG2)
[11:16:27] [PASSED] 0x56A2 (DG2)
[11:16:27] [PASSED] 0x56BE (DG2)
[11:16:27] [PASSED] 0x56BF (DG2)
[11:16:27] [PASSED] 0x5690 (DG2)
[11:16:27] [PASSED] 0x5691 (DG2)
[11:16:27] [PASSED] 0x5692 (DG2)
[11:16:27] [PASSED] 0x56A5 (DG2)
[11:16:27] [PASSED] 0x56A6 (DG2)
[11:16:27] [PASSED] 0x56B0 (DG2)
[11:16:27] [PASSED] 0x56B1 (DG2)
[11:16:27] [PASSED] 0x56BA (DG2)
[11:16:27] [PASSED] 0x56BB (DG2)
[11:16:27] [PASSED] 0x56BC (DG2)
[11:16:27] [PASSED] 0x56BD (DG2)
[11:16:27] [PASSED] 0x5693 (DG2)
[11:16:27] [PASSED] 0x5694 (DG2)
[11:16:27] [PASSED] 0x5695 (DG2)
[11:16:27] [PASSED] 0x56A3 (DG2)
[11:16:27] [PASSED] 0x56A4 (DG2)
[11:16:27] [PASSED] 0x56B2 (DG2)
[11:16:27] [PASSED] 0x56B3 (DG2)
[11:16:27] [PASSED] 0x5696 (DG2)
[11:16:27] [PASSED] 0x5697 (DG2)
[11:16:27] [PASSED] 0xB69 (PVC)
[11:16:27] [PASSED] 0xB6E (PVC)
[11:16:27] [PASSED] 0xBD4 (PVC)
[11:16:27] [PASSED] 0xBD5 (PVC)
[11:16:27] [PASSED] 0xBD6 (PVC)
[11:16:27] [PASSED] 0xBD7 (PVC)
[11:16:27] [PASSED] 0xBD8 (PVC)
[11:16:27] [PASSED] 0xBD9 (PVC)
[11:16:27] [PASSED] 0xBDA (PVC)
[11:16:27] [PASSED] 0xBDB (PVC)
[11:16:27] [PASSED] 0xBE0 (PVC)
[11:16:27] [PASSED] 0xBE1 (PVC)
[11:16:27] [PASSED] 0xBE5 (PVC)
[11:16:27] [PASSED] 0x7D40 (METEORLAKE)
[11:16:27] [PASSED] 0x7D45 (METEORLAKE)
[11:16:27] [PASSED] 0x7D55 (METEORLAKE)
[11:16:27] [PASSED] 0x7D60 (METEORLAKE)
[11:16:27] [PASSED] 0x7DD5 (METEORLAKE)
[11:16:27] [PASSED] 0x6420 (LUNARLAKE)
[11:16:27] [PASSED] 0x64A0 (LUNARLAKE)
[11:16:27] [PASSED] 0x64B0 (LUNARLAKE)
[11:16:27] [PASSED] 0xE202 (BATTLEMAGE)
[11:16:27] [PASSED] 0xE209 (BATTLEMAGE)
[11:16:27] [PASSED] 0xE20B (BATTLEMAGE)
[11:16:27] [PASSED] 0xE20C (BATTLEMAGE)
[11:16:27] [PASSED] 0xE20D (BATTLEMAGE)
[11:16:27] [PASSED] 0xE210 (BATTLEMAGE)
[11:16:27] [PASSED] 0xE211 (BATTLEMAGE)
[11:16:27] [PASSED] 0xE212 (BATTLEMAGE)
[11:16:27] [PASSED] 0xE216 (BATTLEMAGE)
[11:16:27] [PASSED] 0xE220 (BATTLEMAGE)
[11:16:27] [PASSED] 0xE221 (BATTLEMAGE)
[11:16:27] [PASSED] 0xE222 (BATTLEMAGE)
[11:16:27] [PASSED] 0xE223 (BATTLEMAGE)
[11:16:27] [PASSED] 0xB080 (PANTHERLAKE)
[11:16:27] [PASSED] 0xB081 (PANTHERLAKE)
[11:16:27] [PASSED] 0xB082 (PANTHERLAKE)
[11:16:27] [PASSED] 0xB083 (PANTHERLAKE)
[11:16:27] [PASSED] 0xB084 (PANTHERLAKE)
[11:16:27] [PASSED] 0xB085 (PANTHERLAKE)
[11:16:27] [PASSED] 0xB086 (PANTHERLAKE)
[11:16:27] [PASSED] 0xB087 (PANTHERLAKE)
[11:16:27] [PASSED] 0xB08F (PANTHERLAKE)
[11:16:27] [PASSED] 0xB090 (PANTHERLAKE)
[11:16:27] [PASSED] 0xB0A0 (PANTHERLAKE)
[11:16:27] [PASSED] 0xB0B0 (PANTHERLAKE)
[11:16:27] [PASSED] 0xFD80 (PANTHERLAKE)
[11:16:27] [PASSED] 0xFD81 (PANTHERLAKE)
[11:16:27] [PASSED] 0xD740 (NOVALAKE_S)
[11:16:27] [PASSED] 0xD741 (NOVALAKE_S)
[11:16:27] [PASSED] 0xD742 (NOVALAKE_S)
[11:16:27] [PASSED] 0xD743 (NOVALAKE_S)
[11:16:27] [PASSED] 0xD744 (NOVALAKE_S)
[11:16:27] [PASSED] 0xD745 (NOVALAKE_S)
[11:16:27] [PASSED] 0x674C (CRESCENTISLAND)
[11:16:27] [PASSED] 0xD750 (NOVALAKE_P)
[11:16:27] [PASSED] 0xD751 (NOVALAKE_P)
[11:16:27] [PASSED] 0xD752 (NOVALAKE_P)
[11:16:27] [PASSED] 0xD753 (NOVALAKE_P)
[11:16:27] [PASSED] 0xD754 (NOVALAKE_P)
[11:16:27] [PASSED] 0xD755 (NOVALAKE_P)
[11:16:27] [PASSED] 0xD756 (NOVALAKE_P)
[11:16:27] [PASSED] 0xD757 (NOVALAKE_P)
[11:16:27] [PASSED] 0xD75F (NOVALAKE_P)
[11:16:27] =============== [PASSED] check_platform_desc ===============
[11:16:27] ===================== [PASSED] xe_pci ======================
[11:16:27] =================== xe_rtp (2 subtests) ====================
[11:16:27] =============== xe_rtp_process_to_sr_tests ================
[11:16:27] [PASSED] coalesce-same-reg
[11:16:27] [PASSED] no-match-no-add
[11:16:27] [PASSED] match-or
[11:16:27] [PASSED] match-or-xfail
[11:16:27] [PASSED] no-match-no-add-multiple-rules
[11:16:27] [PASSED] two-regs-two-entries
[11:16:27] [PASSED] clr-one-set-other
[11:16:27] [PASSED] set-field
[11:16:27] [PASSED] conflict-duplicate
stty: 'standard input': Inappropriate ioctl for device
[11:16:27] [PASSED] conflict-not-disjoint
[11:16:27] [PASSED] conflict-reg-type
[11:16:27] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[11:16:27] ================== xe_rtp_process_tests ===================
[11:16:27] [PASSED] active1
[11:16:27] [PASSED] active2
[11:16:27] [PASSED] active-inactive
[11:16:27] [PASSED] inactive-active
[11:16:27] [PASSED] inactive-1st_or_active-inactive
[11:16:27] [PASSED] inactive-2nd_or_active-inactive
[11:16:27] [PASSED] inactive-last_or_active-inactive
[11:16:27] [PASSED] inactive-no_or_active-inactive
[11:16:27] ============== [PASSED] xe_rtp_process_tests ===============
[11:16:27] ===================== [PASSED] xe_rtp ======================
[11:16:27] ==================== xe_wa (1 subtest) =====================
[11:16:27] ======================== xe_wa_gt =========================
[11:16:27] [PASSED] TIGERLAKE B0
[11:16:27] [PASSED] DG1 A0
[11:16:27] [PASSED] DG1 B0
[11:16:27] [PASSED] ALDERLAKE_S A0
[11:16:27] [PASSED] ALDERLAKE_S B0
[11:16:27] [PASSED] ALDERLAKE_S C0
[11:16:27] [PASSED] ALDERLAKE_S D0
[11:16:27] [PASSED] ALDERLAKE_P A0
[11:16:27] [PASSED] ALDERLAKE_P B0
[11:16:27] [PASSED] ALDERLAKE_P C0
[11:16:27] [PASSED] ALDERLAKE_S RPLS D0
[11:16:27] [PASSED] ALDERLAKE_P RPLU E0
[11:16:27] [PASSED] DG2 G10 C0
[11:16:27] [PASSED] DG2 G11 B1
[11:16:27] [PASSED] DG2 G12 A1
[11:16:27] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[11:16:27] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[11:16:27] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[11:16:27] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[11:16:27] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[11:16:27] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[11:16:27] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[11:16:27] ==================== [PASSED] xe_wa_gt =====================
[11:16:27] ====================== [PASSED] xe_wa ======================
[11:16:27] ============================================================
[11:16:27] Testing complete. Ran 597 tests: passed: 579, skipped: 18
[11:16:27] Elapsed time: 35.400s total, 4.262s configuring, 30.471s building, 0.621s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[11:16:28] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[11:16:29] 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
[11:16:53] Starting KUnit Kernel (1/1)...
[11:16:53] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[11:16:53] ============ drm_test_pick_cmdline (2 subtests) ============
[11:16:53] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[11:16:53] =============== drm_test_pick_cmdline_named ===============
[11:16:53] [PASSED] NTSC
[11:16:53] [PASSED] NTSC-J
[11:16:53] [PASSED] PAL
[11:16:53] [PASSED] PAL-M
[11:16:53] =========== [PASSED] drm_test_pick_cmdline_named ===========
[11:16:53] ============== [PASSED] drm_test_pick_cmdline ==============
[11:16:53] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[11:16:53] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[11:16:53] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[11:16:53] =========== drm_validate_clone_mode (2 subtests) ===========
[11:16:53] ============== drm_test_check_in_clone_mode ===============
[11:16:53] [PASSED] in_clone_mode
[11:16:53] [PASSED] not_in_clone_mode
[11:16:53] ========== [PASSED] drm_test_check_in_clone_mode ===========
[11:16:53] =============== drm_test_check_valid_clones ===============
[11:16:53] [PASSED] not_in_clone_mode
[11:16:53] [PASSED] valid_clone
[11:16:53] [PASSED] invalid_clone
[11:16:53] =========== [PASSED] drm_test_check_valid_clones ===========
[11:16:53] ============= [PASSED] drm_validate_clone_mode =============
[11:16:53] ============= drm_validate_modeset (1 subtest) =============
[11:16:53] [PASSED] drm_test_check_connector_changed_modeset
[11:16:53] ============== [PASSED] drm_validate_modeset ===============
[11:16:53] ====== drm_test_bridge_get_current_state (2 subtests) ======
[11:16:53] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[11:16:53] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[11:16:53] ======== [PASSED] drm_test_bridge_get_current_state ========
[11:16:53] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[11:16:53] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[11:16:53] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[11:16:53] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[11:16:53] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[11:16:53] ============== drm_bridge_alloc (2 subtests) ===============
[11:16:53] [PASSED] drm_test_drm_bridge_alloc_basic
[11:16:53] [PASSED] drm_test_drm_bridge_alloc_get_put
[11:16:53] ================ [PASSED] drm_bridge_alloc =================
[11:16:53] ============= drm_cmdline_parser (40 subtests) =============
[11:16:53] [PASSED] drm_test_cmdline_force_d_only
[11:16:53] [PASSED] drm_test_cmdline_force_D_only_dvi
[11:16:53] [PASSED] drm_test_cmdline_force_D_only_hdmi
[11:16:53] [PASSED] drm_test_cmdline_force_D_only_not_digital
[11:16:53] [PASSED] drm_test_cmdline_force_e_only
[11:16:53] [PASSED] drm_test_cmdline_res
[11:16:53] [PASSED] drm_test_cmdline_res_vesa
[11:16:53] [PASSED] drm_test_cmdline_res_vesa_rblank
[11:16:53] [PASSED] drm_test_cmdline_res_rblank
[11:16:53] [PASSED] drm_test_cmdline_res_bpp
[11:16:53] [PASSED] drm_test_cmdline_res_refresh
[11:16:53] [PASSED] drm_test_cmdline_res_bpp_refresh
[11:16:53] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[11:16:53] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[11:16:53] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[11:16:53] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[11:16:53] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[11:16:53] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[11:16:53] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[11:16:53] [PASSED] drm_test_cmdline_res_margins_force_on
[11:16:53] [PASSED] drm_test_cmdline_res_vesa_margins
[11:16:53] [PASSED] drm_test_cmdline_name
[11:16:53] [PASSED] drm_test_cmdline_name_bpp
[11:16:53] [PASSED] drm_test_cmdline_name_option
[11:16:53] [PASSED] drm_test_cmdline_name_bpp_option
[11:16:53] [PASSED] drm_test_cmdline_rotate_0
[11:16:53] [PASSED] drm_test_cmdline_rotate_90
[11:16:53] [PASSED] drm_test_cmdline_rotate_180
[11:16:53] [PASSED] drm_test_cmdline_rotate_270
[11:16:53] [PASSED] drm_test_cmdline_hmirror
[11:16:53] [PASSED] drm_test_cmdline_vmirror
[11:16:53] [PASSED] drm_test_cmdline_margin_options
[11:16:53] [PASSED] drm_test_cmdline_multiple_options
[11:16:53] [PASSED] drm_test_cmdline_bpp_extra_and_option
[11:16:53] [PASSED] drm_test_cmdline_extra_and_option
[11:16:53] [PASSED] drm_test_cmdline_freestanding_options
[11:16:53] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[11:16:53] [PASSED] drm_test_cmdline_panel_orientation
[11:16:53] ================ drm_test_cmdline_invalid =================
[11:16:53] [PASSED] margin_only
[11:16:53] [PASSED] interlace_only
[11:16:53] [PASSED] res_missing_x
[11:16:53] [PASSED] res_missing_y
[11:16:53] [PASSED] res_bad_y
[11:16:53] [PASSED] res_missing_y_bpp
[11:16:53] [PASSED] res_bad_bpp
[11:16:53] [PASSED] res_bad_refresh
[11:16:53] [PASSED] res_bpp_refresh_force_on_off
[11:16:53] [PASSED] res_invalid_mode
[11:16:53] [PASSED] res_bpp_wrong_place_mode
[11:16:53] [PASSED] name_bpp_refresh
[11:16:53] [PASSED] name_refresh
[11:16:53] [PASSED] name_refresh_wrong_mode
[11:16:53] [PASSED] name_refresh_invalid_mode
[11:16:53] [PASSED] rotate_multiple
[11:16:53] [PASSED] rotate_invalid_val
[11:16:53] [PASSED] rotate_truncated
[11:16:53] [PASSED] invalid_option
[11:16:53] [PASSED] invalid_tv_option
[11:16:53] [PASSED] truncated_tv_option
[11:16:53] ============ [PASSED] drm_test_cmdline_invalid =============
[11:16:53] =============== drm_test_cmdline_tv_options ===============
[11:16:53] [PASSED] NTSC
[11:16:53] [PASSED] NTSC_443
[11:16:53] [PASSED] NTSC_J
[11:16:53] [PASSED] PAL
[11:16:53] [PASSED] PAL_M
[11:16:53] [PASSED] PAL_N
[11:16:53] [PASSED] SECAM
[11:16:53] [PASSED] MONO_525
[11:16:53] [PASSED] MONO_625
[11:16:53] =========== [PASSED] drm_test_cmdline_tv_options ===========
[11:16:53] =============== [PASSED] drm_cmdline_parser ================
[11:16:53] ========== drmm_connector_hdmi_init (20 subtests) ==========
[11:16:53] [PASSED] drm_test_connector_hdmi_init_valid
[11:16:53] [PASSED] drm_test_connector_hdmi_init_bpc_8
[11:16:53] [PASSED] drm_test_connector_hdmi_init_bpc_10
[11:16:53] [PASSED] drm_test_connector_hdmi_init_bpc_12
[11:16:53] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[11:16:53] [PASSED] drm_test_connector_hdmi_init_bpc_null
[11:16:53] [PASSED] drm_test_connector_hdmi_init_formats_empty
[11:16:53] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[11:16:53] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[11:16:53] [PASSED] supported_formats=0x9 yuv420_allowed=1
[11:16:53] [PASSED] supported_formats=0x9 yuv420_allowed=0
[11:16:53] [PASSED] supported_formats=0x3 yuv420_allowed=1
[11:16:53] [PASSED] supported_formats=0x3 yuv420_allowed=0
[11:16:53] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[11:16:53] [PASSED] drm_test_connector_hdmi_init_null_ddc
[11:16:53] [PASSED] drm_test_connector_hdmi_init_null_product
[11:16:53] [PASSED] drm_test_connector_hdmi_init_null_vendor
[11:16:53] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[11:16:53] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[11:16:53] [PASSED] drm_test_connector_hdmi_init_product_valid
[11:16:53] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[11:16:53] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[11:16:53] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[11:16:53] ========= drm_test_connector_hdmi_init_type_valid =========
[11:16:53] [PASSED] HDMI-A
[11:16:53] [PASSED] HDMI-B
[11:16:53] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[11:16:53] ======== drm_test_connector_hdmi_init_type_invalid ========
[11:16:53] [PASSED] Unknown
[11:16:53] [PASSED] VGA
[11:16:53] [PASSED] DVI-I
[11:16:53] [PASSED] DVI-D
[11:16:53] [PASSED] DVI-A
[11:16:53] [PASSED] Composite
[11:16:53] [PASSED] SVIDEO
[11:16:53] [PASSED] LVDS
[11:16:53] [PASSED] Component
[11:16:53] [PASSED] DIN
[11:16:53] [PASSED] DP
[11:16:53] [PASSED] TV
[11:16:53] [PASSED] eDP
[11:16:53] [PASSED] Virtual
[11:16:53] [PASSED] DSI
[11:16:53] [PASSED] DPI
[11:16:53] [PASSED] Writeback
[11:16:53] [PASSED] SPI
[11:16:53] [PASSED] USB
[11:16:53] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[11:16:53] ============ [PASSED] drmm_connector_hdmi_init =============
[11:16:53] ============= drmm_connector_init (3 subtests) =============
[11:16:53] [PASSED] drm_test_drmm_connector_init
[11:16:53] [PASSED] drm_test_drmm_connector_init_null_ddc
[11:16:53] ========= drm_test_drmm_connector_init_type_valid =========
[11:16:53] [PASSED] Unknown
[11:16:53] [PASSED] VGA
[11:16:53] [PASSED] DVI-I
[11:16:53] [PASSED] DVI-D
[11:16:53] [PASSED] DVI-A
[11:16:53] [PASSED] Composite
[11:16:53] [PASSED] SVIDEO
[11:16:53] [PASSED] LVDS
[11:16:53] [PASSED] Component
[11:16:53] [PASSED] DIN
[11:16:53] [PASSED] DP
[11:16:53] [PASSED] HDMI-A
[11:16:53] [PASSED] HDMI-B
[11:16:53] [PASSED] TV
[11:16:53] [PASSED] eDP
[11:16:53] [PASSED] Virtual
[11:16:53] [PASSED] DSI
[11:16:53] [PASSED] DPI
[11:16:53] [PASSED] Writeback
[11:16:53] [PASSED] SPI
[11:16:53] [PASSED] USB
[11:16:53] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[11:16:53] =============== [PASSED] drmm_connector_init ===============
[11:16:53] ========= drm_connector_dynamic_init (6 subtests) ==========
[11:16:53] [PASSED] drm_test_drm_connector_dynamic_init
[11:16:53] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[11:16:53] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[11:16:53] [PASSED] drm_test_drm_connector_dynamic_init_properties
[11:16:53] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[11:16:53] [PASSED] Unknown
[11:16:53] [PASSED] VGA
[11:16:53] [PASSED] DVI-I
[11:16:53] [PASSED] DVI-D
[11:16:53] [PASSED] DVI-A
[11:16:53] [PASSED] Composite
[11:16:53] [PASSED] SVIDEO
[11:16:53] [PASSED] LVDS
[11:16:53] [PASSED] Component
[11:16:53] [PASSED] DIN
[11:16:53] [PASSED] DP
[11:16:53] [PASSED] HDMI-A
[11:16:53] [PASSED] HDMI-B
[11:16:53] [PASSED] TV
[11:16:53] [PASSED] eDP
[11:16:53] [PASSED] Virtual
[11:16:53] [PASSED] DSI
[11:16:53] [PASSED] DPI
[11:16:53] [PASSED] Writeback
[11:16:53] [PASSED] SPI
[11:16:53] [PASSED] USB
[11:16:53] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[11:16:53] ======== drm_test_drm_connector_dynamic_init_name =========
[11:16:53] [PASSED] Unknown
[11:16:53] [PASSED] VGA
[11:16:53] [PASSED] DVI-I
[11:16:53] [PASSED] DVI-D
[11:16:53] [PASSED] DVI-A
[11:16:53] [PASSED] Composite
[11:16:53] [PASSED] SVIDEO
[11:16:53] [PASSED] LVDS
[11:16:53] [PASSED] Component
[11:16:53] [PASSED] DIN
[11:16:53] [PASSED] DP
[11:16:53] [PASSED] HDMI-A
[11:16:53] [PASSED] HDMI-B
[11:16:53] [PASSED] TV
[11:16:53] [PASSED] eDP
[11:16:53] [PASSED] Virtual
[11:16:53] [PASSED] DSI
[11:16:53] [PASSED] DPI
[11:16:53] [PASSED] Writeback
[11:16:53] [PASSED] SPI
[11:16:53] [PASSED] USB
[11:16:53] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[11:16:53] =========== [PASSED] drm_connector_dynamic_init ============
[11:16:53] ==== drm_connector_dynamic_register_early (4 subtests) =====
[11:16:53] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[11:16:53] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[11:16:53] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[11:16:53] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[11:16:53] ====== [PASSED] drm_connector_dynamic_register_early =======
[11:16:53] ======= drm_connector_dynamic_register (7 subtests) ========
[11:16:53] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[11:16:53] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[11:16:53] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[11:16:53] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[11:16:53] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[11:16:53] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[11:16:53] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[11:16:53] ========= [PASSED] drm_connector_dynamic_register ==========
[11:16:53] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[11:16:53] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[11:16:53] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[11:16:53] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[11:16:53] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[11:16:53] ========== drm_test_get_tv_mode_from_name_valid ===========
[11:16:53] [PASSED] NTSC
[11:16:53] [PASSED] NTSC-443
[11:16:53] [PASSED] NTSC-J
[11:16:53] [PASSED] PAL
[11:16:53] [PASSED] PAL-M
[11:16:53] [PASSED] PAL-N
[11:16:53] [PASSED] SECAM
[11:16:53] [PASSED] Mono
[11:16:53] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[11:16:53] [PASSED] drm_test_get_tv_mode_from_name_truncated
[11:16:53] ============ [PASSED] drm_get_tv_mode_from_name ============
[11:16:53] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[11:16:53] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[11:16:53] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[11:16:53] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[11:16:53] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[11:16:53] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[11:16:53] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[11:16:53] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[11:16:53] [PASSED] VIC 96
[11:16:53] [PASSED] VIC 97
[11:16:53] [PASSED] VIC 101
[11:16:53] [PASSED] VIC 102
[11:16:53] [PASSED] VIC 106
[11:16:53] [PASSED] VIC 107
[11:16:53] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[11:16:53] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[11:16:53] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[11:16:53] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[11:16:53] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[11:16:53] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[11:16:53] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[11:16:53] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[11:16:53] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[11:16:53] [PASSED] Automatic
[11:16:53] [PASSED] Full
[11:16:53] [PASSED] Limited 16:235
[11:16:53] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[11:16:53] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[11:16:53] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[11:16:53] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[11:16:53] === drm_test_drm_hdmi_connector_get_output_format_name ====
[11:16:53] [PASSED] RGB
[11:16:53] [PASSED] YUV 4:2:0
[11:16:53] [PASSED] YUV 4:2:2
[11:16:53] [PASSED] YUV 4:4:4
[11:16:53] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[11:16:53] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[11:16:53] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[11:16:53] ============= drm_damage_helper (21 subtests) ==============
[11:16:53] [PASSED] drm_test_damage_iter_no_damage
[11:16:53] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[11:16:53] [PASSED] drm_test_damage_iter_no_damage_src_moved
[11:16:53] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[11:16:53] [PASSED] drm_test_damage_iter_no_damage_not_visible
[11:16:53] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[11:16:53] [PASSED] drm_test_damage_iter_no_damage_no_fb
[11:16:53] [PASSED] drm_test_damage_iter_simple_damage
[11:16:53] [PASSED] drm_test_damage_iter_single_damage
[11:16:53] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[11:16:53] [PASSED] drm_test_damage_iter_single_damage_outside_src
[11:16:53] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[11:16:53] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[11:16:53] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[11:16:53] [PASSED] drm_test_damage_iter_single_damage_src_moved
[11:16:53] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[11:16:53] [PASSED] drm_test_damage_iter_damage
[11:16:53] [PASSED] drm_test_damage_iter_damage_one_intersect
[11:16:53] [PASSED] drm_test_damage_iter_damage_one_outside
[11:16:53] [PASSED] drm_test_damage_iter_damage_src_moved
[11:16:53] [PASSED] drm_test_damage_iter_damage_not_visible
[11:16:53] ================ [PASSED] drm_damage_helper ================
[11:16:53] ============== drm_dp_mst_helper (3 subtests) ==============
[11:16:53] ============== drm_test_dp_mst_calc_pbn_mode ==============
[11:16:53] [PASSED] Clock 154000 BPP 30 DSC disabled
[11:16:53] [PASSED] Clock 234000 BPP 30 DSC disabled
[11:16:53] [PASSED] Clock 297000 BPP 24 DSC disabled
[11:16:53] [PASSED] Clock 332880 BPP 24 DSC enabled
[11:16:53] [PASSED] Clock 324540 BPP 24 DSC enabled
[11:16:53] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[11:16:53] ============== drm_test_dp_mst_calc_pbn_div ===============
[11:16:53] [PASSED] Link rate 2000000 lane count 4
[11:16:53] [PASSED] Link rate 2000000 lane count 2
[11:16:53] [PASSED] Link rate 2000000 lane count 1
[11:16:53] [PASSED] Link rate 1350000 lane count 4
[11:16:53] [PASSED] Link rate 1350000 lane count 2
[11:16:53] [PASSED] Link rate 1350000 lane count 1
[11:16:53] [PASSED] Link rate 1000000 lane count 4
[11:16:53] [PASSED] Link rate 1000000 lane count 2
[11:16:53] [PASSED] Link rate 1000000 lane count 1
[11:16:53] [PASSED] Link rate 810000 lane count 4
[11:16:53] [PASSED] Link rate 810000 lane count 2
[11:16:53] [PASSED] Link rate 810000 lane count 1
[11:16:53] [PASSED] Link rate 540000 lane count 4
[11:16:53] [PASSED] Link rate 540000 lane count 2
[11:16:53] [PASSED] Link rate 540000 lane count 1
[11:16:53] [PASSED] Link rate 270000 lane count 4
[11:16:53] [PASSED] Link rate 270000 lane count 2
[11:16:53] [PASSED] Link rate 270000 lane count 1
[11:16:53] [PASSED] Link rate 162000 lane count 4
[11:16:53] [PASSED] Link rate 162000 lane count 2
[11:16:53] [PASSED] Link rate 162000 lane count 1
[11:16:53] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[11:16:53] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[11:16:53] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[11:16:53] [PASSED] DP_POWER_UP_PHY with port number
[11:16:53] [PASSED] DP_POWER_DOWN_PHY with port number
[11:16:53] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[11:16:53] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[11:16:53] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[11:16:53] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[11:16:53] [PASSED] DP_QUERY_PAYLOAD with port number
[11:16:53] [PASSED] DP_QUERY_PAYLOAD with VCPI
[11:16:53] [PASSED] DP_REMOTE_DPCD_READ with port number
[11:16:53] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[11:16:53] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[11:16:53] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[11:16:53] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[11:16:53] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[11:16:53] [PASSED] DP_REMOTE_I2C_READ with port number
[11:16:53] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[11:16:53] [PASSED] DP_REMOTE_I2C_READ with transactions array
[11:16:53] [PASSED] DP_REMOTE_I2C_WRITE with port number
[11:16:53] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[11:16:53] [PASSED] DP_REMOTE_I2C_WRITE with data array
[11:16:53] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[11:16:53] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[11:16:53] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[11:16:53] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[11:16:53] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[11:16:53] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[11:16:53] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[11:16:53] ================ [PASSED] drm_dp_mst_helper ================
[11:16:53] ================== drm_exec (7 subtests) ===================
[11:16:53] [PASSED] sanitycheck
[11:16:53] [PASSED] test_lock
[11:16:53] [PASSED] test_lock_unlock
[11:16:53] [PASSED] test_duplicates
[11:16:53] [PASSED] test_prepare
[11:16:53] [PASSED] test_prepare_array
[11:16:53] [PASSED] test_multiple_loops
[11:16:53] ==================== [PASSED] drm_exec =====================
[11:16:53] =========== drm_format_helper_test (17 subtests) ===========
[11:16:53] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[11:16:53] [PASSED] single_pixel_source_buffer
[11:16:53] [PASSED] single_pixel_clip_rectangle
[11:16:53] [PASSED] well_known_colors
[11:16:53] [PASSED] destination_pitch
[11:16:53] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[11:16:53] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[11:16:53] [PASSED] single_pixel_source_buffer
[11:16:53] [PASSED] single_pixel_clip_rectangle
[11:16:53] [PASSED] well_known_colors
[11:16:53] [PASSED] destination_pitch
[11:16:53] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[11:16:53] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[11:16:53] [PASSED] single_pixel_source_buffer
[11:16:53] [PASSED] single_pixel_clip_rectangle
[11:16:53] [PASSED] well_known_colors
[11:16:53] [PASSED] destination_pitch
[11:16:53] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[11:16:53] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[11:16:53] [PASSED] single_pixel_source_buffer
[11:16:53] [PASSED] single_pixel_clip_rectangle
[11:16:53] [PASSED] well_known_colors
[11:16:53] [PASSED] destination_pitch
[11:16:53] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[11:16:53] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[11:16:53] [PASSED] single_pixel_source_buffer
[11:16:53] [PASSED] single_pixel_clip_rectangle
[11:16:53] [PASSED] well_known_colors
[11:16:53] [PASSED] destination_pitch
[11:16:53] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[11:16:53] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[11:16:53] [PASSED] single_pixel_source_buffer
[11:16:53] [PASSED] single_pixel_clip_rectangle
[11:16:53] [PASSED] well_known_colors
[11:16:53] [PASSED] destination_pitch
[11:16:53] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[11:16:53] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[11:16:53] [PASSED] single_pixel_source_buffer
[11:16:53] [PASSED] single_pixel_clip_rectangle
[11:16:53] [PASSED] well_known_colors
[11:16:53] [PASSED] destination_pitch
[11:16:53] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[11:16:53] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[11:16:53] [PASSED] single_pixel_source_buffer
[11:16:53] [PASSED] single_pixel_clip_rectangle
[11:16:53] [PASSED] well_known_colors
[11:16:53] [PASSED] destination_pitch
[11:16:53] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[11:16:53] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[11:16:53] [PASSED] single_pixel_source_buffer
[11:16:53] [PASSED] single_pixel_clip_rectangle
[11:16:53] [PASSED] well_known_colors
[11:16:53] [PASSED] destination_pitch
[11:16:53] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[11:16:53] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[11:16:53] [PASSED] single_pixel_source_buffer
[11:16:53] [PASSED] single_pixel_clip_rectangle
[11:16:53] [PASSED] well_known_colors
[11:16:53] [PASSED] destination_pitch
[11:16:53] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[11:16:53] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[11:16:53] [PASSED] single_pixel_source_buffer
[11:16:53] [PASSED] single_pixel_clip_rectangle
[11:16:53] [PASSED] well_known_colors
[11:16:53] [PASSED] destination_pitch
[11:16:53] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[11:16:53] ============== drm_test_fb_xrgb8888_to_mono ===============
[11:16:53] [PASSED] single_pixel_source_buffer
[11:16:53] [PASSED] single_pixel_clip_rectangle
[11:16:53] [PASSED] well_known_colors
[11:16:53] [PASSED] destination_pitch
[11:16:53] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[11:16:53] ==================== drm_test_fb_swab =====================
[11:16:53] [PASSED] single_pixel_source_buffer
[11:16:53] [PASSED] single_pixel_clip_rectangle
[11:16:53] [PASSED] well_known_colors
[11:16:53] [PASSED] destination_pitch
[11:16:53] ================ [PASSED] drm_test_fb_swab =================
[11:16:53] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[11:16:53] [PASSED] single_pixel_source_buffer
[11:16:53] [PASSED] single_pixel_clip_rectangle
[11:16:53] [PASSED] well_known_colors
[11:16:53] [PASSED] destination_pitch
[11:16:53] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[11:16:53] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[11:16:53] [PASSED] single_pixel_source_buffer
[11:16:53] [PASSED] single_pixel_clip_rectangle
[11:16:53] [PASSED] well_known_colors
[11:16:53] [PASSED] destination_pitch
[11:16:53] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[11:16:53] ================= drm_test_fb_clip_offset =================
[11:16:53] [PASSED] pass through
[11:16:53] [PASSED] horizontal offset
[11:16:53] [PASSED] vertical offset
[11:16:53] [PASSED] horizontal and vertical offset
[11:16:53] [PASSED] horizontal offset (custom pitch)
[11:16:53] [PASSED] vertical offset (custom pitch)
[11:16:53] [PASSED] horizontal and vertical offset (custom pitch)
[11:16:53] ============= [PASSED] drm_test_fb_clip_offset =============
[11:16:53] =================== drm_test_fb_memcpy ====================
[11:16:53] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[11:16:53] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[11:16:53] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[11:16:53] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[11:16:53] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[11:16:53] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[11:16:53] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[11:16:53] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[11:16:53] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[11:16:53] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[11:16:53] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[11:16:53] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[11:16:53] =============== [PASSED] drm_test_fb_memcpy ================
[11:16:53] ============= [PASSED] drm_format_helper_test ==============
[11:16:53] ================= drm_format (18 subtests) =================
[11:16:53] [PASSED] drm_test_format_block_width_invalid
[11:16:53] [PASSED] drm_test_format_block_width_one_plane
[11:16:53] [PASSED] drm_test_format_block_width_two_plane
[11:16:53] [PASSED] drm_test_format_block_width_three_plane
[11:16:53] [PASSED] drm_test_format_block_width_tiled
[11:16:53] [PASSED] drm_test_format_block_height_invalid
[11:16:53] [PASSED] drm_test_format_block_height_one_plane
[11:16:53] [PASSED] drm_test_format_block_height_two_plane
[11:16:53] [PASSED] drm_test_format_block_height_three_plane
[11:16:53] [PASSED] drm_test_format_block_height_tiled
[11:16:53] [PASSED] drm_test_format_min_pitch_invalid
[11:16:53] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[11:16:53] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[11:16:53] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[11:16:53] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[11:16:53] [PASSED] drm_test_format_min_pitch_two_plane
[11:16:53] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[11:16:53] [PASSED] drm_test_format_min_pitch_tiled
[11:16:53] =================== [PASSED] drm_format ====================
[11:16:53] ============== drm_framebuffer (10 subtests) ===============
[11:16:53] ========== drm_test_framebuffer_check_src_coords ==========
[11:16:53] [PASSED] Success: source fits into fb
[11:16:53] [PASSED] Fail: overflowing fb with x-axis coordinate
[11:16:53] [PASSED] Fail: overflowing fb with y-axis coordinate
[11:16:53] [PASSED] Fail: overflowing fb with source width
[11:16:53] [PASSED] Fail: overflowing fb with source height
[11:16:53] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[11:16:53] [PASSED] drm_test_framebuffer_cleanup
[11:16:53] =============== drm_test_framebuffer_create ===============
[11:16:53] [PASSED] ABGR8888 normal sizes
[11:16:53] [PASSED] ABGR8888 max sizes
[11:16:53] [PASSED] ABGR8888 pitch greater than min required
[11:16:53] [PASSED] ABGR8888 pitch less than min required
[11:16:53] [PASSED] ABGR8888 Invalid width
[11:16:53] [PASSED] ABGR8888 Invalid buffer handle
[11:16:53] [PASSED] No pixel format
[11:16:53] [PASSED] ABGR8888 Width 0
[11:16:53] [PASSED] ABGR8888 Height 0
[11:16:53] [PASSED] ABGR8888 Out of bound height * pitch combination
[11:16:53] [PASSED] ABGR8888 Large buffer offset
[11:16:53] [PASSED] ABGR8888 Buffer offset for inexistent plane
[11:16:53] [PASSED] ABGR8888 Invalid flag
[11:16:53] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[11:16:53] [PASSED] ABGR8888 Valid buffer modifier
[11:16:53] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[11:16:53] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[11:16:53] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[11:16:53] [PASSED] NV12 Normal sizes
[11:16:53] [PASSED] NV12 Max sizes
[11:16:53] [PASSED] NV12 Invalid pitch
[11:16:53] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[11:16:53] [PASSED] NV12 different modifier per-plane
[11:16:53] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[11:16:53] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[11:16:53] [PASSED] NV12 Modifier for inexistent plane
[11:16:53] [PASSED] NV12 Handle for inexistent plane
[11:16:53] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[11:16:53] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[11:16:53] [PASSED] YVU420 Normal sizes
[11:16:53] [PASSED] YVU420 Max sizes
[11:16:53] [PASSED] YVU420 Invalid pitch
[11:16:53] [PASSED] YVU420 Different pitches
[11:16:53] [PASSED] YVU420 Different buffer offsets/pitches
[11:16:53] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[11:16:53] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[11:16:53] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[11:16:53] [PASSED] YVU420 Valid modifier
[11:16:53] [PASSED] YVU420 Different modifiers per plane
[11:16:53] [PASSED] YVU420 Modifier for inexistent plane
[11:16:53] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[11:16:53] [PASSED] X0L2 Normal sizes
[11:16:53] [PASSED] X0L2 Max sizes
[11:16:53] [PASSED] X0L2 Invalid pitch
[11:16:53] [PASSED] X0L2 Pitch greater than minimum required
[11:16:53] [PASSED] X0L2 Handle for inexistent plane
[11:16:53] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[11:16:53] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[11:16:53] [PASSED] X0L2 Valid modifier
[11:16:53] [PASSED] X0L2 Modifier for inexistent plane
[11:16:53] =========== [PASSED] drm_test_framebuffer_create ===========
[11:16:53] [PASSED] drm_test_framebuffer_free
[11:16:53] [PASSED] drm_test_framebuffer_init
[11:16:53] [PASSED] drm_test_framebuffer_init_bad_format
[11:16:53] [PASSED] drm_test_framebuffer_init_dev_mismatch
[11:16:53] [PASSED] drm_test_framebuffer_lookup
[11:16:53] [PASSED] drm_test_framebuffer_lookup_inexistent
[11:16:53] [PASSED] drm_test_framebuffer_modifiers_not_supported
[11:16:53] ================= [PASSED] drm_framebuffer =================
[11:16:53] ================ drm_gem_shmem (8 subtests) ================
[11:16:53] [PASSED] drm_gem_shmem_test_obj_create
[11:16:53] [PASSED] drm_gem_shmem_test_obj_create_private
[11:16:53] [PASSED] drm_gem_shmem_test_pin_pages
[11:16:53] [PASSED] drm_gem_shmem_test_vmap
[11:16:53] [PASSED] drm_gem_shmem_test_get_sg_table
[11:16:53] [PASSED] drm_gem_shmem_test_get_pages_sgt
[11:16:53] [PASSED] drm_gem_shmem_test_madvise
[11:16:53] [PASSED] drm_gem_shmem_test_purge
[11:16:53] ================== [PASSED] drm_gem_shmem ==================
[11:16:53] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[11:16:53] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[11:16:53] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[11:16:53] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[11:16:53] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[11:16:53] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[11:16:53] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[11:16:53] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[11:16:53] [PASSED] Automatic
[11:16:53] [PASSED] Full
[11:16:53] [PASSED] Limited 16:235
[11:16:53] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[11:16:53] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[11:16:53] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[11:16:53] [PASSED] drm_test_check_disable_connector
[11:16:53] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[11:16:53] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[11:16:53] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[11:16:53] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[11:16:53] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[11:16:53] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[11:16:53] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[11:16:53] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[11:16:53] [PASSED] drm_test_check_output_bpc_dvi
[11:16:53] [PASSED] drm_test_check_output_bpc_format_vic_1
[11:16:53] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[11:16:53] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[11:16:53] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[11:16:53] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[11:16:53] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[11:16:53] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[11:16:53] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[11:16:53] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[11:16:53] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[11:16:53] [PASSED] drm_test_check_broadcast_rgb_value
[11:16:53] [PASSED] drm_test_check_bpc_8_value
[11:16:53] [PASSED] drm_test_check_bpc_10_value
[11:16:53] [PASSED] drm_test_check_bpc_12_value
[11:16:53] [PASSED] drm_test_check_format_value
[11:16:53] [PASSED] drm_test_check_tmds_char_value
[11:16:53] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[11:16:53] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[11:16:53] [PASSED] drm_test_check_mode_valid
[11:16:53] [PASSED] drm_test_check_mode_valid_reject
[11:16:53] [PASSED] drm_test_check_mode_valid_reject_rate
[11:16:53] [PASSED] drm_test_check_mode_valid_reject_max_clock
[11:16:53] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[11:16:53] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[11:16:53] [PASSED] drm_test_check_infoframes
[11:16:53] [PASSED] drm_test_check_reject_avi_infoframe
[11:16:53] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[11:16:53] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[11:16:53] [PASSED] drm_test_check_reject_audio_infoframe
[11:16:53] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[11:16:53] ================= drm_managed (2 subtests) =================
[11:16:53] [PASSED] drm_test_managed_release_action
[11:16:53] [PASSED] drm_test_managed_run_action
[11:16:53] =================== [PASSED] drm_managed ===================
[11:16:53] =================== drm_mm (6 subtests) ====================
[11:16:53] [PASSED] drm_test_mm_init
[11:16:53] [PASSED] drm_test_mm_debug
[11:16:53] [PASSED] drm_test_mm_align32
[11:16:53] [PASSED] drm_test_mm_align64
[11:16:53] [PASSED] drm_test_mm_lowest
[11:16:53] [PASSED] drm_test_mm_highest
[11:16:53] ===================== [PASSED] drm_mm ======================
[11:16:53] ============= drm_modes_analog_tv (5 subtests) =============
[11:16:53] [PASSED] drm_test_modes_analog_tv_mono_576i
[11:16:53] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[11:16:53] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[11:16:53] [PASSED] drm_test_modes_analog_tv_pal_576i
[11:16:53] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[11:16:53] =============== [PASSED] drm_modes_analog_tv ===============
[11:16:53] ============== drm_plane_helper (2 subtests) ===============
[11:16:53] =============== drm_test_check_plane_state ================
[11:16:53] [PASSED] clipping_simple
[11:16:53] [PASSED] clipping_rotate_reflect
[11:16:53] [PASSED] positioning_simple
[11:16:53] [PASSED] upscaling
[11:16:53] [PASSED] downscaling
[11:16:53] [PASSED] rounding1
[11:16:53] [PASSED] rounding2
[11:16:53] [PASSED] rounding3
[11:16:53] [PASSED] rounding4
[11:16:53] =========== [PASSED] drm_test_check_plane_state ============
[11:16:53] =========== drm_test_check_invalid_plane_state ============
[11:16:53] [PASSED] positioning_invalid
[11:16:53] [PASSED] upscaling_invalid
[11:16:53] [PASSED] downscaling_invalid
[11:16:53] ======= [PASSED] drm_test_check_invalid_plane_state ========
[11:16:53] ================ [PASSED] drm_plane_helper =================
[11:16:53] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[11:16:53] ====== drm_test_connector_helper_tv_get_modes_check =======
[11:16:53] [PASSED] None
[11:16:53] [PASSED] PAL
[11:16:53] [PASSED] NTSC
[11:16:53] [PASSED] Both, NTSC Default
[11:16:53] [PASSED] Both, PAL Default
[11:16:53] [PASSED] Both, NTSC Default, with PAL on command-line
[11:16:53] [PASSED] Both, PAL Default, with NTSC on command-line
[11:16:53] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[11:16:53] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[11:16:53] ================== drm_rect (9 subtests) ===================
[11:16:53] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[11:16:53] [PASSED] drm_test_rect_clip_scaled_not_clipped
[11:16:53] [PASSED] drm_test_rect_clip_scaled_clipped
[11:16:53] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[11:16:53] ================= drm_test_rect_intersect =================
[11:16:53] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[11:16:53] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[11:16:53] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[11:16:53] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[11:16:53] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[11:16:53] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[11:16:53] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[11:16:53] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[11:16:53] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[11:16:53] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[11:16:53] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[11:16:53] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[11:16:53] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[11:16:53] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[11:16:53] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[11:16:53] ============= [PASSED] drm_test_rect_intersect =============
[11:16:53] ================ drm_test_rect_calc_hscale ================
[11:16:53] [PASSED] normal use
[11:16:53] [PASSED] out of max range
[11:16:53] [PASSED] out of min range
[11:16:53] [PASSED] zero dst
[11:16:53] [PASSED] negative src
[11:16:53] [PASSED] negative dst
[11:16:53] ============ [PASSED] drm_test_rect_calc_hscale ============
[11:16:53] ================ drm_test_rect_calc_vscale ================
[11:16:53] [PASSED] normal use
[11:16:53] [PASSED] out of max range
[11:16:53] [PASSED] out of min range
[11:16:53] [PASSED] zero dst
[11:16:53] [PASSED] negative src
[11:16:53] [PASSED] negative dst
stty: 'standard input': Inappropriate ioctl for device
[11:16:53] ============ [PASSED] drm_test_rect_calc_vscale ============
[11:16:53] ================== drm_test_rect_rotate ===================
[11:16:53] [PASSED] reflect-x
[11:16:53] [PASSED] reflect-y
[11:16:53] [PASSED] rotate-0
[11:16:53] [PASSED] rotate-90
[11:16:53] [PASSED] rotate-180
[11:16:53] [PASSED] rotate-270
[11:16:53] ============== [PASSED] drm_test_rect_rotate ===============
[11:16:53] ================ drm_test_rect_rotate_inv =================
[11:16:53] [PASSED] reflect-x
[11:16:53] [PASSED] reflect-y
[11:16:53] [PASSED] rotate-0
[11:16:53] [PASSED] rotate-90
[11:16:53] [PASSED] rotate-180
[11:16:53] [PASSED] rotate-270
[11:16:53] ============ [PASSED] drm_test_rect_rotate_inv =============
[11:16:53] ==================== [PASSED] drm_rect =====================
[11:16:53] ============ drm_sysfb_modeset_test (1 subtest) ============
[11:16:53] ============ drm_test_sysfb_build_fourcc_list =============
[11:16:53] [PASSED] no native formats
[11:16:53] [PASSED] XRGB8888 as native format
[11:16:53] [PASSED] remove duplicates
[11:16:53] [PASSED] convert alpha formats
[11:16:53] [PASSED] random formats
[11:16:53] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[11:16:53] ============= [PASSED] drm_sysfb_modeset_test ==============
[11:16:53] ================== drm_fixp (2 subtests) ===================
[11:16:53] [PASSED] drm_test_int2fixp
[11:16:53] [PASSED] drm_test_sm2fixp
[11:16:53] ==================== [PASSED] drm_fixp =====================
[11:16:53] ============================================================
[11:16:53] Testing complete. Ran 621 tests: passed: 621
[11:16:53] Elapsed time: 25.883s total, 1.739s configuring, 23.974s building, 0.118s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[11:16:54] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[11:16:55] 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
[11:17:05] Starting KUnit Kernel (1/1)...
[11:17:05] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[11:17:05] ================= ttm_device (5 subtests) ==================
[11:17:05] [PASSED] ttm_device_init_basic
[11:17:05] [PASSED] ttm_device_init_multiple
[11:17:05] [PASSED] ttm_device_fini_basic
[11:17:05] [PASSED] ttm_device_init_no_vma_man
[11:17:05] ================== ttm_device_init_pools ==================
[11:17:05] [PASSED] No DMA allocations, no DMA32 required
[11:17:05] [PASSED] DMA allocations, DMA32 required
[11:17:05] [PASSED] No DMA allocations, DMA32 required
[11:17:05] [PASSED] DMA allocations, no DMA32 required
[11:17:05] ============== [PASSED] ttm_device_init_pools ==============
[11:17:05] =================== [PASSED] ttm_device ====================
[11:17:05] ================== ttm_pool (8 subtests) ===================
[11:17:05] ================== ttm_pool_alloc_basic ===================
[11:17:05] [PASSED] One page
[11:17:05] [PASSED] More than one page
[11:17:05] [PASSED] Above the allocation limit
[11:17:05] [PASSED] One page, with coherent DMA mappings enabled
[11:17:05] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[11:17:05] ============== [PASSED] ttm_pool_alloc_basic ===============
[11:17:05] ============== ttm_pool_alloc_basic_dma_addr ==============
[11:17:05] [PASSED] One page
[11:17:05] [PASSED] More than one page
[11:17:05] [PASSED] Above the allocation limit
[11:17:05] [PASSED] One page, with coherent DMA mappings enabled
[11:17:05] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[11:17:05] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[11:17:05] [PASSED] ttm_pool_alloc_order_caching_match
[11:17:05] [PASSED] ttm_pool_alloc_caching_mismatch
[11:17:05] [PASSED] ttm_pool_alloc_order_mismatch
[11:17:05] [PASSED] ttm_pool_free_dma_alloc
[11:17:05] [PASSED] ttm_pool_free_no_dma_alloc
[11:17:05] [PASSED] ttm_pool_fini_basic
[11:17:05] ==================== [PASSED] ttm_pool =====================
[11:17:05] ================ ttm_resource (8 subtests) =================
[11:17:05] ================= ttm_resource_init_basic =================
[11:17:05] [PASSED] Init resource in TTM_PL_SYSTEM
[11:17:05] [PASSED] Init resource in TTM_PL_VRAM
[11:17:05] [PASSED] Init resource in a private placement
[11:17:05] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[11:17:05] ============= [PASSED] ttm_resource_init_basic =============
[11:17:05] [PASSED] ttm_resource_init_pinned
[11:17:05] [PASSED] ttm_resource_fini_basic
[11:17:05] [PASSED] ttm_resource_manager_init_basic
[11:17:05] [PASSED] ttm_resource_manager_usage_basic
[11:17:05] [PASSED] ttm_resource_manager_set_used_basic
[11:17:05] [PASSED] ttm_sys_man_alloc_basic
[11:17:05] [PASSED] ttm_sys_man_free_basic
[11:17:05] ================== [PASSED] ttm_resource ===================
[11:17:05] =================== ttm_tt (15 subtests) ===================
[11:17:05] ==================== ttm_tt_init_basic ====================
[11:17:05] [PASSED] Page-aligned size
[11:17:05] [PASSED] Extra pages requested
[11:17:05] ================ [PASSED] ttm_tt_init_basic ================
[11:17:05] [PASSED] ttm_tt_init_misaligned
[11:17:05] [PASSED] ttm_tt_fini_basic
[11:17:05] [PASSED] ttm_tt_fini_sg
[11:17:05] [PASSED] ttm_tt_fini_shmem
[11:17:05] [PASSED] ttm_tt_create_basic
[11:17:05] [PASSED] ttm_tt_create_invalid_bo_type
[11:17:05] [PASSED] ttm_tt_create_ttm_exists
[11:17:05] [PASSED] ttm_tt_create_failed
[11:17:05] [PASSED] ttm_tt_destroy_basic
[11:17:05] [PASSED] ttm_tt_populate_null_ttm
[11:17:05] [PASSED] ttm_tt_populate_populated_ttm
[11:17:05] [PASSED] ttm_tt_unpopulate_basic
[11:17:05] [PASSED] ttm_tt_unpopulate_empty_ttm
[11:17:05] [PASSED] ttm_tt_swapin_basic
[11:17:05] ===================== [PASSED] ttm_tt ======================
[11:17:05] =================== ttm_bo (14 subtests) ===================
[11:17:05] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[11:17:05] [PASSED] Cannot be interrupted and sleeps
[11:17:05] [PASSED] Cannot be interrupted, locks straight away
[11:17:05] [PASSED] Can be interrupted, sleeps
[11:17:05] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[11:17:05] [PASSED] ttm_bo_reserve_locked_no_sleep
[11:17:05] [PASSED] ttm_bo_reserve_no_wait_ticket
[11:17:05] [PASSED] ttm_bo_reserve_double_resv
[11:17:05] [PASSED] ttm_bo_reserve_interrupted
[11:17:05] [PASSED] ttm_bo_reserve_deadlock
[11:17:05] [PASSED] ttm_bo_unreserve_basic
[11:17:05] [PASSED] ttm_bo_unreserve_pinned
[11:17:05] [PASSED] ttm_bo_unreserve_bulk
[11:17:05] [PASSED] ttm_bo_fini_basic
[11:17:05] [PASSED] ttm_bo_fini_shared_resv
[11:17:05] [PASSED] ttm_bo_pin_basic
[11:17:05] [PASSED] ttm_bo_pin_unpin_resource
[11:17:05] [PASSED] ttm_bo_multiple_pin_one_unpin
[11:17:05] ===================== [PASSED] ttm_bo ======================
[11:17:05] ============== ttm_bo_validate (22 subtests) ===============
[11:17:05] ============== ttm_bo_init_reserved_sys_man ===============
[11:17:05] [PASSED] Buffer object for userspace
[11:17:05] [PASSED] Kernel buffer object
[11:17:05] [PASSED] Shared buffer object
[11:17:05] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[11:17:05] ============== ttm_bo_init_reserved_mock_man ==============
[11:17:05] [PASSED] Buffer object for userspace
[11:17:05] [PASSED] Kernel buffer object
[11:17:05] [PASSED] Shared buffer object
[11:17:05] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[11:17:05] [PASSED] ttm_bo_init_reserved_resv
[11:17:05] ================== ttm_bo_validate_basic ==================
[11:17:05] [PASSED] Buffer object for userspace
[11:17:05] [PASSED] Kernel buffer object
[11:17:05] [PASSED] Shared buffer object
[11:17:05] ============== [PASSED] ttm_bo_validate_basic ==============
[11:17:05] [PASSED] ttm_bo_validate_invalid_placement
[11:17:05] ============= ttm_bo_validate_same_placement ==============
[11:17:05] [PASSED] System manager
[11:17:05] [PASSED] VRAM manager
[11:17:05] ========= [PASSED] ttm_bo_validate_same_placement ==========
[11:17:05] [PASSED] ttm_bo_validate_failed_alloc
[11:17:05] [PASSED] ttm_bo_validate_pinned
[11:17:05] [PASSED] ttm_bo_validate_busy_placement
[11:17:05] ================ ttm_bo_validate_multihop =================
[11:17:05] [PASSED] Buffer object for userspace
[11:17:05] [PASSED] Kernel buffer object
[11:17:05] [PASSED] Shared buffer object
[11:17:05] ============ [PASSED] ttm_bo_validate_multihop =============
[11:17:05] ========== ttm_bo_validate_no_placement_signaled ==========
[11:17:05] [PASSED] Buffer object in system domain, no page vector
[11:17:05] [PASSED] Buffer object in system domain with an existing page vector
[11:17:05] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[11:17:05] ======== ttm_bo_validate_no_placement_not_signaled ========
[11:17:05] [PASSED] Buffer object for userspace
[11:17:05] [PASSED] Kernel buffer object
[11:17:05] [PASSED] Shared buffer object
[11:17:05] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[11:17:05] [PASSED] ttm_bo_validate_move_fence_signaled
[11:17:05] ========= ttm_bo_validate_move_fence_not_signaled =========
[11:17:05] [PASSED] Waits for GPU
[11:17:05] [PASSED] Tries to lock straight away
[11:17:05] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[11:17:05] [PASSED] ttm_bo_validate_swapout
[11:17:05] [PASSED] ttm_bo_validate_happy_evict
[11:17:05] [PASSED] ttm_bo_validate_all_pinned_evict
[11:17:05] [PASSED] ttm_bo_validate_allowed_only_evict
[11:17:05] [PASSED] ttm_bo_validate_deleted_evict
[11:17:05] [PASSED] ttm_bo_validate_busy_domain_evict
[11:17:05] [PASSED] ttm_bo_validate_evict_gutting
[11:17:05] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[11:17:05] ================= [PASSED] ttm_bo_validate =================
[11:17:05] ============================================================
[11:17:05] Testing complete. Ran 102 tests: passed: 102
[11:17:05] Elapsed time: 11.284s total, 1.612s configuring, 9.457s building, 0.178s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 19+ messages in thread
* ✓ Xe.CI.BAT: success for drm/i915/de: Move register polling into display code
2026-03-13 11:10 [PATCH 0/3] drm/i915/de: Move register polling into display code Ville Syrjala
` (4 preceding siblings ...)
2026-03-13 11:17 ` ✓ CI.KUnit: success " Patchwork
@ 2026-03-13 11:51 ` Patchwork
2026-03-14 14:29 ` ✗ Xe.CI.FULL: failure " Patchwork
` (4 subsequent siblings)
10 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2026-03-13 11:51 UTC (permalink / raw)
To: Ville Syrjälä; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1013 bytes --]
== Series Details ==
Series: drm/i915/de: Move register polling into display code
URL : https://patchwork.freedesktop.org/series/163181/
State : success
== Summary ==
CI Bug Log - changes from xe-4712-4082c266f2930288f1e9faadd4a389f15306a209_BAT -> xe-pw-163181v1_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (14 -> 14)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8800 -> IGT_8801
* Linux: xe-4712-4082c266f2930288f1e9faadd4a389f15306a209 -> xe-pw-163181v1
IGT_8800: 8800
IGT_8801: 246d93c1df887e151d038cee9eb0fc31650c4fb0 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4712-4082c266f2930288f1e9faadd4a389f15306a209: 4082c266f2930288f1e9faadd4a389f15306a209
xe-pw-163181v1: 163181v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/index.html
[-- Attachment #2: Type: text/html, Size: 1575 bytes --]
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH 1/3] drm/i915/de: Introduce intel_de.c and move intel_de_{read, write}8() there
2026-03-13 11:10 ` [PATCH 1/3] drm/i915/de: Introduce intel_de.c and move intel_de_{read, write}8() there Ville Syrjala
@ 2026-03-13 14:21 ` Jani Nikula
0 siblings, 0 replies; 19+ messages in thread
From: Jani Nikula @ 2026-03-13 14:21 UTC (permalink / raw)
To: Ville Syrjala, intel-gfx; +Cc: intel-xe
On Fri, 13 Mar 2026, Ville Syrjala <ville.syrjala@linux.intel.com> wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> intel_de_{read,write}() aren't performance critical so having them
> as static inline is pointless. Introduce intel_de.c and move the
> implementation there.
I was surprised only the 8-bit read/write functions were moved. It's
only the 8 in the subject line that conveys that, while the commit
message implies all of them are.
What gets moved when is neither here nor there, I get that this is the
simple change to create the file, and also drops a dependency on
drm_print.h from the header.
But the commit message could be slightly more elaborate here. Can be
fixed whole applying.
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> ---
> drivers/gpu/drm/i915/Makefile | 1 +
> drivers/gpu/drm/i915/display/intel_de.c | 23 +++++++++++++++++++++++
> drivers/gpu/drm/i915/display/intel_de.h | 22 +++-------------------
> drivers/gpu/drm/xe/Makefile | 1 +
> 4 files changed, 28 insertions(+), 19 deletions(-)
> create mode 100644 drivers/gpu/drm/i915/display/intel_de.c
>
> diff --git a/drivers/gpu/drm/i915/Makefile b/drivers/gpu/drm/i915/Makefile
> index 7e9d9b666511..099f7b68bb30 100644
> --- a/drivers/gpu/drm/i915/Makefile
> +++ b/drivers/gpu/drm/i915/Makefile
> @@ -253,6 +253,7 @@ i915-y += \
> display/intel_crtc_state_dump.o \
> display/intel_cursor.o \
> display/intel_dbuf_bw.o \
> + display/intel_de.o \
> display/intel_display.o \
> display/intel_display_conversion.o \
> display/intel_display_driver.o \
> diff --git a/drivers/gpu/drm/i915/display/intel_de.c b/drivers/gpu/drm/i915/display/intel_de.c
> new file mode 100644
> index 000000000000..5348c1d51eb8
> --- /dev/null
> +++ b/drivers/gpu/drm/i915/display/intel_de.c
> @@ -0,0 +1,23 @@
> +// SPDX-License-Identifier: MIT
> +/*
> + * Copyright © 2026 Intel Corporation
> + */
> +
> +#include <drm/drm_print.h>
> +
> +#include "intel_de.h"
> +
> +u8 intel_de_read8(struct intel_display *display, i915_reg_t reg)
> +{
> + /* this is only used on VGA registers (possible on pre-g4x) */
> + drm_WARN_ON(display->drm, DISPLAY_VER(display) >= 5 || display->platform.g4x);
> +
> + return intel_uncore_read8(__to_uncore(display), reg);
> +}
> +
> +void intel_de_write8(struct intel_display *display, i915_reg_t reg, u8 val)
> +{
> + drm_WARN_ON(display->drm, DISPLAY_VER(display) >= 5 || display->platform.g4x);
> +
> + intel_uncore_write8(__to_uncore(display), reg, val);
> +}
> diff --git a/drivers/gpu/drm/i915/display/intel_de.h b/drivers/gpu/drm/i915/display/intel_de.h
> index f30f3f8ebee1..8ca5904ba84e 100644
> --- a/drivers/gpu/drm/i915/display/intel_de.h
> +++ b/drivers/gpu/drm/i915/display/intel_de.h
> @@ -6,8 +6,6 @@
> #ifndef __INTEL_DE_H__
> #define __INTEL_DE_H__
>
> -#include <drm/drm_print.h>
> -
> #include "intel_display_core.h"
> #include "intel_dmc_wl.h"
> #include "intel_dsb.h"
> @@ -19,6 +17,9 @@ static inline struct intel_uncore *__to_uncore(struct intel_display *display)
> return to_intel_uncore(display->drm);
> }
>
> +u8 intel_de_read8(struct intel_display *display, i915_reg_t reg);
> +void intel_de_write8(struct intel_display *display, i915_reg_t reg, u8 val);
> +
> static inline u32
> intel_de_read(struct intel_display *display, i915_reg_t reg)
> {
> @@ -33,23 +34,6 @@ intel_de_read(struct intel_display *display, i915_reg_t reg)
> return val;
> }
>
> -static inline u8
> -intel_de_read8(struct intel_display *display, i915_reg_t reg)
> -{
> - /* this is only used on VGA registers (possible on pre-g4x) */
> - drm_WARN_ON(display->drm, DISPLAY_VER(display) >= 5 || display->platform.g4x);
> -
> - return intel_uncore_read8(__to_uncore(display), reg);
> -}
> -
> -static inline void
> -intel_de_write8(struct intel_display *display, i915_reg_t reg, u8 val)
> -{
> - drm_WARN_ON(display->drm, DISPLAY_VER(display) >= 5 || display->platform.g4x);
> -
> - intel_uncore_write8(__to_uncore(display), reg, val);
> -}
> -
> static inline u64
> intel_de_read64_2x32(struct intel_display *display,
> i915_reg_t lower_reg, i915_reg_t upper_reg)
> diff --git a/drivers/gpu/drm/xe/Makefile b/drivers/gpu/drm/xe/Makefile
> index 50608312bc66..0399a5f9a107 100644
> --- a/drivers/gpu/drm/xe/Makefile
> +++ b/drivers/gpu/drm/xe/Makefile
> @@ -251,6 +251,7 @@ xe-$(CONFIG_DRM_XE_DISPLAY) += \
> i915-display/intel_dbuf_bw.o \
> i915-display/intel_ddi.o \
> i915-display/intel_ddi_buf_trans.o \
> + i915-display/intel_de.o \
> i915-display/intel_display.o \
> i915-display/intel_display_conversion.o \
> i915-display/intel_display_device.o \
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH 2/3] drm/i915/de: Move intel_de_wait*() into intel_de.c
2026-03-13 11:10 ` [PATCH 2/3] drm/i915/de: Move intel_de_wait*() into intel_de.c Ville Syrjala
@ 2026-03-13 14:21 ` Jani Nikula
0 siblings, 0 replies; 19+ messages in thread
From: Jani Nikula @ 2026-03-13 14:21 UTC (permalink / raw)
To: Ville Syrjala, intel-gfx; +Cc: intel-xe
On Fri, 13 Mar 2026, Ville Syrjala <ville.syrjala@linux.intel.com> wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> intel_de_wait*() end up doing quite a bit of stuff, so the one
> function call overhead from them seems insignificant. Move the
> implementation intel_de.c.
>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_de.c | 72 ++++++++++++++++++
> drivers/gpu/drm/i915/display/intel_de.h | 99 +++++--------------------
> 2 files changed, 92 insertions(+), 79 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_de.c b/drivers/gpu/drm/i915/display/intel_de.c
> index 5348c1d51eb8..fce92535bd6a 100644
> --- a/drivers/gpu/drm/i915/display/intel_de.c
> +++ b/drivers/gpu/drm/i915/display/intel_de.c
> @@ -7,6 +7,78 @@
>
> #include "intel_de.h"
>
> +int intel_de_wait_us(struct intel_display *display, i915_reg_t reg,
> + u32 mask, u32 value, unsigned int timeout_us,
> + u32 *out_value)
> +{
> + int ret;
> +
> + intel_dmc_wl_get(display, reg);
> +
> + ret = __intel_wait_for_register(__to_uncore(display), reg, mask,
> + value, timeout_us, 0, out_value);
> +
> + intel_dmc_wl_put(display, reg);
> +
> + return ret;
> +}
> +
> +int intel_de_wait_ms(struct intel_display *display, i915_reg_t reg,
> + u32 mask, u32 value, unsigned int timeout_ms,
> + u32 *out_value)
> +{
> + int ret;
> +
> + intel_dmc_wl_get(display, reg);
> +
> + ret = __intel_wait_for_register(__to_uncore(display), reg, mask,
> + value, 2, timeout_ms, out_value);
> +
> + intel_dmc_wl_put(display, reg);
> +
> + return ret;
> +}
> +
> +int intel_de_wait_fw_ms(struct intel_display *display, i915_reg_t reg,
> + u32 mask, u32 value, unsigned int timeout_ms,
> + u32 *out_value)
> +{
> + return __intel_wait_for_register_fw(__to_uncore(display), reg, mask,
> + value, 2, timeout_ms, out_value);
> +}
> +
> +int intel_de_wait_fw_us_atomic(struct intel_display *display, i915_reg_t reg,
> + u32 mask, u32 value, unsigned int timeout_us,
> + u32 *out_value)
> +{
> + return __intel_wait_for_register_fw(__to_uncore(display), reg, mask,
> + value, timeout_us, 0, out_value);
> +}
> +
> +int intel_de_wait_for_set_us(struct intel_display *display, i915_reg_t reg,
> + u32 mask, unsigned int timeout_us)
> +{
> + return intel_de_wait_us(display, reg, mask, mask, timeout_us, NULL);
> +}
> +
> +int intel_de_wait_for_clear_us(struct intel_display *display, i915_reg_t reg,
> + u32 mask, unsigned int timeout_us)
> +{
> + return intel_de_wait_us(display, reg, mask, 0, timeout_us, NULL);
> +}
> +
> +int intel_de_wait_for_set_ms(struct intel_display *display, i915_reg_t reg,
> + u32 mask, unsigned int timeout_ms)
> +{
> + return intel_de_wait_ms(display, reg, mask, mask, timeout_ms, NULL);
> +}
> +
> +int intel_de_wait_for_clear_ms(struct intel_display *display, i915_reg_t reg,
> + u32 mask, unsigned int timeout_ms)
> +{
> + return intel_de_wait_ms(display, reg, mask, 0, timeout_ms, NULL);
> +}
> +
> u8 intel_de_read8(struct intel_display *display, i915_reg_t reg)
> {
> /* this is only used on VGA registers (possible on pre-g4x) */
> diff --git a/drivers/gpu/drm/i915/display/intel_de.h b/drivers/gpu/drm/i915/display/intel_de.h
> index 8ca5904ba84e..f87b84ab9d6d 100644
> --- a/drivers/gpu/drm/i915/display/intel_de.h
> +++ b/drivers/gpu/drm/i915/display/intel_de.h
> @@ -86,85 +86,26 @@ intel_de_rmw(struct intel_display *display, i915_reg_t reg, u32 clear, u32 set)
> return val;
> }
>
> -static inline int
> -intel_de_wait_us(struct intel_display *display, i915_reg_t reg,
> - u32 mask, u32 value, unsigned int timeout_us,
> - u32 *out_value)
> -{
> - int ret;
> -
> - intel_dmc_wl_get(display, reg);
> -
> - ret = __intel_wait_for_register(__to_uncore(display), reg, mask,
> - value, timeout_us, 0, out_value);
> -
> - intel_dmc_wl_put(display, reg);
> -
> - return ret;
> -}
> -
> -static inline int
> -intel_de_wait_ms(struct intel_display *display, i915_reg_t reg,
> - u32 mask, u32 value, unsigned int timeout_ms,
> - u32 *out_value)
> -{
> - int ret;
> -
> - intel_dmc_wl_get(display, reg);
> -
> - ret = __intel_wait_for_register(__to_uncore(display), reg, mask,
> - value, 2, timeout_ms, out_value);
> -
> - intel_dmc_wl_put(display, reg);
> -
> - return ret;
> -}
> -
> -static inline int
> -intel_de_wait_fw_ms(struct intel_display *display, i915_reg_t reg,
> - u32 mask, u32 value, unsigned int timeout_ms,
> - u32 *out_value)
> -{
> - return __intel_wait_for_register_fw(__to_uncore(display), reg, mask,
> - value, 2, timeout_ms, out_value);
> -}
> -
> -static inline int
> -intel_de_wait_fw_us_atomic(struct intel_display *display, i915_reg_t reg,
> - u32 mask, u32 value, unsigned int timeout_us,
> - u32 *out_value)
> -{
> - return __intel_wait_for_register_fw(__to_uncore(display), reg, mask,
> - value, timeout_us, 0, out_value);
> -}
> -
> -static inline int
> -intel_de_wait_for_set_us(struct intel_display *display, i915_reg_t reg,
> - u32 mask, unsigned int timeout_us)
> -{
> - return intel_de_wait_us(display, reg, mask, mask, timeout_us, NULL);
> -}
> -
> -static inline int
> -intel_de_wait_for_clear_us(struct intel_display *display, i915_reg_t reg,
> - u32 mask, unsigned int timeout_us)
> -{
> - return intel_de_wait_us(display, reg, mask, 0, timeout_us, NULL);
> -}
> -
> -static inline int
> -intel_de_wait_for_set_ms(struct intel_display *display, i915_reg_t reg,
> - u32 mask, unsigned int timeout_ms)
> -{
> - return intel_de_wait_ms(display, reg, mask, mask, timeout_ms, NULL);
> -}
> -
> -static inline int
> -intel_de_wait_for_clear_ms(struct intel_display *display, i915_reg_t reg,
> - u32 mask, unsigned int timeout_ms)
> -{
> - return intel_de_wait_ms(display, reg, mask, 0, timeout_ms, NULL);
> -}
> +int intel_de_wait_us(struct intel_display *display, i915_reg_t reg,
> + u32 mask, u32 value, unsigned int timeout_us,
> + u32 *out_value);
> +int intel_de_wait_ms(struct intel_display *display, i915_reg_t reg,
> + u32 mask, u32 value, unsigned int timeout_ms,
> + u32 *out_value);
> +int intel_de_wait_fw_ms(struct intel_display *display, i915_reg_t reg,
> + u32 mask, u32 value, unsigned int timeout_ms,
> + u32 *out_value);
> +int intel_de_wait_fw_us_atomic(struct intel_display *display, i915_reg_t reg,
> + u32 mask, u32 value, unsigned int timeout_us,
> + u32 *out_value);
> +int intel_de_wait_for_set_us(struct intel_display *display, i915_reg_t reg,
> + u32 mask, unsigned int timeout_us);
> +int intel_de_wait_for_clear_us(struct intel_display *display, i915_reg_t reg,
> + u32 mask, unsigned int timeout_us);
> +int intel_de_wait_for_set_ms(struct intel_display *display, i915_reg_t reg,
> + u32 mask, unsigned int timeout_ms);
> +int intel_de_wait_for_clear_ms(struct intel_display *display, i915_reg_t reg,
> + u32 mask, unsigned int timeout_ms);
>
> /*
> * Unlocked mmio-accessors, think carefully before using these.
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH 3/3] drm/i915/de: Implement register polling in the display code
2026-03-13 11:10 ` [PATCH 3/3] drm/i915/de: Implement register polling in the display code Ville Syrjala
@ 2026-03-13 15:03 ` Jani Nikula
2026-03-17 7:52 ` Ville Syrjälä
2026-03-23 9:50 ` Ville Syrjälä
2026-03-14 8:09 ` kernel test robot
2026-03-23 9:43 ` [PATCH v2 " Ville Syrjala
2 siblings, 2 replies; 19+ messages in thread
From: Jani Nikula @ 2026-03-13 15:03 UTC (permalink / raw)
To: Ville Syrjala, intel-gfx; +Cc: intel-xe
On Fri, 13 Mar 2026, Ville Syrjala <ville.syrjala@linux.intel.com> wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> The plan is to move all the mmio stuff into the display code itself.
> As a first step implement the register polling in intel_de.c.
>
> Currently i915 and xe implement this stuff in slightly different
> ways, so there are some functional changes here. Try to go for a
> reasonable middle ground between the i915 and xe implementations:
> - the exponential backoff limit is the simpler approach taken
> by i915 (== just clamp the max sleep duration to 1 ms)
The fact that xe has no upper limit is just bonkers, and with a suitable
sleep value the exponential backoff can be really bad, the timeout
happening almost 2x later than it should. Also, there's a bunch of quick
hammering reads with small timeouts at first, which aren't at all
necessary with longer timeouts. There are downsides to the exponential
backoff because of it's behaviour.
i915 also doesn't actually clamp the max, it'll double if the wait is
under the "max", but the doubling is okay to go over the max. Ditto in
this patch.
> - the fast vs. slow timeout handling is similar to i915 where
> we first try the fast timeout and then again the slow timeout
> if the condition still isn't satisfied. xe just adds up the
> timeouts together, which is a bit weird.
Side note, IMO the fast vs. slow must remain an implementation detail
and not leak outside of intel_de.c. If it really matters, I think it's
more obvious to do it the way gmbus_wait() currently does it, i.e. first
atomic then regular in the call site itself. If the wait functions are
too complex, we either end up with too many functions or functions with
too many parameters, and anyway calls sites end up having to use
poll_timeout_us() directly.
> - the atomic wait variant uses udelay() like xe, whereas i915
> has no udelay()s in its atomic loop. As a compromise go for a
> fixed 1 usec delay for short waits, instead of the somewhat
> peculiar xe behaviour where it effectively just does one
> iteration of the loop.
Overall I really prefer having separate functions for atomic and
non-atomic, similar to poll_timeout_us() and poll_timeout_us_atomic(). I
think it's so much easier to reason with the code with that than having
atomic as parameter.
> - keep the "use udelay() for < 10 usec waits" logic (which
> more or less mirrors fsleep()), but include an explicit
> might_sleep() even for these short waits when called from
> a non-atomic intel_de_wait*() function. This should prevent
> people from calling the non-atomic functions from the wrong
> place.
Another difference between i915/xe and poll_timeout_us() is the range
for usleep_range(), which is *also* different from fsleep().
i915/xe have:
usleep_range(wait__, wait__ * 2);
iopoll has:
usleep_range((__sleep_us >> 2) + 1, __sleep_us);
fsleep() has:
usleep_range(usecs, usecs + (usecs >> max_slack_shift));
I'm inclined to think all of the non-atomic variants should just use
fsleep(), but especially changing iopoll might be risky.
> Eventually we may want to switch over to poll_timeout*(),
> but that lacks the exponential backoff, so a bit too
> radical to change in one go.
Yeah, *sigh*. I fear it'll be too radical to add exponential backoff in
iopoll too. But I'm not entirely sure doing 10, 20, 40, 80, 160, etc. us
waits first when the timeout is like 1000000 us makes any sense
either. It's just wasteful hammering. Maybe the initial wait should be
relative to the timeout/sleep instead of fixed.
I don't know, lots of talk here. And lots of stuff I don't actually like
about this *or* the existing implementations all that much. But since
this largely remains an implementation detail that can be changed, I
guess I'm fine.
In the long run I kind of do expect the atomic and non-atomic paths to
be split. Having them combined is what I dislike most. Plus they'd have
to be split for migrating to poll_timeout_us() and
poll_timeout_us_atomic() anyway.
As far as the change is concerned, I think it does what it says on the
box. Please take the comments into consideration, especially regarding
future changes, but I'm not insisting on any changes now.
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_de.c | 99 +++++++++++++++++--
> .../drm/xe/compat-i915-headers/intel_uncore.h | 31 ------
> 2 files changed, 91 insertions(+), 39 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_de.c b/drivers/gpu/drm/i915/display/intel_de.c
> index fce92535bd6a..6cbe50f3e2b4 100644
> --- a/drivers/gpu/drm/i915/display/intel_de.c
> +++ b/drivers/gpu/drm/i915/display/intel_de.c
> @@ -3,10 +3,85 @@
> * Copyright © 2026 Intel Corporation
> */
>
> +#include <linux/delay.h>
> +
> #include <drm/drm_print.h>
>
> #include "intel_de.h"
>
> +static int __intel_de_wait_for_register(struct intel_display *display,
> + i915_reg_t reg, u32 mask, u32 value,
> + unsigned int timeout_us,
> + u32 (*read)(struct intel_display *display, i915_reg_t reg),
> + u32 *out_val, bool is_atomic)
> +{
> + const ktime_t end = ktime_add_us(ktime_get_raw(), timeout_us);
> + int wait_max = 1000;
> + int wait = 10;
> + u32 reg_value;
> + int ret;
> +
> + might_sleep_if(!is_atomic);
> +
> + if (timeout_us <= 10) {
> + is_atomic = true;
> + wait = 1;
> + }
> +
> + for (;;) {
> + bool expired = ktime_after(ktime_get_raw(), end);
> +
> + /* guarantee the condition is evaluated after timeout expired */
> + barrier();
> +
> + reg_value = read(display, reg);
> + if ((reg_value & mask) == value) {
> + ret = 0;
> + break;
> + }
> +
> + if (expired) {
> + ret = -ETIMEDOUT;
> + break;
> + }
> +
> + if (is_atomic)
> + udelay(wait);
> + else
> + usleep_range(wait, wait << 1);
> +
> + if (wait < wait_max)
> + wait <<= 1;
> + }
> +
> + if (out_val)
> + *out_val = reg_value;
> +
> + return ret;
> +}
> +
> +static int intel_de_wait_for_register(struct intel_display *display,
> + i915_reg_t reg, u32 mask, u32 value,
> + unsigned int fast_timeout_us,
> + unsigned int slow_timeout_us,
> + u32 (*read)(struct intel_display *display, i915_reg_t reg),
> + u32 *out_value, bool is_atomic)
> +{
> + int ret;
> +
> + if (fast_timeout_us)
> + ret = __intel_de_wait_for_register(display, reg, mask, value,
> + fast_timeout_us, read,
> + out_value, is_atomic);
> +
> + if (ret && slow_timeout_us)
> + ret = __intel_de_wait_for_register(display, reg, mask, value,
> + slow_timeout_us, read,
> + out_value, is_atomic);
> +
> + return ret;
> +}
> +
> int intel_de_wait_us(struct intel_display *display, i915_reg_t reg,
> u32 mask, u32 value, unsigned int timeout_us,
> u32 *out_value)
> @@ -15,8 +90,10 @@ int intel_de_wait_us(struct intel_display *display, i915_reg_t reg,
>
> intel_dmc_wl_get(display, reg);
>
> - ret = __intel_wait_for_register(__to_uncore(display), reg, mask,
> - value, timeout_us, 0, out_value);
> + ret = intel_de_wait_for_register(display, reg, mask, value,
> + timeout_us, 0,
> + intel_de_read,
> + out_value, false);
>
> intel_dmc_wl_put(display, reg);
>
> @@ -31,8 +108,10 @@ int intel_de_wait_ms(struct intel_display *display, i915_reg_t reg,
>
> intel_dmc_wl_get(display, reg);
>
> - ret = __intel_wait_for_register(__to_uncore(display), reg, mask,
> - value, 2, timeout_ms, out_value);
> + ret = intel_de_wait_for_register(display, reg, mask, value,
> + 2, timeout_ms * 1000,
> + intel_de_read,
> + out_value, false);
>
> intel_dmc_wl_put(display, reg);
>
> @@ -43,16 +122,20 @@ int intel_de_wait_fw_ms(struct intel_display *display, i915_reg_t reg,
> u32 mask, u32 value, unsigned int timeout_ms,
> u32 *out_value)
> {
> - return __intel_wait_for_register_fw(__to_uncore(display), reg, mask,
> - value, 2, timeout_ms, out_value);
> + return intel_de_wait_for_register(display, reg, mask, value,
> + 2, timeout_ms * 1000,
> + intel_de_read_fw,
> + out_value, false);
> }
>
> int intel_de_wait_fw_us_atomic(struct intel_display *display, i915_reg_t reg,
> u32 mask, u32 value, unsigned int timeout_us,
> u32 *out_value)
> {
> - return __intel_wait_for_register_fw(__to_uncore(display), reg, mask,
> - value, timeout_us, 0, out_value);
> + return intel_de_wait_for_register(display, reg, mask, value,
> + timeout_us, 0,
> + intel_de_read_fw,
> + out_value, true);
> }
>
> int intel_de_wait_for_set_us(struct intel_display *display, i915_reg_t reg,
> diff --git a/drivers/gpu/drm/xe/compat-i915-headers/intel_uncore.h b/drivers/gpu/drm/xe/compat-i915-headers/intel_uncore.h
> index a8cfd65119e0..08d7ab933672 100644
> --- a/drivers/gpu/drm/xe/compat-i915-headers/intel_uncore.h
> +++ b/drivers/gpu/drm/xe/compat-i915-headers/intel_uncore.h
> @@ -98,37 +98,6 @@ static inline u32 intel_uncore_rmw(struct intel_uncore *uncore,
> return xe_mmio_rmw32(__compat_uncore_to_mmio(uncore), reg, clear, set);
> }
>
> -static inline int
> -__intel_wait_for_register(struct intel_uncore *uncore, i915_reg_t i915_reg,
> - u32 mask, u32 value, unsigned int fast_timeout_us,
> - unsigned int slow_timeout_ms, u32 *out_value)
> -{
> - struct xe_reg reg = XE_REG(i915_mmio_reg_offset(i915_reg));
> - bool atomic;
> -
> - /*
> - * Replicate the behavior from i915 here, in which sleep is not
> - * performed if slow_timeout_ms == 0. This is necessary because
> - * of some paths in display code where waits are done in atomic
> - * context.
> - */
> - atomic = !slow_timeout_ms && fast_timeout_us > 0;
> -
> - return xe_mmio_wait32(__compat_uncore_to_mmio(uncore), reg, mask, value,
> - fast_timeout_us + 1000 * slow_timeout_ms,
> - out_value, atomic);
> -}
> -
> -static inline int
> -__intel_wait_for_register_fw(struct intel_uncore *uncore, i915_reg_t i915_reg,
> - u32 mask, u32 value, unsigned int fast_timeout_us,
> - unsigned int slow_timeout_ms, u32 *out_value)
> -{
> - return __intel_wait_for_register(uncore, i915_reg, mask, value,
> - fast_timeout_us, slow_timeout_ms,
> - out_value);
> -}
> -
> static inline u32 intel_uncore_read_fw(struct intel_uncore *uncore,
> i915_reg_t i915_reg)
> {
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH 3/3] drm/i915/de: Implement register polling in the display code
2026-03-13 11:10 ` [PATCH 3/3] drm/i915/de: Implement register polling in the display code Ville Syrjala
2026-03-13 15:03 ` Jani Nikula
@ 2026-03-14 8:09 ` kernel test robot
2026-03-23 9:43 ` [PATCH v2 " Ville Syrjala
2 siblings, 0 replies; 19+ messages in thread
From: kernel test robot @ 2026-03-14 8:09 UTC (permalink / raw)
To: Ville Syrjala, intel-gfx; +Cc: llvm, oe-kbuild-all, intel-xe
Hi Ville,
kernel test robot noticed the following build warnings:
[auto build test WARNING on drm-i915/for-linux-next]
[also build test WARNING on drm-tip/drm-tip next-20260311]
[cannot apply to drm-i915/for-linux-next-fixes drm-xe/drm-xe-next linus/master v7.0-rc3]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch#_base_tree_information]
url: https://github.com/intel-lab-lkp/linux/commits/Ville-Syrjala/drm-i915-de-Introduce-intel_de-c-and-move-intel_de_-read-write-8-there/20260314-004939
base: https://gitlab.freedesktop.org/drm/i915/kernel.git for-linux-next
patch link: https://lore.kernel.org/r/20260313111028.25159-4-ville.syrjala%40linux.intel.com
patch subject: [PATCH 3/3] drm/i915/de: Implement register polling in the display code
config: sparc64-allmodconfig (https://download.01.org/0day-ci/archive/20260314/202603141514.jgf9tlEy-lkp@intel.com/config)
compiler: clang version 23.0.0git (https://github.com/llvm/llvm-project 7d47b695929cc7f85eeb0f87d0189adc04c1c629)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260314/202603141514.jgf9tlEy-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202603141514.jgf9tlEy-lkp@intel.com/
All warnings (new ones prefixed by >>):
>> drivers/gpu/drm/i915/display/intel_de.c:72:6: warning: variable 'ret' is used uninitialized whenever 'if' condition is false [-Wsometimes-uninitialized]
72 | if (fast_timeout_us)
| ^~~~~~~~~~~~~~~
drivers/gpu/drm/i915/display/intel_de.c:77:6: note: uninitialized use occurs here
77 | if (ret && slow_timeout_us)
| ^~~
drivers/gpu/drm/i915/display/intel_de.c:72:2: note: remove the 'if' if its condition is always true
72 | if (fast_timeout_us)
| ^~~~~~~~~~~~~~~~~~~~
73 | ret = __intel_de_wait_for_register(display, reg, mask, value,
drivers/gpu/drm/i915/display/intel_de.c:70:9: note: initialize the variable 'ret' to silence this warning
70 | int ret;
| ^
| = 0
1 warning generated.
vim +72 drivers/gpu/drm/i915/display/intel_de.c
62
63 static int intel_de_wait_for_register(struct intel_display *display,
64 i915_reg_t reg, u32 mask, u32 value,
65 unsigned int fast_timeout_us,
66 unsigned int slow_timeout_us,
67 u32 (*read)(struct intel_display *display, i915_reg_t reg),
68 u32 *out_value, bool is_atomic)
69 {
70 int ret;
71
> 72 if (fast_timeout_us)
73 ret = __intel_de_wait_for_register(display, reg, mask, value,
74 fast_timeout_us, read,
75 out_value, is_atomic);
76
77 if (ret && slow_timeout_us)
78 ret = __intel_de_wait_for_register(display, reg, mask, value,
79 slow_timeout_us, read,
80 out_value, is_atomic);
81
82 return ret;
83 }
84
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
^ permalink raw reply [flat|nested] 19+ messages in thread
* ✗ Xe.CI.FULL: failure for drm/i915/de: Move register polling into display code
2026-03-13 11:10 [PATCH 0/3] drm/i915/de: Move register polling into display code Ville Syrjala
` (5 preceding siblings ...)
2026-03-13 11:51 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-03-14 14:29 ` Patchwork
2026-03-23 10:43 ` ✗ CI.checkpatch: warning for drm/i915/de: Move register polling into display code (rev2) Patchwork
` (3 subsequent siblings)
10 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2026-03-14 14:29 UTC (permalink / raw)
To: Ville Syrjälä; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 36653 bytes --]
== Series Details ==
Series: drm/i915/de: Move register polling into display code
URL : https://patchwork.freedesktop.org/series/163181/
State : failure
== Summary ==
CI Bug Log - changes from xe-4712-4082c266f2930288f1e9faadd4a389f15306a209_FULL -> xe-pw-163181v1_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-163181v1_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-163181v1_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-163181v1_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_sharpness_filter@invalid-plane-with-filter@pipe-a-edp-1-invalid-plane-with-filter:
- shard-lnl: [PASS][1] -> [DMESG-WARN][2] +1 other test dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4712-4082c266f2930288f1e9faadd4a389f15306a209/shard-lnl-5/igt@kms_sharpness_filter@invalid-plane-with-filter@pipe-a-edp-1-invalid-plane-with-filter.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-lnl-8/igt@kms_sharpness_filter@invalid-plane-with-filter@pipe-a-edp-1-invalid-plane-with-filter.html
Known issues
------------
Here are the changes found in xe-pw-163181v1_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip:
- shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#7059] / [Intel XE#7085])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-9/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#610] / [Intel XE#7387])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-3/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#1124]) +3 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-9/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- shard-bmg: [PASS][6] -> [SKIP][7] ([Intel XE#2314] / [Intel XE#2894] / [Intel XE#7373])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4712-4082c266f2930288f1e9faadd4a389f15306a209/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2314] / [Intel XE#2894] / [Intel XE#7373])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-8/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-1-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#367] / [Intel XE#7354])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2887]) +6 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-6/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2652]) +12 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#3432])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
* igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2252]) +3 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-7/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html
* igt@kms_content_protection@legacy:
- shard-bmg: NOTRUN -> [FAIL][14] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-2/igt@kms_content_protection@legacy.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2320]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-6/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2321] / [Intel XE#7355])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-10/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [PASS][17] -> [SKIP][18] ([Intel XE#2291]) +3 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4712-4082c266f2930288f1e9faadd4a389f15306a209/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-bmg: [PASS][19] -> [SKIP][20] ([Intel XE#2291] / [Intel XE#7343])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4712-4082c266f2930288f1e9faadd4a389f15306a209/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_display_modes@extended-mode-basic:
- shard-bmg: [PASS][21] -> [SKIP][22] ([Intel XE#4302])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4712-4082c266f2930288f1e9faadd4a389f15306a209/shard-bmg-3/igt@kms_display_modes@extended-mode-basic.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-5/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-bmg: [PASS][23] -> [SKIP][24] ([Intel XE#1340])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4712-4082c266f2930288f1e9faadd4a389f15306a209/shard-bmg-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2244])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-8/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-bmg: [PASS][26] -> [SKIP][27] ([Intel XE#2316]) +3 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4712-4082c266f2930288f1e9faadd4a389f15306a209/shard-bmg-10/igt@kms_flip@2x-plain-flip-fb-recreate.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-5/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@flip-vs-suspend@c-hdmi-a3:
- shard-bmg: [PASS][28] -> [INCOMPLETE][29] ([Intel XE#2049] / [Intel XE#2597])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4712-4082c266f2930288f1e9faadd4a389f15306a209/shard-bmg-7/igt@kms_flip@flip-vs-suspend@c-hdmi-a3.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-8/igt@kms_flip@flip-vs-suspend@c-hdmi-a3.html
* igt@kms_flip@plain-flip-fb-recreate:
- shard-bmg: [PASS][30] -> [FAIL][31] ([Intel XE#5408] / [Intel XE#6266])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4712-4082c266f2930288f1e9faadd4a389f15306a209/shard-bmg-6/igt@kms_flip@plain-flip-fb-recreate.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-5/igt@kms_flip@plain-flip-fb-recreate.html
* igt@kms_flip@plain-flip-fb-recreate@a-hdmi-a3:
- shard-bmg: [PASS][32] -> [FAIL][33] ([Intel XE#6266])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4712-4082c266f2930288f1e9faadd4a389f15306a209/shard-bmg-6/igt@kms_flip@plain-flip-fb-recreate@a-hdmi-a3.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-5/igt@kms_flip@plain-flip-fb-recreate@a-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#7178] / [Intel XE#7351]) +2 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#7178] / [Intel XE#7351])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2311]) +8 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-9/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#4141]) +3 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2312]) +2 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-render:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#656]) +2 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2313]) +13 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#6912] / [Intel XE#7375])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-2/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#7283])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-bmg: [PASS][44] -> [SKIP][45] ([Intel XE#4596])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4712-4082c266f2930288f1e9faadd4a389f15306a209/shard-bmg-9/igt@kms_plane_multiple@2x-tiling-none.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#5021] / [Intel XE#7377])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-8/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#5020] / [Intel XE#7348])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-lnl-5/igt@kms_plane_multiple@tiling-yf.html
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#5020] / [Intel XE#7348])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-4/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#1489]) +2 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-9/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2387] / [Intel XE#7429])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-10/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#1406] / [Intel XE#7345])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-lnl-1/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_psr@fbc-psr2-sprite-plane-move@edp-1:
- shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#1406] / [Intel XE#4609])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-lnl-1/igt@kms_psr@fbc-psr2-sprite-plane-move@edp-1.html
* igt@kms_psr@pr-sprite-plane-onoff:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2234] / [Intel XE#2850]) +4 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-9/igt@kms_psr@pr-sprite-plane-onoff.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-bmg: [PASS][54] -> [SKIP][55] ([Intel XE#1435])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4712-4082c266f2930288f1e9faadd4a389f15306a209/shard-bmg-2/igt@kms_setmode@clone-exclusive-crtc.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-5/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_sharpness_filter@filter-rotations:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#6503])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-7/igt@kms_sharpness_filter@filter-rotations.html
* igt@xe_eudebug@basic-exec-queues-enable:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#4837]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-2/igt@xe_eudebug@basic-exec-queues-enable.html
* igt@xe_eudebug_online@pagefault-write-stress:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#6665] / [Intel XE#6681])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-2/igt@xe_eudebug_online@pagefault-write-stress.html
* igt@xe_eudebug_online@set-breakpoint:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#4837] / [Intel XE#6665])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-9/igt@xe_eudebug_online@set-breakpoint.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: [PASS][60] -> [INCOMPLETE][61] ([Intel XE#6321])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4712-4082c266f2930288f1e9faadd4a389f15306a209/shard-bmg-6/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-5/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_evict@evict-small-multi-queue-priority:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#7140])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-4/igt@xe_evict@evict-small-multi-queue-priority.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2322] / [Intel XE#7372]) +2 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-9/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-prefetch:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#7136]) +9 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-5/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-prefetch.html
* igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#7136])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-lnl-5/igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-race.html
* igt@xe_exec_multi_queue@many-queues-basic-smem:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#6874]) +8 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-7/igt@xe_exec_multi_queue@many-queues-basic-smem.html
* igt@xe_exec_threads@threads-multi-queue-cm-userptr:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#7138]) +3 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-9/igt@xe_exec_threads@threads-multi-queue-cm-userptr.html
* igt@xe_multigpu_svm@mgpu-atomic-op-prefetch:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#6964])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-10/igt@xe_multigpu_svm@mgpu-atomic-op-prefetch.html
* igt@xe_peer2peer@write:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2427] / [Intel XE#6953] / [Intel XE#7326] / [Intel XE#7353])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-2/igt@xe_peer2peer@write.html
* igt@xe_pm@d3cold-i2c:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#5694] / [Intel XE#7370])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-3/igt@xe_pm@d3cold-i2c.html
* igt@xe_pxp@pxp-stale-queue-post-termination-irq:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#4733] / [Intel XE#7417])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-8/igt@xe_pxp@pxp-stale-queue-post-termination-irq.html
* igt@xe_query@multigpu-query-uc-fw-version-guc:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#944])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-9/igt@xe_query@multigpu-query-uc-fw-version-guc.html
* igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling@numvfs-random:
- shard-bmg: [PASS][73] -> [FAIL][74] ([Intel XE#5937]) +1 other test fail
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4712-4082c266f2930288f1e9faadd4a389f15306a209/shard-bmg-7/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling@numvfs-random.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-7/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling@numvfs-random.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-bmg: NOTRUN -> [FAIL][75] ([Intel XE#6569])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-2/igt@xe_sriov_flr@flr-each-isolation.html
#### Possible fixes ####
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-bmg: [SKIP][76] ([Intel XE#2314] / [Intel XE#2894] / [Intel XE#7373]) -> [PASS][77]
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4712-4082c266f2930288f1e9faadd4a389f15306a209/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-8/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:
- shard-bmg: [SKIP][78] ([Intel XE#2291]) -> [PASS][79] +3 other tests pass
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4712-4082c266f2930288f1e9faadd4a389f15306a209/shard-bmg-5/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-6/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-bmg: [SKIP][80] ([Intel XE#2291] / [Intel XE#7343]) -> [PASS][81]
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4712-4082c266f2930288f1e9faadd4a389f15306a209/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-10/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-bmg: [FAIL][82] ([Intel XE#7571]) -> [PASS][83]
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4712-4082c266f2930288f1e9faadd4a389f15306a209/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-10/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@forked-move@all-pipes:
- shard-bmg: [ABORT][84] ([Intel XE#5545]) -> [PASS][85] +1 other test pass
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4712-4082c266f2930288f1e9faadd4a389f15306a209/shard-bmg-3/igt@kms_cursor_legacy@forked-move@all-pipes.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-8/igt@kms_cursor_legacy@forked-move@all-pipes.html
* igt@kms_cursor_legacy@forked-move@pipe-d:
- shard-bmg: [DMESG-WARN][86] -> [PASS][87]
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4712-4082c266f2930288f1e9faadd4a389f15306a209/shard-bmg-3/igt@kms_cursor_legacy@forked-move@pipe-d.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-8/igt@kms_cursor_legacy@forked-move@pipe-d.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
- shard-bmg: [SKIP][88] ([Intel XE#2316]) -> [PASS][89] +3 other tests pass
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4712-4082c266f2930288f1e9faadd4a389f15306a209/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-8/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [FAIL][90] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][91] +1 other test pass
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4712-4082c266f2930288f1e9faadd4a389f15306a209/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1:
- shard-lnl: [FAIL][92] ([Intel XE#301]) -> [PASS][93]
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4712-4082c266f2930288f1e9faadd4a389f15306a209/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [SKIP][94] ([Intel XE#1503]) -> [PASS][95]
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4712-4082c266f2930288f1e9faadd4a389f15306a209/shard-bmg-4/igt@kms_hdr@invalid-hdr.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-5/igt@kms_hdr@invalid-hdr.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-lnl: [FAIL][96] ([Intel XE#6361]) -> [PASS][97] +2 other tests pass
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4712-4082c266f2930288f1e9faadd4a389f15306a209/shard-lnl-2/igt@kms_setmode@basic@pipe-b-edp-1.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-lnl-5/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
- shard-lnl: [FAIL][98] ([Intel XE#2142]) -> [PASS][99] +1 other test pass
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4712-4082c266f2930288f1e9faadd4a389f15306a209/shard-lnl-7/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-lnl-5/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
* igt@xe_sriov_flr@flr-basic@numvfs-1:
- shard-bmg: [FAIL][100] ([Intel XE#5937]) -> [PASS][101] +1 other test pass
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4712-4082c266f2930288f1e9faadd4a389f15306a209/shard-bmg-4/igt@xe_sriov_flr@flr-basic@numvfs-1.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-9/igt@xe_sriov_flr@flr-basic@numvfs-1.html
#### Warnings ####
* igt@kms_content_protection@suspend-resume:
- shard-bmg: [FAIL][102] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) -> [SKIP][103] ([Intel XE#6705])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4712-4082c266f2930288f1e9faadd4a389f15306a209/shard-bmg-3/igt@kms_content_protection@suspend-resume.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-5/igt@kms_content_protection@suspend-resume.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][104] ([Intel XE#2311]) -> [SKIP][105] ([Intel XE#2312]) +11 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4712-4082c266f2930288f1e9faadd4a389f15306a209/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][106] ([Intel XE#4141]) -> [SKIP][107] ([Intel XE#2312]) +5 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4712-4082c266f2930288f1e9faadd4a389f15306a209/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][108] ([Intel XE#2312]) -> [SKIP][109] ([Intel XE#4141]) +4 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4712-4082c266f2930288f1e9faadd4a389f15306a209/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt:
- shard-bmg: [SKIP][110] ([Intel XE#2312]) -> [SKIP][111] ([Intel XE#2311]) +4 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4712-4082c266f2930288f1e9faadd4a389f15306a209/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][112] ([Intel XE#2313]) -> [SKIP][113] ([Intel XE#2312]) +11 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4712-4082c266f2930288f1e9faadd4a389f15306a209/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][114] ([Intel XE#2312]) -> [SKIP][115] ([Intel XE#2313]) +6 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4712-4082c266f2930288f1e9faadd4a389f15306a209/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][116] ([Intel XE#3544]) -> [SKIP][117] ([Intel XE#3374] / [Intel XE#3544])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4712-4082c266f2930288f1e9faadd4a389f15306a209/shard-bmg-4/igt@kms_hdr@brightness-with-hdr.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/shard-bmg-7/igt@kms_hdr@brightness-with-hdr.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#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#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5408]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5408
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694
[Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#6266]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6266
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6361
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
[Intel XE#6681]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6681
[Intel XE#6705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6705
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912
[Intel XE#6953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6953
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7326]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7326
[Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
[Intel XE#7345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7345
[Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7353]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7353
[Intel XE#7354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7354
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7373
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7375
[Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377
[Intel XE#7387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7387
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429
[Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8800 -> IGT_8801
* Linux: xe-4712-4082c266f2930288f1e9faadd4a389f15306a209 -> xe-pw-163181v1
IGT_8800: 8800
IGT_8801: 246d93c1df887e151d038cee9eb0fc31650c4fb0 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4712-4082c266f2930288f1e9faadd4a389f15306a209: 4082c266f2930288f1e9faadd4a389f15306a209
xe-pw-163181v1: 163181v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v1/index.html
[-- Attachment #2: Type: text/html, Size: 41517 bytes --]
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH 3/3] drm/i915/de: Implement register polling in the display code
2026-03-13 15:03 ` Jani Nikula
@ 2026-03-17 7:52 ` Ville Syrjälä
2026-03-23 9:50 ` Ville Syrjälä
1 sibling, 0 replies; 19+ messages in thread
From: Ville Syrjälä @ 2026-03-17 7:52 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx, intel-xe
On Fri, Mar 13, 2026 at 05:03:16PM +0200, Jani Nikula wrote:
> On Fri, 13 Mar 2026, Ville Syrjala <ville.syrjala@linux.intel.com> wrote:
> > From: Ville Syrjälä <ville.syrjala@linux.intel.com>
> >
> > The plan is to move all the mmio stuff into the display code itself.
> > As a first step implement the register polling in intel_de.c.
> >
> > Currently i915 and xe implement this stuff in slightly different
> > ways, so there are some functional changes here. Try to go for a
> > reasonable middle ground between the i915 and xe implementations:
> > - the exponential backoff limit is the simpler approach taken
> > by i915 (== just clamp the max sleep duration to 1 ms)
>
> The fact that xe has no upper limit is just bonkers, and with a suitable
> sleep value the exponential backoff can be really bad, the timeout
> happening almost 2x later than it should. Also, there's a bunch of quick
> hammering reads with small timeouts at first, which aren't at all
> necessary with longer timeouts. There are downsides to the exponential
> backoff because of it's behaviour.
>
> i915 also doesn't actually clamp the max, it'll double if the wait is
> under the "max", but the doubling is okay to go over the max. Ditto in
> this patch.
>
> > - the fast vs. slow timeout handling is similar to i915 where
> > we first try the fast timeout and then again the slow timeout
> > if the condition still isn't satisfied. xe just adds up the
> > timeouts together, which is a bit weird.
>
> Side note, IMO the fast vs. slow must remain an implementation detail
> and not leak outside of intel_de.c. If it really matters, I think it's
> more obvious to do it the way gmbus_wait() currently does it, i.e. first
> atomic then regular in the call site itself. If the wait functions are
> too complex, we either end up with too many functions or functions with
> too many parameters, and anyway calls sites end up having to use
> poll_timeout_us() directly.
I think I'll follow up with a patch to nuke the fast vs. slow thing
entirely. IMO it doesn't really make sense.n the current scheme of
things. If the operation is expected to be fast (eg. ~10 usec) then
the difference between the 2 usec fast timeout vs. the starting 10
usec polling interval shouldn't make any practical difference anyway.
And if the operation is expected to take significantly longer than
that, then the whole fast timeout attempt is just wasted energy.
Though having some kind of fast vs. slow thing might make some sense
if we switch to poll_timeout_us() because then the exponential backoff
won't help us deal with cases that have very long timeouts but need
a short polling interval for performance reasons. AUX polling was one
such cases where the timeout needs to be long for the failure cases,
but the success case is very fast. I don't remember how short the
polling interval had to be to maintain reasonable performance, but
at least something like 10 ms timeout + 1 ms polling interval
(1/10th of the timeout) was way too slow.
But, as you say, perhaps we just need to hand roll those cases with
poll_timeout_us(). Though, for AUX specifically, the presence of
random number of LTTPRs might make it a bit hard to manually select
an optimal polling interval.
The gmbus thing is somewhat broken btw. Interrupt based wakeup
does not work with poll_timeout_us() at all, so effectively we
have no gmbus interrupts currently. I'll eventually need to
think how to fix that as well...
>
> > - the atomic wait variant uses udelay() like xe, whereas i915
> > has no udelay()s in its atomic loop. As a compromise go for a
> > fixed 1 usec delay for short waits, instead of the somewhat
> > peculiar xe behaviour where it effectively just does one
> > iteration of the loop.
>
> Overall I really prefer having separate functions for atomic and
> non-atomic, similar to poll_timeout_us() and poll_timeout_us_atomic(). I
> think it's so much easier to reason with the code with that than having
> atomic as parameter.
>
> > - keep the "use udelay() for < 10 usec waits" logic (which
> > more or less mirrors fsleep()), but include an explicit
> > might_sleep() even for these short waits when called from
> > a non-atomic intel_de_wait*() function. This should prevent
> > people from calling the non-atomic functions from the wrong
> > place.
>
> Another difference between i915/xe and poll_timeout_us() is the range
> for usleep_range(), which is *also* different from fsleep().
>
> i915/xe have:
>
> usleep_range(wait__, wait__ * 2);
>
> iopoll has:
>
> usleep_range((__sleep_us >> 2) + 1, __sleep_us);
>
> fsleep() has:
>
> usleep_range(usecs, usecs + (usecs >> max_slack_shift));
>
> I'm inclined to think all of the non-atomic variants should just use
> fsleep(), but especially changing iopoll might be risky.
>
> > Eventually we may want to switch over to poll_timeout*(),
> > but that lacks the exponential backoff, so a bit too
> > radical to change in one go.
>
> Yeah, *sigh*. I fear it'll be too radical to add exponential backoff in
> iopoll too. But I'm not entirely sure doing 10, 20, 40, 80, 160, etc. us
> waits first when the timeout is like 1000000 us makes any sense
> either.
Generally yes. Though the aforementioned AUX polling case
is an exception to the rule.
> It's just wasteful hammering. Maybe the initial wait should be
> relative to the timeout/sleep instead of fixed.
My local poll_timeout_us() conversion just used something like
1/10th (or thereabouts) of the timeout as the sleep duration.
I suppose we could adopt a similar approach even with the backoff.
>
> I don't know, lots of talk here. And lots of stuff I don't actually like
> about this *or* the existing implementations all that much. But since
> this largely remains an implementation detail that can be changed, I
> guess I'm fine.
>
> In the long run I kind of do expect the atomic and non-atomic paths to
> be split. Having them combined is what I dislike most. Plus they'd have
> to be split for migrating to poll_timeout_us() and
> poll_timeout_us_atomic() anyway.
I'm pondering if we could just get rid of the atomic variant entirely.
It's only needed by the wakelock stuff due to the spinlock. Maybe
that could be converted to mutex+non-atomic wait...
>
> As far as the change is concerned, I think it does what it says on the
> box. Please take the comments into consideration, especially regarding
> future changes, but I'm not insisting on any changes now.
>
> Reviewed-by: Jani Nikula <jani.nikula@intel.com>
>
>
> >
> > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> > ---
> > drivers/gpu/drm/i915/display/intel_de.c | 99 +++++++++++++++++--
> > .../drm/xe/compat-i915-headers/intel_uncore.h | 31 ------
> > 2 files changed, 91 insertions(+), 39 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/i915/display/intel_de.c b/drivers/gpu/drm/i915/display/intel_de.c
> > index fce92535bd6a..6cbe50f3e2b4 100644
> > --- a/drivers/gpu/drm/i915/display/intel_de.c
> > +++ b/drivers/gpu/drm/i915/display/intel_de.c
> > @@ -3,10 +3,85 @@
> > * Copyright © 2026 Intel Corporation
> > */
> >
> > +#include <linux/delay.h>
> > +
> > #include <drm/drm_print.h>
> >
> > #include "intel_de.h"
> >
> > +static int __intel_de_wait_for_register(struct intel_display *display,
> > + i915_reg_t reg, u32 mask, u32 value,
> > + unsigned int timeout_us,
> > + u32 (*read)(struct intel_display *display, i915_reg_t reg),
> > + u32 *out_val, bool is_atomic)
> > +{
> > + const ktime_t end = ktime_add_us(ktime_get_raw(), timeout_us);
> > + int wait_max = 1000;
> > + int wait = 10;
> > + u32 reg_value;
> > + int ret;
> > +
> > + might_sleep_if(!is_atomic);
> > +
> > + if (timeout_us <= 10) {
> > + is_atomic = true;
> > + wait = 1;
> > + }
> > +
> > + for (;;) {
> > + bool expired = ktime_after(ktime_get_raw(), end);
> > +
> > + /* guarantee the condition is evaluated after timeout expired */
> > + barrier();
> > +
> > + reg_value = read(display, reg);
> > + if ((reg_value & mask) == value) {
> > + ret = 0;
> > + break;
> > + }
> > +
> > + if (expired) {
> > + ret = -ETIMEDOUT;
> > + break;
> > + }
> > +
> > + if (is_atomic)
> > + udelay(wait);
> > + else
> > + usleep_range(wait, wait << 1);
> > +
> > + if (wait < wait_max)
> > + wait <<= 1;
> > + }
> > +
> > + if (out_val)
> > + *out_val = reg_value;
> > +
> > + return ret;
> > +}
> > +
> > +static int intel_de_wait_for_register(struct intel_display *display,
> > + i915_reg_t reg, u32 mask, u32 value,
> > + unsigned int fast_timeout_us,
> > + unsigned int slow_timeout_us,
> > + u32 (*read)(struct intel_display *display, i915_reg_t reg),
> > + u32 *out_value, bool is_atomic)
> > +{
> > + int ret;
> > +
> > + if (fast_timeout_us)
> > + ret = __intel_de_wait_for_register(display, reg, mask, value,
> > + fast_timeout_us, read,
> > + out_value, is_atomic);
> > +
> > + if (ret && slow_timeout_us)
> > + ret = __intel_de_wait_for_register(display, reg, mask, value,
> > + slow_timeout_us, read,
> > + out_value, is_atomic);
> > +
> > + return ret;
> > +}
> > +
> > int intel_de_wait_us(struct intel_display *display, i915_reg_t reg,
> > u32 mask, u32 value, unsigned int timeout_us,
> > u32 *out_value)
> > @@ -15,8 +90,10 @@ int intel_de_wait_us(struct intel_display *display, i915_reg_t reg,
> >
> > intel_dmc_wl_get(display, reg);
> >
> > - ret = __intel_wait_for_register(__to_uncore(display), reg, mask,
> > - value, timeout_us, 0, out_value);
> > + ret = intel_de_wait_for_register(display, reg, mask, value,
> > + timeout_us, 0,
> > + intel_de_read,
> > + out_value, false);
> >
> > intel_dmc_wl_put(display, reg);
> >
> > @@ -31,8 +108,10 @@ int intel_de_wait_ms(struct intel_display *display, i915_reg_t reg,
> >
> > intel_dmc_wl_get(display, reg);
> >
> > - ret = __intel_wait_for_register(__to_uncore(display), reg, mask,
> > - value, 2, timeout_ms, out_value);
> > + ret = intel_de_wait_for_register(display, reg, mask, value,
> > + 2, timeout_ms * 1000,
> > + intel_de_read,
> > + out_value, false);
> >
> > intel_dmc_wl_put(display, reg);
> >
> > @@ -43,16 +122,20 @@ int intel_de_wait_fw_ms(struct intel_display *display, i915_reg_t reg,
> > u32 mask, u32 value, unsigned int timeout_ms,
> > u32 *out_value)
> > {
> > - return __intel_wait_for_register_fw(__to_uncore(display), reg, mask,
> > - value, 2, timeout_ms, out_value);
> > + return intel_de_wait_for_register(display, reg, mask, value,
> > + 2, timeout_ms * 1000,
> > + intel_de_read_fw,
> > + out_value, false);
> > }
> >
> > int intel_de_wait_fw_us_atomic(struct intel_display *display, i915_reg_t reg,
> > u32 mask, u32 value, unsigned int timeout_us,
> > u32 *out_value)
> > {
> > - return __intel_wait_for_register_fw(__to_uncore(display), reg, mask,
> > - value, timeout_us, 0, out_value);
> > + return intel_de_wait_for_register(display, reg, mask, value,
> > + timeout_us, 0,
> > + intel_de_read_fw,
> > + out_value, true);
> > }
> >
> > int intel_de_wait_for_set_us(struct intel_display *display, i915_reg_t reg,
> > diff --git a/drivers/gpu/drm/xe/compat-i915-headers/intel_uncore.h b/drivers/gpu/drm/xe/compat-i915-headers/intel_uncore.h
> > index a8cfd65119e0..08d7ab933672 100644
> > --- a/drivers/gpu/drm/xe/compat-i915-headers/intel_uncore.h
> > +++ b/drivers/gpu/drm/xe/compat-i915-headers/intel_uncore.h
> > @@ -98,37 +98,6 @@ static inline u32 intel_uncore_rmw(struct intel_uncore *uncore,
> > return xe_mmio_rmw32(__compat_uncore_to_mmio(uncore), reg, clear, set);
> > }
> >
> > -static inline int
> > -__intel_wait_for_register(struct intel_uncore *uncore, i915_reg_t i915_reg,
> > - u32 mask, u32 value, unsigned int fast_timeout_us,
> > - unsigned int slow_timeout_ms, u32 *out_value)
> > -{
> > - struct xe_reg reg = XE_REG(i915_mmio_reg_offset(i915_reg));
> > - bool atomic;
> > -
> > - /*
> > - * Replicate the behavior from i915 here, in which sleep is not
> > - * performed if slow_timeout_ms == 0. This is necessary because
> > - * of some paths in display code where waits are done in atomic
> > - * context.
> > - */
> > - atomic = !slow_timeout_ms && fast_timeout_us > 0;
> > -
> > - return xe_mmio_wait32(__compat_uncore_to_mmio(uncore), reg, mask, value,
> > - fast_timeout_us + 1000 * slow_timeout_ms,
> > - out_value, atomic);
> > -}
> > -
> > -static inline int
> > -__intel_wait_for_register_fw(struct intel_uncore *uncore, i915_reg_t i915_reg,
> > - u32 mask, u32 value, unsigned int fast_timeout_us,
> > - unsigned int slow_timeout_ms, u32 *out_value)
> > -{
> > - return __intel_wait_for_register(uncore, i915_reg, mask, value,
> > - fast_timeout_us, slow_timeout_ms,
> > - out_value);
> > -}
> > -
> > static inline u32 intel_uncore_read_fw(struct intel_uncore *uncore,
> > i915_reg_t i915_reg)
> > {
>
> --
> Jani Nikula, Intel
--
Ville Syrjälä
Intel
^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH v2 3/3] drm/i915/de: Implement register polling in the display code
2026-03-13 11:10 ` [PATCH 3/3] drm/i915/de: Implement register polling in the display code Ville Syrjala
2026-03-13 15:03 ` Jani Nikula
2026-03-14 8:09 ` kernel test robot
@ 2026-03-23 9:43 ` Ville Syrjala
2 siblings, 0 replies; 19+ messages in thread
From: Ville Syrjala @ 2026-03-23 9:43 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe, Jani Nikula
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
The plan is to move all the mmio stuff into the display code itself.
As a first step implement the register polling in intel_de.c.
Currently i915 and xe implement this stuff in slightly different
ways, so there are some functional changes here. Try to go for a
reasonable middle ground between the i915 and xe implementations:
- the exponential backoff limit is the simpler approach taken
by i915 (== just clamp the max sleep duration to 1 ms)
- the fast vs. slow timeout handling is similar to i915 where
we first try the fast timeout and then again the slow timeout
if the condition still isn't satisfied. xe just adds up the
timeouts together, which is a bit weird.
- the atomic wait variant uses udelay() like xe, whereas i915
has no udelay()s in its atomic loop. As a compromise go for a
fixed 1 usec delay for short waits, instead of the somewhat
peculiar xe behaviour where it effectively just does one
iteration of the loop.
- keep the "use udelay() for < 10 usec waits" logic (which
more or less mirrors fsleep()), but include an explicit
might_sleep() even for these short waits when called from
a non-atomic intel_de_wait*() function. This should prevent
people from calling the non-atomic functions from the wrong
place.
Eventually we may want to switch over to poll_timeout*(),
but that lacks the exponential backoff, so a bit too
radical to change in one go.
v2: Initialize ret in intel_de_wait_for_register() to avoid a
warning from the compiler. This is actually a false positive
since we always have fast_timeout_us!=0 when slow_timeout_us!=0,
but the compiler can't see that
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/intel_de.c | 99 +++++++++++++++++--
| 31 ------
2 files changed, 91 insertions(+), 39 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_de.c b/drivers/gpu/drm/i915/display/intel_de.c
index fce92535bd6a..d2a418da2d54 100644
--- a/drivers/gpu/drm/i915/display/intel_de.c
+++ b/drivers/gpu/drm/i915/display/intel_de.c
@@ -3,10 +3,85 @@
* Copyright © 2026 Intel Corporation
*/
+#include <linux/delay.h>
+
#include <drm/drm_print.h>
#include "intel_de.h"
+static int __intel_de_wait_for_register(struct intel_display *display,
+ i915_reg_t reg, u32 mask, u32 value,
+ unsigned int timeout_us,
+ u32 (*read)(struct intel_display *display, i915_reg_t reg),
+ u32 *out_val, bool is_atomic)
+{
+ const ktime_t end = ktime_add_us(ktime_get_raw(), timeout_us);
+ int wait_max = 1000;
+ int wait = 10;
+ u32 reg_value;
+ int ret;
+
+ might_sleep_if(!is_atomic);
+
+ if (timeout_us <= 10) {
+ is_atomic = true;
+ wait = 1;
+ }
+
+ for (;;) {
+ bool expired = ktime_after(ktime_get_raw(), end);
+
+ /* guarantee the condition is evaluated after timeout expired */
+ barrier();
+
+ reg_value = read(display, reg);
+ if ((reg_value & mask) == value) {
+ ret = 0;
+ break;
+ }
+
+ if (expired) {
+ ret = -ETIMEDOUT;
+ break;
+ }
+
+ if (is_atomic)
+ udelay(wait);
+ else
+ usleep_range(wait, wait << 1);
+
+ if (wait < wait_max)
+ wait <<= 1;
+ }
+
+ if (out_val)
+ *out_val = reg_value;
+
+ return ret;
+}
+
+static int intel_de_wait_for_register(struct intel_display *display,
+ i915_reg_t reg, u32 mask, u32 value,
+ unsigned int fast_timeout_us,
+ unsigned int slow_timeout_us,
+ u32 (*read)(struct intel_display *display, i915_reg_t reg),
+ u32 *out_value, bool is_atomic)
+{
+ int ret = -EINVAL;
+
+ if (fast_timeout_us)
+ ret = __intel_de_wait_for_register(display, reg, mask, value,
+ fast_timeout_us, read,
+ out_value, is_atomic);
+
+ if (ret && slow_timeout_us)
+ ret = __intel_de_wait_for_register(display, reg, mask, value,
+ slow_timeout_us, read,
+ out_value, is_atomic);
+
+ return ret;
+}
+
int intel_de_wait_us(struct intel_display *display, i915_reg_t reg,
u32 mask, u32 value, unsigned int timeout_us,
u32 *out_value)
@@ -15,8 +90,10 @@ int intel_de_wait_us(struct intel_display *display, i915_reg_t reg,
intel_dmc_wl_get(display, reg);
- ret = __intel_wait_for_register(__to_uncore(display), reg, mask,
- value, timeout_us, 0, out_value);
+ ret = intel_de_wait_for_register(display, reg, mask, value,
+ timeout_us, 0,
+ intel_de_read,
+ out_value, false);
intel_dmc_wl_put(display, reg);
@@ -31,8 +108,10 @@ int intel_de_wait_ms(struct intel_display *display, i915_reg_t reg,
intel_dmc_wl_get(display, reg);
- ret = __intel_wait_for_register(__to_uncore(display), reg, mask,
- value, 2, timeout_ms, out_value);
+ ret = intel_de_wait_for_register(display, reg, mask, value,
+ 2, timeout_ms * 1000,
+ intel_de_read,
+ out_value, false);
intel_dmc_wl_put(display, reg);
@@ -43,16 +122,20 @@ int intel_de_wait_fw_ms(struct intel_display *display, i915_reg_t reg,
u32 mask, u32 value, unsigned int timeout_ms,
u32 *out_value)
{
- return __intel_wait_for_register_fw(__to_uncore(display), reg, mask,
- value, 2, timeout_ms, out_value);
+ return intel_de_wait_for_register(display, reg, mask, value,
+ 2, timeout_ms * 1000,
+ intel_de_read_fw,
+ out_value, false);
}
int intel_de_wait_fw_us_atomic(struct intel_display *display, i915_reg_t reg,
u32 mask, u32 value, unsigned int timeout_us,
u32 *out_value)
{
- return __intel_wait_for_register_fw(__to_uncore(display), reg, mask,
- value, timeout_us, 0, out_value);
+ return intel_de_wait_for_register(display, reg, mask, value,
+ timeout_us, 0,
+ intel_de_read_fw,
+ out_value, true);
}
int intel_de_wait_for_set_us(struct intel_display *display, i915_reg_t reg,
--git a/drivers/gpu/drm/xe/compat-i915-headers/intel_uncore.h b/drivers/gpu/drm/xe/compat-i915-headers/intel_uncore.h
index a8cfd65119e0..08d7ab933672 100644
--- a/drivers/gpu/drm/xe/compat-i915-headers/intel_uncore.h
+++ b/drivers/gpu/drm/xe/compat-i915-headers/intel_uncore.h
@@ -98,37 +98,6 @@ static inline u32 intel_uncore_rmw(struct intel_uncore *uncore,
return xe_mmio_rmw32(__compat_uncore_to_mmio(uncore), reg, clear, set);
}
-static inline int
-__intel_wait_for_register(struct intel_uncore *uncore, i915_reg_t i915_reg,
- u32 mask, u32 value, unsigned int fast_timeout_us,
- unsigned int slow_timeout_ms, u32 *out_value)
-{
- struct xe_reg reg = XE_REG(i915_mmio_reg_offset(i915_reg));
- bool atomic;
-
- /*
- * Replicate the behavior from i915 here, in which sleep is not
- * performed if slow_timeout_ms == 0. This is necessary because
- * of some paths in display code where waits are done in atomic
- * context.
- */
- atomic = !slow_timeout_ms && fast_timeout_us > 0;
-
- return xe_mmio_wait32(__compat_uncore_to_mmio(uncore), reg, mask, value,
- fast_timeout_us + 1000 * slow_timeout_ms,
- out_value, atomic);
-}
-
-static inline int
-__intel_wait_for_register_fw(struct intel_uncore *uncore, i915_reg_t i915_reg,
- u32 mask, u32 value, unsigned int fast_timeout_us,
- unsigned int slow_timeout_ms, u32 *out_value)
-{
- return __intel_wait_for_register(uncore, i915_reg, mask, value,
- fast_timeout_us, slow_timeout_ms,
- out_value);
-}
-
static inline u32 intel_uncore_read_fw(struct intel_uncore *uncore,
i915_reg_t i915_reg)
{
--
2.52.0
^ permalink raw reply related [flat|nested] 19+ messages in thread
* Re: [PATCH 3/3] drm/i915/de: Implement register polling in the display code
2026-03-13 15:03 ` Jani Nikula
2026-03-17 7:52 ` Ville Syrjälä
@ 2026-03-23 9:50 ` Ville Syrjälä
1 sibling, 0 replies; 19+ messages in thread
From: Ville Syrjälä @ 2026-03-23 9:50 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx, intel-xe
On Fri, Mar 13, 2026 at 05:03:16PM +0200, Jani Nikula wrote:
> Another difference between i915/xe and poll_timeout_us() is the range
> for usleep_range(), which is *also* different from fsleep().
>
> i915/xe have:
>
> usleep_range(wait__, wait__ * 2);
>
> iopoll has:
>
> usleep_range((__sleep_us >> 2) + 1, __sleep_us);
I was pondering about this a bit and came to the conclusion that
what poll_timeout_us() does with the usleep_range() is a bad idea.
We might have some crappy hardware/firmware (*cough* pcode *cough*)
that doesn't like to be polled too frequently, so it seems much more
sensible to provide the minimum polling interval rather than the
maximum. Also the maximum won't be the actual maximum anyway due to
random scheduling delays/etc. So I think we probably need to change
the behavior of poll_timeout_us() if we want to actually use it...
--
Ville Syrjälä
Intel
^ permalink raw reply [flat|nested] 19+ messages in thread
* ✗ CI.checkpatch: warning for drm/i915/de: Move register polling into display code (rev2)
2026-03-13 11:10 [PATCH 0/3] drm/i915/de: Move register polling into display code Ville Syrjala
` (6 preceding siblings ...)
2026-03-14 14:29 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-03-23 10:43 ` Patchwork
2026-03-23 10:45 ` ✓ CI.KUnit: success " Patchwork
` (2 subsequent siblings)
10 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2026-03-23 10:43 UTC (permalink / raw)
To: Ville Syrjala; +Cc: intel-xe
== Series Details ==
Series: drm/i915/de: Move register polling into display code (rev2)
URL : https://patchwork.freedesktop.org/series/163181/
State : warning
== Summary ==
+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
1f57ba1afceae32108bd24770069f764d940a0e4
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 4dd954e13cbef80bfe9eef6beda82accc82447d8
Author: Ville Syrjälä <ville.syrjala@linux.intel.com>
Date: Mon Mar 23 11:43:04 2026 +0200
drm/i915/de: Implement register polling in the display code
The plan is to move all the mmio stuff into the display code itself.
As a first step implement the register polling in intel_de.c.
Currently i915 and xe implement this stuff in slightly different
ways, so there are some functional changes here. Try to go for a
reasonable middle ground between the i915 and xe implementations:
- the exponential backoff limit is the simpler approach taken
by i915 (== just clamp the max sleep duration to 1 ms)
- the fast vs. slow timeout handling is similar to i915 where
we first try the fast timeout and then again the slow timeout
if the condition still isn't satisfied. xe just adds up the
timeouts together, which is a bit weird.
- the atomic wait variant uses udelay() like xe, whereas i915
has no udelay()s in its atomic loop. As a compromise go for a
fixed 1 usec delay for short waits, instead of the somewhat
peculiar xe behaviour where it effectively just does one
iteration of the loop.
- keep the "use udelay() for < 10 usec waits" logic (which
more or less mirrors fsleep()), but include an explicit
might_sleep() even for these short waits when called from
a non-atomic intel_de_wait*() function. This should prevent
people from calling the non-atomic functions from the wrong
place.
Eventually we may want to switch over to poll_timeout*(),
but that lacks the exponential backoff, so a bit too
radical to change in one go.
v2: Initialize ret in intel_de_wait_for_register() to avoid a
warning from the compiler. This is actually a false positive
since we always have fast_timeout_us!=0 when slow_timeout_us!=0,
but the compiler can't see that
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
+ /mt/dim checkpatch 5cb7d14d9bd2061386a0192a4649626a3e3a5ec3 drm-intel
7e1d60d2af49 drm/i915/de: Introduce intel_de.c and move intel_de_{read, write}8() there
-:30: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#30:
new file mode 100644
total: 0 errors, 1 warnings, 0 checks, 77 lines checked
737b8f8cb250 drm/i915/de: Move intel_de_wait*() into intel_de.c
4dd954e13cbe drm/i915/de: Implement register polling in the display code
^ permalink raw reply [flat|nested] 19+ messages in thread
* ✓ CI.KUnit: success for drm/i915/de: Move register polling into display code (rev2)
2026-03-13 11:10 [PATCH 0/3] drm/i915/de: Move register polling into display code Ville Syrjala
` (7 preceding siblings ...)
2026-03-23 10:43 ` ✗ CI.checkpatch: warning for drm/i915/de: Move register polling into display code (rev2) Patchwork
@ 2026-03-23 10:45 ` Patchwork
2026-03-23 11:26 ` ✓ Xe.CI.BAT: " Patchwork
2026-03-23 13:56 ` ✓ Xe.CI.FULL: " Patchwork
10 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2026-03-23 10:45 UTC (permalink / raw)
To: Ville Syrjala; +Cc: intel-xe
== Series Details ==
Series: drm/i915/de: Move register polling into display code (rev2)
URL : https://patchwork.freedesktop.org/series/163181/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[10:43:23] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[10:43:28] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[10:44:05] Starting KUnit Kernel (1/1)...
[10:44:05] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[10:44:05] ================== guc_buf (11 subtests) ===================
[10:44:05] [PASSED] test_smallest
[10:44:05] [PASSED] test_largest
[10:44:05] [PASSED] test_granular
[10:44:05] [PASSED] test_unique
[10:44:05] [PASSED] test_overlap
[10:44:05] [PASSED] test_reusable
[10:44:05] [PASSED] test_too_big
[10:44:05] [PASSED] test_flush
[10:44:05] [PASSED] test_lookup
[10:44:05] [PASSED] test_data
[10:44:05] [PASSED] test_class
[10:44:05] ===================== [PASSED] guc_buf =====================
[10:44:05] =================== guc_dbm (7 subtests) ===================
[10:44:05] [PASSED] test_empty
[10:44:05] [PASSED] test_default
[10:44:05] ======================== test_size ========================
[10:44:05] [PASSED] 4
[10:44:05] [PASSED] 8
[10:44:05] [PASSED] 32
[10:44:05] [PASSED] 256
[10:44:05] ==================== [PASSED] test_size ====================
[10:44:05] ======================= test_reuse ========================
[10:44:05] [PASSED] 4
[10:44:05] [PASSED] 8
[10:44:05] [PASSED] 32
[10:44:05] [PASSED] 256
[10:44:05] =================== [PASSED] test_reuse ====================
[10:44:05] =================== test_range_overlap ====================
[10:44:05] [PASSED] 4
[10:44:05] [PASSED] 8
[10:44:05] [PASSED] 32
[10:44:05] [PASSED] 256
[10:44:05] =============== [PASSED] test_range_overlap ================
[10:44:05] =================== test_range_compact ====================
[10:44:05] [PASSED] 4
[10:44:05] [PASSED] 8
[10:44:05] [PASSED] 32
[10:44:05] [PASSED] 256
[10:44:05] =============== [PASSED] test_range_compact ================
[10:44:05] ==================== test_range_spare =====================
[10:44:05] [PASSED] 4
[10:44:05] [PASSED] 8
[10:44:05] [PASSED] 32
[10:44:05] [PASSED] 256
[10:44:05] ================ [PASSED] test_range_spare =================
[10:44:05] ===================== [PASSED] guc_dbm =====================
[10:44:05] =================== guc_idm (6 subtests) ===================
[10:44:05] [PASSED] bad_init
[10:44:05] [PASSED] no_init
[10:44:05] [PASSED] init_fini
[10:44:05] [PASSED] check_used
[10:44:05] [PASSED] check_quota
[10:44:05] [PASSED] check_all
[10:44:05] ===================== [PASSED] guc_idm =====================
[10:44:05] ================== no_relay (3 subtests) ===================
[10:44:05] [PASSED] xe_drops_guc2pf_if_not_ready
[10:44:05] [PASSED] xe_drops_guc2vf_if_not_ready
[10:44:05] [PASSED] xe_rejects_send_if_not_ready
[10:44:05] ==================== [PASSED] no_relay =====================
[10:44:05] ================== pf_relay (14 subtests) ==================
[10:44:05] [PASSED] pf_rejects_guc2pf_too_short
[10:44:05] [PASSED] pf_rejects_guc2pf_too_long
[10:44:05] [PASSED] pf_rejects_guc2pf_no_payload
[10:44:05] [PASSED] pf_fails_no_payload
[10:44:05] [PASSED] pf_fails_bad_origin
[10:44:05] [PASSED] pf_fails_bad_type
[10:44:05] [PASSED] pf_txn_reports_error
[10:44:05] [PASSED] pf_txn_sends_pf2guc
[10:44:05] [PASSED] pf_sends_pf2guc
[10:44:05] [SKIPPED] pf_loopback_nop
[10:44:05] [SKIPPED] pf_loopback_echo
[10:44:05] [SKIPPED] pf_loopback_fail
[10:44:05] [SKIPPED] pf_loopback_busy
[10:44:05] [SKIPPED] pf_loopback_retry
[10:44:05] ==================== [PASSED] pf_relay =====================
[10:44:05] ================== vf_relay (3 subtests) ===================
[10:44:05] [PASSED] vf_rejects_guc2vf_too_short
[10:44:05] [PASSED] vf_rejects_guc2vf_too_long
[10:44:05] [PASSED] vf_rejects_guc2vf_no_payload
[10:44:05] ==================== [PASSED] vf_relay =====================
[10:44:05] ================ pf_gt_config (9 subtests) =================
[10:44:05] [PASSED] fair_contexts_1vf
[10:44:05] [PASSED] fair_doorbells_1vf
[10:44:05] [PASSED] fair_ggtt_1vf
[10:44:05] ====================== fair_vram_1vf ======================
[10:44:05] [PASSED] 3.50 GiB
[10:44:05] [PASSED] 11.5 GiB
[10:44:05] [PASSED] 15.5 GiB
[10:44:05] [PASSED] 31.5 GiB
[10:44:05] [PASSED] 63.5 GiB
[10:44:05] [PASSED] 1.91 GiB
[10:44:05] ================== [PASSED] fair_vram_1vf ==================
[10:44:05] ================ fair_vram_1vf_admin_only =================
[10:44:05] [PASSED] 3.50 GiB
[10:44:05] [PASSED] 11.5 GiB
[10:44:05] [PASSED] 15.5 GiB
[10:44:05] [PASSED] 31.5 GiB
[10:44:05] [PASSED] 63.5 GiB
[10:44:05] [PASSED] 1.91 GiB
[10:44:05] ============ [PASSED] fair_vram_1vf_admin_only =============
[10:44:05] ====================== fair_contexts ======================
[10:44:05] [PASSED] 1 VF
[10:44:05] [PASSED] 2 VFs
[10:44:05] [PASSED] 3 VFs
[10:44:05] [PASSED] 4 VFs
[10:44:05] [PASSED] 5 VFs
[10:44:05] [PASSED] 6 VFs
[10:44:05] [PASSED] 7 VFs
[10:44:05] [PASSED] 8 VFs
[10:44:05] [PASSED] 9 VFs
[10:44:05] [PASSED] 10 VFs
[10:44:05] [PASSED] 11 VFs
[10:44:05] [PASSED] 12 VFs
[10:44:05] [PASSED] 13 VFs
[10:44:05] [PASSED] 14 VFs
[10:44:05] [PASSED] 15 VFs
[10:44:05] [PASSED] 16 VFs
[10:44:05] [PASSED] 17 VFs
[10:44:05] [PASSED] 18 VFs
[10:44:06] [PASSED] 19 VFs
[10:44:06] [PASSED] 20 VFs
[10:44:06] [PASSED] 21 VFs
[10:44:06] [PASSED] 22 VFs
[10:44:06] [PASSED] 23 VFs
[10:44:06] [PASSED] 24 VFs
[10:44:06] [PASSED] 25 VFs
[10:44:06] [PASSED] 26 VFs
[10:44:06] [PASSED] 27 VFs
[10:44:06] [PASSED] 28 VFs
[10:44:06] [PASSED] 29 VFs
[10:44:06] [PASSED] 30 VFs
[10:44:06] [PASSED] 31 VFs
[10:44:06] [PASSED] 32 VFs
[10:44:06] [PASSED] 33 VFs
[10:44:06] [PASSED] 34 VFs
[10:44:06] [PASSED] 35 VFs
[10:44:06] [PASSED] 36 VFs
[10:44:06] [PASSED] 37 VFs
[10:44:06] [PASSED] 38 VFs
[10:44:06] [PASSED] 39 VFs
[10:44:06] [PASSED] 40 VFs
[10:44:06] [PASSED] 41 VFs
[10:44:06] [PASSED] 42 VFs
[10:44:06] [PASSED] 43 VFs
[10:44:06] [PASSED] 44 VFs
[10:44:06] [PASSED] 45 VFs
[10:44:06] [PASSED] 46 VFs
[10:44:06] [PASSED] 47 VFs
[10:44:06] [PASSED] 48 VFs
[10:44:06] [PASSED] 49 VFs
[10:44:06] [PASSED] 50 VFs
[10:44:06] [PASSED] 51 VFs
[10:44:06] [PASSED] 52 VFs
[10:44:06] [PASSED] 53 VFs
[10:44:06] [PASSED] 54 VFs
[10:44:06] [PASSED] 55 VFs
[10:44:06] [PASSED] 56 VFs
[10:44:06] [PASSED] 57 VFs
[10:44:06] [PASSED] 58 VFs
[10:44:06] [PASSED] 59 VFs
[10:44:06] [PASSED] 60 VFs
[10:44:06] [PASSED] 61 VFs
[10:44:06] [PASSED] 62 VFs
[10:44:06] [PASSED] 63 VFs
[10:44:06] ================== [PASSED] fair_contexts ==================
[10:44:06] ===================== fair_doorbells ======================
[10:44:06] [PASSED] 1 VF
[10:44:06] [PASSED] 2 VFs
[10:44:06] [PASSED] 3 VFs
[10:44:06] [PASSED] 4 VFs
[10:44:06] [PASSED] 5 VFs
[10:44:06] [PASSED] 6 VFs
[10:44:06] [PASSED] 7 VFs
[10:44:06] [PASSED] 8 VFs
[10:44:06] [PASSED] 9 VFs
[10:44:06] [PASSED] 10 VFs
[10:44:06] [PASSED] 11 VFs
[10:44:06] [PASSED] 12 VFs
[10:44:06] [PASSED] 13 VFs
[10:44:06] [PASSED] 14 VFs
[10:44:06] [PASSED] 15 VFs
[10:44:06] [PASSED] 16 VFs
[10:44:06] [PASSED] 17 VFs
[10:44:06] [PASSED] 18 VFs
[10:44:06] [PASSED] 19 VFs
[10:44:06] [PASSED] 20 VFs
[10:44:06] [PASSED] 21 VFs
[10:44:06] [PASSED] 22 VFs
[10:44:06] [PASSED] 23 VFs
[10:44:06] [PASSED] 24 VFs
[10:44:06] [PASSED] 25 VFs
[10:44:06] [PASSED] 26 VFs
[10:44:06] [PASSED] 27 VFs
[10:44:06] [PASSED] 28 VFs
[10:44:06] [PASSED] 29 VFs
[10:44:06] [PASSED] 30 VFs
[10:44:06] [PASSED] 31 VFs
[10:44:06] [PASSED] 32 VFs
[10:44:06] [PASSED] 33 VFs
[10:44:06] [PASSED] 34 VFs
[10:44:06] [PASSED] 35 VFs
[10:44:06] [PASSED] 36 VFs
[10:44:06] [PASSED] 37 VFs
[10:44:06] [PASSED] 38 VFs
[10:44:06] [PASSED] 39 VFs
[10:44:06] [PASSED] 40 VFs
[10:44:06] [PASSED] 41 VFs
[10:44:06] [PASSED] 42 VFs
[10:44:06] [PASSED] 43 VFs
[10:44:06] [PASSED] 44 VFs
[10:44:06] [PASSED] 45 VFs
[10:44:06] [PASSED] 46 VFs
[10:44:06] [PASSED] 47 VFs
[10:44:06] [PASSED] 48 VFs
[10:44:06] [PASSED] 49 VFs
[10:44:06] [PASSED] 50 VFs
[10:44:06] [PASSED] 51 VFs
[10:44:06] [PASSED] 52 VFs
[10:44:06] [PASSED] 53 VFs
[10:44:06] [PASSED] 54 VFs
[10:44:06] [PASSED] 55 VFs
[10:44:06] [PASSED] 56 VFs
[10:44:06] [PASSED] 57 VFs
[10:44:06] [PASSED] 58 VFs
[10:44:06] [PASSED] 59 VFs
[10:44:06] [PASSED] 60 VFs
[10:44:06] [PASSED] 61 VFs
[10:44:06] [PASSED] 62 VFs
[10:44:06] [PASSED] 63 VFs
[10:44:06] ================= [PASSED] fair_doorbells ==================
[10:44:06] ======================== fair_ggtt ========================
[10:44:06] [PASSED] 1 VF
[10:44:06] [PASSED] 2 VFs
[10:44:06] [PASSED] 3 VFs
[10:44:06] [PASSED] 4 VFs
[10:44:06] [PASSED] 5 VFs
[10:44:06] [PASSED] 6 VFs
[10:44:06] [PASSED] 7 VFs
[10:44:06] [PASSED] 8 VFs
[10:44:06] [PASSED] 9 VFs
[10:44:06] [PASSED] 10 VFs
[10:44:06] [PASSED] 11 VFs
[10:44:06] [PASSED] 12 VFs
[10:44:06] [PASSED] 13 VFs
[10:44:06] [PASSED] 14 VFs
[10:44:06] [PASSED] 15 VFs
[10:44:06] [PASSED] 16 VFs
[10:44:06] [PASSED] 17 VFs
[10:44:06] [PASSED] 18 VFs
[10:44:06] [PASSED] 19 VFs
[10:44:06] [PASSED] 20 VFs
[10:44:06] [PASSED] 21 VFs
[10:44:06] [PASSED] 22 VFs
[10:44:06] [PASSED] 23 VFs
[10:44:06] [PASSED] 24 VFs
[10:44:06] [PASSED] 25 VFs
[10:44:06] [PASSED] 26 VFs
[10:44:06] [PASSED] 27 VFs
[10:44:06] [PASSED] 28 VFs
[10:44:06] [PASSED] 29 VFs
[10:44:06] [PASSED] 30 VFs
[10:44:06] [PASSED] 31 VFs
[10:44:06] [PASSED] 32 VFs
[10:44:06] [PASSED] 33 VFs
[10:44:06] [PASSED] 34 VFs
[10:44:06] [PASSED] 35 VFs
[10:44:06] [PASSED] 36 VFs
[10:44:06] [PASSED] 37 VFs
[10:44:06] [PASSED] 38 VFs
[10:44:06] [PASSED] 39 VFs
[10:44:06] [PASSED] 40 VFs
[10:44:06] [PASSED] 41 VFs
[10:44:06] [PASSED] 42 VFs
[10:44:06] [PASSED] 43 VFs
[10:44:06] [PASSED] 44 VFs
[10:44:06] [PASSED] 45 VFs
[10:44:06] [PASSED] 46 VFs
[10:44:06] [PASSED] 47 VFs
[10:44:06] [PASSED] 48 VFs
[10:44:06] [PASSED] 49 VFs
[10:44:06] [PASSED] 50 VFs
[10:44:06] [PASSED] 51 VFs
[10:44:06] [PASSED] 52 VFs
[10:44:06] [PASSED] 53 VFs
[10:44:06] [PASSED] 54 VFs
[10:44:06] [PASSED] 55 VFs
[10:44:06] [PASSED] 56 VFs
[10:44:06] [PASSED] 57 VFs
[10:44:06] [PASSED] 58 VFs
[10:44:06] [PASSED] 59 VFs
[10:44:06] [PASSED] 60 VFs
[10:44:06] [PASSED] 61 VFs
[10:44:06] [PASSED] 62 VFs
[10:44:06] [PASSED] 63 VFs
[10:44:06] ==================== [PASSED] fair_ggtt ====================
[10:44:06] ======================== fair_vram ========================
[10:44:06] [PASSED] 1 VF
[10:44:06] [PASSED] 2 VFs
[10:44:06] [PASSED] 3 VFs
[10:44:06] [PASSED] 4 VFs
[10:44:06] [PASSED] 5 VFs
[10:44:06] [PASSED] 6 VFs
[10:44:06] [PASSED] 7 VFs
[10:44:06] [PASSED] 8 VFs
[10:44:06] [PASSED] 9 VFs
[10:44:06] [PASSED] 10 VFs
[10:44:06] [PASSED] 11 VFs
[10:44:06] [PASSED] 12 VFs
[10:44:06] [PASSED] 13 VFs
[10:44:06] [PASSED] 14 VFs
[10:44:06] [PASSED] 15 VFs
[10:44:06] [PASSED] 16 VFs
[10:44:06] [PASSED] 17 VFs
[10:44:06] [PASSED] 18 VFs
[10:44:06] [PASSED] 19 VFs
[10:44:06] [PASSED] 20 VFs
[10:44:06] [PASSED] 21 VFs
[10:44:06] [PASSED] 22 VFs
[10:44:06] [PASSED] 23 VFs
[10:44:06] [PASSED] 24 VFs
[10:44:06] [PASSED] 25 VFs
[10:44:06] [PASSED] 26 VFs
[10:44:06] [PASSED] 27 VFs
[10:44:06] [PASSED] 28 VFs
[10:44:06] [PASSED] 29 VFs
[10:44:06] [PASSED] 30 VFs
[10:44:06] [PASSED] 31 VFs
[10:44:06] [PASSED] 32 VFs
[10:44:06] [PASSED] 33 VFs
[10:44:06] [PASSED] 34 VFs
[10:44:06] [PASSED] 35 VFs
[10:44:06] [PASSED] 36 VFs
[10:44:06] [PASSED] 37 VFs
[10:44:06] [PASSED] 38 VFs
[10:44:06] [PASSED] 39 VFs
[10:44:06] [PASSED] 40 VFs
[10:44:06] [PASSED] 41 VFs
[10:44:06] [PASSED] 42 VFs
[10:44:06] [PASSED] 43 VFs
[10:44:06] [PASSED] 44 VFs
[10:44:06] [PASSED] 45 VFs
[10:44:06] [PASSED] 46 VFs
[10:44:06] [PASSED] 47 VFs
[10:44:06] [PASSED] 48 VFs
[10:44:06] [PASSED] 49 VFs
[10:44:06] [PASSED] 50 VFs
[10:44:06] [PASSED] 51 VFs
[10:44:06] [PASSED] 52 VFs
[10:44:06] [PASSED] 53 VFs
[10:44:06] [PASSED] 54 VFs
[10:44:06] [PASSED] 55 VFs
[10:44:06] [PASSED] 56 VFs
[10:44:06] [PASSED] 57 VFs
[10:44:06] [PASSED] 58 VFs
[10:44:06] [PASSED] 59 VFs
[10:44:06] [PASSED] 60 VFs
[10:44:06] [PASSED] 61 VFs
[10:44:06] [PASSED] 62 VFs
[10:44:06] [PASSED] 63 VFs
[10:44:06] ==================== [PASSED] fair_vram ====================
[10:44:06] ================== [PASSED] pf_gt_config ===================
[10:44:06] ===================== lmtt (1 subtest) =====================
[10:44:06] ======================== test_ops =========================
[10:44:06] [PASSED] 2-level
[10:44:06] [PASSED] multi-level
[10:44:06] ==================== [PASSED] test_ops =====================
[10:44:06] ====================== [PASSED] lmtt =======================
[10:44:06] ================= pf_service (11 subtests) =================
[10:44:06] [PASSED] pf_negotiate_any
[10:44:06] [PASSED] pf_negotiate_base_match
[10:44:06] [PASSED] pf_negotiate_base_newer
[10:44:06] [PASSED] pf_negotiate_base_next
[10:44:06] [SKIPPED] pf_negotiate_base_older
[10:44:06] [PASSED] pf_negotiate_base_prev
[10:44:06] [PASSED] pf_negotiate_latest_match
[10:44:06] [PASSED] pf_negotiate_latest_newer
[10:44:06] [PASSED] pf_negotiate_latest_next
[10:44:06] [SKIPPED] pf_negotiate_latest_older
[10:44:06] [SKIPPED] pf_negotiate_latest_prev
[10:44:06] =================== [PASSED] pf_service ====================
[10:44:06] ================= xe_guc_g2g (2 subtests) ==================
[10:44:06] ============== xe_live_guc_g2g_kunit_default ==============
[10:44:06] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[10:44:06] ============== xe_live_guc_g2g_kunit_allmem ===============
[10:44:06] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[10:44:06] =================== [SKIPPED] xe_guc_g2g ===================
[10:44:06] =================== xe_mocs (2 subtests) ===================
[10:44:06] ================ xe_live_mocs_kernel_kunit ================
[10:44:06] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[10:44:06] ================ xe_live_mocs_reset_kunit =================
[10:44:06] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[10:44:06] ==================== [SKIPPED] xe_mocs =====================
[10:44:06] ================= xe_migrate (2 subtests) ==================
[10:44:06] ================= xe_migrate_sanity_kunit =================
[10:44:06] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[10:44:06] ================== xe_validate_ccs_kunit ==================
[10:44:06] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[10:44:06] =================== [SKIPPED] xe_migrate ===================
[10:44:06] ================== xe_dma_buf (1 subtest) ==================
[10:44:06] ==================== xe_dma_buf_kunit =====================
[10:44:06] ================ [SKIPPED] xe_dma_buf_kunit ================
[10:44:06] =================== [SKIPPED] xe_dma_buf ===================
[10:44:06] ================= xe_bo_shrink (1 subtest) =================
[10:44:06] =================== xe_bo_shrink_kunit ====================
[10:44:06] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[10:44:06] ================== [SKIPPED] xe_bo_shrink ==================
[10:44:06] ==================== xe_bo (2 subtests) ====================
[10:44:06] ================== xe_ccs_migrate_kunit ===================
[10:44:06] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[10:44:06] ==================== xe_bo_evict_kunit ====================
[10:44:06] =============== [SKIPPED] xe_bo_evict_kunit ================
[10:44:06] ===================== [SKIPPED] xe_bo ======================
[10:44:06] ==================== args (13 subtests) ====================
[10:44:06] [PASSED] count_args_test
[10:44:06] [PASSED] call_args_example
[10:44:06] [PASSED] call_args_test
[10:44:06] [PASSED] drop_first_arg_example
[10:44:06] [PASSED] drop_first_arg_test
[10:44:06] [PASSED] first_arg_example
[10:44:06] [PASSED] first_arg_test
[10:44:06] [PASSED] last_arg_example
[10:44:06] [PASSED] last_arg_test
[10:44:06] [PASSED] pick_arg_example
[10:44:06] [PASSED] if_args_example
[10:44:06] [PASSED] if_args_test
[10:44:06] [PASSED] sep_comma_example
[10:44:06] ====================== [PASSED] args =======================
[10:44:06] =================== xe_pci (3 subtests) ====================
[10:44:06] ==================== check_graphics_ip ====================
[10:44:06] [PASSED] 12.00 Xe_LP
[10:44:06] [PASSED] 12.10 Xe_LP+
[10:44:06] [PASSED] 12.55 Xe_HPG
[10:44:06] [PASSED] 12.60 Xe_HPC
[10:44:06] [PASSED] 12.70 Xe_LPG
[10:44:06] [PASSED] 12.71 Xe_LPG
[10:44:06] [PASSED] 12.74 Xe_LPG+
[10:44:06] [PASSED] 20.01 Xe2_HPG
[10:44:06] [PASSED] 20.02 Xe2_HPG
[10:44:06] [PASSED] 20.04 Xe2_LPG
[10:44:06] [PASSED] 30.00 Xe3_LPG
[10:44:06] [PASSED] 30.01 Xe3_LPG
[10:44:06] [PASSED] 30.03 Xe3_LPG
[10:44:06] [PASSED] 30.04 Xe3_LPG
[10:44:06] [PASSED] 30.05 Xe3_LPG
[10:44:06] [PASSED] 35.10 Xe3p_LPG
[10:44:06] [PASSED] 35.11 Xe3p_XPC
[10:44:06] ================ [PASSED] check_graphics_ip ================
[10:44:06] ===================== check_media_ip ======================
[10:44:06] [PASSED] 12.00 Xe_M
[10:44:06] [PASSED] 12.55 Xe_HPM
[10:44:06] [PASSED] 13.00 Xe_LPM+
[10:44:06] [PASSED] 13.01 Xe2_HPM
[10:44:06] [PASSED] 20.00 Xe2_LPM
[10:44:06] [PASSED] 30.00 Xe3_LPM
[10:44:06] [PASSED] 30.02 Xe3_LPM
[10:44:06] [PASSED] 35.00 Xe3p_LPM
[10:44:06] [PASSED] 35.03 Xe3p_HPM
[10:44:06] ================= [PASSED] check_media_ip ==================
[10:44:06] =================== check_platform_desc ===================
[10:44:06] [PASSED] 0x9A60 (TIGERLAKE)
[10:44:06] [PASSED] 0x9A68 (TIGERLAKE)
[10:44:06] [PASSED] 0x9A70 (TIGERLAKE)
[10:44:06] [PASSED] 0x9A40 (TIGERLAKE)
[10:44:06] [PASSED] 0x9A49 (TIGERLAKE)
[10:44:06] [PASSED] 0x9A59 (TIGERLAKE)
[10:44:06] [PASSED] 0x9A78 (TIGERLAKE)
[10:44:06] [PASSED] 0x9AC0 (TIGERLAKE)
[10:44:06] [PASSED] 0x9AC9 (TIGERLAKE)
[10:44:06] [PASSED] 0x9AD9 (TIGERLAKE)
[10:44:06] [PASSED] 0x9AF8 (TIGERLAKE)
[10:44:06] [PASSED] 0x4C80 (ROCKETLAKE)
[10:44:06] [PASSED] 0x4C8A (ROCKETLAKE)
[10:44:06] [PASSED] 0x4C8B (ROCKETLAKE)
[10:44:06] [PASSED] 0x4C8C (ROCKETLAKE)
[10:44:06] [PASSED] 0x4C90 (ROCKETLAKE)
[10:44:06] [PASSED] 0x4C9A (ROCKETLAKE)
[10:44:06] [PASSED] 0x4680 (ALDERLAKE_S)
[10:44:06] [PASSED] 0x4682 (ALDERLAKE_S)
[10:44:06] [PASSED] 0x4688 (ALDERLAKE_S)
[10:44:06] [PASSED] 0x468A (ALDERLAKE_S)
[10:44:06] [PASSED] 0x468B (ALDERLAKE_S)
[10:44:06] [PASSED] 0x4690 (ALDERLAKE_S)
[10:44:06] [PASSED] 0x4692 (ALDERLAKE_S)
[10:44:06] [PASSED] 0x4693 (ALDERLAKE_S)
[10:44:06] [PASSED] 0x46A0 (ALDERLAKE_P)
[10:44:06] [PASSED] 0x46A1 (ALDERLAKE_P)
[10:44:06] [PASSED] 0x46A2 (ALDERLAKE_P)
[10:44:06] [PASSED] 0x46A3 (ALDERLAKE_P)
[10:44:06] [PASSED] 0x46A6 (ALDERLAKE_P)
[10:44:06] [PASSED] 0x46A8 (ALDERLAKE_P)
[10:44:06] [PASSED] 0x46AA (ALDERLAKE_P)
[10:44:06] [PASSED] 0x462A (ALDERLAKE_P)
[10:44:06] [PASSED] 0x4626 (ALDERLAKE_P)
[10:44:06] [PASSED] 0x4628 (ALDERLAKE_P)
[10:44:06] [PASSED] 0x46B0 (ALDERLAKE_P)
[10:44:06] [PASSED] 0x46B1 (ALDERLAKE_P)
[10:44:06] [PASSED] 0x46B2 (ALDERLAKE_P)
[10:44:06] [PASSED] 0x46B3 (ALDERLAKE_P)
[10:44:06] [PASSED] 0x46C0 (ALDERLAKE_P)
[10:44:06] [PASSED] 0x46C1 (ALDERLAKE_P)
[10:44:06] [PASSED] 0x46C2 (ALDERLAKE_P)
[10:44:06] [PASSED] 0x46C3 (ALDERLAKE_P)
[10:44:06] [PASSED] 0x46D0 (ALDERLAKE_N)
[10:44:06] [PASSED] 0x46D1 (ALDERLAKE_N)
[10:44:06] [PASSED] 0x46D2 (ALDERLAKE_N)
[10:44:06] [PASSED] 0x46D3 (ALDERLAKE_N)
[10:44:06] [PASSED] 0x46D4 (ALDERLAKE_N)
[10:44:06] [PASSED] 0xA721 (ALDERLAKE_P)
[10:44:06] [PASSED] 0xA7A1 (ALDERLAKE_P)
[10:44:06] [PASSED] 0xA7A9 (ALDERLAKE_P)
[10:44:06] [PASSED] 0xA7AC (ALDERLAKE_P)
[10:44:06] [PASSED] 0xA7AD (ALDERLAKE_P)
[10:44:06] [PASSED] 0xA720 (ALDERLAKE_P)
[10:44:06] [PASSED] 0xA7A0 (ALDERLAKE_P)
[10:44:06] [PASSED] 0xA7A8 (ALDERLAKE_P)
[10:44:06] [PASSED] 0xA7AA (ALDERLAKE_P)
[10:44:06] [PASSED] 0xA7AB (ALDERLAKE_P)
[10:44:06] [PASSED] 0xA780 (ALDERLAKE_S)
[10:44:06] [PASSED] 0xA781 (ALDERLAKE_S)
[10:44:06] [PASSED] 0xA782 (ALDERLAKE_S)
[10:44:06] [PASSED] 0xA783 (ALDERLAKE_S)
[10:44:06] [PASSED] 0xA788 (ALDERLAKE_S)
[10:44:06] [PASSED] 0xA789 (ALDERLAKE_S)
[10:44:06] [PASSED] 0xA78A (ALDERLAKE_S)
[10:44:06] [PASSED] 0xA78B (ALDERLAKE_S)
[10:44:06] [PASSED] 0x4905 (DG1)
[10:44:06] [PASSED] 0x4906 (DG1)
[10:44:06] [PASSED] 0x4907 (DG1)
[10:44:06] [PASSED] 0x4908 (DG1)
[10:44:06] [PASSED] 0x4909 (DG1)
[10:44:06] [PASSED] 0x56C0 (DG2)
[10:44:06] [PASSED] 0x56C2 (DG2)
[10:44:06] [PASSED] 0x56C1 (DG2)
[10:44:06] [PASSED] 0x7D51 (METEORLAKE)
[10:44:06] [PASSED] 0x7DD1 (METEORLAKE)
[10:44:06] [PASSED] 0x7D41 (METEORLAKE)
[10:44:06] [PASSED] 0x7D67 (METEORLAKE)
[10:44:06] [PASSED] 0xB640 (METEORLAKE)
[10:44:06] [PASSED] 0x56A0 (DG2)
[10:44:06] [PASSED] 0x56A1 (DG2)
[10:44:06] [PASSED] 0x56A2 (DG2)
[10:44:06] [PASSED] 0x56BE (DG2)
[10:44:06] [PASSED] 0x56BF (DG2)
[10:44:06] [PASSED] 0x5690 (DG2)
[10:44:06] [PASSED] 0x5691 (DG2)
[10:44:06] [PASSED] 0x5692 (DG2)
[10:44:06] [PASSED] 0x56A5 (DG2)
[10:44:06] [PASSED] 0x56A6 (DG2)
[10:44:06] [PASSED] 0x56B0 (DG2)
[10:44:06] [PASSED] 0x56B1 (DG2)
[10:44:06] [PASSED] 0x56BA (DG2)
[10:44:06] [PASSED] 0x56BB (DG2)
[10:44:06] [PASSED] 0x56BC (DG2)
[10:44:06] [PASSED] 0x56BD (DG2)
[10:44:06] [PASSED] 0x5693 (DG2)
[10:44:06] [PASSED] 0x5694 (DG2)
[10:44:06] [PASSED] 0x5695 (DG2)
[10:44:06] [PASSED] 0x56A3 (DG2)
[10:44:06] [PASSED] 0x56A4 (DG2)
[10:44:06] [PASSED] 0x56B2 (DG2)
[10:44:06] [PASSED] 0x56B3 (DG2)
[10:44:06] [PASSED] 0x5696 (DG2)
[10:44:06] [PASSED] 0x5697 (DG2)
[10:44:06] [PASSED] 0xB69 (PVC)
[10:44:06] [PASSED] 0xB6E (PVC)
[10:44:06] [PASSED] 0xBD4 (PVC)
[10:44:06] [PASSED] 0xBD5 (PVC)
[10:44:06] [PASSED] 0xBD6 (PVC)
[10:44:06] [PASSED] 0xBD7 (PVC)
[10:44:06] [PASSED] 0xBD8 (PVC)
[10:44:06] [PASSED] 0xBD9 (PVC)
[10:44:06] [PASSED] 0xBDA (PVC)
[10:44:06] [PASSED] 0xBDB (PVC)
[10:44:06] [PASSED] 0xBE0 (PVC)
[10:44:06] [PASSED] 0xBE1 (PVC)
[10:44:06] [PASSED] 0xBE5 (PVC)
[10:44:06] [PASSED] 0x7D40 (METEORLAKE)
[10:44:06] [PASSED] 0x7D45 (METEORLAKE)
[10:44:06] [PASSED] 0x7D55 (METEORLAKE)
[10:44:06] [PASSED] 0x7D60 (METEORLAKE)
[10:44:06] [PASSED] 0x7DD5 (METEORLAKE)
[10:44:06] [PASSED] 0x6420 (LUNARLAKE)
[10:44:06] [PASSED] 0x64A0 (LUNARLAKE)
[10:44:06] [PASSED] 0x64B0 (LUNARLAKE)
[10:44:06] [PASSED] 0xE202 (BATTLEMAGE)
[10:44:06] [PASSED] 0xE209 (BATTLEMAGE)
[10:44:06] [PASSED] 0xE20B (BATTLEMAGE)
[10:44:06] [PASSED] 0xE20C (BATTLEMAGE)
[10:44:06] [PASSED] 0xE20D (BATTLEMAGE)
[10:44:06] [PASSED] 0xE210 (BATTLEMAGE)
[10:44:06] [PASSED] 0xE211 (BATTLEMAGE)
[10:44:06] [PASSED] 0xE212 (BATTLEMAGE)
[10:44:06] [PASSED] 0xE216 (BATTLEMAGE)
[10:44:06] [PASSED] 0xE220 (BATTLEMAGE)
[10:44:06] [PASSED] 0xE221 (BATTLEMAGE)
[10:44:06] [PASSED] 0xE222 (BATTLEMAGE)
[10:44:06] [PASSED] 0xE223 (BATTLEMAGE)
[10:44:06] [PASSED] 0xB080 (PANTHERLAKE)
[10:44:06] [PASSED] 0xB081 (PANTHERLAKE)
[10:44:06] [PASSED] 0xB082 (PANTHERLAKE)
[10:44:06] [PASSED] 0xB083 (PANTHERLAKE)
[10:44:06] [PASSED] 0xB084 (PANTHERLAKE)
[10:44:06] [PASSED] 0xB085 (PANTHERLAKE)
[10:44:06] [PASSED] 0xB086 (PANTHERLAKE)
[10:44:06] [PASSED] 0xB087 (PANTHERLAKE)
[10:44:06] [PASSED] 0xB08F (PANTHERLAKE)
[10:44:06] [PASSED] 0xB090 (PANTHERLAKE)
[10:44:06] [PASSED] 0xB0A0 (PANTHERLAKE)
[10:44:06] [PASSED] 0xB0B0 (PANTHERLAKE)
[10:44:06] [PASSED] 0xFD80 (PANTHERLAKE)
[10:44:06] [PASSED] 0xFD81 (PANTHERLAKE)
[10:44:06] [PASSED] 0xD740 (NOVALAKE_S)
[10:44:06] [PASSED] 0xD741 (NOVALAKE_S)
[10:44:06] [PASSED] 0xD742 (NOVALAKE_S)
[10:44:06] [PASSED] 0xD743 (NOVALAKE_S)
[10:44:06] [PASSED] 0xD744 (NOVALAKE_S)
[10:44:06] [PASSED] 0xD745 (NOVALAKE_S)
[10:44:06] [PASSED] 0x674C (CRESCENTISLAND)
[10:44:06] [PASSED] 0xD750 (NOVALAKE_P)
[10:44:06] [PASSED] 0xD751 (NOVALAKE_P)
[10:44:06] [PASSED] 0xD752 (NOVALAKE_P)
[10:44:06] [PASSED] 0xD753 (NOVALAKE_P)
[10:44:06] [PASSED] 0xD754 (NOVALAKE_P)
[10:44:06] [PASSED] 0xD755 (NOVALAKE_P)
[10:44:06] [PASSED] 0xD756 (NOVALAKE_P)
[10:44:06] [PASSED] 0xD757 (NOVALAKE_P)
[10:44:06] [PASSED] 0xD75F (NOVALAKE_P)
[10:44:06] =============== [PASSED] check_platform_desc ===============
[10:44:06] ===================== [PASSED] xe_pci ======================
[10:44:06] =================== xe_rtp (2 subtests) ====================
[10:44:06] =============== xe_rtp_process_to_sr_tests ================
[10:44:06] [PASSED] coalesce-same-reg
[10:44:06] [PASSED] no-match-no-add
[10:44:06] [PASSED] match-or
[10:44:06] [PASSED] match-or-xfail
[10:44:06] [PASSED] no-match-no-add-multiple-rules
[10:44:06] [PASSED] two-regs-two-entries
[10:44:06] [PASSED] clr-one-set-other
[10:44:06] [PASSED] set-field
[10:44:06] [PASSED] conflict-duplicate
stty: 'standard input': Inappropriate ioctl for device
[10:44:06] [PASSED] conflict-not-disjoint
[10:44:06] [PASSED] conflict-reg-type
[10:44:06] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[10:44:06] ================== xe_rtp_process_tests ===================
[10:44:06] [PASSED] active1
[10:44:06] [PASSED] active2
[10:44:06] [PASSED] active-inactive
[10:44:06] [PASSED] inactive-active
[10:44:06] [PASSED] inactive-1st_or_active-inactive
[10:44:06] [PASSED] inactive-2nd_or_active-inactive
[10:44:06] [PASSED] inactive-last_or_active-inactive
[10:44:06] [PASSED] inactive-no_or_active-inactive
[10:44:06] ============== [PASSED] xe_rtp_process_tests ===============
[10:44:06] ===================== [PASSED] xe_rtp ======================
[10:44:06] ==================== xe_wa (1 subtest) =====================
[10:44:06] ======================== xe_wa_gt =========================
[10:44:06] [PASSED] TIGERLAKE B0
[10:44:06] [PASSED] DG1 A0
[10:44:06] [PASSED] DG1 B0
[10:44:06] [PASSED] ALDERLAKE_S A0
[10:44:06] [PASSED] ALDERLAKE_S B0
[10:44:06] [PASSED] ALDERLAKE_S C0
[10:44:06] [PASSED] ALDERLAKE_S D0
[10:44:06] [PASSED] ALDERLAKE_P A0
[10:44:06] [PASSED] ALDERLAKE_P B0
[10:44:06] [PASSED] ALDERLAKE_P C0
[10:44:06] [PASSED] ALDERLAKE_S RPLS D0
[10:44:06] [PASSED] ALDERLAKE_P RPLU E0
[10:44:06] [PASSED] DG2 G10 C0
[10:44:06] [PASSED] DG2 G11 B1
[10:44:06] [PASSED] DG2 G12 A1
[10:44:06] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[10:44:06] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[10:44:06] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[10:44:06] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[10:44:06] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[10:44:06] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[10:44:06] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[10:44:06] ==================== [PASSED] xe_wa_gt =====================
[10:44:06] ====================== [PASSED] xe_wa ======================
[10:44:06] ============================================================
[10:44:06] Testing complete. Ran 597 tests: passed: 579, skipped: 18
[10:44:06] Elapsed time: 42.763s total, 4.218s configuring, 37.424s building, 1.072s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[10:44:06] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[10:44:09] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[10:44:56] Starting KUnit Kernel (1/1)...
[10:44:56] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[10:44:56] ============ drm_test_pick_cmdline (2 subtests) ============
[10:44:56] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[10:44:56] =============== drm_test_pick_cmdline_named ===============
[10:44:56] [PASSED] NTSC
[10:44:56] [PASSED] NTSC-J
[10:44:56] [PASSED] PAL
[10:44:56] [PASSED] PAL-M
[10:44:56] =========== [PASSED] drm_test_pick_cmdline_named ===========
[10:44:56] ============== [PASSED] drm_test_pick_cmdline ==============
[10:44:56] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[10:44:56] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[10:44:56] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[10:44:56] =========== drm_validate_clone_mode (2 subtests) ===========
[10:44:56] ============== drm_test_check_in_clone_mode ===============
[10:44:56] [PASSED] in_clone_mode
[10:44:56] [PASSED] not_in_clone_mode
[10:44:56] ========== [PASSED] drm_test_check_in_clone_mode ===========
[10:44:56] =============== drm_test_check_valid_clones ===============
[10:44:56] [PASSED] not_in_clone_mode
[10:44:56] [PASSED] valid_clone
[10:44:56] [PASSED] invalid_clone
[10:44:56] =========== [PASSED] drm_test_check_valid_clones ===========
[10:44:56] ============= [PASSED] drm_validate_clone_mode =============
[10:44:56] ============= drm_validate_modeset (1 subtest) =============
[10:44:56] [PASSED] drm_test_check_connector_changed_modeset
[10:44:56] ============== [PASSED] drm_validate_modeset ===============
[10:44:56] ====== drm_test_bridge_get_current_state (2 subtests) ======
[10:44:56] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[10:44:56] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[10:44:56] ======== [PASSED] drm_test_bridge_get_current_state ========
[10:44:56] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[10:44:56] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[10:44:56] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[10:44:56] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[10:44:56] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[10:44:56] ============== drm_bridge_alloc (2 subtests) ===============
[10:44:56] [PASSED] drm_test_drm_bridge_alloc_basic
[10:44:56] [PASSED] drm_test_drm_bridge_alloc_get_put
[10:44:56] ================ [PASSED] drm_bridge_alloc =================
[10:44:56] ============= drm_cmdline_parser (40 subtests) =============
[10:44:56] [PASSED] drm_test_cmdline_force_d_only
[10:44:56] [PASSED] drm_test_cmdline_force_D_only_dvi
[10:44:56] [PASSED] drm_test_cmdline_force_D_only_hdmi
[10:44:56] [PASSED] drm_test_cmdline_force_D_only_not_digital
[10:44:56] [PASSED] drm_test_cmdline_force_e_only
[10:44:56] [PASSED] drm_test_cmdline_res
[10:44:56] [PASSED] drm_test_cmdline_res_vesa
[10:44:56] [PASSED] drm_test_cmdline_res_vesa_rblank
[10:44:56] [PASSED] drm_test_cmdline_res_rblank
[10:44:56] [PASSED] drm_test_cmdline_res_bpp
[10:44:56] [PASSED] drm_test_cmdline_res_refresh
[10:44:56] [PASSED] drm_test_cmdline_res_bpp_refresh
[10:44:56] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[10:44:56] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[10:44:56] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[10:44:56] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[10:44:56] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[10:44:56] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[10:44:56] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[10:44:56] [PASSED] drm_test_cmdline_res_margins_force_on
[10:44:56] [PASSED] drm_test_cmdline_res_vesa_margins
[10:44:56] [PASSED] drm_test_cmdline_name
[10:44:56] [PASSED] drm_test_cmdline_name_bpp
[10:44:56] [PASSED] drm_test_cmdline_name_option
[10:44:56] [PASSED] drm_test_cmdline_name_bpp_option
[10:44:56] [PASSED] drm_test_cmdline_rotate_0
[10:44:56] [PASSED] drm_test_cmdline_rotate_90
[10:44:56] [PASSED] drm_test_cmdline_rotate_180
[10:44:56] [PASSED] drm_test_cmdline_rotate_270
[10:44:56] [PASSED] drm_test_cmdline_hmirror
[10:44:56] [PASSED] drm_test_cmdline_vmirror
[10:44:56] [PASSED] drm_test_cmdline_margin_options
[10:44:56] [PASSED] drm_test_cmdline_multiple_options
[10:44:56] [PASSED] drm_test_cmdline_bpp_extra_and_option
[10:44:56] [PASSED] drm_test_cmdline_extra_and_option
[10:44:56] [PASSED] drm_test_cmdline_freestanding_options
[10:44:56] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[10:44:56] [PASSED] drm_test_cmdline_panel_orientation
[10:44:56] ================ drm_test_cmdline_invalid =================
[10:44:56] [PASSED] margin_only
[10:44:56] [PASSED] interlace_only
[10:44:56] [PASSED] res_missing_x
[10:44:56] [PASSED] res_missing_y
[10:44:56] [PASSED] res_bad_y
[10:44:56] [PASSED] res_missing_y_bpp
[10:44:56] [PASSED] res_bad_bpp
[10:44:56] [PASSED] res_bad_refresh
[10:44:56] [PASSED] res_bpp_refresh_force_on_off
[10:44:56] [PASSED] res_invalid_mode
[10:44:56] [PASSED] res_bpp_wrong_place_mode
[10:44:56] [PASSED] name_bpp_refresh
[10:44:56] [PASSED] name_refresh
[10:44:56] [PASSED] name_refresh_wrong_mode
[10:44:56] [PASSED] name_refresh_invalid_mode
[10:44:56] [PASSED] rotate_multiple
[10:44:56] [PASSED] rotate_invalid_val
[10:44:56] [PASSED] rotate_truncated
[10:44:56] [PASSED] invalid_option
[10:44:56] [PASSED] invalid_tv_option
[10:44:56] [PASSED] truncated_tv_option
[10:44:56] ============ [PASSED] drm_test_cmdline_invalid =============
[10:44:56] =============== drm_test_cmdline_tv_options ===============
[10:44:56] [PASSED] NTSC
[10:44:56] [PASSED] NTSC_443
[10:44:56] [PASSED] NTSC_J
[10:44:56] [PASSED] PAL
[10:44:56] [PASSED] PAL_M
[10:44:56] [PASSED] PAL_N
[10:44:56] [PASSED] SECAM
[10:44:56] [PASSED] MONO_525
[10:44:56] [PASSED] MONO_625
[10:44:56] =========== [PASSED] drm_test_cmdline_tv_options ===========
[10:44:56] =============== [PASSED] drm_cmdline_parser ================
[10:44:56] ========== drmm_connector_hdmi_init (20 subtests) ==========
[10:44:56] [PASSED] drm_test_connector_hdmi_init_valid
[10:44:56] [PASSED] drm_test_connector_hdmi_init_bpc_8
[10:44:56] [PASSED] drm_test_connector_hdmi_init_bpc_10
[10:44:56] [PASSED] drm_test_connector_hdmi_init_bpc_12
[10:44:56] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[10:44:56] [PASSED] drm_test_connector_hdmi_init_bpc_null
[10:44:56] [PASSED] drm_test_connector_hdmi_init_formats_empty
[10:44:56] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[10:44:56] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[10:44:56] [PASSED] supported_formats=0x9 yuv420_allowed=1
[10:44:56] [PASSED] supported_formats=0x9 yuv420_allowed=0
[10:44:56] [PASSED] supported_formats=0x3 yuv420_allowed=1
[10:44:56] [PASSED] supported_formats=0x3 yuv420_allowed=0
[10:44:56] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[10:44:56] [PASSED] drm_test_connector_hdmi_init_null_ddc
[10:44:56] [PASSED] drm_test_connector_hdmi_init_null_product
[10:44:56] [PASSED] drm_test_connector_hdmi_init_null_vendor
[10:44:56] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[10:44:56] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[10:44:56] [PASSED] drm_test_connector_hdmi_init_product_valid
[10:44:56] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[10:44:56] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[10:44:56] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[10:44:56] ========= drm_test_connector_hdmi_init_type_valid =========
[10:44:56] [PASSED] HDMI-A
[10:44:56] [PASSED] HDMI-B
[10:44:56] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[10:44:56] ======== drm_test_connector_hdmi_init_type_invalid ========
[10:44:56] [PASSED] Unknown
[10:44:56] [PASSED] VGA
[10:44:56] [PASSED] DVI-I
[10:44:56] [PASSED] DVI-D
[10:44:56] [PASSED] DVI-A
[10:44:56] [PASSED] Composite
[10:44:56] [PASSED] SVIDEO
[10:44:56] [PASSED] LVDS
[10:44:56] [PASSED] Component
[10:44:56] [PASSED] DIN
[10:44:56] [PASSED] DP
[10:44:56] [PASSED] TV
[10:44:56] [PASSED] eDP
[10:44:56] [PASSED] Virtual
[10:44:56] [PASSED] DSI
[10:44:56] [PASSED] DPI
[10:44:56] [PASSED] Writeback
[10:44:56] [PASSED] SPI
[10:44:56] [PASSED] USB
[10:44:56] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[10:44:56] ============ [PASSED] drmm_connector_hdmi_init =============
[10:44:56] ============= drmm_connector_init (3 subtests) =============
[10:44:56] [PASSED] drm_test_drmm_connector_init
[10:44:56] [PASSED] drm_test_drmm_connector_init_null_ddc
[10:44:56] ========= drm_test_drmm_connector_init_type_valid =========
[10:44:56] [PASSED] Unknown
[10:44:56] [PASSED] VGA
[10:44:56] [PASSED] DVI-I
[10:44:56] [PASSED] DVI-D
[10:44:56] [PASSED] DVI-A
[10:44:56] [PASSED] Composite
[10:44:56] [PASSED] SVIDEO
[10:44:56] [PASSED] LVDS
[10:44:56] [PASSED] Component
[10:44:56] [PASSED] DIN
[10:44:56] [PASSED] DP
[10:44:56] [PASSED] HDMI-A
[10:44:56] [PASSED] HDMI-B
[10:44:56] [PASSED] TV
[10:44:56] [PASSED] eDP
[10:44:56] [PASSED] Virtual
[10:44:56] [PASSED] DSI
[10:44:56] [PASSED] DPI
[10:44:56] [PASSED] Writeback
[10:44:56] [PASSED] SPI
[10:44:56] [PASSED] USB
[10:44:56] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[10:44:56] =============== [PASSED] drmm_connector_init ===============
[10:44:56] ========= drm_connector_dynamic_init (6 subtests) ==========
[10:44:56] [PASSED] drm_test_drm_connector_dynamic_init
[10:44:56] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[10:44:56] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[10:44:56] [PASSED] drm_test_drm_connector_dynamic_init_properties
[10:44:56] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[10:44:56] [PASSED] Unknown
[10:44:56] [PASSED] VGA
[10:44:56] [PASSED] DVI-I
[10:44:56] [PASSED] DVI-D
[10:44:56] [PASSED] DVI-A
[10:44:56] [PASSED] Composite
[10:44:56] [PASSED] SVIDEO
[10:44:56] [PASSED] LVDS
[10:44:56] [PASSED] Component
[10:44:56] [PASSED] DIN
[10:44:56] [PASSED] DP
[10:44:56] [PASSED] HDMI-A
[10:44:56] [PASSED] HDMI-B
[10:44:56] [PASSED] TV
[10:44:56] [PASSED] eDP
[10:44:56] [PASSED] Virtual
[10:44:56] [PASSED] DSI
[10:44:56] [PASSED] DPI
[10:44:56] [PASSED] Writeback
[10:44:56] [PASSED] SPI
[10:44:56] [PASSED] USB
[10:44:56] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[10:44:56] ======== drm_test_drm_connector_dynamic_init_name =========
[10:44:56] [PASSED] Unknown
[10:44:56] [PASSED] VGA
[10:44:56] [PASSED] DVI-I
[10:44:56] [PASSED] DVI-D
[10:44:56] [PASSED] DVI-A
[10:44:56] [PASSED] Composite
[10:44:56] [PASSED] SVIDEO
[10:44:56] [PASSED] LVDS
[10:44:56] [PASSED] Component
[10:44:56] [PASSED] DIN
[10:44:56] [PASSED] DP
[10:44:56] [PASSED] HDMI-A
[10:44:56] [PASSED] HDMI-B
[10:44:56] [PASSED] TV
[10:44:56] [PASSED] eDP
[10:44:56] [PASSED] Virtual
[10:44:56] [PASSED] DSI
[10:44:56] [PASSED] DPI
[10:44:56] [PASSED] Writeback
[10:44:56] [PASSED] SPI
[10:44:56] [PASSED] USB
[10:44:56] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[10:44:56] =========== [PASSED] drm_connector_dynamic_init ============
[10:44:56] ==== drm_connector_dynamic_register_early (4 subtests) =====
[10:44:56] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[10:44:56] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[10:44:56] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[10:44:56] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[10:44:56] ====== [PASSED] drm_connector_dynamic_register_early =======
[10:44:56] ======= drm_connector_dynamic_register (7 subtests) ========
[10:44:56] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[10:44:56] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[10:44:56] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[10:44:56] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[10:44:56] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[10:44:56] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[10:44:56] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[10:44:56] ========= [PASSED] drm_connector_dynamic_register ==========
[10:44:56] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[10:44:56] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[10:44:56] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[10:44:56] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[10:44:56] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[10:44:56] ========== drm_test_get_tv_mode_from_name_valid ===========
[10:44:56] [PASSED] NTSC
[10:44:56] [PASSED] NTSC-443
[10:44:56] [PASSED] NTSC-J
[10:44:56] [PASSED] PAL
[10:44:56] [PASSED] PAL-M
[10:44:56] [PASSED] PAL-N
[10:44:56] [PASSED] SECAM
[10:44:56] [PASSED] Mono
[10:44:56] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[10:44:56] [PASSED] drm_test_get_tv_mode_from_name_truncated
[10:44:56] ============ [PASSED] drm_get_tv_mode_from_name ============
[10:44:56] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[10:44:56] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[10:44:56] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[10:44:56] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[10:44:56] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[10:44:56] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[10:44:56] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[10:44:56] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[10:44:56] [PASSED] VIC 96
[10:44:56] [PASSED] VIC 97
[10:44:56] [PASSED] VIC 101
[10:44:56] [PASSED] VIC 102
[10:44:56] [PASSED] VIC 106
[10:44:56] [PASSED] VIC 107
[10:44:56] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[10:44:56] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[10:44:56] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[10:44:56] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[10:44:56] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[10:44:56] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[10:44:56] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[10:44:56] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[10:44:56] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[10:44:56] [PASSED] Automatic
[10:44:56] [PASSED] Full
[10:44:56] [PASSED] Limited 16:235
[10:44:56] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[10:44:56] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[10:44:56] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[10:44:56] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[10:44:56] === drm_test_drm_hdmi_connector_get_output_format_name ====
[10:44:56] [PASSED] RGB
[10:44:56] [PASSED] YUV 4:2:0
[10:44:56] [PASSED] YUV 4:2:2
[10:44:56] [PASSED] YUV 4:4:4
[10:44:56] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[10:44:56] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[10:44:56] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[10:44:56] ============= drm_damage_helper (21 subtests) ==============
[10:44:56] [PASSED] drm_test_damage_iter_no_damage
[10:44:56] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[10:44:56] [PASSED] drm_test_damage_iter_no_damage_src_moved
[10:44:56] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[10:44:56] [PASSED] drm_test_damage_iter_no_damage_not_visible
[10:44:56] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[10:44:56] [PASSED] drm_test_damage_iter_no_damage_no_fb
[10:44:56] [PASSED] drm_test_damage_iter_simple_damage
[10:44:56] [PASSED] drm_test_damage_iter_single_damage
[10:44:56] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[10:44:56] [PASSED] drm_test_damage_iter_single_damage_outside_src
[10:44:56] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[10:44:56] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[10:44:56] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[10:44:56] [PASSED] drm_test_damage_iter_single_damage_src_moved
[10:44:56] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[10:44:56] [PASSED] drm_test_damage_iter_damage
[10:44:56] [PASSED] drm_test_damage_iter_damage_one_intersect
[10:44:56] [PASSED] drm_test_damage_iter_damage_one_outside
[10:44:56] [PASSED] drm_test_damage_iter_damage_src_moved
[10:44:56] [PASSED] drm_test_damage_iter_damage_not_visible
[10:44:56] ================ [PASSED] drm_damage_helper ================
[10:44:56] ============== drm_dp_mst_helper (3 subtests) ==============
[10:44:56] ============== drm_test_dp_mst_calc_pbn_mode ==============
[10:44:56] [PASSED] Clock 154000 BPP 30 DSC disabled
[10:44:56] [PASSED] Clock 234000 BPP 30 DSC disabled
[10:44:56] [PASSED] Clock 297000 BPP 24 DSC disabled
[10:44:56] [PASSED] Clock 332880 BPP 24 DSC enabled
[10:44:56] [PASSED] Clock 324540 BPP 24 DSC enabled
[10:44:56] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[10:44:56] ============== drm_test_dp_mst_calc_pbn_div ===============
[10:44:56] [PASSED] Link rate 2000000 lane count 4
[10:44:56] [PASSED] Link rate 2000000 lane count 2
[10:44:56] [PASSED] Link rate 2000000 lane count 1
[10:44:56] [PASSED] Link rate 1350000 lane count 4
[10:44:56] [PASSED] Link rate 1350000 lane count 2
[10:44:56] [PASSED] Link rate 1350000 lane count 1
[10:44:56] [PASSED] Link rate 1000000 lane count 4
[10:44:56] [PASSED] Link rate 1000000 lane count 2
[10:44:56] [PASSED] Link rate 1000000 lane count 1
[10:44:56] [PASSED] Link rate 810000 lane count 4
[10:44:56] [PASSED] Link rate 810000 lane count 2
[10:44:56] [PASSED] Link rate 810000 lane count 1
[10:44:56] [PASSED] Link rate 540000 lane count 4
[10:44:56] [PASSED] Link rate 540000 lane count 2
[10:44:56] [PASSED] Link rate 540000 lane count 1
[10:44:56] [PASSED] Link rate 270000 lane count 4
[10:44:56] [PASSED] Link rate 270000 lane count 2
[10:44:56] [PASSED] Link rate 270000 lane count 1
[10:44:56] [PASSED] Link rate 162000 lane count 4
[10:44:56] [PASSED] Link rate 162000 lane count 2
[10:44:56] [PASSED] Link rate 162000 lane count 1
[10:44:56] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[10:44:56] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[10:44:56] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[10:44:56] [PASSED] DP_POWER_UP_PHY with port number
[10:44:56] [PASSED] DP_POWER_DOWN_PHY with port number
[10:44:56] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[10:44:56] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[10:44:56] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[10:44:56] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[10:44:56] [PASSED] DP_QUERY_PAYLOAD with port number
[10:44:56] [PASSED] DP_QUERY_PAYLOAD with VCPI
[10:44:56] [PASSED] DP_REMOTE_DPCD_READ with port number
[10:44:56] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[10:44:56] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[10:44:56] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[10:44:56] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[10:44:56] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[10:44:56] [PASSED] DP_REMOTE_I2C_READ with port number
[10:44:56] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[10:44:56] [PASSED] DP_REMOTE_I2C_READ with transactions array
[10:44:56] [PASSED] DP_REMOTE_I2C_WRITE with port number
[10:44:56] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[10:44:56] [PASSED] DP_REMOTE_I2C_WRITE with data array
[10:44:56] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[10:44:56] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[10:44:56] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[10:44:56] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[10:44:56] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[10:44:56] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[10:44:56] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[10:44:56] ================ [PASSED] drm_dp_mst_helper ================
[10:44:56] ================== drm_exec (7 subtests) ===================
[10:44:56] [PASSED] sanitycheck
[10:44:56] [PASSED] test_lock
[10:44:56] [PASSED] test_lock_unlock
[10:44:56] [PASSED] test_duplicates
[10:44:56] [PASSED] test_prepare
[10:44:56] [PASSED] test_prepare_array
[10:44:56] [PASSED] test_multiple_loops
[10:44:56] ==================== [PASSED] drm_exec =====================
[10:44:56] =========== drm_format_helper_test (17 subtests) ===========
[10:44:56] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[10:44:56] [PASSED] single_pixel_source_buffer
[10:44:56] [PASSED] single_pixel_clip_rectangle
[10:44:56] [PASSED] well_known_colors
[10:44:56] [PASSED] destination_pitch
[10:44:56] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[10:44:56] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[10:44:56] [PASSED] single_pixel_source_buffer
[10:44:56] [PASSED] single_pixel_clip_rectangle
[10:44:56] [PASSED] well_known_colors
[10:44:56] [PASSED] destination_pitch
[10:44:56] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[10:44:56] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[10:44:56] [PASSED] single_pixel_source_buffer
[10:44:56] [PASSED] single_pixel_clip_rectangle
[10:44:56] [PASSED] well_known_colors
[10:44:56] [PASSED] destination_pitch
[10:44:56] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[10:44:56] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[10:44:56] [PASSED] single_pixel_source_buffer
[10:44:56] [PASSED] single_pixel_clip_rectangle
[10:44:56] [PASSED] well_known_colors
[10:44:56] [PASSED] destination_pitch
[10:44:56] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[10:44:56] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[10:44:56] [PASSED] single_pixel_source_buffer
[10:44:56] [PASSED] single_pixel_clip_rectangle
[10:44:56] [PASSED] well_known_colors
[10:44:56] [PASSED] destination_pitch
[10:44:56] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[10:44:56] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[10:44:56] [PASSED] single_pixel_source_buffer
[10:44:56] [PASSED] single_pixel_clip_rectangle
[10:44:56] [PASSED] well_known_colors
[10:44:56] [PASSED] destination_pitch
[10:44:56] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[10:44:56] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[10:44:56] [PASSED] single_pixel_source_buffer
[10:44:56] [PASSED] single_pixel_clip_rectangle
[10:44:56] [PASSED] well_known_colors
[10:44:56] [PASSED] destination_pitch
[10:44:56] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[10:44:56] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[10:44:56] [PASSED] single_pixel_source_buffer
[10:44:56] [PASSED] single_pixel_clip_rectangle
[10:44:56] [PASSED] well_known_colors
[10:44:56] [PASSED] destination_pitch
[10:44:56] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[10:44:56] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[10:44:56] [PASSED] single_pixel_source_buffer
[10:44:56] [PASSED] single_pixel_clip_rectangle
[10:44:56] [PASSED] well_known_colors
[10:44:56] [PASSED] destination_pitch
[10:44:56] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[10:44:56] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[10:44:56] [PASSED] single_pixel_source_buffer
[10:44:56] [PASSED] single_pixel_clip_rectangle
[10:44:56] [PASSED] well_known_colors
[10:44:56] [PASSED] destination_pitch
[10:44:56] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[10:44:56] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[10:44:56] [PASSED] single_pixel_source_buffer
[10:44:56] [PASSED] single_pixel_clip_rectangle
[10:44:56] [PASSED] well_known_colors
[10:44:56] [PASSED] destination_pitch
[10:44:56] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[10:44:56] ============== drm_test_fb_xrgb8888_to_mono ===============
[10:44:56] [PASSED] single_pixel_source_buffer
[10:44:56] [PASSED] single_pixel_clip_rectangle
[10:44:56] [PASSED] well_known_colors
[10:44:56] [PASSED] destination_pitch
[10:44:56] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[10:44:56] ==================== drm_test_fb_swab =====================
[10:44:56] [PASSED] single_pixel_source_buffer
[10:44:56] [PASSED] single_pixel_clip_rectangle
[10:44:56] [PASSED] well_known_colors
[10:44:56] [PASSED] destination_pitch
[10:44:56] ================ [PASSED] drm_test_fb_swab =================
[10:44:56] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[10:44:56] [PASSED] single_pixel_source_buffer
[10:44:56] [PASSED] single_pixel_clip_rectangle
[10:44:56] [PASSED] well_known_colors
[10:44:56] [PASSED] destination_pitch
[10:44:56] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[10:44:56] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[10:44:56] [PASSED] single_pixel_source_buffer
[10:44:56] [PASSED] single_pixel_clip_rectangle
[10:44:56] [PASSED] well_known_colors
[10:44:56] [PASSED] destination_pitch
[10:44:56] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[10:44:56] ================= drm_test_fb_clip_offset =================
[10:44:56] [PASSED] pass through
[10:44:56] [PASSED] horizontal offset
[10:44:56] [PASSED] vertical offset
[10:44:56] [PASSED] horizontal and vertical offset
[10:44:56] [PASSED] horizontal offset (custom pitch)
[10:44:56] [PASSED] vertical offset (custom pitch)
[10:44:56] [PASSED] horizontal and vertical offset (custom pitch)
[10:44:56] ============= [PASSED] drm_test_fb_clip_offset =============
[10:44:56] =================== drm_test_fb_memcpy ====================
[10:44:56] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[10:44:56] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[10:44:56] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[10:44:56] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[10:44:56] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[10:44:56] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[10:44:56] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[10:44:56] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[10:44:56] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[10:44:56] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[10:44:56] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[10:44:56] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[10:44:56] =============== [PASSED] drm_test_fb_memcpy ================
[10:44:56] ============= [PASSED] drm_format_helper_test ==============
[10:44:56] ================= drm_format (18 subtests) =================
[10:44:56] [PASSED] drm_test_format_block_width_invalid
[10:44:56] [PASSED] drm_test_format_block_width_one_plane
[10:44:56] [PASSED] drm_test_format_block_width_two_plane
[10:44:56] [PASSED] drm_test_format_block_width_three_plane
[10:44:56] [PASSED] drm_test_format_block_width_tiled
[10:44:56] [PASSED] drm_test_format_block_height_invalid
[10:44:56] [PASSED] drm_test_format_block_height_one_plane
[10:44:56] [PASSED] drm_test_format_block_height_two_plane
[10:44:56] [PASSED] drm_test_format_block_height_three_plane
[10:44:56] [PASSED] drm_test_format_block_height_tiled
[10:44:56] [PASSED] drm_test_format_min_pitch_invalid
[10:44:56] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[10:44:56] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[10:44:56] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[10:44:56] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[10:44:56] [PASSED] drm_test_format_min_pitch_two_plane
[10:44:56] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[10:44:56] [PASSED] drm_test_format_min_pitch_tiled
[10:44:56] =================== [PASSED] drm_format ====================
[10:44:56] ============== drm_framebuffer (10 subtests) ===============
[10:44:56] ========== drm_test_framebuffer_check_src_coords ==========
[10:44:56] [PASSED] Success: source fits into fb
[10:44:56] [PASSED] Fail: overflowing fb with x-axis coordinate
[10:44:56] [PASSED] Fail: overflowing fb with y-axis coordinate
[10:44:56] [PASSED] Fail: overflowing fb with source width
[10:44:56] [PASSED] Fail: overflowing fb with source height
[10:44:56] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[10:44:56] [PASSED] drm_test_framebuffer_cleanup
[10:44:56] =============== drm_test_framebuffer_create ===============
[10:44:56] [PASSED] ABGR8888 normal sizes
[10:44:56] [PASSED] ABGR8888 max sizes
[10:44:56] [PASSED] ABGR8888 pitch greater than min required
[10:44:56] [PASSED] ABGR8888 pitch less than min required
[10:44:56] [PASSED] ABGR8888 Invalid width
[10:44:56] [PASSED] ABGR8888 Invalid buffer handle
[10:44:56] [PASSED] No pixel format
[10:44:56] [PASSED] ABGR8888 Width 0
[10:44:56] [PASSED] ABGR8888 Height 0
[10:44:56] [PASSED] ABGR8888 Out of bound height * pitch combination
[10:44:56] [PASSED] ABGR8888 Large buffer offset
[10:44:56] [PASSED] ABGR8888 Buffer offset for inexistent plane
[10:44:56] [PASSED] ABGR8888 Invalid flag
[10:44:56] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[10:44:56] [PASSED] ABGR8888 Valid buffer modifier
[10:44:56] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[10:44:56] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[10:44:56] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[10:44:56] [PASSED] NV12 Normal sizes
[10:44:56] [PASSED] NV12 Max sizes
[10:44:56] [PASSED] NV12 Invalid pitch
[10:44:56] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[10:44:56] [PASSED] NV12 different modifier per-plane
[10:44:56] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[10:44:56] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[10:44:56] [PASSED] NV12 Modifier for inexistent plane
[10:44:56] [PASSED] NV12 Handle for inexistent plane
[10:44:56] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[10:44:56] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[10:44:56] [PASSED] YVU420 Normal sizes
[10:44:56] [PASSED] YVU420 Max sizes
[10:44:56] [PASSED] YVU420 Invalid pitch
[10:44:56] [PASSED] YVU420 Different pitches
[10:44:56] [PASSED] YVU420 Different buffer offsets/pitches
[10:44:56] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[10:44:56] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[10:44:56] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[10:44:56] [PASSED] YVU420 Valid modifier
[10:44:56] [PASSED] YVU420 Different modifiers per plane
[10:44:56] [PASSED] YVU420 Modifier for inexistent plane
[10:44:56] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[10:44:56] [PASSED] X0L2 Normal sizes
[10:44:56] [PASSED] X0L2 Max sizes
[10:44:56] [PASSED] X0L2 Invalid pitch
[10:44:56] [PASSED] X0L2 Pitch greater than minimum required
[10:44:56] [PASSED] X0L2 Handle for inexistent plane
[10:44:56] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[10:44:56] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[10:44:56] [PASSED] X0L2 Valid modifier
[10:44:56] [PASSED] X0L2 Modifier for inexistent plane
[10:44:56] =========== [PASSED] drm_test_framebuffer_create ===========
[10:44:56] [PASSED] drm_test_framebuffer_free
[10:44:56] [PASSED] drm_test_framebuffer_init
[10:44:56] [PASSED] drm_test_framebuffer_init_bad_format
[10:44:56] [PASSED] drm_test_framebuffer_init_dev_mismatch
[10:44:56] [PASSED] drm_test_framebuffer_lookup
[10:44:56] [PASSED] drm_test_framebuffer_lookup_inexistent
[10:44:56] [PASSED] drm_test_framebuffer_modifiers_not_supported
[10:44:56] ================= [PASSED] drm_framebuffer =================
[10:44:56] ================ drm_gem_shmem (8 subtests) ================
[10:44:56] [PASSED] drm_gem_shmem_test_obj_create
[10:44:56] [PASSED] drm_gem_shmem_test_obj_create_private
[10:44:56] [PASSED] drm_gem_shmem_test_pin_pages
[10:44:56] [PASSED] drm_gem_shmem_test_vmap
[10:44:56] [PASSED] drm_gem_shmem_test_get_sg_table
[10:44:56] [PASSED] drm_gem_shmem_test_get_pages_sgt
[10:44:56] [PASSED] drm_gem_shmem_test_madvise
[10:44:56] [PASSED] drm_gem_shmem_test_purge
[10:44:56] ================== [PASSED] drm_gem_shmem ==================
[10:44:56] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[10:44:56] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[10:44:56] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[10:44:56] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[10:44:56] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[10:44:56] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[10:44:56] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[10:44:56] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[10:44:56] [PASSED] Automatic
[10:44:56] [PASSED] Full
[10:44:56] [PASSED] Limited 16:235
[10:44:56] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[10:44:56] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[10:44:56] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[10:44:56] [PASSED] drm_test_check_disable_connector
[10:44:56] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[10:44:56] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[10:44:56] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[10:44:56] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[10:44:56] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[10:44:56] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[10:44:56] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[10:44:56] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[10:44:56] [PASSED] drm_test_check_output_bpc_dvi
[10:44:56] [PASSED] drm_test_check_output_bpc_format_vic_1
[10:44:56] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[10:44:56] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[10:44:56] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[10:44:56] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[10:44:56] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[10:44:56] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[10:44:56] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[10:44:56] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[10:44:56] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[10:44:56] [PASSED] drm_test_check_broadcast_rgb_value
[10:44:56] [PASSED] drm_test_check_bpc_8_value
[10:44:56] [PASSED] drm_test_check_bpc_10_value
[10:44:56] [PASSED] drm_test_check_bpc_12_value
[10:44:56] [PASSED] drm_test_check_format_value
[10:44:56] [PASSED] drm_test_check_tmds_char_value
[10:44:56] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[10:44:56] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[10:44:56] [PASSED] drm_test_check_mode_valid
[10:44:56] [PASSED] drm_test_check_mode_valid_reject
[10:44:56] [PASSED] drm_test_check_mode_valid_reject_rate
[10:44:56] [PASSED] drm_test_check_mode_valid_reject_max_clock
[10:44:56] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[10:44:56] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[10:44:56] [PASSED] drm_test_check_infoframes
[10:44:56] [PASSED] drm_test_check_reject_avi_infoframe
[10:44:56] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[10:44:56] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[10:44:56] [PASSED] drm_test_check_reject_audio_infoframe
[10:44:56] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[10:44:56] ================= drm_managed (2 subtests) =================
[10:44:56] [PASSED] drm_test_managed_release_action
[10:44:56] [PASSED] drm_test_managed_run_action
[10:44:56] =================== [PASSED] drm_managed ===================
[10:44:56] =================== drm_mm (6 subtests) ====================
[10:44:56] [PASSED] drm_test_mm_init
[10:44:56] [PASSED] drm_test_mm_debug
[10:44:56] [PASSED] drm_test_mm_align32
[10:44:56] [PASSED] drm_test_mm_align64
[10:44:56] [PASSED] drm_test_mm_lowest
[10:44:56] [PASSED] drm_test_mm_highest
[10:44:56] ===================== [PASSED] drm_mm ======================
[10:44:56] ============= drm_modes_analog_tv (5 subtests) =============
[10:44:56] [PASSED] drm_test_modes_analog_tv_mono_576i
[10:44:56] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[10:44:56] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[10:44:56] [PASSED] drm_test_modes_analog_tv_pal_576i
[10:44:56] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[10:44:56] =============== [PASSED] drm_modes_analog_tv ===============
[10:44:56] ============== drm_plane_helper (2 subtests) ===============
[10:44:56] =============== drm_test_check_plane_state ================
[10:44:56] [PASSED] clipping_simple
[10:44:56] [PASSED] clipping_rotate_reflect
[10:44:56] [PASSED] positioning_simple
[10:44:56] [PASSED] upscaling
[10:44:56] [PASSED] downscaling
[10:44:56] [PASSED] rounding1
[10:44:56] [PASSED] rounding2
[10:44:56] [PASSED] rounding3
[10:44:56] [PASSED] rounding4
[10:44:56] =========== [PASSED] drm_test_check_plane_state ============
[10:44:56] =========== drm_test_check_invalid_plane_state ============
[10:44:56] [PASSED] positioning_invalid
[10:44:56] [PASSED] upscaling_invalid
[10:44:56] [PASSED] downscaling_invalid
[10:44:56] ======= [PASSED] drm_test_check_invalid_plane_state ========
[10:44:56] ================ [PASSED] drm_plane_helper =================
[10:44:56] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[10:44:56] ====== drm_test_connector_helper_tv_get_modes_check =======
[10:44:56] [PASSED] None
[10:44:56] [PASSED] PAL
[10:44:56] [PASSED] NTSC
[10:44:56] [PASSED] Both, NTSC Default
[10:44:56] [PASSED] Both, PAL Default
[10:44:56] [PASSED] Both, NTSC Default, with PAL on command-line
[10:44:56] [PASSED] Both, PAL Default, with NTSC on command-line
[10:44:56] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[10:44:56] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[10:44:56] ================== drm_rect (9 subtests) ===================
[10:44:56] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[10:44:56] [PASSED] drm_test_rect_clip_scaled_not_clipped
[10:44:56] [PASSED] drm_test_rect_clip_scaled_clipped
[10:44:56] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[10:44:56] ================= drm_test_rect_intersect =================
[10:44:56] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[10:44:56] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[10:44:56] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[10:44:56] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[10:44:56] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[10:44:56] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[10:44:56] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[10:44:56] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[10:44:56] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[10:44:56] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[10:44:56] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[10:44:56] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[10:44:56] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[10:44:56] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[10:44:56] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[10:44:56] ============= [PASSED] drm_test_rect_intersect =============
[10:44:56] ================ drm_test_rect_calc_hscale ================
[10:44:56] [PASSED] normal use
[10:44:56] [PASSED] out of max range
[10:44:56] [PASSED] out of min range
[10:44:56] [PASSED] zero dst
[10:44:56] [PASSED] negative src
[10:44:56] [PASSED] negative dst
[10:44:56] ============ [PASSED] drm_test_rect_calc_hscale ============
[10:44:56] ================ drm_test_rect_calc_vscale ================
[10:44:56] [PASSED] normal use
[10:44:56] [PASSED] out of max range
[10:44:56] [PASSED] out of min range
[10:44:56] [PASSED] zero dst
[10:44:56] [PASSED] negative src
[10:44:56] [PASSED] negative dst
stty: 'standard input': Inappropriate ioctl for device
[10:44:56] ============ [PASSED] drm_test_rect_calc_vscale ============
[10:44:56] ================== drm_test_rect_rotate ===================
[10:44:56] [PASSED] reflect-x
[10:44:56] [PASSED] reflect-y
[10:44:56] [PASSED] rotate-0
[10:44:56] [PASSED] rotate-90
[10:44:56] [PASSED] rotate-180
[10:44:56] [PASSED] rotate-270
[10:44:56] ============== [PASSED] drm_test_rect_rotate ===============
[10:44:56] ================ drm_test_rect_rotate_inv =================
[10:44:56] [PASSED] reflect-x
[10:44:56] [PASSED] reflect-y
[10:44:56] [PASSED] rotate-0
[10:44:56] [PASSED] rotate-90
[10:44:56] [PASSED] rotate-180
[10:44:56] [PASSED] rotate-270
[10:44:56] ============ [PASSED] drm_test_rect_rotate_inv =============
[10:44:56] ==================== [PASSED] drm_rect =====================
[10:44:56] ============ drm_sysfb_modeset_test (1 subtest) ============
[10:44:56] ============ drm_test_sysfb_build_fourcc_list =============
[10:44:56] [PASSED] no native formats
[10:44:56] [PASSED] XRGB8888 as native format
[10:44:56] [PASSED] remove duplicates
[10:44:56] [PASSED] convert alpha formats
[10:44:56] [PASSED] random formats
[10:44:56] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[10:44:56] ============= [PASSED] drm_sysfb_modeset_test ==============
[10:44:56] ================== drm_fixp (2 subtests) ===================
[10:44:56] [PASSED] drm_test_int2fixp
[10:44:56] [PASSED] drm_test_sm2fixp
[10:44:56] ==================== [PASSED] drm_fixp =====================
[10:44:56] ============================================================
[10:44:56] Testing complete. Ran 621 tests: passed: 621
[10:44:56] Elapsed time: 49.593s total, 2.653s configuring, 46.660s building, 0.238s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[10:44:56] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[10:44:59] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[10:45:08] Starting KUnit Kernel (1/1)...
[10:45:08] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[10:45:08] ================= ttm_device (5 subtests) ==================
[10:45:08] [PASSED] ttm_device_init_basic
[10:45:08] [PASSED] ttm_device_init_multiple
[10:45:08] [PASSED] ttm_device_fini_basic
[10:45:08] [PASSED] ttm_device_init_no_vma_man
[10:45:08] ================== ttm_device_init_pools ==================
[10:45:08] [PASSED] No DMA allocations, no DMA32 required
[10:45:08] [PASSED] DMA allocations, DMA32 required
[10:45:08] [PASSED] No DMA allocations, DMA32 required
[10:45:08] [PASSED] DMA allocations, no DMA32 required
[10:45:08] ============== [PASSED] ttm_device_init_pools ==============
[10:45:08] =================== [PASSED] ttm_device ====================
[10:45:08] ================== ttm_pool (8 subtests) ===================
[10:45:08] ================== ttm_pool_alloc_basic ===================
[10:45:08] [PASSED] One page
[10:45:08] [PASSED] More than one page
[10:45:08] [PASSED] Above the allocation limit
[10:45:08] [PASSED] One page, with coherent DMA mappings enabled
[10:45:08] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[10:45:08] ============== [PASSED] ttm_pool_alloc_basic ===============
[10:45:08] ============== ttm_pool_alloc_basic_dma_addr ==============
[10:45:08] [PASSED] One page
[10:45:08] [PASSED] More than one page
[10:45:08] [PASSED] Above the allocation limit
[10:45:08] [PASSED] One page, with coherent DMA mappings enabled
[10:45:08] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[10:45:08] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[10:45:08] [PASSED] ttm_pool_alloc_order_caching_match
[10:45:08] [PASSED] ttm_pool_alloc_caching_mismatch
[10:45:08] [PASSED] ttm_pool_alloc_order_mismatch
[10:45:08] [PASSED] ttm_pool_free_dma_alloc
[10:45:08] [PASSED] ttm_pool_free_no_dma_alloc
[10:45:08] [PASSED] ttm_pool_fini_basic
[10:45:08] ==================== [PASSED] ttm_pool =====================
[10:45:08] ================ ttm_resource (8 subtests) =================
[10:45:08] ================= ttm_resource_init_basic =================
[10:45:08] [PASSED] Init resource in TTM_PL_SYSTEM
[10:45:08] [PASSED] Init resource in TTM_PL_VRAM
[10:45:08] [PASSED] Init resource in a private placement
[10:45:08] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[10:45:08] ============= [PASSED] ttm_resource_init_basic =============
[10:45:08] [PASSED] ttm_resource_init_pinned
[10:45:08] [PASSED] ttm_resource_fini_basic
[10:45:08] [PASSED] ttm_resource_manager_init_basic
[10:45:08] [PASSED] ttm_resource_manager_usage_basic
[10:45:08] [PASSED] ttm_resource_manager_set_used_basic
[10:45:08] [PASSED] ttm_sys_man_alloc_basic
[10:45:08] [PASSED] ttm_sys_man_free_basic
[10:45:08] ================== [PASSED] ttm_resource ===================
[10:45:08] =================== ttm_tt (15 subtests) ===================
[10:45:08] ==================== ttm_tt_init_basic ====================
[10:45:08] [PASSED] Page-aligned size
[10:45:08] [PASSED] Extra pages requested
[10:45:08] ================ [PASSED] ttm_tt_init_basic ================
[10:45:08] [PASSED] ttm_tt_init_misaligned
[10:45:08] [PASSED] ttm_tt_fini_basic
[10:45:08] [PASSED] ttm_tt_fini_sg
[10:45:08] [PASSED] ttm_tt_fini_shmem
[10:45:08] [PASSED] ttm_tt_create_basic
[10:45:08] [PASSED] ttm_tt_create_invalid_bo_type
[10:45:08] [PASSED] ttm_tt_create_ttm_exists
[10:45:08] [PASSED] ttm_tt_create_failed
[10:45:08] [PASSED] ttm_tt_destroy_basic
[10:45:08] [PASSED] ttm_tt_populate_null_ttm
[10:45:08] [PASSED] ttm_tt_populate_populated_ttm
[10:45:08] [PASSED] ttm_tt_unpopulate_basic
[10:45:08] [PASSED] ttm_tt_unpopulate_empty_ttm
[10:45:08] [PASSED] ttm_tt_swapin_basic
[10:45:08] ===================== [PASSED] ttm_tt ======================
[10:45:08] =================== ttm_bo (14 subtests) ===================
[10:45:08] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[10:45:08] [PASSED] Cannot be interrupted and sleeps
[10:45:08] [PASSED] Cannot be interrupted, locks straight away
[10:45:08] [PASSED] Can be interrupted, sleeps
[10:45:08] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[10:45:08] [PASSED] ttm_bo_reserve_locked_no_sleep
[10:45:08] [PASSED] ttm_bo_reserve_no_wait_ticket
[10:45:08] [PASSED] ttm_bo_reserve_double_resv
[10:45:08] [PASSED] ttm_bo_reserve_interrupted
[10:45:08] [PASSED] ttm_bo_reserve_deadlock
[10:45:08] [PASSED] ttm_bo_unreserve_basic
[10:45:08] [PASSED] ttm_bo_unreserve_pinned
[10:45:08] [PASSED] ttm_bo_unreserve_bulk
[10:45:08] [PASSED] ttm_bo_fini_basic
[10:45:08] [PASSED] ttm_bo_fini_shared_resv
[10:45:08] [PASSED] ttm_bo_pin_basic
[10:45:08] [PASSED] ttm_bo_pin_unpin_resource
[10:45:08] [PASSED] ttm_bo_multiple_pin_one_unpin
[10:45:08] ===================== [PASSED] ttm_bo ======================
[10:45:08] ============== ttm_bo_validate (22 subtests) ===============
[10:45:08] ============== ttm_bo_init_reserved_sys_man ===============
[10:45:08] [PASSED] Buffer object for userspace
[10:45:08] [PASSED] Kernel buffer object
[10:45:08] [PASSED] Shared buffer object
[10:45:08] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[10:45:08] ============== ttm_bo_init_reserved_mock_man ==============
[10:45:08] [PASSED] Buffer object for userspace
[10:45:08] [PASSED] Kernel buffer object
[10:45:08] [PASSED] Shared buffer object
[10:45:08] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[10:45:08] [PASSED] ttm_bo_init_reserved_resv
[10:45:08] ================== ttm_bo_validate_basic ==================
[10:45:08] [PASSED] Buffer object for userspace
[10:45:08] [PASSED] Kernel buffer object
[10:45:08] [PASSED] Shared buffer object
[10:45:08] ============== [PASSED] ttm_bo_validate_basic ==============
[10:45:08] [PASSED] ttm_bo_validate_invalid_placement
[10:45:08] ============= ttm_bo_validate_same_placement ==============
[10:45:08] [PASSED] System manager
[10:45:08] [PASSED] VRAM manager
[10:45:08] ========= [PASSED] ttm_bo_validate_same_placement ==========
[10:45:08] [PASSED] ttm_bo_validate_failed_alloc
[10:45:08] [PASSED] ttm_bo_validate_pinned
[10:45:08] [PASSED] ttm_bo_validate_busy_placement
[10:45:08] ================ ttm_bo_validate_multihop =================
[10:45:08] [PASSED] Buffer object for userspace
[10:45:08] [PASSED] Kernel buffer object
[10:45:08] [PASSED] Shared buffer object
[10:45:08] ============ [PASSED] ttm_bo_validate_multihop =============
[10:45:08] ========== ttm_bo_validate_no_placement_signaled ==========
[10:45:08] [PASSED] Buffer object in system domain, no page vector
[10:45:08] [PASSED] Buffer object in system domain with an existing page vector
[10:45:08] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[10:45:08] ======== ttm_bo_validate_no_placement_not_signaled ========
[10:45:08] [PASSED] Buffer object for userspace
[10:45:08] [PASSED] Kernel buffer object
[10:45:08] [PASSED] Shared buffer object
[10:45:08] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[10:45:08] [PASSED] ttm_bo_validate_move_fence_signaled
[10:45:08] ========= ttm_bo_validate_move_fence_not_signaled =========
[10:45:08] [PASSED] Waits for GPU
[10:45:08] [PASSED] Tries to lock straight away
[10:45:08] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[10:45:08] [PASSED] ttm_bo_validate_swapout
[10:45:08] [PASSED] ttm_bo_validate_happy_evict
[10:45:08] [PASSED] ttm_bo_validate_all_pinned_evict
[10:45:08] [PASSED] ttm_bo_validate_allowed_only_evict
[10:45:08] [PASSED] ttm_bo_validate_deleted_evict
[10:45:08] [PASSED] ttm_bo_validate_busy_domain_evict
[10:45:08] [PASSED] ttm_bo_validate_evict_gutting
[10:45:08] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[10:45:08] ================= [PASSED] ttm_bo_validate =================
[10:45:08] ============================================================
[10:45:08] Testing complete. Ran 102 tests: passed: 102
[10:45:08] Elapsed time: 12.226s total, 2.635s configuring, 9.325s building, 0.217s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 19+ messages in thread
* ✓ Xe.CI.BAT: success for drm/i915/de: Move register polling into display code (rev2)
2026-03-13 11:10 [PATCH 0/3] drm/i915/de: Move register polling into display code Ville Syrjala
` (8 preceding siblings ...)
2026-03-23 10:45 ` ✓ CI.KUnit: success " Patchwork
@ 2026-03-23 11:26 ` Patchwork
2026-03-23 13:56 ` ✓ Xe.CI.FULL: " Patchwork
10 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2026-03-23 11:26 UTC (permalink / raw)
To: Ville Syrjala; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 2338 bytes --]
== Series Details ==
Series: drm/i915/de: Move register polling into display code (rev2)
URL : https://patchwork.freedesktop.org/series/163181/
State : success
== Summary ==
CI Bug Log - changes from xe-4760-6d4a5468301db368a25ae8d595bdca120a17428c_BAT -> xe-pw-163181v2_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (14 -> 13)
------------------------------
Missing (1): bat-bmg-2
Known issues
------------
Here are the changes found in xe-pw-163181v2_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1:
- bat-adlp-7: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#7483])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4760-6d4a5468301db368a25ae8d595bdca120a17428c/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
#### Possible fixes ####
* igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1:
- bat-adlp-7: [DMESG-WARN][3] ([Intel XE#7483]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4760-6d4a5468301db368a25ae8d595bdca120a17428c/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html
* igt@xe_waitfence@abstime:
- bat-dg2-oem2: [TIMEOUT][5] ([Intel XE#6506]) -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4760-6d4a5468301db368a25ae8d595bdca120a17428c/bat-dg2-oem2/igt@xe_waitfence@abstime.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/bat-dg2-oem2/igt@xe_waitfence@abstime.html
[Intel XE#6506]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6506
[Intel XE#7483]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7483
Build changes
-------------
* Linux: xe-4760-6d4a5468301db368a25ae8d595bdca120a17428c -> xe-pw-163181v2
IGT_8816: 8816
xe-4760-6d4a5468301db368a25ae8d595bdca120a17428c: 6d4a5468301db368a25ae8d595bdca120a17428c
xe-pw-163181v2: 163181v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/index.html
[-- Attachment #2: Type: text/html, Size: 3035 bytes --]
^ permalink raw reply [flat|nested] 19+ messages in thread
* ✓ Xe.CI.FULL: success for drm/i915/de: Move register polling into display code (rev2)
2026-03-13 11:10 [PATCH 0/3] drm/i915/de: Move register polling into display code Ville Syrjala
` (9 preceding siblings ...)
2026-03-23 11:26 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-03-23 13:56 ` Patchwork
10 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2026-03-23 13:56 UTC (permalink / raw)
To: Ville Syrjala; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 33992 bytes --]
== Series Details ==
Series: drm/i915/de: Move register polling into display code (rev2)
URL : https://patchwork.freedesktop.org/series/163181/
State : success
== Summary ==
CI Bug Log - changes from xe-4760-6d4a5468301db368a25ae8d595bdca120a17428c_FULL -> xe-pw-163181v2_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-163181v2_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][1] ([Intel XE#2327])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-10/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][2] ([Intel XE#1124]) +4 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-5/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- shard-bmg: [PASS][3] -> [SKIP][4] ([Intel XE#2314] / [Intel XE#2894] / [Intel XE#7373])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4760-6d4a5468301db368a25ae8d595bdca120a17428c/shard-bmg-8/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-1-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#367] / [Intel XE#7354]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-10/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#2652]) +11 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-9/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2887]) +3 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-10/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2724] / [Intel XE#7449])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-10/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2252]) +3 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-5/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
* igt@kms_content_protection@dp-mst-type-1-suspend-resume:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#6974])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-10/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
* igt@kms_content_protection@srm@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][11] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-7/igt@kms_content_protection@srm@pipe-a-dp-2.html
* igt@kms_content_protection@uevent@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][12] ([Intel XE#6707] / [Intel XE#7439])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-6/igt@kms_content_protection@uevent@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-rapid-movement-128x42:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2320]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-10/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [PASS][14] -> [SKIP][15] ([Intel XE#2291]) +4 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4760-6d4a5468301db368a25ae8d595bdca120a17428c/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
- shard-bmg: [PASS][16] -> [SKIP][17] ([Intel XE#2291] / [Intel XE#7343]) +2 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4760-6d4a5468301db368a25ae8d595bdca120a17428c/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
* igt@kms_dp_aux_dev:
- shard-bmg: [PASS][18] -> [SKIP][19] ([Intel XE#3009])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4760-6d4a5468301db368a25ae8d595bdca120a17428c/shard-bmg-8/igt@kms_dp_aux_dev.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-5/igt@kms_dp_aux_dev.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2244])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-10/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_fbcon_fbt@fbc:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#4156] / [Intel XE#7425])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-10/igt@kms_fbcon_fbt@fbc.html
* igt@kms_feature_discovery@display-2x:
- shard-bmg: [PASS][22] -> [SKIP][23] ([Intel XE#2373] / [Intel XE#7344])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4760-6d4a5468301db368a25ae8d595bdca120a17428c/shard-bmg-7/igt@kms_feature_discovery@display-2x.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-3/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@dp-mst:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2375])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-10/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
- shard-bmg: [PASS][25] -> [SKIP][26] ([Intel XE#2316]) +5 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4760-6d4a5468301db368a25ae8d595bdca120a17428c/shard-bmg-7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-3/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-suspend:
- shard-bmg: [PASS][27] -> [INCOMPLETE][28] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4760-6d4a5468301db368a25ae8d595bdca120a17428c/shard-bmg-2/igt@kms_flip@flip-vs-suspend.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-4/igt@kms_flip@flip-vs-suspend.html
* igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#4141]) +2 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2312]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2311]) +8 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2313]) +7 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_hdr@static-swap:
- shard-bmg: [PASS][33] -> [SKIP][34] ([Intel XE#1503]) +2 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4760-6d4a5468301db368a25ae8d595bdca120a17428c/shard-bmg-8/igt@kms_hdr@static-swap.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-5/igt@kms_hdr@static-swap.html
* igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#7283])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-10/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-bmg: [PASS][36] -> [SKIP][37] ([Intel XE#4596])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4760-6d4a5468301db368a25ae8d595bdca120a17428c/shard-bmg-7/igt@kms_plane_multiple@2x-tiling-none.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#5020] / [Intel XE#7348])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-10/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#7376] / [Intel XE#870])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-10/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#1489]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-10/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr@fbc-pr-cursor-plane-onoff:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-10/igt@kms_psr@fbc-pr-cursor-plane-onoff.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2413])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-10/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#1435])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-5/igt@kms_setmode@clone-exclusive-crtc.html
* igt@xe_compute@eu-busy-10s:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#6599])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-10/igt@xe_compute@eu-busy-10s.html
* igt@xe_eudebug_online@breakpoint-many-sessions-single-tile:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#7636]) +4 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-10/igt@xe_eudebug_online@breakpoint-many-sessions-single-tile.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2322] / [Intel XE#7372]) +3 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-10/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html
* igt@xe_exec_fault_mode@twice-multi-queue-userptr:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#7136]) +3 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-10/igt@xe_exec_fault_mode@twice-multi-queue-userptr.html
* igt@xe_exec_multi_queue@two-queues-preempt-mode-basic-smem:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#6874]) +6 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-10/igt@xe_exec_multi_queue@two-queues-preempt-mode-basic-smem.html
* igt@xe_exec_system_allocator@many-execqueues-mmap-file-mlock-nomemset:
- shard-bmg: [PASS][49] -> [SKIP][50] ([Intel XE#6703]) +7 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4760-6d4a5468301db368a25ae8d595bdca120a17428c/shard-bmg-1/igt@xe_exec_system_allocator@many-execqueues-mmap-file-mlock-nomemset.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-2/igt@xe_exec_system_allocator@many-execqueues-mmap-file-mlock-nomemset.html
* igt@xe_exec_system_allocator@threads-many-malloc-madvise:
- shard-bmg: [PASS][51] -> [DMESG-FAIL][52] ([Intel XE#6652])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4760-6d4a5468301db368a25ae8d595bdca120a17428c/shard-bmg-1/igt@xe_exec_system_allocator@threads-many-malloc-madvise.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-2/igt@xe_exec_system_allocator@threads-many-malloc-madvise.html
* igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#7138]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-10/igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr.html
* igt@xe_multigpu_svm@mgpu-latency-prefetch:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#6964])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-5/igt@xe_multigpu_svm@mgpu-latency-prefetch.html
* igt@xe_pxp@pxp-termination-key-update-post-rpm:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#4733] / [Intel XE#7417])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-10/igt@xe_pxp@pxp-termination-key-update-post-rpm.html
* igt@xe_query@multigpu-query-topology-l3-bank-mask:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#944]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-10/igt@xe_query@multigpu-query-topology-l3-bank-mask.html
* igt@xe_survivability@runtime-survivability:
- shard-bmg: [PASS][57] -> [DMESG-WARN][58] ([Intel XE#6627] / [Intel XE#7419])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4760-6d4a5468301db368a25ae8d595bdca120a17428c/shard-bmg-2/igt@xe_survivability@runtime-survivability.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-10/igt@xe_survivability@runtime-survivability.html
#### Possible fixes ####
* igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p:
- shard-bmg: [SKIP][59] ([Intel XE#7621]) -> [PASS][60]
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4760-6d4a5468301db368a25ae8d595bdca120a17428c/shard-bmg-7/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-3/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-bmg: [SKIP][61] ([Intel XE#2314] / [Intel XE#2894] / [Intel XE#7373]) -> [PASS][62]
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4760-6d4a5468301db368a25ae8d595bdca120a17428c/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-7/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-bmg: [SKIP][63] ([Intel XE#2291]) -> [PASS][64] +1 other test pass
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4760-6d4a5468301db368a25ae8d595bdca120a17428c/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_display_modes@extended-mode-basic:
- shard-bmg: [SKIP][65] ([Intel XE#4302]) -> [PASS][66]
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4760-6d4a5468301db368a25ae8d595bdca120a17428c/shard-bmg-5/igt@kms_display_modes@extended-mode-basic.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-7/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
- shard-bmg: [SKIP][67] ([Intel XE#2316]) -> [PASS][68] +6 other tests pass
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4760-6d4a5468301db368a25ae8d595bdca120a17428c/shard-bmg-3/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-9/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-bmg: [SKIP][69] ([Intel XE#7086]) -> [PASS][70]
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4760-6d4a5468301db368a25ae8d595bdca120a17428c/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-bmg: [SKIP][71] ([Intel XE#4596]) -> [PASS][72]
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4760-6d4a5468301db368a25ae8d595bdca120a17428c/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-4.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-9/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-bmg: [SKIP][73] ([Intel XE#1435]) -> [PASS][74]
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4760-6d4a5468301db368a25ae8d595bdca120a17428c/shard-bmg-3/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-1/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
- shard-lnl: [FAIL][75] ([Intel XE#2142]) -> [PASS][76] +1 other test pass
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4760-6d4a5468301db368a25ae8d595bdca120a17428c/shard-lnl-8/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-lnl-3/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][77] ([Intel XE#6321]) -> [PASS][78]
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4760-6d4a5468301db368a25ae8d595bdca120a17428c/shard-bmg-1/igt@xe_evict@evict-mixed-many-threads-small.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-10/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_device_create:
- shard-bmg: [ABORT][79] ([Intel XE#7578]) -> [PASS][80]
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4760-6d4a5468301db368a25ae8d595bdca120a17428c/shard-bmg-9/igt@xe_fault_injection@inject-fault-probe-function-xe_device_create.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-10/igt@xe_fault_injection@inject-fault-probe-function-xe_device_create.html
#### Warnings ####
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-bmg: [SKIP][81] ([Intel XE#1124]) -> [SKIP][82] ([Intel XE#6703])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4760-6d4a5468301db368a25ae8d595bdca120a17428c/shard-bmg-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-bmg: [SKIP][83] ([Intel XE#3432]) -> [SKIP][84] ([Intel XE#6703])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4760-6d4a5468301db368a25ae8d595bdca120a17428c/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-bmg: [SKIP][85] ([Intel XE#2252]) -> [SKIP][86] ([Intel XE#6703])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4760-6d4a5468301db368a25ae8d595bdca120a17428c/shard-bmg-1/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-2/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_content_protection@atomic:
- shard-bmg: [FAIL][87] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) -> [SKIP][88] ([Intel XE#7642]) +2 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4760-6d4a5468301db368a25ae8d595bdca120a17428c/shard-bmg-7/igt@kms_content_protection@atomic.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-3/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-dpms-hdcp14:
- shard-bmg: [FAIL][89] ([Intel XE#3304] / [Intel XE#7374]) -> [SKIP][90] ([Intel XE#7642])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4760-6d4a5468301db368a25ae8d595bdca120a17428c/shard-bmg-7/igt@kms_content_protection@atomic-dpms-hdcp14.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-3/igt@kms_content_protection@atomic-dpms-hdcp14.html
* igt@kms_content_protection@lic-type-0:
- shard-bmg: [SKIP][91] ([Intel XE#7642]) -> [FAIL][92] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4760-6d4a5468301db368a25ae8d595bdca120a17428c/shard-bmg-3/igt@kms_content_protection@lic-type-0.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-9/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@uevent:
- shard-bmg: [SKIP][93] ([Intel XE#7642]) -> [FAIL][94] ([Intel XE#6707] / [Intel XE#7439])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4760-6d4a5468301db368a25ae8d595bdca120a17428c/shard-bmg-5/igt@kms_content_protection@uevent.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-6/igt@kms_content_protection@uevent.html
* igt@kms_content_protection@uevent-hdcp14:
- shard-bmg: [FAIL][95] ([Intel XE#6707] / [Intel XE#7439]) -> [SKIP][96] ([Intel XE#7642])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4760-6d4a5468301db368a25ae8d595bdca120a17428c/shard-bmg-8/igt@kms_content_protection@uevent-hdcp14.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-5/igt@kms_content_protection@uevent-hdcp14.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-bmg: [INCOMPLETE][97] ([Intel XE#2049] / [Intel XE#2597]) -> [SKIP][98] ([Intel XE#2316])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4760-6d4a5468301db368a25ae8d595bdca120a17428c/shard-bmg-8/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render:
- shard-bmg: [SKIP][99] ([Intel XE#2311]) -> [SKIP][100] ([Intel XE#2312]) +19 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4760-6d4a5468301db368a25ae8d595bdca120a17428c/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][101] ([Intel XE#2312]) -> [SKIP][102] ([Intel XE#2311]) +15 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4760-6d4a5468301db368a25ae8d595bdca120a17428c/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][103] ([Intel XE#4141]) -> [SKIP][104] ([Intel XE#2312]) +9 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4760-6d4a5468301db368a25ae8d595bdca120a17428c/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][105] ([Intel XE#2312]) -> [SKIP][106] ([Intel XE#4141]) +7 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4760-6d4a5468301db368a25ae8d595bdca120a17428c/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][107] ([Intel XE#2313]) -> [SKIP][108] ([Intel XE#2312]) +18 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4760-6d4a5468301db368a25ae8d595bdca120a17428c/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][109] ([Intel XE#2312]) -> [SKIP][110] ([Intel XE#2313]) +15 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4760-6d4a5468301db368a25ae8d595bdca120a17428c/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_rotation_crc@bad-tiling:
- shard-bmg: [SKIP][111] ([Intel XE#3904] / [Intel XE#7342]) -> [SKIP][112] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4760-6d4a5468301db368a25ae8d595bdca120a17428c/shard-bmg-8/igt@kms_rotation_crc@bad-tiling.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-5/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][113] ([Intel XE#2509] / [Intel XE#7437]) -> [SKIP][114] ([Intel XE#2426] / [Intel XE#5848])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4760-6d4a5468301db368a25ae8d595bdca120a17428c/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[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#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#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#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[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#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156
[Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
[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#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
[Intel XE#6627]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6627
[Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
[Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703
[Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#7086]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7086
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
[Intel XE#7344]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7344
[Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348
[Intel XE#7354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7354
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7373
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7419
[Intel XE#7425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7425
[Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437
[Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439
[Intel XE#7449]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7449
[Intel XE#7578]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7578
[Intel XE#7621]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7621
[Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
[Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* Linux: xe-4760-6d4a5468301db368a25ae8d595bdca120a17428c -> xe-pw-163181v2
IGT_8816: 8816
xe-4760-6d4a5468301db368a25ae8d595bdca120a17428c: 6d4a5468301db368a25ae8d595bdca120a17428c
xe-pw-163181v2: 163181v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-163181v2/index.html
[-- Attachment #2: Type: text/html, Size: 39285 bytes --]
^ permalink raw reply [flat|nested] 19+ messages in thread
end of thread, other threads:[~2026-03-23 13:56 UTC | newest]
Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-13 11:10 [PATCH 0/3] drm/i915/de: Move register polling into display code Ville Syrjala
2026-03-13 11:10 ` [PATCH 1/3] drm/i915/de: Introduce intel_de.c and move intel_de_{read, write}8() there Ville Syrjala
2026-03-13 14:21 ` Jani Nikula
2026-03-13 11:10 ` [PATCH 2/3] drm/i915/de: Move intel_de_wait*() into intel_de.c Ville Syrjala
2026-03-13 14:21 ` Jani Nikula
2026-03-13 11:10 ` [PATCH 3/3] drm/i915/de: Implement register polling in the display code Ville Syrjala
2026-03-13 15:03 ` Jani Nikula
2026-03-17 7:52 ` Ville Syrjälä
2026-03-23 9:50 ` Ville Syrjälä
2026-03-14 8:09 ` kernel test robot
2026-03-23 9:43 ` [PATCH v2 " Ville Syrjala
2026-03-13 11:15 ` ✗ CI.checkpatch: warning for drm/i915/de: Move register polling into " Patchwork
2026-03-13 11:17 ` ✓ CI.KUnit: success " Patchwork
2026-03-13 11:51 ` ✓ Xe.CI.BAT: " Patchwork
2026-03-14 14:29 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-03-23 10:43 ` ✗ CI.checkpatch: warning for drm/i915/de: Move register polling into display code (rev2) Patchwork
2026-03-23 10:45 ` ✓ CI.KUnit: success " Patchwork
2026-03-23 11:26 ` ✓ Xe.CI.BAT: " Patchwork
2026-03-23 13:56 ` ✓ Xe.CI.FULL: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox