* [RESEND 1/5] drm/i915/alpm: Compute LOBF late after guardband is already determined
2026-02-04 5:02 [RESEND 0/5] LOBF fixes Ankit Nautiyal
@ 2026-02-04 5:02 ` Ankit Nautiyal
2026-02-04 6:24 ` Hogander, Jouni
2026-02-04 5:02 ` [RESEND 2/5] drm/i915/alpm: Allow LOBF only if window1 > alpm check_entry lines Ankit Nautiyal
` (13 subsequent siblings)
14 siblings, 1 reply; 18+ messages in thread
From: Ankit Nautiyal @ 2026-02-04 5:02 UTC (permalink / raw)
To: intel-gfx, intel-xe
Cc: jouni.hogander, ville.syrjala, animesh.manna, michal.grzelak,
Ankit Nautiyal
Currently intel_alpm_lobf_compute_config() tries to account for
guardband +SCL requirements during encoder->compute_config() phase,
even before guardband is computed.
Also, LOBF depends on crtc_state->has_psr which can be modified in
encoder->compute_config_late().
Account for lobf requirements while optimizing the guardband and add
checks for final guardband in encoder->compute_config_late() phase after
the guardband and the final state of crtc_state->has_psr are already
computed.
Use crtc_state->vrr.guardband and crtc_state->set_context_latency for
the computation and add more documentation for the dependency of first
sdp position, guardband, set context latency and wake lines.
v2: Add helper to use min guardband required for lobf.
v3: Remove unrelated inadvertent changes. (Michał)
v4: Add a #FIXME note for computing wakelines based on feature. (Jouni)
Bspec:71041
Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Reviewed-by: Michał Grzelak <michal.grzelak@intel.com>
---
drivers/gpu/drm/i915/display/intel_alpm.c | 70 ++++++++++++++++++-----
drivers/gpu/drm/i915/display/intel_alpm.h | 3 +
drivers/gpu/drm/i915/display/intel_dp.c | 2 +
drivers/gpu/drm/i915/display/intel_vrr.c | 2 +
4 files changed, 63 insertions(+), 14 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_alpm.c b/drivers/gpu/drm/i915/display/intel_alpm.c
index 7ce8c674bb03..055184a3c7d5 100644
--- a/drivers/gpu/drm/i915/display/intel_alpm.c
+++ b/drivers/gpu/drm/i915/display/intel_alpm.c
@@ -15,6 +15,7 @@
#include "intel_dp_aux.h"
#include "intel_psr.h"
#include "intel_psr_regs.h"
+#include "intel_vrr.h"
#define SILENCE_PERIOD_MIN_TIME 80
#define SILENCE_PERIOD_MAX_TIME 180
@@ -248,14 +249,65 @@ bool intel_alpm_compute_params(struct intel_dp *intel_dp,
return true;
}
+int intel_alpm_lobf_min_guardband(struct intel_crtc_state *crtc_state)
+{
+ struct drm_display_mode *adjusted_mode = &crtc_state->hw.adjusted_mode;
+ int first_sdp_position = adjusted_mode->crtc_vtotal -
+ adjusted_mode->crtc_vsync_start;
+ int waketime_in_lines;
+
+ /*
+ * #FIXME: Need to check if io_wake_lines or aux_less_wake_lines
+ * is applicable. Currently this information is not readily
+ * available in crtc_state, so max will suffice for now.
+ */
+ waketime_in_lines = max(crtc_state->alpm_state.io_wake_lines,
+ crtc_state->alpm_state.aux_less_wake_lines);
+
+ if (!crtc_state->has_lobf)
+ return 0;
+
+ return first_sdp_position + waketime_in_lines + crtc_state->set_context_latency;
+}
+
+void intel_alpm_lobf_compute_config_late(struct intel_dp *intel_dp,
+ struct intel_crtc_state *crtc_state)
+{
+ struct drm_display_mode *adjusted_mode = &crtc_state->hw.adjusted_mode;
+ int waketime_in_lines, first_sdp_position;
+
+ if (!crtc_state->has_lobf)
+ return;
+
+ /*
+ * LOBF can only be enabled if the time from the start of the SCL+Guardband
+ * window to the position of the first SDP is greater than the time it takes
+ * to wake the main link.
+ *
+ * Position of first sdp : vsync_start
+ * start of scl + guardband : vtotal - (scl + guardband)
+ * time in lines to wake main link : waketime_in_lines
+ *
+ * Position of first sdp - start of (scl + guardband) > time in lines to wake main link
+ * vsync_start - (vtotal - (scl + guardband)) > waketime_in_lines
+ * vsync_start - vtotal + scl + guardband > waketime_in_lines
+ * scl + guardband > waketime_in_lines + (vtotal - vsync_start)
+ */
+ first_sdp_position = adjusted_mode->crtc_vtotal - adjusted_mode->crtc_vsync_start;
+ if (intel_alpm_aux_less_wake_supported(intel_dp))
+ waketime_in_lines = crtc_state->alpm_state.io_wake_lines;
+ else
+ waketime_in_lines = crtc_state->alpm_state.aux_less_wake_lines;
+
+ crtc_state->has_lobf = (crtc_state->set_context_latency + crtc_state->vrr.guardband) >
+ (first_sdp_position + waketime_in_lines);
+}
+
void intel_alpm_lobf_compute_config(struct intel_dp *intel_dp,
struct intel_crtc_state *crtc_state,
struct drm_connector_state *conn_state)
{
struct intel_display *display = to_intel_display(intel_dp);
- struct drm_display_mode *adjusted_mode = &crtc_state->hw.adjusted_mode;
- int waketime_in_lines, first_sdp_position;
- int context_latency, guardband;
if (intel_dp->alpm.lobf_disable_debug) {
drm_dbg_kms(display->drm, "LOBF is disabled by debug flag\n");
@@ -288,17 +340,7 @@ void intel_alpm_lobf_compute_config(struct intel_dp *intel_dp,
if (!intel_alpm_compute_params(intel_dp, crtc_state))
return;
- context_latency = adjusted_mode->crtc_vblank_start - adjusted_mode->crtc_vdisplay;
- guardband = adjusted_mode->crtc_vtotal -
- adjusted_mode->crtc_vdisplay - context_latency;
- first_sdp_position = adjusted_mode->crtc_vtotal - adjusted_mode->crtc_vsync_start;
- if (intel_alpm_aux_less_wake_supported(intel_dp))
- waketime_in_lines = crtc_state->alpm_state.io_wake_lines;
- else
- waketime_in_lines = crtc_state->alpm_state.aux_less_wake_lines;
-
- crtc_state->has_lobf = (context_latency + guardband) >
- (first_sdp_position + waketime_in_lines);
+ crtc_state->has_lobf = true;
}
static void lnl_alpm_configure(struct intel_dp *intel_dp,
diff --git a/drivers/gpu/drm/i915/display/intel_alpm.h b/drivers/gpu/drm/i915/display/intel_alpm.h
index c6a4ec5b9561..b698979d1f13 100644
--- a/drivers/gpu/drm/i915/display/intel_alpm.h
+++ b/drivers/gpu/drm/i915/display/intel_alpm.h
@@ -38,4 +38,7 @@ bool intel_alpm_is_alpm_aux_less(struct intel_dp *intel_dp,
const struct intel_crtc_state *crtc_state);
void intel_alpm_disable(struct intel_dp *intel_dp);
bool intel_alpm_get_error(struct intel_dp *intel_dp);
+void intel_alpm_lobf_compute_config_late(struct intel_dp *intel_dp,
+ struct intel_crtc_state *crtc_state);
+int intel_alpm_lobf_min_guardband(struct intel_crtc_state *crtc_state);
#endif
diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
index e2fd01d1a1e4..2b8f43e21174 100644
--- a/drivers/gpu/drm/i915/display/intel_dp.c
+++ b/drivers/gpu/drm/i915/display/intel_dp.c
@@ -7163,6 +7163,8 @@ int intel_dp_compute_config_late(struct intel_encoder *encoder,
if (ret)
return ret;
+ intel_alpm_lobf_compute_config_late(intel_dp, crtc_state);
+
return 0;
}
diff --git a/drivers/gpu/drm/i915/display/intel_vrr.c b/drivers/gpu/drm/i915/display/intel_vrr.c
index 9d814cc2d608..00ca76dbdd6c 100644
--- a/drivers/gpu/drm/i915/display/intel_vrr.c
+++ b/drivers/gpu/drm/i915/display/intel_vrr.c
@@ -6,6 +6,7 @@
#include <drm/drm_print.h>
+#include "intel_alpm.h"
#include "intel_crtc.h"
#include "intel_de.h"
#include "intel_display_regs.h"
@@ -520,6 +521,7 @@ int intel_vrr_compute_optimized_guardband(struct intel_crtc_state *crtc_state)
if (intel_crtc_has_dp_encoder(crtc_state)) {
guardband = max(guardband, intel_psr_min_guardband(crtc_state));
guardband = max(guardband, intel_dp_sdp_min_guardband(crtc_state, true));
+ guardband = max(guardband, intel_alpm_lobf_min_guardband(crtc_state));
}
return guardband;
--
2.45.2
^ permalink raw reply related [flat|nested] 18+ messages in thread* Re: [RESEND 1/5] drm/i915/alpm: Compute LOBF late after guardband is already determined
2026-02-04 5:02 ` [RESEND 1/5] drm/i915/alpm: Compute LOBF late after guardband is already determined Ankit Nautiyal
@ 2026-02-04 6:24 ` Hogander, Jouni
0 siblings, 0 replies; 18+ messages in thread
From: Hogander, Jouni @ 2026-02-04 6:24 UTC (permalink / raw)
To: intel-xe@lists.freedesktop.org, Nautiyal, Ankit K,
intel-gfx@lists.freedesktop.org
Cc: ville.syrjala@linux.intel.com, Grzelak, Michal, Manna, Animesh
On Wed, 2026-02-04 at 10:32 +0530, Ankit Nautiyal wrote:
> Currently intel_alpm_lobf_compute_config() tries to account for
> guardband +SCL requirements during encoder->compute_config() phase,
> even before guardband is computed.
> Also, LOBF depends on crtc_state->has_psr which can be modified in
> encoder->compute_config_late().
>
> Account for lobf requirements while optimizing the guardband and add
> checks for final guardband in encoder->compute_config_late() phase
> after
> the guardband and the final state of crtc_state->has_psr are already
> computed.
>
> Use crtc_state->vrr.guardband and crtc_state->set_context_latency for
> the computation and add more documentation for the dependency of
> first
> sdp position, guardband, set context latency and wake lines.
>
> v2: Add helper to use min guardband required for lobf.
> v3: Remove unrelated inadvertent changes. (Michał)
> v4: Add a #FIXME note for computing wakelines based on feature.
> (Jouni)
>
> Bspec:71041
> Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
> Reviewed-by: Michał Grzelak <michal.grzelak@intel.com>
Reviewed-by: Jouni Högander <jouni.hogander@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_alpm.c | 70 ++++++++++++++++++---
> --
> drivers/gpu/drm/i915/display/intel_alpm.h | 3 +
> drivers/gpu/drm/i915/display/intel_dp.c | 2 +
> drivers/gpu/drm/i915/display/intel_vrr.c | 2 +
> 4 files changed, 63 insertions(+), 14 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_alpm.c
> b/drivers/gpu/drm/i915/display/intel_alpm.c
> index 7ce8c674bb03..055184a3c7d5 100644
> --- a/drivers/gpu/drm/i915/display/intel_alpm.c
> +++ b/drivers/gpu/drm/i915/display/intel_alpm.c
> @@ -15,6 +15,7 @@
> #include "intel_dp_aux.h"
> #include "intel_psr.h"
> #include "intel_psr_regs.h"
> +#include "intel_vrr.h"
>
> #define SILENCE_PERIOD_MIN_TIME 80
> #define SILENCE_PERIOD_MAX_TIME 180
> @@ -248,14 +249,65 @@ bool intel_alpm_compute_params(struct intel_dp
> *intel_dp,
> return true;
> }
>
> +int intel_alpm_lobf_min_guardband(struct intel_crtc_state
> *crtc_state)
> +{
> + struct drm_display_mode *adjusted_mode = &crtc_state-
> >hw.adjusted_mode;
> + int first_sdp_position = adjusted_mode->crtc_vtotal -
> + adjusted_mode->crtc_vsync_start;
> + int waketime_in_lines;
> +
> + /*
> + * #FIXME: Need to check if io_wake_lines or
> aux_less_wake_lines
> + * is applicable. Currently this information is not readily
> + * available in crtc_state, so max will suffice for now.
> + */
> + waketime_in_lines = max(crtc_state-
> >alpm_state.io_wake_lines,
> + crtc_state-
> >alpm_state.aux_less_wake_lines);
> +
> + if (!crtc_state->has_lobf)
> + return 0;
> +
> + return first_sdp_position + waketime_in_lines + crtc_state-
> >set_context_latency;
> +}
> +
> +void intel_alpm_lobf_compute_config_late(struct intel_dp *intel_dp,
> + struct intel_crtc_state
> *crtc_state)
> +{
> + struct drm_display_mode *adjusted_mode = &crtc_state-
> >hw.adjusted_mode;
> + int waketime_in_lines, first_sdp_position;
> +
> + if (!crtc_state->has_lobf)
> + return;
> +
> + /*
> + * LOBF can only be enabled if the time from the start of
> the SCL+Guardband
> + * window to the position of the first SDP is greater than
> the time it takes
> + * to wake the main link.
> + *
> + * Position of first sdp : vsync_start
> + * start of scl + guardband : vtotal - (scl + guardband)
> + * time in lines to wake main link : waketime_in_lines
> + *
> + * Position of first sdp - start of (scl + guardband) > time
> in lines to wake main link
> + * vsync_start - (vtotal - (scl + guardband)) >
> waketime_in_lines
> + * vsync_start - vtotal + scl + guardband >
> waketime_in_lines
> + * scl + guardband > waketime_in_lines + (vtotal -
> vsync_start)
> + */
> + first_sdp_position = adjusted_mode->crtc_vtotal -
> adjusted_mode->crtc_vsync_start;
> + if (intel_alpm_aux_less_wake_supported(intel_dp))
> + waketime_in_lines = crtc_state-
> >alpm_state.io_wake_lines;
> + else
> + waketime_in_lines = crtc_state-
> >alpm_state.aux_less_wake_lines;
> +
> + crtc_state->has_lobf = (crtc_state->set_context_latency +
> crtc_state->vrr.guardband) >
> + (first_sdp_position +
> waketime_in_lines);
> +}
> +
> void intel_alpm_lobf_compute_config(struct intel_dp *intel_dp,
> struct intel_crtc_state
> *crtc_state,
> struct drm_connector_state
> *conn_state)
> {
> struct intel_display *display = to_intel_display(intel_dp);
> - struct drm_display_mode *adjusted_mode = &crtc_state-
> >hw.adjusted_mode;
> - int waketime_in_lines, first_sdp_position;
> - int context_latency, guardband;
>
> if (intel_dp->alpm.lobf_disable_debug) {
> drm_dbg_kms(display->drm, "LOBF is disabled by debug
> flag\n");
> @@ -288,17 +340,7 @@ void intel_alpm_lobf_compute_config(struct
> intel_dp *intel_dp,
> if (!intel_alpm_compute_params(intel_dp, crtc_state))
> return;
>
> - context_latency = adjusted_mode->crtc_vblank_start -
> adjusted_mode->crtc_vdisplay;
> - guardband = adjusted_mode->crtc_vtotal -
> - adjusted_mode->crtc_vdisplay - context_latency;
> - first_sdp_position = adjusted_mode->crtc_vtotal -
> adjusted_mode->crtc_vsync_start;
> - if (intel_alpm_aux_less_wake_supported(intel_dp))
> - waketime_in_lines = crtc_state-
> >alpm_state.io_wake_lines;
> - else
> - waketime_in_lines = crtc_state-
> >alpm_state.aux_less_wake_lines;
> -
> - crtc_state->has_lobf = (context_latency + guardband) >
> - (first_sdp_position + waketime_in_lines);
> + crtc_state->has_lobf = true;
> }
>
> static void lnl_alpm_configure(struct intel_dp *intel_dp,
> diff --git a/drivers/gpu/drm/i915/display/intel_alpm.h
> b/drivers/gpu/drm/i915/display/intel_alpm.h
> index c6a4ec5b9561..b698979d1f13 100644
> --- a/drivers/gpu/drm/i915/display/intel_alpm.h
> +++ b/drivers/gpu/drm/i915/display/intel_alpm.h
> @@ -38,4 +38,7 @@ bool intel_alpm_is_alpm_aux_less(struct intel_dp
> *intel_dp,
> const struct intel_crtc_state
> *crtc_state);
> void intel_alpm_disable(struct intel_dp *intel_dp);
> bool intel_alpm_get_error(struct intel_dp *intel_dp);
> +void intel_alpm_lobf_compute_config_late(struct intel_dp *intel_dp,
> + struct intel_crtc_state
> *crtc_state);
> +int intel_alpm_lobf_min_guardband(struct intel_crtc_state
> *crtc_state);
> #endif
> diff --git a/drivers/gpu/drm/i915/display/intel_dp.c
> b/drivers/gpu/drm/i915/display/intel_dp.c
> index e2fd01d1a1e4..2b8f43e21174 100644
> --- a/drivers/gpu/drm/i915/display/intel_dp.c
> +++ b/drivers/gpu/drm/i915/display/intel_dp.c
> @@ -7163,6 +7163,8 @@ int intel_dp_compute_config_late(struct
> intel_encoder *encoder,
> if (ret)
> return ret;
>
> + intel_alpm_lobf_compute_config_late(intel_dp, crtc_state);
> +
> return 0;
> }
>
> diff --git a/drivers/gpu/drm/i915/display/intel_vrr.c
> b/drivers/gpu/drm/i915/display/intel_vrr.c
> index 9d814cc2d608..00ca76dbdd6c 100644
> --- a/drivers/gpu/drm/i915/display/intel_vrr.c
> +++ b/drivers/gpu/drm/i915/display/intel_vrr.c
> @@ -6,6 +6,7 @@
>
> #include <drm/drm_print.h>
>
> +#include "intel_alpm.h"
> #include "intel_crtc.h"
> #include "intel_de.h"
> #include "intel_display_regs.h"
> @@ -520,6 +521,7 @@ int intel_vrr_compute_optimized_guardband(struct
> intel_crtc_state *crtc_state)
> if (intel_crtc_has_dp_encoder(crtc_state)) {
> guardband = max(guardband,
> intel_psr_min_guardband(crtc_state));
> guardband = max(guardband,
> intel_dp_sdp_min_guardband(crtc_state, true));
> + guardband = max(guardband,
> intel_alpm_lobf_min_guardband(crtc_state));
> }
>
> return guardband;
^ permalink raw reply [flat|nested] 18+ messages in thread
* [RESEND 2/5] drm/i915/alpm: Allow LOBF only if window1 > alpm check_entry lines
2026-02-04 5:02 [RESEND 0/5] LOBF fixes Ankit Nautiyal
2026-02-04 5:02 ` [RESEND 1/5] drm/i915/alpm: Compute LOBF late after guardband is already determined Ankit Nautiyal
@ 2026-02-04 5:02 ` Ankit Nautiyal
2026-02-04 5:02 ` [RESEND 3/5] drm/i915/alpm: Allow LOBF only for platform that have Always on VRR TG Ankit Nautiyal
` (12 subsequent siblings)
14 siblings, 0 replies; 18+ messages in thread
From: Ankit Nautiyal @ 2026-02-04 5:02 UTC (permalink / raw)
To: intel-gfx, intel-xe
Cc: jouni.hogander, ville.syrjala, animesh.manna, michal.grzelak,
Ankit Nautiyal
LOBF must be disabled if the number of lines within Window 1 is not greater
than ALPM_CTL[ALPM Entry Check]
v2: Consider the case where SCL is in the active region. (Ville)
Bspec:71041
Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Reviewed-by: Michał Grzelak <michal.grzelak@intel.com>
---
drivers/gpu/drm/i915/display/intel_alpm.c | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/drivers/gpu/drm/i915/display/intel_alpm.c b/drivers/gpu/drm/i915/display/intel_alpm.c
index 055184a3c7d5..27b26e5813dc 100644
--- a/drivers/gpu/drm/i915/display/intel_alpm.c
+++ b/drivers/gpu/drm/i915/display/intel_alpm.c
@@ -270,6 +270,23 @@ int intel_alpm_lobf_min_guardband(struct intel_crtc_state *crtc_state)
return first_sdp_position + waketime_in_lines + crtc_state->set_context_latency;
}
+static bool intel_alpm_lobf_is_window1_sufficient(struct intel_crtc_state *crtc_state)
+{
+ struct drm_display_mode *adjusted_mode = &crtc_state->hw.adjusted_mode;
+ int vblank = adjusted_mode->crtc_vtotal - adjusted_mode->crtc_vdisplay;
+ int window1;
+
+ /*
+ * LOBF must be disabled if the number of lines within Window 1 is not
+ * greater than ALPM_CTL[ALPM Entry Check]
+ */
+ window1 = vblank - min(vblank,
+ crtc_state->vrr.guardband +
+ crtc_state->set_context_latency);
+
+ return window1 > crtc_state->alpm_state.check_entry_lines;
+}
+
void intel_alpm_lobf_compute_config_late(struct intel_dp *intel_dp,
struct intel_crtc_state *crtc_state)
{
@@ -279,6 +296,11 @@ void intel_alpm_lobf_compute_config_late(struct intel_dp *intel_dp,
if (!crtc_state->has_lobf)
return;
+ if (!intel_alpm_lobf_is_window1_sufficient(crtc_state)) {
+ crtc_state->has_lobf = false;
+ return;
+ }
+
/*
* LOBF can only be enabled if the time from the start of the SCL+Guardband
* window to the position of the first SDP is greater than the time it takes
--
2.45.2
^ permalink raw reply related [flat|nested] 18+ messages in thread* [RESEND 3/5] drm/i915/alpm: Allow LOBF only for platform that have Always on VRR TG
2026-02-04 5:02 [RESEND 0/5] LOBF fixes Ankit Nautiyal
2026-02-04 5:02 ` [RESEND 1/5] drm/i915/alpm: Compute LOBF late after guardband is already determined Ankit Nautiyal
2026-02-04 5:02 ` [RESEND 2/5] drm/i915/alpm: Allow LOBF only if window1 > alpm check_entry lines Ankit Nautiyal
@ 2026-02-04 5:02 ` Ankit Nautiyal
2026-02-04 5:02 ` [RESEND 4/5] drm/i915/alpm: Simplify and align LOBF checks in pre/post plane update Ankit Nautiyal
` (11 subsequent siblings)
14 siblings, 0 replies; 18+ messages in thread
From: Ankit Nautiyal @ 2026-02-04 5:02 UTC (permalink / raw)
To: intel-gfx, intel-xe
Cc: jouni.hogander, ville.syrjala, animesh.manna, michal.grzelak,
Ankit Nautiyal
As per bspec the LOBF is allowed when running in fixed refresh rate mode
i.e. when flipline = vmin = vmax and when window1 is non zero. This
implies that we can allow LOBF only when VRR timing generator is running
in the fixed refresh rate mode.
Use the check intel_vrr_always_use_vrr_tg() to avoid LOBF with legacy
timing generator. Also use intel_vrr_is_fixed_rr() to check for fixed
refresh rate mode.
v2: Modify commit message to clarify window1 requirement for LOBF.
(Ville)
Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Reviewed-by: Michał Grzelak <michal.grzelak@intel.com>
---
drivers/gpu/drm/i915/display/intel_alpm.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_alpm.c b/drivers/gpu/drm/i915/display/intel_alpm.c
index 27b26e5813dc..3aeab4bebce2 100644
--- a/drivers/gpu/drm/i915/display/intel_alpm.c
+++ b/drivers/gpu/drm/i915/display/intel_alpm.c
@@ -351,8 +351,8 @@ void intel_alpm_lobf_compute_config(struct intel_dp *intel_dp,
if (crtc_state->has_psr)
return;
- if (crtc_state->vrr.vmin != crtc_state->vrr.vmax ||
- crtc_state->vrr.vmin != crtc_state->vrr.flipline)
+ if (!intel_vrr_always_use_vrr_tg(display) ||
+ !intel_vrr_is_fixed_rr(crtc_state))
return;
if (!(intel_alpm_aux_wake_supported(intel_dp) ||
--
2.45.2
^ permalink raw reply related [flat|nested] 18+ messages in thread* [RESEND 4/5] drm/i915/alpm: Simplify and align LOBF checks in pre/post plane update
2026-02-04 5:02 [RESEND 0/5] LOBF fixes Ankit Nautiyal
` (2 preceding siblings ...)
2026-02-04 5:02 ` [RESEND 3/5] drm/i915/alpm: Allow LOBF only for platform that have Always on VRR TG Ankit Nautiyal
@ 2026-02-04 5:02 ` Ankit Nautiyal
2026-02-04 6:24 ` Hogander, Jouni
2026-02-04 5:02 ` [RESEND 5/5] drm/i915/alpm: Disable LOBF around transitioning for LRR/seamless MN Ankit Nautiyal
` (10 subsequent siblings)
14 siblings, 1 reply; 18+ messages in thread
From: Ankit Nautiyal @ 2026-02-04 5:02 UTC (permalink / raw)
To: intel-gfx, intel-xe
Cc: jouni.hogander, ville.syrjala, animesh.manna, michal.grzelak,
Ankit Nautiyal
The pre_plane_update and post_plane_update hooks essentially
disable/enable lobf feature. Use the existing _is_enabling/is_disabling
logic for this in the pre_plane_update and post_plane_update paths.
Also rename the helpers to intel_alpm_lobf_{en,dis}able().
v2: Remove redeundant checks during enabling/disabling. (Jouni)
Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Reviewed-by: Michał Grzelak <michal.grzelak@intel.com>
---
drivers/gpu/drm/i915/display/intel_alpm.c | 48 ++++++--------------
drivers/gpu/drm/i915/display/intel_alpm.h | 6 +--
drivers/gpu/drm/i915/display/intel_display.c | 25 +++++++++-
3 files changed, 38 insertions(+), 41 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_alpm.c b/drivers/gpu/drm/i915/display/intel_alpm.c
index 3aeab4bebce2..e0a4a59dc025 100644
--- a/drivers/gpu/drm/i915/display/intel_alpm.c
+++ b/drivers/gpu/drm/i915/display/intel_alpm.c
@@ -452,25 +452,14 @@ void intel_alpm_port_configure(struct intel_dp *intel_dp,
intel_de_write(display, PORT_ALPM_LFPS_CTL(port), lfps_ctl_val);
}
-void intel_alpm_pre_plane_update(struct intel_atomic_state *state,
- struct intel_crtc *crtc)
+void intel_alpm_lobf_disable(const struct intel_crtc_state *new_crtc_state)
{
- struct intel_display *display = to_intel_display(state);
- const struct intel_crtc_state *crtc_state =
- intel_atomic_get_new_crtc_state(state, crtc);
- const struct intel_crtc_state *old_crtc_state =
- intel_atomic_get_old_crtc_state(state, crtc);
- enum transcoder cpu_transcoder = crtc_state->cpu_transcoder;
+ struct intel_display *display = to_intel_display(new_crtc_state);
+ enum transcoder cpu_transcoder = new_crtc_state->cpu_transcoder;
struct intel_encoder *encoder;
- if (DISPLAY_VER(display) < 20)
- return;
-
- if (crtc_state->has_lobf || crtc_state->has_lobf == old_crtc_state->has_lobf)
- return;
-
for_each_intel_encoder_mask(display->drm, encoder,
- crtc_state->uapi.encoder_mask) {
+ new_crtc_state->uapi.encoder_mask) {
struct intel_dp *intel_dp;
if (!intel_encoder_is_dp(encoder))
@@ -481,12 +470,10 @@ void intel_alpm_pre_plane_update(struct intel_atomic_state *state,
if (!intel_dp_is_edp(intel_dp))
continue;
- if (old_crtc_state->has_lobf) {
- mutex_lock(&intel_dp->alpm.lock);
- intel_de_write(display, ALPM_CTL(display, cpu_transcoder), 0);
- drm_dbg_kms(display->drm, "Link off between frames (LOBF) disabled\n");
- mutex_unlock(&intel_dp->alpm.lock);
- }
+ mutex_lock(&intel_dp->alpm.lock);
+ intel_de_write(display, ALPM_CTL(display, cpu_transcoder), 0);
+ drm_dbg_kms(display->drm, "Link off between frames (LOBF) disabled\n");
+ mutex_unlock(&intel_dp->alpm.lock);
}
}
@@ -507,22 +494,13 @@ void intel_alpm_enable_sink(struct intel_dp *intel_dp,
drm_dp_dpcd_writeb(&intel_dp->aux, DP_RECEIVER_ALPM_CONFIG, val);
}
-void intel_alpm_post_plane_update(struct intel_atomic_state *state,
- struct intel_crtc *crtc)
+void intel_alpm_lobf_enable(const struct intel_crtc_state *new_crtc_state)
{
- struct intel_display *display = to_intel_display(state);
- const struct intel_crtc_state *crtc_state =
- intel_atomic_get_new_crtc_state(state, crtc);
- const struct intel_crtc_state *old_crtc_state =
- intel_atomic_get_old_crtc_state(state, crtc);
+ struct intel_display *display = to_intel_display(new_crtc_state);
struct intel_encoder *encoder;
- if (crtc_state->has_psr || !crtc_state->has_lobf ||
- crtc_state->has_lobf == old_crtc_state->has_lobf)
- return;
-
for_each_intel_encoder_mask(display->drm, encoder,
- crtc_state->uapi.encoder_mask) {
+ new_crtc_state->uapi.encoder_mask) {
struct intel_dp *intel_dp;
if (!intel_encoder_is_dp(encoder))
@@ -531,8 +509,8 @@ void intel_alpm_post_plane_update(struct intel_atomic_state *state,
intel_dp = enc_to_intel_dp(encoder);
if (intel_dp_is_edp(intel_dp)) {
- intel_alpm_enable_sink(intel_dp, crtc_state);
- intel_alpm_configure(intel_dp, crtc_state);
+ intel_alpm_enable_sink(intel_dp, new_crtc_state);
+ intel_alpm_configure(intel_dp, new_crtc_state);
}
}
}
diff --git a/drivers/gpu/drm/i915/display/intel_alpm.h b/drivers/gpu/drm/i915/display/intel_alpm.h
index b698979d1f13..1cf70668ab1b 100644
--- a/drivers/gpu/drm/i915/display/intel_alpm.h
+++ b/drivers/gpu/drm/i915/display/intel_alpm.h
@@ -25,12 +25,10 @@ void intel_alpm_configure(struct intel_dp *intel_dp,
const struct intel_crtc_state *crtc_state);
void intel_alpm_enable_sink(struct intel_dp *intel_dp,
const struct intel_crtc_state *crtc_state);
-void intel_alpm_pre_plane_update(struct intel_atomic_state *state,
- struct intel_crtc *crtc);
+void intel_alpm_lobf_disable(const struct intel_crtc_state *new_crtc_state);
void intel_alpm_port_configure(struct intel_dp *intel_dp,
const struct intel_crtc_state *crtc_state);
-void intel_alpm_post_plane_update(struct intel_atomic_state *state,
- struct intel_crtc *crtc);
+void intel_alpm_lobf_enable(const struct intel_crtc_state *new_crtc_state);
void intel_alpm_lobf_debugfs_add(struct intel_connector *connector);
bool intel_alpm_aux_wake_supported(struct intel_dp *intel_dp);
bool intel_alpm_aux_less_wake_supported(struct intel_dp *intel_dp);
diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
index 564d11925af3..739a0a74e008 100644
--- a/drivers/gpu/drm/i915/display/intel_display.c
+++ b/drivers/gpu/drm/i915/display/intel_display.c
@@ -1008,6 +1008,24 @@ static bool intel_casf_disabling(const struct intel_crtc_state *old_crtc_state,
return is_disabling(hw.casf_params.casf_enable, old_crtc_state, new_crtc_state);
}
+static bool intel_crtc_lobf_enabling(const struct intel_crtc_state *old_crtc_state,
+ const struct intel_crtc_state *new_crtc_state)
+{
+ if (!new_crtc_state->hw.active)
+ return false;
+
+ return is_enabling(has_lobf, old_crtc_state, new_crtc_state);
+}
+
+static bool intel_crtc_lobf_disabling(const struct intel_crtc_state *old_crtc_state,
+ const struct intel_crtc_state *new_crtc_state)
+{
+ if (!old_crtc_state->hw.active)
+ return false;
+
+ return is_disabling(has_lobf, old_crtc_state, new_crtc_state);
+}
+
#undef is_disabling
#undef is_enabling
@@ -1055,7 +1073,8 @@ static void intel_post_plane_update(struct intel_atomic_state *state,
adl_scaler_ecc_unmask(new_crtc_state);
}
- intel_alpm_post_plane_update(state, crtc);
+ if (intel_crtc_lobf_enabling(old_crtc_state, new_crtc_state))
+ intel_alpm_lobf_enable(new_crtc_state);
intel_psr_post_plane_update(state, crtc);
}
@@ -1152,7 +1171,9 @@ static void intel_pre_plane_update(struct intel_atomic_state *state,
intel_atomic_get_new_crtc_state(state, crtc);
enum pipe pipe = crtc->pipe;
- intel_alpm_pre_plane_update(state, crtc);
+ if (intel_crtc_lobf_disabling(old_crtc_state, new_crtc_state))
+ intel_alpm_lobf_disable(new_crtc_state);
+
intel_psr_pre_plane_update(state, crtc);
if (intel_crtc_vrr_disabling(state, crtc)) {
--
2.45.2
^ permalink raw reply related [flat|nested] 18+ messages in thread* Re: [RESEND 4/5] drm/i915/alpm: Simplify and align LOBF checks in pre/post plane update
2026-02-04 5:02 ` [RESEND 4/5] drm/i915/alpm: Simplify and align LOBF checks in pre/post plane update Ankit Nautiyal
@ 2026-02-04 6:24 ` Hogander, Jouni
0 siblings, 0 replies; 18+ messages in thread
From: Hogander, Jouni @ 2026-02-04 6:24 UTC (permalink / raw)
To: intel-xe@lists.freedesktop.org, Nautiyal, Ankit K,
intel-gfx@lists.freedesktop.org
Cc: ville.syrjala@linux.intel.com, Grzelak, Michal, Manna, Animesh
On Wed, 2026-02-04 at 10:32 +0530, Ankit Nautiyal wrote:
> The pre_plane_update and post_plane_update hooks essentially
> disable/enable lobf feature. Use the existing
> _is_enabling/is_disabling
> logic for this in the pre_plane_update and post_plane_update paths.
>
> Also rename the helpers to intel_alpm_lobf_{en,dis}able().
>
> v2: Remove redeundant checks during enabling/disabling. (Jouni)
>
> Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
> Reviewed-by: Michał Grzelak <michal.grzelak@intel.com>
Reviewed-by: Jouni Högander <jouni.hogander@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_alpm.c | 48 ++++++------------
> --
> drivers/gpu/drm/i915/display/intel_alpm.h | 6 +--
> drivers/gpu/drm/i915/display/intel_display.c | 25 +++++++++-
> 3 files changed, 38 insertions(+), 41 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_alpm.c
> b/drivers/gpu/drm/i915/display/intel_alpm.c
> index 3aeab4bebce2..e0a4a59dc025 100644
> --- a/drivers/gpu/drm/i915/display/intel_alpm.c
> +++ b/drivers/gpu/drm/i915/display/intel_alpm.c
> @@ -452,25 +452,14 @@ void intel_alpm_port_configure(struct intel_dp
> *intel_dp,
> intel_de_write(display, PORT_ALPM_LFPS_CTL(port),
> lfps_ctl_val);
> }
>
> -void intel_alpm_pre_plane_update(struct intel_atomic_state *state,
> - struct intel_crtc *crtc)
> +void intel_alpm_lobf_disable(const struct intel_crtc_state
> *new_crtc_state)
> {
> - struct intel_display *display = to_intel_display(state);
> - const struct intel_crtc_state *crtc_state =
> - intel_atomic_get_new_crtc_state(state, crtc);
> - const struct intel_crtc_state *old_crtc_state =
> - intel_atomic_get_old_crtc_state(state, crtc);
> - enum transcoder cpu_transcoder = crtc_state->cpu_transcoder;
> + struct intel_display *display =
> to_intel_display(new_crtc_state);
> + enum transcoder cpu_transcoder = new_crtc_state-
> >cpu_transcoder;
> struct intel_encoder *encoder;
>
> - if (DISPLAY_VER(display) < 20)
> - return;
> -
> - if (crtc_state->has_lobf || crtc_state->has_lobf ==
> old_crtc_state->has_lobf)
> - return;
> -
> for_each_intel_encoder_mask(display->drm, encoder,
> - crtc_state->uapi.encoder_mask) {
> + new_crtc_state-
> >uapi.encoder_mask) {
> struct intel_dp *intel_dp;
>
> if (!intel_encoder_is_dp(encoder))
> @@ -481,12 +470,10 @@ void intel_alpm_pre_plane_update(struct
> intel_atomic_state *state,
> if (!intel_dp_is_edp(intel_dp))
> continue;
>
> - if (old_crtc_state->has_lobf) {
> - mutex_lock(&intel_dp->alpm.lock);
> - intel_de_write(display, ALPM_CTL(display,
> cpu_transcoder), 0);
> - drm_dbg_kms(display->drm, "Link off between
> frames (LOBF) disabled\n");
> - mutex_unlock(&intel_dp->alpm.lock);
> - }
> + mutex_lock(&intel_dp->alpm.lock);
> + intel_de_write(display, ALPM_CTL(display,
> cpu_transcoder), 0);
> + drm_dbg_kms(display->drm, "Link off between frames
> (LOBF) disabled\n");
> + mutex_unlock(&intel_dp->alpm.lock);
> }
> }
>
> @@ -507,22 +494,13 @@ void intel_alpm_enable_sink(struct intel_dp
> *intel_dp,
> drm_dp_dpcd_writeb(&intel_dp->aux, DP_RECEIVER_ALPM_CONFIG,
> val);
> }
>
> -void intel_alpm_post_plane_update(struct intel_atomic_state *state,
> - struct intel_crtc *crtc)
> +void intel_alpm_lobf_enable(const struct intel_crtc_state
> *new_crtc_state)
> {
> - struct intel_display *display = to_intel_display(state);
> - const struct intel_crtc_state *crtc_state =
> - intel_atomic_get_new_crtc_state(state, crtc);
> - const struct intel_crtc_state *old_crtc_state =
> - intel_atomic_get_old_crtc_state(state, crtc);
> + struct intel_display *display =
> to_intel_display(new_crtc_state);
> struct intel_encoder *encoder;
>
> - if (crtc_state->has_psr || !crtc_state->has_lobf ||
> - crtc_state->has_lobf == old_crtc_state->has_lobf)
> - return;
> -
> for_each_intel_encoder_mask(display->drm, encoder,
> - crtc_state->uapi.encoder_mask) {
> + new_crtc_state-
> >uapi.encoder_mask) {
> struct intel_dp *intel_dp;
>
> if (!intel_encoder_is_dp(encoder))
> @@ -531,8 +509,8 @@ void intel_alpm_post_plane_update(struct
> intel_atomic_state *state,
> intel_dp = enc_to_intel_dp(encoder);
>
> if (intel_dp_is_edp(intel_dp)) {
> - intel_alpm_enable_sink(intel_dp,
> crtc_state);
> - intel_alpm_configure(intel_dp, crtc_state);
> + intel_alpm_enable_sink(intel_dp,
> new_crtc_state);
> + intel_alpm_configure(intel_dp,
> new_crtc_state);
> }
> }
> }
> diff --git a/drivers/gpu/drm/i915/display/intel_alpm.h
> b/drivers/gpu/drm/i915/display/intel_alpm.h
> index b698979d1f13..1cf70668ab1b 100644
> --- a/drivers/gpu/drm/i915/display/intel_alpm.h
> +++ b/drivers/gpu/drm/i915/display/intel_alpm.h
> @@ -25,12 +25,10 @@ void intel_alpm_configure(struct intel_dp
> *intel_dp,
> const struct intel_crtc_state
> *crtc_state);
> void intel_alpm_enable_sink(struct intel_dp *intel_dp,
> const struct intel_crtc_state
> *crtc_state);
> -void intel_alpm_pre_plane_update(struct intel_atomic_state *state,
> - struct intel_crtc *crtc);
> +void intel_alpm_lobf_disable(const struct intel_crtc_state
> *new_crtc_state);
> void intel_alpm_port_configure(struct intel_dp *intel_dp,
> const struct intel_crtc_state
> *crtc_state);
> -void intel_alpm_post_plane_update(struct intel_atomic_state *state,
> - struct intel_crtc *crtc);
> +void intel_alpm_lobf_enable(const struct intel_crtc_state
> *new_crtc_state);
> void intel_alpm_lobf_debugfs_add(struct intel_connector *connector);
> bool intel_alpm_aux_wake_supported(struct intel_dp *intel_dp);
> bool intel_alpm_aux_less_wake_supported(struct intel_dp *intel_dp);
> diff --git a/drivers/gpu/drm/i915/display/intel_display.c
> b/drivers/gpu/drm/i915/display/intel_display.c
> index 564d11925af3..739a0a74e008 100644
> --- a/drivers/gpu/drm/i915/display/intel_display.c
> +++ b/drivers/gpu/drm/i915/display/intel_display.c
> @@ -1008,6 +1008,24 @@ static bool intel_casf_disabling(const struct
> intel_crtc_state *old_crtc_state,
> return is_disabling(hw.casf_params.casf_enable,
> old_crtc_state, new_crtc_state);
> }
>
> +static bool intel_crtc_lobf_enabling(const struct intel_crtc_state
> *old_crtc_state,
> + const struct intel_crtc_state
> *new_crtc_state)
> +{
> + if (!new_crtc_state->hw.active)
> + return false;
> +
> + return is_enabling(has_lobf, old_crtc_state,
> new_crtc_state);
> +}
> +
> +static bool intel_crtc_lobf_disabling(const struct intel_crtc_state
> *old_crtc_state,
> + const struct intel_crtc_state
> *new_crtc_state)
> +{
> + if (!old_crtc_state->hw.active)
> + return false;
> +
> + return is_disabling(has_lobf, old_crtc_state,
> new_crtc_state);
> +}
> +
> #undef is_disabling
> #undef is_enabling
>
> @@ -1055,7 +1073,8 @@ static void intel_post_plane_update(struct
> intel_atomic_state *state,
> adl_scaler_ecc_unmask(new_crtc_state);
> }
>
> - intel_alpm_post_plane_update(state, crtc);
> + if (intel_crtc_lobf_enabling(old_crtc_state,
> new_crtc_state))
> + intel_alpm_lobf_enable(new_crtc_state);
>
> intel_psr_post_plane_update(state, crtc);
> }
> @@ -1152,7 +1171,9 @@ static void intel_pre_plane_update(struct
> intel_atomic_state *state,
> intel_atomic_get_new_crtc_state(state, crtc);
> enum pipe pipe = crtc->pipe;
>
> - intel_alpm_pre_plane_update(state, crtc);
> + if (intel_crtc_lobf_disabling(old_crtc_state,
> new_crtc_state))
> + intel_alpm_lobf_disable(new_crtc_state);
> +
> intel_psr_pre_plane_update(state, crtc);
>
> if (intel_crtc_vrr_disabling(state, crtc)) {
^ permalink raw reply [flat|nested] 18+ messages in thread
* [RESEND 5/5] drm/i915/alpm: Disable LOBF around transitioning for LRR/seamless MN
2026-02-04 5:02 [RESEND 0/5] LOBF fixes Ankit Nautiyal
` (3 preceding siblings ...)
2026-02-04 5:02 ` [RESEND 4/5] drm/i915/alpm: Simplify and align LOBF checks in pre/post plane update Ankit Nautiyal
@ 2026-02-04 5:02 ` Ankit Nautiyal
2026-02-04 5:26 ` ✓ CI.KUnit: success for LOBF fixes (rev5) Patchwork
` (9 subsequent siblings)
14 siblings, 0 replies; 18+ messages in thread
From: Ankit Nautiyal @ 2026-02-04 5:02 UTC (permalink / raw)
To: intel-gfx, intel-xe
Cc: jouni.hogander, ville.syrjala, animesh.manna, michal.grzelak,
Ankit Nautiyal
When enabling LRR/seamless MN disable LOBF first and re-enable
afterwards.
- pre_plane_update: if LOBF was enabled, disable LOBF before the
update_lrr/update_m_n transition.
- post_plane_update: Re-enable LOBF after the transition.
Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Reviewed-by: Michał Grzelak <michal.grzelak@intel.com>
---
drivers/gpu/drm/i915/display/intel_display.c | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
index 739a0a74e008..295f14416be7 100644
--- a/drivers/gpu/drm/i915/display/intel_display.c
+++ b/drivers/gpu/drm/i915/display/intel_display.c
@@ -1014,7 +1014,9 @@ static bool intel_crtc_lobf_enabling(const struct intel_crtc_state *old_crtc_sta
if (!new_crtc_state->hw.active)
return false;
- return is_enabling(has_lobf, old_crtc_state, new_crtc_state);
+ return is_enabling(has_lobf, old_crtc_state, new_crtc_state) ||
+ (new_crtc_state->has_lobf &&
+ (new_crtc_state->update_lrr || new_crtc_state->update_m_n));
}
static bool intel_crtc_lobf_disabling(const struct intel_crtc_state *old_crtc_state,
@@ -1023,7 +1025,9 @@ static bool intel_crtc_lobf_disabling(const struct intel_crtc_state *old_crtc_st
if (!old_crtc_state->hw.active)
return false;
- return is_disabling(has_lobf, old_crtc_state, new_crtc_state);
+ return is_disabling(has_lobf, old_crtc_state, new_crtc_state) ||
+ (old_crtc_state->has_lobf &&
+ (new_crtc_state->update_lrr || new_crtc_state->update_m_n));
}
#undef is_disabling
--
2.45.2
^ permalink raw reply related [flat|nested] 18+ messages in thread* ✓ CI.KUnit: success for LOBF fixes (rev5)
2026-02-04 5:02 [RESEND 0/5] LOBF fixes Ankit Nautiyal
` (4 preceding siblings ...)
2026-02-04 5:02 ` [RESEND 5/5] drm/i915/alpm: Disable LOBF around transitioning for LRR/seamless MN Ankit Nautiyal
@ 2026-02-04 5:26 ` Patchwork
2026-02-04 5:42 ` ✗ CI.checksparse: warning " Patchwork
` (8 subsequent siblings)
14 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2026-02-04 5:26 UTC (permalink / raw)
To: Ankit Nautiyal; +Cc: intel-xe
== Series Details ==
Series: LOBF fixes (rev5)
URL : https://patchwork.freedesktop.org/series/157554/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[05:24:47] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[05:24: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
[05:25:24] Starting KUnit Kernel (1/1)...
[05:25:24] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[05:25:24] ================== guc_buf (11 subtests) ===================
[05:25:24] [PASSED] test_smallest
[05:25:24] [PASSED] test_largest
[05:25:24] [PASSED] test_granular
[05:25:24] [PASSED] test_unique
[05:25:24] [PASSED] test_overlap
[05:25:24] [PASSED] test_reusable
[05:25:24] [PASSED] test_too_big
[05:25:24] [PASSED] test_flush
[05:25:24] [PASSED] test_lookup
[05:25:24] [PASSED] test_data
[05:25:24] [PASSED] test_class
[05:25:24] ===================== [PASSED] guc_buf =====================
[05:25:24] =================== guc_dbm (7 subtests) ===================
[05:25:24] [PASSED] test_empty
[05:25:24] [PASSED] test_default
[05:25:24] ======================== test_size ========================
[05:25:24] [PASSED] 4
[05:25:24] [PASSED] 8
[05:25:24] [PASSED] 32
[05:25:24] [PASSED] 256
[05:25:24] ==================== [PASSED] test_size ====================
[05:25:24] ======================= test_reuse ========================
[05:25:24] [PASSED] 4
[05:25:24] [PASSED] 8
[05:25:24] [PASSED] 32
[05:25:24] [PASSED] 256
[05:25:24] =================== [PASSED] test_reuse ====================
[05:25:24] =================== test_range_overlap ====================
[05:25:24] [PASSED] 4
[05:25:24] [PASSED] 8
[05:25:24] [PASSED] 32
[05:25:24] [PASSED] 256
[05:25:24] =============== [PASSED] test_range_overlap ================
[05:25:24] =================== test_range_compact ====================
[05:25:24] [PASSED] 4
[05:25:24] [PASSED] 8
[05:25:24] [PASSED] 32
[05:25:24] [PASSED] 256
[05:25:24] =============== [PASSED] test_range_compact ================
[05:25:24] ==================== test_range_spare =====================
[05:25:24] [PASSED] 4
[05:25:24] [PASSED] 8
[05:25:24] [PASSED] 32
[05:25:24] [PASSED] 256
[05:25:24] ================ [PASSED] test_range_spare =================
[05:25:24] ===================== [PASSED] guc_dbm =====================
[05:25:24] =================== guc_idm (6 subtests) ===================
[05:25:24] [PASSED] bad_init
[05:25:24] [PASSED] no_init
[05:25:24] [PASSED] init_fini
[05:25:24] [PASSED] check_used
[05:25:24] [PASSED] check_quota
[05:25:24] [PASSED] check_all
[05:25:24] ===================== [PASSED] guc_idm =====================
[05:25:24] ================== no_relay (3 subtests) ===================
[05:25:24] [PASSED] xe_drops_guc2pf_if_not_ready
[05:25:24] [PASSED] xe_drops_guc2vf_if_not_ready
[05:25:24] [PASSED] xe_rejects_send_if_not_ready
[05:25:24] ==================== [PASSED] no_relay =====================
[05:25:24] ================== pf_relay (14 subtests) ==================
[05:25:24] [PASSED] pf_rejects_guc2pf_too_short
[05:25:24] [PASSED] pf_rejects_guc2pf_too_long
[05:25:24] [PASSED] pf_rejects_guc2pf_no_payload
[05:25:24] [PASSED] pf_fails_no_payload
[05:25:24] [PASSED] pf_fails_bad_origin
[05:25:24] [PASSED] pf_fails_bad_type
[05:25:24] [PASSED] pf_txn_reports_error
[05:25:24] [PASSED] pf_txn_sends_pf2guc
[05:25:24] [PASSED] pf_sends_pf2guc
[05:25:24] [SKIPPED] pf_loopback_nop
[05:25:24] [SKIPPED] pf_loopback_echo
[05:25:24] [SKIPPED] pf_loopback_fail
[05:25:24] [SKIPPED] pf_loopback_busy
[05:25:24] [SKIPPED] pf_loopback_retry
[05:25:24] ==================== [PASSED] pf_relay =====================
[05:25:24] ================== vf_relay (3 subtests) ===================
[05:25:24] [PASSED] vf_rejects_guc2vf_too_short
[05:25:24] [PASSED] vf_rejects_guc2vf_too_long
[05:25:24] [PASSED] vf_rejects_guc2vf_no_payload
[05:25:24] ==================== [PASSED] vf_relay =====================
[05:25:24] ================ pf_gt_config (6 subtests) =================
[05:25:24] [PASSED] fair_contexts_1vf
[05:25:24] [PASSED] fair_doorbells_1vf
[05:25:24] [PASSED] fair_ggtt_1vf
[05:25:24] ====================== fair_contexts ======================
[05:25:24] [PASSED] 1 VF
[05:25:24] [PASSED] 2 VFs
[05:25:24] [PASSED] 3 VFs
[05:25:24] [PASSED] 4 VFs
[05:25:24] [PASSED] 5 VFs
[05:25:24] [PASSED] 6 VFs
[05:25:24] [PASSED] 7 VFs
[05:25:24] [PASSED] 8 VFs
[05:25:24] [PASSED] 9 VFs
[05:25:24] [PASSED] 10 VFs
[05:25:24] [PASSED] 11 VFs
[05:25:24] [PASSED] 12 VFs
[05:25:24] [PASSED] 13 VFs
[05:25:24] [PASSED] 14 VFs
[05:25:24] [PASSED] 15 VFs
[05:25:24] [PASSED] 16 VFs
[05:25:24] [PASSED] 17 VFs
[05:25:24] [PASSED] 18 VFs
[05:25:24] [PASSED] 19 VFs
[05:25:24] [PASSED] 20 VFs
[05:25:24] [PASSED] 21 VFs
[05:25:24] [PASSED] 22 VFs
[05:25:24] [PASSED] 23 VFs
[05:25:24] [PASSED] 24 VFs
[05:25:24] [PASSED] 25 VFs
[05:25:24] [PASSED] 26 VFs
[05:25:24] [PASSED] 27 VFs
[05:25:24] [PASSED] 28 VFs
[05:25:24] [PASSED] 29 VFs
[05:25:24] [PASSED] 30 VFs
[05:25:24] [PASSED] 31 VFs
[05:25:24] [PASSED] 32 VFs
[05:25:24] [PASSED] 33 VFs
[05:25:24] [PASSED] 34 VFs
[05:25:24] [PASSED] 35 VFs
[05:25:24] [PASSED] 36 VFs
[05:25:24] [PASSED] 37 VFs
[05:25:24] [PASSED] 38 VFs
[05:25:24] [PASSED] 39 VFs
[05:25:24] [PASSED] 40 VFs
[05:25:24] [PASSED] 41 VFs
[05:25:24] [PASSED] 42 VFs
[05:25:24] [PASSED] 43 VFs
[05:25:24] [PASSED] 44 VFs
[05:25:24] [PASSED] 45 VFs
[05:25:24] [PASSED] 46 VFs
[05:25:24] [PASSED] 47 VFs
[05:25:24] [PASSED] 48 VFs
[05:25:24] [PASSED] 49 VFs
[05:25:24] [PASSED] 50 VFs
[05:25:24] [PASSED] 51 VFs
[05:25:24] [PASSED] 52 VFs
[05:25:24] [PASSED] 53 VFs
[05:25:24] [PASSED] 54 VFs
[05:25:24] [PASSED] 55 VFs
[05:25:24] [PASSED] 56 VFs
[05:25:24] [PASSED] 57 VFs
[05:25:24] [PASSED] 58 VFs
[05:25:24] [PASSED] 59 VFs
[05:25:24] [PASSED] 60 VFs
[05:25:24] [PASSED] 61 VFs
[05:25:24] [PASSED] 62 VFs
[05:25:24] [PASSED] 63 VFs
[05:25:24] ================== [PASSED] fair_contexts ==================
[05:25:24] ===================== fair_doorbells ======================
[05:25:24] [PASSED] 1 VF
[05:25:24] [PASSED] 2 VFs
[05:25:24] [PASSED] 3 VFs
[05:25:24] [PASSED] 4 VFs
[05:25:24] [PASSED] 5 VFs
[05:25:24] [PASSED] 6 VFs
[05:25:24] [PASSED] 7 VFs
[05:25:24] [PASSED] 8 VFs
[05:25:24] [PASSED] 9 VFs
[05:25:24] [PASSED] 10 VFs
[05:25:24] [PASSED] 11 VFs
[05:25:24] [PASSED] 12 VFs
[05:25:24] [PASSED] 13 VFs
[05:25:24] [PASSED] 14 VFs
[05:25:24] [PASSED] 15 VFs
[05:25:24] [PASSED] 16 VFs
[05:25:24] [PASSED] 17 VFs
[05:25:24] [PASSED] 18 VFs
[05:25:24] [PASSED] 19 VFs
[05:25:24] [PASSED] 20 VFs
[05:25:24] [PASSED] 21 VFs
[05:25:24] [PASSED] 22 VFs
[05:25:24] [PASSED] 23 VFs
[05:25:24] [PASSED] 24 VFs
[05:25:24] [PASSED] 25 VFs
[05:25:24] [PASSED] 26 VFs
[05:25:24] [PASSED] 27 VFs
[05:25:24] [PASSED] 28 VFs
[05:25:24] [PASSED] 29 VFs
[05:25:24] [PASSED] 30 VFs
[05:25:24] [PASSED] 31 VFs
[05:25:24] [PASSED] 32 VFs
[05:25:24] [PASSED] 33 VFs
[05:25:24] [PASSED] 34 VFs
[05:25:24] [PASSED] 35 VFs
[05:25:24] [PASSED] 36 VFs
[05:25:24] [PASSED] 37 VFs
[05:25:24] [PASSED] 38 VFs
[05:25:24] [PASSED] 39 VFs
[05:25:24] [PASSED] 40 VFs
[05:25:24] [PASSED] 41 VFs
[05:25:24] [PASSED] 42 VFs
[05:25:24] [PASSED] 43 VFs
[05:25:24] [PASSED] 44 VFs
[05:25:24] [PASSED] 45 VFs
[05:25:24] [PASSED] 46 VFs
[05:25:24] [PASSED] 47 VFs
[05:25:24] [PASSED] 48 VFs
[05:25:24] [PASSED] 49 VFs
[05:25:24] [PASSED] 50 VFs
[05:25:24] [PASSED] 51 VFs
[05:25:24] [PASSED] 52 VFs
[05:25:24] [PASSED] 53 VFs
[05:25:24] [PASSED] 54 VFs
[05:25:24] [PASSED] 55 VFs
[05:25:24] [PASSED] 56 VFs
[05:25:24] [PASSED] 57 VFs
[05:25:24] [PASSED] 58 VFs
[05:25:24] [PASSED] 59 VFs
[05:25:24] [PASSED] 60 VFs
[05:25:24] [PASSED] 61 VFs
[05:25:24] [PASSED] 62 VFs
[05:25:24] [PASSED] 63 VFs
[05:25:24] ================= [PASSED] fair_doorbells ==================
[05:25:24] ======================== fair_ggtt ========================
[05:25:24] [PASSED] 1 VF
[05:25:24] [PASSED] 2 VFs
[05:25:24] [PASSED] 3 VFs
[05:25:24] [PASSED] 4 VFs
[05:25:24] [PASSED] 5 VFs
[05:25:24] [PASSED] 6 VFs
[05:25:24] [PASSED] 7 VFs
[05:25:24] [PASSED] 8 VFs
[05:25:24] [PASSED] 9 VFs
[05:25:24] [PASSED] 10 VFs
[05:25:24] [PASSED] 11 VFs
[05:25:24] [PASSED] 12 VFs
[05:25:24] [PASSED] 13 VFs
[05:25:24] [PASSED] 14 VFs
[05:25:24] [PASSED] 15 VFs
[05:25:24] [PASSED] 16 VFs
[05:25:24] [PASSED] 17 VFs
[05:25:24] [PASSED] 18 VFs
[05:25:24] [PASSED] 19 VFs
[05:25:24] [PASSED] 20 VFs
[05:25:24] [PASSED] 21 VFs
[05:25:24] [PASSED] 22 VFs
[05:25:24] [PASSED] 23 VFs
[05:25:24] [PASSED] 24 VFs
[05:25:24] [PASSED] 25 VFs
[05:25:24] [PASSED] 26 VFs
[05:25:24] [PASSED] 27 VFs
[05:25:24] [PASSED] 28 VFs
[05:25:24] [PASSED] 29 VFs
[05:25:24] [PASSED] 30 VFs
[05:25:24] [PASSED] 31 VFs
[05:25:24] [PASSED] 32 VFs
[05:25:24] [PASSED] 33 VFs
[05:25:24] [PASSED] 34 VFs
[05:25:24] [PASSED] 35 VFs
[05:25:24] [PASSED] 36 VFs
[05:25:24] [PASSED] 37 VFs
[05:25:24] [PASSED] 38 VFs
[05:25:24] [PASSED] 39 VFs
[05:25:24] [PASSED] 40 VFs
[05:25:24] [PASSED] 41 VFs
[05:25:24] [PASSED] 42 VFs
[05:25:24] [PASSED] 43 VFs
[05:25:24] [PASSED] 44 VFs
[05:25:24] [PASSED] 45 VFs
[05:25:24] [PASSED] 46 VFs
[05:25:24] [PASSED] 47 VFs
[05:25:24] [PASSED] 48 VFs
[05:25:24] [PASSED] 49 VFs
[05:25:24] [PASSED] 50 VFs
[05:25:24] [PASSED] 51 VFs
[05:25:24] [PASSED] 52 VFs
[05:25:24] [PASSED] 53 VFs
[05:25:24] [PASSED] 54 VFs
[05:25:24] [PASSED] 55 VFs
[05:25:24] [PASSED] 56 VFs
[05:25:24] [PASSED] 57 VFs
[05:25:24] [PASSED] 58 VFs
[05:25:24] [PASSED] 59 VFs
[05:25:24] [PASSED] 60 VFs
[05:25:24] [PASSED] 61 VFs
[05:25:24] [PASSED] 62 VFs
[05:25:24] [PASSED] 63 VFs
[05:25:24] ==================== [PASSED] fair_ggtt ====================
[05:25:24] ================== [PASSED] pf_gt_config ===================
[05:25:24] ===================== lmtt (1 subtest) =====================
[05:25:24] ======================== test_ops =========================
[05:25:24] [PASSED] 2-level
[05:25:24] [PASSED] multi-level
[05:25:24] ==================== [PASSED] test_ops =====================
[05:25:24] ====================== [PASSED] lmtt =======================
[05:25:24] ================= pf_service (11 subtests) =================
[05:25:24] [PASSED] pf_negotiate_any
[05:25:24] [PASSED] pf_negotiate_base_match
[05:25:24] [PASSED] pf_negotiate_base_newer
[05:25:24] [PASSED] pf_negotiate_base_next
[05:25:24] [SKIPPED] pf_negotiate_base_older
[05:25:24] [PASSED] pf_negotiate_base_prev
[05:25:24] [PASSED] pf_negotiate_latest_match
[05:25:24] [PASSED] pf_negotiate_latest_newer
[05:25:24] [PASSED] pf_negotiate_latest_next
[05:25:24] [SKIPPED] pf_negotiate_latest_older
[05:25:24] [SKIPPED] pf_negotiate_latest_prev
[05:25:24] =================== [PASSED] pf_service ====================
[05:25:24] ================= xe_guc_g2g (2 subtests) ==================
[05:25:24] ============== xe_live_guc_g2g_kunit_default ==============
[05:25:24] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[05:25:24] ============== xe_live_guc_g2g_kunit_allmem ===============
[05:25:24] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[05:25:24] =================== [SKIPPED] xe_guc_g2g ===================
[05:25:24] =================== xe_mocs (2 subtests) ===================
[05:25:24] ================ xe_live_mocs_kernel_kunit ================
[05:25:24] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[05:25:24] ================ xe_live_mocs_reset_kunit =================
[05:25:24] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[05:25:24] ==================== [SKIPPED] xe_mocs =====================
[05:25:24] ================= xe_migrate (2 subtests) ==================
[05:25:24] ================= xe_migrate_sanity_kunit =================
[05:25:24] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[05:25:24] ================== xe_validate_ccs_kunit ==================
[05:25:24] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[05:25:24] =================== [SKIPPED] xe_migrate ===================
[05:25:24] ================== xe_dma_buf (1 subtest) ==================
[05:25:24] ==================== xe_dma_buf_kunit =====================
[05:25:24] ================ [SKIPPED] xe_dma_buf_kunit ================
[05:25:24] =================== [SKIPPED] xe_dma_buf ===================
[05:25:24] ================= xe_bo_shrink (1 subtest) =================
[05:25:24] =================== xe_bo_shrink_kunit ====================
[05:25:24] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[05:25:24] ================== [SKIPPED] xe_bo_shrink ==================
[05:25:24] ==================== xe_bo (2 subtests) ====================
[05:25:24] ================== xe_ccs_migrate_kunit ===================
[05:25:24] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[05:25:24] ==================== xe_bo_evict_kunit ====================
[05:25:24] =============== [SKIPPED] xe_bo_evict_kunit ================
[05:25:24] ===================== [SKIPPED] xe_bo ======================
[05:25:24] ==================== args (13 subtests) ====================
[05:25:24] [PASSED] count_args_test
[05:25:24] [PASSED] call_args_example
[05:25:24] [PASSED] call_args_test
[05:25:24] [PASSED] drop_first_arg_example
[05:25:24] [PASSED] drop_first_arg_test
[05:25:24] [PASSED] first_arg_example
[05:25:24] [PASSED] first_arg_test
[05:25:24] [PASSED] last_arg_example
[05:25:24] [PASSED] last_arg_test
[05:25:24] [PASSED] pick_arg_example
[05:25:24] [PASSED] if_args_example
[05:25:24] [PASSED] if_args_test
[05:25:24] [PASSED] sep_comma_example
[05:25:24] ====================== [PASSED] args =======================
[05:25:24] =================== xe_pci (3 subtests) ====================
[05:25:24] ==================== check_graphics_ip ====================
[05:25:24] [PASSED] 12.00 Xe_LP
[05:25:24] [PASSED] 12.10 Xe_LP+
[05:25:24] [PASSED] 12.55 Xe_HPG
[05:25:24] [PASSED] 12.60 Xe_HPC
[05:25:24] [PASSED] 12.70 Xe_LPG
[05:25:24] [PASSED] 12.71 Xe_LPG
[05:25:24] [PASSED] 12.74 Xe_LPG+
[05:25:24] [PASSED] 20.01 Xe2_HPG
[05:25:24] [PASSED] 20.02 Xe2_HPG
[05:25:24] [PASSED] 20.04 Xe2_LPG
[05:25:24] [PASSED] 30.00 Xe3_LPG
[05:25:24] [PASSED] 30.01 Xe3_LPG
[05:25:24] [PASSED] 30.03 Xe3_LPG
[05:25:24] [PASSED] 30.04 Xe3_LPG
[05:25:24] [PASSED] 30.05 Xe3_LPG
[05:25:24] [PASSED] 35.11 Xe3p_XPC
[05:25:24] ================ [PASSED] check_graphics_ip ================
[05:25:24] ===================== check_media_ip ======================
[05:25:24] [PASSED] 12.00 Xe_M
[05:25:24] [PASSED] 12.55 Xe_HPM
[05:25:24] [PASSED] 13.00 Xe_LPM+
[05:25:24] [PASSED] 13.01 Xe2_HPM
[05:25:24] [PASSED] 20.00 Xe2_LPM
[05:25:24] [PASSED] 30.00 Xe3_LPM
[05:25:24] [PASSED] 30.02 Xe3_LPM
[05:25:24] [PASSED] 35.00 Xe3p_LPM
[05:25:24] [PASSED] 35.03 Xe3p_HPM
[05:25:24] ================= [PASSED] check_media_ip ==================
[05:25:24] =================== check_platform_desc ===================
[05:25:24] [PASSED] 0x9A60 (TIGERLAKE)
[05:25:24] [PASSED] 0x9A68 (TIGERLAKE)
[05:25:24] [PASSED] 0x9A70 (TIGERLAKE)
[05:25:24] [PASSED] 0x9A40 (TIGERLAKE)
[05:25:24] [PASSED] 0x9A49 (TIGERLAKE)
[05:25:24] [PASSED] 0x9A59 (TIGERLAKE)
[05:25:24] [PASSED] 0x9A78 (TIGERLAKE)
[05:25:24] [PASSED] 0x9AC0 (TIGERLAKE)
[05:25:24] [PASSED] 0x9AC9 (TIGERLAKE)
[05:25:24] [PASSED] 0x9AD9 (TIGERLAKE)
[05:25:24] [PASSED] 0x9AF8 (TIGERLAKE)
[05:25:24] [PASSED] 0x4C80 (ROCKETLAKE)
[05:25:24] [PASSED] 0x4C8A (ROCKETLAKE)
[05:25:24] [PASSED] 0x4C8B (ROCKETLAKE)
[05:25:24] [PASSED] 0x4C8C (ROCKETLAKE)
[05:25:24] [PASSED] 0x4C90 (ROCKETLAKE)
[05:25:24] [PASSED] 0x4C9A (ROCKETLAKE)
[05:25:24] [PASSED] 0x4680 (ALDERLAKE_S)
[05:25:24] [PASSED] 0x4682 (ALDERLAKE_S)
[05:25:24] [PASSED] 0x4688 (ALDERLAKE_S)
[05:25:24] [PASSED] 0x468A (ALDERLAKE_S)
[05:25:24] [PASSED] 0x468B (ALDERLAKE_S)
[05:25:24] [PASSED] 0x4690 (ALDERLAKE_S)
[05:25:24] [PASSED] 0x4692 (ALDERLAKE_S)
[05:25:24] [PASSED] 0x4693 (ALDERLAKE_S)
[05:25:24] [PASSED] 0x46A0 (ALDERLAKE_P)
[05:25:24] [PASSED] 0x46A1 (ALDERLAKE_P)
[05:25:24] [PASSED] 0x46A2 (ALDERLAKE_P)
[05:25:24] [PASSED] 0x46A3 (ALDERLAKE_P)
[05:25:24] [PASSED] 0x46A6 (ALDERLAKE_P)
[05:25:24] [PASSED] 0x46A8 (ALDERLAKE_P)
[05:25:24] [PASSED] 0x46AA (ALDERLAKE_P)
[05:25:24] [PASSED] 0x462A (ALDERLAKE_P)
[05:25:24] [PASSED] 0x4626 (ALDERLAKE_P)
[05:25:24] [PASSED] 0x4628 (ALDERLAKE_P)
stty: 'standard input': Inappropriate ioctl for device
[05:25:24] [PASSED] 0x46B0 (ALDERLAKE_P)
[05:25:24] [PASSED] 0x46B1 (ALDERLAKE_P)
[05:25:24] [PASSED] 0x46B2 (ALDERLAKE_P)
[05:25:24] [PASSED] 0x46B3 (ALDERLAKE_P)
[05:25:24] [PASSED] 0x46C0 (ALDERLAKE_P)
[05:25:24] [PASSED] 0x46C1 (ALDERLAKE_P)
[05:25:24] [PASSED] 0x46C2 (ALDERLAKE_P)
[05:25:24] [PASSED] 0x46C3 (ALDERLAKE_P)
[05:25:24] [PASSED] 0x46D0 (ALDERLAKE_N)
[05:25:24] [PASSED] 0x46D1 (ALDERLAKE_N)
[05:25:24] [PASSED] 0x46D2 (ALDERLAKE_N)
[05:25:24] [PASSED] 0x46D3 (ALDERLAKE_N)
[05:25:24] [PASSED] 0x46D4 (ALDERLAKE_N)
[05:25:24] [PASSED] 0xA721 (ALDERLAKE_P)
[05:25:24] [PASSED] 0xA7A1 (ALDERLAKE_P)
[05:25:24] [PASSED] 0xA7A9 (ALDERLAKE_P)
[05:25:24] [PASSED] 0xA7AC (ALDERLAKE_P)
[05:25:24] [PASSED] 0xA7AD (ALDERLAKE_P)
[05:25:24] [PASSED] 0xA720 (ALDERLAKE_P)
[05:25:24] [PASSED] 0xA7A0 (ALDERLAKE_P)
[05:25:24] [PASSED] 0xA7A8 (ALDERLAKE_P)
[05:25:24] [PASSED] 0xA7AA (ALDERLAKE_P)
[05:25:24] [PASSED] 0xA7AB (ALDERLAKE_P)
[05:25:24] [PASSED] 0xA780 (ALDERLAKE_S)
[05:25:24] [PASSED] 0xA781 (ALDERLAKE_S)
[05:25:24] [PASSED] 0xA782 (ALDERLAKE_S)
[05:25:24] [PASSED] 0xA783 (ALDERLAKE_S)
[05:25:24] [PASSED] 0xA788 (ALDERLAKE_S)
[05:25:24] [PASSED] 0xA789 (ALDERLAKE_S)
[05:25:24] [PASSED] 0xA78A (ALDERLAKE_S)
[05:25:24] [PASSED] 0xA78B (ALDERLAKE_S)
[05:25:24] [PASSED] 0x4905 (DG1)
[05:25:24] [PASSED] 0x4906 (DG1)
[05:25:24] [PASSED] 0x4907 (DG1)
[05:25:24] [PASSED] 0x4908 (DG1)
[05:25:24] [PASSED] 0x4909 (DG1)
[05:25:24] [PASSED] 0x56C0 (DG2)
[05:25:24] [PASSED] 0x56C2 (DG2)
[05:25:24] [PASSED] 0x56C1 (DG2)
[05:25:24] [PASSED] 0x7D51 (METEORLAKE)
[05:25:24] [PASSED] 0x7DD1 (METEORLAKE)
[05:25:24] [PASSED] 0x7D41 (METEORLAKE)
[05:25:24] [PASSED] 0x7D67 (METEORLAKE)
[05:25:24] [PASSED] 0xB640 (METEORLAKE)
[05:25:24] [PASSED] 0x56A0 (DG2)
[05:25:24] [PASSED] 0x56A1 (DG2)
[05:25:24] [PASSED] 0x56A2 (DG2)
[05:25:24] [PASSED] 0x56BE (DG2)
[05:25:24] [PASSED] 0x56BF (DG2)
[05:25:24] [PASSED] 0x5690 (DG2)
[05:25:24] [PASSED] 0x5691 (DG2)
[05:25:24] [PASSED] 0x5692 (DG2)
[05:25:24] [PASSED] 0x56A5 (DG2)
[05:25:24] [PASSED] 0x56A6 (DG2)
[05:25:24] [PASSED] 0x56B0 (DG2)
[05:25:24] [PASSED] 0x56B1 (DG2)
[05:25:24] [PASSED] 0x56BA (DG2)
[05:25:24] [PASSED] 0x56BB (DG2)
[05:25:24] [PASSED] 0x56BC (DG2)
[05:25:24] [PASSED] 0x56BD (DG2)
[05:25:24] [PASSED] 0x5693 (DG2)
[05:25:24] [PASSED] 0x5694 (DG2)
[05:25:24] [PASSED] 0x5695 (DG2)
[05:25:24] [PASSED] 0x56A3 (DG2)
[05:25:24] [PASSED] 0x56A4 (DG2)
[05:25:24] [PASSED] 0x56B2 (DG2)
[05:25:24] [PASSED] 0x56B3 (DG2)
[05:25:24] [PASSED] 0x5696 (DG2)
[05:25:24] [PASSED] 0x5697 (DG2)
[05:25:24] [PASSED] 0xB69 (PVC)
[05:25:24] [PASSED] 0xB6E (PVC)
[05:25:24] [PASSED] 0xBD4 (PVC)
[05:25:24] [PASSED] 0xBD5 (PVC)
[05:25:24] [PASSED] 0xBD6 (PVC)
[05:25:24] [PASSED] 0xBD7 (PVC)
[05:25:24] [PASSED] 0xBD8 (PVC)
[05:25:24] [PASSED] 0xBD9 (PVC)
[05:25:24] [PASSED] 0xBDA (PVC)
[05:25:24] [PASSED] 0xBDB (PVC)
[05:25:24] [PASSED] 0xBE0 (PVC)
[05:25:24] [PASSED] 0xBE1 (PVC)
[05:25:24] [PASSED] 0xBE5 (PVC)
[05:25:24] [PASSED] 0x7D40 (METEORLAKE)
[05:25:24] [PASSED] 0x7D45 (METEORLAKE)
[05:25:24] [PASSED] 0x7D55 (METEORLAKE)
[05:25:24] [PASSED] 0x7D60 (METEORLAKE)
[05:25:24] [PASSED] 0x7DD5 (METEORLAKE)
[05:25:24] [PASSED] 0x6420 (LUNARLAKE)
[05:25:24] [PASSED] 0x64A0 (LUNARLAKE)
[05:25:24] [PASSED] 0x64B0 (LUNARLAKE)
[05:25:24] [PASSED] 0xE202 (BATTLEMAGE)
[05:25:24] [PASSED] 0xE209 (BATTLEMAGE)
[05:25:24] [PASSED] 0xE20B (BATTLEMAGE)
[05:25:24] [PASSED] 0xE20C (BATTLEMAGE)
[05:25:24] [PASSED] 0xE20D (BATTLEMAGE)
[05:25:24] [PASSED] 0xE210 (BATTLEMAGE)
[05:25:24] [PASSED] 0xE211 (BATTLEMAGE)
[05:25:24] [PASSED] 0xE212 (BATTLEMAGE)
[05:25:24] [PASSED] 0xE216 (BATTLEMAGE)
[05:25:24] [PASSED] 0xE220 (BATTLEMAGE)
[05:25:24] [PASSED] 0xE221 (BATTLEMAGE)
[05:25:24] [PASSED] 0xE222 (BATTLEMAGE)
[05:25:24] [PASSED] 0xE223 (BATTLEMAGE)
[05:25:24] [PASSED] 0xB080 (PANTHERLAKE)
[05:25:24] [PASSED] 0xB081 (PANTHERLAKE)
[05:25:24] [PASSED] 0xB082 (PANTHERLAKE)
[05:25:24] [PASSED] 0xB083 (PANTHERLAKE)
[05:25:24] [PASSED] 0xB084 (PANTHERLAKE)
[05:25:24] [PASSED] 0xB085 (PANTHERLAKE)
[05:25:24] [PASSED] 0xB086 (PANTHERLAKE)
[05:25:24] [PASSED] 0xB087 (PANTHERLAKE)
[05:25:24] [PASSED] 0xB08F (PANTHERLAKE)
[05:25:24] [PASSED] 0xB090 (PANTHERLAKE)
[05:25:24] [PASSED] 0xB0A0 (PANTHERLAKE)
[05:25:24] [PASSED] 0xB0B0 (PANTHERLAKE)
[05:25:24] [PASSED] 0xFD80 (PANTHERLAKE)
[05:25:24] [PASSED] 0xFD81 (PANTHERLAKE)
[05:25:24] [PASSED] 0xD740 (NOVALAKE_S)
[05:25:24] [PASSED] 0xD741 (NOVALAKE_S)
[05:25:24] [PASSED] 0xD742 (NOVALAKE_S)
[05:25:24] [PASSED] 0xD743 (NOVALAKE_S)
[05:25:24] [PASSED] 0xD744 (NOVALAKE_S)
[05:25:24] [PASSED] 0xD745 (NOVALAKE_S)
[05:25:24] [PASSED] 0x674C (CRESCENTISLAND)
[05:25:24] =============== [PASSED] check_platform_desc ===============
[05:25:24] ===================== [PASSED] xe_pci ======================
[05:25:24] =================== xe_rtp (2 subtests) ====================
[05:25:24] =============== xe_rtp_process_to_sr_tests ================
[05:25:24] [PASSED] coalesce-same-reg
[05:25:24] [PASSED] no-match-no-add
[05:25:24] [PASSED] match-or
[05:25:24] [PASSED] match-or-xfail
[05:25:24] [PASSED] no-match-no-add-multiple-rules
[05:25:24] [PASSED] two-regs-two-entries
[05:25:24] [PASSED] clr-one-set-other
[05:25:24] [PASSED] set-field
[05:25:24] [PASSED] conflict-duplicate
[05:25:24] [PASSED] conflict-not-disjoint
[05:25:24] [PASSED] conflict-reg-type
[05:25:24] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[05:25:24] ================== xe_rtp_process_tests ===================
[05:25:24] [PASSED] active1
[05:25:24] [PASSED] active2
[05:25:24] [PASSED] active-inactive
[05:25:24] [PASSED] inactive-active
[05:25:24] [PASSED] inactive-1st_or_active-inactive
[05:25:24] [PASSED] inactive-2nd_or_active-inactive
[05:25:24] [PASSED] inactive-last_or_active-inactive
[05:25:24] [PASSED] inactive-no_or_active-inactive
[05:25:24] ============== [PASSED] xe_rtp_process_tests ===============
[05:25:24] ===================== [PASSED] xe_rtp ======================
[05:25:24] ==================== xe_wa (1 subtest) =====================
[05:25:24] ======================== xe_wa_gt =========================
[05:25:24] [PASSED] TIGERLAKE B0
[05:25:24] [PASSED] DG1 A0
[05:25:24] [PASSED] DG1 B0
[05:25:24] [PASSED] ALDERLAKE_S A0
[05:25:24] [PASSED] ALDERLAKE_S B0
[05:25:24] [PASSED] ALDERLAKE_S C0
[05:25:24] [PASSED] ALDERLAKE_S D0
[05:25:24] [PASSED] ALDERLAKE_P A0
[05:25:24] [PASSED] ALDERLAKE_P B0
[05:25:24] [PASSED] ALDERLAKE_P C0
[05:25:24] [PASSED] ALDERLAKE_S RPLS D0
[05:25:24] [PASSED] ALDERLAKE_P RPLU E0
[05:25:24] [PASSED] DG2 G10 C0
[05:25:24] [PASSED] DG2 G11 B1
[05:25:24] [PASSED] DG2 G12 A1
[05:25:24] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[05:25:24] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[05:25:24] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[05:25:24] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[05:25:24] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[05:25:24] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[05:25:24] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[05:25:24] ==================== [PASSED] xe_wa_gt =====================
[05:25:24] ====================== [PASSED] xe_wa ======================
[05:25:24] ============================================================
[05:25:24] Testing complete. Ran 512 tests: passed: 494, skipped: 18
[05:25:24] Elapsed time: 37.107s total, 4.282s configuring, 32.307s building, 0.474s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[05:25:24] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[05:25:26] 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
[05:25:52] Starting KUnit Kernel (1/1)...
[05:25:52] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[05:25:52] ============ drm_test_pick_cmdline (2 subtests) ============
[05:25:52] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[05:25:52] =============== drm_test_pick_cmdline_named ===============
[05:25:52] [PASSED] NTSC
[05:25:52] [PASSED] NTSC-J
[05:25:52] [PASSED] PAL
[05:25:52] [PASSED] PAL-M
[05:25:52] =========== [PASSED] drm_test_pick_cmdline_named ===========
[05:25:52] ============== [PASSED] drm_test_pick_cmdline ==============
[05:25:52] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[05:25:52] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[05:25:52] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[05:25:52] =========== drm_validate_clone_mode (2 subtests) ===========
[05:25:52] ============== drm_test_check_in_clone_mode ===============
[05:25:52] [PASSED] in_clone_mode
[05:25:52] [PASSED] not_in_clone_mode
[05:25:52] ========== [PASSED] drm_test_check_in_clone_mode ===========
[05:25:52] =============== drm_test_check_valid_clones ===============
[05:25:52] [PASSED] not_in_clone_mode
[05:25:52] [PASSED] valid_clone
[05:25:52] [PASSED] invalid_clone
[05:25:52] =========== [PASSED] drm_test_check_valid_clones ===========
[05:25:52] ============= [PASSED] drm_validate_clone_mode =============
[05:25:52] ============= drm_validate_modeset (1 subtest) =============
[05:25:52] [PASSED] drm_test_check_connector_changed_modeset
[05:25:52] ============== [PASSED] drm_validate_modeset ===============
[05:25:52] ====== drm_test_bridge_get_current_state (2 subtests) ======
[05:25:52] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[05:25:52] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[05:25:52] ======== [PASSED] drm_test_bridge_get_current_state ========
[05:25:52] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[05:25:52] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[05:25:52] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[05:25:52] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[05:25:52] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[05:25:52] ============== drm_bridge_alloc (2 subtests) ===============
[05:25:52] [PASSED] drm_test_drm_bridge_alloc_basic
[05:25:52] [PASSED] drm_test_drm_bridge_alloc_get_put
[05:25:52] ================ [PASSED] drm_bridge_alloc =================
[05:25:52] ================== drm_buddy (9 subtests) ==================
[05:25:52] [PASSED] drm_test_buddy_alloc_limit
[05:25:52] [PASSED] drm_test_buddy_alloc_optimistic
[05:25:52] [PASSED] drm_test_buddy_alloc_pessimistic
[05:25:52] [PASSED] drm_test_buddy_alloc_pathological
[05:25:52] [PASSED] drm_test_buddy_alloc_contiguous
[05:25:52] [PASSED] drm_test_buddy_alloc_clear
[05:25:52] [PASSED] drm_test_buddy_alloc_range_bias
[05:25:52] [PASSED] drm_test_buddy_fragmentation_performance
[05:25:52] [PASSED] drm_test_buddy_alloc_exceeds_max_order
[05:25:52] ==================== [PASSED] drm_buddy ====================
[05:25:52] ============= drm_cmdline_parser (40 subtests) =============
[05:25:52] [PASSED] drm_test_cmdline_force_d_only
[05:25:52] [PASSED] drm_test_cmdline_force_D_only_dvi
[05:25:52] [PASSED] drm_test_cmdline_force_D_only_hdmi
[05:25:52] [PASSED] drm_test_cmdline_force_D_only_not_digital
[05:25:52] [PASSED] drm_test_cmdline_force_e_only
[05:25:52] [PASSED] drm_test_cmdline_res
[05:25:52] [PASSED] drm_test_cmdline_res_vesa
[05:25:52] [PASSED] drm_test_cmdline_res_vesa_rblank
[05:25:52] [PASSED] drm_test_cmdline_res_rblank
[05:25:52] [PASSED] drm_test_cmdline_res_bpp
[05:25:52] [PASSED] drm_test_cmdline_res_refresh
[05:25:52] [PASSED] drm_test_cmdline_res_bpp_refresh
[05:25:52] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[05:25:52] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[05:25:52] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[05:25:52] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[05:25:52] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[05:25:52] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[05:25:52] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[05:25:52] [PASSED] drm_test_cmdline_res_margins_force_on
[05:25:52] [PASSED] drm_test_cmdline_res_vesa_margins
[05:25:52] [PASSED] drm_test_cmdline_name
[05:25:52] [PASSED] drm_test_cmdline_name_bpp
[05:25:52] [PASSED] drm_test_cmdline_name_option
[05:25:52] [PASSED] drm_test_cmdline_name_bpp_option
[05:25:52] [PASSED] drm_test_cmdline_rotate_0
[05:25:52] [PASSED] drm_test_cmdline_rotate_90
[05:25:52] [PASSED] drm_test_cmdline_rotate_180
[05:25:52] [PASSED] drm_test_cmdline_rotate_270
[05:25:52] [PASSED] drm_test_cmdline_hmirror
[05:25:52] [PASSED] drm_test_cmdline_vmirror
[05:25:52] [PASSED] drm_test_cmdline_margin_options
[05:25:52] [PASSED] drm_test_cmdline_multiple_options
[05:25:52] [PASSED] drm_test_cmdline_bpp_extra_and_option
[05:25:52] [PASSED] drm_test_cmdline_extra_and_option
[05:25:52] [PASSED] drm_test_cmdline_freestanding_options
[05:25:52] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[05:25:52] [PASSED] drm_test_cmdline_panel_orientation
[05:25:52] ================ drm_test_cmdline_invalid =================
[05:25:52] [PASSED] margin_only
[05:25:52] [PASSED] interlace_only
[05:25:52] [PASSED] res_missing_x
[05:25:52] [PASSED] res_missing_y
[05:25:52] [PASSED] res_bad_y
[05:25:52] [PASSED] res_missing_y_bpp
[05:25:52] [PASSED] res_bad_bpp
[05:25:52] [PASSED] res_bad_refresh
[05:25:52] [PASSED] res_bpp_refresh_force_on_off
[05:25:52] [PASSED] res_invalid_mode
[05:25:52] [PASSED] res_bpp_wrong_place_mode
[05:25:52] [PASSED] name_bpp_refresh
[05:25:52] [PASSED] name_refresh
[05:25:52] [PASSED] name_refresh_wrong_mode
[05:25:52] [PASSED] name_refresh_invalid_mode
[05:25:52] [PASSED] rotate_multiple
[05:25:52] [PASSED] rotate_invalid_val
[05:25:52] [PASSED] rotate_truncated
[05:25:52] [PASSED] invalid_option
[05:25:52] [PASSED] invalid_tv_option
[05:25:52] [PASSED] truncated_tv_option
[05:25:52] ============ [PASSED] drm_test_cmdline_invalid =============
[05:25:52] =============== drm_test_cmdline_tv_options ===============
[05:25:52] [PASSED] NTSC
[05:25:52] [PASSED] NTSC_443
[05:25:52] [PASSED] NTSC_J
[05:25:52] [PASSED] PAL
[05:25:52] [PASSED] PAL_M
[05:25:52] [PASSED] PAL_N
[05:25:52] [PASSED] SECAM
[05:25:52] [PASSED] MONO_525
[05:25:52] [PASSED] MONO_625
[05:25:52] =========== [PASSED] drm_test_cmdline_tv_options ===========
[05:25:52] =============== [PASSED] drm_cmdline_parser ================
[05:25:52] ========== drmm_connector_hdmi_init (20 subtests) ==========
[05:25:52] [PASSED] drm_test_connector_hdmi_init_valid
[05:25:52] [PASSED] drm_test_connector_hdmi_init_bpc_8
[05:25:52] [PASSED] drm_test_connector_hdmi_init_bpc_10
[05:25:52] [PASSED] drm_test_connector_hdmi_init_bpc_12
[05:25:52] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[05:25:52] [PASSED] drm_test_connector_hdmi_init_bpc_null
[05:25:52] [PASSED] drm_test_connector_hdmi_init_formats_empty
[05:25:52] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[05:25:52] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[05:25:52] [PASSED] supported_formats=0x9 yuv420_allowed=1
[05:25:52] [PASSED] supported_formats=0x9 yuv420_allowed=0
[05:25:52] [PASSED] supported_formats=0x3 yuv420_allowed=1
[05:25:52] [PASSED] supported_formats=0x3 yuv420_allowed=0
[05:25:52] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[05:25:52] [PASSED] drm_test_connector_hdmi_init_null_ddc
[05:25:52] [PASSED] drm_test_connector_hdmi_init_null_product
[05:25:52] [PASSED] drm_test_connector_hdmi_init_null_vendor
[05:25:52] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[05:25:52] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[05:25:52] [PASSED] drm_test_connector_hdmi_init_product_valid
[05:25:52] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[05:25:52] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[05:25:52] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[05:25:52] ========= drm_test_connector_hdmi_init_type_valid =========
[05:25:52] [PASSED] HDMI-A
[05:25:52] [PASSED] HDMI-B
[05:25:52] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[05:25:52] ======== drm_test_connector_hdmi_init_type_invalid ========
[05:25:52] [PASSED] Unknown
[05:25:52] [PASSED] VGA
[05:25:52] [PASSED] DVI-I
[05:25:52] [PASSED] DVI-D
[05:25:52] [PASSED] DVI-A
[05:25:52] [PASSED] Composite
[05:25:52] [PASSED] SVIDEO
[05:25:52] [PASSED] LVDS
[05:25:52] [PASSED] Component
[05:25:52] [PASSED] DIN
[05:25:52] [PASSED] DP
[05:25:52] [PASSED] TV
[05:25:52] [PASSED] eDP
[05:25:52] [PASSED] Virtual
[05:25:52] [PASSED] DSI
[05:25:52] [PASSED] DPI
[05:25:52] [PASSED] Writeback
[05:25:52] [PASSED] SPI
[05:25:52] [PASSED] USB
[05:25:52] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[05:25:52] ============ [PASSED] drmm_connector_hdmi_init =============
[05:25:52] ============= drmm_connector_init (3 subtests) =============
[05:25:52] [PASSED] drm_test_drmm_connector_init
[05:25:52] [PASSED] drm_test_drmm_connector_init_null_ddc
[05:25:52] ========= drm_test_drmm_connector_init_type_valid =========
[05:25:52] [PASSED] Unknown
[05:25:52] [PASSED] VGA
[05:25:52] [PASSED] DVI-I
[05:25:52] [PASSED] DVI-D
[05:25:52] [PASSED] DVI-A
[05:25:52] [PASSED] Composite
[05:25:52] [PASSED] SVIDEO
[05:25:52] [PASSED] LVDS
[05:25:52] [PASSED] Component
[05:25:52] [PASSED] DIN
[05:25:52] [PASSED] DP
[05:25:52] [PASSED] HDMI-A
[05:25:52] [PASSED] HDMI-B
[05:25:52] [PASSED] TV
[05:25:52] [PASSED] eDP
[05:25:52] [PASSED] Virtual
[05:25:52] [PASSED] DSI
[05:25:52] [PASSED] DPI
[05:25:52] [PASSED] Writeback
[05:25:52] [PASSED] SPI
[05:25:52] [PASSED] USB
[05:25:52] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[05:25:52] =============== [PASSED] drmm_connector_init ===============
[05:25:52] ========= drm_connector_dynamic_init (6 subtests) ==========
[05:25:52] [PASSED] drm_test_drm_connector_dynamic_init
[05:25:52] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[05:25:52] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[05:25:52] [PASSED] drm_test_drm_connector_dynamic_init_properties
[05:25:52] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[05:25:52] [PASSED] Unknown
[05:25:52] [PASSED] VGA
[05:25:52] [PASSED] DVI-I
[05:25:52] [PASSED] DVI-D
[05:25:52] [PASSED] DVI-A
[05:25:52] [PASSED] Composite
[05:25:52] [PASSED] SVIDEO
[05:25:52] [PASSED] LVDS
[05:25:52] [PASSED] Component
[05:25:52] [PASSED] DIN
[05:25:52] [PASSED] DP
[05:25:52] [PASSED] HDMI-A
[05:25:52] [PASSED] HDMI-B
[05:25:52] [PASSED] TV
[05:25:52] [PASSED] eDP
[05:25:52] [PASSED] Virtual
[05:25:52] [PASSED] DSI
[05:25:52] [PASSED] DPI
[05:25:52] [PASSED] Writeback
[05:25:52] [PASSED] SPI
[05:25:52] [PASSED] USB
[05:25:52] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[05:25:52] ======== drm_test_drm_connector_dynamic_init_name =========
[05:25:52] [PASSED] Unknown
[05:25:52] [PASSED] VGA
[05:25:52] [PASSED] DVI-I
[05:25:52] [PASSED] DVI-D
[05:25:52] [PASSED] DVI-A
[05:25:52] [PASSED] Composite
[05:25:52] [PASSED] SVIDEO
[05:25:52] [PASSED] LVDS
[05:25:52] [PASSED] Component
[05:25:52] [PASSED] DIN
[05:25:52] [PASSED] DP
[05:25:52] [PASSED] HDMI-A
[05:25:52] [PASSED] HDMI-B
[05:25:52] [PASSED] TV
[05:25:52] [PASSED] eDP
[05:25:52] [PASSED] Virtual
[05:25:52] [PASSED] DSI
[05:25:52] [PASSED] DPI
[05:25:52] [PASSED] Writeback
[05:25:52] [PASSED] SPI
[05:25:52] [PASSED] USB
[05:25:52] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[05:25:52] =========== [PASSED] drm_connector_dynamic_init ============
[05:25:52] ==== drm_connector_dynamic_register_early (4 subtests) =====
[05:25:52] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[05:25:52] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[05:25:52] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[05:25:52] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[05:25:52] ====== [PASSED] drm_connector_dynamic_register_early =======
[05:25:52] ======= drm_connector_dynamic_register (7 subtests) ========
[05:25:52] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[05:25:52] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[05:25:52] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[05:25:52] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[05:25:52] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[05:25:52] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[05:25:52] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[05:25:52] ========= [PASSED] drm_connector_dynamic_register ==========
[05:25:52] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[05:25:52] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[05:25:52] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[05:25:52] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[05:25:52] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[05:25:52] ========== drm_test_get_tv_mode_from_name_valid ===========
[05:25:52] [PASSED] NTSC
[05:25:52] [PASSED] NTSC-443
[05:25:52] [PASSED] NTSC-J
[05:25:52] [PASSED] PAL
[05:25:52] [PASSED] PAL-M
[05:25:52] [PASSED] PAL-N
[05:25:52] [PASSED] SECAM
[05:25:52] [PASSED] Mono
[05:25:52] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[05:25:52] [PASSED] drm_test_get_tv_mode_from_name_truncated
[05:25:52] ============ [PASSED] drm_get_tv_mode_from_name ============
[05:25:52] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[05:25:52] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[05:25:52] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[05:25:52] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[05:25:52] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[05:25:52] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[05:25:52] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[05:25:52] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[05:25:52] [PASSED] VIC 96
[05:25:52] [PASSED] VIC 97
[05:25:52] [PASSED] VIC 101
[05:25:52] [PASSED] VIC 102
[05:25:52] [PASSED] VIC 106
[05:25:52] [PASSED] VIC 107
[05:25:52] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[05:25:52] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[05:25:52] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[05:25:52] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[05:25:52] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[05:25:52] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[05:25:52] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[05:25:52] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[05:25:52] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[05:25:52] [PASSED] Automatic
[05:25:52] [PASSED] Full
[05:25:52] [PASSED] Limited 16:235
[05:25:52] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[05:25:52] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[05:25:52] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[05:25:52] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[05:25:52] === drm_test_drm_hdmi_connector_get_output_format_name ====
[05:25:52] [PASSED] RGB
[05:25:52] [PASSED] YUV 4:2:0
[05:25:52] [PASSED] YUV 4:2:2
[05:25:52] [PASSED] YUV 4:4:4
[05:25:52] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[05:25:52] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[05:25:52] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[05:25:52] ============= drm_damage_helper (21 subtests) ==============
[05:25:52] [PASSED] drm_test_damage_iter_no_damage
[05:25:52] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[05:25:52] [PASSED] drm_test_damage_iter_no_damage_src_moved
[05:25:52] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[05:25:52] [PASSED] drm_test_damage_iter_no_damage_not_visible
[05:25:52] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[05:25:52] [PASSED] drm_test_damage_iter_no_damage_no_fb
[05:25:52] [PASSED] drm_test_damage_iter_simple_damage
[05:25:52] [PASSED] drm_test_damage_iter_single_damage
[05:25:52] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[05:25:52] [PASSED] drm_test_damage_iter_single_damage_outside_src
[05:25:52] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[05:25:52] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[05:25:52] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[05:25:52] [PASSED] drm_test_damage_iter_single_damage_src_moved
[05:25:52] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[05:25:52] [PASSED] drm_test_damage_iter_damage
[05:25:52] [PASSED] drm_test_damage_iter_damage_one_intersect
[05:25:52] [PASSED] drm_test_damage_iter_damage_one_outside
[05:25:52] [PASSED] drm_test_damage_iter_damage_src_moved
[05:25:52] [PASSED] drm_test_damage_iter_damage_not_visible
[05:25:52] ================ [PASSED] drm_damage_helper ================
[05:25:52] ============== drm_dp_mst_helper (3 subtests) ==============
[05:25:52] ============== drm_test_dp_mst_calc_pbn_mode ==============
[05:25:52] [PASSED] Clock 154000 BPP 30 DSC disabled
[05:25:52] [PASSED] Clock 234000 BPP 30 DSC disabled
[05:25:52] [PASSED] Clock 297000 BPP 24 DSC disabled
[05:25:52] [PASSED] Clock 332880 BPP 24 DSC enabled
[05:25:52] [PASSED] Clock 324540 BPP 24 DSC enabled
[05:25:52] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[05:25:52] ============== drm_test_dp_mst_calc_pbn_div ===============
[05:25:52] [PASSED] Link rate 2000000 lane count 4
[05:25:52] [PASSED] Link rate 2000000 lane count 2
[05:25:52] [PASSED] Link rate 2000000 lane count 1
[05:25:52] [PASSED] Link rate 1350000 lane count 4
[05:25:52] [PASSED] Link rate 1350000 lane count 2
[05:25:52] [PASSED] Link rate 1350000 lane count 1
[05:25:52] [PASSED] Link rate 1000000 lane count 4
[05:25:52] [PASSED] Link rate 1000000 lane count 2
[05:25:52] [PASSED] Link rate 1000000 lane count 1
[05:25:52] [PASSED] Link rate 810000 lane count 4
[05:25:52] [PASSED] Link rate 810000 lane count 2
[05:25:52] [PASSED] Link rate 810000 lane count 1
[05:25:52] [PASSED] Link rate 540000 lane count 4
[05:25:52] [PASSED] Link rate 540000 lane count 2
[05:25:52] [PASSED] Link rate 540000 lane count 1
[05:25:52] [PASSED] Link rate 270000 lane count 4
[05:25:52] [PASSED] Link rate 270000 lane count 2
[05:25:52] [PASSED] Link rate 270000 lane count 1
[05:25:52] [PASSED] Link rate 162000 lane count 4
[05:25:52] [PASSED] Link rate 162000 lane count 2
[05:25:52] [PASSED] Link rate 162000 lane count 1
[05:25:52] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[05:25:52] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[05:25:52] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[05:25:52] [PASSED] DP_POWER_UP_PHY with port number
[05:25:52] [PASSED] DP_POWER_DOWN_PHY with port number
[05:25:52] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[05:25:52] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[05:25:52] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[05:25:52] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[05:25:52] [PASSED] DP_QUERY_PAYLOAD with port number
[05:25:52] [PASSED] DP_QUERY_PAYLOAD with VCPI
[05:25:52] [PASSED] DP_REMOTE_DPCD_READ with port number
[05:25:52] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[05:25:52] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[05:25:52] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[05:25:52] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[05:25:52] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[05:25:52] [PASSED] DP_REMOTE_I2C_READ with port number
[05:25:52] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[05:25:52] [PASSED] DP_REMOTE_I2C_READ with transactions array
[05:25:52] [PASSED] DP_REMOTE_I2C_WRITE with port number
[05:25:52] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[05:25:52] [PASSED] DP_REMOTE_I2C_WRITE with data array
[05:25:52] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[05:25:52] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[05:25:52] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[05:25:52] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[05:25:52] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[05:25:52] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[05:25:52] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[05:25:52] ================ [PASSED] drm_dp_mst_helper ================
[05:25:52] ================== drm_exec (7 subtests) ===================
[05:25:52] [PASSED] sanitycheck
[05:25:52] [PASSED] test_lock
[05:25:52] [PASSED] test_lock_unlock
[05:25:52] [PASSED] test_duplicates
[05:25:52] [PASSED] test_prepare
[05:25:52] [PASSED] test_prepare_array
[05:25:52] [PASSED] test_multiple_loops
[05:25:52] ==================== [PASSED] drm_exec =====================
[05:25:52] =========== drm_format_helper_test (17 subtests) ===========
[05:25:52] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[05:25:52] [PASSED] single_pixel_source_buffer
[05:25:52] [PASSED] single_pixel_clip_rectangle
[05:25:52] [PASSED] well_known_colors
[05:25:52] [PASSED] destination_pitch
[05:25:52] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[05:25:52] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[05:25:52] [PASSED] single_pixel_source_buffer
[05:25:52] [PASSED] single_pixel_clip_rectangle
[05:25:52] [PASSED] well_known_colors
[05:25:52] [PASSED] destination_pitch
[05:25:52] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[05:25:52] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[05:25:52] [PASSED] single_pixel_source_buffer
[05:25:52] [PASSED] single_pixel_clip_rectangle
[05:25:52] [PASSED] well_known_colors
[05:25:52] [PASSED] destination_pitch
[05:25:52] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[05:25:52] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[05:25:52] [PASSED] single_pixel_source_buffer
[05:25:52] [PASSED] single_pixel_clip_rectangle
[05:25:52] [PASSED] well_known_colors
[05:25:52] [PASSED] destination_pitch
[05:25:52] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[05:25:52] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[05:25:52] [PASSED] single_pixel_source_buffer
[05:25:52] [PASSED] single_pixel_clip_rectangle
[05:25:52] [PASSED] well_known_colors
[05:25:52] [PASSED] destination_pitch
[05:25:52] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[05:25:52] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[05:25:52] [PASSED] single_pixel_source_buffer
[05:25:52] [PASSED] single_pixel_clip_rectangle
[05:25:52] [PASSED] well_known_colors
[05:25:52] [PASSED] destination_pitch
[05:25:52] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[05:25:52] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[05:25:52] [PASSED] single_pixel_source_buffer
[05:25:52] [PASSED] single_pixel_clip_rectangle
[05:25:52] [PASSED] well_known_colors
[05:25:52] [PASSED] destination_pitch
[05:25:52] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[05:25:52] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[05:25:52] [PASSED] single_pixel_source_buffer
[05:25:52] [PASSED] single_pixel_clip_rectangle
[05:25:52] [PASSED] well_known_colors
[05:25:52] [PASSED] destination_pitch
[05:25:52] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[05:25:52] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[05:25:52] [PASSED] single_pixel_source_buffer
[05:25:52] [PASSED] single_pixel_clip_rectangle
[05:25:52] [PASSED] well_known_colors
[05:25:52] [PASSED] destination_pitch
[05:25:52] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[05:25:52] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[05:25:52] [PASSED] single_pixel_source_buffer
[05:25:52] [PASSED] single_pixel_clip_rectangle
[05:25:52] [PASSED] well_known_colors
[05:25:52] [PASSED] destination_pitch
[05:25:52] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[05:25:52] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[05:25:52] [PASSED] single_pixel_source_buffer
[05:25:52] [PASSED] single_pixel_clip_rectangle
[05:25:52] [PASSED] well_known_colors
[05:25:52] [PASSED] destination_pitch
[05:25:52] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[05:25:52] ============== drm_test_fb_xrgb8888_to_mono ===============
[05:25:52] [PASSED] single_pixel_source_buffer
[05:25:52] [PASSED] single_pixel_clip_rectangle
[05:25:52] [PASSED] well_known_colors
[05:25:52] [PASSED] destination_pitch
[05:25:52] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[05:25:52] ==================== drm_test_fb_swab =====================
[05:25:52] [PASSED] single_pixel_source_buffer
[05:25:52] [PASSED] single_pixel_clip_rectangle
[05:25:52] [PASSED] well_known_colors
[05:25:52] [PASSED] destination_pitch
[05:25:52] ================ [PASSED] drm_test_fb_swab =================
[05:25:52] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[05:25:52] [PASSED] single_pixel_source_buffer
[05:25:52] [PASSED] single_pixel_clip_rectangle
[05:25:52] [PASSED] well_known_colors
[05:25:52] [PASSED] destination_pitch
[05:25:52] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[05:25:52] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[05:25:52] [PASSED] single_pixel_source_buffer
[05:25:52] [PASSED] single_pixel_clip_rectangle
[05:25:52] [PASSED] well_known_colors
[05:25:52] [PASSED] destination_pitch
[05:25:52] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[05:25:52] ================= drm_test_fb_clip_offset =================
[05:25:52] [PASSED] pass through
[05:25:52] [PASSED] horizontal offset
[05:25:52] [PASSED] vertical offset
[05:25:52] [PASSED] horizontal and vertical offset
[05:25:52] [PASSED] horizontal offset (custom pitch)
[05:25:52] [PASSED] vertical offset (custom pitch)
[05:25:52] [PASSED] horizontal and vertical offset (custom pitch)
[05:25:52] ============= [PASSED] drm_test_fb_clip_offset =============
[05:25:52] =================== drm_test_fb_memcpy ====================
[05:25:52] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[05:25:52] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[05:25:52] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[05:25:52] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[05:25:52] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[05:25:52] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[05:25:52] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[05:25:52] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[05:25:52] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[05:25:52] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[05:25:52] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[05:25:52] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[05:25:52] =============== [PASSED] drm_test_fb_memcpy ================
[05:25:52] ============= [PASSED] drm_format_helper_test ==============
[05:25:52] ================= drm_format (18 subtests) =================
[05:25:52] [PASSED] drm_test_format_block_width_invalid
[05:25:52] [PASSED] drm_test_format_block_width_one_plane
[05:25:52] [PASSED] drm_test_format_block_width_two_plane
[05:25:52] [PASSED] drm_test_format_block_width_three_plane
[05:25:52] [PASSED] drm_test_format_block_width_tiled
[05:25:52] [PASSED] drm_test_format_block_height_invalid
[05:25:52] [PASSED] drm_test_format_block_height_one_plane
[05:25:52] [PASSED] drm_test_format_block_height_two_plane
[05:25:52] [PASSED] drm_test_format_block_height_three_plane
[05:25:52] [PASSED] drm_test_format_block_height_tiled
[05:25:52] [PASSED] drm_test_format_min_pitch_invalid
[05:25:52] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[05:25:52] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[05:25:52] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[05:25:52] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[05:25:52] [PASSED] drm_test_format_min_pitch_two_plane
[05:25:52] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[05:25:52] [PASSED] drm_test_format_min_pitch_tiled
[05:25:52] =================== [PASSED] drm_format ====================
[05:25:52] ============== drm_framebuffer (10 subtests) ===============
[05:25:52] ========== drm_test_framebuffer_check_src_coords ==========
[05:25:52] [PASSED] Success: source fits into fb
[05:25:52] [PASSED] Fail: overflowing fb with x-axis coordinate
[05:25:52] [PASSED] Fail: overflowing fb with y-axis coordinate
[05:25:52] [PASSED] Fail: overflowing fb with source width
[05:25:52] [PASSED] Fail: overflowing fb with source height
[05:25:52] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[05:25:52] [PASSED] drm_test_framebuffer_cleanup
[05:25:52] =============== drm_test_framebuffer_create ===============
[05:25:52] [PASSED] ABGR8888 normal sizes
[05:25:52] [PASSED] ABGR8888 max sizes
[05:25:52] [PASSED] ABGR8888 pitch greater than min required
[05:25:52] [PASSED] ABGR8888 pitch less than min required
[05:25:52] [PASSED] ABGR8888 Invalid width
[05:25:52] [PASSED] ABGR8888 Invalid buffer handle
[05:25:52] [PASSED] No pixel format
[05:25:52] [PASSED] ABGR8888 Width 0
[05:25:52] [PASSED] ABGR8888 Height 0
[05:25:52] [PASSED] ABGR8888 Out of bound height * pitch combination
[05:25:52] [PASSED] ABGR8888 Large buffer offset
[05:25:52] [PASSED] ABGR8888 Buffer offset for inexistent plane
[05:25:52] [PASSED] ABGR8888 Invalid flag
[05:25:52] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[05:25:52] [PASSED] ABGR8888 Valid buffer modifier
[05:25:52] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[05:25:52] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[05:25:52] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[05:25:52] [PASSED] NV12 Normal sizes
[05:25:52] [PASSED] NV12 Max sizes
[05:25:52] [PASSED] NV12 Invalid pitch
[05:25:52] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[05:25:52] [PASSED] NV12 different modifier per-plane
[05:25:52] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[05:25:52] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[05:25:52] [PASSED] NV12 Modifier for inexistent plane
[05:25:52] [PASSED] NV12 Handle for inexistent plane
[05:25:52] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[05:25:52] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[05:25:52] [PASSED] YVU420 Normal sizes
[05:25:52] [PASSED] YVU420 Max sizes
[05:25:52] [PASSED] YVU420 Invalid pitch
[05:25:52] [PASSED] YVU420 Different pitches
[05:25:52] [PASSED] YVU420 Different buffer offsets/pitches
[05:25:52] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[05:25:52] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[05:25:52] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[05:25:52] [PASSED] YVU420 Valid modifier
[05:25:52] [PASSED] YVU420 Different modifiers per plane
[05:25:52] [PASSED] YVU420 Modifier for inexistent plane
[05:25:52] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[05:25:52] [PASSED] X0L2 Normal sizes
[05:25:52] [PASSED] X0L2 Max sizes
[05:25:52] [PASSED] X0L2 Invalid pitch
[05:25:52] [PASSED] X0L2 Pitch greater than minimum required
[05:25:52] [PASSED] X0L2 Handle for inexistent plane
[05:25:52] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[05:25:52] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[05:25:52] [PASSED] X0L2 Valid modifier
[05:25:52] [PASSED] X0L2 Modifier for inexistent plane
[05:25:52] =========== [PASSED] drm_test_framebuffer_create ===========
[05:25:52] [PASSED] drm_test_framebuffer_free
[05:25:52] [PASSED] drm_test_framebuffer_init
[05:25:52] [PASSED] drm_test_framebuffer_init_bad_format
[05:25:52] [PASSED] drm_test_framebuffer_init_dev_mismatch
[05:25:52] [PASSED] drm_test_framebuffer_lookup
[05:25:52] [PASSED] drm_test_framebuffer_lookup_inexistent
[05:25:52] [PASSED] drm_test_framebuffer_modifiers_not_supported
[05:25:52] ================= [PASSED] drm_framebuffer =================
[05:25:52] ================ drm_gem_shmem (8 subtests) ================
[05:25:52] [PASSED] drm_gem_shmem_test_obj_create
[05:25:52] [PASSED] drm_gem_shmem_test_obj_create_private
[05:25:52] [PASSED] drm_gem_shmem_test_pin_pages
[05:25:52] [PASSED] drm_gem_shmem_test_vmap
[05:25:52] [PASSED] drm_gem_shmem_test_get_sg_table
[05:25:52] [PASSED] drm_gem_shmem_test_get_pages_sgt
[05:25:52] [PASSED] drm_gem_shmem_test_madvise
[05:25:52] [PASSED] drm_gem_shmem_test_purge
[05:25:52] ================== [PASSED] drm_gem_shmem ==================
[05:25:52] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[05:25:52] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[05:25:52] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[05:25:52] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[05:25:52] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[05:25:52] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[05:25:52] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[05:25:52] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[05:25:52] [PASSED] Automatic
[05:25:52] [PASSED] Full
[05:25:52] [PASSED] Limited 16:235
[05:25:52] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[05:25:52] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[05:25:52] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[05:25:52] [PASSED] drm_test_check_disable_connector
[05:25:52] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[05:25:52] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[05:25:52] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[05:25:52] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[05:25:52] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[05:25:52] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[05:25:52] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[05:25:52] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[05:25:52] [PASSED] drm_test_check_output_bpc_dvi
[05:25:52] [PASSED] drm_test_check_output_bpc_format_vic_1
[05:25:52] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[05:25:52] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[05:25:52] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[05:25:52] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[05:25:52] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[05:25:52] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[05:25:52] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[05:25:52] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[05:25:52] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[05:25:52] [PASSED] drm_test_check_broadcast_rgb_value
[05:25:52] [PASSED] drm_test_check_bpc_8_value
[05:25:52] [PASSED] drm_test_check_bpc_10_value
[05:25:52] [PASSED] drm_test_check_bpc_12_value
[05:25:52] [PASSED] drm_test_check_format_value
[05:25:52] [PASSED] drm_test_check_tmds_char_value
[05:25:52] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[05:25:52] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[05:25:52] [PASSED] drm_test_check_mode_valid
[05:25:52] [PASSED] drm_test_check_mode_valid_reject
[05:25:52] [PASSED] drm_test_check_mode_valid_reject_rate
[05:25:52] [PASSED] drm_test_check_mode_valid_reject_max_clock
[05:25:52] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[05:25:52] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[05:25:52] [PASSED] drm_test_check_infoframes
[05:25:52] [PASSED] drm_test_check_reject_avi_infoframe
[05:25:52] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[05:25:52] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[05:25:52] [PASSED] drm_test_check_reject_audio_infoframe
[05:25:52] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[05:25:52] ================= drm_managed (2 subtests) =================
[05:25:52] [PASSED] drm_test_managed_release_action
[05:25:52] [PASSED] drm_test_managed_run_action
[05:25:52] =================== [PASSED] drm_managed ===================
[05:25:52] =================== drm_mm (6 subtests) ====================
[05:25:52] [PASSED] drm_test_mm_init
[05:25:52] [PASSED] drm_test_mm_debug
[05:25:52] [PASSED] drm_test_mm_align32
[05:25:52] [PASSED] drm_test_mm_align64
[05:25:52] [PASSED] drm_test_mm_lowest
[05:25:52] [PASSED] drm_test_mm_highest
[05:25:52] ===================== [PASSED] drm_mm ======================
[05:25:52] ============= drm_modes_analog_tv (5 subtests) =============
[05:25:52] [PASSED] drm_test_modes_analog_tv_mono_576i
[05:25:52] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[05:25:52] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[05:25:52] [PASSED] drm_test_modes_analog_tv_pal_576i
[05:25:52] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[05:25:52] =============== [PASSED] drm_modes_analog_tv ===============
[05:25:52] ============== drm_plane_helper (2 subtests) ===============
[05:25:52] =============== drm_test_check_plane_state ================
[05:25:52] [PASSED] clipping_simple
[05:25:52] [PASSED] clipping_rotate_reflect
[05:25:52] [PASSED] positioning_simple
[05:25:52] [PASSED] upscaling
[05:25:52] [PASSED] downscaling
[05:25:52] [PASSED] rounding1
[05:25:52] [PASSED] rounding2
[05:25:52] [PASSED] rounding3
[05:25:52] [PASSED] rounding4
[05:25:52] =========== [PASSED] drm_test_check_plane_state ============
[05:25:52] =========== drm_test_check_invalid_plane_state ============
[05:25:52] [PASSED] positioning_invalid
[05:25:52] [PASSED] upscaling_invalid
[05:25:52] [PASSED] downscaling_invalid
[05:25:52] ======= [PASSED] drm_test_check_invalid_plane_state ========
[05:25:52] ================ [PASSED] drm_plane_helper =================
[05:25:52] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[05:25:52] ====== drm_test_connector_helper_tv_get_modes_check =======
[05:25:52] [PASSED] None
[05:25:52] [PASSED] PAL
[05:25:52] [PASSED] NTSC
[05:25:52] [PASSED] Both, NTSC Default
[05:25:52] [PASSED] Both, PAL Default
[05:25:52] [PASSED] Both, NTSC Default, with PAL on command-line
[05:25:52] [PASSED] Both, PAL Default, with NTSC on command-line
[05:25:52] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[05:25:52] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[05:25:52] ================== drm_rect (9 subtests) ===================
[05:25:52] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[05:25:52] [PASSED] drm_test_rect_clip_scaled_not_clipped
[05:25:52] [PASSED] drm_test_rect_clip_scaled_clipped
[05:25:52] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[05:25:52] ================= drm_test_rect_intersect =================
[05:25:52] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[05:25:52] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[05:25:52] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[05:25:52] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[05:25:52] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[05:25:52] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[05:25:52] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[05:25:52] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[05:25:52] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[05:25:52] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[05:25:52] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[05:25:52] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[05:25:52] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[05:25:52] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[05:25:52] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
stty: 'standard input': Inappropriate ioctl for device
[05:25:52] ============= [PASSED] drm_test_rect_intersect =============
[05:25:52] ================ drm_test_rect_calc_hscale ================
[05:25:52] [PASSED] normal use
[05:25:52] [PASSED] out of max range
[05:25:52] [PASSED] out of min range
[05:25:52] [PASSED] zero dst
[05:25:52] [PASSED] negative src
[05:25:52] [PASSED] negative dst
[05:25:52] ============ [PASSED] drm_test_rect_calc_hscale ============
[05:25:52] ================ drm_test_rect_calc_vscale ================
[05:25:52] [PASSED] normal use
[05:25:52] [PASSED] out of max range
[05:25:52] [PASSED] out of min range
[05:25:52] [PASSED] zero dst
[05:25:52] [PASSED] negative src
[05:25:52] [PASSED] negative dst
[05:25:52] ============ [PASSED] drm_test_rect_calc_vscale ============
[05:25:52] ================== drm_test_rect_rotate ===================
[05:25:52] [PASSED] reflect-x
[05:25:52] [PASSED] reflect-y
[05:25:52] [PASSED] rotate-0
[05:25:52] [PASSED] rotate-90
[05:25:52] [PASSED] rotate-180
[05:25:52] [PASSED] rotate-270
[05:25:52] ============== [PASSED] drm_test_rect_rotate ===============
[05:25:52] ================ drm_test_rect_rotate_inv =================
[05:25:52] [PASSED] reflect-x
[05:25:52] [PASSED] reflect-y
[05:25:52] [PASSED] rotate-0
[05:25:52] [PASSED] rotate-90
[05:25:52] [PASSED] rotate-180
[05:25:52] [PASSED] rotate-270
[05:25:52] ============ [PASSED] drm_test_rect_rotate_inv =============
[05:25:52] ==================== [PASSED] drm_rect =====================
[05:25:52] ============ drm_sysfb_modeset_test (1 subtest) ============
[05:25:52] ============ drm_test_sysfb_build_fourcc_list =============
[05:25:52] [PASSED] no native formats
[05:25:52] [PASSED] XRGB8888 as native format
[05:25:52] [PASSED] remove duplicates
[05:25:52] [PASSED] convert alpha formats
[05:25:52] [PASSED] random formats
[05:25:52] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[05:25:52] ============= [PASSED] drm_sysfb_modeset_test ==============
[05:25:52] ================== drm_fixp (2 subtests) ===================
[05:25:52] [PASSED] drm_test_int2fixp
[05:25:52] [PASSED] drm_test_sm2fixp
[05:25:52] ==================== [PASSED] drm_fixp =====================
[05:25:52] ============================================================
[05:25:52] Testing complete. Ran 630 tests: passed: 630
[05:25:52] Elapsed time: 28.014s total, 1.665s configuring, 25.932s building, 0.406s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[05:25:52] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[05:25:54] 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
[05:26:04] Starting KUnit Kernel (1/1)...
[05:26:04] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[05:26:04] ================= ttm_device (5 subtests) ==================
[05:26:04] [PASSED] ttm_device_init_basic
[05:26:04] [PASSED] ttm_device_init_multiple
[05:26:04] [PASSED] ttm_device_fini_basic
[05:26:04] [PASSED] ttm_device_init_no_vma_man
[05:26:04] ================== ttm_device_init_pools ==================
[05:26:04] [PASSED] No DMA allocations, no DMA32 required
[05:26:04] [PASSED] DMA allocations, DMA32 required
[05:26:04] [PASSED] No DMA allocations, DMA32 required
[05:26:04] [PASSED] DMA allocations, no DMA32 required
[05:26:04] ============== [PASSED] ttm_device_init_pools ==============
[05:26:04] =================== [PASSED] ttm_device ====================
[05:26:04] ================== ttm_pool (8 subtests) ===================
[05:26:04] ================== ttm_pool_alloc_basic ===================
[05:26:04] [PASSED] One page
[05:26:04] [PASSED] More than one page
[05:26:04] [PASSED] Above the allocation limit
[05:26:04] [PASSED] One page, with coherent DMA mappings enabled
[05:26:04] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[05:26:04] ============== [PASSED] ttm_pool_alloc_basic ===============
[05:26:04] ============== ttm_pool_alloc_basic_dma_addr ==============
[05:26:04] [PASSED] One page
[05:26:04] [PASSED] More than one page
[05:26:04] [PASSED] Above the allocation limit
[05:26:04] [PASSED] One page, with coherent DMA mappings enabled
[05:26:04] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[05:26:04] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[05:26:04] [PASSED] ttm_pool_alloc_order_caching_match
[05:26:04] [PASSED] ttm_pool_alloc_caching_mismatch
[05:26:04] [PASSED] ttm_pool_alloc_order_mismatch
[05:26:04] [PASSED] ttm_pool_free_dma_alloc
[05:26:04] [PASSED] ttm_pool_free_no_dma_alloc
[05:26:04] [PASSED] ttm_pool_fini_basic
[05:26:04] ==================== [PASSED] ttm_pool =====================
[05:26:04] ================ ttm_resource (8 subtests) =================
[05:26:04] ================= ttm_resource_init_basic =================
[05:26:04] [PASSED] Init resource in TTM_PL_SYSTEM
[05:26:04] [PASSED] Init resource in TTM_PL_VRAM
[05:26:04] [PASSED] Init resource in a private placement
[05:26:04] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[05:26:04] ============= [PASSED] ttm_resource_init_basic =============
[05:26:04] [PASSED] ttm_resource_init_pinned
[05:26:04] [PASSED] ttm_resource_fini_basic
[05:26:04] [PASSED] ttm_resource_manager_init_basic
[05:26:04] [PASSED] ttm_resource_manager_usage_basic
[05:26:04] [PASSED] ttm_resource_manager_set_used_basic
[05:26:04] [PASSED] ttm_sys_man_alloc_basic
[05:26:04] [PASSED] ttm_sys_man_free_basic
[05:26:04] ================== [PASSED] ttm_resource ===================
[05:26:04] =================== ttm_tt (15 subtests) ===================
[05:26:04] ==================== ttm_tt_init_basic ====================
[05:26:04] [PASSED] Page-aligned size
[05:26:04] [PASSED] Extra pages requested
[05:26:04] ================ [PASSED] ttm_tt_init_basic ================
[05:26:04] [PASSED] ttm_tt_init_misaligned
[05:26:04] [PASSED] ttm_tt_fini_basic
[05:26:04] [PASSED] ttm_tt_fini_sg
[05:26:04] [PASSED] ttm_tt_fini_shmem
[05:26:04] [PASSED] ttm_tt_create_basic
[05:26:04] [PASSED] ttm_tt_create_invalid_bo_type
[05:26:04] [PASSED] ttm_tt_create_ttm_exists
[05:26:04] [PASSED] ttm_tt_create_failed
[05:26:04] [PASSED] ttm_tt_destroy_basic
[05:26:04] [PASSED] ttm_tt_populate_null_ttm
[05:26:04] [PASSED] ttm_tt_populate_populated_ttm
[05:26:04] [PASSED] ttm_tt_unpopulate_basic
[05:26:04] [PASSED] ttm_tt_unpopulate_empty_ttm
[05:26:04] [PASSED] ttm_tt_swapin_basic
[05:26:04] ===================== [PASSED] ttm_tt ======================
[05:26:04] =================== ttm_bo (14 subtests) ===================
[05:26:04] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[05:26:04] [PASSED] Cannot be interrupted and sleeps
[05:26:04] [PASSED] Cannot be interrupted, locks straight away
[05:26:04] [PASSED] Can be interrupted, sleeps
[05:26:04] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[05:26:04] [PASSED] ttm_bo_reserve_locked_no_sleep
[05:26:04] [PASSED] ttm_bo_reserve_no_wait_ticket
[05:26:04] [PASSED] ttm_bo_reserve_double_resv
[05:26:04] [PASSED] ttm_bo_reserve_interrupted
[05:26:04] [PASSED] ttm_bo_reserve_deadlock
[05:26:04] [PASSED] ttm_bo_unreserve_basic
[05:26:04] [PASSED] ttm_bo_unreserve_pinned
[05:26:04] [PASSED] ttm_bo_unreserve_bulk
[05:26:04] [PASSED] ttm_bo_fini_basic
[05:26:04] [PASSED] ttm_bo_fini_shared_resv
[05:26:04] [PASSED] ttm_bo_pin_basic
[05:26:04] [PASSED] ttm_bo_pin_unpin_resource
[05:26:04] [PASSED] ttm_bo_multiple_pin_one_unpin
[05:26:04] ===================== [PASSED] ttm_bo ======================
[05:26:04] ============== ttm_bo_validate (21 subtests) ===============
[05:26:04] ============== ttm_bo_init_reserved_sys_man ===============
[05:26:04] [PASSED] Buffer object for userspace
[05:26:04] [PASSED] Kernel buffer object
[05:26:04] [PASSED] Shared buffer object
[05:26:04] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[05:26:04] ============== ttm_bo_init_reserved_mock_man ==============
[05:26:04] [PASSED] Buffer object for userspace
[05:26:04] [PASSED] Kernel buffer object
[05:26:04] [PASSED] Shared buffer object
[05:26:04] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[05:26:04] [PASSED] ttm_bo_init_reserved_resv
[05:26:04] ================== ttm_bo_validate_basic ==================
[05:26:04] [PASSED] Buffer object for userspace
[05:26:04] [PASSED] Kernel buffer object
[05:26:04] [PASSED] Shared buffer object
[05:26:04] ============== [PASSED] ttm_bo_validate_basic ==============
[05:26:04] [PASSED] ttm_bo_validate_invalid_placement
[05:26:04] ============= ttm_bo_validate_same_placement ==============
[05:26:04] [PASSED] System manager
[05:26:04] [PASSED] VRAM manager
[05:26:04] ========= [PASSED] ttm_bo_validate_same_placement ==========
[05:26:04] [PASSED] ttm_bo_validate_failed_alloc
[05:26:04] [PASSED] ttm_bo_validate_pinned
[05:26:04] [PASSED] ttm_bo_validate_busy_placement
[05:26:04] ================ ttm_bo_validate_multihop =================
[05:26:04] [PASSED] Buffer object for userspace
[05:26:04] [PASSED] Kernel buffer object
[05:26:04] [PASSED] Shared buffer object
[05:26:04] ============ [PASSED] ttm_bo_validate_multihop =============
[05:26:04] ========== ttm_bo_validate_no_placement_signaled ==========
[05:26:04] [PASSED] Buffer object in system domain, no page vector
[05:26:04] [PASSED] Buffer object in system domain with an existing page vector
[05:26:04] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[05:26:04] ======== ttm_bo_validate_no_placement_not_signaled ========
[05:26:04] [PASSED] Buffer object for userspace
[05:26:04] [PASSED] Kernel buffer object
[05:26:04] [PASSED] Shared buffer object
[05:26:04] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[05:26:04] [PASSED] ttm_bo_validate_move_fence_signaled
[05:26:04] ========= ttm_bo_validate_move_fence_not_signaled =========
[05:26:04] [PASSED] Waits for GPU
[05:26:04] [PASSED] Tries to lock straight away
[05:26:04] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[05:26:04] [PASSED] ttm_bo_validate_happy_evict
[05:26:04] [PASSED] ttm_bo_validate_all_pinned_evict
[05:26:04] [PASSED] ttm_bo_validate_allowed_only_evict
[05:26:04] [PASSED] ttm_bo_validate_deleted_evict
[05:26:04] [PASSED] ttm_bo_validate_busy_domain_evict
[05:26:04] [PASSED] ttm_bo_validate_evict_gutting
[05:26:04] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[05:26:04] ================= [PASSED] ttm_bo_validate =================
[05:26:04] ============================================================
[05:26:04] Testing complete. Ran 101 tests: passed: 101
[05:26:04] Elapsed time: 11.435s total, 1.658s configuring, 9.560s building, 0.176s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 18+ messages in thread* ✗ CI.checksparse: warning for LOBF fixes (rev5)
2026-02-04 5:02 [RESEND 0/5] LOBF fixes Ankit Nautiyal
` (5 preceding siblings ...)
2026-02-04 5:26 ` ✓ CI.KUnit: success for LOBF fixes (rev5) Patchwork
@ 2026-02-04 5:42 ` Patchwork
2026-02-04 6:00 ` ✗ Xe.CI.BAT: failure " Patchwork
` (7 subsequent siblings)
14 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2026-02-04 5:42 UTC (permalink / raw)
To: Ankit Nautiyal; +Cc: intel-xe
== Series Details ==
Series: LOBF fixes (rev5)
URL : https://patchwork.freedesktop.org/series/157554/
State : warning
== Summary ==
+ trap cleanup EXIT
+ KERNEL=/kernel
+ MT=/root/linux/maintainer-tools
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools /root/linux/maintainer-tools
Cloning into '/root/linux/maintainer-tools'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ make -C /root/linux/maintainer-tools
make: Entering directory '/root/linux/maintainer-tools'
cc -O2 -g -Wextra -o remap-log remap-log.c
make: Leaving directory '/root/linux/maintainer-tools'
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ /root/linux/maintainer-tools/dim sparse --fast 281c77cb27048fb125b7fca2bbe47ab21338d646
Sparse version: 0.6.4 (Ubuntu: 0.6.4-4ubuntu3)
Fast mode used, each commit won't be checked separately.
+drivers/gpu/drm/i915/display/intel_alpm.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_cx0_phy.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_ddi.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_display_debugfs.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_dp.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_psr.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_vrr.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 18+ messages in thread* ✗ Xe.CI.BAT: failure for LOBF fixes (rev5)
2026-02-04 5:02 [RESEND 0/5] LOBF fixes Ankit Nautiyal
` (6 preceding siblings ...)
2026-02-04 5:42 ` ✗ CI.checksparse: warning " Patchwork
@ 2026-02-04 6:00 ` Patchwork
2026-02-04 18:18 ` ✗ Xe.CI.FULL: " Patchwork
` (6 subsequent siblings)
14 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2026-02-04 6:00 UTC (permalink / raw)
To: Ankit Nautiyal; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 347 bytes --]
== Series Details ==
Series: LOBF fixes (rev5)
URL : https://patchwork.freedesktop.org/series/157554/
State : failure
== Summary ==
ERROR: The runconfig 'xe-4494-281c77cb27048fb125b7fca2bbe47ab21338d646_BAT' does not exist in the database
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v5/index.html
[-- Attachment #2: Type: text/html, Size: 912 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread* ✗ Xe.CI.FULL: failure for LOBF fixes (rev5)
2026-02-04 5:02 [RESEND 0/5] LOBF fixes Ankit Nautiyal
` (7 preceding siblings ...)
2026-02-04 6:00 ` ✗ Xe.CI.BAT: failure " Patchwork
@ 2026-02-04 18:18 ` Patchwork
2026-02-04 19:09 ` ✓ CI.KUnit: success for LOBF fixes (rev6) Patchwork
` (5 subsequent siblings)
14 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2026-02-04 18:18 UTC (permalink / raw)
To: Ankit Nautiyal; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 348 bytes --]
== Series Details ==
Series: LOBF fixes (rev5)
URL : https://patchwork.freedesktop.org/series/157554/
State : failure
== Summary ==
ERROR: The runconfig 'xe-4494-281c77cb27048fb125b7fca2bbe47ab21338d646_FULL' does not exist in the database
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v5/index.html
[-- Attachment #2: Type: text/html, Size: 913 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread* ✓ CI.KUnit: success for LOBF fixes (rev6)
2026-02-04 5:02 [RESEND 0/5] LOBF fixes Ankit Nautiyal
` (8 preceding siblings ...)
2026-02-04 18:18 ` ✗ Xe.CI.FULL: " Patchwork
@ 2026-02-04 19:09 ` Patchwork
2026-02-04 19:25 ` ✗ CI.checksparse: warning " Patchwork
` (4 subsequent siblings)
14 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2026-02-04 19:09 UTC (permalink / raw)
To: Ankit Nautiyal; +Cc: intel-xe
== Series Details ==
Series: LOBF fixes (rev6)
URL : https://patchwork.freedesktop.org/series/157554/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[19:08:35] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[19:08:39] 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
[19:09:12] Starting KUnit Kernel (1/1)...
[19:09:12] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[19:09:12] ================== guc_buf (11 subtests) ===================
[19:09:12] [PASSED] test_smallest
[19:09:12] [PASSED] test_largest
[19:09:12] [PASSED] test_granular
[19:09:12] [PASSED] test_unique
[19:09:12] [PASSED] test_overlap
[19:09:12] [PASSED] test_reusable
[19:09:12] [PASSED] test_too_big
[19:09:12] [PASSED] test_flush
[19:09:12] [PASSED] test_lookup
[19:09:12] [PASSED] test_data
[19:09:12] [PASSED] test_class
[19:09:12] ===================== [PASSED] guc_buf =====================
[19:09:12] =================== guc_dbm (7 subtests) ===================
[19:09:12] [PASSED] test_empty
[19:09:12] [PASSED] test_default
[19:09:12] ======================== test_size ========================
[19:09:12] [PASSED] 4
[19:09:12] [PASSED] 8
[19:09:12] [PASSED] 32
[19:09:12] [PASSED] 256
[19:09:12] ==================== [PASSED] test_size ====================
[19:09:12] ======================= test_reuse ========================
[19:09:12] [PASSED] 4
[19:09:12] [PASSED] 8
[19:09:12] [PASSED] 32
[19:09:12] [PASSED] 256
[19:09:12] =================== [PASSED] test_reuse ====================
[19:09:12] =================== test_range_overlap ====================
[19:09:12] [PASSED] 4
[19:09:12] [PASSED] 8
[19:09:12] [PASSED] 32
[19:09:12] [PASSED] 256
[19:09:12] =============== [PASSED] test_range_overlap ================
[19:09:12] =================== test_range_compact ====================
[19:09:12] [PASSED] 4
[19:09:12] [PASSED] 8
[19:09:12] [PASSED] 32
[19:09:12] [PASSED] 256
[19:09:12] =============== [PASSED] test_range_compact ================
[19:09:12] ==================== test_range_spare =====================
[19:09:12] [PASSED] 4
[19:09:12] [PASSED] 8
[19:09:12] [PASSED] 32
[19:09:12] [PASSED] 256
[19:09:12] ================ [PASSED] test_range_spare =================
[19:09:12] ===================== [PASSED] guc_dbm =====================
[19:09:12] =================== guc_idm (6 subtests) ===================
[19:09:12] [PASSED] bad_init
[19:09:12] [PASSED] no_init
[19:09:12] [PASSED] init_fini
[19:09:12] [PASSED] check_used
[19:09:12] [PASSED] check_quota
[19:09:12] [PASSED] check_all
[19:09:12] ===================== [PASSED] guc_idm =====================
[19:09:12] ================== no_relay (3 subtests) ===================
[19:09:12] [PASSED] xe_drops_guc2pf_if_not_ready
[19:09:12] [PASSED] xe_drops_guc2vf_if_not_ready
[19:09:12] [PASSED] xe_rejects_send_if_not_ready
[19:09:12] ==================== [PASSED] no_relay =====================
[19:09:12] ================== pf_relay (14 subtests) ==================
[19:09:12] [PASSED] pf_rejects_guc2pf_too_short
[19:09:12] [PASSED] pf_rejects_guc2pf_too_long
[19:09:12] [PASSED] pf_rejects_guc2pf_no_payload
[19:09:12] [PASSED] pf_fails_no_payload
[19:09:12] [PASSED] pf_fails_bad_origin
[19:09:12] [PASSED] pf_fails_bad_type
[19:09:12] [PASSED] pf_txn_reports_error
[19:09:12] [PASSED] pf_txn_sends_pf2guc
[19:09:12] [PASSED] pf_sends_pf2guc
[19:09:12] [SKIPPED] pf_loopback_nop
[19:09:12] [SKIPPED] pf_loopback_echo
[19:09:12] [SKIPPED] pf_loopback_fail
[19:09:12] [SKIPPED] pf_loopback_busy
[19:09:12] [SKIPPED] pf_loopback_retry
[19:09:12] ==================== [PASSED] pf_relay =====================
[19:09:12] ================== vf_relay (3 subtests) ===================
[19:09:12] [PASSED] vf_rejects_guc2vf_too_short
[19:09:12] [PASSED] vf_rejects_guc2vf_too_long
[19:09:12] [PASSED] vf_rejects_guc2vf_no_payload
[19:09:12] ==================== [PASSED] vf_relay =====================
[19:09:12] ================ pf_gt_config (6 subtests) =================
[19:09:12] [PASSED] fair_contexts_1vf
[19:09:12] [PASSED] fair_doorbells_1vf
[19:09:12] [PASSED] fair_ggtt_1vf
[19:09:12] ====================== fair_contexts ======================
[19:09:12] [PASSED] 1 VF
[19:09:12] [PASSED] 2 VFs
[19:09:12] [PASSED] 3 VFs
[19:09:12] [PASSED] 4 VFs
[19:09:12] [PASSED] 5 VFs
[19:09:12] [PASSED] 6 VFs
[19:09:12] [PASSED] 7 VFs
[19:09:12] [PASSED] 8 VFs
[19:09:12] [PASSED] 9 VFs
[19:09:12] [PASSED] 10 VFs
[19:09:12] [PASSED] 11 VFs
[19:09:12] [PASSED] 12 VFs
[19:09:12] [PASSED] 13 VFs
[19:09:12] [PASSED] 14 VFs
[19:09:12] [PASSED] 15 VFs
[19:09:12] [PASSED] 16 VFs
[19:09:12] [PASSED] 17 VFs
[19:09:12] [PASSED] 18 VFs
[19:09:12] [PASSED] 19 VFs
[19:09:12] [PASSED] 20 VFs
[19:09:12] [PASSED] 21 VFs
[19:09:12] [PASSED] 22 VFs
[19:09:12] [PASSED] 23 VFs
[19:09:12] [PASSED] 24 VFs
[19:09:12] [PASSED] 25 VFs
[19:09:12] [PASSED] 26 VFs
[19:09:12] [PASSED] 27 VFs
[19:09:12] [PASSED] 28 VFs
[19:09:12] [PASSED] 29 VFs
[19:09:12] [PASSED] 30 VFs
[19:09:12] [PASSED] 31 VFs
[19:09:12] [PASSED] 32 VFs
[19:09:12] [PASSED] 33 VFs
[19:09:12] [PASSED] 34 VFs
[19:09:12] [PASSED] 35 VFs
[19:09:12] [PASSED] 36 VFs
[19:09:12] [PASSED] 37 VFs
[19:09:12] [PASSED] 38 VFs
[19:09:12] [PASSED] 39 VFs
[19:09:12] [PASSED] 40 VFs
[19:09:12] [PASSED] 41 VFs
[19:09:12] [PASSED] 42 VFs
[19:09:12] [PASSED] 43 VFs
[19:09:12] [PASSED] 44 VFs
[19:09:12] [PASSED] 45 VFs
[19:09:12] [PASSED] 46 VFs
[19:09:12] [PASSED] 47 VFs
[19:09:12] [PASSED] 48 VFs
[19:09:12] [PASSED] 49 VFs
[19:09:12] [PASSED] 50 VFs
[19:09:12] [PASSED] 51 VFs
[19:09:12] [PASSED] 52 VFs
[19:09:12] [PASSED] 53 VFs
[19:09:12] [PASSED] 54 VFs
[19:09:12] [PASSED] 55 VFs
[19:09:12] [PASSED] 56 VFs
[19:09:12] [PASSED] 57 VFs
[19:09:12] [PASSED] 58 VFs
[19:09:12] [PASSED] 59 VFs
[19:09:12] [PASSED] 60 VFs
[19:09:12] [PASSED] 61 VFs
[19:09:12] [PASSED] 62 VFs
[19:09:12] [PASSED] 63 VFs
[19:09:12] ================== [PASSED] fair_contexts ==================
[19:09:12] ===================== fair_doorbells ======================
[19:09:12] [PASSED] 1 VF
[19:09:12] [PASSED] 2 VFs
[19:09:12] [PASSED] 3 VFs
[19:09:12] [PASSED] 4 VFs
[19:09:12] [PASSED] 5 VFs
[19:09:12] [PASSED] 6 VFs
[19:09:12] [PASSED] 7 VFs
[19:09:12] [PASSED] 8 VFs
[19:09:12] [PASSED] 9 VFs
[19:09:12] [PASSED] 10 VFs
[19:09:12] [PASSED] 11 VFs
[19:09:12] [PASSED] 12 VFs
[19:09:12] [PASSED] 13 VFs
[19:09:12] [PASSED] 14 VFs
[19:09:12] [PASSED] 15 VFs
[19:09:12] [PASSED] 16 VFs
[19:09:12] [PASSED] 17 VFs
[19:09:12] [PASSED] 18 VFs
[19:09:12] [PASSED] 19 VFs
[19:09:12] [PASSED] 20 VFs
[19:09:12] [PASSED] 21 VFs
[19:09:12] [PASSED] 22 VFs
[19:09:12] [PASSED] 23 VFs
[19:09:12] [PASSED] 24 VFs
[19:09:12] [PASSED] 25 VFs
[19:09:12] [PASSED] 26 VFs
[19:09:12] [PASSED] 27 VFs
[19:09:12] [PASSED] 28 VFs
[19:09:12] [PASSED] 29 VFs
[19:09:12] [PASSED] 30 VFs
[19:09:12] [PASSED] 31 VFs
[19:09:12] [PASSED] 32 VFs
[19:09:12] [PASSED] 33 VFs
[19:09:12] [PASSED] 34 VFs
[19:09:12] [PASSED] 35 VFs
[19:09:12] [PASSED] 36 VFs
[19:09:12] [PASSED] 37 VFs
[19:09:12] [PASSED] 38 VFs
[19:09:12] [PASSED] 39 VFs
[19:09:12] [PASSED] 40 VFs
[19:09:12] [PASSED] 41 VFs
[19:09:12] [PASSED] 42 VFs
[19:09:12] [PASSED] 43 VFs
[19:09:12] [PASSED] 44 VFs
[19:09:12] [PASSED] 45 VFs
[19:09:12] [PASSED] 46 VFs
[19:09:12] [PASSED] 47 VFs
[19:09:12] [PASSED] 48 VFs
[19:09:12] [PASSED] 49 VFs
[19:09:12] [PASSED] 50 VFs
[19:09:12] [PASSED] 51 VFs
[19:09:12] [PASSED] 52 VFs
[19:09:12] [PASSED] 53 VFs
[19:09:12] [PASSED] 54 VFs
[19:09:12] [PASSED] 55 VFs
[19:09:12] [PASSED] 56 VFs
[19:09:12] [PASSED] 57 VFs
[19:09:12] [PASSED] 58 VFs
[19:09:12] [PASSED] 59 VFs
[19:09:12] [PASSED] 60 VFs
[19:09:12] [PASSED] 61 VFs
[19:09:12] [PASSED] 62 VFs
[19:09:12] [PASSED] 63 VFs
[19:09:12] ================= [PASSED] fair_doorbells ==================
[19:09:12] ======================== fair_ggtt ========================
[19:09:12] [PASSED] 1 VF
[19:09:12] [PASSED] 2 VFs
[19:09:12] [PASSED] 3 VFs
[19:09:12] [PASSED] 4 VFs
[19:09:12] [PASSED] 5 VFs
[19:09:12] [PASSED] 6 VFs
[19:09:12] [PASSED] 7 VFs
[19:09:12] [PASSED] 8 VFs
[19:09:12] [PASSED] 9 VFs
[19:09:12] [PASSED] 10 VFs
[19:09:12] [PASSED] 11 VFs
[19:09:12] [PASSED] 12 VFs
[19:09:12] [PASSED] 13 VFs
[19:09:12] [PASSED] 14 VFs
[19:09:12] [PASSED] 15 VFs
[19:09:12] [PASSED] 16 VFs
[19:09:12] [PASSED] 17 VFs
[19:09:12] [PASSED] 18 VFs
[19:09:12] [PASSED] 19 VFs
[19:09:12] [PASSED] 20 VFs
[19:09:12] [PASSED] 21 VFs
[19:09:12] [PASSED] 22 VFs
[19:09:12] [PASSED] 23 VFs
[19:09:12] [PASSED] 24 VFs
[19:09:12] [PASSED] 25 VFs
[19:09:12] [PASSED] 26 VFs
[19:09:12] [PASSED] 27 VFs
[19:09:12] [PASSED] 28 VFs
[19:09:12] [PASSED] 29 VFs
[19:09:12] [PASSED] 30 VFs
[19:09:12] [PASSED] 31 VFs
[19:09:12] [PASSED] 32 VFs
[19:09:12] [PASSED] 33 VFs
[19:09:12] [PASSED] 34 VFs
[19:09:12] [PASSED] 35 VFs
[19:09:12] [PASSED] 36 VFs
[19:09:12] [PASSED] 37 VFs
[19:09:12] [PASSED] 38 VFs
[19:09:12] [PASSED] 39 VFs
[19:09:12] [PASSED] 40 VFs
[19:09:12] [PASSED] 41 VFs
[19:09:12] [PASSED] 42 VFs
[19:09:12] [PASSED] 43 VFs
[19:09:12] [PASSED] 44 VFs
[19:09:12] [PASSED] 45 VFs
[19:09:12] [PASSED] 46 VFs
[19:09:12] [PASSED] 47 VFs
[19:09:12] [PASSED] 48 VFs
[19:09:12] [PASSED] 49 VFs
[19:09:12] [PASSED] 50 VFs
[19:09:12] [PASSED] 51 VFs
[19:09:12] [PASSED] 52 VFs
[19:09:12] [PASSED] 53 VFs
[19:09:12] [PASSED] 54 VFs
[19:09:12] [PASSED] 55 VFs
[19:09:12] [PASSED] 56 VFs
[19:09:12] [PASSED] 57 VFs
[19:09:12] [PASSED] 58 VFs
[19:09:12] [PASSED] 59 VFs
[19:09:12] [PASSED] 60 VFs
[19:09:12] [PASSED] 61 VFs
[19:09:12] [PASSED] 62 VFs
[19:09:12] [PASSED] 63 VFs
[19:09:12] ==================== [PASSED] fair_ggtt ====================
[19:09:12] ================== [PASSED] pf_gt_config ===================
[19:09:12] ===================== lmtt (1 subtest) =====================
[19:09:12] ======================== test_ops =========================
[19:09:12] [PASSED] 2-level
[19:09:12] [PASSED] multi-level
[19:09:12] ==================== [PASSED] test_ops =====================
[19:09:12] ====================== [PASSED] lmtt =======================
[19:09:12] ================= pf_service (11 subtests) =================
[19:09:12] [PASSED] pf_negotiate_any
[19:09:12] [PASSED] pf_negotiate_base_match
[19:09:12] [PASSED] pf_negotiate_base_newer
[19:09:12] [PASSED] pf_negotiate_base_next
[19:09:12] [SKIPPED] pf_negotiate_base_older
[19:09:12] [PASSED] pf_negotiate_base_prev
[19:09:12] [PASSED] pf_negotiate_latest_match
[19:09:12] [PASSED] pf_negotiate_latest_newer
[19:09:12] [PASSED] pf_negotiate_latest_next
[19:09:12] [SKIPPED] pf_negotiate_latest_older
[19:09:12] [SKIPPED] pf_negotiate_latest_prev
[19:09:12] =================== [PASSED] pf_service ====================
[19:09:12] ================= xe_guc_g2g (2 subtests) ==================
[19:09:12] ============== xe_live_guc_g2g_kunit_default ==============
[19:09:12] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[19:09:12] ============== xe_live_guc_g2g_kunit_allmem ===============
[19:09:12] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[19:09:12] =================== [SKIPPED] xe_guc_g2g ===================
[19:09:12] =================== xe_mocs (2 subtests) ===================
[19:09:12] ================ xe_live_mocs_kernel_kunit ================
[19:09:12] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[19:09:12] ================ xe_live_mocs_reset_kunit =================
[19:09:12] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[19:09:12] ==================== [SKIPPED] xe_mocs =====================
[19:09:12] ================= xe_migrate (2 subtests) ==================
[19:09:12] ================= xe_migrate_sanity_kunit =================
[19:09:12] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[19:09:12] ================== xe_validate_ccs_kunit ==================
[19:09:12] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[19:09:12] =================== [SKIPPED] xe_migrate ===================
[19:09:12] ================== xe_dma_buf (1 subtest) ==================
[19:09:12] ==================== xe_dma_buf_kunit =====================
[19:09:12] ================ [SKIPPED] xe_dma_buf_kunit ================
[19:09:12] =================== [SKIPPED] xe_dma_buf ===================
[19:09:12] ================= xe_bo_shrink (1 subtest) =================
[19:09:12] =================== xe_bo_shrink_kunit ====================
[19:09:12] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[19:09:12] ================== [SKIPPED] xe_bo_shrink ==================
[19:09:12] ==================== xe_bo (2 subtests) ====================
[19:09:12] ================== xe_ccs_migrate_kunit ===================
[19:09:12] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[19:09:12] ==================== xe_bo_evict_kunit ====================
[19:09:12] =============== [SKIPPED] xe_bo_evict_kunit ================
[19:09:12] ===================== [SKIPPED] xe_bo ======================
[19:09:12] ==================== args (13 subtests) ====================
[19:09:12] [PASSED] count_args_test
[19:09:12] [PASSED] call_args_example
[19:09:12] [PASSED] call_args_test
[19:09:12] [PASSED] drop_first_arg_example
[19:09:12] [PASSED] drop_first_arg_test
[19:09:12] [PASSED] first_arg_example
[19:09:12] [PASSED] first_arg_test
[19:09:12] [PASSED] last_arg_example
[19:09:12] [PASSED] last_arg_test
[19:09:12] [PASSED] pick_arg_example
[19:09:12] [PASSED] if_args_example
[19:09:12] [PASSED] if_args_test
[19:09:12] [PASSED] sep_comma_example
[19:09:12] ====================== [PASSED] args =======================
[19:09:12] =================== xe_pci (3 subtests) ====================
[19:09:12] ==================== check_graphics_ip ====================
[19:09:12] [PASSED] 12.00 Xe_LP
[19:09:12] [PASSED] 12.10 Xe_LP+
[19:09:12] [PASSED] 12.55 Xe_HPG
[19:09:12] [PASSED] 12.60 Xe_HPC
[19:09:12] [PASSED] 12.70 Xe_LPG
[19:09:12] [PASSED] 12.71 Xe_LPG
[19:09:12] [PASSED] 12.74 Xe_LPG+
[19:09:12] [PASSED] 20.01 Xe2_HPG
[19:09:12] [PASSED] 20.02 Xe2_HPG
[19:09:12] [PASSED] 20.04 Xe2_LPG
[19:09:12] [PASSED] 30.00 Xe3_LPG
[19:09:12] [PASSED] 30.01 Xe3_LPG
[19:09:12] [PASSED] 30.03 Xe3_LPG
[19:09:12] [PASSED] 30.04 Xe3_LPG
[19:09:12] [PASSED] 30.05 Xe3_LPG
[19:09:12] [PASSED] 35.11 Xe3p_XPC
[19:09:12] ================ [PASSED] check_graphics_ip ================
[19:09:12] ===================== check_media_ip ======================
[19:09:12] [PASSED] 12.00 Xe_M
[19:09:12] [PASSED] 12.55 Xe_HPM
[19:09:12] [PASSED] 13.00 Xe_LPM+
[19:09:12] [PASSED] 13.01 Xe2_HPM
[19:09:12] [PASSED] 20.00 Xe2_LPM
[19:09:12] [PASSED] 30.00 Xe3_LPM
[19:09:12] [PASSED] 30.02 Xe3_LPM
[19:09:12] [PASSED] 35.00 Xe3p_LPM
[19:09:12] [PASSED] 35.03 Xe3p_HPM
[19:09:12] ================= [PASSED] check_media_ip ==================
[19:09:12] =================== check_platform_desc ===================
[19:09:12] [PASSED] 0x9A60 (TIGERLAKE)
[19:09:12] [PASSED] 0x9A68 (TIGERLAKE)
[19:09:12] [PASSED] 0x9A70 (TIGERLAKE)
[19:09:12] [PASSED] 0x9A40 (TIGERLAKE)
[19:09:12] [PASSED] 0x9A49 (TIGERLAKE)
[19:09:12] [PASSED] 0x9A59 (TIGERLAKE)
[19:09:12] [PASSED] 0x9A78 (TIGERLAKE)
[19:09:12] [PASSED] 0x9AC0 (TIGERLAKE)
[19:09:12] [PASSED] 0x9AC9 (TIGERLAKE)
[19:09:12] [PASSED] 0x9AD9 (TIGERLAKE)
[19:09:12] [PASSED] 0x9AF8 (TIGERLAKE)
[19:09:12] [PASSED] 0x4C80 (ROCKETLAKE)
[19:09:12] [PASSED] 0x4C8A (ROCKETLAKE)
[19:09:12] [PASSED] 0x4C8B (ROCKETLAKE)
[19:09:12] [PASSED] 0x4C8C (ROCKETLAKE)
[19:09:12] [PASSED] 0x4C90 (ROCKETLAKE)
[19:09:12] [PASSED] 0x4C9A (ROCKETLAKE)
[19:09:12] [PASSED] 0x4680 (ALDERLAKE_S)
[19:09:12] [PASSED] 0x4682 (ALDERLAKE_S)
[19:09:12] [PASSED] 0x4688 (ALDERLAKE_S)
[19:09:12] [PASSED] 0x468A (ALDERLAKE_S)
[19:09:12] [PASSED] 0x468B (ALDERLAKE_S)
[19:09:12] [PASSED] 0x4690 (ALDERLAKE_S)
[19:09:12] [PASSED] 0x4692 (ALDERLAKE_S)
[19:09:12] [PASSED] 0x4693 (ALDERLAKE_S)
[19:09:12] [PASSED] 0x46A0 (ALDERLAKE_P)
[19:09:12] [PASSED] 0x46A1 (ALDERLAKE_P)
[19:09:12] [PASSED] 0x46A2 (ALDERLAKE_P)
[19:09:12] [PASSED] 0x46A3 (ALDERLAKE_P)
[19:09:12] [PASSED] 0x46A6 (ALDERLAKE_P)
[19:09:12] [PASSED] 0x46A8 (ALDERLAKE_P)
[19:09:12] [PASSED] 0x46AA (ALDERLAKE_P)
[19:09:12] [PASSED] 0x462A (ALDERLAKE_P)
[19:09:12] [PASSED] 0x4626 (ALDERLAKE_P)
[19:09:12] [PASSED] 0x4628 (ALDERLAKE_P)
stty: 'standard input': Inappropriate ioctl for device
[19:09:12] [PASSED] 0x46B0 (ALDERLAKE_P)
[19:09:12] [PASSED] 0x46B1 (ALDERLAKE_P)
[19:09:12] [PASSED] 0x46B2 (ALDERLAKE_P)
[19:09:12] [PASSED] 0x46B3 (ALDERLAKE_P)
[19:09:12] [PASSED] 0x46C0 (ALDERLAKE_P)
[19:09:12] [PASSED] 0x46C1 (ALDERLAKE_P)
[19:09:12] [PASSED] 0x46C2 (ALDERLAKE_P)
[19:09:12] [PASSED] 0x46C3 (ALDERLAKE_P)
[19:09:12] [PASSED] 0x46D0 (ALDERLAKE_N)
[19:09:12] [PASSED] 0x46D1 (ALDERLAKE_N)
[19:09:12] [PASSED] 0x46D2 (ALDERLAKE_N)
[19:09:12] [PASSED] 0x46D3 (ALDERLAKE_N)
[19:09:12] [PASSED] 0x46D4 (ALDERLAKE_N)
[19:09:12] [PASSED] 0xA721 (ALDERLAKE_P)
[19:09:12] [PASSED] 0xA7A1 (ALDERLAKE_P)
[19:09:12] [PASSED] 0xA7A9 (ALDERLAKE_P)
[19:09:12] [PASSED] 0xA7AC (ALDERLAKE_P)
[19:09:12] [PASSED] 0xA7AD (ALDERLAKE_P)
[19:09:12] [PASSED] 0xA720 (ALDERLAKE_P)
[19:09:12] [PASSED] 0xA7A0 (ALDERLAKE_P)
[19:09:12] [PASSED] 0xA7A8 (ALDERLAKE_P)
[19:09:12] [PASSED] 0xA7AA (ALDERLAKE_P)
[19:09:12] [PASSED] 0xA7AB (ALDERLAKE_P)
[19:09:12] [PASSED] 0xA780 (ALDERLAKE_S)
[19:09:12] [PASSED] 0xA781 (ALDERLAKE_S)
[19:09:12] [PASSED] 0xA782 (ALDERLAKE_S)
[19:09:12] [PASSED] 0xA783 (ALDERLAKE_S)
[19:09:12] [PASSED] 0xA788 (ALDERLAKE_S)
[19:09:12] [PASSED] 0xA789 (ALDERLAKE_S)
[19:09:12] [PASSED] 0xA78A (ALDERLAKE_S)
[19:09:12] [PASSED] 0xA78B (ALDERLAKE_S)
[19:09:12] [PASSED] 0x4905 (DG1)
[19:09:12] [PASSED] 0x4906 (DG1)
[19:09:12] [PASSED] 0x4907 (DG1)
[19:09:12] [PASSED] 0x4908 (DG1)
[19:09:12] [PASSED] 0x4909 (DG1)
[19:09:12] [PASSED] 0x56C0 (DG2)
[19:09:12] [PASSED] 0x56C2 (DG2)
[19:09:12] [PASSED] 0x56C1 (DG2)
[19:09:12] [PASSED] 0x7D51 (METEORLAKE)
[19:09:12] [PASSED] 0x7DD1 (METEORLAKE)
[19:09:12] [PASSED] 0x7D41 (METEORLAKE)
[19:09:12] [PASSED] 0x7D67 (METEORLAKE)
[19:09:12] [PASSED] 0xB640 (METEORLAKE)
[19:09:12] [PASSED] 0x56A0 (DG2)
[19:09:12] [PASSED] 0x56A1 (DG2)
[19:09:12] [PASSED] 0x56A2 (DG2)
[19:09:12] [PASSED] 0x56BE (DG2)
[19:09:12] [PASSED] 0x56BF (DG2)
[19:09:12] [PASSED] 0x5690 (DG2)
[19:09:12] [PASSED] 0x5691 (DG2)
[19:09:12] [PASSED] 0x5692 (DG2)
[19:09:12] [PASSED] 0x56A5 (DG2)
[19:09:12] [PASSED] 0x56A6 (DG2)
[19:09:12] [PASSED] 0x56B0 (DG2)
[19:09:12] [PASSED] 0x56B1 (DG2)
[19:09:12] [PASSED] 0x56BA (DG2)
[19:09:12] [PASSED] 0x56BB (DG2)
[19:09:12] [PASSED] 0x56BC (DG2)
[19:09:12] [PASSED] 0x56BD (DG2)
[19:09:12] [PASSED] 0x5693 (DG2)
[19:09:12] [PASSED] 0x5694 (DG2)
[19:09:12] [PASSED] 0x5695 (DG2)
[19:09:12] [PASSED] 0x56A3 (DG2)
[19:09:12] [PASSED] 0x56A4 (DG2)
[19:09:12] [PASSED] 0x56B2 (DG2)
[19:09:12] [PASSED] 0x56B3 (DG2)
[19:09:12] [PASSED] 0x5696 (DG2)
[19:09:12] [PASSED] 0x5697 (DG2)
[19:09:12] [PASSED] 0xB69 (PVC)
[19:09:12] [PASSED] 0xB6E (PVC)
[19:09:12] [PASSED] 0xBD4 (PVC)
[19:09:12] [PASSED] 0xBD5 (PVC)
[19:09:12] [PASSED] 0xBD6 (PVC)
[19:09:12] [PASSED] 0xBD7 (PVC)
[19:09:12] [PASSED] 0xBD8 (PVC)
[19:09:12] [PASSED] 0xBD9 (PVC)
[19:09:12] [PASSED] 0xBDA (PVC)
[19:09:12] [PASSED] 0xBDB (PVC)
[19:09:12] [PASSED] 0xBE0 (PVC)
[19:09:12] [PASSED] 0xBE1 (PVC)
[19:09:12] [PASSED] 0xBE5 (PVC)
[19:09:12] [PASSED] 0x7D40 (METEORLAKE)
[19:09:12] [PASSED] 0x7D45 (METEORLAKE)
[19:09:12] [PASSED] 0x7D55 (METEORLAKE)
[19:09:12] [PASSED] 0x7D60 (METEORLAKE)
[19:09:12] [PASSED] 0x7DD5 (METEORLAKE)
[19:09:12] [PASSED] 0x6420 (LUNARLAKE)
[19:09:12] [PASSED] 0x64A0 (LUNARLAKE)
[19:09:12] [PASSED] 0x64B0 (LUNARLAKE)
[19:09:12] [PASSED] 0xE202 (BATTLEMAGE)
[19:09:12] [PASSED] 0xE209 (BATTLEMAGE)
[19:09:12] [PASSED] 0xE20B (BATTLEMAGE)
[19:09:12] [PASSED] 0xE20C (BATTLEMAGE)
[19:09:12] [PASSED] 0xE20D (BATTLEMAGE)
[19:09:12] [PASSED] 0xE210 (BATTLEMAGE)
[19:09:12] [PASSED] 0xE211 (BATTLEMAGE)
[19:09:12] [PASSED] 0xE212 (BATTLEMAGE)
[19:09:12] [PASSED] 0xE216 (BATTLEMAGE)
[19:09:12] [PASSED] 0xE220 (BATTLEMAGE)
[19:09:12] [PASSED] 0xE221 (BATTLEMAGE)
[19:09:12] [PASSED] 0xE222 (BATTLEMAGE)
[19:09:12] [PASSED] 0xE223 (BATTLEMAGE)
[19:09:12] [PASSED] 0xB080 (PANTHERLAKE)
[19:09:12] [PASSED] 0xB081 (PANTHERLAKE)
[19:09:12] [PASSED] 0xB082 (PANTHERLAKE)
[19:09:12] [PASSED] 0xB083 (PANTHERLAKE)
[19:09:12] [PASSED] 0xB084 (PANTHERLAKE)
[19:09:12] [PASSED] 0xB085 (PANTHERLAKE)
[19:09:12] [PASSED] 0xB086 (PANTHERLAKE)
[19:09:12] [PASSED] 0xB087 (PANTHERLAKE)
[19:09:12] [PASSED] 0xB08F (PANTHERLAKE)
[19:09:12] [PASSED] 0xB090 (PANTHERLAKE)
[19:09:12] [PASSED] 0xB0A0 (PANTHERLAKE)
[19:09:12] [PASSED] 0xB0B0 (PANTHERLAKE)
[19:09:12] [PASSED] 0xFD80 (PANTHERLAKE)
[19:09:12] [PASSED] 0xFD81 (PANTHERLAKE)
[19:09:12] [PASSED] 0xD740 (NOVALAKE_S)
[19:09:12] [PASSED] 0xD741 (NOVALAKE_S)
[19:09:12] [PASSED] 0xD742 (NOVALAKE_S)
[19:09:12] [PASSED] 0xD743 (NOVALAKE_S)
[19:09:12] [PASSED] 0xD744 (NOVALAKE_S)
[19:09:12] [PASSED] 0xD745 (NOVALAKE_S)
[19:09:12] [PASSED] 0x674C (CRESCENTISLAND)
[19:09:12] =============== [PASSED] check_platform_desc ===============
[19:09:12] ===================== [PASSED] xe_pci ======================
[19:09:12] =================== xe_rtp (2 subtests) ====================
[19:09:12] =============== xe_rtp_process_to_sr_tests ================
[19:09:12] [PASSED] coalesce-same-reg
[19:09:12] [PASSED] no-match-no-add
[19:09:12] [PASSED] match-or
[19:09:12] [PASSED] match-or-xfail
[19:09:12] [PASSED] no-match-no-add-multiple-rules
[19:09:12] [PASSED] two-regs-two-entries
[19:09:12] [PASSED] clr-one-set-other
[19:09:12] [PASSED] set-field
[19:09:12] [PASSED] conflict-duplicate
[19:09:12] [PASSED] conflict-not-disjoint
[19:09:12] [PASSED] conflict-reg-type
[19:09:12] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[19:09:12] ================== xe_rtp_process_tests ===================
[19:09:12] [PASSED] active1
[19:09:12] [PASSED] active2
[19:09:12] [PASSED] active-inactive
[19:09:12] [PASSED] inactive-active
[19:09:12] [PASSED] inactive-1st_or_active-inactive
[19:09:12] [PASSED] inactive-2nd_or_active-inactive
[19:09:12] [PASSED] inactive-last_or_active-inactive
[19:09:12] [PASSED] inactive-no_or_active-inactive
[19:09:12] ============== [PASSED] xe_rtp_process_tests ===============
[19:09:12] ===================== [PASSED] xe_rtp ======================
[19:09:12] ==================== xe_wa (1 subtest) =====================
[19:09:12] ======================== xe_wa_gt =========================
[19:09:12] [PASSED] TIGERLAKE B0
[19:09:12] [PASSED] DG1 A0
[19:09:12] [PASSED] DG1 B0
[19:09:12] [PASSED] ALDERLAKE_S A0
[19:09:12] [PASSED] ALDERLAKE_S B0
[19:09:12] [PASSED] ALDERLAKE_S C0
[19:09:12] [PASSED] ALDERLAKE_S D0
[19:09:12] [PASSED] ALDERLAKE_P A0
[19:09:12] [PASSED] ALDERLAKE_P B0
[19:09:12] [PASSED] ALDERLAKE_P C0
[19:09:12] [PASSED] ALDERLAKE_S RPLS D0
[19:09:12] [PASSED] ALDERLAKE_P RPLU E0
[19:09:12] [PASSED] DG2 G10 C0
[19:09:12] [PASSED] DG2 G11 B1
[19:09:12] [PASSED] DG2 G12 A1
[19:09:12] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[19:09:12] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[19:09:12] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[19:09:12] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[19:09:12] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[19:09:12] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[19:09:12] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[19:09:12] ==================== [PASSED] xe_wa_gt =====================
[19:09:12] ====================== [PASSED] xe_wa ======================
[19:09:12] ============================================================
[19:09:12] Testing complete. Ran 512 tests: passed: 494, skipped: 18
[19:09:12] Elapsed time: 37.170s total, 4.247s configuring, 32.406s building, 0.471s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[19:09:12] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[19:09:14] 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
[19:09:40] Starting KUnit Kernel (1/1)...
[19:09:40] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[19:09:40] ============ drm_test_pick_cmdline (2 subtests) ============
[19:09:40] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[19:09:40] =============== drm_test_pick_cmdline_named ===============
[19:09:40] [PASSED] NTSC
[19:09:40] [PASSED] NTSC-J
[19:09:40] [PASSED] PAL
[19:09:40] [PASSED] PAL-M
[19:09:40] =========== [PASSED] drm_test_pick_cmdline_named ===========
[19:09:40] ============== [PASSED] drm_test_pick_cmdline ==============
[19:09:40] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[19:09:40] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[19:09:40] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[19:09:40] =========== drm_validate_clone_mode (2 subtests) ===========
[19:09:40] ============== drm_test_check_in_clone_mode ===============
[19:09:40] [PASSED] in_clone_mode
[19:09:40] [PASSED] not_in_clone_mode
[19:09:40] ========== [PASSED] drm_test_check_in_clone_mode ===========
[19:09:40] =============== drm_test_check_valid_clones ===============
[19:09:40] [PASSED] not_in_clone_mode
[19:09:40] [PASSED] valid_clone
[19:09:40] [PASSED] invalid_clone
[19:09:40] =========== [PASSED] drm_test_check_valid_clones ===========
[19:09:40] ============= [PASSED] drm_validate_clone_mode =============
[19:09:40] ============= drm_validate_modeset (1 subtest) =============
[19:09:40] [PASSED] drm_test_check_connector_changed_modeset
[19:09:40] ============== [PASSED] drm_validate_modeset ===============
[19:09:40] ====== drm_test_bridge_get_current_state (2 subtests) ======
[19:09:40] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[19:09:40] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[19:09:40] ======== [PASSED] drm_test_bridge_get_current_state ========
[19:09:40] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[19:09:40] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[19:09:40] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[19:09:40] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[19:09:40] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[19:09:40] ============== drm_bridge_alloc (2 subtests) ===============
[19:09:40] [PASSED] drm_test_drm_bridge_alloc_basic
[19:09:40] [PASSED] drm_test_drm_bridge_alloc_get_put
[19:09:40] ================ [PASSED] drm_bridge_alloc =================
[19:09:40] ================== drm_buddy (9 subtests) ==================
[19:09:40] [PASSED] drm_test_buddy_alloc_limit
[19:09:40] [PASSED] drm_test_buddy_alloc_optimistic
[19:09:40] [PASSED] drm_test_buddy_alloc_pessimistic
[19:09:40] [PASSED] drm_test_buddy_alloc_pathological
[19:09:40] [PASSED] drm_test_buddy_alloc_contiguous
[19:09:40] [PASSED] drm_test_buddy_alloc_clear
[19:09:40] [PASSED] drm_test_buddy_alloc_range_bias
[19:09:40] [PASSED] drm_test_buddy_fragmentation_performance
[19:09:40] [PASSED] drm_test_buddy_alloc_exceeds_max_order
[19:09:40] ==================== [PASSED] drm_buddy ====================
[19:09:40] ============= drm_cmdline_parser (40 subtests) =============
[19:09:40] [PASSED] drm_test_cmdline_force_d_only
[19:09:40] [PASSED] drm_test_cmdline_force_D_only_dvi
[19:09:40] [PASSED] drm_test_cmdline_force_D_only_hdmi
[19:09:40] [PASSED] drm_test_cmdline_force_D_only_not_digital
[19:09:40] [PASSED] drm_test_cmdline_force_e_only
[19:09:40] [PASSED] drm_test_cmdline_res
[19:09:40] [PASSED] drm_test_cmdline_res_vesa
[19:09:40] [PASSED] drm_test_cmdline_res_vesa_rblank
[19:09:40] [PASSED] drm_test_cmdline_res_rblank
[19:09:40] [PASSED] drm_test_cmdline_res_bpp
[19:09:40] [PASSED] drm_test_cmdline_res_refresh
[19:09:40] [PASSED] drm_test_cmdline_res_bpp_refresh
[19:09:40] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[19:09:40] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[19:09:40] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[19:09:40] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[19:09:40] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[19:09:40] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[19:09:40] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[19:09:40] [PASSED] drm_test_cmdline_res_margins_force_on
[19:09:40] [PASSED] drm_test_cmdline_res_vesa_margins
[19:09:40] [PASSED] drm_test_cmdline_name
[19:09:40] [PASSED] drm_test_cmdline_name_bpp
[19:09:40] [PASSED] drm_test_cmdline_name_option
[19:09:40] [PASSED] drm_test_cmdline_name_bpp_option
[19:09:40] [PASSED] drm_test_cmdline_rotate_0
[19:09:40] [PASSED] drm_test_cmdline_rotate_90
[19:09:40] [PASSED] drm_test_cmdline_rotate_180
[19:09:40] [PASSED] drm_test_cmdline_rotate_270
[19:09:40] [PASSED] drm_test_cmdline_hmirror
[19:09:40] [PASSED] drm_test_cmdline_vmirror
[19:09:40] [PASSED] drm_test_cmdline_margin_options
[19:09:40] [PASSED] drm_test_cmdline_multiple_options
[19:09:40] [PASSED] drm_test_cmdline_bpp_extra_and_option
[19:09:40] [PASSED] drm_test_cmdline_extra_and_option
[19:09:40] [PASSED] drm_test_cmdline_freestanding_options
[19:09:40] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[19:09:40] [PASSED] drm_test_cmdline_panel_orientation
[19:09:40] ================ drm_test_cmdline_invalid =================
[19:09:40] [PASSED] margin_only
[19:09:40] [PASSED] interlace_only
[19:09:40] [PASSED] res_missing_x
[19:09:40] [PASSED] res_missing_y
[19:09:40] [PASSED] res_bad_y
[19:09:40] [PASSED] res_missing_y_bpp
[19:09:40] [PASSED] res_bad_bpp
[19:09:40] [PASSED] res_bad_refresh
[19:09:40] [PASSED] res_bpp_refresh_force_on_off
[19:09:40] [PASSED] res_invalid_mode
[19:09:40] [PASSED] res_bpp_wrong_place_mode
[19:09:40] [PASSED] name_bpp_refresh
[19:09:40] [PASSED] name_refresh
[19:09:40] [PASSED] name_refresh_wrong_mode
[19:09:40] [PASSED] name_refresh_invalid_mode
[19:09:40] [PASSED] rotate_multiple
[19:09:40] [PASSED] rotate_invalid_val
[19:09:40] [PASSED] rotate_truncated
[19:09:40] [PASSED] invalid_option
[19:09:40] [PASSED] invalid_tv_option
[19:09:40] [PASSED] truncated_tv_option
[19:09:40] ============ [PASSED] drm_test_cmdline_invalid =============
[19:09:40] =============== drm_test_cmdline_tv_options ===============
[19:09:40] [PASSED] NTSC
[19:09:40] [PASSED] NTSC_443
[19:09:40] [PASSED] NTSC_J
[19:09:40] [PASSED] PAL
[19:09:40] [PASSED] PAL_M
[19:09:40] [PASSED] PAL_N
[19:09:40] [PASSED] SECAM
[19:09:40] [PASSED] MONO_525
[19:09:40] [PASSED] MONO_625
[19:09:40] =========== [PASSED] drm_test_cmdline_tv_options ===========
[19:09:40] =============== [PASSED] drm_cmdline_parser ================
[19:09:40] ========== drmm_connector_hdmi_init (20 subtests) ==========
[19:09:40] [PASSED] drm_test_connector_hdmi_init_valid
[19:09:40] [PASSED] drm_test_connector_hdmi_init_bpc_8
[19:09:40] [PASSED] drm_test_connector_hdmi_init_bpc_10
[19:09:40] [PASSED] drm_test_connector_hdmi_init_bpc_12
[19:09:40] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[19:09:40] [PASSED] drm_test_connector_hdmi_init_bpc_null
[19:09:40] [PASSED] drm_test_connector_hdmi_init_formats_empty
[19:09:40] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[19:09:40] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[19:09:40] [PASSED] supported_formats=0x9 yuv420_allowed=1
[19:09:40] [PASSED] supported_formats=0x9 yuv420_allowed=0
[19:09:40] [PASSED] supported_formats=0x3 yuv420_allowed=1
[19:09:40] [PASSED] supported_formats=0x3 yuv420_allowed=0
[19:09:40] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[19:09:40] [PASSED] drm_test_connector_hdmi_init_null_ddc
[19:09:40] [PASSED] drm_test_connector_hdmi_init_null_product
[19:09:40] [PASSED] drm_test_connector_hdmi_init_null_vendor
[19:09:40] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[19:09:40] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[19:09:40] [PASSED] drm_test_connector_hdmi_init_product_valid
[19:09:40] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[19:09:40] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[19:09:40] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[19:09:40] ========= drm_test_connector_hdmi_init_type_valid =========
[19:09:40] [PASSED] HDMI-A
[19:09:40] [PASSED] HDMI-B
[19:09:40] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[19:09:40] ======== drm_test_connector_hdmi_init_type_invalid ========
[19:09:40] [PASSED] Unknown
[19:09:40] [PASSED] VGA
[19:09:40] [PASSED] DVI-I
[19:09:40] [PASSED] DVI-D
[19:09:40] [PASSED] DVI-A
[19:09:40] [PASSED] Composite
[19:09:40] [PASSED] SVIDEO
[19:09:40] [PASSED] LVDS
[19:09:40] [PASSED] Component
[19:09:40] [PASSED] DIN
[19:09:40] [PASSED] DP
[19:09:40] [PASSED] TV
[19:09:40] [PASSED] eDP
[19:09:40] [PASSED] Virtual
[19:09:40] [PASSED] DSI
[19:09:40] [PASSED] DPI
[19:09:40] [PASSED] Writeback
[19:09:40] [PASSED] SPI
[19:09:40] [PASSED] USB
[19:09:40] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[19:09:40] ============ [PASSED] drmm_connector_hdmi_init =============
[19:09:40] ============= drmm_connector_init (3 subtests) =============
[19:09:40] [PASSED] drm_test_drmm_connector_init
[19:09:40] [PASSED] drm_test_drmm_connector_init_null_ddc
[19:09:40] ========= drm_test_drmm_connector_init_type_valid =========
[19:09:40] [PASSED] Unknown
[19:09:40] [PASSED] VGA
[19:09:40] [PASSED] DVI-I
[19:09:40] [PASSED] DVI-D
[19:09:40] [PASSED] DVI-A
[19:09:40] [PASSED] Composite
[19:09:40] [PASSED] SVIDEO
[19:09:40] [PASSED] LVDS
[19:09:40] [PASSED] Component
[19:09:40] [PASSED] DIN
[19:09:40] [PASSED] DP
[19:09:40] [PASSED] HDMI-A
[19:09:40] [PASSED] HDMI-B
[19:09:40] [PASSED] TV
[19:09:40] [PASSED] eDP
[19:09:40] [PASSED] Virtual
[19:09:40] [PASSED] DSI
[19:09:40] [PASSED] DPI
[19:09:40] [PASSED] Writeback
[19:09:40] [PASSED] SPI
[19:09:40] [PASSED] USB
[19:09:40] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[19:09:40] =============== [PASSED] drmm_connector_init ===============
[19:09:40] ========= drm_connector_dynamic_init (6 subtests) ==========
[19:09:40] [PASSED] drm_test_drm_connector_dynamic_init
[19:09:40] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[19:09:40] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[19:09:40] [PASSED] drm_test_drm_connector_dynamic_init_properties
[19:09:40] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[19:09:40] [PASSED] Unknown
[19:09:40] [PASSED] VGA
[19:09:40] [PASSED] DVI-I
[19:09:40] [PASSED] DVI-D
[19:09:40] [PASSED] DVI-A
[19:09:40] [PASSED] Composite
[19:09:40] [PASSED] SVIDEO
[19:09:40] [PASSED] LVDS
[19:09:40] [PASSED] Component
[19:09:40] [PASSED] DIN
[19:09:40] [PASSED] DP
[19:09:40] [PASSED] HDMI-A
[19:09:40] [PASSED] HDMI-B
[19:09:40] [PASSED] TV
[19:09:40] [PASSED] eDP
[19:09:40] [PASSED] Virtual
[19:09:40] [PASSED] DSI
[19:09:40] [PASSED] DPI
[19:09:40] [PASSED] Writeback
[19:09:40] [PASSED] SPI
[19:09:40] [PASSED] USB
[19:09:40] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[19:09:40] ======== drm_test_drm_connector_dynamic_init_name =========
[19:09:40] [PASSED] Unknown
[19:09:40] [PASSED] VGA
[19:09:40] [PASSED] DVI-I
[19:09:40] [PASSED] DVI-D
[19:09:40] [PASSED] DVI-A
[19:09:40] [PASSED] Composite
[19:09:40] [PASSED] SVIDEO
[19:09:40] [PASSED] LVDS
[19:09:40] [PASSED] Component
[19:09:40] [PASSED] DIN
[19:09:40] [PASSED] DP
[19:09:40] [PASSED] HDMI-A
[19:09:40] [PASSED] HDMI-B
[19:09:40] [PASSED] TV
[19:09:40] [PASSED] eDP
[19:09:40] [PASSED] Virtual
[19:09:40] [PASSED] DSI
[19:09:40] [PASSED] DPI
[19:09:40] [PASSED] Writeback
[19:09:40] [PASSED] SPI
[19:09:40] [PASSED] USB
[19:09:40] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[19:09:40] =========== [PASSED] drm_connector_dynamic_init ============
[19:09:40] ==== drm_connector_dynamic_register_early (4 subtests) =====
[19:09:40] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[19:09:40] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[19:09:40] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[19:09:40] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[19:09:40] ====== [PASSED] drm_connector_dynamic_register_early =======
[19:09:40] ======= drm_connector_dynamic_register (7 subtests) ========
[19:09:40] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[19:09:40] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[19:09:40] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[19:09:40] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[19:09:40] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[19:09:40] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[19:09:40] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[19:09:40] ========= [PASSED] drm_connector_dynamic_register ==========
[19:09:40] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[19:09:40] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[19:09:40] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[19:09:40] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[19:09:40] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[19:09:40] ========== drm_test_get_tv_mode_from_name_valid ===========
[19:09:40] [PASSED] NTSC
[19:09:40] [PASSED] NTSC-443
[19:09:40] [PASSED] NTSC-J
[19:09:40] [PASSED] PAL
[19:09:40] [PASSED] PAL-M
[19:09:40] [PASSED] PAL-N
[19:09:40] [PASSED] SECAM
[19:09:40] [PASSED] Mono
[19:09:40] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[19:09:40] [PASSED] drm_test_get_tv_mode_from_name_truncated
[19:09:40] ============ [PASSED] drm_get_tv_mode_from_name ============
[19:09:40] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[19:09:40] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[19:09:40] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[19:09:40] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[19:09:40] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[19:09:40] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[19:09:40] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[19:09:40] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[19:09:40] [PASSED] VIC 96
[19:09:40] [PASSED] VIC 97
[19:09:40] [PASSED] VIC 101
[19:09:40] [PASSED] VIC 102
[19:09:40] [PASSED] VIC 106
[19:09:40] [PASSED] VIC 107
[19:09:40] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[19:09:40] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[19:09:40] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[19:09:40] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[19:09:40] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[19:09:40] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[19:09:40] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[19:09:40] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[19:09:40] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[19:09:40] [PASSED] Automatic
[19:09:40] [PASSED] Full
[19:09:40] [PASSED] Limited 16:235
[19:09:40] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[19:09:40] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[19:09:40] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[19:09:40] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[19:09:40] === drm_test_drm_hdmi_connector_get_output_format_name ====
[19:09:40] [PASSED] RGB
[19:09:40] [PASSED] YUV 4:2:0
[19:09:40] [PASSED] YUV 4:2:2
[19:09:40] [PASSED] YUV 4:4:4
[19:09:40] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[19:09:40] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[19:09:40] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[19:09:40] ============= drm_damage_helper (21 subtests) ==============
[19:09:40] [PASSED] drm_test_damage_iter_no_damage
[19:09:40] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[19:09:40] [PASSED] drm_test_damage_iter_no_damage_src_moved
[19:09:40] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[19:09:40] [PASSED] drm_test_damage_iter_no_damage_not_visible
[19:09:40] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[19:09:40] [PASSED] drm_test_damage_iter_no_damage_no_fb
[19:09:40] [PASSED] drm_test_damage_iter_simple_damage
[19:09:40] [PASSED] drm_test_damage_iter_single_damage
[19:09:40] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[19:09:40] [PASSED] drm_test_damage_iter_single_damage_outside_src
[19:09:40] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[19:09:40] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[19:09:40] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[19:09:40] [PASSED] drm_test_damage_iter_single_damage_src_moved
[19:09:40] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[19:09:40] [PASSED] drm_test_damage_iter_damage
[19:09:40] [PASSED] drm_test_damage_iter_damage_one_intersect
[19:09:40] [PASSED] drm_test_damage_iter_damage_one_outside
[19:09:40] [PASSED] drm_test_damage_iter_damage_src_moved
[19:09:40] [PASSED] drm_test_damage_iter_damage_not_visible
[19:09:40] ================ [PASSED] drm_damage_helper ================
[19:09:40] ============== drm_dp_mst_helper (3 subtests) ==============
[19:09:40] ============== drm_test_dp_mst_calc_pbn_mode ==============
[19:09:40] [PASSED] Clock 154000 BPP 30 DSC disabled
[19:09:40] [PASSED] Clock 234000 BPP 30 DSC disabled
[19:09:40] [PASSED] Clock 297000 BPP 24 DSC disabled
[19:09:40] [PASSED] Clock 332880 BPP 24 DSC enabled
[19:09:40] [PASSED] Clock 324540 BPP 24 DSC enabled
[19:09:40] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[19:09:40] ============== drm_test_dp_mst_calc_pbn_div ===============
[19:09:40] [PASSED] Link rate 2000000 lane count 4
[19:09:40] [PASSED] Link rate 2000000 lane count 2
[19:09:40] [PASSED] Link rate 2000000 lane count 1
[19:09:40] [PASSED] Link rate 1350000 lane count 4
[19:09:40] [PASSED] Link rate 1350000 lane count 2
[19:09:40] [PASSED] Link rate 1350000 lane count 1
[19:09:40] [PASSED] Link rate 1000000 lane count 4
[19:09:40] [PASSED] Link rate 1000000 lane count 2
[19:09:40] [PASSED] Link rate 1000000 lane count 1
[19:09:40] [PASSED] Link rate 810000 lane count 4
[19:09:40] [PASSED] Link rate 810000 lane count 2
[19:09:40] [PASSED] Link rate 810000 lane count 1
[19:09:40] [PASSED] Link rate 540000 lane count 4
[19:09:40] [PASSED] Link rate 540000 lane count 2
[19:09:40] [PASSED] Link rate 540000 lane count 1
[19:09:40] [PASSED] Link rate 270000 lane count 4
[19:09:40] [PASSED] Link rate 270000 lane count 2
[19:09:40] [PASSED] Link rate 270000 lane count 1
[19:09:40] [PASSED] Link rate 162000 lane count 4
[19:09:40] [PASSED] Link rate 162000 lane count 2
[19:09:40] [PASSED] Link rate 162000 lane count 1
[19:09:40] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[19:09:40] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[19:09:40] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[19:09:40] [PASSED] DP_POWER_UP_PHY with port number
[19:09:40] [PASSED] DP_POWER_DOWN_PHY with port number
[19:09:40] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[19:09:40] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[19:09:40] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[19:09:40] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[19:09:40] [PASSED] DP_QUERY_PAYLOAD with port number
[19:09:40] [PASSED] DP_QUERY_PAYLOAD with VCPI
[19:09:40] [PASSED] DP_REMOTE_DPCD_READ with port number
[19:09:40] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[19:09:40] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[19:09:40] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[19:09:40] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[19:09:40] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[19:09:40] [PASSED] DP_REMOTE_I2C_READ with port number
[19:09:40] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[19:09:40] [PASSED] DP_REMOTE_I2C_READ with transactions array
[19:09:40] [PASSED] DP_REMOTE_I2C_WRITE with port number
[19:09:40] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[19:09:40] [PASSED] DP_REMOTE_I2C_WRITE with data array
[19:09:40] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[19:09:40] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[19:09:40] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[19:09:40] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[19:09:40] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[19:09:40] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[19:09:40] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[19:09:40] ================ [PASSED] drm_dp_mst_helper ================
[19:09:40] ================== drm_exec (7 subtests) ===================
[19:09:40] [PASSED] sanitycheck
[19:09:40] [PASSED] test_lock
[19:09:40] [PASSED] test_lock_unlock
[19:09:40] [PASSED] test_duplicates
[19:09:40] [PASSED] test_prepare
[19:09:40] [PASSED] test_prepare_array
[19:09:40] [PASSED] test_multiple_loops
[19:09:40] ==================== [PASSED] drm_exec =====================
[19:09:40] =========== drm_format_helper_test (17 subtests) ===========
[19:09:40] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[19:09:40] [PASSED] single_pixel_source_buffer
[19:09:40] [PASSED] single_pixel_clip_rectangle
[19:09:40] [PASSED] well_known_colors
[19:09:40] [PASSED] destination_pitch
[19:09:40] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[19:09:40] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[19:09:40] [PASSED] single_pixel_source_buffer
[19:09:40] [PASSED] single_pixel_clip_rectangle
[19:09:40] [PASSED] well_known_colors
[19:09:40] [PASSED] destination_pitch
[19:09:40] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[19:09:40] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[19:09:40] [PASSED] single_pixel_source_buffer
[19:09:40] [PASSED] single_pixel_clip_rectangle
[19:09:40] [PASSED] well_known_colors
[19:09:40] [PASSED] destination_pitch
[19:09:40] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[19:09:40] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[19:09:40] [PASSED] single_pixel_source_buffer
[19:09:40] [PASSED] single_pixel_clip_rectangle
[19:09:40] [PASSED] well_known_colors
[19:09:40] [PASSED] destination_pitch
[19:09:40] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[19:09:40] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[19:09:40] [PASSED] single_pixel_source_buffer
[19:09:40] [PASSED] single_pixel_clip_rectangle
[19:09:40] [PASSED] well_known_colors
[19:09:40] [PASSED] destination_pitch
[19:09:40] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[19:09:40] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[19:09:40] [PASSED] single_pixel_source_buffer
[19:09:40] [PASSED] single_pixel_clip_rectangle
[19:09:40] [PASSED] well_known_colors
[19:09:40] [PASSED] destination_pitch
[19:09:40] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[19:09:40] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[19:09:40] [PASSED] single_pixel_source_buffer
[19:09:40] [PASSED] single_pixel_clip_rectangle
[19:09:40] [PASSED] well_known_colors
[19:09:40] [PASSED] destination_pitch
[19:09:40] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[19:09:40] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[19:09:40] [PASSED] single_pixel_source_buffer
[19:09:40] [PASSED] single_pixel_clip_rectangle
[19:09:40] [PASSED] well_known_colors
[19:09:40] [PASSED] destination_pitch
[19:09:40] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[19:09:40] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[19:09:40] [PASSED] single_pixel_source_buffer
[19:09:40] [PASSED] single_pixel_clip_rectangle
[19:09:40] [PASSED] well_known_colors
[19:09:40] [PASSED] destination_pitch
[19:09:40] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[19:09:40] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[19:09:40] [PASSED] single_pixel_source_buffer
[19:09:40] [PASSED] single_pixel_clip_rectangle
[19:09:40] [PASSED] well_known_colors
[19:09:40] [PASSED] destination_pitch
[19:09:40] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[19:09:40] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[19:09:40] [PASSED] single_pixel_source_buffer
[19:09:40] [PASSED] single_pixel_clip_rectangle
[19:09:40] [PASSED] well_known_colors
[19:09:40] [PASSED] destination_pitch
[19:09:40] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[19:09:40] ============== drm_test_fb_xrgb8888_to_mono ===============
[19:09:40] [PASSED] single_pixel_source_buffer
[19:09:40] [PASSED] single_pixel_clip_rectangle
[19:09:40] [PASSED] well_known_colors
[19:09:40] [PASSED] destination_pitch
[19:09:40] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[19:09:40] ==================== drm_test_fb_swab =====================
[19:09:40] [PASSED] single_pixel_source_buffer
[19:09:40] [PASSED] single_pixel_clip_rectangle
[19:09:40] [PASSED] well_known_colors
[19:09:40] [PASSED] destination_pitch
[19:09:40] ================ [PASSED] drm_test_fb_swab =================
[19:09:40] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[19:09:40] [PASSED] single_pixel_source_buffer
[19:09:40] [PASSED] single_pixel_clip_rectangle
[19:09:40] [PASSED] well_known_colors
[19:09:40] [PASSED] destination_pitch
[19:09:40] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[19:09:40] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[19:09:40] [PASSED] single_pixel_source_buffer
[19:09:40] [PASSED] single_pixel_clip_rectangle
[19:09:40] [PASSED] well_known_colors
[19:09:40] [PASSED] destination_pitch
[19:09:40] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[19:09:40] ================= drm_test_fb_clip_offset =================
[19:09:40] [PASSED] pass through
[19:09:40] [PASSED] horizontal offset
[19:09:40] [PASSED] vertical offset
[19:09:40] [PASSED] horizontal and vertical offset
[19:09:40] [PASSED] horizontal offset (custom pitch)
[19:09:40] [PASSED] vertical offset (custom pitch)
[19:09:40] [PASSED] horizontal and vertical offset (custom pitch)
[19:09:40] ============= [PASSED] drm_test_fb_clip_offset =============
[19:09:40] =================== drm_test_fb_memcpy ====================
[19:09:40] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[19:09:40] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[19:09:40] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[19:09:40] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[19:09:40] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[19:09:40] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[19:09:40] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[19:09:40] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[19:09:40] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[19:09:40] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[19:09:40] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[19:09:40] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[19:09:40] =============== [PASSED] drm_test_fb_memcpy ================
[19:09:40] ============= [PASSED] drm_format_helper_test ==============
[19:09:40] ================= drm_format (18 subtests) =================
[19:09:40] [PASSED] drm_test_format_block_width_invalid
[19:09:40] [PASSED] drm_test_format_block_width_one_plane
[19:09:40] [PASSED] drm_test_format_block_width_two_plane
[19:09:40] [PASSED] drm_test_format_block_width_three_plane
[19:09:40] [PASSED] drm_test_format_block_width_tiled
[19:09:40] [PASSED] drm_test_format_block_height_invalid
[19:09:40] [PASSED] drm_test_format_block_height_one_plane
[19:09:40] [PASSED] drm_test_format_block_height_two_plane
[19:09:40] [PASSED] drm_test_format_block_height_three_plane
[19:09:40] [PASSED] drm_test_format_block_height_tiled
[19:09:40] [PASSED] drm_test_format_min_pitch_invalid
[19:09:40] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[19:09:40] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[19:09:40] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[19:09:40] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[19:09:40] [PASSED] drm_test_format_min_pitch_two_plane
[19:09:40] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[19:09:40] [PASSED] drm_test_format_min_pitch_tiled
[19:09:40] =================== [PASSED] drm_format ====================
[19:09:40] ============== drm_framebuffer (10 subtests) ===============
[19:09:40] ========== drm_test_framebuffer_check_src_coords ==========
[19:09:40] [PASSED] Success: source fits into fb
[19:09:40] [PASSED] Fail: overflowing fb with x-axis coordinate
[19:09:40] [PASSED] Fail: overflowing fb with y-axis coordinate
[19:09:40] [PASSED] Fail: overflowing fb with source width
[19:09:40] [PASSED] Fail: overflowing fb with source height
[19:09:40] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[19:09:40] [PASSED] drm_test_framebuffer_cleanup
[19:09:40] =============== drm_test_framebuffer_create ===============
[19:09:40] [PASSED] ABGR8888 normal sizes
[19:09:40] [PASSED] ABGR8888 max sizes
[19:09:40] [PASSED] ABGR8888 pitch greater than min required
[19:09:40] [PASSED] ABGR8888 pitch less than min required
[19:09:40] [PASSED] ABGR8888 Invalid width
[19:09:40] [PASSED] ABGR8888 Invalid buffer handle
[19:09:40] [PASSED] No pixel format
[19:09:40] [PASSED] ABGR8888 Width 0
[19:09:40] [PASSED] ABGR8888 Height 0
[19:09:40] [PASSED] ABGR8888 Out of bound height * pitch combination
[19:09:40] [PASSED] ABGR8888 Large buffer offset
[19:09:40] [PASSED] ABGR8888 Buffer offset for inexistent plane
[19:09:40] [PASSED] ABGR8888 Invalid flag
[19:09:40] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[19:09:40] [PASSED] ABGR8888 Valid buffer modifier
[19:09:40] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[19:09:40] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[19:09:40] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[19:09:40] [PASSED] NV12 Normal sizes
[19:09:40] [PASSED] NV12 Max sizes
[19:09:40] [PASSED] NV12 Invalid pitch
[19:09:40] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[19:09:40] [PASSED] NV12 different modifier per-plane
[19:09:40] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[19:09:40] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[19:09:40] [PASSED] NV12 Modifier for inexistent plane
[19:09:40] [PASSED] NV12 Handle for inexistent plane
[19:09:40] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[19:09:40] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[19:09:40] [PASSED] YVU420 Normal sizes
[19:09:40] [PASSED] YVU420 Max sizes
[19:09:40] [PASSED] YVU420 Invalid pitch
[19:09:40] [PASSED] YVU420 Different pitches
[19:09:40] [PASSED] YVU420 Different buffer offsets/pitches
[19:09:40] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[19:09:40] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[19:09:40] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[19:09:40] [PASSED] YVU420 Valid modifier
[19:09:40] [PASSED] YVU420 Different modifiers per plane
[19:09:40] [PASSED] YVU420 Modifier for inexistent plane
[19:09:40] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[19:09:40] [PASSED] X0L2 Normal sizes
[19:09:40] [PASSED] X0L2 Max sizes
[19:09:40] [PASSED] X0L2 Invalid pitch
[19:09:40] [PASSED] X0L2 Pitch greater than minimum required
[19:09:40] [PASSED] X0L2 Handle for inexistent plane
[19:09:40] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[19:09:40] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[19:09:40] [PASSED] X0L2 Valid modifier
[19:09:40] [PASSED] X0L2 Modifier for inexistent plane
[19:09:40] =========== [PASSED] drm_test_framebuffer_create ===========
[19:09:40] [PASSED] drm_test_framebuffer_free
[19:09:40] [PASSED] drm_test_framebuffer_init
[19:09:40] [PASSED] drm_test_framebuffer_init_bad_format
[19:09:40] [PASSED] drm_test_framebuffer_init_dev_mismatch
[19:09:40] [PASSED] drm_test_framebuffer_lookup
[19:09:40] [PASSED] drm_test_framebuffer_lookup_inexistent
[19:09:40] [PASSED] drm_test_framebuffer_modifiers_not_supported
[19:09:40] ================= [PASSED] drm_framebuffer =================
[19:09:40] ================ drm_gem_shmem (8 subtests) ================
[19:09:40] [PASSED] drm_gem_shmem_test_obj_create
[19:09:40] [PASSED] drm_gem_shmem_test_obj_create_private
[19:09:40] [PASSED] drm_gem_shmem_test_pin_pages
[19:09:40] [PASSED] drm_gem_shmem_test_vmap
[19:09:40] [PASSED] drm_gem_shmem_test_get_sg_table
[19:09:40] [PASSED] drm_gem_shmem_test_get_pages_sgt
[19:09:40] [PASSED] drm_gem_shmem_test_madvise
[19:09:40] [PASSED] drm_gem_shmem_test_purge
[19:09:40] ================== [PASSED] drm_gem_shmem ==================
[19:09:40] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[19:09:40] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[19:09:40] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[19:09:40] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[19:09:40] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[19:09:40] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[19:09:40] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[19:09:40] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[19:09:40] [PASSED] Automatic
[19:09:40] [PASSED] Full
[19:09:40] [PASSED] Limited 16:235
[19:09:40] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[19:09:40] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[19:09:40] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[19:09:40] [PASSED] drm_test_check_disable_connector
[19:09:40] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[19:09:40] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[19:09:40] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[19:09:40] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[19:09:40] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[19:09:40] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[19:09:40] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[19:09:40] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[19:09:40] [PASSED] drm_test_check_output_bpc_dvi
[19:09:40] [PASSED] drm_test_check_output_bpc_format_vic_1
[19:09:40] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[19:09:40] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[19:09:40] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[19:09:40] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[19:09:40] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[19:09:40] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[19:09:40] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[19:09:40] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[19:09:40] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[19:09:40] [PASSED] drm_test_check_broadcast_rgb_value
[19:09:40] [PASSED] drm_test_check_bpc_8_value
[19:09:40] [PASSED] drm_test_check_bpc_10_value
[19:09:40] [PASSED] drm_test_check_bpc_12_value
[19:09:40] [PASSED] drm_test_check_format_value
[19:09:40] [PASSED] drm_test_check_tmds_char_value
[19:09:40] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[19:09:40] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[19:09:40] [PASSED] drm_test_check_mode_valid
[19:09:40] [PASSED] drm_test_check_mode_valid_reject
[19:09:40] [PASSED] drm_test_check_mode_valid_reject_rate
[19:09:40] [PASSED] drm_test_check_mode_valid_reject_max_clock
[19:09:40] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[19:09:40] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[19:09:40] [PASSED] drm_test_check_infoframes
[19:09:40] [PASSED] drm_test_check_reject_avi_infoframe
[19:09:40] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[19:09:40] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[19:09:40] [PASSED] drm_test_check_reject_audio_infoframe
[19:09:40] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[19:09:40] ================= drm_managed (2 subtests) =================
[19:09:40] [PASSED] drm_test_managed_release_action
[19:09:40] [PASSED] drm_test_managed_run_action
[19:09:40] =================== [PASSED] drm_managed ===================
[19:09:40] =================== drm_mm (6 subtests) ====================
[19:09:40] [PASSED] drm_test_mm_init
[19:09:40] [PASSED] drm_test_mm_debug
[19:09:40] [PASSED] drm_test_mm_align32
[19:09:40] [PASSED] drm_test_mm_align64
[19:09:40] [PASSED] drm_test_mm_lowest
[19:09:40] [PASSED] drm_test_mm_highest
[19:09:40] ===================== [PASSED] drm_mm ======================
[19:09:40] ============= drm_modes_analog_tv (5 subtests) =============
[19:09:40] [PASSED] drm_test_modes_analog_tv_mono_576i
[19:09:40] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[19:09:40] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[19:09:40] [PASSED] drm_test_modes_analog_tv_pal_576i
[19:09:40] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[19:09:40] =============== [PASSED] drm_modes_analog_tv ===============
[19:09:40] ============== drm_plane_helper (2 subtests) ===============
[19:09:40] =============== drm_test_check_plane_state ================
[19:09:40] [PASSED] clipping_simple
[19:09:40] [PASSED] clipping_rotate_reflect
[19:09:40] [PASSED] positioning_simple
[19:09:40] [PASSED] upscaling
[19:09:40] [PASSED] downscaling
[19:09:40] [PASSED] rounding1
[19:09:40] [PASSED] rounding2
[19:09:40] [PASSED] rounding3
[19:09:40] [PASSED] rounding4
[19:09:40] =========== [PASSED] drm_test_check_plane_state ============
[19:09:40] =========== drm_test_check_invalid_plane_state ============
[19:09:40] [PASSED] positioning_invalid
[19:09:40] [PASSED] upscaling_invalid
[19:09:40] [PASSED] downscaling_invalid
[19:09:40] ======= [PASSED] drm_test_check_invalid_plane_state ========
[19:09:40] ================ [PASSED] drm_plane_helper =================
[19:09:40] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[19:09:40] ====== drm_test_connector_helper_tv_get_modes_check =======
[19:09:40] [PASSED] None
[19:09:40] [PASSED] PAL
[19:09:40] [PASSED] NTSC
[19:09:40] [PASSED] Both, NTSC Default
[19:09:40] [PASSED] Both, PAL Default
[19:09:40] [PASSED] Both, NTSC Default, with PAL on command-line
[19:09:40] [PASSED] Both, PAL Default, with NTSC on command-line
[19:09:40] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[19:09:40] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[19:09:40] ================== drm_rect (9 subtests) ===================
[19:09:40] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[19:09:40] [PASSED] drm_test_rect_clip_scaled_not_clipped
[19:09:40] [PASSED] drm_test_rect_clip_scaled_clipped
[19:09:40] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[19:09:40] ================= drm_test_rect_intersect =================
[19:09:40] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[19:09:40] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[19:09:40] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[19:09:40] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[19:09:40] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[19:09:40] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[19:09:40] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[19:09:40] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[19:09:40] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[19:09:40] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[19:09:40] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[19:09:40] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[19:09:40] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[19:09:40] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[19:09:40] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
stty: 'standard input': Inappropriate ioctl for device
[19:09:40] ============= [PASSED] drm_test_rect_intersect =============
[19:09:40] ================ drm_test_rect_calc_hscale ================
[19:09:40] [PASSED] normal use
[19:09:40] [PASSED] out of max range
[19:09:40] [PASSED] out of min range
[19:09:40] [PASSED] zero dst
[19:09:40] [PASSED] negative src
[19:09:40] [PASSED] negative dst
[19:09:40] ============ [PASSED] drm_test_rect_calc_hscale ============
[19:09:40] ================ drm_test_rect_calc_vscale ================
[19:09:40] [PASSED] normal use
[19:09:40] [PASSED] out of max range
[19:09:40] [PASSED] out of min range
[19:09:40] [PASSED] zero dst
[19:09:40] [PASSED] negative src
[19:09:40] [PASSED] negative dst
[19:09:40] ============ [PASSED] drm_test_rect_calc_vscale ============
[19:09:40] ================== drm_test_rect_rotate ===================
[19:09:40] [PASSED] reflect-x
[19:09:40] [PASSED] reflect-y
[19:09:40] [PASSED] rotate-0
[19:09:40] [PASSED] rotate-90
[19:09:40] [PASSED] rotate-180
[19:09:40] [PASSED] rotate-270
[19:09:40] ============== [PASSED] drm_test_rect_rotate ===============
[19:09:40] ================ drm_test_rect_rotate_inv =================
[19:09:40] [PASSED] reflect-x
[19:09:40] [PASSED] reflect-y
[19:09:40] [PASSED] rotate-0
[19:09:40] [PASSED] rotate-90
[19:09:40] [PASSED] rotate-180
[19:09:40] [PASSED] rotate-270
[19:09:40] ============ [PASSED] drm_test_rect_rotate_inv =============
[19:09:40] ==================== [PASSED] drm_rect =====================
[19:09:40] ============ drm_sysfb_modeset_test (1 subtest) ============
[19:09:40] ============ drm_test_sysfb_build_fourcc_list =============
[19:09:40] [PASSED] no native formats
[19:09:40] [PASSED] XRGB8888 as native format
[19:09:40] [PASSED] remove duplicates
[19:09:40] [PASSED] convert alpha formats
[19:09:40] [PASSED] random formats
[19:09:40] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[19:09:40] ============= [PASSED] drm_sysfb_modeset_test ==============
[19:09:40] ================== drm_fixp (2 subtests) ===================
[19:09:40] [PASSED] drm_test_int2fixp
[19:09:40] [PASSED] drm_test_sm2fixp
[19:09:40] ==================== [PASSED] drm_fixp =====================
[19:09:40] ============================================================
[19:09:40] Testing complete. Ran 630 tests: passed: 630
[19:09:40] Elapsed time: 27.860s total, 1.713s configuring, 25.679s building, 0.426s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[19:09:40] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[19:09:42] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[19:09:52] Starting KUnit Kernel (1/1)...
[19:09:52] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[19:09:52] ================= ttm_device (5 subtests) ==================
[19:09:52] [PASSED] ttm_device_init_basic
[19:09:52] [PASSED] ttm_device_init_multiple
[19:09:52] [PASSED] ttm_device_fini_basic
[19:09:52] [PASSED] ttm_device_init_no_vma_man
[19:09:52] ================== ttm_device_init_pools ==================
[19:09:52] [PASSED] No DMA allocations, no DMA32 required
[19:09:52] [PASSED] DMA allocations, DMA32 required
[19:09:52] [PASSED] No DMA allocations, DMA32 required
[19:09:52] [PASSED] DMA allocations, no DMA32 required
[19:09:52] ============== [PASSED] ttm_device_init_pools ==============
[19:09:52] =================== [PASSED] ttm_device ====================
[19:09:52] ================== ttm_pool (8 subtests) ===================
[19:09:52] ================== ttm_pool_alloc_basic ===================
[19:09:52] [PASSED] One page
[19:09:52] [PASSED] More than one page
[19:09:52] [PASSED] Above the allocation limit
[19:09:52] [PASSED] One page, with coherent DMA mappings enabled
[19:09:52] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[19:09:52] ============== [PASSED] ttm_pool_alloc_basic ===============
[19:09:52] ============== ttm_pool_alloc_basic_dma_addr ==============
[19:09:52] [PASSED] One page
[19:09:52] [PASSED] More than one page
[19:09:52] [PASSED] Above the allocation limit
[19:09:52] [PASSED] One page, with coherent DMA mappings enabled
[19:09:52] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[19:09:52] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[19:09:52] [PASSED] ttm_pool_alloc_order_caching_match
[19:09:52] [PASSED] ttm_pool_alloc_caching_mismatch
[19:09:52] [PASSED] ttm_pool_alloc_order_mismatch
[19:09:52] [PASSED] ttm_pool_free_dma_alloc
[19:09:52] [PASSED] ttm_pool_free_no_dma_alloc
[19:09:52] [PASSED] ttm_pool_fini_basic
[19:09:52] ==================== [PASSED] ttm_pool =====================
[19:09:52] ================ ttm_resource (8 subtests) =================
[19:09:52] ================= ttm_resource_init_basic =================
[19:09:52] [PASSED] Init resource in TTM_PL_SYSTEM
[19:09:52] [PASSED] Init resource in TTM_PL_VRAM
[19:09:52] [PASSED] Init resource in a private placement
[19:09:52] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[19:09:52] ============= [PASSED] ttm_resource_init_basic =============
[19:09:52] [PASSED] ttm_resource_init_pinned
[19:09:52] [PASSED] ttm_resource_fini_basic
[19:09:52] [PASSED] ttm_resource_manager_init_basic
[19:09:52] [PASSED] ttm_resource_manager_usage_basic
[19:09:52] [PASSED] ttm_resource_manager_set_used_basic
[19:09:52] [PASSED] ttm_sys_man_alloc_basic
[19:09:52] [PASSED] ttm_sys_man_free_basic
[19:09:52] ================== [PASSED] ttm_resource ===================
[19:09:52] =================== ttm_tt (15 subtests) ===================
[19:09:52] ==================== ttm_tt_init_basic ====================
[19:09:52] [PASSED] Page-aligned size
[19:09:52] [PASSED] Extra pages requested
[19:09:52] ================ [PASSED] ttm_tt_init_basic ================
[19:09:52] [PASSED] ttm_tt_init_misaligned
[19:09:52] [PASSED] ttm_tt_fini_basic
[19:09:52] [PASSED] ttm_tt_fini_sg
[19:09:52] [PASSED] ttm_tt_fini_shmem
[19:09:52] [PASSED] ttm_tt_create_basic
[19:09:52] [PASSED] ttm_tt_create_invalid_bo_type
[19:09:52] [PASSED] ttm_tt_create_ttm_exists
[19:09:52] [PASSED] ttm_tt_create_failed
[19:09:52] [PASSED] ttm_tt_destroy_basic
[19:09:52] [PASSED] ttm_tt_populate_null_ttm
[19:09:52] [PASSED] ttm_tt_populate_populated_ttm
[19:09:52] [PASSED] ttm_tt_unpopulate_basic
[19:09:52] [PASSED] ttm_tt_unpopulate_empty_ttm
[19:09:52] [PASSED] ttm_tt_swapin_basic
[19:09:52] ===================== [PASSED] ttm_tt ======================
[19:09:52] =================== ttm_bo (14 subtests) ===================
[19:09:52] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[19:09:52] [PASSED] Cannot be interrupted and sleeps
[19:09:52] [PASSED] Cannot be interrupted, locks straight away
[19:09:52] [PASSED] Can be interrupted, sleeps
[19:09:52] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[19:09:52] [PASSED] ttm_bo_reserve_locked_no_sleep
[19:09:52] [PASSED] ttm_bo_reserve_no_wait_ticket
[19:09:52] [PASSED] ttm_bo_reserve_double_resv
[19:09:52] [PASSED] ttm_bo_reserve_interrupted
[19:09:52] [PASSED] ttm_bo_reserve_deadlock
[19:09:52] [PASSED] ttm_bo_unreserve_basic
[19:09:52] [PASSED] ttm_bo_unreserve_pinned
[19:09:52] [PASSED] ttm_bo_unreserve_bulk
[19:09:52] [PASSED] ttm_bo_fini_basic
[19:09:52] [PASSED] ttm_bo_fini_shared_resv
[19:09:52] [PASSED] ttm_bo_pin_basic
[19:09:52] [PASSED] ttm_bo_pin_unpin_resource
[19:09:52] [PASSED] ttm_bo_multiple_pin_one_unpin
[19:09:52] ===================== [PASSED] ttm_bo ======================
[19:09:52] ============== ttm_bo_validate (21 subtests) ===============
[19:09:52] ============== ttm_bo_init_reserved_sys_man ===============
[19:09:52] [PASSED] Buffer object for userspace
[19:09:52] [PASSED] Kernel buffer object
[19:09:52] [PASSED] Shared buffer object
[19:09:52] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[19:09:52] ============== ttm_bo_init_reserved_mock_man ==============
[19:09:52] [PASSED] Buffer object for userspace
[19:09:52] [PASSED] Kernel buffer object
[19:09:52] [PASSED] Shared buffer object
[19:09:52] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[19:09:52] [PASSED] ttm_bo_init_reserved_resv
[19:09:52] ================== ttm_bo_validate_basic ==================
[19:09:52] [PASSED] Buffer object for userspace
[19:09:52] [PASSED] Kernel buffer object
[19:09:52] [PASSED] Shared buffer object
[19:09:52] ============== [PASSED] ttm_bo_validate_basic ==============
[19:09:52] [PASSED] ttm_bo_validate_invalid_placement
[19:09:52] ============= ttm_bo_validate_same_placement ==============
[19:09:52] [PASSED] System manager
[19:09:52] [PASSED] VRAM manager
[19:09:52] ========= [PASSED] ttm_bo_validate_same_placement ==========
[19:09:52] [PASSED] ttm_bo_validate_failed_alloc
[19:09:52] [PASSED] ttm_bo_validate_pinned
[19:09:52] [PASSED] ttm_bo_validate_busy_placement
[19:09:52] ================ ttm_bo_validate_multihop =================
[19:09:52] [PASSED] Buffer object for userspace
[19:09:52] [PASSED] Kernel buffer object
[19:09:52] [PASSED] Shared buffer object
[19:09:52] ============ [PASSED] ttm_bo_validate_multihop =============
[19:09:52] ========== ttm_bo_validate_no_placement_signaled ==========
[19:09:52] [PASSED] Buffer object in system domain, no page vector
[19:09:52] [PASSED] Buffer object in system domain with an existing page vector
[19:09:52] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[19:09:52] ======== ttm_bo_validate_no_placement_not_signaled ========
[19:09:52] [PASSED] Buffer object for userspace
[19:09:52] [PASSED] Kernel buffer object
[19:09:52] [PASSED] Shared buffer object
[19:09:52] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[19:09:52] [PASSED] ttm_bo_validate_move_fence_signaled
[19:09:52] ========= ttm_bo_validate_move_fence_not_signaled =========
[19:09:52] [PASSED] Waits for GPU
[19:09:52] [PASSED] Tries to lock straight away
[19:09:52] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[19:09:52] [PASSED] ttm_bo_validate_happy_evict
[19:09:52] [PASSED] ttm_bo_validate_all_pinned_evict
[19:09:52] [PASSED] ttm_bo_validate_allowed_only_evict
[19:09:52] [PASSED] ttm_bo_validate_deleted_evict
[19:09:52] [PASSED] ttm_bo_validate_busy_domain_evict
[19:09:52] [PASSED] ttm_bo_validate_evict_gutting
[19:09:52] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[19:09:52] ================= [PASSED] ttm_bo_validate =================
[19:09:52] ============================================================
[19:09:52] Testing complete. Ran 101 tests: passed: 101
[19:09:52] Elapsed time: 11.611s total, 1.713s configuring, 9.680s building, 0.185s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 18+ messages in thread* ✗ CI.checksparse: warning for LOBF fixes (rev6)
2026-02-04 5:02 [RESEND 0/5] LOBF fixes Ankit Nautiyal
` (9 preceding siblings ...)
2026-02-04 19:09 ` ✓ CI.KUnit: success for LOBF fixes (rev6) Patchwork
@ 2026-02-04 19:25 ` Patchwork
2026-02-04 19:55 ` ✗ Xe.CI.BAT: failure " Patchwork
` (3 subsequent siblings)
14 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2026-02-04 19:25 UTC (permalink / raw)
To: Ankit Nautiyal; +Cc: intel-xe
== Series Details ==
Series: LOBF fixes (rev6)
URL : https://patchwork.freedesktop.org/series/157554/
State : warning
== Summary ==
+ trap cleanup EXIT
+ KERNEL=/kernel
+ MT=/root/linux/maintainer-tools
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools /root/linux/maintainer-tools
Cloning into '/root/linux/maintainer-tools'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ make -C /root/linux/maintainer-tools
make: Entering directory '/root/linux/maintainer-tools'
cc -O2 -g -Wextra -o remap-log remap-log.c
make: Leaving directory '/root/linux/maintainer-tools'
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ /root/linux/maintainer-tools/dim sparse --fast 241994730989320c926da9f2d0a5ec80b48f993d
Sparse version: 0.6.4 (Ubuntu: 0.6.4-4ubuntu3)
Fast mode used, each commit won't be checked separately.
+drivers/gpu/drm/i915/display/intel_alpm.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_cx0_phy.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_ddi.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_display_debugfs.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_dp.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_psr.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+drivers/gpu/drm/i915/display/intel_vrr.c: note: in included file (through drivers/gpu/drm/i915/display/intel_display_types.h):
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+./include/linux/pwm.h:13:1: error: bad constant expression
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 18+ messages in thread* ✗ Xe.CI.BAT: failure for LOBF fixes (rev6)
2026-02-04 5:02 [RESEND 0/5] LOBF fixes Ankit Nautiyal
` (10 preceding siblings ...)
2026-02-04 19:25 ` ✗ CI.checksparse: warning " Patchwork
@ 2026-02-04 19:55 ` Patchwork
2026-02-04 20:35 ` ✓ Xe.CI.BAT: success " Patchwork
` (2 subsequent siblings)
14 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2026-02-04 19:55 UTC (permalink / raw)
To: Ankit Nautiyal; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 347 bytes --]
== Series Details ==
Series: LOBF fixes (rev6)
URL : https://patchwork.freedesktop.org/series/157554/
State : failure
== Summary ==
ERROR: The runconfig 'xe-4495-241994730989320c926da9f2d0a5ec80b48f993d_BAT' does not exist in the database
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/index.html
[-- Attachment #2: Type: text/html, Size: 912 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread* ✓ Xe.CI.BAT: success for LOBF fixes (rev6)
2026-02-04 5:02 [RESEND 0/5] LOBF fixes Ankit Nautiyal
` (11 preceding siblings ...)
2026-02-04 19:55 ` ✗ Xe.CI.BAT: failure " Patchwork
@ 2026-02-04 20:35 ` Patchwork
2026-02-05 7:35 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-02-05 9:20 ` [RESEND 0/5] LOBF fixes Nautiyal, Ankit K
14 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2026-02-04 20:35 UTC (permalink / raw)
To: Ankit Nautiyal; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 887 bytes --]
== Series Details ==
Series: LOBF fixes (rev6)
URL : https://patchwork.freedesktop.org/series/157554/
State : success
== Summary ==
CI Bug Log - changes from xe-4497-241994730989320c926da9f2d0a5ec80b48f993d_BAT -> xe-pw-157554v6_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 12)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8735 -> IGT_8736
* Linux: xe-4497-241994730989320c926da9f2d0a5ec80b48f993d -> xe-pw-157554v6
IGT_8735: 8735
IGT_8736: 8736
xe-4497-241994730989320c926da9f2d0a5ec80b48f993d: 241994730989320c926da9f2d0a5ec80b48f993d
xe-pw-157554v6: 157554v6
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/index.html
[-- Attachment #2: Type: text/html, Size: 1449 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread* ✗ Xe.CI.FULL: failure for LOBF fixes (rev6)
2026-02-04 5:02 [RESEND 0/5] LOBF fixes Ankit Nautiyal
` (12 preceding siblings ...)
2026-02-04 20:35 ` ✓ Xe.CI.BAT: success " Patchwork
@ 2026-02-05 7:35 ` Patchwork
2026-02-05 9:20 ` [RESEND 0/5] LOBF fixes Nautiyal, Ankit K
14 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2026-02-05 7:35 UTC (permalink / raw)
To: Ankit Nautiyal; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 57466 bytes --]
== Series Details ==
Series: LOBF fixes (rev6)
URL : https://patchwork.freedesktop.org/series/157554/
State : failure
== Summary ==
CI Bug Log - changes from xe-4497-241994730989320c926da9f2d0a5ec80b48f993d_FULL -> xe-pw-157554v6_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-157554v6_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-157554v6_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-157554v6_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind:
- shard-bmg: [PASS][1] -> [ABORT][2] +1 other test abort
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-7/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-7/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html
Known issues
------------
Here are the changes found in xe-pw-157554v6_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@intel_hwmon@hwmon-write:
- shard-bmg: [PASS][3] -> [FAIL][4] ([Intel XE#4665])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-9/igt@intel_hwmon@hwmon-write.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-8/igt@intel_hwmon@hwmon-write.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][5] ([Intel XE#1407]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-7/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#2327])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-5/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-180:
- shard-lnl: NOTRUN -> [SKIP][7] ([Intel XE#1124]) +2 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-7/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#1467])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-7/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#1124]) +6 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-7/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- shard-bmg: [PASS][10] -> [SKIP][11] ([Intel XE#2314] / [Intel XE#2894])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-7/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2314] / [Intel XE#2894])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-3/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#1512])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-6/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
- shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#367])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-2/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#2887]) +8 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#3432])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#3432]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-4/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2887]) +11 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-5/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_chamelium_color@gamma:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2325])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-4/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2252]) +6 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-8/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode:
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#373]) +7 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-8/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html
* igt@kms_color_pipeline@plane-lut1d-post-ctm3x4:
- shard-lnl: NOTRUN -> [FAIL][22] ([Intel XE#6968]) +3 other tests fail
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-8/igt@kms_color_pipeline@plane-lut1d-post-ctm3x4.html
* igt@kms_color_pipeline@plane-lut3d-green-only@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#6969]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-9/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-a-dp-2.html
* igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-dp-2:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#6969] / [Intel XE#7006])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-9/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-dp-2.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][25] ([Intel XE#1178] / [Intel XE#3304])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-4/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
* igt@kms_content_protection@type1:
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#3278])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-1/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-128x42:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2320]) +3 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-1/igt@kms_cursor_crc@cursor-offscreen-128x42.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#2321])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-2/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#1424]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-1/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#309]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-4/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
- shard-bmg: [PASS][31] -> [SKIP][32] ([Intel XE#2291]) +2 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-9/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-bmg: NOTRUN -> [DMESG-WARN][33] ([Intel XE#5354])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-2/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-bmg: [PASS][34] -> [DMESG-WARN][35] ([Intel XE#5354])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-10/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2286])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#4354])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-5/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#4354])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-8/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2244])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-9/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#1421]) +2 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-7/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset:
- shard-bmg: [PASS][41] -> [SKIP][42] ([Intel XE#2316]) +3 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-1/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@2x-flip-vs-modeset:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2316])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-5/igt@kms_flip@2x-flip-vs-modeset.html
* igt@kms_flip@wf_vblank-ts-check-interruptible:
- shard-bmg: [PASS][44] -> [FAIL][45] ([Intel XE#3098] / [Intel XE#5416] / [Intel XE#6266])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-1/igt@kms_flip@wf_vblank-ts-check-interruptible.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-5/igt@kms_flip@wf_vblank-ts-check-interruptible.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a3:
- shard-bmg: [PASS][46] -> [FAIL][47] ([Intel XE#3098])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-1/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a3.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-5/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a3.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a3:
- shard-bmg: [PASS][48] -> [FAIL][49] ([Intel XE#5416] / [Intel XE#6266])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-1/igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a3.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-5/igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-32bpp-linear-reflect-x:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#7179])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-32bpp-linear-reflect-x.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#7178]) +2 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x:
- shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#7179])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-7/igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#352])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-6/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#6312])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-2/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#651]) +2 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-1/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2311]) +13 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-10/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2312]) +4 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#7061]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#4141]) +6 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#7061]) +2 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-3/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#656]) +22 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2313]) +15 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2350])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-5/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_hdmi_inject@inject-audio:
- shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#1470] / [Intel XE#2853])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-5/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-bmg: [PASS][65] -> [SKIP][66] ([Intel XE#1503])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-10/igt@kms_hdr@invalid-metadata-sizes.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-5/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#6900]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-3/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#7086])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#6911])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-2/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_panel_fitting@legacy:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2486]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-2/igt@kms_panel_fitting@legacy.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#7111] / [Intel XE#7130] / [Intel XE#7131])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-5/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping@pipe-a-plane-3:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#7130]) +13 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-5/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping@pipe-a-plane-3.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping@pipe-a-plane-5:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#7131])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-5/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping@pipe-a-plane-5.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping@pipe-b-plane-5:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#7111] / [Intel XE#7131])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-5/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping:
- shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#7130] / [Intel XE#7131])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-2/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping@pipe-b-plane-3:
- shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#7130]) +3 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-2/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping@pipe-b-plane-3.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping@pipe-b-plane-5:
- shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#7131]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-2/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-modifier:
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#7111] / [Intel XE#7130]) +3 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-1/igt@kms_plane@pixel-format-y-tiled-modifier.html
* igt@kms_plane_lowres@tiling-4@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#599]) +3 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-7/igt@kms_plane_lowres@tiling-4@pipe-b-edp-1.html
* igt@kms_plane_lowres@tiling-y:
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#2393])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-10/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b:
- shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#6886]) +3 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b.html
* igt@kms_pm_backlight@bad-brightness:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#870])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-9/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_dc@dc6-psr:
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#2392])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-1/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#1439] / [Intel XE#3141]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-2/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#1406] / [Intel XE#4608]) +3 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#1406] / [Intel XE#1489]) +4 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-7/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_su@page_flip-p010:
- shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#1406] / [Intel XE#2387])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-4/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-psr-dpms:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +8 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-10/igt@kms_psr@fbc-psr-dpms.html
* igt@kms_psr@fbc-psr2-sprite-blt@edp-1:
- shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#1406] / [Intel XE#4609])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-7/igt@kms_psr@fbc-psr2-sprite-blt@edp-1.html
* igt@kms_psr@pr-sprite-render:
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#1406]) +2 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-4/igt@kms_psr@pr-sprite-render.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-4/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
- shard-lnl: [PASS][93] -> [FAIL][94] ([Intel XE#1874])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-lnl-7/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-3/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#1127])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-8/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_sharpness_filter@invalid-filter-with-plane:
- shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#6503]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-3/igt@kms_sharpness_filter@invalid-filter-with-plane.html
* igt@kms_vrr@negative-basic:
- shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#1499])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-7/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#1499])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-2/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
- shard-lnl: [PASS][100] -> [FAIL][101] ([Intel XE#2142]) +1 other test fail
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-lnl-8/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-4/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
* igt@xe_eudebug@basic-client-th:
- shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#4837]) +4 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-5/igt@xe_eudebug@basic-client-th.html
* igt@xe_eudebug@basic-vm-access-userptr:
- shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#4837]) +4 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-3/igt@xe_eudebug@basic-vm-access-userptr.html
* igt@xe_eudebug_online@pagefault-read-stress:
- shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#6665] / [Intel XE#6681])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-1/igt@xe_eudebug_online@pagefault-read-stress.html
* igt@xe_eudebug_online@resume-one:
- shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#4837] / [Intel XE#6665]) +2 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-6/igt@xe_eudebug_online@resume-one.html
* igt@xe_evict@evict-beng-cm-threads-large-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#688]) +4 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-5/igt@xe_evict@evict-beng-cm-threads-large-multi-vm.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: [PASS][107] -> [INCOMPLETE][108] ([Intel XE#6321])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-7/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-7/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_exec_basic@multigpu-no-exec-null-rebind:
- shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#1392]) +3 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-7/igt@xe_exec_basic@multigpu-no-exec-null-rebind.html
* igt@xe_exec_basic@multigpu-once-basic-defer-bind:
- shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#2322]) +2 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-2/igt@xe_exec_basic@multigpu-once-basic-defer-bind.html
* igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-imm:
- shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#7136]) +8 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-9/igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-imm.html
* igt@xe_exec_fault_mode@twice-multi-queue-userptr-imm:
- shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#7136]) +5 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-8/igt@xe_exec_fault_mode@twice-multi-queue-userptr-imm.html
* igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-priority:
- shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#6874]) +10 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-2/igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-priority.html
* igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-dyn-priority-smem:
- shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#6874]) +14 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-7/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-dyn-priority-smem.html
* igt@xe_exec_system_allocator@many-64k-mmap-huge:
- shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#5007])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-5/igt@xe_exec_system_allocator@many-64k-mmap-huge.html
* igt@xe_exec_system_allocator@once-large-malloc-bo-unmap:
- shard-bmg: [PASS][116] -> [ABORT][117] ([Intel XE#7169])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-4/igt@xe_exec_system_allocator@once-large-malloc-bo-unmap.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-2/igt@xe_exec_system_allocator@once-large-malloc-bo-unmap.html
* igt@xe_exec_system_allocator@once-mmap-free-huge-nomemset:
- shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#4943]) +10 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-1/igt@xe_exec_system_allocator@once-mmap-free-huge-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge:
- shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#4943]) +16 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-7/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge.html
* igt@xe_exec_threads@threads-multi-queue-cm-basic:
- shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#7138]) +3 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-4/igt@xe_exec_threads@threads-multi-queue-cm-basic.html
* igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#7138]) +3 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-9/igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-userptr-invalidate.html
* igt@xe_multigpu_svm@mgpu-atomic-op-basic:
- shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#6964]) +1 other test skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-5/igt@xe_multigpu_svm@mgpu-atomic-op-basic.html
* igt@xe_multigpu_svm@mgpu-pagefault-conflict:
- shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#6964]) +1 other test skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-10/igt@xe_multigpu_svm@mgpu-pagefault-conflict.html
* igt@xe_pm@d3cold-mmap-system:
- shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#2284] / [Intel XE#366])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-2/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#2284]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-9/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pm@s4-multiple-execs:
- shard-lnl: [PASS][126] -> [ABORT][127] ([Intel XE#7169])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-lnl-5/igt@xe_pm@s4-multiple-execs.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-5/igt@xe_pm@s4-multiple-execs.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#579])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-10/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_pxp@pxp-termination-key-update-post-rpm:
- shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#4733])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-4/igt@xe_pxp@pxp-termination-key-update-post-rpm.html
* igt@xe_query@multigpu-query-invalid-extension:
- shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#944]) +2 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-2/igt@xe_query@multigpu-query-invalid-extension.html
* igt@xe_query@multigpu-query-invalid-size:
- shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#944]) +2 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-3/igt@xe_query@multigpu-query-invalid-size.html
* igt@xe_sriov_auto_provisioning@exclusive-ranges:
- shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#4130])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-7/igt@xe_sriov_auto_provisioning@exclusive-ranges.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets:
- shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#4351])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-5/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html
* igt@xe_vm@out-of-memory:
- shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#5745])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-2/igt@xe_vm@out-of-memory.html
#### Possible fixes ####
* igt@kms_async_flips@async-flip-with-page-flip-events-linear:
- shard-lnl: [FAIL][135] ([Intel XE#5993]) -> [PASS][136] +3 other tests pass
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-bmg: [DMESG-FAIL][137] ([Intel XE#1727]) -> [PASS][138] +1 other test pass
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
- shard-bmg: [SKIP][139] ([Intel XE#2291]) -> [PASS][140] +2 other tests pass
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-5/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-1/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size:
- shard-bmg: [DMESG-WARN][141] ([Intel XE#5354]) -> [PASS][142]
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-2/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-3/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [FAIL][143] ([Intel XE#4633]) -> [PASS][144]
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
- shard-bmg: [SKIP][145] ([Intel XE#2316]) -> [PASS][146] +7 other tests pass
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [FAIL][147] ([Intel XE#301]) -> [PASS][148] +1 other test pass
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@wf_vblank-ts-check@a-edp1:
- shard-lnl: [FAIL][149] ([Intel XE#3098]) -> [PASS][150] +1 other test pass
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-lnl-8/igt@kms_flip@wf_vblank-ts-check@a-edp1.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-1/igt@kms_flip@wf_vblank-ts-check@a-edp1.html
* igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-2:
- shard-bmg: [SKIP][151] -> [PASS][152]
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-3/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-2.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-10/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-2.html
* igt@kms_hdr@static-toggle-suspend:
- shard-bmg: [SKIP][153] ([Intel XE#1503]) -> [PASS][154] +1 other test pass
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-5/igt@kms_hdr@static-toggle-suspend.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-3/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [FAIL][155] ([Intel XE#718]) -> [PASS][156] +1 other test pass
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-lnl-5/igt@kms_pm_dc@dc5-psr.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-2/igt@kms_pm_dc@dc5-psr.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-lnl: [SKIP][157] ([Intel XE#1406] / [Intel XE#4692]) -> [PASS][158]
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-lnl-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@xe_pm@d3hot-multiple-execs:
- shard-lnl: [TIMEOUT][159] ([Intel XE#7180]) -> [PASS][160]
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-lnl-4/igt@xe_pm@d3hot-multiple-execs.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-5/igt@xe_pm@d3hot-multiple-execs.html
* igt@xe_pm@s4-basic:
- shard-lnl: [DMESG-WARN][161] -> [PASS][162] +1 other test pass
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-lnl-3/igt@xe_pm@s4-basic.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-6/igt@xe_pm@s4-basic.html
* igt@xe_pxp@pxp-termination-key-update-post-rpm:
- shard-lnl: [SKIP][163] -> [PASS][164]
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-lnl-4/igt@xe_pxp@pxp-termination-key-update-post-rpm.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-lnl-2/igt@xe_pxp@pxp-termination-key-update-post-rpm.html
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs:
- shard-bmg: [FAIL][165] ([Intel XE#5937]) -> [PASS][166] +1 other test pass
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-7/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-9/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html
#### Warnings ####
* igt@kms_content_protection@lic-type-0:
- shard-bmg: [SKIP][167] ([Intel XE#2341]) -> [FAIL][168] ([Intel XE#1178] / [Intel XE#3304])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-5/igt@kms_content_protection@lic-type-0.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-4/igt@kms_content_protection@lic-type-0.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render:
- shard-bmg: [SKIP][169] ([Intel XE#4141]) -> [SKIP][170] ([Intel XE#2312]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][171] ([Intel XE#2312]) -> [SKIP][172] ([Intel XE#4141]) +2 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][173] ([Intel XE#2311]) -> [SKIP][174] ([Intel XE#2312]) +8 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-bmg: [SKIP][175] ([Intel XE#2312]) -> [SKIP][176] ([Intel XE#2311]) +10 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][177] ([Intel XE#2312]) -> [SKIP][178] ([Intel XE#2313]) +11 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][179] ([Intel XE#2313]) -> [SKIP][180] ([Intel XE#2312]) +6 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-blt.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][181] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][182] ([Intel XE#3544])
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-5/igt@kms_hdr@brightness-with-hdr.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-9/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-bmg: [SKIP][183] ([Intel XE#5021]) -> [SKIP][184] ([Intel XE#4596])
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-7/igt@kms_plane_multiple@2x-tiling-y.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [SKIP][185] ([Intel XE#2426]) -> [FAIL][186] ([Intel XE#1729])
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][187] ([Intel XE#2509]) -> [SKIP][188] ([Intel XE#2426])
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-9/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate:
- shard-bmg: [ABORT][189] ([Intel XE#7169]) -> [SKIP][190] ([Intel XE#7136])
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4497-241994730989320c926da9f2d0a5ec80b48f993d/shard-bmg-9/igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/shard-bmg-5/igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[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#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#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467
[Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
[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#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
[Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[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#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633
[Intel XE#4665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4665
[Intel XE#4692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4692
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
[Intel XE#5416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5416
[Intel XE#5745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5745
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#5993]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5993
[Intel XE#6266]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6266
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
[Intel XE#6681]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6681
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6900]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6900
[Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#6968]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6968
[Intel XE#6969]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6969
[Intel XE#7006]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7006
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7086]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7086
[Intel XE#7111]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7111
[Intel XE#7130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130
[Intel XE#7131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7131
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7169]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7169
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#7180]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7180
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8735 -> IGT_8736
* Linux: xe-4497-241994730989320c926da9f2d0a5ec80b48f993d -> xe-pw-157554v6
IGT_8735: 8735
IGT_8736: 8736
xe-4497-241994730989320c926da9f2d0a5ec80b48f993d: 241994730989320c926da9f2d0a5ec80b48f993d
xe-pw-157554v6: 157554v6
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-157554v6/index.html
[-- Attachment #2: Type: text/html, Size: 66068 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread* Re: [RESEND 0/5] LOBF fixes
2026-02-04 5:02 [RESEND 0/5] LOBF fixes Ankit Nautiyal
` (13 preceding siblings ...)
2026-02-05 7:35 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-02-05 9:20 ` Nautiyal, Ankit K
14 siblings, 0 replies; 18+ messages in thread
From: Nautiyal, Ankit K @ 2026-02-05 9:20 UTC (permalink / raw)
To: intel-gfx, intel-xe
Cc: jouni.hogander, ville.syrjala, animesh.manna, michal.grzelak
On 2/4/2026 10:32 AM, Ankit Nautiyal wrote:
> Fix lobf to use computed guardband and set context latency.
> Also disable LOBF while switching to LRR/seamlessMN modes.
>
> Rev2:
> - Use is_enabling/disabling macros for lobf checks and other suggested
> changes from Ville.
>
> Rev3:
> - Address comments from Michal.
>
> Rev4:
> - Address comments from Jouni.
>
> Rev5:
> - Rebase
>
> Ankit Nautiyal (5):
> drm/i915/alpm: Compute LOBF late after guardband is already determined
> drm/i915/alpm: Allow LOBF only if window1 > alpm check_entry lines
> drm/i915/alpm: Allow LOBF only for platform that have Always on VRR TG
> drm/i915/alpm: Simplify and align LOBF checks in pre/post plane update
> drm/i915/alpm: Disable LOBF around transitioning for LRR/seamless MN
Thanks for the reviews and comments, pushed to drm-intel-next.
Regards,
Ankit
>
> drivers/gpu/drm/i915/display/intel_alpm.c | 144 ++++++++++++-------
> drivers/gpu/drm/i915/display/intel_alpm.h | 9 +-
> drivers/gpu/drm/i915/display/intel_display.c | 29 +++-
> drivers/gpu/drm/i915/display/intel_dp.c | 2 +
> drivers/gpu/drm/i915/display/intel_vrr.c | 2 +
> 5 files changed, 129 insertions(+), 57 deletions(-)
>
^ permalink raw reply [flat|nested] 18+ messages in thread