* [PATCH 1/2] drm/i915/display_wa: Add helpers to check wa
2025-07-11 4:18 [PATCH 0/2] Introduce helper for display workarounds and add Wa_16025573575 Ankit Nautiyal
@ 2025-07-11 4:18 ` Ankit Nautiyal
2025-07-16 14:18 ` Gustavo Sousa
2025-07-11 4:19 ` [PATCH 2/2] drm/i915/gmbus: Add Wa_16025573575 for PTL/WCL for bit-bashing Ankit Nautiyal
` (7 subsequent siblings)
8 siblings, 1 reply; 17+ messages in thread
From: Ankit Nautiyal @ 2025-07-11 4:18 UTC (permalink / raw)
To: intel-gfx
Cc: intel-xe, gustavo.sousa, lucas.demarchi, ville.syrjala,
Ankit Nautiyal, Jani Nikula
Introduce a generic helper to check display workarounds using an enum.
Convert Wa_16023588340 to use the new interface, simplifying WA checks
and making future additions easier.
v2: Use drm_WARN instead of MISSING_CASE and simplify intel_display_wa
macro. (Jani)
v3: Print Missing wa number, instead of enum value. (Gustavo, Jani)
Suggested-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/display/intel_display_wa.c | 15 +++++++++++++++
drivers/gpu/drm/i915/display/intel_display_wa.h | 9 +++++++++
drivers/gpu/drm/i915/display/intel_fbc.c | 2 +-
3 files changed, 25 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/i915/display/intel_display_wa.c b/drivers/gpu/drm/i915/display/intel_display_wa.c
index f57280e9d041..32719e2c6025 100644
--- a/drivers/gpu/drm/i915/display/intel_display_wa.c
+++ b/drivers/gpu/drm/i915/display/intel_display_wa.c
@@ -3,6 +3,8 @@
* Copyright © 2023 Intel Corporation
*/
+#include <drm/drm_print.h>
+
#include "i915_reg.h"
#include "intel_de.h"
#include "intel_display_core.h"
@@ -39,3 +41,16 @@ void intel_display_wa_apply(struct intel_display *display)
else if (DISPLAY_VER(display) == 11)
gen11_display_wa_apply(display);
}
+
+bool __intel_display_wa(struct intel_display *display, enum intel_display_wa wa, const char *name)
+{
+ switch (wa) {
+ case INTEL_DISPLAY_WA_16023588340:
+ return intel_display_needs_wa_16023588340(display);
+ default:
+ drm_WARN(display->drm, 1, "Missing Wa number: %s\n", name);
+ break;
+ }
+
+ return false;
+}
diff --git a/drivers/gpu/drm/i915/display/intel_display_wa.h b/drivers/gpu/drm/i915/display/intel_display_wa.h
index babd9d16603d..8319e16eb460 100644
--- a/drivers/gpu/drm/i915/display/intel_display_wa.h
+++ b/drivers/gpu/drm/i915/display/intel_display_wa.h
@@ -21,4 +21,13 @@ static inline bool intel_display_needs_wa_16023588340(struct intel_display *disp
bool intel_display_needs_wa_16023588340(struct intel_display *display);
#endif
+enum intel_display_wa {
+ INTEL_DISPLAY_WA_16023588340,
+};
+
+bool __intel_display_wa(struct intel_display *display, enum intel_display_wa wa, const char *name);
+
+#define intel_display_wa(__display, __wa) \
+ __intel_display_wa((__display), INTEL_DISPLAY_WA_##__wa, __stringify(__wa))
+
#endif
diff --git a/drivers/gpu/drm/i915/display/intel_fbc.c b/drivers/gpu/drm/i915/display/intel_fbc.c
index 6e26cb4c5724..e2e03af520b2 100644
--- a/drivers/gpu/drm/i915/display/intel_fbc.c
+++ b/drivers/gpu/drm/i915/display/intel_fbc.c
@@ -1464,7 +1464,7 @@ static int intel_fbc_check_plane(struct intel_atomic_state *state,
return 0;
}
- if (intel_display_needs_wa_16023588340(display)) {
+ if (intel_display_wa(display, 16023588340)) {
plane_state->no_fbc_reason = "Wa_16023588340";
return 0;
}
--
2.45.2
^ permalink raw reply related [flat|nested] 17+ messages in thread* Re: [PATCH 1/2] drm/i915/display_wa: Add helpers to check wa
2025-07-11 4:18 ` [PATCH 1/2] drm/i915/display_wa: Add helpers to check wa Ankit Nautiyal
@ 2025-07-16 14:18 ` Gustavo Sousa
0 siblings, 0 replies; 17+ messages in thread
From: Gustavo Sousa @ 2025-07-16 14:18 UTC (permalink / raw)
To: Ankit Nautiyal, intel-gfx
Cc: intel-xe, lucas.demarchi, ville.syrjala, Ankit Nautiyal,
Jani Nikula
Quoting Ankit Nautiyal (2025-07-11 01:18:59-03:00)
>Introduce a generic helper to check display workarounds using an enum.
>
>Convert Wa_16023588340 to use the new interface, simplifying WA checks
>and making future additions easier.
>
>v2: Use drm_WARN instead of MISSING_CASE and simplify intel_display_wa
>macro. (Jani)
>v3: Print Missing wa number, instead of enum value. (Gustavo, Jani)
>
>Suggested-by: Jani Nikula <jani.nikula@intel.com>
>Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
>Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Reviewed-by: Gustavo Sousa <gustavo.sousa@intel.com>
>---
> drivers/gpu/drm/i915/display/intel_display_wa.c | 15 +++++++++++++++
> drivers/gpu/drm/i915/display/intel_display_wa.h | 9 +++++++++
> drivers/gpu/drm/i915/display/intel_fbc.c | 2 +-
> 3 files changed, 25 insertions(+), 1 deletion(-)
>
>diff --git a/drivers/gpu/drm/i915/display/intel_display_wa.c b/drivers/gpu/drm/i915/display/intel_display_wa.c
>index f57280e9d041..32719e2c6025 100644
>--- a/drivers/gpu/drm/i915/display/intel_display_wa.c
>+++ b/drivers/gpu/drm/i915/display/intel_display_wa.c
>@@ -3,6 +3,8 @@
> * Copyright © 2023 Intel Corporation
> */
>
>+#include <drm/drm_print.h>
>+
> #include "i915_reg.h"
> #include "intel_de.h"
> #include "intel_display_core.h"
>@@ -39,3 +41,16 @@ void intel_display_wa_apply(struct intel_display *display)
> else if (DISPLAY_VER(display) == 11)
> gen11_display_wa_apply(display);
> }
>+
>+bool __intel_display_wa(struct intel_display *display, enum intel_display_wa wa, const char *name)
>+{
>+ switch (wa) {
>+ case INTEL_DISPLAY_WA_16023588340:
>+ return intel_display_needs_wa_16023588340(display);
>+ default:
>+ drm_WARN(display->drm, 1, "Missing Wa number: %s\n", name);
>+ break;
>+ }
>+
>+ return false;
>+}
>diff --git a/drivers/gpu/drm/i915/display/intel_display_wa.h b/drivers/gpu/drm/i915/display/intel_display_wa.h
>index babd9d16603d..8319e16eb460 100644
>--- a/drivers/gpu/drm/i915/display/intel_display_wa.h
>+++ b/drivers/gpu/drm/i915/display/intel_display_wa.h
>@@ -21,4 +21,13 @@ static inline bool intel_display_needs_wa_16023588340(struct intel_display *disp
> bool intel_display_needs_wa_16023588340(struct intel_display *display);
> #endif
>
>+enum intel_display_wa {
>+ INTEL_DISPLAY_WA_16023588340,
>+};
>+
>+bool __intel_display_wa(struct intel_display *display, enum intel_display_wa wa, const char *name);
>+
>+#define intel_display_wa(__display, __wa) \
>+ __intel_display_wa((__display), INTEL_DISPLAY_WA_##__wa, __stringify(__wa))
>+
> #endif
>diff --git a/drivers/gpu/drm/i915/display/intel_fbc.c b/drivers/gpu/drm/i915/display/intel_fbc.c
>index 6e26cb4c5724..e2e03af520b2 100644
>--- a/drivers/gpu/drm/i915/display/intel_fbc.c
>+++ b/drivers/gpu/drm/i915/display/intel_fbc.c
>@@ -1464,7 +1464,7 @@ static int intel_fbc_check_plane(struct intel_atomic_state *state,
> return 0;
> }
>
>- if (intel_display_needs_wa_16023588340(display)) {
>+ if (intel_display_wa(display, 16023588340)) {
> plane_state->no_fbc_reason = "Wa_16023588340";
> return 0;
> }
>--
>2.45.2
>
^ permalink raw reply [flat|nested] 17+ messages in thread
* [PATCH 2/2] drm/i915/gmbus: Add Wa_16025573575 for PTL/WCL for bit-bashing
2025-07-11 4:18 [PATCH 0/2] Introduce helper for display workarounds and add Wa_16025573575 Ankit Nautiyal
2025-07-11 4:18 ` [PATCH 1/2] drm/i915/display_wa: Add helpers to check wa Ankit Nautiyal
@ 2025-07-11 4:19 ` Ankit Nautiyal
2025-07-11 11:37 ` Gustavo Sousa
2025-07-15 14:22 ` Ankit Nautiyal
2025-07-11 4:38 ` ✓ CI.KUnit: success for Introduce helper for display workarounds and add Wa_16025573575 (rev3) Patchwork
` (6 subsequent siblings)
8 siblings, 2 replies; 17+ messages in thread
From: Ankit Nautiyal @ 2025-07-11 4:19 UTC (permalink / raw)
To: intel-gfx
Cc: intel-xe, gustavo.sousa, lucas.demarchi, ville.syrjala,
Ankit Nautiyal
As per Wa_16025573575 for PTL/WCL, set the GPIO masks bit before starting
bit-bashing and maintain value through the bit-bashing sequence. After the
bit-bashing sequence is done, clear the GPIO masks bits.
v2:
-Use new helper for display workarounds. (Jani)
-Use a separate if-block for the workaround. (Gustavo)
v3:
-Document the workaround details in intel_display_wa.c
-Extend the workaround to WCL too. (Gustavo)
Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
.../gpu/drm/i915/display/intel_display_wa.c | 12 +++++++
.../gpu/drm/i915/display/intel_display_wa.h | 1 +
drivers/gpu/drm/i915/display/intel_gmbus.c | 34 +++++++++++++++++--
3 files changed, 45 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_display_wa.c b/drivers/gpu/drm/i915/display/intel_display_wa.c
index 32719e2c6025..0dbcc1d272c7 100644
--- a/drivers/gpu/drm/i915/display/intel_display_wa.c
+++ b/drivers/gpu/drm/i915/display/intel_display_wa.c
@@ -42,11 +42,23 @@ void intel_display_wa_apply(struct intel_display *display)
gen11_display_wa_apply(display);
}
+/*
+ * Wa_16025573575:
+ * Fixes: Issue with bitbashing on Xe3 based platforms.
+ * Workaround: Set masks bits in GPIO CTL and preserve it during bitbashing sequence.
+ */
+static bool intel_display_needs_wa_16025573575(struct intel_display *display)
+{
+ return DISPLAY_VER(display) == 30 || DISPLAY_VERx100(display) == 3002;
+}
+
bool __intel_display_wa(struct intel_display *display, enum intel_display_wa wa, const char *name)
{
switch (wa) {
case INTEL_DISPLAY_WA_16023588340:
return intel_display_needs_wa_16023588340(display);
+ case INTEL_DISPLAY_WA_16025573575:
+ return intel_display_needs_wa_16025573575(display);
default:
drm_WARN(display->drm, 1, "Missing Wa number: %s\n", name);
break;
diff --git a/drivers/gpu/drm/i915/display/intel_display_wa.h b/drivers/gpu/drm/i915/display/intel_display_wa.h
index 8319e16eb460..aedea4cfa3ce 100644
--- a/drivers/gpu/drm/i915/display/intel_display_wa.h
+++ b/drivers/gpu/drm/i915/display/intel_display_wa.h
@@ -23,6 +23,7 @@ bool intel_display_needs_wa_16023588340(struct intel_display *display);
enum intel_display_wa {
INTEL_DISPLAY_WA_16023588340,
+ INTEL_DISPLAY_WA_16025573575,
};
bool __intel_display_wa(struct intel_display *display, enum intel_display_wa wa, const char *name);
diff --git a/drivers/gpu/drm/i915/display/intel_gmbus.c b/drivers/gpu/drm/i915/display/intel_gmbus.c
index 0d73f32fe7f1..6d6c3611d6c1 100644
--- a/drivers/gpu/drm/i915/display/intel_gmbus.c
+++ b/drivers/gpu/drm/i915/display/intel_gmbus.c
@@ -39,6 +39,7 @@
#include "intel_de.h"
#include "intel_display_regs.h"
#include "intel_display_types.h"
+#include "intel_display_wa.h"
#include "intel_gmbus.h"
#include "intel_gmbus_regs.h"
@@ -241,11 +242,18 @@ static u32 get_reserved(struct intel_gmbus *bus)
{
struct intel_display *display = bus->display;
u32 reserved = 0;
+ u32 preserve_bits = 0;
/* On most chips, these bits must be preserved in software. */
if (!display->platform.i830 && !display->platform.i845g)
- reserved = intel_de_read_notrace(display, bus->gpio_reg) &
- (GPIO_DATA_PULLUP_DISABLE | GPIO_CLOCK_PULLUP_DISABLE);
+ preserve_bits |= GPIO_DATA_PULLUP_DISABLE | GPIO_CLOCK_PULLUP_DISABLE;
+
+ /* Wa_16025573575: the masks bits need to be preserved through out */
+ if (intel_display_wa(display, 16025573575))
+ preserve_bits |= GPIO_CLOCK_DIR_MASK | GPIO_CLOCK_VAL_MASK |
+ GPIO_DATA_DIR_MASK | GPIO_DATA_VAL_MASK;
+
+ reserved = intel_de_read_notrace(display, bus->gpio_reg) & preserve_bits;
return reserved;
}
@@ -308,6 +316,22 @@ static void set_data(void *data, int state_high)
intel_de_posting_read(display, bus->gpio_reg);
}
+static void
+ptl_handle_mask_bits(struct intel_gmbus *bus, bool set)
+{
+ struct intel_display *display = bus->display;
+ u32 reg_val = intel_de_read_notrace(display, bus->gpio_reg);
+ u32 mask_bits = GPIO_CLOCK_DIR_MASK | GPIO_CLOCK_VAL_MASK |
+ GPIO_DATA_DIR_MASK | GPIO_DATA_VAL_MASK;
+ if (set)
+ reg_val |= mask_bits;
+ else
+ reg_val &= ~mask_bits;
+
+ intel_de_write_notrace(display, bus->gpio_reg, reg_val);
+ intel_de_posting_read(display, bus->gpio_reg);
+}
+
static int
intel_gpio_pre_xfer(struct i2c_adapter *adapter)
{
@@ -319,6 +343,9 @@ intel_gpio_pre_xfer(struct i2c_adapter *adapter)
if (display->platform.pineview)
pnv_gmbus_clock_gating(display, false);
+ if (intel_display_wa(display, 16025573575))
+ ptl_handle_mask_bits(bus, true);
+
set_data(bus, 1);
set_clock(bus, 1);
udelay(I2C_RISEFALL_TIME);
@@ -336,6 +363,9 @@ intel_gpio_post_xfer(struct i2c_adapter *adapter)
if (display->platform.pineview)
pnv_gmbus_clock_gating(display, true);
+
+ if (intel_display_wa(display, 16025573575))
+ ptl_handle_mask_bits(bus, false);
}
static void
--
2.45.2
^ permalink raw reply related [flat|nested] 17+ messages in thread* Re: [PATCH 2/2] drm/i915/gmbus: Add Wa_16025573575 for PTL/WCL for bit-bashing
2025-07-11 4:19 ` [PATCH 2/2] drm/i915/gmbus: Add Wa_16025573575 for PTL/WCL for bit-bashing Ankit Nautiyal
@ 2025-07-11 11:37 ` Gustavo Sousa
2025-07-15 3:22 ` Nautiyal, Ankit K
2025-07-15 14:22 ` Ankit Nautiyal
1 sibling, 1 reply; 17+ messages in thread
From: Gustavo Sousa @ 2025-07-11 11:37 UTC (permalink / raw)
To: Ankit Nautiyal, intel-gfx
Cc: intel-xe, lucas.demarchi, ville.syrjala, Ankit Nautiyal
Quoting Ankit Nautiyal (2025-07-11 01:19:00-03:00)
>As per Wa_16025573575 for PTL/WCL, set the GPIO masks bit before starting
>bit-bashing and maintain value through the bit-bashing sequence. After the
>bit-bashing sequence is done, clear the GPIO masks bits.
>
>v2:
>-Use new helper for display workarounds. (Jani)
>-Use a separate if-block for the workaround. (Gustavo)
>
>v3:
>-Document the workaround details in intel_display_wa.c
>-Extend the workaround to WCL too. (Gustavo)
>
>Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
>---
> .../gpu/drm/i915/display/intel_display_wa.c | 12 +++++++
> .../gpu/drm/i915/display/intel_display_wa.h | 1 +
> drivers/gpu/drm/i915/display/intel_gmbus.c | 34 +++++++++++++++++--
> 3 files changed, 45 insertions(+), 2 deletions(-)
>
>diff --git a/drivers/gpu/drm/i915/display/intel_display_wa.c b/drivers/gpu/drm/i915/display/intel_display_wa.c
>index 32719e2c6025..0dbcc1d272c7 100644
>--- a/drivers/gpu/drm/i915/display/intel_display_wa.c
>+++ b/drivers/gpu/drm/i915/display/intel_display_wa.c
>@@ -42,11 +42,23 @@ void intel_display_wa_apply(struct intel_display *display)
> gen11_display_wa_apply(display);
> }
>
>+/*
>+ * Wa_16025573575:
>+ * Fixes: Issue with bitbashing on Xe3 based platforms.
>+ * Workaround: Set masks bits in GPIO CTL and preserve it during bitbashing sequence.
>+ */
>+static bool intel_display_needs_wa_16025573575(struct intel_display *display)
>+{
>+ return DISPLAY_VER(display) == 30 || DISPLAY_VERx100(display) == 3002;
Using DISPLAY_VER(display) == 30 would match any verx100 between 3000
and 3099. If in the future we come up with another variation of display
version 30 that does not need the workaround, we would endup applying
unnecessarily. So I think we should replace DISPLAY_VER(display) == 30
with DISPLAY_VERx100(display) == 3000.
>+}
>+
> bool __intel_display_wa(struct intel_display *display, enum intel_display_wa wa, const char *name)
> {
> switch (wa) {
> case INTEL_DISPLAY_WA_16023588340:
> return intel_display_needs_wa_16023588340(display);
>+ case INTEL_DISPLAY_WA_16025573575:
>+ return intel_display_needs_wa_16025573575(display);
> default:
> drm_WARN(display->drm, 1, "Missing Wa number: %s\n", name);
> break;
>diff --git a/drivers/gpu/drm/i915/display/intel_display_wa.h b/drivers/gpu/drm/i915/display/intel_display_wa.h
>index 8319e16eb460..aedea4cfa3ce 100644
>--- a/drivers/gpu/drm/i915/display/intel_display_wa.h
>+++ b/drivers/gpu/drm/i915/display/intel_display_wa.h
>@@ -23,6 +23,7 @@ bool intel_display_needs_wa_16023588340(struct intel_display *display);
>
> enum intel_display_wa {
> INTEL_DISPLAY_WA_16023588340,
>+ INTEL_DISPLAY_WA_16025573575,
> };
>
> bool __intel_display_wa(struct intel_display *display, enum intel_display_wa wa, const char *name);
>diff --git a/drivers/gpu/drm/i915/display/intel_gmbus.c b/drivers/gpu/drm/i915/display/intel_gmbus.c
>index 0d73f32fe7f1..6d6c3611d6c1 100644
>--- a/drivers/gpu/drm/i915/display/intel_gmbus.c
>+++ b/drivers/gpu/drm/i915/display/intel_gmbus.c
>@@ -39,6 +39,7 @@
> #include "intel_de.h"
> #include "intel_display_regs.h"
> #include "intel_display_types.h"
>+#include "intel_display_wa.h"
> #include "intel_gmbus.h"
> #include "intel_gmbus_regs.h"
>
>@@ -241,11 +242,18 @@ static u32 get_reserved(struct intel_gmbus *bus)
> {
> struct intel_display *display = bus->display;
> u32 reserved = 0;
>+ u32 preserve_bits = 0;
>
> /* On most chips, these bits must be preserved in software. */
> if (!display->platform.i830 && !display->platform.i845g)
>- reserved = intel_de_read_notrace(display, bus->gpio_reg) &
>- (GPIO_DATA_PULLUP_DISABLE | GPIO_CLOCK_PULLUP_DISABLE);
>+ preserve_bits |= GPIO_DATA_PULLUP_DISABLE | GPIO_CLOCK_PULLUP_DISABLE;
>+
>+ /* Wa_16025573575: the masks bits need to be preserved through out */
>+ if (intel_display_wa(display, 16025573575))
>+ preserve_bits |= GPIO_CLOCK_DIR_MASK | GPIO_CLOCK_VAL_MASK |
>+ GPIO_DATA_DIR_MASK | GPIO_DATA_VAL_MASK;
>+
>+ reserved = intel_de_read_notrace(display, bus->gpio_reg) & preserve_bits;
Maybe we can skip a register read if preserve_bits is zero?
--
Gustavo Sousa
>
> return reserved;
> }
>@@ -308,6 +316,22 @@ static void set_data(void *data, int state_high)
> intel_de_posting_read(display, bus->gpio_reg);
> }
>
>+static void
>+ptl_handle_mask_bits(struct intel_gmbus *bus, bool set)
>+{
>+ struct intel_display *display = bus->display;
>+ u32 reg_val = intel_de_read_notrace(display, bus->gpio_reg);
>+ u32 mask_bits = GPIO_CLOCK_DIR_MASK | GPIO_CLOCK_VAL_MASK |
>+ GPIO_DATA_DIR_MASK | GPIO_DATA_VAL_MASK;
>+ if (set)
>+ reg_val |= mask_bits;
>+ else
>+ reg_val &= ~mask_bits;
>+
>+ intel_de_write_notrace(display, bus->gpio_reg, reg_val);
>+ intel_de_posting_read(display, bus->gpio_reg);
>+}
>+
> static int
> intel_gpio_pre_xfer(struct i2c_adapter *adapter)
> {
>@@ -319,6 +343,9 @@ intel_gpio_pre_xfer(struct i2c_adapter *adapter)
> if (display->platform.pineview)
> pnv_gmbus_clock_gating(display, false);
>
>+ if (intel_display_wa(display, 16025573575))
>+ ptl_handle_mask_bits(bus, true);
>+
> set_data(bus, 1);
> set_clock(bus, 1);
> udelay(I2C_RISEFALL_TIME);
>@@ -336,6 +363,9 @@ intel_gpio_post_xfer(struct i2c_adapter *adapter)
>
> if (display->platform.pineview)
> pnv_gmbus_clock_gating(display, true);
>+
>+ if (intel_display_wa(display, 16025573575))
>+ ptl_handle_mask_bits(bus, false);
> }
>
> static void
>--
>2.45.2
>
^ permalink raw reply [flat|nested] 17+ messages in thread* Re: [PATCH 2/2] drm/i915/gmbus: Add Wa_16025573575 for PTL/WCL for bit-bashing
2025-07-11 11:37 ` Gustavo Sousa
@ 2025-07-15 3:22 ` Nautiyal, Ankit K
0 siblings, 0 replies; 17+ messages in thread
From: Nautiyal, Ankit K @ 2025-07-15 3:22 UTC (permalink / raw)
To: Gustavo Sousa, intel-gfx; +Cc: intel-xe, lucas.demarchi, ville.syrjala
On 7/11/2025 5:07 PM, Gustavo Sousa wrote:
> Quoting Ankit Nautiyal (2025-07-11 01:19:00-03:00)
>> As per Wa_16025573575 for PTL/WCL, set the GPIO masks bit before starting
>> bit-bashing and maintain value through the bit-bashing sequence. After the
>> bit-bashing sequence is done, clear the GPIO masks bits.
>>
>> v2:
>> -Use new helper for display workarounds. (Jani)
>> -Use a separate if-block for the workaround. (Gustavo)
>>
>> v3:
>> -Document the workaround details in intel_display_wa.c
>> -Extend the workaround to WCL too. (Gustavo)
>>
>> Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
>> ---
>> .../gpu/drm/i915/display/intel_display_wa.c | 12 +++++++
>> .../gpu/drm/i915/display/intel_display_wa.h | 1 +
>> drivers/gpu/drm/i915/display/intel_gmbus.c | 34 +++++++++++++++++--
>> 3 files changed, 45 insertions(+), 2 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/i915/display/intel_display_wa.c b/drivers/gpu/drm/i915/display/intel_display_wa.c
>> index 32719e2c6025..0dbcc1d272c7 100644
>> --- a/drivers/gpu/drm/i915/display/intel_display_wa.c
>> +++ b/drivers/gpu/drm/i915/display/intel_display_wa.c
>> @@ -42,11 +42,23 @@ void intel_display_wa_apply(struct intel_display *display)
>> gen11_display_wa_apply(display);
>> }
>>
>> +/*
>> + * Wa_16025573575:
>> + * Fixes: Issue with bitbashing on Xe3 based platforms.
>> + * Workaround: Set masks bits in GPIO CTL and preserve it during bitbashing sequence.
>> + */
>> +static bool intel_display_needs_wa_16025573575(struct intel_display *display)
>> +{
>> + return DISPLAY_VER(display) == 30 || DISPLAY_VERx100(display) == 3002;
> Using DISPLAY_VER(display) == 30 would match any verx100 between 3000
> and 3099. If in the future we come up with another variation of display
> version 30 that does not need the workaround, we would endup applying
> unnecessarily. So I think we should replace DISPLAY_VER(display) == 30
> with DISPLAY_VERx100(display) == 3000.
You are right Gustavo.
I will change this to DISPLAY_VERx100(display) == 3000 ||
DISPLAY_VERx100(display) == 3002.
>
>> +}
>> +
>> bool __intel_display_wa(struct intel_display *display, enum intel_display_wa wa, const char *name)
>> {
>> switch (wa) {
>> case INTEL_DISPLAY_WA_16023588340:
>> return intel_display_needs_wa_16023588340(display);
>> + case INTEL_DISPLAY_WA_16025573575:
>> + return intel_display_needs_wa_16025573575(display);
>> default:
>> drm_WARN(display->drm, 1, "Missing Wa number: %s\n", name);
>> break;
>> diff --git a/drivers/gpu/drm/i915/display/intel_display_wa.h b/drivers/gpu/drm/i915/display/intel_display_wa.h
>> index 8319e16eb460..aedea4cfa3ce 100644
>> --- a/drivers/gpu/drm/i915/display/intel_display_wa.h
>> +++ b/drivers/gpu/drm/i915/display/intel_display_wa.h
>> @@ -23,6 +23,7 @@ bool intel_display_needs_wa_16023588340(struct intel_display *display);
>>
>> enum intel_display_wa {
>> INTEL_DISPLAY_WA_16023588340,
>> + INTEL_DISPLAY_WA_16025573575,
>> };
>>
>> bool __intel_display_wa(struct intel_display *display, enum intel_display_wa wa, const char *name);
>> diff --git a/drivers/gpu/drm/i915/display/intel_gmbus.c b/drivers/gpu/drm/i915/display/intel_gmbus.c
>> index 0d73f32fe7f1..6d6c3611d6c1 100644
>> --- a/drivers/gpu/drm/i915/display/intel_gmbus.c
>> +++ b/drivers/gpu/drm/i915/display/intel_gmbus.c
>> @@ -39,6 +39,7 @@
>> #include "intel_de.h"
>> #include "intel_display_regs.h"
>> #include "intel_display_types.h"
>> +#include "intel_display_wa.h"
>> #include "intel_gmbus.h"
>> #include "intel_gmbus_regs.h"
>>
>> @@ -241,11 +242,18 @@ static u32 get_reserved(struct intel_gmbus *bus)
>> {
>> struct intel_display *display = bus->display;
>> u32 reserved = 0;
>> + u32 preserve_bits = 0;
>>
>> /* On most chips, these bits must be preserved in software. */
>> if (!display->platform.i830 && !display->platform.i845g)
>> - reserved = intel_de_read_notrace(display, bus->gpio_reg) &
>> - (GPIO_DATA_PULLUP_DISABLE | GPIO_CLOCK_PULLUP_DISABLE);
>> + preserve_bits |= GPIO_DATA_PULLUP_DISABLE | GPIO_CLOCK_PULLUP_DISABLE;
>> +
>> + /* Wa_16025573575: the masks bits need to be preserved through out */
>> + if (intel_display_wa(display, 16025573575))
>> + preserve_bits |= GPIO_CLOCK_DIR_MASK | GPIO_CLOCK_VAL_MASK |
>> + GPIO_DATA_DIR_MASK | GPIO_DATA_VAL_MASK;
>> +
>> + reserved = intel_de_read_notrace(display, bus->gpio_reg) & preserve_bits;
> Maybe we can skip a register read if preserve_bits is zero?
Hmm.. that will be only true for platform i830 and i845g as of now.
But yes makes sense to retain the original intent for these platforms.
So I will change to below:
static u32 get_reserved(struct intel_gmbus *bus)
{
struct intel_display *display = bus->display;
u32 preserve_bits = 0;
if (display->platform.i830 || display->platform.i845g)
return 0;
/* On most chips, these bits must be preserved in software. */
preserve_bits |= GPIO_DATA_PULLUP_DISABLE |
GPIO_CLOCK_PULLUP_DISABLE;
/* Wa_16025573575: the masks bits need to be preserved through
out */
if (intel_display_wa(display, 16025573575))
preserve_bits |= GPIO_CLOCK_DIR_MASK |
GPIO_CLOCK_VAL_MASK |
GPIO_DATA_DIR_MASK | GPIO_DATA_VAL_MASK;
return intel_de_read_notrace(display, bus->gpio_reg) &
preserve_bits;
}
Thanks & Regards,
Ankit
>
> --
> Gustavo Sousa
>
>> return reserved;
>> }
>> @@ -308,6 +316,22 @@ static void set_data(void *data, int state_high)
>> intel_de_posting_read(display, bus->gpio_reg);
>> }
>>
>> +static void
>> +ptl_handle_mask_bits(struct intel_gmbus *bus, bool set)
>> +{
>> + struct intel_display *display = bus->display;
>> + u32 reg_val = intel_de_read_notrace(display, bus->gpio_reg);
>> + u32 mask_bits = GPIO_CLOCK_DIR_MASK | GPIO_CLOCK_VAL_MASK |
>> + GPIO_DATA_DIR_MASK | GPIO_DATA_VAL_MASK;
>> + if (set)
>> + reg_val |= mask_bits;
>> + else
>> + reg_val &= ~mask_bits;
>> +
>> + intel_de_write_notrace(display, bus->gpio_reg, reg_val);
>> + intel_de_posting_read(display, bus->gpio_reg);
>> +}
>> +
>> static int
>> intel_gpio_pre_xfer(struct i2c_adapter *adapter)
>> {
>> @@ -319,6 +343,9 @@ intel_gpio_pre_xfer(struct i2c_adapter *adapter)
>> if (display->platform.pineview)
>> pnv_gmbus_clock_gating(display, false);
>>
>> + if (intel_display_wa(display, 16025573575))
>> + ptl_handle_mask_bits(bus, true);
>> +
>> set_data(bus, 1);
>> set_clock(bus, 1);
>> udelay(I2C_RISEFALL_TIME);
>> @@ -336,6 +363,9 @@ intel_gpio_post_xfer(struct i2c_adapter *adapter)
>>
>> if (display->platform.pineview)
>> pnv_gmbus_clock_gating(display, true);
>> +
>> + if (intel_display_wa(display, 16025573575))
>> + ptl_handle_mask_bits(bus, false);
>> }
>>
>> static void
>> --
>> 2.45.2
>>
^ permalink raw reply [flat|nested] 17+ messages in thread
* [PATCH 2/2] drm/i915/gmbus: Add Wa_16025573575 for PTL/WCL for bit-bashing
2025-07-11 4:19 ` [PATCH 2/2] drm/i915/gmbus: Add Wa_16025573575 for PTL/WCL for bit-bashing Ankit Nautiyal
2025-07-11 11:37 ` Gustavo Sousa
@ 2025-07-15 14:22 ` Ankit Nautiyal
2025-07-15 15:56 ` Gustavo Sousa
1 sibling, 1 reply; 17+ messages in thread
From: Ankit Nautiyal @ 2025-07-15 14:22 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe, jani.nikula, gustavo.sousa, Ankit Nautiyal
As per Wa_16025573575 for PTL/WCL, set the GPIO masks bit before starting
bit-bashing and maintain value through the bit-bashing sequence. After the
bit-bashing sequence is done, clear the GPIO masks bits.
v2:
-Use new helper for display workarounds. (Jani)
-Use a separate if-block for the workaround. (Gustavo)
v3:
-Document the workaround details in intel_display_wa.c
-Extend the workaround to WCL too. (Gustavo)
v4:
-Fix the platform check. (Gustavo)
-Avoid read when preserve bits are 0. (Gustavo)
Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
.../gpu/drm/i915/display/intel_display_wa.c | 12 ++++++
.../gpu/drm/i915/display/intel_display_wa.h | 1 +
drivers/gpu/drm/i915/display/intel_gmbus.c | 39 ++++++++++++++++---
3 files changed, 47 insertions(+), 5 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_display_wa.c b/drivers/gpu/drm/i915/display/intel_display_wa.c
index 32719e2c6025..399c08902413 100644
--- a/drivers/gpu/drm/i915/display/intel_display_wa.c
+++ b/drivers/gpu/drm/i915/display/intel_display_wa.c
@@ -42,11 +42,23 @@ void intel_display_wa_apply(struct intel_display *display)
gen11_display_wa_apply(display);
}
+/*
+ * Wa_16025573575:
+ * Fixes: Issue with bitbashing on Xe3 based platforms.
+ * Workaround: Set masks bits in GPIO CTL and preserve it during bitbashing sequence.
+ */
+static bool intel_display_needs_wa_16025573575(struct intel_display *display)
+{
+ return DISPLAY_VERx100(display) == 3000 || DISPLAY_VERx100(display) == 3002;
+}
+
bool __intel_display_wa(struct intel_display *display, enum intel_display_wa wa, const char *name)
{
switch (wa) {
case INTEL_DISPLAY_WA_16023588340:
return intel_display_needs_wa_16023588340(display);
+ case INTEL_DISPLAY_WA_16025573575:
+ return intel_display_needs_wa_16025573575(display);
default:
drm_WARN(display->drm, 1, "Missing Wa number: %s\n", name);
break;
diff --git a/drivers/gpu/drm/i915/display/intel_display_wa.h b/drivers/gpu/drm/i915/display/intel_display_wa.h
index 8319e16eb460..aedea4cfa3ce 100644
--- a/drivers/gpu/drm/i915/display/intel_display_wa.h
+++ b/drivers/gpu/drm/i915/display/intel_display_wa.h
@@ -23,6 +23,7 @@ bool intel_display_needs_wa_16023588340(struct intel_display *display);
enum intel_display_wa {
INTEL_DISPLAY_WA_16023588340,
+ INTEL_DISPLAY_WA_16025573575,
};
bool __intel_display_wa(struct intel_display *display, enum intel_display_wa wa, const char *name);
diff --git a/drivers/gpu/drm/i915/display/intel_gmbus.c b/drivers/gpu/drm/i915/display/intel_gmbus.c
index 0d73f32fe7f1..637f0f23f163 100644
--- a/drivers/gpu/drm/i915/display/intel_gmbus.c
+++ b/drivers/gpu/drm/i915/display/intel_gmbus.c
@@ -39,6 +39,7 @@
#include "intel_de.h"
#include "intel_display_regs.h"
#include "intel_display_types.h"
+#include "intel_display_wa.h"
#include "intel_gmbus.h"
#include "intel_gmbus_regs.h"
@@ -240,14 +241,20 @@ static void bxt_gmbus_clock_gating(struct intel_display *display,
static u32 get_reserved(struct intel_gmbus *bus)
{
struct intel_display *display = bus->display;
- u32 reserved = 0;
+ u32 preserve_bits = 0;
+
+ if (display->platform.i830 || display->platform.i845g)
+ return 0;
/* On most chips, these bits must be preserved in software. */
- if (!display->platform.i830 && !display->platform.i845g)
- reserved = intel_de_read_notrace(display, bus->gpio_reg) &
- (GPIO_DATA_PULLUP_DISABLE | GPIO_CLOCK_PULLUP_DISABLE);
+ preserve_bits |= GPIO_DATA_PULLUP_DISABLE | GPIO_CLOCK_PULLUP_DISABLE;
+
+ /* Wa_16025573575: the masks bits need to be preserved through out */
+ if (intel_display_wa(display, 16025573575))
+ preserve_bits |= GPIO_CLOCK_DIR_MASK | GPIO_CLOCK_VAL_MASK |
+ GPIO_DATA_DIR_MASK | GPIO_DATA_VAL_MASK;
- return reserved;
+ return intel_de_read_notrace(display, bus->gpio_reg) & preserve_bits;
}
static int get_clock(void *data)
@@ -308,6 +315,22 @@ static void set_data(void *data, int state_high)
intel_de_posting_read(display, bus->gpio_reg);
}
+static void
+ptl_handle_mask_bits(struct intel_gmbus *bus, bool set)
+{
+ struct intel_display *display = bus->display;
+ u32 reg_val = intel_de_read_notrace(display, bus->gpio_reg);
+ u32 mask_bits = GPIO_CLOCK_DIR_MASK | GPIO_CLOCK_VAL_MASK |
+ GPIO_DATA_DIR_MASK | GPIO_DATA_VAL_MASK;
+ if (set)
+ reg_val |= mask_bits;
+ else
+ reg_val &= ~mask_bits;
+
+ intel_de_write_notrace(display, bus->gpio_reg, reg_val);
+ intel_de_posting_read(display, bus->gpio_reg);
+}
+
static int
intel_gpio_pre_xfer(struct i2c_adapter *adapter)
{
@@ -319,6 +342,9 @@ intel_gpio_pre_xfer(struct i2c_adapter *adapter)
if (display->platform.pineview)
pnv_gmbus_clock_gating(display, false);
+ if (intel_display_wa(display, 16025573575))
+ ptl_handle_mask_bits(bus, true);
+
set_data(bus, 1);
set_clock(bus, 1);
udelay(I2C_RISEFALL_TIME);
@@ -336,6 +362,9 @@ intel_gpio_post_xfer(struct i2c_adapter *adapter)
if (display->platform.pineview)
pnv_gmbus_clock_gating(display, true);
+
+ if (intel_display_wa(display, 16025573575))
+ ptl_handle_mask_bits(bus, false);
}
static void
--
2.45.2
^ permalink raw reply related [flat|nested] 17+ messages in thread* Re: [PATCH 2/2] drm/i915/gmbus: Add Wa_16025573575 for PTL/WCL for bit-bashing
2025-07-15 14:22 ` Ankit Nautiyal
@ 2025-07-15 15:56 ` Gustavo Sousa
0 siblings, 0 replies; 17+ messages in thread
From: Gustavo Sousa @ 2025-07-15 15:56 UTC (permalink / raw)
To: Ankit Nautiyal, intel-gfx; +Cc: intel-xe, jani.nikula, Ankit Nautiyal
Quoting Ankit Nautiyal (2025-07-15 11:22:11-03:00)
>As per Wa_16025573575 for PTL/WCL, set the GPIO masks bit before starting
>bit-bashing and maintain value through the bit-bashing sequence. After the
>bit-bashing sequence is done, clear the GPIO masks bits.
>
>v2:
>-Use new helper for display workarounds. (Jani)
>-Use a separate if-block for the workaround. (Gustavo)
>
>v3:
>-Document the workaround details in intel_display_wa.c
>-Extend the workaround to WCL too. (Gustavo)
>
>v4:
>-Fix the platform check. (Gustavo)
>-Avoid read when preserve bits are 0. (Gustavo)
>
>Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Reviewed-by: Gustavo Sousa <gustavo.sousa@intel.com>
>---
> .../gpu/drm/i915/display/intel_display_wa.c | 12 ++++++
> .../gpu/drm/i915/display/intel_display_wa.h | 1 +
> drivers/gpu/drm/i915/display/intel_gmbus.c | 39 ++++++++++++++++---
> 3 files changed, 47 insertions(+), 5 deletions(-)
>
>diff --git a/drivers/gpu/drm/i915/display/intel_display_wa.c b/drivers/gpu/drm/i915/display/intel_display_wa.c
>index 32719e2c6025..399c08902413 100644
>--- a/drivers/gpu/drm/i915/display/intel_display_wa.c
>+++ b/drivers/gpu/drm/i915/display/intel_display_wa.c
>@@ -42,11 +42,23 @@ void intel_display_wa_apply(struct intel_display *display)
> gen11_display_wa_apply(display);
> }
>
>+/*
>+ * Wa_16025573575:
>+ * Fixes: Issue with bitbashing on Xe3 based platforms.
>+ * Workaround: Set masks bits in GPIO CTL and preserve it during bitbashing sequence.
>+ */
>+static bool intel_display_needs_wa_16025573575(struct intel_display *display)
>+{
>+ return DISPLAY_VERx100(display) == 3000 || DISPLAY_VERx100(display) == 3002;
>+}
>+
> bool __intel_display_wa(struct intel_display *display, enum intel_display_wa wa, const char *name)
> {
> switch (wa) {
> case INTEL_DISPLAY_WA_16023588340:
> return intel_display_needs_wa_16023588340(display);
>+ case INTEL_DISPLAY_WA_16025573575:
>+ return intel_display_needs_wa_16025573575(display);
> default:
> drm_WARN(display->drm, 1, "Missing Wa number: %s\n", name);
> break;
>diff --git a/drivers/gpu/drm/i915/display/intel_display_wa.h b/drivers/gpu/drm/i915/display/intel_display_wa.h
>index 8319e16eb460..aedea4cfa3ce 100644
>--- a/drivers/gpu/drm/i915/display/intel_display_wa.h
>+++ b/drivers/gpu/drm/i915/display/intel_display_wa.h
>@@ -23,6 +23,7 @@ bool intel_display_needs_wa_16023588340(struct intel_display *display);
>
> enum intel_display_wa {
> INTEL_DISPLAY_WA_16023588340,
>+ INTEL_DISPLAY_WA_16025573575,
> };
>
> bool __intel_display_wa(struct intel_display *display, enum intel_display_wa wa, const char *name);
>diff --git a/drivers/gpu/drm/i915/display/intel_gmbus.c b/drivers/gpu/drm/i915/display/intel_gmbus.c
>index 0d73f32fe7f1..637f0f23f163 100644
>--- a/drivers/gpu/drm/i915/display/intel_gmbus.c
>+++ b/drivers/gpu/drm/i915/display/intel_gmbus.c
>@@ -39,6 +39,7 @@
> #include "intel_de.h"
> #include "intel_display_regs.h"
> #include "intel_display_types.h"
>+#include "intel_display_wa.h"
> #include "intel_gmbus.h"
> #include "intel_gmbus_regs.h"
>
>@@ -240,14 +241,20 @@ static void bxt_gmbus_clock_gating(struct intel_display *display,
> static u32 get_reserved(struct intel_gmbus *bus)
> {
> struct intel_display *display = bus->display;
>- u32 reserved = 0;
>+ u32 preserve_bits = 0;
>+
>+ if (display->platform.i830 || display->platform.i845g)
>+ return 0;
>
> /* On most chips, these bits must be preserved in software. */
>- if (!display->platform.i830 && !display->platform.i845g)
>- reserved = intel_de_read_notrace(display, bus->gpio_reg) &
>- (GPIO_DATA_PULLUP_DISABLE | GPIO_CLOCK_PULLUP_DISABLE);
>+ preserve_bits |= GPIO_DATA_PULLUP_DISABLE | GPIO_CLOCK_PULLUP_DISABLE;
>+
>+ /* Wa_16025573575: the masks bits need to be preserved through out */
>+ if (intel_display_wa(display, 16025573575))
>+ preserve_bits |= GPIO_CLOCK_DIR_MASK | GPIO_CLOCK_VAL_MASK |
>+ GPIO_DATA_DIR_MASK | GPIO_DATA_VAL_MASK;
>
>- return reserved;
>+ return intel_de_read_notrace(display, bus->gpio_reg) & preserve_bits;
> }
>
> static int get_clock(void *data)
>@@ -308,6 +315,22 @@ static void set_data(void *data, int state_high)
> intel_de_posting_read(display, bus->gpio_reg);
> }
>
>+static void
>+ptl_handle_mask_bits(struct intel_gmbus *bus, bool set)
>+{
>+ struct intel_display *display = bus->display;
>+ u32 reg_val = intel_de_read_notrace(display, bus->gpio_reg);
>+ u32 mask_bits = GPIO_CLOCK_DIR_MASK | GPIO_CLOCK_VAL_MASK |
>+ GPIO_DATA_DIR_MASK | GPIO_DATA_VAL_MASK;
>+ if (set)
>+ reg_val |= mask_bits;
>+ else
>+ reg_val &= ~mask_bits;
>+
>+ intel_de_write_notrace(display, bus->gpio_reg, reg_val);
>+ intel_de_posting_read(display, bus->gpio_reg);
>+}
>+
> static int
> intel_gpio_pre_xfer(struct i2c_adapter *adapter)
> {
>@@ -319,6 +342,9 @@ intel_gpio_pre_xfer(struct i2c_adapter *adapter)
> if (display->platform.pineview)
> pnv_gmbus_clock_gating(display, false);
>
>+ if (intel_display_wa(display, 16025573575))
>+ ptl_handle_mask_bits(bus, true);
>+
> set_data(bus, 1);
> set_clock(bus, 1);
> udelay(I2C_RISEFALL_TIME);
>@@ -336,6 +362,9 @@ intel_gpio_post_xfer(struct i2c_adapter *adapter)
>
> if (display->platform.pineview)
> pnv_gmbus_clock_gating(display, true);
>+
>+ if (intel_display_wa(display, 16025573575))
>+ ptl_handle_mask_bits(bus, false);
> }
>
> static void
>--
>2.45.2
>
^ permalink raw reply [flat|nested] 17+ messages in thread
* ✓ CI.KUnit: success for Introduce helper for display workarounds and add Wa_16025573575 (rev3)
2025-07-11 4:18 [PATCH 0/2] Introduce helper for display workarounds and add Wa_16025573575 Ankit Nautiyal
2025-07-11 4:18 ` [PATCH 1/2] drm/i915/display_wa: Add helpers to check wa Ankit Nautiyal
2025-07-11 4:19 ` [PATCH 2/2] drm/i915/gmbus: Add Wa_16025573575 for PTL/WCL for bit-bashing Ankit Nautiyal
@ 2025-07-11 4:38 ` Patchwork
2025-07-11 5:31 ` ✓ Xe.CI.BAT: " Patchwork
` (5 subsequent siblings)
8 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2025-07-11 4:38 UTC (permalink / raw)
To: Ankit Nautiyal; +Cc: intel-xe
== Series Details ==
Series: Introduce helper for display workarounds and add Wa_16025573575 (rev3)
URL : https://patchwork.freedesktop.org/series/150935/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[04:36:53] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[04:36:57] 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
[04:37:25] Starting KUnit Kernel (1/1)...
[04:37:25] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[04:37:25] ================== guc_buf (11 subtests) ===================
[04:37:25] [PASSED] test_smallest
[04:37:25] [PASSED] test_largest
[04:37:25] [PASSED] test_granular
[04:37:25] [PASSED] test_unique
[04:37:25] [PASSED] test_overlap
[04:37:25] [PASSED] test_reusable
[04:37:25] [PASSED] test_too_big
[04:37:25] [PASSED] test_flush
[04:37:25] [PASSED] test_lookup
[04:37:25] [PASSED] test_data
[04:37:25] [PASSED] test_class
[04:37:25] ===================== [PASSED] guc_buf =====================
[04:37:25] =================== guc_dbm (7 subtests) ===================
[04:37:25] [PASSED] test_empty
[04:37:25] [PASSED] test_default
[04:37:25] ======================== test_size ========================
[04:37:25] [PASSED] 4
[04:37:25] [PASSED] 8
[04:37:25] [PASSED] 32
[04:37:25] [PASSED] 256
[04:37:25] ==================== [PASSED] test_size ====================
[04:37:25] ======================= test_reuse ========================
[04:37:25] [PASSED] 4
[04:37:25] [PASSED] 8
[04:37:25] [PASSED] 32
[04:37:25] [PASSED] 256
[04:37:25] =================== [PASSED] test_reuse ====================
[04:37:25] =================== test_range_overlap ====================
[04:37:25] [PASSED] 4
[04:37:25] [PASSED] 8
[04:37:25] [PASSED] 32
[04:37:25] [PASSED] 256
[04:37:25] =============== [PASSED] test_range_overlap ================
[04:37:25] =================== test_range_compact ====================
[04:37:25] [PASSED] 4
[04:37:25] [PASSED] 8
[04:37:25] [PASSED] 32
[04:37:25] [PASSED] 256
[04:37:25] =============== [PASSED] test_range_compact ================
[04:37:25] ==================== test_range_spare =====================
[04:37:25] [PASSED] 4
[04:37:25] [PASSED] 8
[04:37:25] [PASSED] 32
[04:37:25] [PASSED] 256
[04:37:25] ================ [PASSED] test_range_spare =================
[04:37:25] ===================== [PASSED] guc_dbm =====================
[04:37:25] =================== guc_idm (6 subtests) ===================
[04:37:25] [PASSED] bad_init
[04:37:25] [PASSED] no_init
[04:37:25] [PASSED] init_fini
[04:37:25] [PASSED] check_used
[04:37:25] [PASSED] check_quota
[04:37:25] [PASSED] check_all
[04:37:25] ===================== [PASSED] guc_idm =====================
[04:37:25] ================== no_relay (3 subtests) ===================
[04:37:25] [PASSED] xe_drops_guc2pf_if_not_ready
[04:37:25] [PASSED] xe_drops_guc2vf_if_not_ready
[04:37:25] [PASSED] xe_rejects_send_if_not_ready
[04:37:25] ==================== [PASSED] no_relay =====================
[04:37:25] ================== pf_relay (14 subtests) ==================
[04:37:25] [PASSED] pf_rejects_guc2pf_too_short
[04:37:25] [PASSED] pf_rejects_guc2pf_too_long
[04:37:25] [PASSED] pf_rejects_guc2pf_no_payload
[04:37:25] [PASSED] pf_fails_no_payload
[04:37:25] [PASSED] pf_fails_bad_origin
[04:37:25] [PASSED] pf_fails_bad_type
[04:37:25] [PASSED] pf_txn_reports_error
[04:37:25] [PASSED] pf_txn_sends_pf2guc
[04:37:25] [PASSED] pf_sends_pf2guc
[04:37:25] [SKIPPED] pf_loopback_nop
[04:37:25] [SKIPPED] pf_loopback_echo
[04:37:25] [SKIPPED] pf_loopback_fail
[04:37:25] [SKIPPED] pf_loopback_busy
[04:37:25] [SKIPPED] pf_loopback_retry
[04:37:25] ==================== [PASSED] pf_relay =====================
[04:37:25] ================== vf_relay (3 subtests) ===================
[04:37:25] [PASSED] vf_rejects_guc2vf_too_short
[04:37:25] [PASSED] vf_rejects_guc2vf_too_long
[04:37:25] [PASSED] vf_rejects_guc2vf_no_payload
[04:37:25] ==================== [PASSED] vf_relay =====================
[04:37:25] ================= pf_service (11 subtests) =================
[04:37:25] [PASSED] pf_negotiate_any
[04:37:25] [PASSED] pf_negotiate_base_match
[04:37:25] [PASSED] pf_negotiate_base_newer
[04:37:25] [PASSED] pf_negotiate_base_next
[04:37:25] [SKIPPED] pf_negotiate_base_older
[04:37:25] [PASSED] pf_negotiate_base_prev
[04:37:25] [PASSED] pf_negotiate_latest_match
[04:37:25] [PASSED] pf_negotiate_latest_newer
[04:37:25] [PASSED] pf_negotiate_latest_next
[04:37:25] [SKIPPED] pf_negotiate_latest_older
[04:37:25] [SKIPPED] pf_negotiate_latest_prev
[04:37:25] =================== [PASSED] pf_service ====================
[04:37:25] ===================== lmtt (1 subtest) =====================
[04:37:25] ======================== test_ops =========================
[04:37:25] [PASSED] 2-level
[04:37:25] [PASSED] multi-level
[04:37:25] ==================== [PASSED] test_ops =====================
[04:37:25] ====================== [PASSED] lmtt =======================
[04:37:25] =================== xe_mocs (2 subtests) ===================
[04:37:25] ================ xe_live_mocs_kernel_kunit ================
[04:37:25] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[04:37:25] ================ xe_live_mocs_reset_kunit =================
[04:37:25] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[04:37:25] ==================== [SKIPPED] xe_mocs =====================
[04:37:25] ================= xe_migrate (2 subtests) ==================
[04:37:25] ================= xe_migrate_sanity_kunit =================
[04:37:25] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[04:37:25] ================== xe_validate_ccs_kunit ==================
[04:37:25] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[04:37:25] =================== [SKIPPED] xe_migrate ===================
[04:37:25] ================== xe_dma_buf (1 subtest) ==================
[04:37:25] ==================== xe_dma_buf_kunit =====================
[04:37:25] ================ [SKIPPED] xe_dma_buf_kunit ================
[04:37:25] =================== [SKIPPED] xe_dma_buf ===================
[04:37:25] ================= xe_bo_shrink (1 subtest) =================
[04:37:25] =================== xe_bo_shrink_kunit ====================
[04:37:25] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[04:37:25] ================== [SKIPPED] xe_bo_shrink ==================
[04:37:25] ==================== xe_bo (2 subtests) ====================
[04:37:25] ================== xe_ccs_migrate_kunit ===================
[04:37:25] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[04:37:25] ==================== xe_bo_evict_kunit ====================
[04:37:25] =============== [SKIPPED] xe_bo_evict_kunit ================
[04:37:25] ===================== [SKIPPED] xe_bo ======================
[04:37:25] ==================== args (11 subtests) ====================
[04:37:25] [PASSED] count_args_test
[04:37:25] [PASSED] call_args_example
[04:37:25] [PASSED] call_args_test
[04:37:25] [PASSED] drop_first_arg_example
[04:37:25] [PASSED] drop_first_arg_test
[04:37:25] [PASSED] first_arg_example
[04:37:25] [PASSED] first_arg_test
[04:37:25] [PASSED] last_arg_example
[04:37:25] [PASSED] last_arg_test
[04:37:25] [PASSED] pick_arg_example
[04:37:25] [PASSED] sep_comma_example
[04:37:25] ====================== [PASSED] args =======================
[04:37:25] =================== xe_pci (3 subtests) ====================
[04:37:25] ==================== check_graphics_ip ====================
[04:37:25] [PASSED] 12.70 Xe_LPG
[04:37:25] [PASSED] 12.71 Xe_LPG
[04:37:25] [PASSED] 12.74 Xe_LPG+
[04:37:25] [PASSED] 20.01 Xe2_HPG
[04:37:25] [PASSED] 20.02 Xe2_HPG
[04:37:25] [PASSED] 20.04 Xe2_LPG
[04:37:25] [PASSED] 30.00 Xe3_LPG
[04:37:25] [PASSED] 30.01 Xe3_LPG
[04:37:25] [PASSED] 30.03 Xe3_LPG
[04:37:25] ================ [PASSED] check_graphics_ip ================
[04:37:25] ===================== check_media_ip ======================
[04:37:25] [PASSED] 13.00 Xe_LPM+
[04:37:25] [PASSED] 13.01 Xe2_HPM
[04:37:25] [PASSED] 20.00 Xe2_LPM
[04:37:25] [PASSED] 30.00 Xe3_LPM
[04:37:25] [PASSED] 30.02 Xe3_LPM
[04:37:25] ================= [PASSED] check_media_ip ==================
[04:37:25] ================= check_platform_gt_count =================
[04:37:25] [PASSED] 0x9A60 (TIGERLAKE)
[04:37:25] [PASSED] 0x9A68 (TIGERLAKE)
[04:37:25] [PASSED] 0x9A70 (TIGERLAKE)
[04:37:25] [PASSED] 0x9A40 (TIGERLAKE)
[04:37:25] [PASSED] 0x9A49 (TIGERLAKE)
[04:37:25] [PASSED] 0x9A59 (TIGERLAKE)
[04:37:25] [PASSED] 0x9A78 (TIGERLAKE)
[04:37:25] [PASSED] 0x9AC0 (TIGERLAKE)
[04:37:25] [PASSED] 0x9AC9 (TIGERLAKE)
[04:37:25] [PASSED] 0x9AD9 (TIGERLAKE)
[04:37:25] [PASSED] 0x9AF8 (TIGERLAKE)
[04:37:25] [PASSED] 0x4C80 (ROCKETLAKE)
[04:37:25] [PASSED] 0x4C8A (ROCKETLAKE)
[04:37:25] [PASSED] 0x4C8B (ROCKETLAKE)
[04:37:25] [PASSED] 0x4C8C (ROCKETLAKE)
[04:37:25] [PASSED] 0x4C90 (ROCKETLAKE)
[04:37:25] [PASSED] 0x4C9A (ROCKETLAKE)
[04:37:25] [PASSED] 0x4680 (ALDERLAKE_S)
[04:37:25] [PASSED] 0x4682 (ALDERLAKE_S)
[04:37:25] [PASSED] 0x4688 (ALDERLAKE_S)
[04:37:25] [PASSED] 0x468A (ALDERLAKE_S)
[04:37:25] [PASSED] 0x468B (ALDERLAKE_S)
[04:37:25] [PASSED] 0x4690 (ALDERLAKE_S)
[04:37:25] [PASSED] 0x4692 (ALDERLAKE_S)
[04:37:25] [PASSED] 0x4693 (ALDERLAKE_S)
[04:37:25] [PASSED] 0x46A0 (ALDERLAKE_P)
[04:37:25] [PASSED] 0x46A1 (ALDERLAKE_P)
[04:37:25] [PASSED] 0x46A2 (ALDERLAKE_P)
[04:37:25] [PASSED] 0x46A3 (ALDERLAKE_P)
[04:37:25] [PASSED] 0x46A6 (ALDERLAKE_P)
[04:37:25] [PASSED] 0x46A8 (ALDERLAKE_P)
[04:37:25] [PASSED] 0x46AA (ALDERLAKE_P)
[04:37:25] [PASSED] 0x462A (ALDERLAKE_P)
[04:37:25] [PASSED] 0x4626 (ALDERLAKE_P)
[04:37:25] [PASSED] 0x4628 (ALDERLAKE_P)
[04:37:25] [PASSED] 0x46B0 (ALDERLAKE_P)
[04:37:25] [PASSED] 0x46B1 (ALDERLAKE_P)
[04:37:25] [PASSED] 0x46B2 (ALDERLAKE_P)
[04:37:25] [PASSED] 0x46B3 (ALDERLAKE_P)
[04:37:25] [PASSED] 0x46C0 (ALDERLAKE_P)
[04:37:25] [PASSED] 0x46C1 (ALDERLAKE_P)
[04:37:25] [PASSED] 0x46C2 (ALDERLAKE_P)
[04:37:25] [PASSED] 0x46C3 (ALDERLAKE_P)
[04:37:25] [PASSED] 0x46D0 (ALDERLAKE_N)
[04:37:25] [PASSED] 0x46D1 (ALDERLAKE_N)
[04:37:25] [PASSED] 0x46D2 (ALDERLAKE_N)
[04:37:25] [PASSED] 0x46D3 (ALDERLAKE_N)
[04:37:25] [PASSED] 0x46D4 (ALDERLAKE_N)
[04:37:25] [PASSED] 0xA721 (ALDERLAKE_P)
[04:37:25] [PASSED] 0xA7A1 (ALDERLAKE_P)
[04:37:25] [PASSED] 0xA7A9 (ALDERLAKE_P)
[04:37:25] [PASSED] 0xA7AC (ALDERLAKE_P)
[04:37:25] [PASSED] 0xA7AD (ALDERLAKE_P)
[04:37:25] [PASSED] 0xA720 (ALDERLAKE_P)
[04:37:25] [PASSED] 0xA7A0 (ALDERLAKE_P)
[04:37:25] [PASSED] 0xA7A8 (ALDERLAKE_P)
[04:37:25] [PASSED] 0xA7AA (ALDERLAKE_P)
[04:37:25] [PASSED] 0xA7AB (ALDERLAKE_P)
[04:37:25] [PASSED] 0xA780 (ALDERLAKE_S)
[04:37:25] [PASSED] 0xA781 (ALDERLAKE_S)
[04:37:25] [PASSED] 0xA782 (ALDERLAKE_S)
[04:37:25] [PASSED] 0xA783 (ALDERLAKE_S)
[04:37:25] [PASSED] 0xA788 (ALDERLAKE_S)
[04:37:25] [PASSED] 0xA789 (ALDERLAKE_S)
[04:37:25] [PASSED] 0xA78A (ALDERLAKE_S)
[04:37:25] [PASSED] 0xA78B (ALDERLAKE_S)
[04:37:25] [PASSED] 0x4905 (DG1)
[04:37:25] [PASSED] 0x4906 (DG1)
[04:37:25] [PASSED] 0x4907 (DG1)
[04:37:25] [PASSED] 0x4908 (DG1)
[04:37:25] [PASSED] 0x4909 (DG1)
[04:37:25] [PASSED] 0x56C0 (DG2)
[04:37:25] [PASSED] 0x56C2 (DG2)
[04:37:25] [PASSED] 0x56C1 (DG2)
[04:37:25] [PASSED] 0x7D51 (METEORLAKE)
[04:37:25] [PASSED] 0x7DD1 (METEORLAKE)
[04:37:25] [PASSED] 0x7D41 (METEORLAKE)
[04:37:25] [PASSED] 0x7D67 (METEORLAKE)
[04:37:25] [PASSED] 0xB640 (METEORLAKE)
[04:37:25] [PASSED] 0x56A0 (DG2)
[04:37:25] [PASSED] 0x56A1 (DG2)
[04:37:25] [PASSED] 0x56A2 (DG2)
[04:37:25] [PASSED] 0x56BE (DG2)
[04:37:25] [PASSED] 0x56BF (DG2)
[04:37:25] [PASSED] 0x5690 (DG2)
[04:37:25] [PASSED] 0x5691 (DG2)
[04:37:25] [PASSED] 0x5692 (DG2)
[04:37:25] [PASSED] 0x56A5 (DG2)
[04:37:25] [PASSED] 0x56A6 (DG2)
[04:37:25] [PASSED] 0x56B0 (DG2)
[04:37:25] [PASSED] 0x56B1 (DG2)
[04:37:25] [PASSED] 0x56BA (DG2)
[04:37:25] [PASSED] 0x56BB (DG2)
[04:37:25] [PASSED] 0x56BC (DG2)
[04:37:25] [PASSED] 0x56BD (DG2)
[04:37:25] [PASSED] 0x5693 (DG2)
[04:37:25] [PASSED] 0x5694 (DG2)
[04:37:25] [PASSED] 0x5695 (DG2)
[04:37:25] [PASSED] 0x56A3 (DG2)
[04:37:25] [PASSED] 0x56A4 (DG2)
[04:37:25] [PASSED] 0x56B2 (DG2)
[04:37:25] [PASSED] 0x56B3 (DG2)
[04:37:25] [PASSED] 0x5696 (DG2)
[04:37:25] [PASSED] 0x5697 (DG2)
[04:37:25] [PASSED] 0xB69 (PVC)
[04:37:25] [PASSED] 0xB6E (PVC)
[04:37:25] [PASSED] 0xBD4 (PVC)
[04:37:25] [PASSED] 0xBD5 (PVC)
[04:37:25] [PASSED] 0xBD6 (PVC)
[04:37:25] [PASSED] 0xBD7 (PVC)
[04:37:25] [PASSED] 0xBD8 (PVC)
[04:37:25] [PASSED] 0xBD9 (PVC)
[04:37:25] [PASSED] 0xBDA (PVC)
[04:37:25] [PASSED] 0xBDB (PVC)
[04:37:25] [PASSED] 0xBE0 (PVC)
[04:37:25] [PASSED] 0xBE1 (PVC)
[04:37:25] [PASSED] 0xBE5 (PVC)
[04:37:25] [PASSED] 0x7D40 (METEORLAKE)
[04:37:25] [PASSED] 0x7D45 (METEORLAKE)
[04:37:25] [PASSED] 0x7D55 (METEORLAKE)
[04:37:25] [PASSED] 0x7D60 (METEORLAKE)
[04:37:25] [PASSED] 0x7DD5 (METEORLAKE)
[04:37:25] [PASSED] 0x6420 (LUNARLAKE)
[04:37:25] [PASSED] 0x64A0 (LUNARLAKE)
[04:37:25] [PASSED] 0x64B0 (LUNARLAKE)
[04:37:25] [PASSED] 0xE202 (BATTLEMAGE)
[04:37:25] [PASSED] 0xE209 (BATTLEMAGE)
[04:37:25] [PASSED] 0xE20B (BATTLEMAGE)
[04:37:25] [PASSED] 0xE20C (BATTLEMAGE)
[04:37:25] [PASSED] 0xE20D (BATTLEMAGE)
[04:37:25] [PASSED] 0xE210 (BATTLEMAGE)
[04:37:25] [PASSED] 0xE211 (BATTLEMAGE)
[04:37:25] [PASSED] 0xE212 (BATTLEMAGE)
[04:37:25] [PASSED] 0xE216 (BATTLEMAGE)
[04:37:25] [PASSED] 0xE220 (BATTLEMAGE)
[04:37:25] [PASSED] 0xE221 (BATTLEMAGE)
[04:37:25] [PASSED] 0xE222 (BATTLEMAGE)
[04:37:25] [PASSED] 0xE223 (BATTLEMAGE)
[04:37:25] [PASSED] 0xB080 (PANTHERLAKE)
[04:37:25] [PASSED] 0xB081 (PANTHERLAKE)
[04:37:25] [PASSED] 0xB082 (PANTHERLAKE)
[04:37:25] [PASSED] 0xB083 (PANTHERLAKE)
[04:37:25] [PASSED] 0xB084 (PANTHERLAKE)
[04:37:25] [PASSED] 0xB085 (PANTHERLAKE)
[04:37:25] [PASSED] 0xB086 (PANTHERLAKE)
[04:37:25] [PASSED] 0xB087 (PANTHERLAKE)
[04:37:25] [PASSED] 0xB08F (PANTHERLAKE)
[04:37:25] [PASSED] 0xB090 (PANTHERLAKE)
[04:37:25] [PASSED] 0xB0A0 (PANTHERLAKE)
[04:37:25] [PASSED] 0xB0B0 (PANTHERLAKE)
[04:37:25] [PASSED] 0xFD80 (PANTHERLAKE)
[04:37:25] [PASSED] 0xFD81 (PANTHERLAKE)
[04:37:25] ============= [PASSED] check_platform_gt_count =============
[04:37:25] ===================== [PASSED] xe_pci ======================
[04:37:25] =================== xe_rtp (2 subtests) ====================
[04:37:25] =============== xe_rtp_process_to_sr_tests ================
[04:37:25] [PASSED] coalesce-same-reg
[04:37:25] [PASSED] no-match-no-add
[04:37:25] [PASSED] match-or
[04:37:25] [PASSED] match-or-xfail
[04:37:25] [PASSED] no-match-no-add-multiple-rules
[04:37:25] [PASSED] two-regs-two-entries
[04:37:25] [PASSED] clr-one-set-other
[04:37:25] [PASSED] set-field
[04:37:25] [PASSED] conflict-duplicate
[04:37:25] [PASSED] conflict-not-disjoint
[04:37:25] [PASSED] conflict-reg-type
[04:37:25] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[04:37:25] ================== xe_rtp_process_tests ===================
[04:37:25] [PASSED] active1
[04:37:25] [PASSED] active2
[04:37:25] [PASSED] active-inactive
[04:37:25] [PASSED] inactive-active
[04:37:25] [PASSED] inactive-1st_or_active-inactive
[04:37:25] [PASSED] inactive-2nd_or_active-inactive
[04:37:25] [PASSED] inactive-last_or_active-inactive
[04:37:25] [PASSED] inactive-no_or_active-inactive
[04:37:25] ============== [PASSED] xe_rtp_process_tests ===============
[04:37:25] ===================== [PASSED] xe_rtp ======================
[04:37:25] ==================== xe_wa (1 subtest) =====================
[04:37:25] ======================== xe_wa_gt =========================
[04:37:25] [PASSED] TIGERLAKE (B0)
[04:37:25] [PASSED] DG1 (A0)
[04:37:25] [PASSED] DG1 (B0)
[04:37:25] [PASSED] ALDERLAKE_S (A0)
[04:37:25] [PASSED] ALDERLAKE_S (B0)
[04:37:25] [PASSED] ALDERLAKE_S (C0)
[04:37:25] [PASSED] ALDERLAKE_S (D0)
[04:37:25] [PASSED] ALDERLAKE_P (A0)
[04:37:25] [PASSED] ALDERLAKE_P (B0)
[04:37:25] [PASSED] ALDERLAKE_P (C0)
[04:37:25] [PASSED] ALDERLAKE_S_RPLS (D0)
[04:37:25] [PASSED] ALDERLAKE_P_RPLU (E0)
[04:37:25] [PASSED] DG2_G10 (C0)
[04:37:25] [PASSED] DG2_G11 (B1)
[04:37:25] [PASSED] DG2_G12 (A1)
[04:37:25] [PASSED] METEORLAKE (g:A0, m:A0)
[04:37:25] [PASSED] METEORLAKE (g:A0, m:A0)
[04:37:25] [PASSED] METEORLAKE (g:A0, m:A0)
[04:37:25] [PASSED] LUNARLAKE (g:A0, m:A0)
[04:37:25] [PASSED] LUNARLAKE (g:B0, m:A0)
stty: 'standard input': Inappropriate ioctl for device
[04:37:25] [PASSED] BATTLEMAGE (g:A0, m:A1)
[04:37:25] ==================== [PASSED] xe_wa_gt =====================
[04:37:25] ====================== [PASSED] xe_wa ======================
[04:37:25] ============================================================
[04:37:25] Testing complete. Ran 297 tests: passed: 281, skipped: 16
[04:37:25] Elapsed time: 31.812s total, 4.216s configuring, 27.229s building, 0.316s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[04:37:25] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[04:37:27] 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
[04:37:49] Starting KUnit Kernel (1/1)...
[04:37:49] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[04:37:49] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[04:37:49] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[04:37:49] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[04:37:49] =========== drm_validate_clone_mode (2 subtests) ===========
[04:37:49] ============== drm_test_check_in_clone_mode ===============
[04:37:49] [PASSED] in_clone_mode
[04:37:49] [PASSED] not_in_clone_mode
[04:37:49] ========== [PASSED] drm_test_check_in_clone_mode ===========
[04:37:49] =============== drm_test_check_valid_clones ===============
[04:37:49] [PASSED] not_in_clone_mode
[04:37:49] [PASSED] valid_clone
[04:37:49] [PASSED] invalid_clone
[04:37:49] =========== [PASSED] drm_test_check_valid_clones ===========
[04:37:49] ============= [PASSED] drm_validate_clone_mode =============
[04:37:49] ============= drm_validate_modeset (1 subtest) =============
[04:37:49] [PASSED] drm_test_check_connector_changed_modeset
[04:37:49] ============== [PASSED] drm_validate_modeset ===============
[04:37:49] ====== drm_test_bridge_get_current_state (2 subtests) ======
[04:37:49] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[04:37:49] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[04:37:49] ======== [PASSED] drm_test_bridge_get_current_state ========
[04:37:49] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[04:37:49] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[04:37:49] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[04:37:49] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[04:37:49] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[04:37:49] ============== drm_bridge_alloc (2 subtests) ===============
[04:37:49] [PASSED] drm_test_drm_bridge_alloc_basic
[04:37:49] [PASSED] drm_test_drm_bridge_alloc_get_put
[04:37:49] ================ [PASSED] drm_bridge_alloc =================
[04:37:49] ================== drm_buddy (7 subtests) ==================
[04:37:49] [PASSED] drm_test_buddy_alloc_limit
[04:37:49] [PASSED] drm_test_buddy_alloc_optimistic
[04:37:49] [PASSED] drm_test_buddy_alloc_pessimistic
[04:37:49] [PASSED] drm_test_buddy_alloc_pathological
[04:37:49] [PASSED] drm_test_buddy_alloc_contiguous
[04:37:49] [PASSED] drm_test_buddy_alloc_clear
[04:37:49] [PASSED] drm_test_buddy_alloc_range_bias
[04:37:49] ==================== [PASSED] drm_buddy ====================
[04:37:49] ============= drm_cmdline_parser (40 subtests) =============
[04:37:49] [PASSED] drm_test_cmdline_force_d_only
[04:37:49] [PASSED] drm_test_cmdline_force_D_only_dvi
[04:37:49] [PASSED] drm_test_cmdline_force_D_only_hdmi
[04:37:49] [PASSED] drm_test_cmdline_force_D_only_not_digital
[04:37:49] [PASSED] drm_test_cmdline_force_e_only
[04:37:49] [PASSED] drm_test_cmdline_res
[04:37:49] [PASSED] drm_test_cmdline_res_vesa
[04:37:49] [PASSED] drm_test_cmdline_res_vesa_rblank
[04:37:49] [PASSED] drm_test_cmdline_res_rblank
[04:37:49] [PASSED] drm_test_cmdline_res_bpp
[04:37:49] [PASSED] drm_test_cmdline_res_refresh
[04:37:49] [PASSED] drm_test_cmdline_res_bpp_refresh
[04:37:49] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[04:37:49] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[04:37:49] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[04:37:49] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[04:37:49] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[04:37:49] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[04:37:49] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[04:37:49] [PASSED] drm_test_cmdline_res_margins_force_on
[04:37:49] [PASSED] drm_test_cmdline_res_vesa_margins
[04:37:49] [PASSED] drm_test_cmdline_name
[04:37:49] [PASSED] drm_test_cmdline_name_bpp
[04:37:49] [PASSED] drm_test_cmdline_name_option
[04:37:49] [PASSED] drm_test_cmdline_name_bpp_option
[04:37:49] [PASSED] drm_test_cmdline_rotate_0
[04:37:49] [PASSED] drm_test_cmdline_rotate_90
[04:37:49] [PASSED] drm_test_cmdline_rotate_180
[04:37:49] [PASSED] drm_test_cmdline_rotate_270
[04:37:49] [PASSED] drm_test_cmdline_hmirror
[04:37:49] [PASSED] drm_test_cmdline_vmirror
[04:37:49] [PASSED] drm_test_cmdline_margin_options
[04:37:49] [PASSED] drm_test_cmdline_multiple_options
[04:37:49] [PASSED] drm_test_cmdline_bpp_extra_and_option
[04:37:49] [PASSED] drm_test_cmdline_extra_and_option
[04:37:49] [PASSED] drm_test_cmdline_freestanding_options
[04:37:49] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[04:37:49] [PASSED] drm_test_cmdline_panel_orientation
[04:37:49] ================ drm_test_cmdline_invalid =================
[04:37:49] [PASSED] margin_only
[04:37:49] [PASSED] interlace_only
[04:37:49] [PASSED] res_missing_x
[04:37:49] [PASSED] res_missing_y
[04:37:49] [PASSED] res_bad_y
[04:37:49] [PASSED] res_missing_y_bpp
[04:37:49] [PASSED] res_bad_bpp
[04:37:49] [PASSED] res_bad_refresh
[04:37:49] [PASSED] res_bpp_refresh_force_on_off
[04:37:49] [PASSED] res_invalid_mode
[04:37:49] [PASSED] res_bpp_wrong_place_mode
[04:37:49] [PASSED] name_bpp_refresh
[04:37:49] [PASSED] name_refresh
[04:37:49] [PASSED] name_refresh_wrong_mode
[04:37:49] [PASSED] name_refresh_invalid_mode
[04:37:49] [PASSED] rotate_multiple
[04:37:49] [PASSED] rotate_invalid_val
[04:37:49] [PASSED] rotate_truncated
[04:37:49] [PASSED] invalid_option
[04:37:49] [PASSED] invalid_tv_option
[04:37:49] [PASSED] truncated_tv_option
[04:37:49] ============ [PASSED] drm_test_cmdline_invalid =============
[04:37:49] =============== drm_test_cmdline_tv_options ===============
[04:37:49] [PASSED] NTSC
[04:37:49] [PASSED] NTSC_443
[04:37:49] [PASSED] NTSC_J
[04:37:49] [PASSED] PAL
[04:37:49] [PASSED] PAL_M
[04:37:49] [PASSED] PAL_N
[04:37:49] [PASSED] SECAM
[04:37:49] [PASSED] MONO_525
[04:37:49] [PASSED] MONO_625
[04:37:49] =========== [PASSED] drm_test_cmdline_tv_options ===========
[04:37:49] =============== [PASSED] drm_cmdline_parser ================
[04:37:49] ========== drmm_connector_hdmi_init (20 subtests) ==========
[04:37:49] [PASSED] drm_test_connector_hdmi_init_valid
[04:37:49] [PASSED] drm_test_connector_hdmi_init_bpc_8
[04:37:49] [PASSED] drm_test_connector_hdmi_init_bpc_10
[04:37:49] [PASSED] drm_test_connector_hdmi_init_bpc_12
[04:37:49] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[04:37:49] [PASSED] drm_test_connector_hdmi_init_bpc_null
[04:37:49] [PASSED] drm_test_connector_hdmi_init_formats_empty
[04:37:49] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[04:37:49] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[04:37:49] [PASSED] supported_formats=0x9 yuv420_allowed=1
[04:37:49] [PASSED] supported_formats=0x9 yuv420_allowed=0
[04:37:49] [PASSED] supported_formats=0x3 yuv420_allowed=1
[04:37:49] [PASSED] supported_formats=0x3 yuv420_allowed=0
[04:37:49] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[04:37:49] [PASSED] drm_test_connector_hdmi_init_null_ddc
[04:37:49] [PASSED] drm_test_connector_hdmi_init_null_product
[04:37:49] [PASSED] drm_test_connector_hdmi_init_null_vendor
[04:37:49] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[04:37:49] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[04:37:49] [PASSED] drm_test_connector_hdmi_init_product_valid
[04:37:49] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[04:37:49] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[04:37:49] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[04:37:49] ========= drm_test_connector_hdmi_init_type_valid =========
[04:37:49] [PASSED] HDMI-A
[04:37:49] [PASSED] HDMI-B
[04:37:49] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[04:37:49] ======== drm_test_connector_hdmi_init_type_invalid ========
[04:37:49] [PASSED] Unknown
[04:37:49] [PASSED] VGA
[04:37:49] [PASSED] DVI-I
[04:37:49] [PASSED] DVI-D
[04:37:49] [PASSED] DVI-A
[04:37:49] [PASSED] Composite
[04:37:49] [PASSED] SVIDEO
[04:37:49] [PASSED] LVDS
[04:37:49] [PASSED] Component
[04:37:49] [PASSED] DIN
[04:37:49] [PASSED] DP
[04:37:49] [PASSED] TV
[04:37:49] [PASSED] eDP
[04:37:49] [PASSED] Virtual
[04:37:49] [PASSED] DSI
[04:37:49] [PASSED] DPI
[04:37:49] [PASSED] Writeback
[04:37:49] [PASSED] SPI
[04:37:49] [PASSED] USB
[04:37:49] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[04:37:49] ============ [PASSED] drmm_connector_hdmi_init =============
[04:37:49] ============= drmm_connector_init (3 subtests) =============
[04:37:49] [PASSED] drm_test_drmm_connector_init
[04:37:49] [PASSED] drm_test_drmm_connector_init_null_ddc
[04:37:49] ========= drm_test_drmm_connector_init_type_valid =========
[04:37:49] [PASSED] Unknown
[04:37:49] [PASSED] VGA
[04:37:49] [PASSED] DVI-I
[04:37:49] [PASSED] DVI-D
[04:37:49] [PASSED] DVI-A
[04:37:49] [PASSED] Composite
[04:37:49] [PASSED] SVIDEO
[04:37:49] [PASSED] LVDS
[04:37:49] [PASSED] Component
[04:37:49] [PASSED] DIN
[04:37:49] [PASSED] DP
[04:37:49] [PASSED] HDMI-A
[04:37:49] [PASSED] HDMI-B
[04:37:49] [PASSED] TV
[04:37:49] [PASSED] eDP
[04:37:49] [PASSED] Virtual
[04:37:49] [PASSED] DSI
[04:37:49] [PASSED] DPI
[04:37:49] [PASSED] Writeback
[04:37:49] [PASSED] SPI
[04:37:49] [PASSED] USB
[04:37:49] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[04:37:49] =============== [PASSED] drmm_connector_init ===============
[04:37:49] ========= drm_connector_dynamic_init (6 subtests) ==========
[04:37:49] [PASSED] drm_test_drm_connector_dynamic_init
[04:37:49] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[04:37:49] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[04:37:49] [PASSED] drm_test_drm_connector_dynamic_init_properties
[04:37:49] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[04:37:49] [PASSED] Unknown
[04:37:49] [PASSED] VGA
[04:37:49] [PASSED] DVI-I
[04:37:49] [PASSED] DVI-D
[04:37:49] [PASSED] DVI-A
[04:37:49] [PASSED] Composite
[04:37:49] [PASSED] SVIDEO
[04:37:49] [PASSED] LVDS
[04:37:49] [PASSED] Component
[04:37:49] [PASSED] DIN
[04:37:49] [PASSED] DP
[04:37:49] [PASSED] HDMI-A
[04:37:49] [PASSED] HDMI-B
[04:37:49] [PASSED] TV
[04:37:49] [PASSED] eDP
[04:37:49] [PASSED] Virtual
[04:37:49] [PASSED] DSI
[04:37:49] [PASSED] DPI
[04:37:49] [PASSED] Writeback
[04:37:49] [PASSED] SPI
[04:37:49] [PASSED] USB
[04:37:49] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[04:37:49] ======== drm_test_drm_connector_dynamic_init_name =========
[04:37:49] [PASSED] Unknown
[04:37:49] [PASSED] VGA
[04:37:49] [PASSED] DVI-I
[04:37:49] [PASSED] DVI-D
[04:37:49] [PASSED] DVI-A
[04:37:49] [PASSED] Composite
[04:37:49] [PASSED] SVIDEO
[04:37:49] [PASSED] LVDS
[04:37:49] [PASSED] Component
[04:37:49] [PASSED] DIN
[04:37:49] [PASSED] DP
[04:37:49] [PASSED] HDMI-A
[04:37:49] [PASSED] HDMI-B
[04:37:49] [PASSED] TV
[04:37:49] [PASSED] eDP
[04:37:49] [PASSED] Virtual
[04:37:49] [PASSED] DSI
[04:37:49] [PASSED] DPI
[04:37:49] [PASSED] Writeback
[04:37:49] [PASSED] SPI
[04:37:49] [PASSED] USB
[04:37:49] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[04:37:49] =========== [PASSED] drm_connector_dynamic_init ============
[04:37:49] ==== drm_connector_dynamic_register_early (4 subtests) =====
[04:37:49] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[04:37:49] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[04:37:49] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[04:37:49] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[04:37:49] ====== [PASSED] drm_connector_dynamic_register_early =======
[04:37:49] ======= drm_connector_dynamic_register (7 subtests) ========
[04:37:49] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[04:37:49] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[04:37:49] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[04:37:49] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[04:37:49] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[04:37:49] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[04:37:49] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[04:37:49] ========= [PASSED] drm_connector_dynamic_register ==========
[04:37:49] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[04:37:49] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[04:37:49] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[04:37:49] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[04:37:49] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[04:37:49] ========== drm_test_get_tv_mode_from_name_valid ===========
[04:37:49] [PASSED] NTSC
[04:37:49] [PASSED] NTSC-443
[04:37:49] [PASSED] NTSC-J
[04:37:49] [PASSED] PAL
[04:37:49] [PASSED] PAL-M
[04:37:49] [PASSED] PAL-N
[04:37:49] [PASSED] SECAM
[04:37:49] [PASSED] Mono
[04:37:49] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[04:37:49] [PASSED] drm_test_get_tv_mode_from_name_truncated
[04:37:49] ============ [PASSED] drm_get_tv_mode_from_name ============
[04:37:49] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[04:37:49] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[04:37:49] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[04:37:49] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[04:37:49] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[04:37:49] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[04:37:49] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[04:37:49] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[04:37:49] [PASSED] VIC 96
[04:37:49] [PASSED] VIC 97
[04:37:49] [PASSED] VIC 101
[04:37:49] [PASSED] VIC 102
[04:37:49] [PASSED] VIC 106
[04:37:49] [PASSED] VIC 107
[04:37:49] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[04:37:49] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[04:37:49] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[04:37:49] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[04:37:49] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[04:37:49] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[04:37:49] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[04:37:49] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[04:37:49] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[04:37:49] [PASSED] Automatic
[04:37:49] [PASSED] Full
[04:37:49] [PASSED] Limited 16:235
[04:37:49] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[04:37:49] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[04:37:49] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[04:37:49] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[04:37:49] === drm_test_drm_hdmi_connector_get_output_format_name ====
[04:37:49] [PASSED] RGB
[04:37:49] [PASSED] YUV 4:2:0
[04:37:49] [PASSED] YUV 4:2:2
[04:37:49] [PASSED] YUV 4:4:4
[04:37:49] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[04:37:49] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[04:37:49] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[04:37:49] ============= drm_damage_helper (21 subtests) ==============
[04:37:49] [PASSED] drm_test_damage_iter_no_damage
[04:37:49] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[04:37:49] [PASSED] drm_test_damage_iter_no_damage_src_moved
[04:37:49] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[04:37:49] [PASSED] drm_test_damage_iter_no_damage_not_visible
[04:37:49] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[04:37:49] [PASSED] drm_test_damage_iter_no_damage_no_fb
[04:37:49] [PASSED] drm_test_damage_iter_simple_damage
[04:37:49] [PASSED] drm_test_damage_iter_single_damage
[04:37:49] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[04:37:49] [PASSED] drm_test_damage_iter_single_damage_outside_src
[04:37:49] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[04:37:49] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[04:37:49] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[04:37:49] [PASSED] drm_test_damage_iter_single_damage_src_moved
[04:37:49] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[04:37:49] [PASSED] drm_test_damage_iter_damage
[04:37:49] [PASSED] drm_test_damage_iter_damage_one_intersect
[04:37:49] [PASSED] drm_test_damage_iter_damage_one_outside
[04:37:49] [PASSED] drm_test_damage_iter_damage_src_moved
[04:37:49] [PASSED] drm_test_damage_iter_damage_not_visible
[04:37:49] ================ [PASSED] drm_damage_helper ================
[04:37:49] ============== drm_dp_mst_helper (3 subtests) ==============
[04:37:49] ============== drm_test_dp_mst_calc_pbn_mode ==============
[04:37:49] [PASSED] Clock 154000 BPP 30 DSC disabled
[04:37:49] [PASSED] Clock 234000 BPP 30 DSC disabled
[04:37:49] [PASSED] Clock 297000 BPP 24 DSC disabled
[04:37:49] [PASSED] Clock 332880 BPP 24 DSC enabled
[04:37:49] [PASSED] Clock 324540 BPP 24 DSC enabled
[04:37:49] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[04:37:49] ============== drm_test_dp_mst_calc_pbn_div ===============
[04:37:49] [PASSED] Link rate 2000000 lane count 4
[04:37:49] [PASSED] Link rate 2000000 lane count 2
[04:37:49] [PASSED] Link rate 2000000 lane count 1
[04:37:49] [PASSED] Link rate 1350000 lane count 4
[04:37:49] [PASSED] Link rate 1350000 lane count 2
[04:37:49] [PASSED] Link rate 1350000 lane count 1
[04:37:49] [PASSED] Link rate 1000000 lane count 4
[04:37:49] [PASSED] Link rate 1000000 lane count 2
[04:37:49] [PASSED] Link rate 1000000 lane count 1
[04:37:49] [PASSED] Link rate 810000 lane count 4
[04:37:49] [PASSED] Link rate 810000 lane count 2
[04:37:49] [PASSED] Link rate 810000 lane count 1
[04:37:49] [PASSED] Link rate 540000 lane count 4
[04:37:49] [PASSED] Link rate 540000 lane count 2
[04:37:49] [PASSED] Link rate 540000 lane count 1
[04:37:49] [PASSED] Link rate 270000 lane count 4
[04:37:49] [PASSED] Link rate 270000 lane count 2
[04:37:49] [PASSED] Link rate 270000 lane count 1
[04:37:49] [PASSED] Link rate 162000 lane count 4
[04:37:49] [PASSED] Link rate 162000 lane count 2
[04:37:49] [PASSED] Link rate 162000 lane count 1
[04:37:49] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[04:37:49] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[04:37:49] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[04:37:49] [PASSED] DP_POWER_UP_PHY with port number
[04:37:49] [PASSED] DP_POWER_DOWN_PHY with port number
[04:37:49] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[04:37:49] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[04:37:49] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[04:37:49] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[04:37:49] [PASSED] DP_QUERY_PAYLOAD with port number
[04:37:49] [PASSED] DP_QUERY_PAYLOAD with VCPI
[04:37:49] [PASSED] DP_REMOTE_DPCD_READ with port number
[04:37:49] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[04:37:49] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[04:37:49] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[04:37:49] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[04:37:49] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[04:37:49] [PASSED] DP_REMOTE_I2C_READ with port number
[04:37:49] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[04:37:49] [PASSED] DP_REMOTE_I2C_READ with transactions array
[04:37:49] [PASSED] DP_REMOTE_I2C_WRITE with port number
[04:37:49] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[04:37:49] [PASSED] DP_REMOTE_I2C_WRITE with data array
[04:37:49] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[04:37:49] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[04:37:49] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[04:37:49] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[04:37:49] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[04:37:49] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[04:37:49] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[04:37:49] ================ [PASSED] drm_dp_mst_helper ================
[04:37:49] ================== drm_exec (7 subtests) ===================
[04:37:49] [PASSED] sanitycheck
[04:37:49] [PASSED] test_lock
[04:37:49] [PASSED] test_lock_unlock
[04:37:49] [PASSED] test_duplicates
[04:37:49] [PASSED] test_prepare
[04:37:49] [PASSED] test_prepare_array
[04:37:49] [PASSED] test_multiple_loops
[04:37:49] ==================== [PASSED] drm_exec =====================
[04:37:49] =========== drm_format_helper_test (17 subtests) ===========
[04:37:49] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[04:37:49] [PASSED] single_pixel_source_buffer
[04:37:49] [PASSED] single_pixel_clip_rectangle
[04:37:49] [PASSED] well_known_colors
[04:37:49] [PASSED] destination_pitch
[04:37:49] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[04:37:49] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[04:37:49] [PASSED] single_pixel_source_buffer
[04:37:49] [PASSED] single_pixel_clip_rectangle
[04:37:49] [PASSED] well_known_colors
[04:37:49] [PASSED] destination_pitch
[04:37:49] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[04:37:49] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[04:37:49] [PASSED] single_pixel_source_buffer
[04:37:49] [PASSED] single_pixel_clip_rectangle
[04:37:49] [PASSED] well_known_colors
[04:37:49] [PASSED] destination_pitch
[04:37:49] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[04:37:49] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[04:37:49] [PASSED] single_pixel_source_buffer
[04:37:49] [PASSED] single_pixel_clip_rectangle
[04:37:49] [PASSED] well_known_colors
[04:37:49] [PASSED] destination_pitch
[04:37:49] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[04:37:49] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[04:37:49] [PASSED] single_pixel_source_buffer
[04:37:49] [PASSED] single_pixel_clip_rectangle
[04:37:49] [PASSED] well_known_colors
[04:37:49] [PASSED] destination_pitch
[04:37:49] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[04:37:49] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[04:37:49] [PASSED] single_pixel_source_buffer
[04:37:49] [PASSED] single_pixel_clip_rectangle
[04:37:49] [PASSED] well_known_colors
[04:37:49] [PASSED] destination_pitch
[04:37:49] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[04:37:49] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[04:37:49] [PASSED] single_pixel_source_buffer
[04:37:49] [PASSED] single_pixel_clip_rectangle
[04:37:49] [PASSED] well_known_colors
[04:37:49] [PASSED] destination_pitch
[04:37:49] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[04:37:49] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[04:37:49] [PASSED] single_pixel_source_buffer
[04:37:49] [PASSED] single_pixel_clip_rectangle
[04:37:49] [PASSED] well_known_colors
[04:37:49] [PASSED] destination_pitch
[04:37:49] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[04:37:49] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[04:37:49] [PASSED] single_pixel_source_buffer
[04:37:49] [PASSED] single_pixel_clip_rectangle
[04:37:49] [PASSED] well_known_colors
[04:37:49] [PASSED] destination_pitch
[04:37:49] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[04:37:49] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[04:37:49] [PASSED] single_pixel_source_buffer
[04:37:49] [PASSED] single_pixel_clip_rectangle
[04:37:49] [PASSED] well_known_colors
[04:37:49] [PASSED] destination_pitch
[04:37:49] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[04:37:49] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[04:37:49] [PASSED] single_pixel_source_buffer
[04:37:49] [PASSED] single_pixel_clip_rectangle
[04:37:49] [PASSED] well_known_colors
[04:37:49] [PASSED] destination_pitch
[04:37:49] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[04:37:49] ============== drm_test_fb_xrgb8888_to_mono ===============
[04:37:49] [PASSED] single_pixel_source_buffer
[04:37:49] [PASSED] single_pixel_clip_rectangle
[04:37:49] [PASSED] well_known_colors
[04:37:49] [PASSED] destination_pitch
[04:37:49] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[04:37:49] ==================== drm_test_fb_swab =====================
[04:37:49] [PASSED] single_pixel_source_buffer
[04:37:49] [PASSED] single_pixel_clip_rectangle
[04:37:49] [PASSED] well_known_colors
[04:37:49] [PASSED] destination_pitch
[04:37:49] ================ [PASSED] drm_test_fb_swab =================
[04:37:49] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[04:37:49] [PASSED] single_pixel_source_buffer
[04:37:49] [PASSED] single_pixel_clip_rectangle
[04:37:49] [PASSED] well_known_colors
[04:37:49] [PASSED] destination_pitch
[04:37:49] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[04:37:49] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[04:37:49] [PASSED] single_pixel_source_buffer
[04:37:49] [PASSED] single_pixel_clip_rectangle
[04:37:49] [PASSED] well_known_colors
[04:37:49] [PASSED] destination_pitch
[04:37:49] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[04:37:49] ================= drm_test_fb_clip_offset =================
[04:37:49] [PASSED] pass through
[04:37:49] [PASSED] horizontal offset
[04:37:49] [PASSED] vertical offset
[04:37:49] [PASSED] horizontal and vertical offset
[04:37:49] [PASSED] horizontal offset (custom pitch)
[04:37:49] [PASSED] vertical offset (custom pitch)
[04:37:49] [PASSED] horizontal and vertical offset (custom pitch)
[04:37:49] ============= [PASSED] drm_test_fb_clip_offset =============
[04:37:49] =================== drm_test_fb_memcpy ====================
[04:37:49] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[04:37:49] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[04:37:49] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[04:37:49] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[04:37:49] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[04:37:49] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[04:37:49] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[04:37:49] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[04:37:49] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[04:37:49] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[04:37:49] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[04:37:49] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[04:37:49] =============== [PASSED] drm_test_fb_memcpy ================
[04:37:49] ============= [PASSED] drm_format_helper_test ==============
[04:37:49] ================= drm_format (18 subtests) =================
[04:37:49] [PASSED] drm_test_format_block_width_invalid
[04:37:49] [PASSED] drm_test_format_block_width_one_plane
[04:37:49] [PASSED] drm_test_format_block_width_two_plane
[04:37:49] [PASSED] drm_test_format_block_width_three_plane
[04:37:49] [PASSED] drm_test_format_block_width_tiled
[04:37:49] [PASSED] drm_test_format_block_height_invalid
[04:37:49] [PASSED] drm_test_format_block_height_one_plane
[04:37:49] [PASSED] drm_test_format_block_height_two_plane
[04:37:49] [PASSED] drm_test_format_block_height_three_plane
[04:37:49] [PASSED] drm_test_format_block_height_tiled
[04:37:49] [PASSED] drm_test_format_min_pitch_invalid
[04:37:49] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[04:37:49] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[04:37:49] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[04:37:49] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[04:37:49] [PASSED] drm_test_format_min_pitch_two_plane
[04:37:49] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[04:37:49] [PASSED] drm_test_format_min_pitch_tiled
[04:37:49] =================== [PASSED] drm_format ====================
[04:37:49] ============== drm_framebuffer (10 subtests) ===============
[04:37:49] ========== drm_test_framebuffer_check_src_coords ==========
[04:37:49] [PASSED] Success: source fits into fb
[04:37:49] [PASSED] Fail: overflowing fb with x-axis coordinate
[04:37:49] [PASSED] Fail: overflowing fb with y-axis coordinate
[04:37:49] [PASSED] Fail: overflowing fb with source width
[04:37:49] [PASSED] Fail: overflowing fb with source height
[04:37:49] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[04:37:49] [PASSED] drm_test_framebuffer_cleanup
[04:37:49] =============== drm_test_framebuffer_create ===============
[04:37:49] [PASSED] ABGR8888 normal sizes
[04:37:49] [PASSED] ABGR8888 max sizes
[04:37:49] [PASSED] ABGR8888 pitch greater than min required
[04:37:49] [PASSED] ABGR8888 pitch less than min required
[04:37:49] [PASSED] ABGR8888 Invalid width
[04:37:49] [PASSED] ABGR8888 Invalid buffer handle
[04:37:49] [PASSED] No pixel format
[04:37:49] [PASSED] ABGR8888 Width 0
[04:37:49] [PASSED] ABGR8888 Height 0
[04:37:49] [PASSED] ABGR8888 Out of bound height * pitch combination
[04:37:49] [PASSED] ABGR8888 Large buffer offset
[04:37:49] [PASSED] ABGR8888 Buffer offset for inexistent plane
[04:37:49] [PASSED] ABGR8888 Invalid flag
[04:37:49] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[04:37:49] [PASSED] ABGR8888 Valid buffer modifier
[04:37:49] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[04:37:49] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[04:37:49] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[04:37:49] [PASSED] NV12 Normal sizes
[04:37:49] [PASSED] NV12 Max sizes
[04:37:49] [PASSED] NV12 Invalid pitch
[04:37:49] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[04:37:49] [PASSED] NV12 different modifier per-plane
[04:37:49] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[04:37:49] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[04:37:49] [PASSED] NV12 Modifier for inexistent plane
[04:37:49] [PASSED] NV12 Handle for inexistent plane
[04:37:49] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[04:37:49] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[04:37:49] [PASSED] YVU420 Normal sizes
[04:37:49] [PASSED] YVU420 Max sizes
[04:37:49] [PASSED] YVU420 Invalid pitch
[04:37:49] [PASSED] YVU420 Different pitches
[04:37:49] [PASSED] YVU420 Different buffer offsets/pitches
[04:37:49] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[04:37:49] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[04:37:49] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[04:37:49] [PASSED] YVU420 Valid modifier
[04:37:49] [PASSED] YVU420 Different modifiers per plane
[04:37:49] [PASSED] YVU420 Modifier for inexistent plane
[04:37:49] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[04:37:49] [PASSED] X0L2 Normal sizes
[04:37:49] [PASSED] X0L2 Max sizes
[04:37:49] [PASSED] X0L2 Invalid pitch
[04:37:49] [PASSED] X0L2 Pitch greater than minimum required
[04:37:49] [PASSED] X0L2 Handle for inexistent plane
[04:37:49] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[04:37:49] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[04:37:49] [PASSED] X0L2 Valid modifier
[04:37:49] [PASSED] X0L2 Modifier for inexistent plane
[04:37:49] =========== [PASSED] drm_test_framebuffer_create ===========
[04:37:49] [PASSED] drm_test_framebuffer_free
[04:37:49] [PASSED] drm_test_framebuffer_init
[04:37:49] [PASSED] drm_test_framebuffer_init_bad_format
[04:37:49] [PASSED] drm_test_framebuffer_init_dev_mismatch
[04:37:49] [PASSED] drm_test_framebuffer_lookup
[04:37:49] [PASSED] drm_test_framebuffer_lookup_inexistent
[04:37:49] [PASSED] drm_test_framebuffer_modifiers_not_supported
[04:37:49] ================= [PASSED] drm_framebuffer =================
[04:37:49] ================ drm_gem_shmem (8 subtests) ================
[04:37:49] [PASSED] drm_gem_shmem_test_obj_create
[04:37:49] [PASSED] drm_gem_shmem_test_obj_create_private
[04:37:49] [PASSED] drm_gem_shmem_test_pin_pages
[04:37:49] [PASSED] drm_gem_shmem_test_vmap
[04:37:49] [PASSED] drm_gem_shmem_test_get_pages_sgt
[04:37:49] [PASSED] drm_gem_shmem_test_get_sg_table
[04:37:49] [PASSED] drm_gem_shmem_test_madvise
[04:37:49] [PASSED] drm_gem_shmem_test_purge
[04:37:49] ================== [PASSED] drm_gem_shmem ==================
[04:37:49] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[04:37:49] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[04:37:49] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[04:37:49] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[04:37:49] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[04:37:49] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[04:37:49] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[04:37:49] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[04:37:49] [PASSED] Automatic
[04:37:49] [PASSED] Full
[04:37:49] [PASSED] Limited 16:235
[04:37:49] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[04:37:49] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[04:37:49] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[04:37:49] [PASSED] drm_test_check_disable_connector
[04:37:49] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[04:37:49] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[04:37:49] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[04:37:49] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[04:37:49] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[04:37:49] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[04:37:49] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[04:37:49] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[04:37:49] [PASSED] drm_test_check_output_bpc_dvi
[04:37:49] [PASSED] drm_test_check_output_bpc_format_vic_1
[04:37:49] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[04:37:49] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[04:37:49] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[04:37:49] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[04:37:49] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[04:37:49] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[04:37:49] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[04:37:49] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[04:37:49] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[04:37:49] [PASSED] drm_test_check_broadcast_rgb_value
[04:37:49] [PASSED] drm_test_check_bpc_8_value
[04:37:49] [PASSED] drm_test_check_bpc_10_value
[04:37:49] [PASSED] drm_test_check_bpc_12_value
[04:37:49] [PASSED] drm_test_check_format_value
[04:37:49] [PASSED] drm_test_check_tmds_char_value
[04:37:49] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[04:37:49] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[04:37:49] [PASSED] drm_test_check_mode_valid
[04:37:49] [PASSED] drm_test_check_mode_valid_reject
[04:37:49] [PASSED] drm_test_check_mode_valid_reject_rate
[04:37:49] [PASSED] drm_test_check_mode_valid_reject_max_clock
[04:37:49] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[04:37:49] ================= drm_managed (2 subtests) =================
[04:37:49] [PASSED] drm_test_managed_release_action
[04:37:49] [PASSED] drm_test_managed_run_action
[04:37:49] =================== [PASSED] drm_managed ===================
[04:37:49] =================== drm_mm (6 subtests) ====================
[04:37:49] [PASSED] drm_test_mm_init
[04:37:49] [PASSED] drm_test_mm_debug
[04:37:49] [PASSED] drm_test_mm_align32
[04:37:49] [PASSED] drm_test_mm_align64
[04:37:49] [PASSED] drm_test_mm_lowest
[04:37:49] [PASSED] drm_test_mm_highest
[04:37:49] ===================== [PASSED] drm_mm ======================
[04:37:49] ============= drm_modes_analog_tv (5 subtests) =============
[04:37:49] [PASSED] drm_test_modes_analog_tv_mono_576i
[04:37:49] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[04:37:49] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[04:37:49] [PASSED] drm_test_modes_analog_tv_pal_576i
[04:37:49] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[04:37:49] =============== [PASSED] drm_modes_analog_tv ===============
[04:37:49] ============== drm_plane_helper (2 subtests) ===============
[04:37:49] =============== drm_test_check_plane_state ================
[04:37:49] [PASSED] clipping_simple
[04:37:49] [PASSED] clipping_rotate_reflect
[04:37:49] [PASSED] positioning_simple
[04:37:49] [PASSED] upscaling
[04:37:49] [PASSED] downscaling
[04:37:49] [PASSED] rounding1
[04:37:49] [PASSED] rounding2
[04:37:49] [PASSED] rounding3
[04:37:49] [PASSED] rounding4
[04:37:49] =========== [PASSED] drm_test_check_plane_state ============
[04:37:49] =========== drm_test_check_invalid_plane_state ============
[04:37:49] [PASSED] positioning_invalid
[04:37:49] [PASSED] upscaling_invalid
[04:37:49] [PASSED] downscaling_invalid
[04:37:49] ======= [PASSED] drm_test_check_invalid_plane_state ========
[04:37:49] ================ [PASSED] drm_plane_helper =================
[04:37:49] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[04:37:49] ====== drm_test_connector_helper_tv_get_modes_check =======
[04:37:49] [PASSED] None
[04:37:49] [PASSED] PAL
[04:37:49] [PASSED] NTSC
[04:37:49] [PASSED] Both, NTSC Default
[04:37:49] [PASSED] Both, PAL Default
[04:37:49] [PASSED] Both, NTSC Default, with PAL on command-line
[04:37:49] [PASSED] Both, PAL Default, with NTSC on command-line
[04:37:49] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[04:37:49] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[04:37:49] ================== drm_rect (9 subtests) ===================
[04:37:49] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[04:37:49] [PASSED] drm_test_rect_clip_scaled_not_clipped
[04:37:49] [PASSED] drm_test_rect_clip_scaled_clipped
[04:37:49] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[04:37:49] ================= drm_test_rect_intersect =================
[04:37:49] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[04:37:49] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[04:37:49] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[04:37:49] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[04:37:49] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[04:37:49] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[04:37:49] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[04:37:49] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[04:37:49] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[04:37:49] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[04:37:49] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[04:37:49] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[04:37:49] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[04:37:49] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[04:37:49] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[04:37:49] ============= [PASSED] drm_test_rect_intersect =============
[04:37:49] ================ drm_test_rect_calc_hscale ================
[04:37:49] [PASSED] normal use
[04:37:49] [PASSED] out of max range
[04:37:49] [PASSED] out of min range
[04:37:49] [PASSED] zero dst
[04:37:49] [PASSED] negative src
[04:37:49] [PASSED] negative dst
[04:37:49] ============ [PASSED] drm_test_rect_calc_hscale ============
[04:37:49] ================ drm_test_rect_calc_vscale ================
[04:37:49] [PASSED] normal use
[04:37:49] [PASSED] out of max range
[04:37:49] [PASSED] out of min range
[04:37:49] [PASSED] zero dst
[04:37:49] [PASSED] negative src
[04:37:49] [PASSED] negative dst
[04:37:49] ============ [PASSED] drm_test_rect_calc_vscale ============
[04:37:49] ================== drm_test_rect_rotate ===================
[04:37:49] [PASSED] reflect-x
[04:37:49] [PASSED] reflect-y
[04:37:49] [PASSED] rotate-0
[04:37:49] [PASSED] rotate-90
[04:37:49] [PASSED] rotate-180
[04:37:49] [PASSED] rotate-270
stty: 'standard input': Inappropriate ioctl for device
[04:37:49] ============== [PASSED] drm_test_rect_rotate ===============
[04:37:49] ================ drm_test_rect_rotate_inv =================
[04:37:49] [PASSED] reflect-x
[04:37:49] [PASSED] reflect-y
[04:37:49] [PASSED] rotate-0
[04:37:49] [PASSED] rotate-90
[04:37:49] [PASSED] rotate-180
[04:37:49] [PASSED] rotate-270
[04:37:49] ============ [PASSED] drm_test_rect_rotate_inv =============
[04:37:49] ==================== [PASSED] drm_rect =====================
[04:37:49] ============ drm_sysfb_modeset_test (1 subtest) ============
[04:37:49] ============ drm_test_sysfb_build_fourcc_list =============
[04:37:49] [PASSED] no native formats
[04:37:49] [PASSED] XRGB8888 as native format
[04:37:49] [PASSED] remove duplicates
[04:37:49] [PASSED] convert alpha formats
[04:37:49] [PASSED] random formats
[04:37:49] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[04:37:49] ============= [PASSED] drm_sysfb_modeset_test ==============
[04:37:49] ============================================================
[04:37:49] Testing complete. Ran 616 tests: passed: 616
[04:37:49] Elapsed time: 24.047s total, 1.733s configuring, 22.141s building, 0.140s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[04:37:49] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[04:37:51] 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
[04:37:59] Starting KUnit Kernel (1/1)...
[04:37:59] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[04:37:59] ================= ttm_device (5 subtests) ==================
[04:37:59] [PASSED] ttm_device_init_basic
[04:37:59] [PASSED] ttm_device_init_multiple
[04:37:59] [PASSED] ttm_device_fini_basic
[04:37:59] [PASSED] ttm_device_init_no_vma_man
[04:37:59] ================== ttm_device_init_pools ==================
[04:37:59] [PASSED] No DMA allocations, no DMA32 required
[04:37:59] [PASSED] DMA allocations, DMA32 required
[04:37:59] [PASSED] No DMA allocations, DMA32 required
[04:37:59] [PASSED] DMA allocations, no DMA32 required
[04:37:59] ============== [PASSED] ttm_device_init_pools ==============
[04:37:59] =================== [PASSED] ttm_device ====================
[04:37:59] ================== ttm_pool (8 subtests) ===================
[04:37:59] ================== ttm_pool_alloc_basic ===================
[04:37:59] [PASSED] One page
[04:37:59] [PASSED] More than one page
[04:37:59] [PASSED] Above the allocation limit
[04:37:59] [PASSED] One page, with coherent DMA mappings enabled
[04:37:59] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[04:37:59] ============== [PASSED] ttm_pool_alloc_basic ===============
[04:37:59] ============== ttm_pool_alloc_basic_dma_addr ==============
[04:37:59] [PASSED] One page
[04:37:59] [PASSED] More than one page
[04:37:59] [PASSED] Above the allocation limit
[04:37:59] [PASSED] One page, with coherent DMA mappings enabled
[04:37:59] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[04:37:59] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[04:37:59] [PASSED] ttm_pool_alloc_order_caching_match
[04:37:59] [PASSED] ttm_pool_alloc_caching_mismatch
[04:37:59] [PASSED] ttm_pool_alloc_order_mismatch
[04:37:59] [PASSED] ttm_pool_free_dma_alloc
[04:37:59] [PASSED] ttm_pool_free_no_dma_alloc
[04:37:59] [PASSED] ttm_pool_fini_basic
[04:37:59] ==================== [PASSED] ttm_pool =====================
[04:37:59] ================ ttm_resource (8 subtests) =================
[04:37:59] ================= ttm_resource_init_basic =================
[04:37:59] [PASSED] Init resource in TTM_PL_SYSTEM
[04:37:59] [PASSED] Init resource in TTM_PL_VRAM
[04:37:59] [PASSED] Init resource in a private placement
[04:37:59] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[04:37:59] ============= [PASSED] ttm_resource_init_basic =============
[04:37:59] [PASSED] ttm_resource_init_pinned
[04:37:59] [PASSED] ttm_resource_fini_basic
[04:37:59] [PASSED] ttm_resource_manager_init_basic
[04:37:59] [PASSED] ttm_resource_manager_usage_basic
[04:37:59] [PASSED] ttm_resource_manager_set_used_basic
[04:37:59] [PASSED] ttm_sys_man_alloc_basic
[04:37:59] [PASSED] ttm_sys_man_free_basic
[04:37:59] ================== [PASSED] ttm_resource ===================
[04:37:59] =================== ttm_tt (15 subtests) ===================
[04:37:59] ==================== ttm_tt_init_basic ====================
[04:37:59] [PASSED] Page-aligned size
[04:37:59] [PASSED] Extra pages requested
[04:37:59] ================ [PASSED] ttm_tt_init_basic ================
[04:37:59] [PASSED] ttm_tt_init_misaligned
[04:37:59] [PASSED] ttm_tt_fini_basic
[04:37:59] [PASSED] ttm_tt_fini_sg
[04:37:59] [PASSED] ttm_tt_fini_shmem
[04:37:59] [PASSED] ttm_tt_create_basic
[04:37:59] [PASSED] ttm_tt_create_invalid_bo_type
[04:37:59] [PASSED] ttm_tt_create_ttm_exists
[04:37:59] [PASSED] ttm_tt_create_failed
[04:37:59] [PASSED] ttm_tt_destroy_basic
[04:37:59] [PASSED] ttm_tt_populate_null_ttm
[04:37:59] [PASSED] ttm_tt_populate_populated_ttm
[04:37:59] [PASSED] ttm_tt_unpopulate_basic
[04:37:59] [PASSED] ttm_tt_unpopulate_empty_ttm
[04:37:59] [PASSED] ttm_tt_swapin_basic
[04:37:59] ===================== [PASSED] ttm_tt ======================
[04:37:59] =================== ttm_bo (14 subtests) ===================
[04:37:59] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[04:37:59] [PASSED] Cannot be interrupted and sleeps
[04:37:59] [PASSED] Cannot be interrupted, locks straight away
[04:37:59] [PASSED] Can be interrupted, sleeps
[04:37:59] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[04:37:59] [PASSED] ttm_bo_reserve_locked_no_sleep
[04:37:59] [PASSED] ttm_bo_reserve_no_wait_ticket
[04:37:59] [PASSED] ttm_bo_reserve_double_resv
[04:37:59] [PASSED] ttm_bo_reserve_interrupted
[04:37:59] [PASSED] ttm_bo_reserve_deadlock
[04:37:59] [PASSED] ttm_bo_unreserve_basic
[04:37:59] [PASSED] ttm_bo_unreserve_pinned
[04:37:59] [PASSED] ttm_bo_unreserve_bulk
[04:37:59] [PASSED] ttm_bo_put_basic
[04:37:59] [PASSED] ttm_bo_put_shared_resv
[04:37:59] [PASSED] ttm_bo_pin_basic
[04:37:59] [PASSED] ttm_bo_pin_unpin_resource
[04:37:59] [PASSED] ttm_bo_multiple_pin_one_unpin
[04:37:59] ===================== [PASSED] ttm_bo ======================
[04:37:59] ============== ttm_bo_validate (22 subtests) ===============
[04:37:59] ============== ttm_bo_init_reserved_sys_man ===============
[04:37:59] [PASSED] Buffer object for userspace
[04:37:59] [PASSED] Kernel buffer object
[04:37:59] [PASSED] Shared buffer object
[04:37:59] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[04:37:59] ============== ttm_bo_init_reserved_mock_man ==============
[04:37:59] [PASSED] Buffer object for userspace
[04:37:59] [PASSED] Kernel buffer object
[04:37:59] [PASSED] Shared buffer object
[04:37:59] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[04:37:59] [PASSED] ttm_bo_init_reserved_resv
[04:37:59] ================== ttm_bo_validate_basic ==================
[04:37:59] [PASSED] Buffer object for userspace
[04:37:59] [PASSED] Kernel buffer object
[04:37:59] [PASSED] Shared buffer object
[04:37:59] ============== [PASSED] ttm_bo_validate_basic ==============
[04:37:59] [PASSED] ttm_bo_validate_invalid_placement
[04:37:59] ============= ttm_bo_validate_same_placement ==============
[04:37:59] [PASSED] System manager
[04:37:59] [PASSED] VRAM manager
[04:37:59] ========= [PASSED] ttm_bo_validate_same_placement ==========
[04:37:59] [PASSED] ttm_bo_validate_failed_alloc
[04:37:59] [PASSED] ttm_bo_validate_pinned
[04:37:59] [PASSED] ttm_bo_validate_busy_placement
[04:37:59] ================ ttm_bo_validate_multihop =================
[04:37:59] [PASSED] Buffer object for userspace
[04:37:59] [PASSED] Kernel buffer object
[04:37:59] [PASSED] Shared buffer object
[04:37:59] ============ [PASSED] ttm_bo_validate_multihop =============
[04:37:59] ========== ttm_bo_validate_no_placement_signaled ==========
[04:37:59] [PASSED] Buffer object in system domain, no page vector
[04:37:59] [PASSED] Buffer object in system domain with an existing page vector
[04:37:59] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[04:37:59] ======== ttm_bo_validate_no_placement_not_signaled ========
[04:37:59] [PASSED] Buffer object for userspace
[04:37:59] [PASSED] Kernel buffer object
[04:37:59] [PASSED] Shared buffer object
[04:37:59] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[04:37:59] [PASSED] ttm_bo_validate_move_fence_signaled
[04:37:59] ========= ttm_bo_validate_move_fence_not_signaled =========
[04:37:59] [PASSED] Waits for GPU
[04:37:59] [PASSED] Tries to lock straight away
[04:38:00] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[04:38:00] [PASSED] ttm_bo_validate_swapout
[04:38:00] [PASSED] ttm_bo_validate_happy_evict
[04:38:00] [PASSED] ttm_bo_validate_all_pinned_evict
[04:38:00] [PASSED] ttm_bo_validate_allowed_only_evict
[04:38:00] [PASSED] ttm_bo_validate_deleted_evict
[04:38:00] [PASSED] ttm_bo_validate_busy_domain_evict
[04:38:00] [PASSED] ttm_bo_validate_evict_gutting
[04:38:00] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[04:38:00] ================= [PASSED] ttm_bo_validate =================
[04:38:00] ============================================================
[04:38:00] Testing complete. Ran 102 tests: passed: 102
[04:38:00] Elapsed time: 10.497s total, 1.752s configuring, 8.078s building, 0.578s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 17+ messages in thread* ✓ Xe.CI.BAT: success for Introduce helper for display workarounds and add Wa_16025573575 (rev3)
2025-07-11 4:18 [PATCH 0/2] Introduce helper for display workarounds and add Wa_16025573575 Ankit Nautiyal
` (2 preceding siblings ...)
2025-07-11 4:38 ` ✓ CI.KUnit: success for Introduce helper for display workarounds and add Wa_16025573575 (rev3) Patchwork
@ 2025-07-11 5:31 ` Patchwork
2025-07-11 12:18 ` ✓ Xe.CI.Full: " Patchwork
` (4 subsequent siblings)
8 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2025-07-11 5:31 UTC (permalink / raw)
To: Ankit Nautiyal; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1490 bytes --]
== Series Details ==
Series: Introduce helper for display workarounds and add Wa_16025573575 (rev3)
URL : https://patchwork.freedesktop.org/series/150935/
State : success
== Summary ==
CI Bug Log - changes from xe-3395-a24a534fec895b4bec484d85040cc2ed9c13abbc_BAT -> xe-pw-150935v3_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 8)
------------------------------
Missing (1): bat-adlp-vm
Known issues
------------
Here are the changes found in xe-pw-150935v3_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_flip@basic-plain-flip@b-edp1:
- bat-adlp-7: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#4543]) +1 other test dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3395-a24a534fec895b4bec484d85040cc2ed9c13abbc/bat-adlp-7/igt@kms_flip@basic-plain-flip@b-edp1.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/bat-adlp-7/igt@kms_flip@basic-plain-flip@b-edp1.html
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
Build changes
-------------
* Linux: xe-3395-a24a534fec895b4bec484d85040cc2ed9c13abbc -> xe-pw-150935v3
IGT_8451: 8451
xe-3395-a24a534fec895b4bec484d85040cc2ed9c13abbc: a24a534fec895b4bec484d85040cc2ed9c13abbc
xe-pw-150935v3: 150935v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/index.html
[-- Attachment #2: Type: text/html, Size: 2055 bytes --]
^ permalink raw reply [flat|nested] 17+ messages in thread* ✓ Xe.CI.Full: success for Introduce helper for display workarounds and add Wa_16025573575 (rev3)
2025-07-11 4:18 [PATCH 0/2] Introduce helper for display workarounds and add Wa_16025573575 Ankit Nautiyal
` (3 preceding siblings ...)
2025-07-11 5:31 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-07-11 12:18 ` Patchwork
2025-07-15 15:50 ` ✓ CI.KUnit: success for Introduce helper for display workarounds and add Wa_16025573575 (rev4) Patchwork
` (3 subsequent siblings)
8 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2025-07-11 12:18 UTC (permalink / raw)
To: Ankit Nautiyal; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 30253 bytes --]
== Series Details ==
Series: Introduce helper for display workarounds and add Wa_16025573575 (rev3)
URL : https://patchwork.freedesktop.org/series/150935/
State : success
== Summary ==
CI Bug Log - changes from xe-3395-a24a534fec895b4bec484d85040cc2ed9c13abbc_FULL -> xe-pw-150935v3_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-150935v3_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-bmg: NOTRUN -> [SKIP][1] ([Intel XE#1124])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-bmg-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-2:
- shard-dg2-set2: NOTRUN -> [SKIP][2] ([Intel XE#787]) +167 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-dg2-432/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][3] ([Intel XE#2705] / [Intel XE#4212])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4:
- shard-dg2-set2: [PASS][4] -> [INCOMPLETE][5] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3395-a24a534fec895b4bec484d85040cc2ed9c13abbc/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html
* igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-d-dp-2:
- shard-dg2-set2: NOTRUN -> [SKIP][6] ([Intel XE#455] / [Intel XE#787]) +23 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-dg2-432/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-d-dp-2.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][7] ([Intel XE#1178]) +1 other test fail
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-dg2-434/igt@kms_content_protection@atomic-dpms@pipe-a-dp-4.html
* igt@kms_content_protection@srm@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][8] ([Intel XE#1178]) +1 other test fail
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-bmg-3/igt@kms_content_protection@srm@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-offscreen-128x42:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2320])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-bmg-7/igt@kms_cursor_crc@cursor-offscreen-128x42.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions:
- shard-dg2-set2: [PASS][10] -> [INCOMPLETE][11] ([Intel XE#3226])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3395-a24a534fec895b4bec484d85040cc2ed9c13abbc/shard-dg2-435/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-dg2-433/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-bmg: [PASS][12] -> [SKIP][13] ([Intel XE#2291]) +4 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3395-a24a534fec895b4bec484d85040cc2ed9c13abbc/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-bmg: [PASS][14] -> [FAIL][15] ([Intel XE#4633])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3395-a24a534fec895b4bec484d85040cc2ed9c13abbc/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_dp_aux_dev:
- shard-bmg: [PASS][16] -> [SKIP][17] ([Intel XE#3009])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3395-a24a534fec895b4bec484d85040cc2ed9c13abbc/shard-bmg-4/igt@kms_dp_aux_dev.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-bmg-6/igt@kms_dp_aux_dev.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@cd-dp2-hdmi-a3:
- shard-bmg: [PASS][18] -> [INCOMPLETE][19] ([Intel XE#2049] / [Intel XE#2597]) +3 other tests incomplete
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3395-a24a534fec895b4bec484d85040cc2ed9c13abbc/shard-bmg-3/igt@kms_flip@2x-flip-vs-suspend-interruptible@cd-dp2-hdmi-a3.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-bmg-4/igt@kms_flip@2x-flip-vs-suspend-interruptible@cd-dp2-hdmi-a3.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-bmg: [PASS][20] -> [SKIP][21] ([Intel XE#2316]) +8 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3395-a24a534fec895b4bec484d85040cc2ed9c13abbc/shard-bmg-7/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-bmg-6/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@basic-flip-vs-wf_vblank:
- shard-adlp: [PASS][22] -> [DMESG-WARN][23] ([Intel XE#4543]) +6 other tests dmesg-warn
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3395-a24a534fec895b4bec484d85040cc2ed9c13abbc/shard-adlp-2/igt@kms_flip@basic-flip-vs-wf_vblank.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-adlp-9/igt@kms_flip@basic-flip-vs-wf_vblank.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [PASS][24] -> [FAIL][25] ([Intel XE#301]) +3 other tests fail
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3395-a24a534fec895b4bec484d85040cc2ed9c13abbc/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_flip@flip-vs-expired-vblank@c-dp4:
- shard-dg2-set2: [PASS][26] -> [FAIL][27] ([Intel XE#301] / [Intel XE#3321]) +1 other test fail
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3395-a24a534fec895b4bec484d85040cc2ed9c13abbc/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank@c-dp4.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank@c-dp4.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#5390])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2313])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-bmg: [PASS][30] -> [SKIP][31] ([Intel XE#3012])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3395-a24a534fec895b4bec484d85040cc2ed9c13abbc/shard-bmg-4/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-bmg: [PASS][32] -> [SKIP][33] ([Intel XE#4596])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3395-a24a534fec895b4bec484d85040cc2ed9c13abbc/shard-bmg-7/igt@kms_plane_multiple@2x-tiling-4.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#1489])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-bmg-7/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr@fbc-psr-no-drrs:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2234] / [Intel XE#2850])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-bmg-7/igt@kms_psr@fbc-psr-no-drrs.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#3414] / [Intel XE#3904])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-bmg-7/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_setmode@basic:
- shard-adlp: [PASS][37] -> [FAIL][38] ([Intel XE#2883]) +2 other tests fail
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3395-a24a534fec895b4bec484d85040cc2ed9c13abbc/shard-adlp-1/igt@kms_setmode@basic.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-adlp-3/igt@kms_setmode@basic.html
* igt@kms_setmode@basic@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][39] ([Intel XE#2883]) +3 other tests fail
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-bmg-3/igt@kms_setmode@basic@pipe-a-dp-2.html
* igt@xe_eudebug@basic-vm-bind-ufence:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#4837]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-bmg-7/igt@xe_eudebug@basic-vm-bind-ufence.html
* igt@xe_exec_balancer@once-virtual-userptr-invalidate:
- shard-adlp: [PASS][41] -> [DMESG-WARN][42] ([Intel XE#2953] / [Intel XE#4173]) +3 other tests dmesg-warn
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3395-a24a534fec895b4bec484d85040cc2ed9c13abbc/shard-adlp-8/igt@xe_exec_balancer@once-virtual-userptr-invalidate.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-adlp-8/igt@xe_exec_balancer@once-virtual-userptr-invalidate.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2322])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-bmg-7/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race:
- shard-dg2-set2: [PASS][44] -> [SKIP][45] ([Intel XE#1392]) +7 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3395-a24a534fec895b4bec484d85040cc2ed9c13abbc/shard-dg2-466/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-dg2-432/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_capture@reset:
- shard-dg2-set2: [PASS][46] -> [FAIL][47] ([Intel XE#5481])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3395-a24a534fec895b4bec484d85040cc2ed9c13abbc/shard-dg2-464/igt@xe_exec_capture@reset.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-dg2-435/igt@xe_exec_capture@reset.html
* igt@xe_exec_reset@gt-reset-stress:
- shard-adlp: [PASS][48] -> [DMESG-WARN][49] ([Intel XE#4812])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3395-a24a534fec895b4bec484d85040cc2ed9c13abbc/shard-adlp-2/igt@xe_exec_reset@gt-reset-stress.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-adlp-6/igt@xe_exec_reset@gt-reset-stress.html
* igt@xe_exec_system_allocator@threads-many-mmap-new-huge:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#4943])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-bmg-7/igt@xe_exec_system_allocator@threads-many-mmap-new-huge.html
* igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p:
- shard-dg2-set2: NOTRUN -> [FAIL][51] ([Intel XE#1173])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-dg2-463/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html
* igt@xe_query@multigpu-query-pxp-status:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#944])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-bmg-7/igt@xe_query@multigpu-query-pxp-status.html
#### Possible fixes ####
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-adlp: [DMESG-FAIL][53] ([Intel XE#4543]) -> [PASS][54]
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3395-a24a534fec895b4bec484d85040cc2ed9c13abbc/shard-adlp-9/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-adlp-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- shard-bmg: [SKIP][55] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][56]
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3395-a24a534fec895b4bec484d85040cc2ed9c13abbc/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-bmg-3/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [INCOMPLETE][57] ([Intel XE#3862]) -> [PASS][58] +1 other test pass
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3395-a24a534fec895b4bec484d85040cc2ed9c13abbc/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6:
- shard-dg2-set2: [INCOMPLETE][59] ([Intel XE#2705] / [Intel XE#4212]) -> [PASS][60]
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3395-a24a534fec895b4bec484d85040cc2ed9c13abbc/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [SKIP][61] ([Intel XE#2291]) -> [PASS][62] +7 other tests pass
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3395-a24a534fec895b4bec484d85040cc2ed9c13abbc/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-bmg: [SKIP][63] ([Intel XE#1340]) -> [PASS][64]
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3395-a24a534fec895b4bec484d85040cc2ed9c13abbc/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-bmg-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop:
- shard-bmg: [SKIP][65] ([Intel XE#2316]) -> [PASS][66] +10 other tests pass
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3395-a24a534fec895b4bec484d85040cc2ed9c13abbc/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-bmg-3/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
* igt@kms_flip@flip-vs-rmfb-interruptible:
- shard-adlp: [DMESG-WARN][67] ([Intel XE#4543] / [Intel XE#5208]) -> [PASS][68]
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3395-a24a534fec895b4bec484d85040cc2ed9c13abbc/shard-adlp-8/igt@kms_flip@flip-vs-rmfb-interruptible.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-adlp-4/igt@kms_flip@flip-vs-rmfb-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-adlp: [DMESG-WARN][69] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][70] +2 other tests pass
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3395-a24a534fec895b4bec484d85040cc2ed9c13abbc/shard-adlp-1/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-adlp-3/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend@b-hdmi-a1:
- shard-adlp: [DMESG-WARN][71] ([Intel XE#4543]) -> [PASS][72] +4 other tests pass
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3395-a24a534fec895b4bec484d85040cc2ed9c13abbc/shard-adlp-9/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-adlp-4/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
* igt@kms_hdr@static-toggle-dpms:
- shard-bmg: [SKIP][73] ([Intel XE#1503]) -> [PASS][74]
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3395-a24a534fec895b4bec484d85040cc2ed9c13abbc/shard-bmg-6/igt@kms_hdr@static-toggle-dpms.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-bmg-4/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-bmg: [SKIP][75] ([Intel XE#4596]) -> [PASS][76]
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3395-a24a534fec895b4bec484d85040cc2ed9c13abbc/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-none.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-lnl: [FAIL][77] ([Intel XE#2883]) -> [PASS][78] +2 other tests pass
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3395-a24a534fec895b4bec484d85040cc2ed9c13abbc/shard-lnl-7/igt@kms_setmode@basic@pipe-b-edp-1.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-lnl-1/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind:
- shard-dg2-set2: [SKIP][79] ([Intel XE#1392]) -> [PASS][80] +5 other tests pass
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3395-a24a534fec895b4bec484d85040cc2ed9c13abbc/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-dg2-434/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html
* igt@xe_exec_compute_mode@twice-userptr:
- shard-lnl: [FAIL][81] -> [PASS][82]
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3395-a24a534fec895b4bec484d85040cc2ed9c13abbc/shard-lnl-6/igt@xe_exec_compute_mode@twice-userptr.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-lnl-6/igt@xe_exec_compute_mode@twice-userptr.html
#### Warnings ####
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [INCOMPLETE][83] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) -> [INCOMPLETE][84] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3395-a24a534fec895b4bec484d85040cc2ed9c13abbc/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [INCOMPLETE][85] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#4212]) -> [INCOMPLETE][86] ([Intel XE#2705] / [Intel XE#4212])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3395-a24a534fec895b4bec484d85040cc2ed9c13abbc/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_content_protection@lic-type-0:
- shard-bmg: [FAIL][87] ([Intel XE#1178]) -> [SKIP][88] ([Intel XE#2341])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3395-a24a534fec895b4bec484d85040cc2ed9c13abbc/shard-bmg-7/igt@kms_content_protection@lic-type-0.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-bmg-6/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@srm:
- shard-bmg: [SKIP][89] ([Intel XE#2341]) -> [FAIL][90] ([Intel XE#1178]) +1 other test fail
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3395-a24a534fec895b4bec484d85040cc2ed9c13abbc/shard-bmg-6/igt@kms_content_protection@srm.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-bmg-3/igt@kms_content_protection@srm.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][91] ([Intel XE#2311]) -> [SKIP][92] ([Intel XE#2312]) +15 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3395-a24a534fec895b4bec484d85040cc2ed9c13abbc/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][93] ([Intel XE#2312]) -> [SKIP][94] ([Intel XE#2311]) +22 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3395-a24a534fec895b4bec484d85040cc2ed9c13abbc/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][95] ([Intel XE#5390]) -> [SKIP][96] ([Intel XE#2312]) +11 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3395-a24a534fec895b4bec484d85040cc2ed9c13abbc/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][97] ([Intel XE#2312]) -> [SKIP][98] ([Intel XE#5390]) +10 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3395-a24a534fec895b4bec484d85040cc2ed9c13abbc/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][99] ([Intel XE#2312]) -> [SKIP][100] ([Intel XE#2313]) +26 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3395-a24a534fec895b4bec484d85040cc2ed9c13abbc/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][101] ([Intel XE#2313]) -> [SKIP][102] ([Intel XE#2312]) +20 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3395-a24a534fec895b4bec484d85040cc2ed9c13abbc/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-bmg: [SKIP][103] ([Intel XE#4596]) -> [SKIP][104] ([Intel XE#5021])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3395-a24a534fec895b4bec484d85040cc2ed9c13abbc/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-y.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-bmg-8/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][105] ([Intel XE#2426]) -> [SKIP][106] ([Intel XE#2509])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3395-a24a534fec895b4bec484d85040cc2ed9c13abbc/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@xe_peer2peer@read:
- shard-dg2-set2: [SKIP][107] ([Intel XE#1061]) -> [FAIL][108] ([Intel XE#1173])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3395-a24a534fec895b4bec484d85040cc2ed9c13abbc/shard-dg2-432/igt@xe_peer2peer@read.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/shard-dg2-463/igt@xe_peer2peer@read.html
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[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#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[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#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
[Intel XE#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633
[Intel XE#4812]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4812
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5208
[Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
[Intel XE#5481]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5481
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* Linux: xe-3395-a24a534fec895b4bec484d85040cc2ed9c13abbc -> xe-pw-150935v3
IGT_8451: 8451
xe-3395-a24a534fec895b4bec484d85040cc2ed9c13abbc: a24a534fec895b4bec484d85040cc2ed9c13abbc
xe-pw-150935v3: 150935v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v3/index.html
[-- Attachment #2: Type: text/html, Size: 35748 bytes --]
^ permalink raw reply [flat|nested] 17+ messages in thread* ✓ CI.KUnit: success for Introduce helper for display workarounds and add Wa_16025573575 (rev4)
2025-07-11 4:18 [PATCH 0/2] Introduce helper for display workarounds and add Wa_16025573575 Ankit Nautiyal
` (4 preceding siblings ...)
2025-07-11 12:18 ` ✓ Xe.CI.Full: " Patchwork
@ 2025-07-15 15:50 ` Patchwork
2025-07-15 16:27 ` ✓ Xe.CI.BAT: " Patchwork
` (2 subsequent siblings)
8 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2025-07-15 15:50 UTC (permalink / raw)
To: Ankit Nautiyal; +Cc: intel-xe
== Series Details ==
Series: Introduce helper for display workarounds and add Wa_16025573575 (rev4)
URL : https://patchwork.freedesktop.org/series/150935/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[15:49:16] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[15:49:20] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[15:49:47] Starting KUnit Kernel (1/1)...
[15:49:47] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[15:49:47] ================== guc_buf (11 subtests) ===================
[15:49:47] [PASSED] test_smallest
[15:49:47] [PASSED] test_largest
[15:49:47] [PASSED] test_granular
[15:49:47] [PASSED] test_unique
[15:49:47] [PASSED] test_overlap
[15:49:47] [PASSED] test_reusable
[15:49:47] [PASSED] test_too_big
[15:49:47] [PASSED] test_flush
[15:49:47] [PASSED] test_lookup
[15:49:47] [PASSED] test_data
[15:49:47] [PASSED] test_class
[15:49:47] ===================== [PASSED] guc_buf =====================
[15:49:47] =================== guc_dbm (7 subtests) ===================
[15:49:47] [PASSED] test_empty
[15:49:47] [PASSED] test_default
[15:49:47] ======================== test_size ========================
[15:49:47] [PASSED] 4
[15:49:47] [PASSED] 8
[15:49:47] [PASSED] 32
[15:49:47] [PASSED] 256
[15:49:47] ==================== [PASSED] test_size ====================
[15:49:47] ======================= test_reuse ========================
[15:49:47] [PASSED] 4
[15:49:47] [PASSED] 8
[15:49:47] [PASSED] 32
[15:49:47] [PASSED] 256
[15:49:47] =================== [PASSED] test_reuse ====================
[15:49:47] =================== test_range_overlap ====================
[15:49:47] [PASSED] 4
[15:49:47] [PASSED] 8
[15:49:47] [PASSED] 32
[15:49:47] [PASSED] 256
[15:49:47] =============== [PASSED] test_range_overlap ================
[15:49:47] =================== test_range_compact ====================
[15:49:47] [PASSED] 4
[15:49:47] [PASSED] 8
[15:49:47] [PASSED] 32
[15:49:47] [PASSED] 256
[15:49:47] =============== [PASSED] test_range_compact ================
[15:49:47] ==================== test_range_spare =====================
[15:49:47] [PASSED] 4
[15:49:47] [PASSED] 8
[15:49:47] [PASSED] 32
[15:49:47] [PASSED] 256
[15:49:47] ================ [PASSED] test_range_spare =================
[15:49:47] ===================== [PASSED] guc_dbm =====================
[15:49:47] =================== guc_idm (6 subtests) ===================
[15:49:47] [PASSED] bad_init
[15:49:47] [PASSED] no_init
[15:49:47] [PASSED] init_fini
[15:49:47] [PASSED] check_used
[15:49:47] [PASSED] check_quota
[15:49:47] [PASSED] check_all
[15:49:47] ===================== [PASSED] guc_idm =====================
[15:49:47] ================== no_relay (3 subtests) ===================
[15:49:47] [PASSED] xe_drops_guc2pf_if_not_ready
[15:49:47] [PASSED] xe_drops_guc2vf_if_not_ready
[15:49:47] [PASSED] xe_rejects_send_if_not_ready
[15:49:47] ==================== [PASSED] no_relay =====================
[15:49:47] ================== pf_relay (14 subtests) ==================
[15:49:47] [PASSED] pf_rejects_guc2pf_too_short
[15:49:47] [PASSED] pf_rejects_guc2pf_too_long
[15:49:47] [PASSED] pf_rejects_guc2pf_no_payload
[15:49:47] [PASSED] pf_fails_no_payload
[15:49:47] [PASSED] pf_fails_bad_origin
[15:49:47] [PASSED] pf_fails_bad_type
[15:49:47] [PASSED] pf_txn_reports_error
[15:49:47] [PASSED] pf_txn_sends_pf2guc
[15:49:47] [PASSED] pf_sends_pf2guc
[15:49:47] [SKIPPED] pf_loopback_nop
[15:49:47] [SKIPPED] pf_loopback_echo
[15:49:47] [SKIPPED] pf_loopback_fail
[15:49:47] [SKIPPED] pf_loopback_busy
[15:49:47] [SKIPPED] pf_loopback_retry
[15:49:47] ==================== [PASSED] pf_relay =====================
[15:49:47] ================== vf_relay (3 subtests) ===================
[15:49:47] [PASSED] vf_rejects_guc2vf_too_short
[15:49:47] [PASSED] vf_rejects_guc2vf_too_long
[15:49:47] [PASSED] vf_rejects_guc2vf_no_payload
[15:49:47] ==================== [PASSED] vf_relay =====================
[15:49:47] ===================== lmtt (1 subtest) =====================
[15:49:47] ======================== test_ops =========================
[15:49:47] [PASSED] 2-level
[15:49:47] [PASSED] multi-level
[15:49:47] ==================== [PASSED] test_ops =====================
[15:49:47] ====================== [PASSED] lmtt =======================
[15:49:47] ================= pf_service (11 subtests) =================
[15:49:47] [PASSED] pf_negotiate_any
[15:49:47] [PASSED] pf_negotiate_base_match
[15:49:47] [PASSED] pf_negotiate_base_newer
[15:49:47] [PASSED] pf_negotiate_base_next
[15:49:47] [SKIPPED] pf_negotiate_base_older
[15:49:47] [PASSED] pf_negotiate_base_prev
[15:49:47] [PASSED] pf_negotiate_latest_match
[15:49:47] [PASSED] pf_negotiate_latest_newer
[15:49:47] [PASSED] pf_negotiate_latest_next
[15:49:47] [SKIPPED] pf_negotiate_latest_older
[15:49:47] [SKIPPED] pf_negotiate_latest_prev
[15:49:47] =================== [PASSED] pf_service ====================
[15:49:47] =================== xe_mocs (2 subtests) ===================
[15:49:47] ================ xe_live_mocs_kernel_kunit ================
[15:49:47] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[15:49:47] ================ xe_live_mocs_reset_kunit =================
[15:49:47] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[15:49:47] ==================== [SKIPPED] xe_mocs =====================
[15:49:47] ================= xe_migrate (2 subtests) ==================
[15:49:47] ================= xe_migrate_sanity_kunit =================
[15:49:47] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[15:49:47] ================== xe_validate_ccs_kunit ==================
[15:49:47] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[15:49:47] =================== [SKIPPED] xe_migrate ===================
[15:49:47] ================== xe_dma_buf (1 subtest) ==================
[15:49:47] ==================== xe_dma_buf_kunit =====================
[15:49:47] ================ [SKIPPED] xe_dma_buf_kunit ================
[15:49:47] =================== [SKIPPED] xe_dma_buf ===================
[15:49:47] ================= xe_bo_shrink (1 subtest) =================
[15:49:47] =================== xe_bo_shrink_kunit ====================
[15:49:47] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[15:49:47] ================== [SKIPPED] xe_bo_shrink ==================
[15:49:47] ==================== xe_bo (2 subtests) ====================
[15:49:47] ================== xe_ccs_migrate_kunit ===================
[15:49:47] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[15:49:47] ==================== xe_bo_evict_kunit ====================
[15:49:47] =============== [SKIPPED] xe_bo_evict_kunit ================
[15:49:47] ===================== [SKIPPED] xe_bo ======================
[15:49:47] ==================== args (11 subtests) ====================
[15:49:47] [PASSED] count_args_test
[15:49:47] [PASSED] call_args_example
[15:49:47] [PASSED] call_args_test
[15:49:47] [PASSED] drop_first_arg_example
[15:49:47] [PASSED] drop_first_arg_test
[15:49:47] [PASSED] first_arg_example
[15:49:47] [PASSED] first_arg_test
[15:49:47] [PASSED] last_arg_example
[15:49:47] [PASSED] last_arg_test
[15:49:47] [PASSED] pick_arg_example
[15:49:47] [PASSED] sep_comma_example
[15:49:47] ====================== [PASSED] args =======================
[15:49:47] =================== xe_pci (3 subtests) ====================
[15:49:47] ==================== check_graphics_ip ====================
[15:49:47] [PASSED] 12.70 Xe_LPG
[15:49:47] [PASSED] 12.71 Xe_LPG
[15:49:47] [PASSED] 12.74 Xe_LPG+
[15:49:47] [PASSED] 20.01 Xe2_HPG
[15:49:47] [PASSED] 20.02 Xe2_HPG
[15:49:47] [PASSED] 20.04 Xe2_LPG
[15:49:47] [PASSED] 30.00 Xe3_LPG
[15:49:47] [PASSED] 30.01 Xe3_LPG
[15:49:47] [PASSED] 30.03 Xe3_LPG
[15:49:47] ================ [PASSED] check_graphics_ip ================
[15:49:47] ===================== check_media_ip ======================
[15:49:47] [PASSED] 13.00 Xe_LPM+
[15:49:47] [PASSED] 13.01 Xe2_HPM
[15:49:47] [PASSED] 20.00 Xe2_LPM
[15:49:47] [PASSED] 30.00 Xe3_LPM
[15:49:47] [PASSED] 30.02 Xe3_LPM
[15:49:47] ================= [PASSED] check_media_ip ==================
[15:49:47] ================= check_platform_gt_count =================
[15:49:47] [PASSED] 0x9A60 (TIGERLAKE)
[15:49:47] [PASSED] 0x9A68 (TIGERLAKE)
[15:49:47] [PASSED] 0x9A70 (TIGERLAKE)
[15:49:47] [PASSED] 0x9A40 (TIGERLAKE)
[15:49:47] [PASSED] 0x9A49 (TIGERLAKE)
[15:49:47] [PASSED] 0x9A59 (TIGERLAKE)
[15:49:47] [PASSED] 0x9A78 (TIGERLAKE)
[15:49:47] [PASSED] 0x9AC0 (TIGERLAKE)
[15:49:47] [PASSED] 0x9AC9 (TIGERLAKE)
[15:49:47] [PASSED] 0x9AD9 (TIGERLAKE)
[15:49:47] [PASSED] 0x9AF8 (TIGERLAKE)
[15:49:47] [PASSED] 0x4C80 (ROCKETLAKE)
[15:49:47] [PASSED] 0x4C8A (ROCKETLAKE)
[15:49:47] [PASSED] 0x4C8B (ROCKETLAKE)
[15:49:47] [PASSED] 0x4C8C (ROCKETLAKE)
[15:49:47] [PASSED] 0x4C90 (ROCKETLAKE)
[15:49:47] [PASSED] 0x4C9A (ROCKETLAKE)
[15:49:47] [PASSED] 0x4680 (ALDERLAKE_S)
[15:49:47] [PASSED] 0x4682 (ALDERLAKE_S)
[15:49:47] [PASSED] 0x4688 (ALDERLAKE_S)
[15:49:47] [PASSED] 0x468A (ALDERLAKE_S)
[15:49:47] [PASSED] 0x468B (ALDERLAKE_S)
[15:49:47] [PASSED] 0x4690 (ALDERLAKE_S)
[15:49:47] [PASSED] 0x4692 (ALDERLAKE_S)
[15:49:47] [PASSED] 0x4693 (ALDERLAKE_S)
[15:49:47] [PASSED] 0x46A0 (ALDERLAKE_P)
[15:49:47] [PASSED] 0x46A1 (ALDERLAKE_P)
[15:49:47] [PASSED] 0x46A2 (ALDERLAKE_P)
[15:49:47] [PASSED] 0x46A3 (ALDERLAKE_P)
[15:49:47] [PASSED] 0x46A6 (ALDERLAKE_P)
[15:49:47] [PASSED] 0x46A8 (ALDERLAKE_P)
[15:49:47] [PASSED] 0x46AA (ALDERLAKE_P)
[15:49:47] [PASSED] 0x462A (ALDERLAKE_P)
[15:49:47] [PASSED] 0x4626 (ALDERLAKE_P)
[15:49:47] [PASSED] 0x4628 (ALDERLAKE_P)
[15:49:47] [PASSED] 0x46B0 (ALDERLAKE_P)
[15:49:47] [PASSED] 0x46B1 (ALDERLAKE_P)
[15:49:47] [PASSED] 0x46B2 (ALDERLAKE_P)
[15:49:47] [PASSED] 0x46B3 (ALDERLAKE_P)
[15:49:47] [PASSED] 0x46C0 (ALDERLAKE_P)
[15:49:47] [PASSED] 0x46C1 (ALDERLAKE_P)
[15:49:47] [PASSED] 0x46C2 (ALDERLAKE_P)
[15:49:47] [PASSED] 0x46C3 (ALDERLAKE_P)
[15:49:47] [PASSED] 0x46D0 (ALDERLAKE_N)
[15:49:47] [PASSED] 0x46D1 (ALDERLAKE_N)
[15:49:47] [PASSED] 0x46D2 (ALDERLAKE_N)
[15:49:47] [PASSED] 0x46D3 (ALDERLAKE_N)
[15:49:47] [PASSED] 0x46D4 (ALDERLAKE_N)
[15:49:47] [PASSED] 0xA721 (ALDERLAKE_P)
[15:49:47] [PASSED] 0xA7A1 (ALDERLAKE_P)
[15:49:47] [PASSED] 0xA7A9 (ALDERLAKE_P)
[15:49:47] [PASSED] 0xA7AC (ALDERLAKE_P)
[15:49:47] [PASSED] 0xA7AD (ALDERLAKE_P)
[15:49:47] [PASSED] 0xA720 (ALDERLAKE_P)
[15:49:47] [PASSED] 0xA7A0 (ALDERLAKE_P)
[15:49:47] [PASSED] 0xA7A8 (ALDERLAKE_P)
[15:49:47] [PASSED] 0xA7AA (ALDERLAKE_P)
[15:49:47] [PASSED] 0xA7AB (ALDERLAKE_P)
[15:49:47] [PASSED] 0xA780 (ALDERLAKE_S)
[15:49:47] [PASSED] 0xA781 (ALDERLAKE_S)
[15:49:47] [PASSED] 0xA782 (ALDERLAKE_S)
[15:49:47] [PASSED] 0xA783 (ALDERLAKE_S)
[15:49:47] [PASSED] 0xA788 (ALDERLAKE_S)
[15:49:47] [PASSED] 0xA789 (ALDERLAKE_S)
[15:49:47] [PASSED] 0xA78A (ALDERLAKE_S)
[15:49:47] [PASSED] 0xA78B (ALDERLAKE_S)
[15:49:47] [PASSED] 0x4905 (DG1)
[15:49:47] [PASSED] 0x4906 (DG1)
[15:49:47] [PASSED] 0x4907 (DG1)
[15:49:47] [PASSED] 0x4908 (DG1)
[15:49:47] [PASSED] 0x4909 (DG1)
[15:49:47] [PASSED] 0x56C0 (DG2)
[15:49:47] [PASSED] 0x56C2 (DG2)
[15:49:47] [PASSED] 0x56C1 (DG2)
[15:49:47] [PASSED] 0x7D51 (METEORLAKE)
[15:49:47] [PASSED] 0x7DD1 (METEORLAKE)
[15:49:47] [PASSED] 0x7D41 (METEORLAKE)
[15:49:47] [PASSED] 0x7D67 (METEORLAKE)
[15:49:47] [PASSED] 0xB640 (METEORLAKE)
[15:49:47] [PASSED] 0x56A0 (DG2)
[15:49:47] [PASSED] 0x56A1 (DG2)
[15:49:47] [PASSED] 0x56A2 (DG2)
[15:49:47] [PASSED] 0x56BE (DG2)
[15:49:47] [PASSED] 0x56BF (DG2)
[15:49:47] [PASSED] 0x5690 (DG2)
[15:49:47] [PASSED] 0x5691 (DG2)
[15:49:47] [PASSED] 0x5692 (DG2)
[15:49:47] [PASSED] 0x56A5 (DG2)
[15:49:47] [PASSED] 0x56A6 (DG2)
[15:49:47] [PASSED] 0x56B0 (DG2)
[15:49:47] [PASSED] 0x56B1 (DG2)
[15:49:47] [PASSED] 0x56BA (DG2)
[15:49:47] [PASSED] 0x56BB (DG2)
[15:49:47] [PASSED] 0x56BC (DG2)
[15:49:47] [PASSED] 0x56BD (DG2)
[15:49:47] [PASSED] 0x5693 (DG2)
[15:49:47] [PASSED] 0x5694 (DG2)
[15:49:47] [PASSED] 0x5695 (DG2)
[15:49:47] [PASSED] 0x56A3 (DG2)
[15:49:47] [PASSED] 0x56A4 (DG2)
[15:49:47] [PASSED] 0x56B2 (DG2)
[15:49:47] [PASSED] 0x56B3 (DG2)
[15:49:47] [PASSED] 0x5696 (DG2)
[15:49:47] [PASSED] 0x5697 (DG2)
[15:49:47] [PASSED] 0xB69 (PVC)
[15:49:47] [PASSED] 0xB6E (PVC)
[15:49:47] [PASSED] 0xBD4 (PVC)
[15:49:47] [PASSED] 0xBD5 (PVC)
[15:49:47] [PASSED] 0xBD6 (PVC)
[15:49:47] [PASSED] 0xBD7 (PVC)
[15:49:47] [PASSED] 0xBD8 (PVC)
[15:49:47] [PASSED] 0xBD9 (PVC)
[15:49:47] [PASSED] 0xBDA (PVC)
[15:49:47] [PASSED] 0xBDB (PVC)
[15:49:47] [PASSED] 0xBE0 (PVC)
[15:49:47] [PASSED] 0xBE1 (PVC)
[15:49:47] [PASSED] 0xBE5 (PVC)
[15:49:47] [PASSED] 0x7D40 (METEORLAKE)
[15:49:47] [PASSED] 0x7D45 (METEORLAKE)
[15:49:47] [PASSED] 0x7D55 (METEORLAKE)
[15:49:47] [PASSED] 0x7D60 (METEORLAKE)
[15:49:47] [PASSED] 0x7DD5 (METEORLAKE)
[15:49:47] [PASSED] 0x6420 (LUNARLAKE)
[15:49:47] [PASSED] 0x64A0 (LUNARLAKE)
[15:49:47] [PASSED] 0x64B0 (LUNARLAKE)
[15:49:47] [PASSED] 0xE202 (BATTLEMAGE)
[15:49:47] [PASSED] 0xE209 (BATTLEMAGE)
[15:49:47] [PASSED] 0xE20B (BATTLEMAGE)
[15:49:47] [PASSED] 0xE20C (BATTLEMAGE)
[15:49:47] [PASSED] 0xE20D (BATTLEMAGE)
[15:49:47] [PASSED] 0xE210 (BATTLEMAGE)
[15:49:47] [PASSED] 0xE211 (BATTLEMAGE)
[15:49:47] [PASSED] 0xE212 (BATTLEMAGE)
[15:49:47] [PASSED] 0xE216 (BATTLEMAGE)
[15:49:47] [PASSED] 0xE220 (BATTLEMAGE)
[15:49:47] [PASSED] 0xE221 (BATTLEMAGE)
[15:49:47] [PASSED] 0xE222 (BATTLEMAGE)
[15:49:47] [PASSED] 0xE223 (BATTLEMAGE)
[15:49:47] [PASSED] 0xB080 (PANTHERLAKE)
[15:49:47] [PASSED] 0xB081 (PANTHERLAKE)
[15:49:47] [PASSED] 0xB082 (PANTHERLAKE)
[15:49:47] [PASSED] 0xB083 (PANTHERLAKE)
[15:49:47] [PASSED] 0xB084 (PANTHERLAKE)
[15:49:47] [PASSED] 0xB085 (PANTHERLAKE)
[15:49:47] [PASSED] 0xB086 (PANTHERLAKE)
[15:49:47] [PASSED] 0xB087 (PANTHERLAKE)
[15:49:47] [PASSED] 0xB08F (PANTHERLAKE)
[15:49:47] [PASSED] 0xB090 (PANTHERLAKE)
[15:49:47] [PASSED] 0xB0A0 (PANTHERLAKE)
[15:49:47] [PASSED] 0xB0B0 (PANTHERLAKE)
[15:49:47] [PASSED] 0xFD80 (PANTHERLAKE)
[15:49:47] [PASSED] 0xFD81 (PANTHERLAKE)
[15:49:47] ============= [PASSED] check_platform_gt_count =============
[15:49:47] ===================== [PASSED] xe_pci ======================
[15:49:47] =================== xe_rtp (2 subtests) ====================
[15:49:47] =============== xe_rtp_process_to_sr_tests ================
[15:49:47] [PASSED] coalesce-same-reg
[15:49:47] [PASSED] no-match-no-add
[15:49:47] [PASSED] match-or
[15:49:47] [PASSED] match-or-xfail
[15:49:47] [PASSED] no-match-no-add-multiple-rules
[15:49:47] [PASSED] two-regs-two-entries
[15:49:47] [PASSED] clr-one-set-other
[15:49:47] [PASSED] set-field
[15:49:47] [PASSED] conflict-duplicate
[15:49:47] [PASSED] conflict-not-disjoint
[15:49:47] [PASSED] conflict-reg-type
[15:49:47] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[15:49:47] ================== xe_rtp_process_tests ===================
[15:49:47] [PASSED] active1
[15:49:47] [PASSED] active2
[15:49:47] [PASSED] active-inactive
[15:49:47] [PASSED] inactive-active
[15:49:47] [PASSED] inactive-1st_or_active-inactive
[15:49:47] [PASSED] inactive-2nd_or_active-inactive
[15:49:47] [PASSED] inactive-last_or_active-inactive
[15:49:47] [PASSED] inactive-no_or_active-inactive
[15:49:47] ============== [PASSED] xe_rtp_process_tests ===============
[15:49:47] ===================== [PASSED] xe_rtp ======================
[15:49:47] ==================== xe_wa (1 subtest) =====================
[15:49:47] ======================== xe_wa_gt =========================
[15:49:47] [PASSED] TIGERLAKE (B0)
[15:49:47] [PASSED] DG1 (A0)
[15:49:47] [PASSED] DG1 (B0)
[15:49:47] [PASSED] ALDERLAKE_S (A0)
[15:49:47] [PASSED] ALDERLAKE_S (B0)
[15:49:47] [PASSED] ALDERLAKE_S (C0)
[15:49:47] [PASSED] ALDERLAKE_S (D0)
[15:49:47] [PASSED] ALDERLAKE_P (A0)
[15:49:47] [PASSED] ALDERLAKE_P (B0)
[15:49:47] [PASSED] ALDERLAKE_P (C0)
[15:49:47] [PASSED] ALDERLAKE_S_RPLS (D0)
[15:49:47] [PASSED] ALDERLAKE_P_RPLU (E0)
[15:49:47] [PASSED] DG2_G10 (C0)
[15:49:47] [PASSED] DG2_G11 (B1)
[15:49:47] [PASSED] DG2_G12 (A1)
[15:49:47] [PASSED] METEORLAKE (g:A0, m:A0)
[15:49:47] [PASSED] METEORLAKE (g:A0, m:A0)
[15:49:47] [PASSED] METEORLAKE (g:A0, m:A0)
[15:49:47] [PASSED] LUNARLAKE (g:A0, m:A0)
[15:49:47] [PASSED] LUNARLAKE (g:B0, m:A0)
stty: 'standard input': Inappropriate ioctl for device
[15:49:47] [PASSED] BATTLEMAGE (g:A0, m:A1)
[15:49:47] ==================== [PASSED] xe_wa_gt =====================
[15:49:47] ====================== [PASSED] xe_wa ======================
[15:49:47] ============================================================
[15:49:47] Testing complete. Ran 297 tests: passed: 281, skipped: 16
[15:49:47] Elapsed time: 31.410s total, 4.166s configuring, 26.923s building, 0.305s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[15:49:47] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[15:49:49] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[15:50:10] Starting KUnit Kernel (1/1)...
[15:50:10] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[15:50:10] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[15:50:10] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[15:50:10] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[15:50:10] =========== drm_validate_clone_mode (2 subtests) ===========
[15:50:10] ============== drm_test_check_in_clone_mode ===============
[15:50:10] [PASSED] in_clone_mode
[15:50:10] [PASSED] not_in_clone_mode
[15:50:10] ========== [PASSED] drm_test_check_in_clone_mode ===========
[15:50:10] =============== drm_test_check_valid_clones ===============
[15:50:10] [PASSED] not_in_clone_mode
[15:50:10] [PASSED] valid_clone
[15:50:10] [PASSED] invalid_clone
[15:50:10] =========== [PASSED] drm_test_check_valid_clones ===========
[15:50:10] ============= [PASSED] drm_validate_clone_mode =============
[15:50:10] ============= drm_validate_modeset (1 subtest) =============
[15:50:10] [PASSED] drm_test_check_connector_changed_modeset
[15:50:10] ============== [PASSED] drm_validate_modeset ===============
[15:50:10] ====== drm_test_bridge_get_current_state (2 subtests) ======
[15:50:10] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[15:50:10] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[15:50:10] ======== [PASSED] drm_test_bridge_get_current_state ========
[15:50:10] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[15:50:10] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[15:50:10] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[15:50:10] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[15:50:10] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[15:50:10] ============== drm_bridge_alloc (2 subtests) ===============
[15:50:10] [PASSED] drm_test_drm_bridge_alloc_basic
[15:50:10] [PASSED] drm_test_drm_bridge_alloc_get_put
[15:50:10] ================ [PASSED] drm_bridge_alloc =================
[15:50:10] ================== drm_buddy (7 subtests) ==================
[15:50:10] [PASSED] drm_test_buddy_alloc_limit
[15:50:10] [PASSED] drm_test_buddy_alloc_optimistic
[15:50:10] [PASSED] drm_test_buddy_alloc_pessimistic
[15:50:10] [PASSED] drm_test_buddy_alloc_pathological
[15:50:10] [PASSED] drm_test_buddy_alloc_contiguous
[15:50:10] [PASSED] drm_test_buddy_alloc_clear
[15:50:10] [PASSED] drm_test_buddy_alloc_range_bias
[15:50:10] ==================== [PASSED] drm_buddy ====================
[15:50:10] ============= drm_cmdline_parser (40 subtests) =============
[15:50:10] [PASSED] drm_test_cmdline_force_d_only
[15:50:10] [PASSED] drm_test_cmdline_force_D_only_dvi
[15:50:10] [PASSED] drm_test_cmdline_force_D_only_hdmi
[15:50:10] [PASSED] drm_test_cmdline_force_D_only_not_digital
[15:50:10] [PASSED] drm_test_cmdline_force_e_only
[15:50:10] [PASSED] drm_test_cmdline_res
[15:50:10] [PASSED] drm_test_cmdline_res_vesa
[15:50:10] [PASSED] drm_test_cmdline_res_vesa_rblank
[15:50:10] [PASSED] drm_test_cmdline_res_rblank
[15:50:10] [PASSED] drm_test_cmdline_res_bpp
[15:50:10] [PASSED] drm_test_cmdline_res_refresh
[15:50:10] [PASSED] drm_test_cmdline_res_bpp_refresh
[15:50:10] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[15:50:10] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[15:50:10] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[15:50:10] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[15:50:10] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[15:50:10] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[15:50:10] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[15:50:10] [PASSED] drm_test_cmdline_res_margins_force_on
[15:50:10] [PASSED] drm_test_cmdline_res_vesa_margins
[15:50:10] [PASSED] drm_test_cmdline_name
[15:50:10] [PASSED] drm_test_cmdline_name_bpp
[15:50:10] [PASSED] drm_test_cmdline_name_option
[15:50:10] [PASSED] drm_test_cmdline_name_bpp_option
[15:50:10] [PASSED] drm_test_cmdline_rotate_0
[15:50:10] [PASSED] drm_test_cmdline_rotate_90
[15:50:10] [PASSED] drm_test_cmdline_rotate_180
[15:50:10] [PASSED] drm_test_cmdline_rotate_270
[15:50:10] [PASSED] drm_test_cmdline_hmirror
[15:50:10] [PASSED] drm_test_cmdline_vmirror
[15:50:10] [PASSED] drm_test_cmdline_margin_options
[15:50:10] [PASSED] drm_test_cmdline_multiple_options
[15:50:10] [PASSED] drm_test_cmdline_bpp_extra_and_option
[15:50:10] [PASSED] drm_test_cmdline_extra_and_option
[15:50:10] [PASSED] drm_test_cmdline_freestanding_options
[15:50:10] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[15:50:10] [PASSED] drm_test_cmdline_panel_orientation
[15:50:10] ================ drm_test_cmdline_invalid =================
[15:50:10] [PASSED] margin_only
[15:50:10] [PASSED] interlace_only
[15:50:10] [PASSED] res_missing_x
[15:50:10] [PASSED] res_missing_y
[15:50:10] [PASSED] res_bad_y
[15:50:10] [PASSED] res_missing_y_bpp
[15:50:10] [PASSED] res_bad_bpp
[15:50:10] [PASSED] res_bad_refresh
[15:50:10] [PASSED] res_bpp_refresh_force_on_off
[15:50:10] [PASSED] res_invalid_mode
[15:50:10] [PASSED] res_bpp_wrong_place_mode
[15:50:10] [PASSED] name_bpp_refresh
[15:50:10] [PASSED] name_refresh
[15:50:10] [PASSED] name_refresh_wrong_mode
[15:50:10] [PASSED] name_refresh_invalid_mode
[15:50:10] [PASSED] rotate_multiple
[15:50:10] [PASSED] rotate_invalid_val
[15:50:10] [PASSED] rotate_truncated
[15:50:10] [PASSED] invalid_option
[15:50:10] [PASSED] invalid_tv_option
[15:50:10] [PASSED] truncated_tv_option
[15:50:10] ============ [PASSED] drm_test_cmdline_invalid =============
[15:50:10] =============== drm_test_cmdline_tv_options ===============
[15:50:10] [PASSED] NTSC
[15:50:10] [PASSED] NTSC_443
[15:50:10] [PASSED] NTSC_J
[15:50:10] [PASSED] PAL
[15:50:10] [PASSED] PAL_M
[15:50:10] [PASSED] PAL_N
[15:50:10] [PASSED] SECAM
[15:50:10] [PASSED] MONO_525
[15:50:10] [PASSED] MONO_625
[15:50:10] =========== [PASSED] drm_test_cmdline_tv_options ===========
[15:50:10] =============== [PASSED] drm_cmdline_parser ================
[15:50:10] ========== drmm_connector_hdmi_init (20 subtests) ==========
[15:50:10] [PASSED] drm_test_connector_hdmi_init_valid
[15:50:10] [PASSED] drm_test_connector_hdmi_init_bpc_8
[15:50:10] [PASSED] drm_test_connector_hdmi_init_bpc_10
[15:50:10] [PASSED] drm_test_connector_hdmi_init_bpc_12
[15:50:10] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[15:50:10] [PASSED] drm_test_connector_hdmi_init_bpc_null
[15:50:10] [PASSED] drm_test_connector_hdmi_init_formats_empty
[15:50:10] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[15:50:10] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[15:50:10] [PASSED] supported_formats=0x9 yuv420_allowed=1
[15:50:10] [PASSED] supported_formats=0x9 yuv420_allowed=0
[15:50:10] [PASSED] supported_formats=0x3 yuv420_allowed=1
[15:50:10] [PASSED] supported_formats=0x3 yuv420_allowed=0
[15:50:10] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[15:50:10] [PASSED] drm_test_connector_hdmi_init_null_ddc
[15:50:10] [PASSED] drm_test_connector_hdmi_init_null_product
[15:50:10] [PASSED] drm_test_connector_hdmi_init_null_vendor
[15:50:10] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[15:50:10] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[15:50:10] [PASSED] drm_test_connector_hdmi_init_product_valid
[15:50:10] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[15:50:10] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[15:50:10] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[15:50:10] ========= drm_test_connector_hdmi_init_type_valid =========
[15:50:10] [PASSED] HDMI-A
[15:50:10] [PASSED] HDMI-B
[15:50:10] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[15:50:10] ======== drm_test_connector_hdmi_init_type_invalid ========
[15:50:10] [PASSED] Unknown
[15:50:10] [PASSED] VGA
[15:50:10] [PASSED] DVI-I
[15:50:10] [PASSED] DVI-D
[15:50:10] [PASSED] DVI-A
[15:50:10] [PASSED] Composite
[15:50:10] [PASSED] SVIDEO
[15:50:10] [PASSED] LVDS
[15:50:10] [PASSED] Component
[15:50:10] [PASSED] DIN
[15:50:10] [PASSED] DP
[15:50:10] [PASSED] TV
[15:50:10] [PASSED] eDP
[15:50:10] [PASSED] Virtual
[15:50:10] [PASSED] DSI
[15:50:10] [PASSED] DPI
[15:50:10] [PASSED] Writeback
[15:50:10] [PASSED] SPI
[15:50:10] [PASSED] USB
[15:50:10] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[15:50:10] ============ [PASSED] drmm_connector_hdmi_init =============
[15:50:10] ============= drmm_connector_init (3 subtests) =============
[15:50:10] [PASSED] drm_test_drmm_connector_init
[15:50:10] [PASSED] drm_test_drmm_connector_init_null_ddc
[15:50:10] ========= drm_test_drmm_connector_init_type_valid =========
[15:50:10] [PASSED] Unknown
[15:50:10] [PASSED] VGA
[15:50:10] [PASSED] DVI-I
[15:50:10] [PASSED] DVI-D
[15:50:10] [PASSED] DVI-A
[15:50:10] [PASSED] Composite
[15:50:10] [PASSED] SVIDEO
[15:50:10] [PASSED] LVDS
[15:50:10] [PASSED] Component
[15:50:10] [PASSED] DIN
[15:50:10] [PASSED] DP
[15:50:10] [PASSED] HDMI-A
[15:50:10] [PASSED] HDMI-B
[15:50:10] [PASSED] TV
[15:50:10] [PASSED] eDP
[15:50:10] [PASSED] Virtual
[15:50:10] [PASSED] DSI
[15:50:10] [PASSED] DPI
[15:50:10] [PASSED] Writeback
[15:50:10] [PASSED] SPI
[15:50:10] [PASSED] USB
[15:50:10] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[15:50:10] =============== [PASSED] drmm_connector_init ===============
[15:50:10] ========= drm_connector_dynamic_init (6 subtests) ==========
[15:50:10] [PASSED] drm_test_drm_connector_dynamic_init
[15:50:10] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[15:50:10] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[15:50:10] [PASSED] drm_test_drm_connector_dynamic_init_properties
[15:50:10] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[15:50:10] [PASSED] Unknown
[15:50:10] [PASSED] VGA
[15:50:10] [PASSED] DVI-I
[15:50:10] [PASSED] DVI-D
[15:50:10] [PASSED] DVI-A
[15:50:10] [PASSED] Composite
[15:50:10] [PASSED] SVIDEO
[15:50:10] [PASSED] LVDS
[15:50:10] [PASSED] Component
[15:50:10] [PASSED] DIN
[15:50:10] [PASSED] DP
[15:50:10] [PASSED] HDMI-A
[15:50:10] [PASSED] HDMI-B
[15:50:10] [PASSED] TV
[15:50:10] [PASSED] eDP
[15:50:10] [PASSED] Virtual
[15:50:10] [PASSED] DSI
[15:50:10] [PASSED] DPI
[15:50:10] [PASSED] Writeback
[15:50:10] [PASSED] SPI
[15:50:10] [PASSED] USB
[15:50:10] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[15:50:10] ======== drm_test_drm_connector_dynamic_init_name =========
[15:50:10] [PASSED] Unknown
[15:50:10] [PASSED] VGA
[15:50:10] [PASSED] DVI-I
[15:50:10] [PASSED] DVI-D
[15:50:10] [PASSED] DVI-A
[15:50:10] [PASSED] Composite
[15:50:10] [PASSED] SVIDEO
[15:50:10] [PASSED] LVDS
[15:50:10] [PASSED] Component
[15:50:10] [PASSED] DIN
[15:50:10] [PASSED] DP
[15:50:10] [PASSED] HDMI-A
[15:50:10] [PASSED] HDMI-B
[15:50:10] [PASSED] TV
[15:50:10] [PASSED] eDP
[15:50:10] [PASSED] Virtual
[15:50:10] [PASSED] DSI
[15:50:10] [PASSED] DPI
[15:50:10] [PASSED] Writeback
[15:50:10] [PASSED] SPI
[15:50:10] [PASSED] USB
[15:50:10] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[15:50:10] =========== [PASSED] drm_connector_dynamic_init ============
[15:50:10] ==== drm_connector_dynamic_register_early (4 subtests) =====
[15:50:10] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[15:50:10] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[15:50:10] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[15:50:10] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[15:50:10] ====== [PASSED] drm_connector_dynamic_register_early =======
[15:50:10] ======= drm_connector_dynamic_register (7 subtests) ========
[15:50:10] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[15:50:10] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[15:50:10] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[15:50:10] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[15:50:10] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[15:50:10] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[15:50:10] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[15:50:10] ========= [PASSED] drm_connector_dynamic_register ==========
[15:50:10] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[15:50:10] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[15:50:10] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[15:50:10] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[15:50:10] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[15:50:10] ========== drm_test_get_tv_mode_from_name_valid ===========
[15:50:10] [PASSED] NTSC
[15:50:10] [PASSED] NTSC-443
[15:50:10] [PASSED] NTSC-J
[15:50:10] [PASSED] PAL
[15:50:10] [PASSED] PAL-M
[15:50:10] [PASSED] PAL-N
[15:50:10] [PASSED] SECAM
[15:50:10] [PASSED] Mono
[15:50:10] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[15:50:10] [PASSED] drm_test_get_tv_mode_from_name_truncated
[15:50:10] ============ [PASSED] drm_get_tv_mode_from_name ============
[15:50:10] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[15:50:10] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[15:50:10] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[15:50:10] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[15:50:10] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[15:50:10] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[15:50:10] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[15:50:10] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[15:50:10] [PASSED] VIC 96
[15:50:10] [PASSED] VIC 97
[15:50:10] [PASSED] VIC 101
[15:50:10] [PASSED] VIC 102
[15:50:10] [PASSED] VIC 106
[15:50:10] [PASSED] VIC 107
[15:50:10] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[15:50:10] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[15:50:10] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[15:50:10] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[15:50:10] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[15:50:10] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[15:50:10] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[15:50:10] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[15:50:10] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[15:50:10] [PASSED] Automatic
[15:50:10] [PASSED] Full
[15:50:10] [PASSED] Limited 16:235
[15:50:10] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[15:50:10] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[15:50:10] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[15:50:10] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[15:50:10] === drm_test_drm_hdmi_connector_get_output_format_name ====
[15:50:10] [PASSED] RGB
[15:50:10] [PASSED] YUV 4:2:0
[15:50:10] [PASSED] YUV 4:2:2
[15:50:10] [PASSED] YUV 4:4:4
[15:50:10] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[15:50:10] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[15:50:10] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[15:50:10] ============= drm_damage_helper (21 subtests) ==============
[15:50:10] [PASSED] drm_test_damage_iter_no_damage
[15:50:10] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[15:50:10] [PASSED] drm_test_damage_iter_no_damage_src_moved
[15:50:10] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[15:50:10] [PASSED] drm_test_damage_iter_no_damage_not_visible
[15:50:10] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[15:50:10] [PASSED] drm_test_damage_iter_no_damage_no_fb
[15:50:10] [PASSED] drm_test_damage_iter_simple_damage
[15:50:10] [PASSED] drm_test_damage_iter_single_damage
[15:50:10] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[15:50:10] [PASSED] drm_test_damage_iter_single_damage_outside_src
[15:50:10] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[15:50:10] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[15:50:10] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[15:50:10] [PASSED] drm_test_damage_iter_single_damage_src_moved
[15:50:10] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[15:50:10] [PASSED] drm_test_damage_iter_damage
[15:50:10] [PASSED] drm_test_damage_iter_damage_one_intersect
[15:50:10] [PASSED] drm_test_damage_iter_damage_one_outside
[15:50:10] [PASSED] drm_test_damage_iter_damage_src_moved
[15:50:10] [PASSED] drm_test_damage_iter_damage_not_visible
[15:50:10] ================ [PASSED] drm_damage_helper ================
[15:50:10] ============== drm_dp_mst_helper (3 subtests) ==============
[15:50:10] ============== drm_test_dp_mst_calc_pbn_mode ==============
[15:50:10] [PASSED] Clock 154000 BPP 30 DSC disabled
[15:50:10] [PASSED] Clock 234000 BPP 30 DSC disabled
[15:50:10] [PASSED] Clock 297000 BPP 24 DSC disabled
[15:50:10] [PASSED] Clock 332880 BPP 24 DSC enabled
[15:50:10] [PASSED] Clock 324540 BPP 24 DSC enabled
[15:50:10] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[15:50:10] ============== drm_test_dp_mst_calc_pbn_div ===============
[15:50:10] [PASSED] Link rate 2000000 lane count 4
[15:50:10] [PASSED] Link rate 2000000 lane count 2
[15:50:10] [PASSED] Link rate 2000000 lane count 1
[15:50:10] [PASSED] Link rate 1350000 lane count 4
[15:50:10] [PASSED] Link rate 1350000 lane count 2
[15:50:10] [PASSED] Link rate 1350000 lane count 1
[15:50:10] [PASSED] Link rate 1000000 lane count 4
[15:50:10] [PASSED] Link rate 1000000 lane count 2
[15:50:10] [PASSED] Link rate 1000000 lane count 1
[15:50:10] [PASSED] Link rate 810000 lane count 4
[15:50:10] [PASSED] Link rate 810000 lane count 2
[15:50:10] [PASSED] Link rate 810000 lane count 1
[15:50:10] [PASSED] Link rate 540000 lane count 4
[15:50:10] [PASSED] Link rate 540000 lane count 2
[15:50:10] [PASSED] Link rate 540000 lane count 1
[15:50:10] [PASSED] Link rate 270000 lane count 4
[15:50:10] [PASSED] Link rate 270000 lane count 2
[15:50:10] [PASSED] Link rate 270000 lane count 1
[15:50:10] [PASSED] Link rate 162000 lane count 4
[15:50:10] [PASSED] Link rate 162000 lane count 2
[15:50:10] [PASSED] Link rate 162000 lane count 1
[15:50:10] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[15:50:10] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[15:50:10] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[15:50:10] [PASSED] DP_POWER_UP_PHY with port number
[15:50:10] [PASSED] DP_POWER_DOWN_PHY with port number
[15:50:10] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[15:50:10] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[15:50:10] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[15:50:10] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[15:50:10] [PASSED] DP_QUERY_PAYLOAD with port number
[15:50:10] [PASSED] DP_QUERY_PAYLOAD with VCPI
[15:50:10] [PASSED] DP_REMOTE_DPCD_READ with port number
[15:50:10] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[15:50:10] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[15:50:10] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[15:50:10] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[15:50:10] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[15:50:10] [PASSED] DP_REMOTE_I2C_READ with port number
[15:50:10] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[15:50:10] [PASSED] DP_REMOTE_I2C_READ with transactions array
[15:50:10] [PASSED] DP_REMOTE_I2C_WRITE with port number
[15:50:10] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[15:50:10] [PASSED] DP_REMOTE_I2C_WRITE with data array
[15:50:10] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[15:50:10] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[15:50:10] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[15:50:10] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[15:50:10] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[15:50:10] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[15:50:10] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[15:50:10] ================ [PASSED] drm_dp_mst_helper ================
[15:50:10] ================== drm_exec (7 subtests) ===================
[15:50:10] [PASSED] sanitycheck
[15:50:10] [PASSED] test_lock
[15:50:10] [PASSED] test_lock_unlock
[15:50:10] [PASSED] test_duplicates
[15:50:10] [PASSED] test_prepare
[15:50:10] [PASSED] test_prepare_array
[15:50:10] [PASSED] test_multiple_loops
[15:50:10] ==================== [PASSED] drm_exec =====================
[15:50:10] =========== drm_format_helper_test (17 subtests) ===========
[15:50:10] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[15:50:10] [PASSED] single_pixel_source_buffer
[15:50:10] [PASSED] single_pixel_clip_rectangle
[15:50:10] [PASSED] well_known_colors
[15:50:10] [PASSED] destination_pitch
[15:50:10] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[15:50:10] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[15:50:10] [PASSED] single_pixel_source_buffer
[15:50:10] [PASSED] single_pixel_clip_rectangle
[15:50:10] [PASSED] well_known_colors
[15:50:10] [PASSED] destination_pitch
[15:50:10] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[15:50:10] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[15:50:10] [PASSED] single_pixel_source_buffer
[15:50:10] [PASSED] single_pixel_clip_rectangle
[15:50:10] [PASSED] well_known_colors
[15:50:10] [PASSED] destination_pitch
[15:50:10] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[15:50:10] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[15:50:10] [PASSED] single_pixel_source_buffer
[15:50:10] [PASSED] single_pixel_clip_rectangle
[15:50:10] [PASSED] well_known_colors
[15:50:10] [PASSED] destination_pitch
[15:50:10] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[15:50:10] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[15:50:10] [PASSED] single_pixel_source_buffer
[15:50:10] [PASSED] single_pixel_clip_rectangle
[15:50:10] [PASSED] well_known_colors
[15:50:10] [PASSED] destination_pitch
[15:50:10] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[15:50:10] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[15:50:10] [PASSED] single_pixel_source_buffer
[15:50:10] [PASSED] single_pixel_clip_rectangle
[15:50:10] [PASSED] well_known_colors
[15:50:10] [PASSED] destination_pitch
[15:50:10] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[15:50:10] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[15:50:10] [PASSED] single_pixel_source_buffer
[15:50:10] [PASSED] single_pixel_clip_rectangle
[15:50:10] [PASSED] well_known_colors
[15:50:10] [PASSED] destination_pitch
[15:50:10] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[15:50:10] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[15:50:10] [PASSED] single_pixel_source_buffer
[15:50:10] [PASSED] single_pixel_clip_rectangle
[15:50:10] [PASSED] well_known_colors
[15:50:10] [PASSED] destination_pitch
[15:50:10] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[15:50:10] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[15:50:10] [PASSED] single_pixel_source_buffer
[15:50:10] [PASSED] single_pixel_clip_rectangle
[15:50:10] [PASSED] well_known_colors
[15:50:10] [PASSED] destination_pitch
[15:50:10] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[15:50:10] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[15:50:10] [PASSED] single_pixel_source_buffer
[15:50:10] [PASSED] single_pixel_clip_rectangle
[15:50:10] [PASSED] well_known_colors
[15:50:10] [PASSED] destination_pitch
[15:50:10] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[15:50:10] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[15:50:10] [PASSED] single_pixel_source_buffer
[15:50:10] [PASSED] single_pixel_clip_rectangle
[15:50:10] [PASSED] well_known_colors
[15:50:10] [PASSED] destination_pitch
[15:50:10] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[15:50:10] ============== drm_test_fb_xrgb8888_to_mono ===============
[15:50:10] [PASSED] single_pixel_source_buffer
[15:50:10] [PASSED] single_pixel_clip_rectangle
[15:50:10] [PASSED] well_known_colors
[15:50:10] [PASSED] destination_pitch
[15:50:10] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[15:50:10] ==================== drm_test_fb_swab =====================
[15:50:10] [PASSED] single_pixel_source_buffer
[15:50:10] [PASSED] single_pixel_clip_rectangle
[15:50:10] [PASSED] well_known_colors
[15:50:10] [PASSED] destination_pitch
[15:50:10] ================ [PASSED] drm_test_fb_swab =================
[15:50:10] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[15:50:10] [PASSED] single_pixel_source_buffer
[15:50:10] [PASSED] single_pixel_clip_rectangle
[15:50:10] [PASSED] well_known_colors
[15:50:10] [PASSED] destination_pitch
[15:50:10] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[15:50:10] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[15:50:10] [PASSED] single_pixel_source_buffer
[15:50:10] [PASSED] single_pixel_clip_rectangle
[15:50:10] [PASSED] well_known_colors
[15:50:10] [PASSED] destination_pitch
[15:50:10] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[15:50:10] ================= drm_test_fb_clip_offset =================
[15:50:10] [PASSED] pass through
[15:50:10] [PASSED] horizontal offset
[15:50:10] [PASSED] vertical offset
[15:50:10] [PASSED] horizontal and vertical offset
[15:50:10] [PASSED] horizontal offset (custom pitch)
[15:50:10] [PASSED] vertical offset (custom pitch)
[15:50:10] [PASSED] horizontal and vertical offset (custom pitch)
[15:50:10] ============= [PASSED] drm_test_fb_clip_offset =============
[15:50:10] =================== drm_test_fb_memcpy ====================
[15:50:10] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[15:50:10] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[15:50:10] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[15:50:10] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[15:50:10] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[15:50:10] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[15:50:10] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[15:50:10] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[15:50:10] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[15:50:10] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[15:50:10] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[15:50:10] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[15:50:10] =============== [PASSED] drm_test_fb_memcpy ================
[15:50:10] ============= [PASSED] drm_format_helper_test ==============
[15:50:10] ================= drm_format (18 subtests) =================
[15:50:10] [PASSED] drm_test_format_block_width_invalid
[15:50:10] [PASSED] drm_test_format_block_width_one_plane
[15:50:10] [PASSED] drm_test_format_block_width_two_plane
[15:50:10] [PASSED] drm_test_format_block_width_three_plane
[15:50:10] [PASSED] drm_test_format_block_width_tiled
[15:50:10] [PASSED] drm_test_format_block_height_invalid
[15:50:10] [PASSED] drm_test_format_block_height_one_plane
[15:50:10] [PASSED] drm_test_format_block_height_two_plane
[15:50:10] [PASSED] drm_test_format_block_height_three_plane
[15:50:10] [PASSED] drm_test_format_block_height_tiled
[15:50:10] [PASSED] drm_test_format_min_pitch_invalid
[15:50:10] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[15:50:10] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[15:50:10] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[15:50:10] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[15:50:10] [PASSED] drm_test_format_min_pitch_two_plane
[15:50:10] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[15:50:10] [PASSED] drm_test_format_min_pitch_tiled
[15:50:10] =================== [PASSED] drm_format ====================
[15:50:10] ============== drm_framebuffer (10 subtests) ===============
[15:50:10] ========== drm_test_framebuffer_check_src_coords ==========
[15:50:10] [PASSED] Success: source fits into fb
[15:50:10] [PASSED] Fail: overflowing fb with x-axis coordinate
[15:50:10] [PASSED] Fail: overflowing fb with y-axis coordinate
[15:50:10] [PASSED] Fail: overflowing fb with source width
[15:50:10] [PASSED] Fail: overflowing fb with source height
[15:50:10] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[15:50:10] [PASSED] drm_test_framebuffer_cleanup
[15:50:10] =============== drm_test_framebuffer_create ===============
[15:50:10] [PASSED] ABGR8888 normal sizes
[15:50:10] [PASSED] ABGR8888 max sizes
[15:50:10] [PASSED] ABGR8888 pitch greater than min required
[15:50:10] [PASSED] ABGR8888 pitch less than min required
[15:50:10] [PASSED] ABGR8888 Invalid width
[15:50:10] [PASSED] ABGR8888 Invalid buffer handle
[15:50:10] [PASSED] No pixel format
[15:50:10] [PASSED] ABGR8888 Width 0
[15:50:10] [PASSED] ABGR8888 Height 0
[15:50:10] [PASSED] ABGR8888 Out of bound height * pitch combination
[15:50:10] [PASSED] ABGR8888 Large buffer offset
[15:50:10] [PASSED] ABGR8888 Buffer offset for inexistent plane
[15:50:10] [PASSED] ABGR8888 Invalid flag
[15:50:10] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[15:50:10] [PASSED] ABGR8888 Valid buffer modifier
[15:50:10] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[15:50:10] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[15:50:10] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[15:50:10] [PASSED] NV12 Normal sizes
[15:50:10] [PASSED] NV12 Max sizes
[15:50:10] [PASSED] NV12 Invalid pitch
[15:50:10] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[15:50:10] [PASSED] NV12 different modifier per-plane
[15:50:10] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[15:50:10] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[15:50:10] [PASSED] NV12 Modifier for inexistent plane
[15:50:10] [PASSED] NV12 Handle for inexistent plane
[15:50:10] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[15:50:10] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[15:50:10] [PASSED] YVU420 Normal sizes
[15:50:10] [PASSED] YVU420 Max sizes
[15:50:10] [PASSED] YVU420 Invalid pitch
[15:50:10] [PASSED] YVU420 Different pitches
[15:50:10] [PASSED] YVU420 Different buffer offsets/pitches
[15:50:10] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[15:50:10] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[15:50:10] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[15:50:10] [PASSED] YVU420 Valid modifier
[15:50:10] [PASSED] YVU420 Different modifiers per plane
[15:50:10] [PASSED] YVU420 Modifier for inexistent plane
[15:50:10] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[15:50:10] [PASSED] X0L2 Normal sizes
[15:50:10] [PASSED] X0L2 Max sizes
[15:50:10] [PASSED] X0L2 Invalid pitch
[15:50:10] [PASSED] X0L2 Pitch greater than minimum required
[15:50:10] [PASSED] X0L2 Handle for inexistent plane
[15:50:10] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[15:50:10] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[15:50:10] [PASSED] X0L2 Valid modifier
[15:50:10] [PASSED] X0L2 Modifier for inexistent plane
[15:50:10] =========== [PASSED] drm_test_framebuffer_create ===========
[15:50:10] [PASSED] drm_test_framebuffer_free
[15:50:10] [PASSED] drm_test_framebuffer_init
[15:50:10] [PASSED] drm_test_framebuffer_init_bad_format
[15:50:10] [PASSED] drm_test_framebuffer_init_dev_mismatch
[15:50:10] [PASSED] drm_test_framebuffer_lookup
[15:50:10] [PASSED] drm_test_framebuffer_lookup_inexistent
[15:50:10] [PASSED] drm_test_framebuffer_modifiers_not_supported
[15:50:10] ================= [PASSED] drm_framebuffer =================
[15:50:10] ================ drm_gem_shmem (8 subtests) ================
[15:50:10] [PASSED] drm_gem_shmem_test_obj_create
[15:50:10] [PASSED] drm_gem_shmem_test_obj_create_private
[15:50:10] [PASSED] drm_gem_shmem_test_pin_pages
[15:50:10] [PASSED] drm_gem_shmem_test_vmap
[15:50:10] [PASSED] drm_gem_shmem_test_get_pages_sgt
[15:50:10] [PASSED] drm_gem_shmem_test_get_sg_table
[15:50:10] [PASSED] drm_gem_shmem_test_madvise
[15:50:10] [PASSED] drm_gem_shmem_test_purge
[15:50:10] ================== [PASSED] drm_gem_shmem ==================
[15:50:10] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[15:50:10] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[15:50:10] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[15:50:10] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[15:50:10] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[15:50:10] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[15:50:10] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[15:50:10] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[15:50:10] [PASSED] Automatic
[15:50:10] [PASSED] Full
[15:50:10] [PASSED] Limited 16:235
[15:50:10] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[15:50:10] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[15:50:10] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[15:50:10] [PASSED] drm_test_check_disable_connector
[15:50:10] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[15:50:10] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[15:50:10] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[15:50:10] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[15:50:10] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[15:50:10] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[15:50:10] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[15:50:10] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[15:50:10] [PASSED] drm_test_check_output_bpc_dvi
[15:50:10] [PASSED] drm_test_check_output_bpc_format_vic_1
[15:50:10] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[15:50:10] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[15:50:10] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[15:50:10] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[15:50:10] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[15:50:10] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[15:50:10] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[15:50:10] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[15:50:10] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[15:50:10] [PASSED] drm_test_check_broadcast_rgb_value
[15:50:10] [PASSED] drm_test_check_bpc_8_value
[15:50:10] [PASSED] drm_test_check_bpc_10_value
[15:50:10] [PASSED] drm_test_check_bpc_12_value
[15:50:10] [PASSED] drm_test_check_format_value
[15:50:10] [PASSED] drm_test_check_tmds_char_value
[15:50:10] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[15:50:10] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[15:50:10] [PASSED] drm_test_check_mode_valid
[15:50:10] [PASSED] drm_test_check_mode_valid_reject
[15:50:10] [PASSED] drm_test_check_mode_valid_reject_rate
[15:50:10] [PASSED] drm_test_check_mode_valid_reject_max_clock
[15:50:10] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[15:50:10] ================= drm_managed (2 subtests) =================
[15:50:10] [PASSED] drm_test_managed_release_action
[15:50:10] [PASSED] drm_test_managed_run_action
[15:50:10] =================== [PASSED] drm_managed ===================
[15:50:10] =================== drm_mm (6 subtests) ====================
[15:50:10] [PASSED] drm_test_mm_init
[15:50:10] [PASSED] drm_test_mm_debug
[15:50:10] [PASSED] drm_test_mm_align32
[15:50:10] [PASSED] drm_test_mm_align64
[15:50:10] [PASSED] drm_test_mm_lowest
[15:50:10] [PASSED] drm_test_mm_highest
[15:50:10] ===================== [PASSED] drm_mm ======================
[15:50:10] ============= drm_modes_analog_tv (5 subtests) =============
[15:50:10] [PASSED] drm_test_modes_analog_tv_mono_576i
[15:50:10] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[15:50:10] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[15:50:10] [PASSED] drm_test_modes_analog_tv_pal_576i
[15:50:10] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[15:50:10] =============== [PASSED] drm_modes_analog_tv ===============
[15:50:10] ============== drm_plane_helper (2 subtests) ===============
[15:50:10] =============== drm_test_check_plane_state ================
[15:50:10] [PASSED] clipping_simple
[15:50:10] [PASSED] clipping_rotate_reflect
[15:50:10] [PASSED] positioning_simple
[15:50:10] [PASSED] upscaling
[15:50:10] [PASSED] downscaling
[15:50:10] [PASSED] rounding1
[15:50:10] [PASSED] rounding2
[15:50:10] [PASSED] rounding3
[15:50:10] [PASSED] rounding4
[15:50:10] =========== [PASSED] drm_test_check_plane_state ============
[15:50:10] =========== drm_test_check_invalid_plane_state ============
[15:50:10] [PASSED] positioning_invalid
[15:50:10] [PASSED] upscaling_invalid
[15:50:10] [PASSED] downscaling_invalid
[15:50:10] ======= [PASSED] drm_test_check_invalid_plane_state ========
[15:50:10] ================ [PASSED] drm_plane_helper =================
[15:50:10] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[15:50:10] ====== drm_test_connector_helper_tv_get_modes_check =======
[15:50:10] [PASSED] None
[15:50:10] [PASSED] PAL
[15:50:10] [PASSED] NTSC
[15:50:10] [PASSED] Both, NTSC Default
[15:50:10] [PASSED] Both, PAL Default
[15:50:10] [PASSED] Both, NTSC Default, with PAL on command-line
[15:50:10] [PASSED] Both, PAL Default, with NTSC on command-line
[15:50:10] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[15:50:10] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[15:50:10] ================== drm_rect (9 subtests) ===================
[15:50:10] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[15:50:10] [PASSED] drm_test_rect_clip_scaled_not_clipped
[15:50:10] [PASSED] drm_test_rect_clip_scaled_clipped
[15:50:10] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[15:50:10] ================= drm_test_rect_intersect =================
[15:50:10] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[15:50:10] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[15:50:10] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[15:50:10] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[15:50:10] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[15:50:10] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[15:50:10] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[15:50:10] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[15:50:10] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[15:50:10] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[15:50:10] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[15:50:10] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[15:50:10] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[15:50:10] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[15:50:10] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[15:50:10] ============= [PASSED] drm_test_rect_intersect =============
[15:50:10] ================ drm_test_rect_calc_hscale ================
[15:50:10] [PASSED] normal use
[15:50:10] [PASSED] out of max range
[15:50:10] [PASSED] out of min range
[15:50:10] [PASSED] zero dst
[15:50:10] [PASSED] negative src
[15:50:10] [PASSED] negative dst
[15:50:10] ============ [PASSED] drm_test_rect_calc_hscale ============
[15:50:10] ================ drm_test_rect_calc_vscale ================
[15:50:10] [PASSED] normal use
[15:50:10] [PASSED] out of max range
[15:50:10] [PASSED] out of min range
[15:50:10] [PASSED] zero dst
[15:50:10] [PASSED] negative src
[15:50:10] [PASSED] negative dst
[15:50:10] ============ [PASSED] drm_test_rect_calc_vscale ============
[15:50:10] ================== drm_test_rect_rotate ===================
[15:50:10] [PASSED] reflect-x
[15:50:10] [PASSED] reflect-y
[15:50:10] [PASSED] rotate-0
[15:50:10] [PASSED] rotate-90
[15:50:10] [PASSED] rotate-180
[15:50:10] [PASSED] rotate-270
stty: 'standard input': Inappropriate ioctl for device
[15:50:10] ============== [PASSED] drm_test_rect_rotate ===============
[15:50:10] ================ drm_test_rect_rotate_inv =================
[15:50:10] [PASSED] reflect-x
[15:50:10] [PASSED] reflect-y
[15:50:10] [PASSED] rotate-0
[15:50:10] [PASSED] rotate-90
[15:50:10] [PASSED] rotate-180
[15:50:10] [PASSED] rotate-270
[15:50:10] ============ [PASSED] drm_test_rect_rotate_inv =============
[15:50:10] ==================== [PASSED] drm_rect =====================
[15:50:10] ============ drm_sysfb_modeset_test (1 subtest) ============
[15:50:10] ============ drm_test_sysfb_build_fourcc_list =============
[15:50:10] [PASSED] no native formats
[15:50:10] [PASSED] XRGB8888 as native format
[15:50:10] [PASSED] remove duplicates
[15:50:10] [PASSED] convert alpha formats
[15:50:10] [PASSED] random formats
[15:50:10] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[15:50:10] ============= [PASSED] drm_sysfb_modeset_test ==============
[15:50:10] ============================================================
[15:50:10] Testing complete. Ran 616 tests: passed: 616
[15:50:10] Elapsed time: 23.161s total, 1.670s configuring, 21.320s building, 0.149s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[15:50:10] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[15:50:12] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[15:50:20] Starting KUnit Kernel (1/1)...
[15:50:20] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[15:50:20] ================= ttm_device (5 subtests) ==================
[15:50:20] [PASSED] ttm_device_init_basic
[15:50:20] [PASSED] ttm_device_init_multiple
[15:50:20] [PASSED] ttm_device_fini_basic
[15:50:20] [PASSED] ttm_device_init_no_vma_man
[15:50:20] ================== ttm_device_init_pools ==================
[15:50:20] [PASSED] No DMA allocations, no DMA32 required
[15:50:20] [PASSED] DMA allocations, DMA32 required
[15:50:20] [PASSED] No DMA allocations, DMA32 required
[15:50:20] [PASSED] DMA allocations, no DMA32 required
[15:50:20] ============== [PASSED] ttm_device_init_pools ==============
[15:50:20] =================== [PASSED] ttm_device ====================
[15:50:20] ================== ttm_pool (8 subtests) ===================
[15:50:20] ================== ttm_pool_alloc_basic ===================
[15:50:20] [PASSED] One page
[15:50:20] [PASSED] More than one page
[15:50:20] [PASSED] Above the allocation limit
[15:50:20] [PASSED] One page, with coherent DMA mappings enabled
[15:50:20] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[15:50:20] ============== [PASSED] ttm_pool_alloc_basic ===============
[15:50:20] ============== ttm_pool_alloc_basic_dma_addr ==============
[15:50:20] [PASSED] One page
[15:50:20] [PASSED] More than one page
[15:50:20] [PASSED] Above the allocation limit
[15:50:20] [PASSED] One page, with coherent DMA mappings enabled
[15:50:20] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[15:50:20] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[15:50:20] [PASSED] ttm_pool_alloc_order_caching_match
[15:50:20] [PASSED] ttm_pool_alloc_caching_mismatch
[15:50:20] [PASSED] ttm_pool_alloc_order_mismatch
[15:50:20] [PASSED] ttm_pool_free_dma_alloc
[15:50:20] [PASSED] ttm_pool_free_no_dma_alloc
[15:50:20] [PASSED] ttm_pool_fini_basic
[15:50:20] ==================== [PASSED] ttm_pool =====================
[15:50:20] ================ ttm_resource (8 subtests) =================
[15:50:20] ================= ttm_resource_init_basic =================
[15:50:20] [PASSED] Init resource in TTM_PL_SYSTEM
[15:50:20] [PASSED] Init resource in TTM_PL_VRAM
[15:50:20] [PASSED] Init resource in a private placement
[15:50:20] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[15:50:20] ============= [PASSED] ttm_resource_init_basic =============
[15:50:20] [PASSED] ttm_resource_init_pinned
[15:50:20] [PASSED] ttm_resource_fini_basic
[15:50:20] [PASSED] ttm_resource_manager_init_basic
[15:50:20] [PASSED] ttm_resource_manager_usage_basic
[15:50:20] [PASSED] ttm_resource_manager_set_used_basic
[15:50:20] [PASSED] ttm_sys_man_alloc_basic
[15:50:20] [PASSED] ttm_sys_man_free_basic
[15:50:20] ================== [PASSED] ttm_resource ===================
[15:50:20] =================== ttm_tt (15 subtests) ===================
[15:50:20] ==================== ttm_tt_init_basic ====================
[15:50:20] [PASSED] Page-aligned size
[15:50:20] [PASSED] Extra pages requested
[15:50:20] ================ [PASSED] ttm_tt_init_basic ================
[15:50:20] [PASSED] ttm_tt_init_misaligned
[15:50:20] [PASSED] ttm_tt_fini_basic
[15:50:20] [PASSED] ttm_tt_fini_sg
[15:50:20] [PASSED] ttm_tt_fini_shmem
[15:50:20] [PASSED] ttm_tt_create_basic
[15:50:20] [PASSED] ttm_tt_create_invalid_bo_type
[15:50:20] [PASSED] ttm_tt_create_ttm_exists
[15:50:20] [PASSED] ttm_tt_create_failed
[15:50:20] [PASSED] ttm_tt_destroy_basic
[15:50:20] [PASSED] ttm_tt_populate_null_ttm
[15:50:20] [PASSED] ttm_tt_populate_populated_ttm
[15:50:20] [PASSED] ttm_tt_unpopulate_basic
[15:50:20] [PASSED] ttm_tt_unpopulate_empty_ttm
[15:50:20] [PASSED] ttm_tt_swapin_basic
[15:50:20] ===================== [PASSED] ttm_tt ======================
[15:50:20] =================== ttm_bo (14 subtests) ===================
[15:50:20] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[15:50:20] [PASSED] Cannot be interrupted and sleeps
[15:50:20] [PASSED] Cannot be interrupted, locks straight away
[15:50:20] [PASSED] Can be interrupted, sleeps
[15:50:20] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[15:50:20] [PASSED] ttm_bo_reserve_locked_no_sleep
[15:50:20] [PASSED] ttm_bo_reserve_no_wait_ticket
[15:50:20] [PASSED] ttm_bo_reserve_double_resv
[15:50:20] [PASSED] ttm_bo_reserve_interrupted
[15:50:20] [PASSED] ttm_bo_reserve_deadlock
[15:50:20] [PASSED] ttm_bo_unreserve_basic
[15:50:20] [PASSED] ttm_bo_unreserve_pinned
[15:50:20] [PASSED] ttm_bo_unreserve_bulk
[15:50:20] [PASSED] ttm_bo_put_basic
[15:50:20] [PASSED] ttm_bo_put_shared_resv
[15:50:20] [PASSED] ttm_bo_pin_basic
[15:50:20] [PASSED] ttm_bo_pin_unpin_resource
[15:50:20] [PASSED] ttm_bo_multiple_pin_one_unpin
[15:50:20] ===================== [PASSED] ttm_bo ======================
[15:50:20] ============== ttm_bo_validate (22 subtests) ===============
[15:50:20] ============== ttm_bo_init_reserved_sys_man ===============
[15:50:20] [PASSED] Buffer object for userspace
[15:50:20] [PASSED] Kernel buffer object
[15:50:20] [PASSED] Shared buffer object
[15:50:20] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[15:50:20] ============== ttm_bo_init_reserved_mock_man ==============
[15:50:20] [PASSED] Buffer object for userspace
[15:50:20] [PASSED] Kernel buffer object
[15:50:20] [PASSED] Shared buffer object
[15:50:20] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[15:50:20] [PASSED] ttm_bo_init_reserved_resv
[15:50:20] ================== ttm_bo_validate_basic ==================
[15:50:20] [PASSED] Buffer object for userspace
[15:50:20] [PASSED] Kernel buffer object
[15:50:20] [PASSED] Shared buffer object
[15:50:20] ============== [PASSED] ttm_bo_validate_basic ==============
[15:50:20] [PASSED] ttm_bo_validate_invalid_placement
[15:50:20] ============= ttm_bo_validate_same_placement ==============
[15:50:20] [PASSED] System manager
[15:50:20] [PASSED] VRAM manager
[15:50:20] ========= [PASSED] ttm_bo_validate_same_placement ==========
[15:50:20] [PASSED] ttm_bo_validate_failed_alloc
[15:50:20] [PASSED] ttm_bo_validate_pinned
[15:50:20] [PASSED] ttm_bo_validate_busy_placement
[15:50:20] ================ ttm_bo_validate_multihop =================
[15:50:20] [PASSED] Buffer object for userspace
[15:50:20] [PASSED] Kernel buffer object
[15:50:20] [PASSED] Shared buffer object
[15:50:20] ============ [PASSED] ttm_bo_validate_multihop =============
[15:50:20] ========== ttm_bo_validate_no_placement_signaled ==========
[15:50:20] [PASSED] Buffer object in system domain, no page vector
[15:50:20] [PASSED] Buffer object in system domain with an existing page vector
[15:50:20] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[15:50:20] ======== ttm_bo_validate_no_placement_not_signaled ========
[15:50:20] [PASSED] Buffer object for userspace
[15:50:20] [PASSED] Kernel buffer object
[15:50:20] [PASSED] Shared buffer object
[15:50:20] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[15:50:20] [PASSED] ttm_bo_validate_move_fence_signaled
[15:50:20] ========= ttm_bo_validate_move_fence_not_signaled =========
[15:50:20] [PASSED] Waits for GPU
[15:50:20] [PASSED] Tries to lock straight away
[15:50:20] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[15:50:20] [PASSED] ttm_bo_validate_swapout
[15:50:20] [PASSED] ttm_bo_validate_happy_evict
[15:50:20] [PASSED] ttm_bo_validate_all_pinned_evict
[15:50:20] [PASSED] ttm_bo_validate_allowed_only_evict
[15:50:20] [PASSED] ttm_bo_validate_deleted_evict
[15:50:20] [PASSED] ttm_bo_validate_busy_domain_evict
[15:50:20] [PASSED] ttm_bo_validate_evict_gutting
[15:50:20] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[15:50:20] ================= [PASSED] ttm_bo_validate =================
[15:50:20] ============================================================
[15:50:20] Testing complete. Ran 102 tests: passed: 102
[15:50:20] Elapsed time: 10.074s total, 1.607s configuring, 7.799s building, 0.573s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 17+ messages in thread* ✓ Xe.CI.BAT: success for Introduce helper for display workarounds and add Wa_16025573575 (rev4)
2025-07-11 4:18 [PATCH 0/2] Introduce helper for display workarounds and add Wa_16025573575 Ankit Nautiyal
` (5 preceding siblings ...)
2025-07-15 15:50 ` ✓ CI.KUnit: success for Introduce helper for display workarounds and add Wa_16025573575 (rev4) Patchwork
@ 2025-07-15 16:27 ` Patchwork
2025-07-15 22:29 ` ✗ Xe.CI.Full: failure " Patchwork
2025-07-17 15:56 ` [PATCH 0/2] Introduce helper for display workarounds and add Wa_16025573575 Nautiyal, Ankit K
8 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2025-07-15 16:27 UTC (permalink / raw)
To: Ankit Nautiyal; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1474 bytes --]
== Series Details ==
Series: Introduce helper for display workarounds and add Wa_16025573575 (rev4)
URL : https://patchwork.freedesktop.org/series/150935/
State : success
== Summary ==
CI Bug Log - changes from xe-3415-64f56ca0926a30d50bcc0c215b262f5149c7e5cd_BAT -> xe-pw-150935v4_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (8 -> 7)
------------------------------
Missing (1): bat-adlp-vm
Known issues
------------
Here are the changes found in xe-pw-150935v4_BAT that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@kms_flip@basic-flip-vs-dpms:
- bat-adlp-7: [DMESG-WARN][1] ([Intel XE#4543]) -> [PASS][2] +3 other tests pass
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3415-64f56ca0926a30d50bcc0c215b262f5149c7e5cd/bat-adlp-7/igt@kms_flip@basic-flip-vs-dpms.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/bat-adlp-7/igt@kms_flip@basic-flip-vs-dpms.html
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
Build changes
-------------
* Linux: xe-3415-64f56ca0926a30d50bcc0c215b262f5149c7e5cd -> xe-pw-150935v4
IGT_8459: 8459
xe-3415-64f56ca0926a30d50bcc0c215b262f5149c7e5cd: 64f56ca0926a30d50bcc0c215b262f5149c7e5cd
xe-pw-150935v4: 150935v4
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/index.html
[-- Attachment #2: Type: text/html, Size: 2039 bytes --]
^ permalink raw reply [flat|nested] 17+ messages in thread* ✗ Xe.CI.Full: failure for Introduce helper for display workarounds and add Wa_16025573575 (rev4)
2025-07-11 4:18 [PATCH 0/2] Introduce helper for display workarounds and add Wa_16025573575 Ankit Nautiyal
` (6 preceding siblings ...)
2025-07-15 16:27 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-07-15 22:29 ` Patchwork
2025-07-17 15:56 ` [PATCH 0/2] Introduce helper for display workarounds and add Wa_16025573575 Nautiyal, Ankit K
8 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2025-07-15 22:29 UTC (permalink / raw)
To: Ankit Nautiyal; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 49263 bytes --]
== Series Details ==
Series: Introduce helper for display workarounds and add Wa_16025573575 (rev4)
URL : https://patchwork.freedesktop.org/series/150935/
State : failure
== Summary ==
CI Bug Log - changes from xe-3415-64f56ca0926a30d50bcc0c215b262f5149c7e5cd_FULL -> xe-pw-150935v4_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-150935v4_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-150935v4_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-150935v4_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-hdmi-a-3:
- shard-bmg: [PASS][1] -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3415-64f56ca0926a30d50bcc0c215b262f5149c7e5cd/shard-bmg-2/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-hdmi-a-3.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-6/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-hdmi-a-3.html
Known issues
------------
Here are the changes found in xe-pw-150935v4_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-adlp: [PASS][3] -> [FAIL][4] ([Intel XE#3908]) +1 other test fail
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3415-64f56ca0926a30d50bcc0c215b262f5149c7e5cd/shard-adlp-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-adlp-9/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][5] ([Intel XE#1407])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-lnl-4/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-adlp: [PASS][6] -> [DMESG-FAIL][7] ([Intel XE#4543]) +1 other test dmesg-fail
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3415-64f56ca0926a30d50bcc0c215b262f5149c7e5cd/shard-adlp-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-adlp-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#1124]) +3 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-2/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
- shard-dg2-set2: NOTRUN -> [SKIP][9] ([Intel XE#1124]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-dg2-463/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1124]) +2 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-lnl-4/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
* igt@kms_bw@linear-tiling-4-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#1512])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-lnl-4/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-4-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#367])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-7/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2887]) +4 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-2/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-b-dp-2:
- shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#787]) +132 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-b-dp-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#2907])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-dg2-464/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#2887]) +2 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-lnl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-2:
- shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#455] / [Intel XE#787]) +23 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-dg2-432/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-3/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#306])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-lnl-4/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-4k:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2252]) +3 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-2/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
* igt@kms_chamelium_hpd@dp-hpd-for-each-pipe:
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#373])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-lnl-4/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@hdmi-hpd:
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#373]) +3 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-dg2-463/igt@kms_chamelium_hpd@hdmi-hpd.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#307])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-dg2-463/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2390])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-2/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@legacy@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][25] ([Intel XE#1178])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-1/igt@kms_content_protection@legacy@pipe-a-dp-2.html
* igt@kms_content_protection@srm@pipe-a-dp-2:
- shard-dg2-set2: NOTRUN -> [FAIL][26] ([Intel XE#1178])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-dg2-432/igt@kms_content_protection@srm@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#2321])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-lnl-4/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2321]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-7/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#455]) +6 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-dg2-464/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2320])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#309]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-lnl-4/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
- shard-bmg: [PASS][32] -> [SKIP][33] ([Intel XE#2291])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3415-64f56ca0926a30d50bcc0c215b262f5149c7e5cd/shard-bmg-2/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-5/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#1508])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-7/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_feature_discovery@psr2:
- shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#1135])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-dg2-464/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible:
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#1421])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-lnl-4/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
- shard-bmg: [PASS][37] -> [SKIP][38] ([Intel XE#2316]) +5 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3415-64f56ca0926a30d50bcc0c215b262f5149c7e5cd/shard-bmg-2/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
* igt@kms_flip@basic-flip-vs-dpms@c-hdmi-a1:
- shard-adlp: [PASS][39] -> [DMESG-WARN][40] ([Intel XE#4543]) +2 other tests dmesg-warn
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3415-64f56ca0926a30d50bcc0c215b262f5149c7e5cd/shard-adlp-1/igt@kms_flip@basic-flip-vs-dpms@c-hdmi-a1.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-adlp-3/igt@kms_flip@basic-flip-vs-dpms@c-hdmi-a1.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [PASS][41] -> [FAIL][42] ([Intel XE#301]) +1 other test fail
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3415-64f56ca0926a30d50bcc0c215b262f5149c7e5cd/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_flip@flip-vs-suspend-interruptible@d-dp2:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][43] ([Intel XE#2049] / [Intel XE#2597])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-dg2-432/igt@kms_flip@flip-vs-suspend-interruptible@d-dp2.html
* igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a3:
- shard-bmg: NOTRUN -> [INCOMPLETE][44] ([Intel XE#2049] / [Intel XE#2597])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-1/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#1401] / [Intel XE#1745])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#1401])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2293] / [Intel XE#2380])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2293])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2311]) +12 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#5390]) +5 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
- shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#651]) +13 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#651])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2313]) +8 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#5426])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-7/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#653]) +12 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#656]) +7 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-lnl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#2927])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-dg2-463/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2927])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-2/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#4090])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-lnl-4/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-0:
- shard-lnl: NOTRUN -> [FAIL][60] ([Intel XE#5195]) +2 other tests fail
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-lnl-4/igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-0.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25:
- shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#2763]) +3 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-lnl-4/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#1489]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-dg2-463/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#2893] / [Intel XE#4608])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#4608]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#1489]) +3 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
* igt@kms_psr2_su@page_flip-p010:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2387])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-7/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-pr-cursor-blt:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2234] / [Intel XE#2850]) +6 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-2/igt@kms_psr@fbc-pr-cursor-blt.html
* igt@kms_psr@fbc-pr-sprite-render:
- shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#1406]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-lnl-4/igt@kms_psr@fbc-pr-sprite-render.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-dg2-463/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#3414])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-dg2-463/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#3414] / [Intel XE#3904])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#2330])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_setmode@basic:
- shard-dg2-set2: [PASS][73] -> [FAIL][74] ([Intel XE#2883])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3415-64f56ca0926a30d50bcc0c215b262f5149c7e5cd/shard-dg2-463/igt@kms_setmode@basic.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-dg2-432/igt@kms_setmode@basic.html
* igt@kms_setmode@basic@pipe-a-hdmi-a-2:
- shard-dg2-set2: NOTRUN -> [FAIL][75] ([Intel XE#2883])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-dg2-432/igt@kms_setmode@basic@pipe-a-hdmi-a-2.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#1435])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-lnl-4/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_vblank@query-busy@pipe-d-hdmi-a-3:
- shard-bmg: [PASS][77] -> [DMESG-WARN][78] ([Intel XE#3428]) +10 other tests dmesg-warn
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3415-64f56ca0926a30d50bcc0c215b262f5149c7e5cd/shard-bmg-1/igt@kms_vblank@query-busy@pipe-d-hdmi-a-3.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-6/igt@kms_vblank@query-busy@pipe-d-hdmi-a-3.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-bmg: [PASS][79] -> [ABORT][80] ([Intel XE#5388])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3415-64f56ca0926a30d50bcc0c215b262f5149c7e5cd/shard-bmg-2/igt@kms_vblank@ts-continuation-dpms-suspend.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-6/igt@kms_vblank@ts-continuation-dpms-suspend.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#1499])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-2/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@xe_eudebug@basic-vm-bind-ufence-delay-ack:
- shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#4837]) +3 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-dg2-463/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html
* igt@xe_eudebug_online@stopped-thread:
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#4837]) +6 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-2/igt@xe_eudebug_online@stopped-thread.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2322]) +4 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind:
- shard-dg2-set2: [PASS][85] -> [INCOMPLETE][86] ([Intel XE#4842])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3415-64f56ca0926a30d50bcc0c215b262f5149c7e5cd/shard-dg2-436/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-dg2-433/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind.html
* igt@xe_exec_basic@multigpu-no-exec-null-defer-bind:
- shard-dg2-set2: [PASS][87] -> [SKIP][88] ([Intel XE#1392]) +3 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3415-64f56ca0926a30d50bcc0c215b262f5149c7e5cd/shard-dg2-436/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html
* igt@xe_exec_basic@multigpu-once-null-defer-bind:
- shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#1392]) +1 other test skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-lnl-4/igt@xe_exec_basic@multigpu-once-null-defer-bind.html
* igt@xe_exec_fault_mode@twice-invalid-fault:
- shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#288]) +10 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-dg2-463/igt@xe_exec_fault_mode@twice-invalid-fault.html
* igt@xe_exec_reset@gt-reset-stress:
- shard-adlp: [PASS][91] -> [DMESG-WARN][92] ([Intel XE#4812])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3415-64f56ca0926a30d50bcc0c215b262f5149c7e5cd/shard-adlp-3/igt@xe_exec_reset@gt-reset-stress.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-adlp-6/igt@xe_exec_reset@gt-reset-stress.html
* igt@xe_exec_sip_eudebug@breakpoint-writesip:
- shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#4837]) +3 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-lnl-4/igt@xe_exec_sip_eudebug@breakpoint-writesip.html
* igt@xe_exec_system_allocator@once-large-mmap-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#4943]) +5 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-7/igt@xe_exec_system_allocator@once-large-mmap-huge-nomemset.html
* igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-nomemset:
- shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#4915]) +87 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-dg2-463/igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-nomemset.html
* igt@xe_exec_system_allocator@threads-many-stride-mmap-huge:
- shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#4943]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-lnl-4/igt@xe_exec_system_allocator@threads-many-stride-mmap-huge.html
* igt@xe_oa@mmio-triggered-reports:
- shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#2541] / [Intel XE#3573]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-dg2-434/igt@xe_oa@mmio-triggered-reports.html
* igt@xe_oa@syncs-syncobj-none:
- shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-dg2-463/igt@xe_oa@syncs-syncobj-none.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#2284] / [Intel XE#366])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-dg2-463/igt@xe_pm@d3cold-mmap-vram.html
- shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#2284])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-2/igt@xe_pm@d3cold-mmap-vram.html
* igt@xe_pm@s2idle-vm-bind-unbind-all:
- shard-adlp: [PASS][101] -> [DMESG-WARN][102] ([Intel XE#2953] / [Intel XE#4173]) +4 other tests dmesg-warn
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3415-64f56ca0926a30d50bcc0c215b262f5149c7e5cd/shard-adlp-6/igt@xe_pm@s2idle-vm-bind-unbind-all.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-adlp-8/igt@xe_pm@s2idle-vm-bind-unbind-all.html
* igt@xe_pm@s3-vm-bind-userptr:
- shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#584])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-lnl-4/igt@xe_pm@s3-vm-bind-userptr.html
* igt@xe_pmu@fn-engine-activity-load:
- shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#4650])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-dg2-434/igt@xe_pmu@fn-engine-activity-load.html
* igt@xe_pxp@display-pxp-fb:
- shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#4733]) +1 other test skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-2/igt@xe_pxp@display-pxp-fb.html
- shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#4733])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-dg2-463/igt@xe_pxp@display-pxp-fb.html
* igt@xe_query@multigpu-query-gt-list:
- shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#944])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-2/igt@xe_query@multigpu-query-gt-list.html
* igt@xe_query@multigpu-query-mem-usage:
- shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#944]) +1 other test skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-dg2-464/igt@xe_query@multigpu-query-mem-usage.html
#### Possible fixes ####
* igt@kms_async_flips@crc-atomic@pipe-b-hdmi-a-1:
- shard-adlp: [DMESG-FAIL][109] ([Intel XE#4543]) -> [PASS][110]
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3415-64f56ca0926a30d50bcc0c215b262f5149c7e5cd/shard-adlp-8/igt@kms_async_flips@crc-atomic@pipe-b-hdmi-a-1.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-adlp-9/igt@kms_async_flips@crc-atomic@pipe-b-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [INCOMPLETE][111] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#4212] / [Intel XE#4522]) -> [PASS][112]
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3415-64f56ca0926a30d50bcc0c215b262f5149c7e5cd/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_cursor_crc@cursor-dpms:
- shard-bmg: [SKIP][113] ([Intel XE#2320]) -> [PASS][114]
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3415-64f56ca0926a30d50bcc0c215b262f5149c7e5cd/shard-bmg-6/igt@kms_cursor_crc@cursor-dpms.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-4/igt@kms_cursor_crc@cursor-dpms.html
* igt@kms_cursor_edge_walk@256x256-top-bottom:
- shard-bmg: [SKIP][115] -> [PASS][116]
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3415-64f56ca0926a30d50bcc0c215b262f5149c7e5cd/shard-bmg-6/igt@kms_cursor_edge_walk@256x256-top-bottom.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-4/igt@kms_cursor_edge_walk@256x256-top-bottom.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
- shard-dg2-set2: [FAIL][117] -> [PASS][118]
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3415-64f56ca0926a30d50bcc0c215b262f5149c7e5cd/shard-dg2-463/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-dg2-432/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
- shard-bmg: [SKIP][119] ([Intel XE#2291]) -> [PASS][120] +4 other tests pass
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3415-64f56ca0926a30d50bcc0c215b262f5149c7e5cd/shard-bmg-6/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-3/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_dp_aux_dev:
- shard-bmg: [SKIP][121] ([Intel XE#3009]) -> [PASS][122]
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3415-64f56ca0926a30d50bcc0c215b262f5149c7e5cd/shard-bmg-5/igt@kms_dp_aux_dev.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-1/igt@kms_dp_aux_dev.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-lnl: [FAIL][123] ([Intel XE#4164]) -> [PASS][124]
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3415-64f56ca0926a30d50bcc0c215b262f5149c7e5cd/shard-lnl-1/igt@kms_fbcon_fbt@psr-suspend.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-lnl-8/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-bmg: [SKIP][125] ([Intel XE#2316]) -> [PASS][126] +7 other tests pass
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3415-64f56ca0926a30d50bcc0c215b262f5149c7e5cd/shard-bmg-5/igt@kms_flip@2x-nonexisting-fb.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-1/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@flip-vs-dpms-on-nop-interruptible@d-hdmi-a3:
- shard-bmg: [DMESG-WARN][127] ([Intel XE#3428]) -> [PASS][128] +5 other tests pass
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3415-64f56ca0926a30d50bcc0c215b262f5149c7e5cd/shard-bmg-6/igt@kms_flip@flip-vs-dpms-on-nop-interruptible@d-hdmi-a3.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-4/igt@kms_flip@flip-vs-dpms-on-nop-interruptible@d-hdmi-a3.html
* igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a3:
- shard-bmg: [INCOMPLETE][129] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][130]
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3415-64f56ca0926a30d50bcc0c215b262f5149c7e5cd/shard-bmg-8/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a3.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-1/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a3.html
* igt@kms_flip@flip-vs-suspend@d-dp4:
- shard-dg2-set2: [INCOMPLETE][131] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][132] +1 other test pass
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3415-64f56ca0926a30d50bcc0c215b262f5149c7e5cd/shard-dg2-463/igt@kms_flip@flip-vs-suspend@d-dp4.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-dg2-463/igt@kms_flip@flip-vs-suspend@d-dp4.html
* igt@kms_flip@flip-vs-suspend@d-hdmi-a1:
- shard-adlp: [DMESG-WARN][133] ([Intel XE#4543]) -> [PASS][134] +4 other tests pass
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3415-64f56ca0926a30d50bcc0c215b262f5149c7e5cd/shard-adlp-3/igt@kms_flip@flip-vs-suspend@d-hdmi-a1.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-adlp-6/igt@kms_flip@flip-vs-suspend@d-hdmi-a1.html
* igt@kms_hdr@static-swap:
- shard-bmg: [SKIP][135] ([Intel XE#1503]) -> [PASS][136] +1 other test pass
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3415-64f56ca0926a30d50bcc0c215b262f5149c7e5cd/shard-bmg-6/igt@kms_hdr@static-swap.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-3/igt@kms_hdr@static-swap.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race:
- shard-dg2-set2: [SKIP][137] ([Intel XE#1392]) -> [PASS][138] +4 other tests pass
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3415-64f56ca0926a30d50bcc0c215b262f5149c7e5cd/shard-dg2-432/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-dg2-433/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset:
- shard-lnl: [FAIL][139] ([Intel XE#5018]) -> [PASS][140]
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3415-64f56ca0926a30d50bcc0c215b262f5149c7e5cd/shard-lnl-2/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-lnl-7/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html
* igt@xe_exec_threads@threads-hang-fd-userptr-invalidate:
- shard-dg2-set2: [DMESG-WARN][141] ([Intel XE#3876]) -> [PASS][142]
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3415-64f56ca0926a30d50bcc0c215b262f5149c7e5cd/shard-dg2-466/igt@xe_exec_threads@threads-hang-fd-userptr-invalidate.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-dg2-466/igt@xe_exec_threads@threads-hang-fd-userptr-invalidate.html
* igt@xe_vm@bind-flag-invalid:
- shard-bmg: [DMESG-WARN][143] ([Intel XE#3428] / [Intel XE#5215]) -> [PASS][144] +4 other tests pass
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3415-64f56ca0926a30d50bcc0c215b262f5149c7e5cd/shard-bmg-6/igt@xe_vm@bind-flag-invalid.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-4/igt@xe_vm@bind-flag-invalid.html
#### Warnings ####
* igt@kms_async_flips@crc-atomic@pipe-c-hdmi-a-1:
- shard-adlp: [FAIL][145] ([Intel XE#3884]) -> [DMESG-FAIL][146] ([Intel XE#4543])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3415-64f56ca0926a30d50bcc0c215b262f5149c7e5cd/shard-adlp-8/igt@kms_async_flips@crc-atomic@pipe-c-hdmi-a-1.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-adlp-9/igt@kms_async_flips@crc-atomic@pipe-c-hdmi-a-1.html
* igt@kms_content_protection@legacy:
- shard-bmg: [SKIP][147] ([Intel XE#2341]) -> [FAIL][148] ([Intel XE#1178])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3415-64f56ca0926a30d50bcc0c215b262f5149c7e5cd/shard-bmg-5/igt@kms_content_protection@legacy.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-1/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@srm:
- shard-bmg: [FAIL][149] ([Intel XE#1178]) -> [SKIP][150] ([Intel XE#2341])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3415-64f56ca0926a30d50bcc0c215b262f5149c7e5cd/shard-bmg-2/igt@kms_content_protection@srm.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-5/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-bmg: [SKIP][151] ([Intel XE#2321]) -> [SKIP][152] ([Intel XE#2320])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3415-64f56ca0926a30d50bcc0c215b262f5149c7e5cd/shard-bmg-1/igt@kms_cursor_crc@cursor-sliding-512x170.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-6/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-bmg: [DMESG-WARN][153] ([Intel XE#5354]) -> [SKIP][154] ([Intel XE#2291])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3415-64f56ca0926a30d50bcc0c215b262f5149c7e5cd/shard-bmg-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][155] ([Intel XE#2311]) -> [SKIP][156] ([Intel XE#2312]) +11 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3415-64f56ca0926a30d50bcc0c215b262f5149c7e5cd/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: [SKIP][157] ([Intel XE#2312]) -> [SKIP][158] ([Intel XE#2311]) +13 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3415-64f56ca0926a30d50bcc0c215b262f5149c7e5cd/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][159] ([Intel XE#2312]) -> [SKIP][160] ([Intel XE#5390]) +2 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3415-64f56ca0926a30d50bcc0c215b262f5149c7e5cd/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][161] ([Intel XE#5390]) -> [SKIP][162] ([Intel XE#2312]) +3 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3415-64f56ca0926a30d50bcc0c215b262f5149c7e5cd/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][163] ([Intel XE#2313]) -> [SKIP][164] ([Intel XE#2312]) +10 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3415-64f56ca0926a30d50bcc0c215b262f5149c7e5cd/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: [SKIP][165] ([Intel XE#2312]) -> [SKIP][166] ([Intel XE#2313]) +13 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3415-64f56ca0926a30d50bcc0c215b262f5149c7e5cd/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
- shard-adlp: [ABORT][167] -> [ABORT][168] ([Intel XE#4917])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3415-64f56ca0926a30d50bcc0c215b262f5149c7e5cd/shard-adlp-9/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/shard-adlp-9/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[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#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3428
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
[Intel XE#3884]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3884
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908
[Intel XE#4090]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4090
[Intel XE#4164]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4164
[Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4501
[Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4812]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4812
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4842]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4842
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4917]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4917
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5018]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5018
[Intel XE#5195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5195
[Intel XE#5215]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5215
[Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
[Intel XE#5388]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5388
[Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
[Intel XE#5426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5426
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* Linux: xe-3415-64f56ca0926a30d50bcc0c215b262f5149c7e5cd -> xe-pw-150935v4
IGT_8459: 8459
xe-3415-64f56ca0926a30d50bcc0c215b262f5149c7e5cd: 64f56ca0926a30d50bcc0c215b262f5149c7e5cd
xe-pw-150935v4: 150935v4
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150935v4/index.html
[-- Attachment #2: Type: text/html, Size: 56620 bytes --]
^ permalink raw reply [flat|nested] 17+ messages in thread* Re: [PATCH 0/2] Introduce helper for display workarounds and add Wa_16025573575
2025-07-11 4:18 [PATCH 0/2] Introduce helper for display workarounds and add Wa_16025573575 Ankit Nautiyal
` (7 preceding siblings ...)
2025-07-15 22:29 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-07-17 15:56 ` Nautiyal, Ankit K
8 siblings, 0 replies; 17+ messages in thread
From: Nautiyal, Ankit K @ 2025-07-17 15:56 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe, gustavo.sousa, lucas.demarchi, ville.syrjala
On 7/11/2025 9:48 AM, Ankit Nautiyal wrote:
> This series introduces a generic infrastructure for querying display
> workarounds. The goal is to simplify WA checks, avoid open-coded conditions,
> and make it easier to extend support for future workarounds.
>
> Patch 1 introduces the base infrastructure using an enum and a central
> helper function. It also migrates Wa_16023588340 to use this new interface.
>
> Patch 2 adds support for Wa_16025573575, which applies to PTL platforms
> and requires preserving additional GPIO bits in GMBUS.
>
> The series is in response to the suggestions to unify workaround handling
> and allowing future automation or generation of WA logic in [1].
>
> [1] https://lore.kernel.org/intel-gfx/7f079861f91861e9e895240cd3272f6e29deab7e@intel.com/
Thanks for the feedback, and suggestions. Thanks Jani and Gustavo for
the reviews.
Patches were pushed to drm-intel-next.
Regards,
Ankit
>
> Rev2:
> -Remove MISSING_CASE, use drm_WARN.
> -Simplify macro for display_wa.
>
> Rev3:
> -Print missing wa_number.
> -Add more documentation for the WA.
> -Extend the WA for WCL.
>
> Ankit Nautiyal (2):
> drm/i915/display_wa: Add helpers to check wa
> drm/i915/gmbus: Add Wa_16025573575 for PTL/WCL for bit-bashing
>
> .../gpu/drm/i915/display/intel_display_wa.c | 27 +++++++++++++++
> .../gpu/drm/i915/display/intel_display_wa.h | 10 ++++++
> drivers/gpu/drm/i915/display/intel_fbc.c | 2 +-
> drivers/gpu/drm/i915/display/intel_gmbus.c | 34 +++++++++++++++++--
> 4 files changed, 70 insertions(+), 3 deletions(-)
>
^ permalink raw reply [flat|nested] 17+ messages in thread