* [PATCH 01/14] drm/i915/vrr: Use crtc_vsync_start/end for computing vrr.vsync_start/end
2025-09-07 7:32 [PATCH 00/14] Optimize vrr.guardband and fix LRR Ankit Nautiyal
@ 2025-09-07 7:32 ` Ankit Nautiyal
2025-09-08 8:08 ` Shankar, Uma
2025-09-07 7:32 ` [PATCH 02/14] drm/i915/skl_watermark: Fix the scaling factor for chroma subsampling Ankit Nautiyal
` (17 subsequent siblings)
18 siblings, 1 reply; 26+ messages in thread
From: Ankit Nautiyal @ 2025-09-07 7:32 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: ville.syrjala, Ankit Nautiyal
Use adjusted_mode->crtc_vsync_start/end instead of
adjusted_mode->vsync_start while computing vrr.vsync_start/end.
For most modes, these are same but for 3D/stereo modes the
crtc_vsync_start is different than vsync_start.
Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
drivers/gpu/drm/i915/display/intel_vrr.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_vrr.c b/drivers/gpu/drm/i915/display/intel_vrr.c
index 3eed37f271b0..266cf5e1859d 100644
--- a/drivers/gpu/drm/i915/display/intel_vrr.c
+++ b/drivers/gpu/drm/i915/display/intel_vrr.c
@@ -406,10 +406,10 @@ intel_vrr_compute_config(struct intel_crtc_state *crtc_state,
if (HAS_AS_SDP(display)) {
crtc_state->vrr.vsync_start =
(crtc_state->hw.adjusted_mode.crtc_vtotal -
- crtc_state->hw.adjusted_mode.vsync_start);
+ crtc_state->hw.adjusted_mode.crtc_vsync_start);
crtc_state->vrr.vsync_end =
(crtc_state->hw.adjusted_mode.crtc_vtotal -
- crtc_state->hw.adjusted_mode.vsync_end);
+ crtc_state->hw.adjusted_mode.crtc_vsync_end);
}
}
--
2.45.2
^ permalink raw reply related [flat|nested] 26+ messages in thread* RE: [PATCH 01/14] drm/i915/vrr: Use crtc_vsync_start/end for computing vrr.vsync_start/end
2025-09-07 7:32 ` [PATCH 01/14] drm/i915/vrr: Use crtc_vsync_start/end for computing vrr.vsync_start/end Ankit Nautiyal
@ 2025-09-08 8:08 ` Shankar, Uma
0 siblings, 0 replies; 26+ messages in thread
From: Shankar, Uma @ 2025-09-08 8:08 UTC (permalink / raw)
To: Nautiyal, Ankit K, intel-gfx@lists.freedesktop.org,
intel-xe@lists.freedesktop.org
Cc: ville.syrjala@linux.intel.com, Nautiyal, Ankit K
> -----Original Message-----
> From: Intel-xe <intel-xe-bounces@lists.freedesktop.org> On Behalf Of Ankit
> Nautiyal
> Sent: Sunday, September 7, 2025 1:02 PM
> To: intel-gfx@lists.freedesktop.org; intel-xe@lists.freedesktop.org
> Cc: ville.syrjala@linux.intel.com; Nautiyal, Ankit K <ankit.k.nautiyal@intel.com>
> Subject: [PATCH 01/14] drm/i915/vrr: Use crtc_vsync_start/end for computing
> vrr.vsync_start/end
>
> Use adjusted_mode->crtc_vsync_start/end instead of adjusted_mode-
> >vsync_start while computing vrr.vsync_start/end.
> For most modes, these are same but for 3D/stereo modes the crtc_vsync_start is
> different than vsync_start.
Looks Good to me.
Reviewed-by: Uma Shankar <uma.shankar@intel.com>
> Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_vrr.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_vrr.c
> b/drivers/gpu/drm/i915/display/intel_vrr.c
> index 3eed37f271b0..266cf5e1859d 100644
> --- a/drivers/gpu/drm/i915/display/intel_vrr.c
> +++ b/drivers/gpu/drm/i915/display/intel_vrr.c
> @@ -406,10 +406,10 @@ intel_vrr_compute_config(struct intel_crtc_state
> *crtc_state,
> if (HAS_AS_SDP(display)) {
> crtc_state->vrr.vsync_start =
> (crtc_state->hw.adjusted_mode.crtc_vtotal -
> - crtc_state->hw.adjusted_mode.vsync_start);
> + crtc_state->hw.adjusted_mode.crtc_vsync_start);
> crtc_state->vrr.vsync_end =
> (crtc_state->hw.adjusted_mode.crtc_vtotal -
> - crtc_state->hw.adjusted_mode.vsync_end);
> + crtc_state->hw.adjusted_mode.crtc_vsync_end);
> }
> }
>
> --
> 2.45.2
^ permalink raw reply [flat|nested] 26+ messages in thread
* [PATCH 02/14] drm/i915/skl_watermark: Fix the scaling factor for chroma subsampling
2025-09-07 7:32 [PATCH 00/14] Optimize vrr.guardband and fix LRR Ankit Nautiyal
2025-09-07 7:32 ` [PATCH 01/14] drm/i915/vrr: Use crtc_vsync_start/end for computing vrr.vsync_start/end Ankit Nautiyal
@ 2025-09-07 7:32 ` Ankit Nautiyal
2025-09-07 7:32 ` [PATCH 03/14] drm/i915/skl_watermark: Pass linetime as argument to latency helpers Ankit Nautiyal
` (16 subsequent siblings)
18 siblings, 0 replies; 26+ messages in thread
From: Ankit Nautiyal @ 2025-09-07 7:32 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: ville.syrjala, Ankit Nautiyal, Mitul Golani
The Bspec:70151, mentions Chroma subsampling is a 2x downscale
operation. This means that the downscale factor is 2 in each direction.
So correct the downscaling factor to 4.
Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Reviewed-by: Mitul Golani <mitulkumar.ajitkumar.golani@intel.com>
---
drivers/gpu/drm/i915/display/skl_watermark.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/skl_watermark.c b/drivers/gpu/drm/i915/display/skl_watermark.c
index d74cbb43ae6f..51548447f4aa 100644
--- a/drivers/gpu/drm/i915/display/skl_watermark.c
+++ b/drivers/gpu/drm/i915/display/skl_watermark.c
@@ -2185,7 +2185,7 @@ dsc_prefill_latency(const struct intel_crtc_state *crtc_state)
crtc_state->hw.adjusted_mode.clock);
int num_scaler_users = hweight32(scaler_state->scaler_users);
int chroma_downscaling_factor =
- crtc_state->output_format == INTEL_OUTPUT_FORMAT_YCBCR420 ? 2 : 1;
+ crtc_state->output_format == INTEL_OUTPUT_FORMAT_YCBCR420 ? 4 : 1;
u32 dsc_prefill_latency = 0;
if (!crtc_state->dsc.compression_enable ||
@@ -2228,7 +2228,7 @@ scaler_prefill_latency(const struct intel_crtc_state *crtc_state)
u64 hscale_k = max(1000, mul_u32_u32(scaler_state->scalers[0].hscale, 1000) >> 16);
u64 vscale_k = max(1000, mul_u32_u32(scaler_state->scalers[0].vscale, 1000) >> 16);
int chroma_downscaling_factor =
- crtc_state->output_format == INTEL_OUTPUT_FORMAT_YCBCR420 ? 2 : 1;
+ crtc_state->output_format == INTEL_OUTPUT_FORMAT_YCBCR420 ? 4 : 1;
int latency;
latency = DIV_ROUND_UP_ULL((4 * linetime * hscale_k * vscale_k *
--
2.45.2
^ permalink raw reply related [flat|nested] 26+ messages in thread* [PATCH 03/14] drm/i915/skl_watermark: Pass linetime as argument to latency helpers
2025-09-07 7:32 [PATCH 00/14] Optimize vrr.guardband and fix LRR Ankit Nautiyal
2025-09-07 7:32 ` [PATCH 01/14] drm/i915/vrr: Use crtc_vsync_start/end for computing vrr.vsync_start/end Ankit Nautiyal
2025-09-07 7:32 ` [PATCH 02/14] drm/i915/skl_watermark: Fix the scaling factor for chroma subsampling Ankit Nautiyal
@ 2025-09-07 7:32 ` Ankit Nautiyal
2025-09-07 7:32 ` [PATCH 04/14] drm/i915/skl_scaler: Introduce helper for chroma downscale factor Ankit Nautiyal
` (15 subsequent siblings)
18 siblings, 0 replies; 26+ messages in thread
From: Ankit Nautiyal @ 2025-09-07 7:32 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: ville.syrjala, Ankit Nautiyal, Mitul Golani
Refactor dsc_prefill_latency and scaler_prefill_latency to take
linetime as an explicit parameter instead of computing it internally.
This avoids redundant calculations and simplifies scanline conversion
logic in skl_is_vblank_too_short().
This change also facilitates future extraction of these helpers for use
cases where latencies are computed for an optimized guardband, based on the
highest resolution mode, rather than the current mode.
Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Reviewed-by: Mitul Golani <mitulkumar.ajitkumar.golani@intel.com>
---
drivers/gpu/drm/i915/display/skl_watermark.c | 18 ++++++++----------
1 file changed, 8 insertions(+), 10 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/skl_watermark.c b/drivers/gpu/drm/i915/display/skl_watermark.c
index 51548447f4aa..49d424f5b305 100644
--- a/drivers/gpu/drm/i915/display/skl_watermark.c
+++ b/drivers/gpu/drm/i915/display/skl_watermark.c
@@ -2176,13 +2176,11 @@ cdclk_prefill_adjustment(const struct intel_crtc_state *crtc_state)
}
static int
-dsc_prefill_latency(const struct intel_crtc_state *crtc_state)
+dsc_prefill_latency(const struct intel_crtc_state *crtc_state, int linetime)
{
struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
const struct intel_crtc_scaler_state *scaler_state =
&crtc_state->scaler_state;
- int linetime = DIV_ROUND_UP(1000 * crtc_state->hw.adjusted_mode.htotal,
- crtc_state->hw.adjusted_mode.clock);
int num_scaler_users = hweight32(scaler_state->scaler_users);
int chroma_downscaling_factor =
crtc_state->output_format == INTEL_OUTPUT_FORMAT_YCBCR420 ? 4 : 1;
@@ -2206,18 +2204,16 @@ dsc_prefill_latency(const struct intel_crtc_state *crtc_state)
dsc_prefill_latency *= cdclk_prefill_adjustment(crtc_state);
- return intel_usecs_to_scanlines(&crtc_state->hw.adjusted_mode, dsc_prefill_latency);
+ return dsc_prefill_latency;
}
static int
-scaler_prefill_latency(const struct intel_crtc_state *crtc_state)
+scaler_prefill_latency(const struct intel_crtc_state *crtc_state, int linetime)
{
const struct intel_crtc_scaler_state *scaler_state =
&crtc_state->scaler_state;
int num_scaler_users = hweight32(scaler_state->scaler_users);
int scaler_prefill_latency = 0;
- int linetime = DIV_ROUND_UP(1000 * crtc_state->hw.adjusted_mode.htotal,
- crtc_state->hw.adjusted_mode.clock);
if (!num_scaler_users)
return scaler_prefill_latency;
@@ -2238,7 +2234,7 @@ scaler_prefill_latency(const struct intel_crtc_state *crtc_state)
scaler_prefill_latency *= cdclk_prefill_adjustment(crtc_state);
- return intel_usecs_to_scanlines(&crtc_state->hw.adjusted_mode, scaler_prefill_latency);
+ return scaler_prefill_latency;
}
static bool
@@ -2247,11 +2243,13 @@ skl_is_vblank_too_short(const struct intel_crtc_state *crtc_state,
{
const struct drm_display_mode *adjusted_mode =
&crtc_state->hw.adjusted_mode;
+ int linetime = DIV_ROUND_UP(1000 * adjusted_mode->htotal,
+ adjusted_mode->clock);
return crtc_state->framestart_delay +
intel_usecs_to_scanlines(adjusted_mode, latency) +
- scaler_prefill_latency(crtc_state) +
- dsc_prefill_latency(crtc_state) +
+ DIV_ROUND_UP(scaler_prefill_latency(crtc_state, linetime), linetime) +
+ DIV_ROUND_UP(dsc_prefill_latency(crtc_state, linetime), linetime) +
wm0_lines >
adjusted_mode->crtc_vtotal - adjusted_mode->crtc_vblank_start;
}
--
2.45.2
^ permalink raw reply related [flat|nested] 26+ messages in thread* [PATCH 04/14] drm/i915/skl_scaler: Introduce helper for chroma downscale factor
2025-09-07 7:32 [PATCH 00/14] Optimize vrr.guardband and fix LRR Ankit Nautiyal
` (2 preceding siblings ...)
2025-09-07 7:32 ` [PATCH 03/14] drm/i915/skl_watermark: Pass linetime as argument to latency helpers Ankit Nautiyal
@ 2025-09-07 7:32 ` Ankit Nautiyal
2025-09-07 7:32 ` [PATCH 05/14] drm/i915/display: Extract helpers to set dsc/scaler prefill latencies Ankit Nautiyal
` (14 subsequent siblings)
18 siblings, 0 replies; 26+ messages in thread
From: Ankit Nautiyal @ 2025-09-07 7:32 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: ville.syrjala, Ankit Nautiyal, Mitul Golani
For 444 to 420 output format conversion, scaler uses 2x downscaling in
each direction. Introduce skl_scaler_chroma_downscale_factor() to
encapsulate the chroma subsampling adjustment used in scaler/dsc
pre-fill latency calculations.
Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Reviewed-by: Mitul Golani <mitulkumar.ajitkumar.golani@intel.com>
---
drivers/gpu/drm/i915/display/skl_scaler.c | 5 +++++
drivers/gpu/drm/i915/display/skl_scaler.h | 3 +++
drivers/gpu/drm/i915/display/skl_watermark.c | 7 +++----
3 files changed, 11 insertions(+), 4 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/skl_scaler.c b/drivers/gpu/drm/i915/display/skl_scaler.c
index c6cccf170ff1..af2cbd54c32e 100644
--- a/drivers/gpu/drm/i915/display/skl_scaler.c
+++ b/drivers/gpu/drm/i915/display/skl_scaler.c
@@ -968,3 +968,8 @@ void adl_scaler_ecc_unmask(const struct intel_crtc_state *crtc_state)
1);
intel_de_write(display, XELPD_DISPLAY_ERR_FATAL_MASK, 0);
}
+
+int skl_scaler_chroma_downscale_factor(const struct intel_crtc_state *crtc_state)
+{
+ return crtc_state->output_format == INTEL_OUTPUT_FORMAT_YCBCR420 ? 4 : 1;
+}
diff --git a/drivers/gpu/drm/i915/display/skl_scaler.h b/drivers/gpu/drm/i915/display/skl_scaler.h
index 12a19016c5f6..257330d4c329 100644
--- a/drivers/gpu/drm/i915/display/skl_scaler.h
+++ b/drivers/gpu/drm/i915/display/skl_scaler.h
@@ -45,4 +45,7 @@ skl_scaler_mode_valid(struct intel_display *display,
void adl_scaler_ecc_mask(const struct intel_crtc_state *crtc_state);
void adl_scaler_ecc_unmask(const struct intel_crtc_state *crtc_state);
+
+int skl_scaler_chroma_downscale_factor(const struct intel_crtc_state *crtc_state);
+
#endif
diff --git a/drivers/gpu/drm/i915/display/skl_watermark.c b/drivers/gpu/drm/i915/display/skl_watermark.c
index 49d424f5b305..3d322c39ce21 100644
--- a/drivers/gpu/drm/i915/display/skl_watermark.c
+++ b/drivers/gpu/drm/i915/display/skl_watermark.c
@@ -30,6 +30,7 @@
#include "intel_plane.h"
#include "intel_wm.h"
#include "skl_universal_plane_regs.h"
+#include "skl_scaler.h"
#include "skl_watermark.h"
#include "skl_watermark_regs.h"
@@ -2182,8 +2183,7 @@ dsc_prefill_latency(const struct intel_crtc_state *crtc_state, int linetime)
const struct intel_crtc_scaler_state *scaler_state =
&crtc_state->scaler_state;
int num_scaler_users = hweight32(scaler_state->scaler_users);
- int chroma_downscaling_factor =
- crtc_state->output_format == INTEL_OUTPUT_FORMAT_YCBCR420 ? 4 : 1;
+ int chroma_downscaling_factor = skl_scaler_chroma_downscale_factor(crtc_state);
u32 dsc_prefill_latency = 0;
if (!crtc_state->dsc.compression_enable ||
@@ -2223,8 +2223,7 @@ scaler_prefill_latency(const struct intel_crtc_state *crtc_state, int linetime)
if (num_scaler_users > 1) {
u64 hscale_k = max(1000, mul_u32_u32(scaler_state->scalers[0].hscale, 1000) >> 16);
u64 vscale_k = max(1000, mul_u32_u32(scaler_state->scalers[0].vscale, 1000) >> 16);
- int chroma_downscaling_factor =
- crtc_state->output_format == INTEL_OUTPUT_FORMAT_YCBCR420 ? 4 : 1;
+ int chroma_downscaling_factor = skl_scaler_chroma_downscale_factor(crtc_state);
int latency;
latency = DIV_ROUND_UP_ULL((4 * linetime * hscale_k * vscale_k *
--
2.45.2
^ permalink raw reply related [flat|nested] 26+ messages in thread* [PATCH 05/14] drm/i915/display: Extract helpers to set dsc/scaler prefill latencies
2025-09-07 7:32 [PATCH 00/14] Optimize vrr.guardband and fix LRR Ankit Nautiyal
` (3 preceding siblings ...)
2025-09-07 7:32 ` [PATCH 04/14] drm/i915/skl_scaler: Introduce helper for chroma downscale factor Ankit Nautiyal
@ 2025-09-07 7:32 ` Ankit Nautiyal
2025-09-07 7:32 ` [PATCH 06/14] drm/i915/dp: Add SDP latency computation helper Ankit Nautiyal
` (13 subsequent siblings)
18 siblings, 0 replies; 26+ messages in thread
From: Ankit Nautiyal @ 2025-09-07 7:32 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: ville.syrjala, Ankit Nautiyal, Mitul Golani
Currently dsc/scaler prefill latencies are handled during watermark
calculations. With the optimized guardband, we need to compute the
latencies to find the minimum guardband that works for most cases.
Extract the helpers to compute these latencies, so that they can be used
while computing vrr guardband.
While at it, put declarations in reverse xmas tree order for better
redability.
v2: Initialize {h,v}scale_k to 0, and simplify the check in
intel_display_scaler_prefill_latency(). (Mitul)
v3: Move helpers from intel_display.c to intel_vrr.c as they are specific
to account for latencies to program vrr guardband. (Jani)
Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Reviewed-by: Mitul Golani <mitulkumar.ajitkumar.golani@intel.com>
---
drivers/gpu/drm/i915/display/intel_vrr.c | 33 ++++++++++++++
drivers/gpu/drm/i915/display/intel_vrr.h | 8 ++++
drivers/gpu/drm/i915/display/skl_watermark.c | 47 +++++++++-----------
3 files changed, 63 insertions(+), 25 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_vrr.c b/drivers/gpu/drm/i915/display/intel_vrr.c
index 266cf5e1859d..fd690de5b45b 100644
--- a/drivers/gpu/drm/i915/display/intel_vrr.c
+++ b/drivers/gpu/drm/i915/display/intel_vrr.c
@@ -772,3 +772,36 @@ void intel_vrr_get_config(struct intel_crtc_state *crtc_state)
if (crtc_state->vrr.enable)
crtc_state->mode_flags |= I915_MODE_FLAG_VRR;
}
+
+int intel_vrr_guardband_scaler_latency(int num_scaler_users, u64 hscale, u64 vscale,
+ int chroma_downscaling_factor,
+ int cdclk_prefill_adjustment,
+ int linetime)
+{
+ int scaler_prefill_latency;
+
+ scaler_prefill_latency = 4 * linetime +
+ DIV_ROUND_UP_ULL((4 * linetime * hscale * vscale *
+ chroma_downscaling_factor), 1000000);
+
+ scaler_prefill_latency *= cdclk_prefill_adjustment;
+
+ return scaler_prefill_latency;
+}
+
+int intel_vrr_guardband_dsc_latency(int num_scaler_users, u64 *hscale, u64 *vscale,
+ int chroma_downscaling_factor,
+ int cdclk_prefill_adjustment,
+ int linetime)
+{
+ int dsc_prefill_latency;
+
+ dsc_prefill_latency = DIV_ROUND_UP(15 * linetime * chroma_downscaling_factor, 10);
+
+ for (int i = 0; i < num_scaler_users; i++)
+ dsc_prefill_latency = DIV_ROUND_UP_ULL(dsc_prefill_latency * hscale[i] * vscale[i],
+ 1000000);
+ dsc_prefill_latency *= cdclk_prefill_adjustment;
+
+ return dsc_prefill_latency;
+}
diff --git a/drivers/gpu/drm/i915/display/intel_vrr.h b/drivers/gpu/drm/i915/display/intel_vrr.h
index 38bf9996b883..950041647e47 100644
--- a/drivers/gpu/drm/i915/display/intel_vrr.h
+++ b/drivers/gpu/drm/i915/display/intel_vrr.h
@@ -41,5 +41,13 @@ void intel_vrr_transcoder_enable(const struct intel_crtc_state *crtc_state);
void intel_vrr_transcoder_disable(const struct intel_crtc_state *crtc_state);
void intel_vrr_set_fixed_rr_timings(const struct intel_crtc_state *crtc_state);
bool intel_vrr_always_use_vrr_tg(struct intel_display *display);
+int intel_vrr_guardband_scaler_latency(int num_scaler_users, u64 hscale, u64 vscale,
+ int chroma_downscaling_factor,
+ int cdclk_prefill_adjustment,
+ int linetime);
+int intel_vrr_guardband_dsc_latency(int num_scaler_users, u64 *hscale, u64 *vscale,
+ int chroma_downscaling_factor,
+ int cdclk_prefill_adjustment,
+ int linetime);
#endif /* __INTEL_VRR_H__ */
diff --git a/drivers/gpu/drm/i915/display/skl_watermark.c b/drivers/gpu/drm/i915/display/skl_watermark.c
index 3d322c39ce21..1ff2b4d9a35e 100644
--- a/drivers/gpu/drm/i915/display/skl_watermark.c
+++ b/drivers/gpu/drm/i915/display/skl_watermark.c
@@ -28,6 +28,7 @@
#include "intel_flipq.h"
#include "intel_pcode.h"
#include "intel_plane.h"
+#include "intel_vrr.h"
#include "intel_wm.h"
#include "skl_universal_plane_regs.h"
#include "skl_scaler.h"
@@ -2179,11 +2180,12 @@ cdclk_prefill_adjustment(const struct intel_crtc_state *crtc_state)
static int
dsc_prefill_latency(const struct intel_crtc_state *crtc_state, int linetime)
{
+ const struct intel_crtc_scaler_state *scaler_state = &crtc_state->scaler_state;
+ int chroma_downscaling_factor = skl_scaler_chroma_downscale_factor(crtc_state);
struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
- const struct intel_crtc_scaler_state *scaler_state =
- &crtc_state->scaler_state;
int num_scaler_users = hweight32(scaler_state->scaler_users);
- int chroma_downscaling_factor = skl_scaler_chroma_downscale_factor(crtc_state);
+ u64 hscale_k[ARRAY_SIZE(scaler_state->scalers)];
+ u64 vscale_k[ARRAY_SIZE(scaler_state->scalers)];
u32 dsc_prefill_latency = 0;
if (!crtc_state->dsc.compression_enable ||
@@ -2191,18 +2193,16 @@ dsc_prefill_latency(const struct intel_crtc_state *crtc_state, int linetime)
num_scaler_users > crtc->num_scalers)
return dsc_prefill_latency;
- dsc_prefill_latency = DIV_ROUND_UP(15 * linetime * chroma_downscaling_factor, 10);
-
for (int i = 0; i < num_scaler_users; i++) {
- u64 hscale_k, vscale_k;
-
- hscale_k = max(1000, mul_u32_u32(scaler_state->scalers[i].hscale, 1000) >> 16);
- vscale_k = max(1000, mul_u32_u32(scaler_state->scalers[i].vscale, 1000) >> 16);
- dsc_prefill_latency = DIV_ROUND_UP_ULL(dsc_prefill_latency * hscale_k * vscale_k,
- 1000000);
+ hscale_k[i] = max(1000, mul_u32_u32(scaler_state->scalers[i].hscale, 1000) >> 16);
+ vscale_k[i] = max(1000, mul_u32_u32(scaler_state->scalers[i].vscale, 1000) >> 16);
}
- dsc_prefill_latency *= cdclk_prefill_adjustment(crtc_state);
+ dsc_prefill_latency =
+ intel_vrr_guardband_dsc_latency(num_scaler_users, hscale_k, vscale_k,
+ chroma_downscaling_factor,
+ cdclk_prefill_adjustment(crtc_state),
+ linetime);
return dsc_prefill_latency;
}
@@ -2210,28 +2210,25 @@ dsc_prefill_latency(const struct intel_crtc_state *crtc_state, int linetime)
static int
scaler_prefill_latency(const struct intel_crtc_state *crtc_state, int linetime)
{
- const struct intel_crtc_scaler_state *scaler_state =
- &crtc_state->scaler_state;
+ const struct intel_crtc_scaler_state *scaler_state = &crtc_state->scaler_state;
+ int chroma_downscaling_factor = skl_scaler_chroma_downscale_factor(crtc_state);
int num_scaler_users = hweight32(scaler_state->scaler_users);
+ u64 hscale_k = 0, vscale_k = 0;
int scaler_prefill_latency = 0;
if (!num_scaler_users)
return scaler_prefill_latency;
- scaler_prefill_latency = 4 * linetime;
-
if (num_scaler_users > 1) {
- u64 hscale_k = max(1000, mul_u32_u32(scaler_state->scalers[0].hscale, 1000) >> 16);
- u64 vscale_k = max(1000, mul_u32_u32(scaler_state->scalers[0].vscale, 1000) >> 16);
- int chroma_downscaling_factor = skl_scaler_chroma_downscale_factor(crtc_state);
- int latency;
-
- latency = DIV_ROUND_UP_ULL((4 * linetime * hscale_k * vscale_k *
- chroma_downscaling_factor), 1000000);
- scaler_prefill_latency += latency;
+ hscale_k = max(1000, mul_u32_u32(scaler_state->scalers[0].hscale, 1000) >> 16);
+ vscale_k = max(1000, mul_u32_u32(scaler_state->scalers[0].vscale, 1000) >> 16);
}
- scaler_prefill_latency *= cdclk_prefill_adjustment(crtc_state);
+ scaler_prefill_latency =
+ intel_vrr_guardband_scaler_latency(num_scaler_users, hscale_k, vscale_k,
+ chroma_downscaling_factor,
+ cdclk_prefill_adjustment(crtc_state),
+ linetime);
return scaler_prefill_latency;
}
--
2.45.2
^ permalink raw reply related [flat|nested] 26+ messages in thread* [PATCH 06/14] drm/i915/dp: Add SDP latency computation helper
2025-09-07 7:32 [PATCH 00/14] Optimize vrr.guardband and fix LRR Ankit Nautiyal
` (4 preceding siblings ...)
2025-09-07 7:32 ` [PATCH 05/14] drm/i915/display: Extract helpers to set dsc/scaler prefill latencies Ankit Nautiyal
@ 2025-09-07 7:32 ` Ankit Nautiyal
2025-09-07 7:32 ` [PATCH 07/14] drm/i915/alpm: Add function to compute max link-wake latency Ankit Nautiyal
` (12 subsequent siblings)
18 siblings, 0 replies; 26+ messages in thread
From: Ankit Nautiyal @ 2025-09-07 7:32 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: ville.syrjala, Ankit Nautiyal, Mitul Golani
Add a helper to compute vblank time needed for transmitting specific
DisplayPort SDPs like PPS, GAMUT_METADATA, and VSC_EXT. Latency is
based on line count per packet type and current line time.
Used to ensure adequate vblank when features like DSC/HDR are enabled.
Bspec: 70151
Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Reviewed-by: Mitul Golani <mitulkumar.ajitkumar.golani@intel.com>
---
drivers/gpu/drm/i915/display/intel_dp.c | 47 +++++++++++++++++++++++++
drivers/gpu/drm/i915/display/intel_dp.h | 1 +
2 files changed, 48 insertions(+)
diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
index 2eab591a8ef5..d5d30bdc6848 100644
--- a/drivers/gpu/drm/i915/display/intel_dp.c
+++ b/drivers/gpu/drm/i915/display/intel_dp.c
@@ -6857,3 +6857,50 @@ void intel_dp_mst_resume(struct intel_display *display)
}
}
}
+
+static
+int intel_dp_get_sdp_latency(u32 type, int linetime_us)
+{
+ int lines;
+
+ switch (type) {
+ case DP_SDP_VSC_EXT_VESA:
+ case DP_SDP_VSC_EXT_CEA:
+ lines = 10;
+ break;
+ case HDMI_PACKET_TYPE_GAMUT_METADATA:
+ lines = 8;
+ break;
+ case DP_SDP_PPS:
+ lines = 6;
+ break;
+ default:
+ lines = 0;
+ break;
+ }
+
+ return lines * linetime_us;
+}
+
+int intel_dp_compute_sdp_latency(struct intel_crtc_state *crtc_state,
+ bool assume_all_enabled)
+{
+ const struct drm_display_mode *adjusted_mode = &crtc_state->hw.adjusted_mode;
+ int sdp_latency = 0;
+ int linetime_us;
+
+ linetime_us = DIV_ROUND_UP(adjusted_mode->crtc_htotal * 1000,
+ adjusted_mode->crtc_clock);
+ if (assume_all_enabled ||
+ crtc_state->infoframes.enable &
+ intel_hdmi_infoframe_enable(HDMI_PACKET_TYPE_GAMUT_METADATA))
+ sdp_latency = max(sdp_latency,
+ intel_dp_get_sdp_latency(HDMI_PACKET_TYPE_GAMUT_METADATA,
+ linetime_us));
+
+ if (assume_all_enabled || crtc_state->dsc.compression_enable)
+ sdp_latency = max(sdp_latency,
+ intel_dp_get_sdp_latency(DP_SDP_PPS, linetime_us));
+
+ return sdp_latency;
+}
diff --git a/drivers/gpu/drm/i915/display/intel_dp.h b/drivers/gpu/drm/i915/display/intel_dp.h
index f90cfd1dbbd0..bfd1bd448672 100644
--- a/drivers/gpu/drm/i915/display/intel_dp.h
+++ b/drivers/gpu/drm/i915/display/intel_dp.h
@@ -215,5 +215,6 @@ int intel_dp_compute_min_hblank(struct intel_crtc_state *crtc_state,
int intel_dp_dsc_bpp_step_x16(const struct intel_connector *connector);
void intel_dp_dpcd_set_probe(struct intel_dp *intel_dp, bool force_on_external);
bool intel_dp_in_hdr_mode(const struct drm_connector_state *conn_state);
+int intel_dp_compute_sdp_latency(struct intel_crtc_state *crtc_state, bool assume_all_enabled);
#endif /* __INTEL_DP_H__ */
--
2.45.2
^ permalink raw reply related [flat|nested] 26+ messages in thread* [PATCH 07/14] drm/i915/alpm: Add function to compute max link-wake latency
2025-09-07 7:32 [PATCH 00/14] Optimize vrr.guardband and fix LRR Ankit Nautiyal
` (5 preceding siblings ...)
2025-09-07 7:32 ` [PATCH 06/14] drm/i915/dp: Add SDP latency computation helper Ankit Nautiyal
@ 2025-09-07 7:32 ` Ankit Nautiyal
2025-09-07 7:32 ` [PATCH 08/14] drm/i915/vrr: Use vrr.sync_start for getting vtotal Ankit Nautiyal
` (11 subsequent siblings)
18 siblings, 0 replies; 26+ messages in thread
From: Ankit Nautiyal @ 2025-09-07 7:32 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: ville.syrjala, Ankit Nautiyal, Mitul Golani
Introduce a helper to compute the max link wake latency when using
Auxless/Aux wake mechanism for PSR/Panel Replay/LOBF features.
This will be used to compute the minimum guardband so that the link wake
latencies are accounted and these features work smoothly for higher
refresh rate panels.
Bspec: 70151, 71477
Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Reviewed-by: Mitul Golani <mitulkumar.ajitkumar.golani@intel.com>
---
drivers/gpu/drm/i915/display/intel_alpm.c | 15 +++++++++++++++
drivers/gpu/drm/i915/display/intel_alpm.h | 2 ++
2 files changed, 17 insertions(+)
diff --git a/drivers/gpu/drm/i915/display/intel_alpm.c b/drivers/gpu/drm/i915/display/intel_alpm.c
index ed7a7ed486b5..02de069b02d7 100644
--- a/drivers/gpu/drm/i915/display/intel_alpm.c
+++ b/drivers/gpu/drm/i915/display/intel_alpm.c
@@ -611,3 +611,18 @@ bool intel_alpm_get_error(struct intel_dp *intel_dp)
return false;
}
+
+int intel_alpm_compute_max_link_wake_latency(struct intel_crtc_state *crtc_state,
+ bool assume_all_enabled)
+{
+ int psr2_vblank_time = 0;
+ int auxless_wake_time = 0;
+
+ if (assume_all_enabled || crtc_state->has_sel_update)
+ psr2_vblank_time = io_buffer_wake_time(crtc_state);
+
+ if (assume_all_enabled || crtc_state->has_panel_replay)
+ auxless_wake_time = _lnl_compute_aux_less_wake_time(crtc_state);
+
+ return max(psr2_vblank_time, auxless_wake_time);
+}
diff --git a/drivers/gpu/drm/i915/display/intel_alpm.h b/drivers/gpu/drm/i915/display/intel_alpm.h
index a861c20b5d79..8f1db54eecf5 100644
--- a/drivers/gpu/drm/i915/display/intel_alpm.h
+++ b/drivers/gpu/drm/i915/display/intel_alpm.h
@@ -38,4 +38,6 @@ 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);
+int intel_alpm_compute_max_link_wake_latency(struct intel_crtc_state *crtc_state,
+ bool assume_all_enabled);
#endif
--
2.45.2
^ permalink raw reply related [flat|nested] 26+ messages in thread* [PATCH 08/14] drm/i915/vrr: Use vrr.sync_start for getting vtotal
2025-09-07 7:32 [PATCH 00/14] Optimize vrr.guardband and fix LRR Ankit Nautiyal
` (6 preceding siblings ...)
2025-09-07 7:32 ` [PATCH 07/14] drm/i915/alpm: Add function to compute max link-wake latency Ankit Nautiyal
@ 2025-09-07 7:32 ` Ankit Nautiyal
2025-09-07 7:32 ` [PATCH 09/14] drm/i915/display: Add guardband check for feature latencies Ankit Nautiyal
` (10 subsequent siblings)
18 siblings, 0 replies; 26+ messages in thread
From: Ankit Nautiyal @ 2025-09-07 7:32 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: ville.syrjala, Ankit Nautiyal, Mitul Golani
Currently, in intel_vrr_get_config() crtc_vtotal is computed from
vrr.vmin vtotal, since the VTOTAL.Vtotal bits are deprecated.
Since vmin is currently set to crtc_vtotal, this gives us the vtotal.
However, as we move to optimized guardband, vmin will be modified to set
to the minimum Vtotal for highest refresh rate supported.
Instead of depending on vmin, compute vtotal from crtc_vsync_start and
vrr.vsync_start. This works since vrr.vsync_start is measured from the
end of vblank, and crtc_vsync_start is measured from start of the
scanline. Together their sum is equal to the crtc_vtotal.
Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Reviewed-by: Mitul Golani <mitulkumar.ajitkumar.golani@intel.com>
---
drivers/gpu/drm/i915/display/intel_vrr.c | 21 ++++++++++-----------
1 file changed, 10 insertions(+), 11 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_vrr.c b/drivers/gpu/drm/i915/display/intel_vrr.c
index fd690de5b45b..855974174afd 100644
--- a/drivers/gpu/drm/i915/display/intel_vrr.c
+++ b/drivers/gpu/drm/i915/display/intel_vrr.c
@@ -735,17 +735,6 @@ void intel_vrr_get_config(struct intel_crtc_state *crtc_state)
TRANS_VRR_VMAX(display, cpu_transcoder)) + 1;
crtc_state->vrr.vmin = intel_de_read(display,
TRANS_VRR_VMIN(display, cpu_transcoder)) + 1;
-
- /*
- * For platforms that always use VRR Timing Generator, the VTOTAL.Vtotal
- * bits are not filled. Since for these platforms TRAN_VMIN is always
- * filled with crtc_vtotal, use TRAN_VRR_VMIN to get the vtotal for
- * adjusted_mode.
- */
- if (intel_vrr_always_use_vrr_tg(display))
- crtc_state->hw.adjusted_mode.crtc_vtotal =
- intel_vrr_vmin_vtotal(crtc_state);
-
if (HAS_AS_SDP(display)) {
trans_vrr_vsync =
intel_de_read(display,
@@ -755,6 +744,16 @@ void intel_vrr_get_config(struct intel_crtc_state *crtc_state)
crtc_state->vrr.vsync_end =
REG_FIELD_GET(VRR_VSYNC_END_MASK, trans_vrr_vsync);
}
+ /*
+ * For platforms that always use VRR Timing Generator, the VTOTAL.Vtotal
+ * bits are not filled. Since vrr.vsync_start is computed as:
+ * crtc_vtotal - crtc_vsync_start, we can derive vtotal from
+ * vrr.vsync_start and crtc_vsync_start.
+ */
+ if (intel_vrr_always_use_vrr_tg(display))
+ crtc_state->hw.adjusted_mode.crtc_vtotal =
+ crtc_state->hw.adjusted_mode.crtc_vsync_start +
+ crtc_state->vrr.vsync_start;
}
vrr_enable = trans_vrr_ctl & VRR_CTL_VRR_ENABLE;
--
2.45.2
^ permalink raw reply related [flat|nested] 26+ messages in thread* [PATCH 09/14] drm/i915/display: Add guardband check for feature latencies
2025-09-07 7:32 [PATCH 00/14] Optimize vrr.guardband and fix LRR Ankit Nautiyal
` (7 preceding siblings ...)
2025-09-07 7:32 ` [PATCH 08/14] drm/i915/vrr: Use vrr.sync_start for getting vtotal Ankit Nautiyal
@ 2025-09-07 7:32 ` Ankit Nautiyal
2025-09-07 7:32 ` [PATCH 10/14] drm/i915/skl_watermark: Remove redundant latency checks from vblank validation Ankit Nautiyal
` (9 subsequent siblings)
18 siblings, 0 replies; 26+ messages in thread
From: Ankit Nautiyal @ 2025-09-07 7:32 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: ville.syrjala, Ankit Nautiyal, Mitul Golani
Add a check during atomic crtc check phase to ensure the programmed VRR
guardband is sufficient to cover latencies introduced by enabled features
such as DSC, PSR/PR, scalers, and DP SDPs.
Currently, the guardband is programmed to match the vblank length, so
existing checks in skl_is_vblank_too_short() are valid. However, upcoming
changes will optimize the guardband independently of vblank, making those
checks incorrect.
Introduce an explicit guardband check to prepare for future updates
that will remove checking against the vblank length and later program an
optimized guardband.
v2: Use new helper for PSR2/Panel Replay latency.
v3:
-Align the name of helper with intel_crtc_atomic_check and rename it to
intel_crtc_guardband_atomic_check(). (Jani)
-Simplify checks in the helper. (Mitul)
-Make a separate helper to compute wm0 prefill time. (Mitul)
v4: Drop redundant HAS_VRR() check. (Jani).
Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Reviewed-by: Mitul Golani <mitulkumar.ajitkumar.golani@intel.com>
---
drivers/gpu/drm/i915/display/intel_display.c | 142 +++++++++++++++++++
drivers/gpu/drm/i915/display/skl_watermark.c | 2 +-
drivers/gpu/drm/i915/display/skl_watermark.h | 1 +
3 files changed, 144 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
index c1a3a95c65f0..787bb6ebdc75 100644
--- a/drivers/gpu/drm/i915/display/intel_display.c
+++ b/drivers/gpu/drm/i915/display/intel_display.c
@@ -4227,6 +4227,142 @@ static int hsw_compute_linetime_wm(struct intel_atomic_state *state,
return 0;
}
+static int
+cdclk_prefill_adjustment(const struct intel_crtc_state *crtc_state)
+{
+ struct intel_display *display = to_intel_display(crtc_state);
+ struct intel_atomic_state *state =
+ to_intel_atomic_state(crtc_state->uapi.state);
+ const struct intel_cdclk_state *cdclk_state;
+
+ cdclk_state = intel_atomic_get_cdclk_state(state);
+ if (IS_ERR(cdclk_state)) {
+ drm_WARN_ON(display->drm, PTR_ERR(cdclk_state));
+ return 1;
+ }
+
+ return min(1, DIV_ROUND_UP(crtc_state->pixel_rate,
+ 2 * intel_cdclk_logical(cdclk_state)));
+}
+
+static int
+dsc_prefill_latency(const struct intel_crtc_state *crtc_state, int linetime)
+{
+ const struct intel_crtc_scaler_state *scaler_state = &crtc_state->scaler_state;
+ int chroma_downscaling_factor = skl_scaler_chroma_downscale_factor(crtc_state);
+ struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
+ int num_scaler_users = hweight32(scaler_state->scaler_users);
+ u64 hscale_k[ARRAY_SIZE(scaler_state->scalers)];
+ u64 vscale_k[ARRAY_SIZE(scaler_state->scalers)];
+ u32 dsc_prefill_latency = 0;
+
+ if (!crtc_state->dsc.compression_enable ||
+ !num_scaler_users ||
+ num_scaler_users > crtc->num_scalers)
+ return dsc_prefill_latency;
+
+ for (int i = 0; i < num_scaler_users; i++) {
+ hscale_k[i] = max(1000, mul_u32_u32(scaler_state->scalers[i].hscale, 1000) >> 16);
+ vscale_k[i] = max(1000, mul_u32_u32(scaler_state->scalers[i].vscale, 1000) >> 16);
+ }
+
+ dsc_prefill_latency =
+ intel_vrr_guardband_dsc_latency(num_scaler_users, hscale_k, vscale_k,
+ chroma_downscaling_factor,
+ cdclk_prefill_adjustment(crtc_state),
+ linetime);
+
+ return dsc_prefill_latency;
+}
+
+static int
+scaler_prefill_latency(const struct intel_crtc_state *crtc_state, int linetime)
+{
+ const struct intel_crtc_scaler_state *scaler_state = &crtc_state->scaler_state;
+ int chroma_downscaling_factor = skl_scaler_chroma_downscale_factor(crtc_state);
+ int num_scaler_users = hweight32(scaler_state->scaler_users);
+ u64 hscale_k = 0, vscale_k = 0;
+ int scaler_prefill_latency = 0;
+
+ if (!num_scaler_users)
+ return scaler_prefill_latency;
+
+ if (num_scaler_users > 1) {
+ hscale_k = max(1000, mul_u32_u32(scaler_state->scalers[0].hscale, 1000) >> 16);
+ vscale_k = max(1000, mul_u32_u32(scaler_state->scalers[0].vscale, 1000) >> 16);
+ }
+
+ scaler_prefill_latency =
+ intel_vrr_guardband_scaler_latency(num_scaler_users, hscale_k, vscale_k,
+ chroma_downscaling_factor,
+ cdclk_prefill_adjustment(crtc_state),
+ linetime);
+
+ return scaler_prefill_latency;
+}
+
+static int
+wm0_prefill_latency(int linetime_us, int max_wm0_lines)
+{
+ return 20 + linetime_us * max_wm0_lines;
+}
+
+static int intel_crtc_guardband_atomic_check(struct intel_crtc_state *crtc_state)
+{
+ struct intel_display *display = to_intel_display(crtc_state);
+ const struct drm_display_mode *adjusted_mode = &crtc_state->hw.adjusted_mode;
+ int dsc_prefill_time = 0;
+ int scaler_prefill_time;
+ int wm0_prefill_time;
+ int pkgc_max_latency;
+ int psr2_pr_latency;
+ int min_guardband;
+ int guardband_us;
+ int sagv_latency;
+ int linetime_us;
+ int sdp_latency;
+ int pm_delay;
+
+ if (!crtc_state->vrr.enable && !intel_vrr_always_use_vrr_tg(display))
+ return 0;
+
+ if (!adjusted_mode->crtc_clock)
+ return 0;
+
+ linetime_us = DIV_ROUND_UP(adjusted_mode->crtc_htotal * 1000,
+ adjusted_mode->crtc_clock);
+
+ pkgc_max_latency = skl_watermark_max_latency(display, 1);
+ sagv_latency = display->sagv.block_time_us;
+
+ wm0_prefill_time = wm0_prefill_latency(linetime_us, skl_max_wm0_lines(crtc_state));
+
+ scaler_prefill_time = scaler_prefill_latency(crtc_state, linetime_us);
+
+ dsc_prefill_time = dsc_prefill_latency(crtc_state, linetime_us);
+
+ pm_delay = crtc_state->framestart_delay +
+ max(sagv_latency, pkgc_max_latency) +
+ wm0_prefill_time +
+ scaler_prefill_time +
+ dsc_prefill_time;
+
+ psr2_pr_latency = intel_alpm_compute_max_link_wake_latency(crtc_state, false);
+ sdp_latency = intel_dp_compute_sdp_latency(crtc_state, false);
+
+ guardband_us = max(sdp_latency, psr2_pr_latency);
+ guardband_us = max(guardband_us, pm_delay);
+ min_guardband = DIV_ROUND_UP(guardband_us, linetime_us);
+
+ if (crtc_state->vrr.guardband < min_guardband) {
+ drm_dbg_kms(display->drm, "vrr.guardband %d < min guardband %d\n",
+ crtc_state->vrr.guardband, min_guardband);
+ return -EINVAL;
+ }
+
+ return 0;
+}
+
static int intel_crtc_atomic_check(struct intel_atomic_state *state,
struct intel_crtc *crtc)
{
@@ -4289,6 +4425,12 @@ static int intel_crtc_atomic_check(struct intel_atomic_state *state,
if (ret)
return ret;
+ if (intel_vrr_possible(crtc_state)) {
+ ret = intel_crtc_guardband_atomic_check(crtc_state);
+ if (ret)
+ return ret;
+ }
+
return 0;
}
diff --git a/drivers/gpu/drm/i915/display/skl_watermark.c b/drivers/gpu/drm/i915/display/skl_watermark.c
index 1ff2b4d9a35e..83ac26004f05 100644
--- a/drivers/gpu/drm/i915/display/skl_watermark.c
+++ b/drivers/gpu/drm/i915/display/skl_watermark.c
@@ -2250,7 +2250,7 @@ skl_is_vblank_too_short(const struct intel_crtc_state *crtc_state,
adjusted_mode->crtc_vtotal - adjusted_mode->crtc_vblank_start;
}
-static int skl_max_wm0_lines(const struct intel_crtc_state *crtc_state)
+int skl_max_wm0_lines(const struct intel_crtc_state *crtc_state)
{
struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
enum plane_id plane_id;
diff --git a/drivers/gpu/drm/i915/display/skl_watermark.h b/drivers/gpu/drm/i915/display/skl_watermark.h
index 62790816f030..8706c2010ebe 100644
--- a/drivers/gpu/drm/i915/display/skl_watermark.h
+++ b/drivers/gpu/drm/i915/display/skl_watermark.h
@@ -78,6 +78,7 @@ void intel_dbuf_mbus_post_ddb_update(struct intel_atomic_state *state);
void intel_program_dpkgc_latency(struct intel_atomic_state *state);
bool intel_dbuf_pmdemand_needs_update(struct intel_atomic_state *state);
+int skl_max_wm0_lines(const struct intel_crtc_state *crtc_state);
#endif /* __SKL_WATERMARK_H__ */
--
2.45.2
^ permalink raw reply related [flat|nested] 26+ messages in thread* [PATCH 10/14] drm/i915/skl_watermark: Remove redundant latency checks from vblank validation
2025-09-07 7:32 [PATCH 00/14] Optimize vrr.guardband and fix LRR Ankit Nautiyal
` (8 preceding siblings ...)
2025-09-07 7:32 ` [PATCH 09/14] drm/i915/display: Add guardband check for feature latencies Ankit Nautiyal
@ 2025-09-07 7:32 ` Ankit Nautiyal
2025-09-07 7:32 ` [PATCH 11/14] drm/i915/dsb: Align flipdone with delayed vblank using guardband wait Ankit Nautiyal
` (8 subsequent siblings)
18 siblings, 0 replies; 26+ messages in thread
From: Ankit Nautiyal @ 2025-09-07 7:32 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: ville.syrjala, Ankit Nautiyal, Mitul Golani
Drop DSC and scaler prefill latency checks from skl_is_vblank_too_short().
These are now covered by the guardband validation added during the atomic
CRTC check phase.
This cleanup prepares for future changes where the guardband will be
optimized independently of vblank length, making vblank-based checks
obsolete.
Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Reviewed-by: Mitul Golani <mitulkumar.ajitkumar.golani@intel.com>
---
drivers/gpu/drm/i915/display/skl_watermark.c | 79 --------------------
1 file changed, 79 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/skl_watermark.c b/drivers/gpu/drm/i915/display/skl_watermark.c
index 83ac26004f05..07589096b143 100644
--- a/drivers/gpu/drm/i915/display/skl_watermark.c
+++ b/drivers/gpu/drm/i915/display/skl_watermark.c
@@ -28,7 +28,6 @@
#include "intel_flipq.h"
#include "intel_pcode.h"
#include "intel_plane.h"
-#include "intel_vrr.h"
#include "intel_wm.h"
#include "skl_universal_plane_regs.h"
#include "skl_scaler.h"
@@ -2159,93 +2158,15 @@ static int icl_build_plane_wm(struct intel_crtc_state *crtc_state,
return 0;
}
-static int
-cdclk_prefill_adjustment(const struct intel_crtc_state *crtc_state)
-{
- struct intel_display *display = to_intel_display(crtc_state);
- struct intel_atomic_state *state =
- to_intel_atomic_state(crtc_state->uapi.state);
- const struct intel_cdclk_state *cdclk_state;
-
- cdclk_state = intel_atomic_get_cdclk_state(state);
- if (IS_ERR(cdclk_state)) {
- drm_WARN_ON(display->drm, PTR_ERR(cdclk_state));
- return 1;
- }
-
- return min(1, DIV_ROUND_UP(crtc_state->pixel_rate,
- 2 * intel_cdclk_logical(cdclk_state)));
-}
-
-static int
-dsc_prefill_latency(const struct intel_crtc_state *crtc_state, int linetime)
-{
- const struct intel_crtc_scaler_state *scaler_state = &crtc_state->scaler_state;
- int chroma_downscaling_factor = skl_scaler_chroma_downscale_factor(crtc_state);
- struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
- int num_scaler_users = hweight32(scaler_state->scaler_users);
- u64 hscale_k[ARRAY_SIZE(scaler_state->scalers)];
- u64 vscale_k[ARRAY_SIZE(scaler_state->scalers)];
- u32 dsc_prefill_latency = 0;
-
- if (!crtc_state->dsc.compression_enable ||
- !num_scaler_users ||
- num_scaler_users > crtc->num_scalers)
- return dsc_prefill_latency;
-
- for (int i = 0; i < num_scaler_users; i++) {
- hscale_k[i] = max(1000, mul_u32_u32(scaler_state->scalers[i].hscale, 1000) >> 16);
- vscale_k[i] = max(1000, mul_u32_u32(scaler_state->scalers[i].vscale, 1000) >> 16);
- }
-
- dsc_prefill_latency =
- intel_vrr_guardband_dsc_latency(num_scaler_users, hscale_k, vscale_k,
- chroma_downscaling_factor,
- cdclk_prefill_adjustment(crtc_state),
- linetime);
-
- return dsc_prefill_latency;
-}
-
-static int
-scaler_prefill_latency(const struct intel_crtc_state *crtc_state, int linetime)
-{
- const struct intel_crtc_scaler_state *scaler_state = &crtc_state->scaler_state;
- int chroma_downscaling_factor = skl_scaler_chroma_downscale_factor(crtc_state);
- int num_scaler_users = hweight32(scaler_state->scaler_users);
- u64 hscale_k = 0, vscale_k = 0;
- int scaler_prefill_latency = 0;
-
- if (!num_scaler_users)
- return scaler_prefill_latency;
-
- if (num_scaler_users > 1) {
- hscale_k = max(1000, mul_u32_u32(scaler_state->scalers[0].hscale, 1000) >> 16);
- vscale_k = max(1000, mul_u32_u32(scaler_state->scalers[0].vscale, 1000) >> 16);
- }
-
- scaler_prefill_latency =
- intel_vrr_guardband_scaler_latency(num_scaler_users, hscale_k, vscale_k,
- chroma_downscaling_factor,
- cdclk_prefill_adjustment(crtc_state),
- linetime);
-
- return scaler_prefill_latency;
-}
-
static bool
skl_is_vblank_too_short(const struct intel_crtc_state *crtc_state,
int wm0_lines, int latency)
{
const struct drm_display_mode *adjusted_mode =
&crtc_state->hw.adjusted_mode;
- int linetime = DIV_ROUND_UP(1000 * adjusted_mode->htotal,
- adjusted_mode->clock);
return crtc_state->framestart_delay +
intel_usecs_to_scanlines(adjusted_mode, latency) +
- DIV_ROUND_UP(scaler_prefill_latency(crtc_state, linetime), linetime) +
- DIV_ROUND_UP(dsc_prefill_latency(crtc_state, linetime), linetime) +
wm0_lines >
adjusted_mode->crtc_vtotal - adjusted_mode->crtc_vblank_start;
}
--
2.45.2
^ permalink raw reply related [flat|nested] 26+ messages in thread* [PATCH 11/14] drm/i915/dsb: Align flipdone with delayed vblank using guardband wait
2025-09-07 7:32 [PATCH 00/14] Optimize vrr.guardband and fix LRR Ankit Nautiyal
` (9 preceding siblings ...)
2025-09-07 7:32 ` [PATCH 10/14] drm/i915/skl_watermark: Remove redundant latency checks from vblank validation Ankit Nautiyal
@ 2025-09-07 7:32 ` Ankit Nautiyal
2025-09-08 8:05 ` Shankar, Uma
2025-09-07 7:32 ` [PATCH 12/14] drm/i915/vrr: Use static guardband to support seamless LRR switching Ankit Nautiyal
` (7 subsequent siblings)
18 siblings, 1 reply; 26+ messages in thread
From: Ankit Nautiyal @ 2025-09-07 7:32 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: ville.syrjala, Ankit Nautiyal
Currently the guardband is same as vblank length and undelayed vblank
and the vblank and the flipdone with dsb interrupt are already aligned
for the fixed refresh rate case.
As we move towards a shorter optimized guardband we need to wait for the
delayed vblank before the DSB interrupt to align the flipdone event with
the delayed vblank.
Introduce a helper intel_dsb_wait_for_delayed_vblank() to wait for the
scanline range [delayed_vblank_start, vmin/vmax vtotal], depending on
whether fixed refresh rate mode or variable refresh rate mode is active,
before triggering the DSB interrupt.
Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
drivers/gpu/drm/i915/display/intel_display.c | 1 +
drivers/gpu/drm/i915/display/intel_dsb.c | 16 ++++++++++++++++
drivers/gpu/drm/i915/display/intel_dsb.h | 3 +++
3 files changed, 20 insertions(+)
diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
index 787bb6ebdc75..fb072275b1c7 100644
--- a/drivers/gpu/drm/i915/display/intel_display.c
+++ b/drivers/gpu/drm/i915/display/intel_display.c
@@ -7447,6 +7447,7 @@ static void intel_atomic_dsb_finish(struct intel_atomic_state *state,
intel_vrr_send_push(new_crtc_state->dsb_commit, new_crtc_state);
intel_dsb_wait_vblank_delay(state, new_crtc_state->dsb_commit);
+ intel_dsb_wait_for_delayed_vblank(state, new_crtc_state->dsb_commit);
intel_vrr_check_push_sent(new_crtc_state->dsb_commit,
new_crtc_state);
intel_dsb_interrupt(new_crtc_state->dsb_commit);
diff --git a/drivers/gpu/drm/i915/display/intel_dsb.c b/drivers/gpu/drm/i915/display/intel_dsb.c
index dee44d45b668..6b3a4d25a6c6 100644
--- a/drivers/gpu/drm/i915/display/intel_dsb.c
+++ b/drivers/gpu/drm/i915/display/intel_dsb.c
@@ -1026,3 +1026,19 @@ void intel_dsb_irq_handler(struct intel_display *display,
drm_err(display->drm, "[CRTC:%d:%s] DSB %d GOSUB programming error\n",
crtc->base.base.id, crtc->base.name, dsb_id);
}
+
+void intel_dsb_wait_for_delayed_vblank(struct intel_atomic_state *state,
+ struct intel_dsb *dsb)
+{
+ const struct intel_crtc_state *crtc_state;
+ struct intel_crtc *crtc = dsb->crtc;
+ int start, end;
+
+ crtc_state = intel_pre_commit_crtc_state(state, crtc);
+ start = intel_vrr_vmin_vblank_start(crtc_state);
+ end = crtc_state->vrr.enable ?
+ intel_vrr_vmax_vtotal(crtc_state) :
+ intel_vrr_vmin_vtotal(crtc_state);
+
+ intel_dsb_wait_scanline_in(state, dsb, start, end);
+}
diff --git a/drivers/gpu/drm/i915/display/intel_dsb.h b/drivers/gpu/drm/i915/display/intel_dsb.h
index c8f4499916eb..6eb810aad18f 100644
--- a/drivers/gpu/drm/i915/display/intel_dsb.h
+++ b/drivers/gpu/drm/i915/display/intel_dsb.h
@@ -74,4 +74,7 @@ void intel_dsb_wait(struct intel_dsb *dsb);
void intel_dsb_irq_handler(struct intel_display *display,
enum pipe pipe, enum intel_dsb_id dsb_id);
+void intel_dsb_wait_for_delayed_vblank(struct intel_atomic_state *state,
+ struct intel_dsb *dsb);
+
#endif
--
2.45.2
^ permalink raw reply related [flat|nested] 26+ messages in thread* RE: [PATCH 11/14] drm/i915/dsb: Align flipdone with delayed vblank using guardband wait
2025-09-07 7:32 ` [PATCH 11/14] drm/i915/dsb: Align flipdone with delayed vblank using guardband wait Ankit Nautiyal
@ 2025-09-08 8:05 ` Shankar, Uma
0 siblings, 0 replies; 26+ messages in thread
From: Shankar, Uma @ 2025-09-08 8:05 UTC (permalink / raw)
To: Nautiyal, Ankit K, intel-gfx@lists.freedesktop.org,
intel-xe@lists.freedesktop.org
Cc: ville.syrjala@linux.intel.com, Nautiyal, Ankit K
> -----Original Message-----
> From: Intel-xe <intel-xe-bounces@lists.freedesktop.org> On Behalf Of Ankit
> Nautiyal
> Sent: Sunday, September 7, 2025 1:03 PM
> To: intel-gfx@lists.freedesktop.org; intel-xe@lists.freedesktop.org
> Cc: ville.syrjala@linux.intel.com; Nautiyal, Ankit K <ankit.k.nautiyal@intel.com>
> Subject: [PATCH 11/14] drm/i915/dsb: Align flipdone with delayed vblank using
> guardband wait
>
> Currently the guardband is same as vblank length and undelayed vblank and the
> vblank and the flipdone with dsb interrupt are already aligned for the fixed refresh
> rate case.
>
> As we move towards a shorter optimized guardband we need to wait for the
> delayed vblank before the DSB interrupt to align the flipdone event with the
> delayed vblank.
>
> Introduce a helper intel_dsb_wait_for_delayed_vblank() to wait for the scanline
> range [delayed_vblank_start, vmin/vmax vtotal], depending on whether fixed
> refresh rate mode or variable refresh rate mode is active, before triggering the
> DSB interrupt.
>
> Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_display.c | 1 +
> drivers/gpu/drm/i915/display/intel_dsb.c | 16 ++++++++++++++++
> drivers/gpu/drm/i915/display/intel_dsb.h | 3 +++
> 3 files changed, 20 insertions(+)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_display.c
> b/drivers/gpu/drm/i915/display/intel_display.c
> index 787bb6ebdc75..fb072275b1c7 100644
> --- a/drivers/gpu/drm/i915/display/intel_display.c
> +++ b/drivers/gpu/drm/i915/display/intel_display.c
> @@ -7447,6 +7447,7 @@ static void intel_atomic_dsb_finish(struct
> intel_atomic_state *state,
>
> intel_vrr_send_push(new_crtc_state->dsb_commit,
> new_crtc_state);
> intel_dsb_wait_vblank_delay(state, new_crtc_state-
> >dsb_commit);
> + intel_dsb_wait_for_delayed_vblank(state, new_crtc_state-
> >dsb_commit);
> intel_vrr_check_push_sent(new_crtc_state->dsb_commit,
> new_crtc_state);
> intel_dsb_interrupt(new_crtc_state->dsb_commit);
> diff --git a/drivers/gpu/drm/i915/display/intel_dsb.c
> b/drivers/gpu/drm/i915/display/intel_dsb.c
> index dee44d45b668..6b3a4d25a6c6 100644
> --- a/drivers/gpu/drm/i915/display/intel_dsb.c
> +++ b/drivers/gpu/drm/i915/display/intel_dsb.c
> @@ -1026,3 +1026,19 @@ void intel_dsb_irq_handler(struct intel_display
> *display,
> drm_err(display->drm, "[CRTC:%d:%s] DSB %d GOSUB
> programming error\n",
> crtc->base.base.id, crtc->base.name, dsb_id); }
> +
> +void intel_dsb_wait_for_delayed_vblank(struct intel_atomic_state *state,
> + struct intel_dsb *dsb)
> +{
> + const struct intel_crtc_state *crtc_state;
> + struct intel_crtc *crtc = dsb->crtc;
> + int start, end;
> +
> + crtc_state = intel_pre_commit_crtc_state(state, crtc);
> + start = intel_vrr_vmin_vblank_start(crtc_state);
> + end = crtc_state->vrr.enable ?
> + intel_vrr_vmax_vtotal(crtc_state) :
> + intel_vrr_vmin_vtotal(crtc_state);
Add comment explaining the reasoning more clearly here, why its different between VRR vs Fixed RR.
Also add a "Fixed Me" and fix it cleanly as separate patch with "intel_dsb_wait_vblank_delay".
With above addressed,
Reviewed-by: Uma Shankar <uma.shankar@intel.com>
> +
> + intel_dsb_wait_scanline_in(state, dsb, start, end); }
> diff --git a/drivers/gpu/drm/i915/display/intel_dsb.h
> b/drivers/gpu/drm/i915/display/intel_dsb.h
> index c8f4499916eb..6eb810aad18f 100644
> --- a/drivers/gpu/drm/i915/display/intel_dsb.h
> +++ b/drivers/gpu/drm/i915/display/intel_dsb.h
> @@ -74,4 +74,7 @@ void intel_dsb_wait(struct intel_dsb *dsb); void
> intel_dsb_irq_handler(struct intel_display *display,
> enum pipe pipe, enum intel_dsb_id dsb_id);
>
> +void intel_dsb_wait_for_delayed_vblank(struct intel_atomic_state *state,
> + struct intel_dsb *dsb);
> +
> #endif
> --
> 2.45.2
^ permalink raw reply [flat|nested] 26+ messages in thread
* [PATCH 12/14] drm/i915/vrr: Use static guardband to support seamless LRR switching
2025-09-07 7:32 [PATCH 00/14] Optimize vrr.guardband and fix LRR Ankit Nautiyal
` (10 preceding siblings ...)
2025-09-07 7:32 ` [PATCH 11/14] drm/i915/dsb: Align flipdone with delayed vblank using guardband wait Ankit Nautiyal
@ 2025-09-07 7:32 ` Ankit Nautiyal
2025-09-08 16:43 ` Ville Syrjälä
2025-09-07 7:32 ` [PATCH 13/14] drm/i915/panel: Refactor helper to get highest fixed mode Ankit Nautiyal
` (6 subsequent siblings)
18 siblings, 1 reply; 26+ messages in thread
From: Ankit Nautiyal @ 2025-09-07 7:32 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: ville.syrjala, Ankit Nautiyal, Mitul Golani
In the current VRR implementation, vrr.vmin and vrr.guardband are set such
that they do not need to change when switching from fixed refresh rate to
variable refresh rate. Specifically, vrr.guardband is always set to match
the vblank length. This approach works for most cases, but not for LRR,
where the guardband would need to change while the VRR timing generator is
still active.
With the VRR TG always active, live updates to guardband are unsafe and not
recommended. To ensure hardware safety, guardband was moved out of the
!fastset block, meaning any change now requires a full modeset.
This breaks seamless LRR switching, which was previously supported.
Since the problem arises from guardband being matched to the vblank length,
solution is to use a minimal, sufficient static value, instead. So we use a
static guardband defined during mode-set that fits within the smallest
expected vblank and remains unchanged in case of features like LRR where
vtotal changes. To compute this minimum guardband we take into account
latencies/delays due to different features as mentioned in the Bspec.
v2:
-Use helpers for dsc/scaler prefill latencies. (Mitul)
-Account for pkgc latency and take max of pkgc and sagv latencies.
v3: Use new helper for PSR2/Panel Replay latency.
v4: Avoid re-setting the Vmin/Flipline for optimized guardband.
Bspec: 70151
Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Reviewed-by: Mitul Golani <mitulkumar.ajitkumar.golani@intel.com> (#v3)
---
drivers/gpu/drm/i915/display/intel_display.c | 2 +-
drivers/gpu/drm/i915/display/intel_vrr.c | 127 ++++++++++++++++++-
drivers/gpu/drm/i915/display/intel_vrr.h | 3 +-
3 files changed, 128 insertions(+), 4 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
index fb072275b1c7..3fa94675d5e1 100644
--- a/drivers/gpu/drm/i915/display/intel_display.c
+++ b/drivers/gpu/drm/i915/display/intel_display.c
@@ -4902,7 +4902,6 @@ intel_modeset_pipe_config_late(struct intel_atomic_state *state,
struct drm_connector *connector;
int i;
- intel_vrr_compute_config_late(crtc_state);
for_each_new_connector_in_state(&state->base, connector,
conn_state, i) {
@@ -4914,6 +4913,7 @@ intel_modeset_pipe_config_late(struct intel_atomic_state *state,
!encoder->compute_config_late)
continue;
+ intel_vrr_compute_config_late(crtc_state, conn_state);
ret = encoder->compute_config_late(encoder, crtc_state,
conn_state);
if (ret)
diff --git a/drivers/gpu/drm/i915/display/intel_vrr.c b/drivers/gpu/drm/i915/display/intel_vrr.c
index 855974174afd..fff684eb2514 100644
--- a/drivers/gpu/drm/i915/display/intel_vrr.c
+++ b/drivers/gpu/drm/i915/display/intel_vrr.c
@@ -6,12 +6,15 @@
#include <drm/drm_print.h>
+#include "intel_alpm.h"
#include "intel_de.h"
#include "intel_display_regs.h"
#include "intel_display_types.h"
#include "intel_dp.h"
#include "intel_vrr.h"
#include "intel_vrr_regs.h"
+#include "skl_scaler.h"
+#include "skl_watermark.h"
#define FIXED_POINT_PRECISION 100
#define CMRR_PRECISION_TOLERANCE 10
@@ -413,15 +416,135 @@ intel_vrr_compute_config(struct intel_crtc_state *crtc_state,
}
}
-void intel_vrr_compute_config_late(struct intel_crtc_state *crtc_state)
+static
+int scaler_prefill_latency(struct intel_crtc_state *crtc_state, int linetime_us)
+{
+ int chroma_downscaling_factor = skl_scaler_chroma_downscale_factor(crtc_state);
+ u64 hscale_k, vscale_k;
+ int cdclk_adjustment;
+ int num_scaler_users;
+
+ /*
+ * Assuming:
+ * Both scaler enabled.
+ * scaler 1 downscaling factor as 2 x 2 (Horiz x Vert)
+ * scaler 2 downscaling factor as 2 x 1 (Horiz x Vert)
+ * Cdclk Adjustment : 1
+ */
+ num_scaler_users = 2;
+ hscale_k = 2 * 1000;
+ vscale_k = 2 * 1000;
+ cdclk_adjustment = 1;
+
+ return intel_vrr_guardband_scaler_latency(num_scaler_users, hscale_k, vscale_k,
+ chroma_downscaling_factor,
+ cdclk_adjustment,
+ linetime_us);
+}
+
+static
+int dsc_prefill_latency(struct intel_crtc_state *crtc_state, int linetime_us)
+{
+#define MAX_SCALERS 2
+ int chroma_downscaling_factor = skl_scaler_chroma_downscale_factor(crtc_state);
+ u64 hscale_k[MAX_SCALERS], vscale_k[MAX_SCALERS];
+ int cdclk_adjustment;
+ int num_scaler_users;
+
+ /*
+ * Assuming:
+ * Both scaler enabled.
+ * scaler 1 downscaling factor as 2 x 2 (Horiz x Vert)
+ * scaler 2 downscaling factor as 2 x 1 (Horiz x Vert)
+ * Cdclk Adjustment : 1
+ */
+ num_scaler_users = MAX_SCALERS;
+ hscale_k[0] = 2 * 1000;
+ vscale_k[0] = 2 * 1000;
+ hscale_k[1] = 2 * 1000;
+ vscale_k[1] = 1 * 1000;
+
+ cdclk_adjustment = 1;
+
+ return intel_vrr_guardband_dsc_latency(num_scaler_users, hscale_k, vscale_k,
+ chroma_downscaling_factor,
+ cdclk_adjustment,
+ linetime_us);
+}
+
+static
+int intel_vrr_compute_guardband(struct intel_crtc_state *crtc_state,
+ struct intel_connector *connector)
+{
+ const struct drm_display_mode *adjusted_mode = &crtc_state->hw.adjusted_mode;
+ struct intel_display *display = to_intel_display(crtc_state);
+ int dsc_prefill_time = 0;
+ int psr2_pr_latency = 0;
+ int scaler_prefill_time;
+ int wm0_prefill_time;
+ int pkgc_max_latency;
+ int sagv_latency;
+ int sdp_latency = 0;
+ int guardband_us;
+ int linetime_us;
+ int guardband;
+ int pm_delay;
+
+ linetime_us = DIV_ROUND_UP(adjusted_mode->crtc_htotal * 1000,
+ adjusted_mode->crtc_clock);
+
+ pkgc_max_latency = skl_watermark_max_latency(display, 1);
+ sagv_latency = display->sagv.block_time_us;
+
+ /* Assuming max wm0 lines = 4 */
+ wm0_prefill_time = 4 * linetime_us + 20;
+
+ scaler_prefill_time = scaler_prefill_latency(crtc_state, linetime_us);
+
+ if (crtc_state->dsc.compression_enable)
+ dsc_prefill_time = dsc_prefill_latency(crtc_state, linetime_us);
+
+ pm_delay = crtc_state->framestart_delay +
+ max(sagv_latency, pkgc_max_latency) +
+ wm0_prefill_time +
+ scaler_prefill_time +
+ dsc_prefill_time;
+
+ switch (connector->base.connector_type) {
+ case DRM_MODE_CONNECTOR_eDP:
+ case DRM_MODE_CONNECTOR_DisplayPort:
+ psr2_pr_latency = intel_alpm_compute_max_link_wake_latency(crtc_state, true);
+ sdp_latency = intel_dp_compute_sdp_latency(crtc_state, true);
+ break;
+ default:
+ break;
+ }
+
+ guardband_us = max(sdp_latency, psr2_pr_latency);
+ guardband_us = max(guardband_us, pm_delay);
+
+ guardband = DIV_ROUND_UP(guardband_us, linetime_us);
+
+ /* guardband cannot be more than the Vmax vblank */
+ guardband = min(guardband, crtc_state->vrr.vmax - adjusted_mode->crtc_vblank_start);
+
+ return guardband;
+}
+
+void intel_vrr_compute_config_late(struct intel_crtc_state *crtc_state,
+ struct drm_connector_state *conn_state)
{
struct intel_display *display = to_intel_display(crtc_state);
const struct drm_display_mode *adjusted_mode = &crtc_state->hw.adjusted_mode;
+ struct intel_connector *connector =
+ to_intel_connector(conn_state->connector);
if (!intel_vrr_possible(crtc_state))
return;
- if (DISPLAY_VER(display) >= 13) {
+ if (intel_vrr_always_use_vrr_tg(display)) {
+ crtc_state->vrr.guardband = intel_vrr_compute_guardband(crtc_state, connector);
+ } else if (DISPLAY_VER(display) >= 13) {
crtc_state->vrr.guardband =
crtc_state->vrr.vmin - adjusted_mode->crtc_vblank_start;
} else {
diff --git a/drivers/gpu/drm/i915/display/intel_vrr.h b/drivers/gpu/drm/i915/display/intel_vrr.h
index 950041647e47..362638fd0d66 100644
--- a/drivers/gpu/drm/i915/display/intel_vrr.h
+++ b/drivers/gpu/drm/i915/display/intel_vrr.h
@@ -21,7 +21,8 @@ bool intel_vrr_possible(const struct intel_crtc_state *crtc_state);
void intel_vrr_check_modeset(struct intel_atomic_state *state);
void intel_vrr_compute_config(struct intel_crtc_state *crtc_state,
struct drm_connector_state *conn_state);
-void intel_vrr_compute_config_late(struct intel_crtc_state *crtc_state);
+void intel_vrr_compute_config_late(struct intel_crtc_state *crtc_state,
+ struct drm_connector_state *conn_state);
void intel_vrr_set_transcoder_timings(const struct intel_crtc_state *crtc_state);
void intel_vrr_enable(const struct intel_crtc_state *crtc_state);
void intel_vrr_send_push(struct intel_dsb *dsb,
--
2.45.2
^ permalink raw reply related [flat|nested] 26+ messages in thread* Re: [PATCH 12/14] drm/i915/vrr: Use static guardband to support seamless LRR switching
2025-09-07 7:32 ` [PATCH 12/14] drm/i915/vrr: Use static guardband to support seamless LRR switching Ankit Nautiyal
@ 2025-09-08 16:43 ` Ville Syrjälä
2025-09-09 15:02 ` Nautiyal, Ankit K
0 siblings, 1 reply; 26+ messages in thread
From: Ville Syrjälä @ 2025-09-08 16:43 UTC (permalink / raw)
To: Ankit Nautiyal; +Cc: intel-gfx, intel-xe, Mitul Golani
On Sun, Sep 07, 2025 at 01:02:39PM +0530, Ankit Nautiyal wrote:
> In the current VRR implementation, vrr.vmin and vrr.guardband are set such
> that they do not need to change when switching from fixed refresh rate to
> variable refresh rate. Specifically, vrr.guardband is always set to match
> the vblank length. This approach works for most cases, but not for LRR,
> where the guardband would need to change while the VRR timing generator is
> still active.
>
> With the VRR TG always active, live updates to guardband are unsafe and not
> recommended. To ensure hardware safety, guardband was moved out of the
> !fastset block, meaning any change now requires a full modeset.
> This breaks seamless LRR switching, which was previously supported.
>
> Since the problem arises from guardband being matched to the vblank length,
> solution is to use a minimal, sufficient static value, instead. So we use a
> static guardband defined during mode-set that fits within the smallest
> expected vblank and remains unchanged in case of features like LRR where
> vtotal changes. To compute this minimum guardband we take into account
> latencies/delays due to different features as mentioned in the Bspec.
>
> v2:
> -Use helpers for dsc/scaler prefill latencies. (Mitul)
> -Account for pkgc latency and take max of pkgc and sagv latencies.
> v3: Use new helper for PSR2/Panel Replay latency.
> v4: Avoid re-setting the Vmin/Flipline for optimized guardband.
>
> Bspec: 70151
> Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
> Reviewed-by: Mitul Golani <mitulkumar.ajitkumar.golani@intel.com> (#v3)
> ---
> drivers/gpu/drm/i915/display/intel_display.c | 2 +-
> drivers/gpu/drm/i915/display/intel_vrr.c | 127 ++++++++++++++++++-
> drivers/gpu/drm/i915/display/intel_vrr.h | 3 +-
> 3 files changed, 128 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
> index fb072275b1c7..3fa94675d5e1 100644
> --- a/drivers/gpu/drm/i915/display/intel_display.c
> +++ b/drivers/gpu/drm/i915/display/intel_display.c
> @@ -4902,7 +4902,6 @@ intel_modeset_pipe_config_late(struct intel_atomic_state *state,
> struct drm_connector *connector;
> int i;
>
> - intel_vrr_compute_config_late(crtc_state);
>
> for_each_new_connector_in_state(&state->base, connector,
> conn_state, i) {
> @@ -4914,6 +4913,7 @@ intel_modeset_pipe_config_late(struct intel_atomic_state *state,
> !encoder->compute_config_late)
> continue;
>
> + intel_vrr_compute_config_late(crtc_state, conn_state);
> ret = encoder->compute_config_late(encoder, crtc_state,
> conn_state);
> if (ret)
> diff --git a/drivers/gpu/drm/i915/display/intel_vrr.c b/drivers/gpu/drm/i915/display/intel_vrr.c
> index 855974174afd..fff684eb2514 100644
> --- a/drivers/gpu/drm/i915/display/intel_vrr.c
> +++ b/drivers/gpu/drm/i915/display/intel_vrr.c
> @@ -6,12 +6,15 @@
>
> #include <drm/drm_print.h>
>
> +#include "intel_alpm.h"
> #include "intel_de.h"
> #include "intel_display_regs.h"
> #include "intel_display_types.h"
> #include "intel_dp.h"
> #include "intel_vrr.h"
> #include "intel_vrr_regs.h"
> +#include "skl_scaler.h"
> +#include "skl_watermark.h"
>
> #define FIXED_POINT_PRECISION 100
> #define CMRR_PRECISION_TOLERANCE 10
> @@ -413,15 +416,135 @@ intel_vrr_compute_config(struct intel_crtc_state *crtc_state,
> }
> }
>
> -void intel_vrr_compute_config_late(struct intel_crtc_state *crtc_state)
> +static
> +int scaler_prefill_latency(struct intel_crtc_state *crtc_state, int linetime_us)
> +{
> + int chroma_downscaling_factor = skl_scaler_chroma_downscale_factor(crtc_state);
> + u64 hscale_k, vscale_k;
> + int cdclk_adjustment;
> + int num_scaler_users;
> +
> + /*
> + * Assuming:
> + * Both scaler enabled.
> + * scaler 1 downscaling factor as 2 x 2 (Horiz x Vert)
> + * scaler 2 downscaling factor as 2 x 1 (Horiz x Vert)
> + * Cdclk Adjustment : 1
> + */
> + num_scaler_users = 2;
> + hscale_k = 2 * 1000;
> + vscale_k = 2 * 1000;
> + cdclk_adjustment = 1;
> +
> + return intel_vrr_guardband_scaler_latency(num_scaler_users, hscale_k, vscale_k,
> + chroma_downscaling_factor,
> + cdclk_adjustment,
> + linetime_us);
> +}
> +
> +static
> +int dsc_prefill_latency(struct intel_crtc_state *crtc_state, int linetime_us)
> +{
> +#define MAX_SCALERS 2
> + int chroma_downscaling_factor = skl_scaler_chroma_downscale_factor(crtc_state);
> + u64 hscale_k[MAX_SCALERS], vscale_k[MAX_SCALERS];
> + int cdclk_adjustment;
> + int num_scaler_users;
> +
> + /*
> + * Assuming:
> + * Both scaler enabled.
> + * scaler 1 downscaling factor as 2 x 2 (Horiz x Vert)
> + * scaler 2 downscaling factor as 2 x 1 (Horiz x Vert)
> + * Cdclk Adjustment : 1
> + */
> + num_scaler_users = MAX_SCALERS;
> + hscale_k[0] = 2 * 1000;
> + vscale_k[0] = 2 * 1000;
> + hscale_k[1] = 2 * 1000;
> + vscale_k[1] = 1 * 1000;
> +
> + cdclk_adjustment = 1;
> +
> + return intel_vrr_guardband_dsc_latency(num_scaler_users, hscale_k, vscale_k,
> + chroma_downscaling_factor,
> + cdclk_adjustment,
> + linetime_us);
> +}
> +
> +static
> +int intel_vrr_compute_guardband(struct intel_crtc_state *crtc_state,
> + struct intel_connector *connector)
> +{
> + const struct drm_display_mode *adjusted_mode = &crtc_state->hw.adjusted_mode;
> + struct intel_display *display = to_intel_display(crtc_state);
> + int dsc_prefill_time = 0;
> + int psr2_pr_latency = 0;
> + int scaler_prefill_time;
> + int wm0_prefill_time;
> + int pkgc_max_latency;
> + int sagv_latency;
> + int sdp_latency = 0;
> + int guardband_us;
> + int linetime_us;
> + int guardband;
> + int pm_delay;
> +
> + linetime_us = DIV_ROUND_UP(adjusted_mode->crtc_htotal * 1000,
> + adjusted_mode->crtc_clock);
> +
> + pkgc_max_latency = skl_watermark_max_latency(display, 1);
> + sagv_latency = display->sagv.block_time_us;
> +
> + /* Assuming max wm0 lines = 4 */
> + wm0_prefill_time = 4 * linetime_us + 20;
> +
> + scaler_prefill_time = scaler_prefill_latency(crtc_state, linetime_us);
> +
> + if (crtc_state->dsc.compression_enable)
> + dsc_prefill_time = dsc_prefill_latency(crtc_state, linetime_us);
> +
> + pm_delay = crtc_state->framestart_delay +
> + max(sagv_latency, pkgc_max_latency) +
> + wm0_prefill_time +
> + scaler_prefill_time +
> + dsc_prefill_time;
> +
> + switch (connector->base.connector_type) {
> + case DRM_MODE_CONNECTOR_eDP:
> + case DRM_MODE_CONNECTOR_DisplayPort:
> + psr2_pr_latency = intel_alpm_compute_max_link_wake_latency(crtc_state, true);
> + sdp_latency = intel_dp_compute_sdp_latency(crtc_state, true);
> + break;
> + default:
> + break;
> + }
> +
> + guardband_us = max(sdp_latency, psr2_pr_latency);
> + guardband_us = max(guardband_us, pm_delay);
> +
> + guardband = DIV_ROUND_UP(guardband_us, linetime_us);
> +
> + /* guardband cannot be more than the Vmax vblank */
> + guardband = min(guardband, crtc_state->vrr.vmax - adjusted_mode->crtc_vblank_start);
> +
> + return guardband;
> +}
> +
> +void intel_vrr_compute_config_late(struct intel_crtc_state *crtc_state,
> + struct drm_connector_state *conn_state)
> {
> struct intel_display *display = to_intel_display(crtc_state);
> const struct drm_display_mode *adjusted_mode = &crtc_state->hw.adjusted_mode;
> + struct intel_connector *connector =
> + to_intel_connector(conn_state->connector);
>
> if (!intel_vrr_possible(crtc_state))
> return;
>
> - if (DISPLAY_VER(display) >= 13) {
> + if (intel_vrr_always_use_vrr_tg(display)) {
> + crtc_state->vrr.guardband = intel_vrr_compute_guardband(crtc_state, connector);
This all looks to be in the wrong place. It needs to be done as part of
intel_crtc_compute_vblank_delay() which then updates crtc_vblank_start
to reflect reality instead of leaving some incorrect junk in there.
Presumably that is why you also had to do that
intel_dsb_wait_for_delayed_vblank() hack.
> + } else if (DISPLAY_VER(display) >= 13) {
> crtc_state->vrr.guardband =
> crtc_state->vrr.vmin - adjusted_mode->crtc_vblank_start;
> } else {
> diff --git a/drivers/gpu/drm/i915/display/intel_vrr.h b/drivers/gpu/drm/i915/display/intel_vrr.h
> index 950041647e47..362638fd0d66 100644
> --- a/drivers/gpu/drm/i915/display/intel_vrr.h
> +++ b/drivers/gpu/drm/i915/display/intel_vrr.h
> @@ -21,7 +21,8 @@ bool intel_vrr_possible(const struct intel_crtc_state *crtc_state);
> void intel_vrr_check_modeset(struct intel_atomic_state *state);
> void intel_vrr_compute_config(struct intel_crtc_state *crtc_state,
> struct drm_connector_state *conn_state);
> -void intel_vrr_compute_config_late(struct intel_crtc_state *crtc_state);
> +void intel_vrr_compute_config_late(struct intel_crtc_state *crtc_state,
> + struct drm_connector_state *conn_state);
> void intel_vrr_set_transcoder_timings(const struct intel_crtc_state *crtc_state);
> void intel_vrr_enable(const struct intel_crtc_state *crtc_state);
> void intel_vrr_send_push(struct intel_dsb *dsb,
> --
> 2.45.2
--
Ville Syrjälä
Intel
^ permalink raw reply [flat|nested] 26+ messages in thread* Re: [PATCH 12/14] drm/i915/vrr: Use static guardband to support seamless LRR switching
2025-09-08 16:43 ` Ville Syrjälä
@ 2025-09-09 15:02 ` Nautiyal, Ankit K
2025-09-10 12:30 ` Ville Syrjälä
0 siblings, 1 reply; 26+ messages in thread
From: Nautiyal, Ankit K @ 2025-09-09 15:02 UTC (permalink / raw)
To: Ville Syrjälä; +Cc: intel-gfx, intel-xe, Mitul Golani
On 9/8/2025 10:13 PM, Ville Syrjälä wrote:
> On Sun, Sep 07, 2025 at 01:02:39PM +0530, Ankit Nautiyal wrote:
>> In the current VRR implementation, vrr.vmin and vrr.guardband are set such
>> that they do not need to change when switching from fixed refresh rate to
>> variable refresh rate. Specifically, vrr.guardband is always set to match
>> the vblank length. This approach works for most cases, but not for LRR,
>> where the guardband would need to change while the VRR timing generator is
>> still active.
>>
>> With the VRR TG always active, live updates to guardband are unsafe and not
>> recommended. To ensure hardware safety, guardband was moved out of the
>> !fastset block, meaning any change now requires a full modeset.
>> This breaks seamless LRR switching, which was previously supported.
>>
>> Since the problem arises from guardband being matched to the vblank length,
>> solution is to use a minimal, sufficient static value, instead. So we use a
>> static guardband defined during mode-set that fits within the smallest
>> expected vblank and remains unchanged in case of features like LRR where
>> vtotal changes. To compute this minimum guardband we take into account
>> latencies/delays due to different features as mentioned in the Bspec.
>>
>> v2:
>> -Use helpers for dsc/scaler prefill latencies. (Mitul)
>> -Account for pkgc latency and take max of pkgc and sagv latencies.
>> v3: Use new helper for PSR2/Panel Replay latency.
>> v4: Avoid re-setting the Vmin/Flipline for optimized guardband.
>>
>> Bspec: 70151
>> Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
>> Reviewed-by: Mitul Golani <mitulkumar.ajitkumar.golani@intel.com> (#v3)
>> ---
>> drivers/gpu/drm/i915/display/intel_display.c | 2 +-
>> drivers/gpu/drm/i915/display/intel_vrr.c | 127 ++++++++++++++++++-
>> drivers/gpu/drm/i915/display/intel_vrr.h | 3 +-
>> 3 files changed, 128 insertions(+), 4 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
>> index fb072275b1c7..3fa94675d5e1 100644
>> --- a/drivers/gpu/drm/i915/display/intel_display.c
>> +++ b/drivers/gpu/drm/i915/display/intel_display.c
>> @@ -4902,7 +4902,6 @@ intel_modeset_pipe_config_late(struct intel_atomic_state *state,
>> struct drm_connector *connector;
>> int i;
>>
>> - intel_vrr_compute_config_late(crtc_state);
>>
>> for_each_new_connector_in_state(&state->base, connector,
>> conn_state, i) {
>> @@ -4914,6 +4913,7 @@ intel_modeset_pipe_config_late(struct intel_atomic_state *state,
>> !encoder->compute_config_late)
>> continue;
>>
>> + intel_vrr_compute_config_late(crtc_state, conn_state);
>> ret = encoder->compute_config_late(encoder, crtc_state,
>> conn_state);
>> if (ret)
>> diff --git a/drivers/gpu/drm/i915/display/intel_vrr.c b/drivers/gpu/drm/i915/display/intel_vrr.c
>> index 855974174afd..fff684eb2514 100644
>> --- a/drivers/gpu/drm/i915/display/intel_vrr.c
>> +++ b/drivers/gpu/drm/i915/display/intel_vrr.c
>> @@ -6,12 +6,15 @@
>>
>> #include <drm/drm_print.h>
>>
>> +#include "intel_alpm.h"
>> #include "intel_de.h"
>> #include "intel_display_regs.h"
>> #include "intel_display_types.h"
>> #include "intel_dp.h"
>> #include "intel_vrr.h"
>> #include "intel_vrr_regs.h"
>> +#include "skl_scaler.h"
>> +#include "skl_watermark.h"
>>
>> #define FIXED_POINT_PRECISION 100
>> #define CMRR_PRECISION_TOLERANCE 10
>> @@ -413,15 +416,135 @@ intel_vrr_compute_config(struct intel_crtc_state *crtc_state,
>> }
>> }
>>
>> -void intel_vrr_compute_config_late(struct intel_crtc_state *crtc_state)
>> +static
>> +int scaler_prefill_latency(struct intel_crtc_state *crtc_state, int linetime_us)
>> +{
>> + int chroma_downscaling_factor = skl_scaler_chroma_downscale_factor(crtc_state);
>> + u64 hscale_k, vscale_k;
>> + int cdclk_adjustment;
>> + int num_scaler_users;
>> +
>> + /*
>> + * Assuming:
>> + * Both scaler enabled.
>> + * scaler 1 downscaling factor as 2 x 2 (Horiz x Vert)
>> + * scaler 2 downscaling factor as 2 x 1 (Horiz x Vert)
>> + * Cdclk Adjustment : 1
>> + */
>> + num_scaler_users = 2;
>> + hscale_k = 2 * 1000;
>> + vscale_k = 2 * 1000;
>> + cdclk_adjustment = 1;
>> +
>> + return intel_vrr_guardband_scaler_latency(num_scaler_users, hscale_k, vscale_k,
>> + chroma_downscaling_factor,
>> + cdclk_adjustment,
>> + linetime_us);
>> +}
>> +
>> +static
>> +int dsc_prefill_latency(struct intel_crtc_state *crtc_state, int linetime_us)
>> +{
>> +#define MAX_SCALERS 2
>> + int chroma_downscaling_factor = skl_scaler_chroma_downscale_factor(crtc_state);
>> + u64 hscale_k[MAX_SCALERS], vscale_k[MAX_SCALERS];
>> + int cdclk_adjustment;
>> + int num_scaler_users;
>> +
>> + /*
>> + * Assuming:
>> + * Both scaler enabled.
>> + * scaler 1 downscaling factor as 2 x 2 (Horiz x Vert)
>> + * scaler 2 downscaling factor as 2 x 1 (Horiz x Vert)
>> + * Cdclk Adjustment : 1
>> + */
>> + num_scaler_users = MAX_SCALERS;
>> + hscale_k[0] = 2 * 1000;
>> + vscale_k[0] = 2 * 1000;
>> + hscale_k[1] = 2 * 1000;
>> + vscale_k[1] = 1 * 1000;
>> +
>> + cdclk_adjustment = 1;
>> +
>> + return intel_vrr_guardband_dsc_latency(num_scaler_users, hscale_k, vscale_k,
>> + chroma_downscaling_factor,
>> + cdclk_adjustment,
>> + linetime_us);
>> +}
>> +
>> +static
>> +int intel_vrr_compute_guardband(struct intel_crtc_state *crtc_state,
>> + struct intel_connector *connector)
>> +{
>> + const struct drm_display_mode *adjusted_mode = &crtc_state->hw.adjusted_mode;
>> + struct intel_display *display = to_intel_display(crtc_state);
>> + int dsc_prefill_time = 0;
>> + int psr2_pr_latency = 0;
>> + int scaler_prefill_time;
>> + int wm0_prefill_time;
>> + int pkgc_max_latency;
>> + int sagv_latency;
>> + int sdp_latency = 0;
>> + int guardband_us;
>> + int linetime_us;
>> + int guardband;
>> + int pm_delay;
>> +
>> + linetime_us = DIV_ROUND_UP(adjusted_mode->crtc_htotal * 1000,
>> + adjusted_mode->crtc_clock);
>> +
>> + pkgc_max_latency = skl_watermark_max_latency(display, 1);
>> + sagv_latency = display->sagv.block_time_us;
>> +
>> + /* Assuming max wm0 lines = 4 */
>> + wm0_prefill_time = 4 * linetime_us + 20;
>> +
>> + scaler_prefill_time = scaler_prefill_latency(crtc_state, linetime_us);
>> +
>> + if (crtc_state->dsc.compression_enable)
>> + dsc_prefill_time = dsc_prefill_latency(crtc_state, linetime_us);
>> +
>> + pm_delay = crtc_state->framestart_delay +
>> + max(sagv_latency, pkgc_max_latency) +
>> + wm0_prefill_time +
>> + scaler_prefill_time +
>> + dsc_prefill_time;
>> +
>> + switch (connector->base.connector_type) {
>> + case DRM_MODE_CONNECTOR_eDP:
>> + case DRM_MODE_CONNECTOR_DisplayPort:
>> + psr2_pr_latency = intel_alpm_compute_max_link_wake_latency(crtc_state, true);
>> + sdp_latency = intel_dp_compute_sdp_latency(crtc_state, true);
>> + break;
>> + default:
>> + break;
>> + }
>> +
>> + guardband_us = max(sdp_latency, psr2_pr_latency);
>> + guardband_us = max(guardband_us, pm_delay);
>> +
>> + guardband = DIV_ROUND_UP(guardband_us, linetime_us);
>> +
>> + /* guardband cannot be more than the Vmax vblank */
>> + guardband = min(guardband, crtc_state->vrr.vmax - adjusted_mode->crtc_vblank_start);
>> +
>> + return guardband;
>> +}
>> +
>> +void intel_vrr_compute_config_late(struct intel_crtc_state *crtc_state,
>> + struct drm_connector_state *conn_state)
>> {
>> struct intel_display *display = to_intel_display(crtc_state);
>> const struct drm_display_mode *adjusted_mode = &crtc_state->hw.adjusted_mode;
>> + struct intel_connector *connector =
>> + to_intel_connector(conn_state->connector);
>>
>> if (!intel_vrr_possible(crtc_state))
>> return;
>>
>> - if (DISPLAY_VER(display) >= 13) {
>> + if (intel_vrr_always_use_vrr_tg(display)) {
>> + crtc_state->vrr.guardband = intel_vrr_compute_guardband(crtc_state, connector);
> This all looks to be in the wrong place. It needs to be done as part of
> intel_crtc_compute_vblank_delay() which then updates crtc_vblank_start
> to reflect reality instead of leaving some incorrect junk in there.
> Presumably that is why you also had to do that
> intel_dsb_wait_for_delayed_vblank() hack.
Hi Ville,
Thanks for for the comments.
Looks like intel_crtc_compute_vblank_delay() indeed is the place to add
the vblank_delay and get the crtc_vblank_start point to the delayed vblank.
But I think, there are couple of things need to take care with this change:
1) The SCL currently is derived from crtc_vblank_start - vdisplay, which
is ~1 with guradband = vblank length.
With modified crtc_vblank_start, this will become huge so perhaps we
need to set it to 1?
2) The intel_dsb_wait_vblank_delay() (which inturn uses
intel_vrr_real_vblank_delay() for vrr case) also computes a fixed delay
based on (crtc_vblank_start - vdisplay) lines
Instead of this should we not use intel_dsb_wait_scanline_in() to wait
only till scanline reaches in range [flipline decision boundary, vmax
decision boundary]?
Let me know what you think, I can send a follow-up patch with the
suggested changes.
Regards,
Ankit
>
>> + } else if (DISPLAY_VER(display) >= 13) {
>> crtc_state->vrr.guardband =
>> crtc_state->vrr.vmin - adjusted_mode->crtc_vblank_start;
>> } else {
>> diff --git a/drivers/gpu/drm/i915/display/intel_vrr.h b/drivers/gpu/drm/i915/display/intel_vrr.h
>> index 950041647e47..362638fd0d66 100644
>> --- a/drivers/gpu/drm/i915/display/intel_vrr.h
>> +++ b/drivers/gpu/drm/i915/display/intel_vrr.h
>> @@ -21,7 +21,8 @@ bool intel_vrr_possible(const struct intel_crtc_state *crtc_state);
>> void intel_vrr_check_modeset(struct intel_atomic_state *state);
>> void intel_vrr_compute_config(struct intel_crtc_state *crtc_state,
>> struct drm_connector_state *conn_state);
>> -void intel_vrr_compute_config_late(struct intel_crtc_state *crtc_state);
>> +void intel_vrr_compute_config_late(struct intel_crtc_state *crtc_state,
>> + struct drm_connector_state *conn_state);
>> void intel_vrr_set_transcoder_timings(const struct intel_crtc_state *crtc_state);
>> void intel_vrr_enable(const struct intel_crtc_state *crtc_state);
>> void intel_vrr_send_push(struct intel_dsb *dsb,
>> --
>> 2.45.2
^ permalink raw reply [flat|nested] 26+ messages in thread* Re: [PATCH 12/14] drm/i915/vrr: Use static guardband to support seamless LRR switching
2025-09-09 15:02 ` Nautiyal, Ankit K
@ 2025-09-10 12:30 ` Ville Syrjälä
2025-09-10 13:37 ` Nautiyal, Ankit K
0 siblings, 1 reply; 26+ messages in thread
From: Ville Syrjälä @ 2025-09-10 12:30 UTC (permalink / raw)
To: Nautiyal, Ankit K; +Cc: intel-gfx, intel-xe, Mitul Golani
On Tue, Sep 09, 2025 at 08:32:11PM +0530, Nautiyal, Ankit K wrote:
>
> On 9/8/2025 10:13 PM, Ville Syrjälä wrote:
> > On Sun, Sep 07, 2025 at 01:02:39PM +0530, Ankit Nautiyal wrote:
> >> In the current VRR implementation, vrr.vmin and vrr.guardband are set such
> >> that they do not need to change when switching from fixed refresh rate to
> >> variable refresh rate. Specifically, vrr.guardband is always set to match
> >> the vblank length. This approach works for most cases, but not for LRR,
> >> where the guardband would need to change while the VRR timing generator is
> >> still active.
> >>
> >> With the VRR TG always active, live updates to guardband are unsafe and not
> >> recommended. To ensure hardware safety, guardband was moved out of the
> >> !fastset block, meaning any change now requires a full modeset.
> >> This breaks seamless LRR switching, which was previously supported.
> >>
> >> Since the problem arises from guardband being matched to the vblank length,
> >> solution is to use a minimal, sufficient static value, instead. So we use a
> >> static guardband defined during mode-set that fits within the smallest
> >> expected vblank and remains unchanged in case of features like LRR where
> >> vtotal changes. To compute this minimum guardband we take into account
> >> latencies/delays due to different features as mentioned in the Bspec.
> >>
> >> v2:
> >> -Use helpers for dsc/scaler prefill latencies. (Mitul)
> >> -Account for pkgc latency and take max of pkgc and sagv latencies.
> >> v3: Use new helper for PSR2/Panel Replay latency.
> >> v4: Avoid re-setting the Vmin/Flipline for optimized guardband.
> >>
> >> Bspec: 70151
> >> Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
> >> Reviewed-by: Mitul Golani <mitulkumar.ajitkumar.golani@intel.com> (#v3)
> >> ---
> >> drivers/gpu/drm/i915/display/intel_display.c | 2 +-
> >> drivers/gpu/drm/i915/display/intel_vrr.c | 127 ++++++++++++++++++-
> >> drivers/gpu/drm/i915/display/intel_vrr.h | 3 +-
> >> 3 files changed, 128 insertions(+), 4 deletions(-)
> >>
> >> diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
> >> index fb072275b1c7..3fa94675d5e1 100644
> >> --- a/drivers/gpu/drm/i915/display/intel_display.c
> >> +++ b/drivers/gpu/drm/i915/display/intel_display.c
> >> @@ -4902,7 +4902,6 @@ intel_modeset_pipe_config_late(struct intel_atomic_state *state,
> >> struct drm_connector *connector;
> >> int i;
> >>
> >> - intel_vrr_compute_config_late(crtc_state);
> >>
> >> for_each_new_connector_in_state(&state->base, connector,
> >> conn_state, i) {
> >> @@ -4914,6 +4913,7 @@ intel_modeset_pipe_config_late(struct intel_atomic_state *state,
> >> !encoder->compute_config_late)
> >> continue;
> >>
> >> + intel_vrr_compute_config_late(crtc_state, conn_state);
> >> ret = encoder->compute_config_late(encoder, crtc_state,
> >> conn_state);
> >> if (ret)
> >> diff --git a/drivers/gpu/drm/i915/display/intel_vrr.c b/drivers/gpu/drm/i915/display/intel_vrr.c
> >> index 855974174afd..fff684eb2514 100644
> >> --- a/drivers/gpu/drm/i915/display/intel_vrr.c
> >> +++ b/drivers/gpu/drm/i915/display/intel_vrr.c
> >> @@ -6,12 +6,15 @@
> >>
> >> #include <drm/drm_print.h>
> >>
> >> +#include "intel_alpm.h"
> >> #include "intel_de.h"
> >> #include "intel_display_regs.h"
> >> #include "intel_display_types.h"
> >> #include "intel_dp.h"
> >> #include "intel_vrr.h"
> >> #include "intel_vrr_regs.h"
> >> +#include "skl_scaler.h"
> >> +#include "skl_watermark.h"
> >>
> >> #define FIXED_POINT_PRECISION 100
> >> #define CMRR_PRECISION_TOLERANCE 10
> >> @@ -413,15 +416,135 @@ intel_vrr_compute_config(struct intel_crtc_state *crtc_state,
> >> }
> >> }
> >>
> >> -void intel_vrr_compute_config_late(struct intel_crtc_state *crtc_state)
> >> +static
> >> +int scaler_prefill_latency(struct intel_crtc_state *crtc_state, int linetime_us)
> >> +{
> >> + int chroma_downscaling_factor = skl_scaler_chroma_downscale_factor(crtc_state);
> >> + u64 hscale_k, vscale_k;
> >> + int cdclk_adjustment;
> >> + int num_scaler_users;
> >> +
> >> + /*
> >> + * Assuming:
> >> + * Both scaler enabled.
> >> + * scaler 1 downscaling factor as 2 x 2 (Horiz x Vert)
> >> + * scaler 2 downscaling factor as 2 x 1 (Horiz x Vert)
> >> + * Cdclk Adjustment : 1
> >> + */
> >> + num_scaler_users = 2;
> >> + hscale_k = 2 * 1000;
> >> + vscale_k = 2 * 1000;
> >> + cdclk_adjustment = 1;
> >> +
> >> + return intel_vrr_guardband_scaler_latency(num_scaler_users, hscale_k, vscale_k,
> >> + chroma_downscaling_factor,
> >> + cdclk_adjustment,
> >> + linetime_us);
> >> +}
> >> +
> >> +static
> >> +int dsc_prefill_latency(struct intel_crtc_state *crtc_state, int linetime_us)
> >> +{
> >> +#define MAX_SCALERS 2
> >> + int chroma_downscaling_factor = skl_scaler_chroma_downscale_factor(crtc_state);
> >> + u64 hscale_k[MAX_SCALERS], vscale_k[MAX_SCALERS];
> >> + int cdclk_adjustment;
> >> + int num_scaler_users;
> >> +
> >> + /*
> >> + * Assuming:
> >> + * Both scaler enabled.
> >> + * scaler 1 downscaling factor as 2 x 2 (Horiz x Vert)
> >> + * scaler 2 downscaling factor as 2 x 1 (Horiz x Vert)
> >> + * Cdclk Adjustment : 1
> >> + */
> >> + num_scaler_users = MAX_SCALERS;
> >> + hscale_k[0] = 2 * 1000;
> >> + vscale_k[0] = 2 * 1000;
> >> + hscale_k[1] = 2 * 1000;
> >> + vscale_k[1] = 1 * 1000;
> >> +
> >> + cdclk_adjustment = 1;
> >> +
> >> + return intel_vrr_guardband_dsc_latency(num_scaler_users, hscale_k, vscale_k,
> >> + chroma_downscaling_factor,
> >> + cdclk_adjustment,
> >> + linetime_us);
> >> +}
> >> +
> >> +static
> >> +int intel_vrr_compute_guardband(struct intel_crtc_state *crtc_state,
> >> + struct intel_connector *connector)
> >> +{
> >> + const struct drm_display_mode *adjusted_mode = &crtc_state->hw.adjusted_mode;
> >> + struct intel_display *display = to_intel_display(crtc_state);
> >> + int dsc_prefill_time = 0;
> >> + int psr2_pr_latency = 0;
> >> + int scaler_prefill_time;
> >> + int wm0_prefill_time;
> >> + int pkgc_max_latency;
> >> + int sagv_latency;
> >> + int sdp_latency = 0;
> >> + int guardband_us;
> >> + int linetime_us;
> >> + int guardband;
> >> + int pm_delay;
> >> +
> >> + linetime_us = DIV_ROUND_UP(adjusted_mode->crtc_htotal * 1000,
> >> + adjusted_mode->crtc_clock);
> >> +
> >> + pkgc_max_latency = skl_watermark_max_latency(display, 1);
> >> + sagv_latency = display->sagv.block_time_us;
> >> +
> >> + /* Assuming max wm0 lines = 4 */
> >> + wm0_prefill_time = 4 * linetime_us + 20;
> >> +
> >> + scaler_prefill_time = scaler_prefill_latency(crtc_state, linetime_us);
> >> +
> >> + if (crtc_state->dsc.compression_enable)
> >> + dsc_prefill_time = dsc_prefill_latency(crtc_state, linetime_us);
> >> +
> >> + pm_delay = crtc_state->framestart_delay +
> >> + max(sagv_latency, pkgc_max_latency) +
> >> + wm0_prefill_time +
> >> + scaler_prefill_time +
> >> + dsc_prefill_time;
> >> +
> >> + switch (connector->base.connector_type) {
> >> + case DRM_MODE_CONNECTOR_eDP:
> >> + case DRM_MODE_CONNECTOR_DisplayPort:
> >> + psr2_pr_latency = intel_alpm_compute_max_link_wake_latency(crtc_state, true);
> >> + sdp_latency = intel_dp_compute_sdp_latency(crtc_state, true);
> >> + break;
> >> + default:
> >> + break;
> >> + }
> >> +
> >> + guardband_us = max(sdp_latency, psr2_pr_latency);
> >> + guardband_us = max(guardband_us, pm_delay);
> >> +
> >> + guardband = DIV_ROUND_UP(guardband_us, linetime_us);
> >> +
> >> + /* guardband cannot be more than the Vmax vblank */
> >> + guardband = min(guardband, crtc_state->vrr.vmax - adjusted_mode->crtc_vblank_start);
> >> +
> >> + return guardband;
> >> +}
> >> +
> >> +void intel_vrr_compute_config_late(struct intel_crtc_state *crtc_state,
> >> + struct drm_connector_state *conn_state)
> >> {
> >> struct intel_display *display = to_intel_display(crtc_state);
> >> const struct drm_display_mode *adjusted_mode = &crtc_state->hw.adjusted_mode;
> >> + struct intel_connector *connector =
> >> + to_intel_connector(conn_state->connector);
> >>
> >> if (!intel_vrr_possible(crtc_state))
> >> return;
> >>
> >> - if (DISPLAY_VER(display) >= 13) {
> >> + if (intel_vrr_always_use_vrr_tg(display)) {
> >> + crtc_state->vrr.guardband = intel_vrr_compute_guardband(crtc_state, connector);
> > This all looks to be in the wrong place. It needs to be done as part of
> > intel_crtc_compute_vblank_delay() which then updates crtc_vblank_start
> > to reflect reality instead of leaving some incorrect junk in there.
> > Presumably that is why you also had to do that
> > intel_dsb_wait_for_delayed_vblank() hack.
>
> Hi Ville,
>
> Thanks for for the comments.
>
> Looks like intel_crtc_compute_vblank_delay() indeed is the place to add
> the vblank_delay and get the crtc_vblank_start point to the delayed vblank.
>
> But I think, there are couple of things need to take care with this change:
> 1) The SCL currently is derived from crtc_vblank_start - vdisplay, which
> is ~1 with guradband = vblank length.
> With modified crtc_vblank_start, this will become huge so perhaps we
> need to set it to 1?
When using the legacy timing generator SCL is what defines the
position of the delayed vblank. So it should be exactly what it is.
I don't quite recall how this stuff works with the VRR timing
generator. I think it might have been that guardband more or less
defines the location of the delayed vblank, and SCL then effectively
defines the start of the safe window. So I think it should stay
exactly the way it is. IIRC there is some way on new platforms to
even move the SCL position into the vertical active, but I haven't
though through what that would actually do for us.
>
> 2) The intel_dsb_wait_vblank_delay() (which inturn uses
> intel_vrr_real_vblank_delay() for vrr case) also computes a fixed delay
> based on (crtc_vblank_start - vdisplay) lines
> Instead of this should we not use intel_dsb_wait_scanline_in() to wait
> only till scanline reaches in range [flipline decision boundary, vmax
> decision boundary]?
You can't use absolute line numbers with VRR since you don't know
when the vblank will be terminated. It has to be all relative.
>
> Let me know what you think, I can send a follow-up patch with the
> suggested changes.
>
> Regards,
> Ankit
>
>
> >
> >> + } else if (DISPLAY_VER(display) >= 13) {
> >> crtc_state->vrr.guardband =
> >> crtc_state->vrr.vmin - adjusted_mode->crtc_vblank_start;
> >> } else {
> >> diff --git a/drivers/gpu/drm/i915/display/intel_vrr.h b/drivers/gpu/drm/i915/display/intel_vrr.h
> >> index 950041647e47..362638fd0d66 100644
> >> --- a/drivers/gpu/drm/i915/display/intel_vrr.h
> >> +++ b/drivers/gpu/drm/i915/display/intel_vrr.h
> >> @@ -21,7 +21,8 @@ bool intel_vrr_possible(const struct intel_crtc_state *crtc_state);
> >> void intel_vrr_check_modeset(struct intel_atomic_state *state);
> >> void intel_vrr_compute_config(struct intel_crtc_state *crtc_state,
> >> struct drm_connector_state *conn_state);
> >> -void intel_vrr_compute_config_late(struct intel_crtc_state *crtc_state);
> >> +void intel_vrr_compute_config_late(struct intel_crtc_state *crtc_state,
> >> + struct drm_connector_state *conn_state);
> >> void intel_vrr_set_transcoder_timings(const struct intel_crtc_state *crtc_state);
> >> void intel_vrr_enable(const struct intel_crtc_state *crtc_state);
> >> void intel_vrr_send_push(struct intel_dsb *dsb,
> >> --
> >> 2.45.2
--
Ville Syrjälä
Intel
^ permalink raw reply [flat|nested] 26+ messages in thread* Re: [PATCH 12/14] drm/i915/vrr: Use static guardband to support seamless LRR switching
2025-09-10 12:30 ` Ville Syrjälä
@ 2025-09-10 13:37 ` Nautiyal, Ankit K
0 siblings, 0 replies; 26+ messages in thread
From: Nautiyal, Ankit K @ 2025-09-10 13:37 UTC (permalink / raw)
To: Ville Syrjälä; +Cc: intel-gfx, intel-xe, Mitul Golani
On 9/10/2025 6:00 PM, Ville Syrjälä wrote:
> On Tue, Sep 09, 2025 at 08:32:11PM +0530, Nautiyal, Ankit K wrote:
>> On 9/8/2025 10:13 PM, Ville Syrjälä wrote:
>>> On Sun, Sep 07, 2025 at 01:02:39PM +0530, Ankit Nautiyal wrote:
>>>> In the current VRR implementation, vrr.vmin and vrr.guardband are set such
>>>> that they do not need to change when switching from fixed refresh rate to
>>>> variable refresh rate. Specifically, vrr.guardband is always set to match
>>>> the vblank length. This approach works for most cases, but not for LRR,
>>>> where the guardband would need to change while the VRR timing generator is
>>>> still active.
>>>>
>>>> With the VRR TG always active, live updates to guardband are unsafe and not
>>>> recommended. To ensure hardware safety, guardband was moved out of the
>>>> !fastset block, meaning any change now requires a full modeset.
>>>> This breaks seamless LRR switching, which was previously supported.
>>>>
>>>> Since the problem arises from guardband being matched to the vblank length,
>>>> solution is to use a minimal, sufficient static value, instead. So we use a
>>>> static guardband defined during mode-set that fits within the smallest
>>>> expected vblank and remains unchanged in case of features like LRR where
>>>> vtotal changes. To compute this minimum guardband we take into account
>>>> latencies/delays due to different features as mentioned in the Bspec.
>>>>
>>>> v2:
>>>> -Use helpers for dsc/scaler prefill latencies. (Mitul)
>>>> -Account for pkgc latency and take max of pkgc and sagv latencies.
>>>> v3: Use new helper for PSR2/Panel Replay latency.
>>>> v4: Avoid re-setting the Vmin/Flipline for optimized guardband.
>>>>
>>>> Bspec: 70151
>>>> Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
>>>> Reviewed-by: Mitul Golani <mitulkumar.ajitkumar.golani@intel.com> (#v3)
>>>> ---
>>>> drivers/gpu/drm/i915/display/intel_display.c | 2 +-
>>>> drivers/gpu/drm/i915/display/intel_vrr.c | 127 ++++++++++++++++++-
>>>> drivers/gpu/drm/i915/display/intel_vrr.h | 3 +-
>>>> 3 files changed, 128 insertions(+), 4 deletions(-)
>>>>
>>>> diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
>>>> index fb072275b1c7..3fa94675d5e1 100644
>>>> --- a/drivers/gpu/drm/i915/display/intel_display.c
>>>> +++ b/drivers/gpu/drm/i915/display/intel_display.c
>>>> @@ -4902,7 +4902,6 @@ intel_modeset_pipe_config_late(struct intel_atomic_state *state,
>>>> struct drm_connector *connector;
>>>> int i;
>>>>
>>>> - intel_vrr_compute_config_late(crtc_state);
>>>>
>>>> for_each_new_connector_in_state(&state->base, connector,
>>>> conn_state, i) {
>>>> @@ -4914,6 +4913,7 @@ intel_modeset_pipe_config_late(struct intel_atomic_state *state,
>>>> !encoder->compute_config_late)
>>>> continue;
>>>>
>>>> + intel_vrr_compute_config_late(crtc_state, conn_state);
>>>> ret = encoder->compute_config_late(encoder, crtc_state,
>>>> conn_state);
>>>> if (ret)
>>>> diff --git a/drivers/gpu/drm/i915/display/intel_vrr.c b/drivers/gpu/drm/i915/display/intel_vrr.c
>>>> index 855974174afd..fff684eb2514 100644
>>>> --- a/drivers/gpu/drm/i915/display/intel_vrr.c
>>>> +++ b/drivers/gpu/drm/i915/display/intel_vrr.c
>>>> @@ -6,12 +6,15 @@
>>>>
>>>> #include <drm/drm_print.h>
>>>>
>>>> +#include "intel_alpm.h"
>>>> #include "intel_de.h"
>>>> #include "intel_display_regs.h"
>>>> #include "intel_display_types.h"
>>>> #include "intel_dp.h"
>>>> #include "intel_vrr.h"
>>>> #include "intel_vrr_regs.h"
>>>> +#include "skl_scaler.h"
>>>> +#include "skl_watermark.h"
>>>>
>>>> #define FIXED_POINT_PRECISION 100
>>>> #define CMRR_PRECISION_TOLERANCE 10
>>>> @@ -413,15 +416,135 @@ intel_vrr_compute_config(struct intel_crtc_state *crtc_state,
>>>> }
>>>> }
>>>>
>>>> -void intel_vrr_compute_config_late(struct intel_crtc_state *crtc_state)
>>>> +static
>>>> +int scaler_prefill_latency(struct intel_crtc_state *crtc_state, int linetime_us)
>>>> +{
>>>> + int chroma_downscaling_factor = skl_scaler_chroma_downscale_factor(crtc_state);
>>>> + u64 hscale_k, vscale_k;
>>>> + int cdclk_adjustment;
>>>> + int num_scaler_users;
>>>> +
>>>> + /*
>>>> + * Assuming:
>>>> + * Both scaler enabled.
>>>> + * scaler 1 downscaling factor as 2 x 2 (Horiz x Vert)
>>>> + * scaler 2 downscaling factor as 2 x 1 (Horiz x Vert)
>>>> + * Cdclk Adjustment : 1
>>>> + */
>>>> + num_scaler_users = 2;
>>>> + hscale_k = 2 * 1000;
>>>> + vscale_k = 2 * 1000;
>>>> + cdclk_adjustment = 1;
>>>> +
>>>> + return intel_vrr_guardband_scaler_latency(num_scaler_users, hscale_k, vscale_k,
>>>> + chroma_downscaling_factor,
>>>> + cdclk_adjustment,
>>>> + linetime_us);
>>>> +}
>>>> +
>>>> +static
>>>> +int dsc_prefill_latency(struct intel_crtc_state *crtc_state, int linetime_us)
>>>> +{
>>>> +#define MAX_SCALERS 2
>>>> + int chroma_downscaling_factor = skl_scaler_chroma_downscale_factor(crtc_state);
>>>> + u64 hscale_k[MAX_SCALERS], vscale_k[MAX_SCALERS];
>>>> + int cdclk_adjustment;
>>>> + int num_scaler_users;
>>>> +
>>>> + /*
>>>> + * Assuming:
>>>> + * Both scaler enabled.
>>>> + * scaler 1 downscaling factor as 2 x 2 (Horiz x Vert)
>>>> + * scaler 2 downscaling factor as 2 x 1 (Horiz x Vert)
>>>> + * Cdclk Adjustment : 1
>>>> + */
>>>> + num_scaler_users = MAX_SCALERS;
>>>> + hscale_k[0] = 2 * 1000;
>>>> + vscale_k[0] = 2 * 1000;
>>>> + hscale_k[1] = 2 * 1000;
>>>> + vscale_k[1] = 1 * 1000;
>>>> +
>>>> + cdclk_adjustment = 1;
>>>> +
>>>> + return intel_vrr_guardband_dsc_latency(num_scaler_users, hscale_k, vscale_k,
>>>> + chroma_downscaling_factor,
>>>> + cdclk_adjustment,
>>>> + linetime_us);
>>>> +}
>>>> +
>>>> +static
>>>> +int intel_vrr_compute_guardband(struct intel_crtc_state *crtc_state,
>>>> + struct intel_connector *connector)
>>>> +{
>>>> + const struct drm_display_mode *adjusted_mode = &crtc_state->hw.adjusted_mode;
>>>> + struct intel_display *display = to_intel_display(crtc_state);
>>>> + int dsc_prefill_time = 0;
>>>> + int psr2_pr_latency = 0;
>>>> + int scaler_prefill_time;
>>>> + int wm0_prefill_time;
>>>> + int pkgc_max_latency;
>>>> + int sagv_latency;
>>>> + int sdp_latency = 0;
>>>> + int guardband_us;
>>>> + int linetime_us;
>>>> + int guardband;
>>>> + int pm_delay;
>>>> +
>>>> + linetime_us = DIV_ROUND_UP(adjusted_mode->crtc_htotal * 1000,
>>>> + adjusted_mode->crtc_clock);
>>>> +
>>>> + pkgc_max_latency = skl_watermark_max_latency(display, 1);
>>>> + sagv_latency = display->sagv.block_time_us;
>>>> +
>>>> + /* Assuming max wm0 lines = 4 */
>>>> + wm0_prefill_time = 4 * linetime_us + 20;
>>>> +
>>>> + scaler_prefill_time = scaler_prefill_latency(crtc_state, linetime_us);
>>>> +
>>>> + if (crtc_state->dsc.compression_enable)
>>>> + dsc_prefill_time = dsc_prefill_latency(crtc_state, linetime_us);
>>>> +
>>>> + pm_delay = crtc_state->framestart_delay +
>>>> + max(sagv_latency, pkgc_max_latency) +
>>>> + wm0_prefill_time +
>>>> + scaler_prefill_time +
>>>> + dsc_prefill_time;
>>>> +
>>>> + switch (connector->base.connector_type) {
>>>> + case DRM_MODE_CONNECTOR_eDP:
>>>> + case DRM_MODE_CONNECTOR_DisplayPort:
>>>> + psr2_pr_latency = intel_alpm_compute_max_link_wake_latency(crtc_state, true);
>>>> + sdp_latency = intel_dp_compute_sdp_latency(crtc_state, true);
>>>> + break;
>>>> + default:
>>>> + break;
>>>> + }
>>>> +
>>>> + guardband_us = max(sdp_latency, psr2_pr_latency);
>>>> + guardband_us = max(guardband_us, pm_delay);
>>>> +
>>>> + guardband = DIV_ROUND_UP(guardband_us, linetime_us);
>>>> +
>>>> + /* guardband cannot be more than the Vmax vblank */
>>>> + guardband = min(guardband, crtc_state->vrr.vmax - adjusted_mode->crtc_vblank_start);
>>>> +
>>>> + return guardband;
>>>> +}
>>>> +
>>>> +void intel_vrr_compute_config_late(struct intel_crtc_state *crtc_state,
>>>> + struct drm_connector_state *conn_state)
>>>> {
>>>> struct intel_display *display = to_intel_display(crtc_state);
>>>> const struct drm_display_mode *adjusted_mode = &crtc_state->hw.adjusted_mode;
>>>> + struct intel_connector *connector =
>>>> + to_intel_connector(conn_state->connector);
>>>>
>>>> if (!intel_vrr_possible(crtc_state))
>>>> return;
>>>>
>>>> - if (DISPLAY_VER(display) >= 13) {
>>>> + if (intel_vrr_always_use_vrr_tg(display)) {
>>>> + crtc_state->vrr.guardband = intel_vrr_compute_guardband(crtc_state, connector);
>>> This all looks to be in the wrong place. It needs to be done as part of
>>> intel_crtc_compute_vblank_delay() which then updates crtc_vblank_start
>>> to reflect reality instead of leaving some incorrect junk in there.
>>> Presumably that is why you also had to do that
>>> intel_dsb_wait_for_delayed_vblank() hack.
>> Hi Ville,
>>
>> Thanks for for the comments.
>>
>> Looks like intel_crtc_compute_vblank_delay() indeed is the place to add
>> the vblank_delay and get the crtc_vblank_start point to the delayed vblank.
>>
>> But I think, there are couple of things need to take care with this change:
>> 1) The SCL currently is derived from crtc_vblank_start - vdisplay, which
>> is ~1 with guradband = vblank length.
>> With modified crtc_vblank_start, this will become huge so perhaps we
>> need to set it to 1?
> When using the legacy timing generator SCL is what defines the
> position of the delayed vblank. So it should be exactly what it is.
>
> I don't quite recall how this stuff works with the VRR timing
> generator. I think it might have been that guardband more or less
> defines the location of the delayed vblank, and SCL then effectively
> defines the start of the safe window. So I think it should stay
> exactly the way it is. IIRC there is some way on new platforms to
> even move the SCL position into the vertical active, but I haven't
> though through what that would actually do for us.
Hmm yes for VRR timing generator case, guardband defines the position
of the delayed vblank.
Currently, I see that in most cases the vblank delay (crtc_vblank_start
- crtc_vdisplay) evaluates to 0.
In few case its 1, I think based on intel_psr_min_vblank_delay().
This vblank delay is used to write in TRANS_SET_CONTEXT_LATENCY and to
compute the vblank_start during readback.
With this series, since we have a shorter guardband now, the
crtc_vblank_start is moved away by quite a bit.
Without modification this is resulting in TRANS_SET_CONTEXT_LATENCY to a
bigger value and we are getting DSB POLL errors as it waits for safe window.
So with the updated crtc_vblank_start, for platforms where VRR TG is
always on (and static guardband is used), I am now clamping the set
context latency value between (0, 1).
There are couple of more points like with updated crtc_vblank_start for
LRR, where it now changes since vtotal is changed.
Since guardband is static value the vblank_start moves due to change in
vtotal, and prevents from fastset.
I have made some changes and will be posting patches after some more
testing.
>
>> 2) The intel_dsb_wait_vblank_delay() (which inturn uses
>> intel_vrr_real_vblank_delay() for vrr case) also computes a fixed delay
>> based on (crtc_vblank_start - vdisplay) lines
>> Instead of this should we not use intel_dsb_wait_scanline_in() to wait
>> only till scanline reaches in range [flipline decision boundary, vmax
>> decision boundary]?
> You can't use absolute line numbers with VRR since you don't know
> when the vblank will be terminated. It has to be all relative.
Oh ok. Then I will leave it as it is then.
Thanks & Regards,
Ankit
>
>> Let me know what you think, I can send a follow-up patch with the
>> suggested changes.
>>
>> Regards,
>> Ankit
>>
>>
>>>> + } else if (DISPLAY_VER(display) >= 13) {
>>>> crtc_state->vrr.guardband =
>>>> crtc_state->vrr.vmin - adjusted_mode->crtc_vblank_start;
>>>> } else {
>>>> diff --git a/drivers/gpu/drm/i915/display/intel_vrr.h b/drivers/gpu/drm/i915/display/intel_vrr.h
>>>> index 950041647e47..362638fd0d66 100644
>>>> --- a/drivers/gpu/drm/i915/display/intel_vrr.h
>>>> +++ b/drivers/gpu/drm/i915/display/intel_vrr.h
>>>> @@ -21,7 +21,8 @@ bool intel_vrr_possible(const struct intel_crtc_state *crtc_state);
>>>> void intel_vrr_check_modeset(struct intel_atomic_state *state);
>>>> void intel_vrr_compute_config(struct intel_crtc_state *crtc_state,
>>>> struct drm_connector_state *conn_state);
>>>> -void intel_vrr_compute_config_late(struct intel_crtc_state *crtc_state);
>>>> +void intel_vrr_compute_config_late(struct intel_crtc_state *crtc_state,
>>>> + struct drm_connector_state *conn_state);
>>>> void intel_vrr_set_transcoder_timings(const struct intel_crtc_state *crtc_state);
>>>> void intel_vrr_enable(const struct intel_crtc_state *crtc_state);
>>>> void intel_vrr_send_push(struct intel_dsb *dsb,
>>>> --
>>>> 2.45.2
^ permalink raw reply [flat|nested] 26+ messages in thread
* [PATCH 13/14] drm/i915/panel: Refactor helper to get highest fixed mode
2025-09-07 7:32 [PATCH 00/14] Optimize vrr.guardband and fix LRR Ankit Nautiyal
` (11 preceding siblings ...)
2025-09-07 7:32 ` [PATCH 12/14] drm/i915/vrr: Use static guardband to support seamless LRR switching Ankit Nautiyal
@ 2025-09-07 7:32 ` Ankit Nautiyal
2025-09-07 7:32 ` [PATCH 14/14] drm/i915/vrr: Fix seamless_mn drrs for PTL Ankit Nautiyal
` (5 subsequent siblings)
18 siblings, 0 replies; 26+ messages in thread
From: Ankit Nautiyal @ 2025-09-07 7:32 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: ville.syrjala, Ankit Nautiyal, Mitul Golani
Refactor intel_panel_highest_mode() to return the fixed mode with the
highest pixel clock, removing the fallback to the adjusted mode. This makes
the function semantics clearer and better suited for future use cases where
fallback is not desirable.
Update the caller in intel_dp_mode_clock() to handle the NULL case
explicitly by falling back to the adjusted mode's crtc_clock. This also
addresses the existing FIXME comment about ambiguity between clock and
crtc_clock, by using mode->clock for fixed modes and mode->crtc_clock for
adjusted modes.
v2: Avoid introducing a new function and refactor existing one instead.
(Jani).
Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Reviewed-by: Mitul Golani <mitulkumar.ajitkumar.golani@intel.com>
---
drivers/gpu/drm/i915/display/intel_dp.c | 14 +++++++++-----
drivers/gpu/drm/i915/display/intel_panel.c | 11 +++++------
drivers/gpu/drm/i915/display/intel_panel.h | 3 +--
3 files changed, 15 insertions(+), 13 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
index d5d30bdc6848..beab66ce0550 100644
--- a/drivers/gpu/drm/i915/display/intel_dp.c
+++ b/drivers/gpu/drm/i915/display/intel_dp.c
@@ -1760,11 +1760,15 @@ static int intel_dp_mode_clock(const struct intel_crtc_state *crtc_state,
struct intel_connector *connector = to_intel_connector(conn_state->connector);
const struct drm_display_mode *adjusted_mode = &crtc_state->hw.adjusted_mode;
- /* FIXME a bit of a mess wrt clock vs. crtc_clock */
- if (has_seamless_m_n(connector))
- return intel_panel_highest_mode(connector, adjusted_mode)->clock;
- else
- return adjusted_mode->crtc_clock;
+ if (has_seamless_m_n(connector)) {
+ const struct drm_display_mode *highest_mode;
+
+ highest_mode = intel_panel_highest_mode(connector);
+ if (highest_mode)
+ return highest_mode->clock;
+ }
+
+ return adjusted_mode->crtc_clock;
}
/* Optimize link config in order: max bpp, min clock, min lanes */
diff --git a/drivers/gpu/drm/i915/display/intel_panel.c b/drivers/gpu/drm/i915/display/intel_panel.c
index 2a20aaaaac39..ac0f04073ecb 100644
--- a/drivers/gpu/drm/i915/display/intel_panel.c
+++ b/drivers/gpu/drm/i915/display/intel_panel.c
@@ -144,18 +144,17 @@ intel_panel_downclock_mode(struct intel_connector *connector,
}
const struct drm_display_mode *
-intel_panel_highest_mode(struct intel_connector *connector,
- const struct drm_display_mode *adjusted_mode)
+intel_panel_highest_mode(struct intel_connector *connector)
{
- const struct drm_display_mode *fixed_mode, *best_mode = adjusted_mode;
+ const struct drm_display_mode *fixed_mode, *highest_mode = NULL;
/* pick the fixed_mode that has the highest clock */
list_for_each_entry(fixed_mode, &connector->panel.fixed_modes, head) {
- if (fixed_mode->clock > best_mode->clock)
- best_mode = fixed_mode;
+ if (!highest_mode || fixed_mode->clock > highest_mode->clock)
+ highest_mode = fixed_mode;
}
- return best_mode;
+ return highest_mode;
}
int intel_panel_get_modes(struct intel_connector *connector)
diff --git a/drivers/gpu/drm/i915/display/intel_panel.h b/drivers/gpu/drm/i915/display/intel_panel.h
index 56a6412cf0fb..8a17600e46a3 100644
--- a/drivers/gpu/drm/i915/display/intel_panel.h
+++ b/drivers/gpu/drm/i915/display/intel_panel.h
@@ -37,8 +37,7 @@ const struct drm_display_mode *
intel_panel_downclock_mode(struct intel_connector *connector,
const struct drm_display_mode *adjusted_mode);
const struct drm_display_mode *
-intel_panel_highest_mode(struct intel_connector *connector,
- const struct drm_display_mode *adjusted_mode);
+intel_panel_highest_mode(struct intel_connector *connector);
int intel_panel_get_modes(struct intel_connector *connector);
enum drrs_type intel_panel_drrs_type(struct intel_connector *connector);
enum drm_mode_status
--
2.45.2
^ permalink raw reply related [flat|nested] 26+ messages in thread* [PATCH 14/14] drm/i915/vrr: Fix seamless_mn drrs for PTL
2025-09-07 7:32 [PATCH 00/14] Optimize vrr.guardband and fix LRR Ankit Nautiyal
` (12 preceding siblings ...)
2025-09-07 7:32 ` [PATCH 13/14] drm/i915/panel: Refactor helper to get highest fixed mode Ankit Nautiyal
@ 2025-09-07 7:32 ` Ankit Nautiyal
2025-09-08 20:33 ` ✓ CI.KUnit: success for Optimize vrr.guardband and fix LRR (rev9) Patchwork
` (4 subsequent siblings)
18 siblings, 0 replies; 26+ messages in thread
From: Ankit Nautiyal @ 2025-09-07 7:32 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: ville.syrjala, Ankit Nautiyal, Mitul Golani
With VRR timing generator always on, the fixed refresh rate is achieved
by setting vrr.flipline and vrr.vmax as the vtotal for the desired mode.
This creates a problem for seamless_mn drrs feature, where user can
seamlessly set a lower mode on the supporting panels. With VRR timing
generator, the vrr.flipline and vrr.vmax are set to vtotal, but that
corresponds to the higher mode.
To fix this, re-compute the vrr timings when seamless_mn drrs is in
picture. At the same time make sure that the vrr.guardband is set as
per the highest mode for such panels, so that switching between higher
to lower mode, does not change the vrr.guardband.
v2: Add a new member `use_highest_mode` to vrr struct to help set the
vrr timings for highest mode for the seamless_mn drrs case.
v3:
-Modify existing function to compute fixed refresh rate timings instead
of adding a new function. (Mitul)
-Tweak computation for scaling the vtotal and use DIV_ROUND_UP_ULL.
-Improve documentation.
Signed-off-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Reviewed-by: Mitul Golani <mitulkumar.ajitkumar.golani@intel.com>
---
.../drm/i915/display/intel_display_types.h | 2 +
drivers/gpu/drm/i915/display/intel_dp.c | 2 +-
drivers/gpu/drm/i915/display/intel_dp.h | 1 +
drivers/gpu/drm/i915/display/intel_vrr.c | 90 ++++++++++++++++++-
4 files changed, 90 insertions(+), 5 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_display_types.h b/drivers/gpu/drm/i915/display/intel_display_types.h
index fd9d2527889b..e2b0d0a22ffd 100644
--- a/drivers/gpu/drm/i915/display/intel_display_types.h
+++ b/drivers/gpu/drm/i915/display/intel_display_types.h
@@ -1319,6 +1319,8 @@ struct intel_crtc_state {
u8 pipeline_full;
u16 flipline, vmin, vmax, guardband;
u32 vsync_end, vsync_start;
+ /* Indicates VRR timing is scaled to highest mode for seamless M/N */
+ bool use_highest_mode;
} vrr;
/* Content Match Refresh Rate state */
diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
index beab66ce0550..97e9b1aee5ec 100644
--- a/drivers/gpu/drm/i915/display/intel_dp.c
+++ b/drivers/gpu/drm/i915/display/intel_dp.c
@@ -1742,7 +1742,7 @@ static int intel_dp_max_bpp(struct intel_dp *intel_dp,
return bpp;
}
-static bool has_seamless_m_n(struct intel_connector *connector)
+bool has_seamless_m_n(struct intel_connector *connector)
{
struct intel_display *display = to_intel_display(connector);
diff --git a/drivers/gpu/drm/i915/display/intel_dp.h b/drivers/gpu/drm/i915/display/intel_dp.h
index bfd1bd448672..932f5504399e 100644
--- a/drivers/gpu/drm/i915/display/intel_dp.h
+++ b/drivers/gpu/drm/i915/display/intel_dp.h
@@ -216,5 +216,6 @@ int intel_dp_dsc_bpp_step_x16(const struct intel_connector *connector);
void intel_dp_dpcd_set_probe(struct intel_dp *intel_dp, bool force_on_external);
bool intel_dp_in_hdr_mode(const struct drm_connector_state *conn_state);
int intel_dp_compute_sdp_latency(struct intel_crtc_state *crtc_state, bool assume_all_enabled);
+bool has_seamless_m_n(struct intel_connector *connector);
#endif /* __INTEL_DP_H__ */
diff --git a/drivers/gpu/drm/i915/display/intel_vrr.c b/drivers/gpu/drm/i915/display/intel_vrr.c
index fff684eb2514..880339f7c110 100644
--- a/drivers/gpu/drm/i915/display/intel_vrr.c
+++ b/drivers/gpu/drm/i915/display/intel_vrr.c
@@ -11,6 +11,7 @@
#include "intel_display_regs.h"
#include "intel_display_types.h"
#include "intel_dp.h"
+#include "intel_panel.h"
#include "intel_vrr.h"
#include "intel_vrr_regs.h"
#include "skl_scaler.h"
@@ -299,6 +300,16 @@ void intel_vrr_set_fixed_rr_timings(const struct intel_crtc_state *crtc_state)
if (!intel_vrr_possible(crtc_state))
return;
+ if (crtc_state->vrr.use_highest_mode) {
+ intel_de_write(display, TRANS_VRR_VMIN(display, cpu_transcoder),
+ crtc_state->vrr.vmin - 1);
+ intel_de_write(display, TRANS_VRR_VMAX(display, cpu_transcoder),
+ crtc_state->vrr.vmax - 1);
+ intel_de_write(display, TRANS_VRR_FLIPLINE(display, cpu_transcoder),
+ crtc_state->vrr.flipline - 1);
+ return;
+ }
+
intel_de_write(display, TRANS_VRR_VMIN(display, cpu_transcoder),
intel_vrr_fixed_rr_vmin(crtc_state) - 1);
intel_de_write(display, TRANS_VRR_VMAX(display, cpu_transcoder),
@@ -307,15 +318,69 @@ void intel_vrr_set_fixed_rr_timings(const struct intel_crtc_state *crtc_state)
intel_vrr_fixed_rr_flipline(crtc_state) - 1);
}
+static bool needs_seamless_m_n_timings(struct intel_crtc_state *crtc_state,
+ struct intel_connector *connector)
+{
+ if (!has_seamless_m_n(connector) || crtc_state->joiner_pipes)
+ return false;
+
+ return true;
+}
+
+static int intel_vrr_scale_vtotal_for_seamless_m_n(struct intel_crtc_state *crtc_state,
+ struct intel_connector *connector)
+{
+ const struct drm_display_mode *highest_mode = intel_panel_highest_mode(connector);
+ const struct drm_display_mode *adjusted_mode = &crtc_state->hw.adjusted_mode;
+ int vtotal = adjusted_mode->crtc_vtotal;
+
+ /*
+ * For panels with seamless_m_n drrs, the user can seamlessly switch to
+ * a lower mode, which has a lower clock. This works with legacy timing
+ * generator, but not with the VRR timing generator.
+ *
+ * The VRR timing generator requires flipline and vmax to be equal for
+ * fixed refresh rate operation. The default fixed RR computation sets
+ * these to the current mode's vtotal. However, when switching to a
+ * lower clock mode, this would result in a higher refresh rate than
+ * desired.
+ *
+ * To simulate the lower refresh rate correctly, we scale the vtotal
+ * based on the ratio of the highest mode's clock to the current mode's
+ * clock.
+ *
+ * When switching to a higher clock mode, the current vtotal already
+ * results in the desired refresh rate, so no scaling is needed.
+ *
+ * So compute the scaled vtotal if required, and update vrr.vmin to
+ * the scaled value. Also, set vrr.use_highest_mode to indicate that
+ * VRR timings are based on the highest mode.
+ */
+ if (highest_mode && adjusted_mode->crtc_clock < highest_mode->clock) {
+ vtotal = DIV_ROUND_UP_ULL(vtotal * highest_mode->clock,
+ adjusted_mode->crtc_clock);
+ crtc_state->vrr.vmin = vtotal;
+ crtc_state->vrr.use_highest_mode = true;
+ }
+
+ return vtotal;
+}
+
static
-void intel_vrr_compute_fixed_rr_timings(struct intel_crtc_state *crtc_state)
+void intel_vrr_compute_fixed_rr_timings(struct intel_crtc_state *crtc_state,
+ struct intel_connector *connector)
{
+ int vtotal = crtc_state->hw.adjusted_mode.crtc_vtotal;
+
+ if (needs_seamless_m_n_timings(crtc_state, connector))
+ vtotal = intel_vrr_scale_vtotal_for_seamless_m_n(crtc_state, connector);
+
/*
* For fixed rr, vmin = vmax = flipline.
* vmin is already set to crtc_vtotal set vmax and flipline the same.
*/
- crtc_state->vrr.vmax = crtc_state->hw.adjusted_mode.crtc_vtotal;
- crtc_state->vrr.flipline = crtc_state->hw.adjusted_mode.crtc_vtotal;
+ crtc_state->vrr.vmax = vtotal;
+ crtc_state->vrr.flipline = vtotal;
}
static
@@ -397,7 +462,7 @@ intel_vrr_compute_config(struct intel_crtc_state *crtc_state,
else if (is_cmrr_frac_required(crtc_state) && is_edp)
intel_vrr_compute_cmrr_timings(crtc_state);
else
- intel_vrr_compute_fixed_rr_timings(crtc_state);
+ intel_vrr_compute_fixed_rr_timings(crtc_state, connector);
/*
* flipline determines the min vblank length the hardware will
@@ -478,6 +543,7 @@ int intel_vrr_compute_guardband(struct intel_crtc_state *crtc_state,
{
const struct drm_display_mode *adjusted_mode = &crtc_state->hw.adjusted_mode;
struct intel_display *display = to_intel_display(crtc_state);
+ const struct drm_display_mode *highest_mode;
int dsc_prefill_time = 0;
int psr2_pr_latency = 0;
int scaler_prefill_time;
@@ -490,6 +556,22 @@ int intel_vrr_compute_guardband(struct intel_crtc_state *crtc_state,
int guardband;
int pm_delay;
+ /*
+ * For seamless m_n the clock is changed while other modeline
+ * parameters are same. In that case the linetime_us will change,
+ * causing the guardband to change, and the seamless switch to
+ * lower mode would not take place.
+ * To avoid this, take the highest mode where panel supports
+ * seamless drrs and make guardband equal to the vblank length
+ * for the highest mode.
+ */
+ highest_mode = intel_panel_highest_mode(connector);
+ if (needs_seamless_m_n_timings(crtc_state, connector) && highest_mode) {
+ guardband = highest_mode->vtotal - highest_mode->vdisplay;
+
+ return guardband;
+ }
+
linetime_us = DIV_ROUND_UP(adjusted_mode->crtc_htotal * 1000,
adjusted_mode->crtc_clock);
--
2.45.2
^ permalink raw reply related [flat|nested] 26+ messages in thread* ✓ CI.KUnit: success for Optimize vrr.guardband and fix LRR (rev9)
2025-09-07 7:32 [PATCH 00/14] Optimize vrr.guardband and fix LRR Ankit Nautiyal
` (13 preceding siblings ...)
2025-09-07 7:32 ` [PATCH 14/14] drm/i915/vrr: Fix seamless_mn drrs for PTL Ankit Nautiyal
@ 2025-09-08 20:33 ` Patchwork
2025-09-09 0:38 ` ✗ Xe.CI.Full: failure " Patchwork
` (3 subsequent siblings)
18 siblings, 0 replies; 26+ messages in thread
From: Patchwork @ 2025-09-08 20:33 UTC (permalink / raw)
To: Ankit Nautiyal; +Cc: intel-xe
== Series Details ==
Series: Optimize vrr.guardband and fix LRR (rev9)
URL : https://patchwork.freedesktop.org/series/151244/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[20:32:18] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[20:32:23] 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
[20:32:51] Starting KUnit Kernel (1/1)...
[20:32:51] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[20:32:52] ================== guc_buf (11 subtests) ===================
[20:32:52] [PASSED] test_smallest
[20:32:52] [PASSED] test_largest
[20:32:52] [PASSED] test_granular
[20:32:52] [PASSED] test_unique
[20:32:52] [PASSED] test_overlap
[20:32:52] [PASSED] test_reusable
[20:32:52] [PASSED] test_too_big
[20:32:52] [PASSED] test_flush
[20:32:52] [PASSED] test_lookup
[20:32:52] [PASSED] test_data
[20:32:52] [PASSED] test_class
[20:32:52] ===================== [PASSED] guc_buf =====================
[20:32:52] =================== guc_dbm (7 subtests) ===================
[20:32:52] [PASSED] test_empty
[20:32:52] [PASSED] test_default
[20:32:52] ======================== test_size ========================
[20:32:52] [PASSED] 4
[20:32:52] [PASSED] 8
[20:32:52] [PASSED] 32
[20:32:52] [PASSED] 256
[20:32:52] ==================== [PASSED] test_size ====================
[20:32:52] ======================= test_reuse ========================
[20:32:52] [PASSED] 4
[20:32:52] [PASSED] 8
[20:32:52] [PASSED] 32
[20:32:52] [PASSED] 256
[20:32:52] =================== [PASSED] test_reuse ====================
[20:32:52] =================== test_range_overlap ====================
[20:32:52] [PASSED] 4
[20:32:52] [PASSED] 8
[20:32:52] [PASSED] 32
[20:32:52] [PASSED] 256
[20:32:52] =============== [PASSED] test_range_overlap ================
[20:32:52] =================== test_range_compact ====================
[20:32:52] [PASSED] 4
[20:32:52] [PASSED] 8
[20:32:52] [PASSED] 32
[20:32:52] [PASSED] 256
[20:32:52] =============== [PASSED] test_range_compact ================
[20:32:52] ==================== test_range_spare =====================
[20:32:52] [PASSED] 4
[20:32:52] [PASSED] 8
[20:32:52] [PASSED] 32
[20:32:52] [PASSED] 256
[20:32:52] ================ [PASSED] test_range_spare =================
[20:32:52] ===================== [PASSED] guc_dbm =====================
[20:32:52] =================== guc_idm (6 subtests) ===================
[20:32:52] [PASSED] bad_init
[20:32:52] [PASSED] no_init
[20:32:52] [PASSED] init_fini
[20:32:52] [PASSED] check_used
[20:32:52] [PASSED] check_quota
[20:32:52] [PASSED] check_all
[20:32:52] ===================== [PASSED] guc_idm =====================
[20:32:52] ================== no_relay (3 subtests) ===================
[20:32:52] [PASSED] xe_drops_guc2pf_if_not_ready
[20:32:52] [PASSED] xe_drops_guc2vf_if_not_ready
[20:32:52] [PASSED] xe_rejects_send_if_not_ready
[20:32:52] ==================== [PASSED] no_relay =====================
[20:32:52] ================== pf_relay (14 subtests) ==================
[20:32:52] [PASSED] pf_rejects_guc2pf_too_short
[20:32:52] [PASSED] pf_rejects_guc2pf_too_long
[20:32:52] [PASSED] pf_rejects_guc2pf_no_payload
[20:32:52] [PASSED] pf_fails_no_payload
[20:32:52] [PASSED] pf_fails_bad_origin
[20:32:52] [PASSED] pf_fails_bad_type
[20:32:52] [PASSED] pf_txn_reports_error
[20:32:52] [PASSED] pf_txn_sends_pf2guc
[20:32:52] [PASSED] pf_sends_pf2guc
[20:32:52] [SKIPPED] pf_loopback_nop
[20:32:52] [SKIPPED] pf_loopback_echo
[20:32:52] [SKIPPED] pf_loopback_fail
[20:32:52] [SKIPPED] pf_loopback_busy
[20:32:52] [SKIPPED] pf_loopback_retry
[20:32:52] ==================== [PASSED] pf_relay =====================
[20:32:52] ================== vf_relay (3 subtests) ===================
[20:32:52] [PASSED] vf_rejects_guc2vf_too_short
[20:32:52] [PASSED] vf_rejects_guc2vf_too_long
[20:32:52] [PASSED] vf_rejects_guc2vf_no_payload
[20:32:52] ==================== [PASSED] vf_relay =====================
[20:32:52] ===================== lmtt (1 subtest) =====================
[20:32:52] ======================== test_ops =========================
[20:32:52] [PASSED] 2-level
[20:32:52] [PASSED] multi-level
[20:32:52] ==================== [PASSED] test_ops =====================
[20:32:52] ====================== [PASSED] lmtt =======================
[20:32:52] ================= pf_service (11 subtests) =================
[20:32:52] [PASSED] pf_negotiate_any
[20:32:52] [PASSED] pf_negotiate_base_match
[20:32:52] [PASSED] pf_negotiate_base_newer
[20:32:52] [PASSED] pf_negotiate_base_next
[20:32:52] [SKIPPED] pf_negotiate_base_older
[20:32:52] [PASSED] pf_negotiate_base_prev
[20:32:52] [PASSED] pf_negotiate_latest_match
[20:32:52] [PASSED] pf_negotiate_latest_newer
[20:32:52] [PASSED] pf_negotiate_latest_next
[20:32:52] [SKIPPED] pf_negotiate_latest_older
[20:32:52] [SKIPPED] pf_negotiate_latest_prev
[20:32:52] =================== [PASSED] pf_service ====================
[20:32:52] =================== xe_mocs (2 subtests) ===================
[20:32:52] ================ xe_live_mocs_kernel_kunit ================
[20:32:52] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[20:32:52] ================ xe_live_mocs_reset_kunit =================
[20:32:52] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[20:32:52] ==================== [SKIPPED] xe_mocs =====================
[20:32:52] ================= xe_migrate (2 subtests) ==================
[20:32:52] ================= xe_migrate_sanity_kunit =================
[20:32:52] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[20:32:52] ================== xe_validate_ccs_kunit ==================
[20:32:52] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[20:32:52] =================== [SKIPPED] xe_migrate ===================
[20:32:52] ================== xe_dma_buf (1 subtest) ==================
[20:32:52] ==================== xe_dma_buf_kunit =====================
[20:32:52] ================ [SKIPPED] xe_dma_buf_kunit ================
[20:32:52] =================== [SKIPPED] xe_dma_buf ===================
[20:32:52] ================= xe_bo_shrink (1 subtest) =================
[20:32:52] =================== xe_bo_shrink_kunit ====================
[20:32:52] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[20:32:52] ================== [SKIPPED] xe_bo_shrink ==================
[20:32:52] ==================== xe_bo (2 subtests) ====================
[20:32:52] ================== xe_ccs_migrate_kunit ===================
[20:32:52] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[20:32:52] ==================== xe_bo_evict_kunit ====================
[20:32:52] =============== [SKIPPED] xe_bo_evict_kunit ================
[20:32:52] ===================== [SKIPPED] xe_bo ======================
[20:32:52] ==================== args (11 subtests) ====================
[20:32:52] [PASSED] count_args_test
[20:32:52] [PASSED] call_args_example
[20:32:52] [PASSED] call_args_test
[20:32:52] [PASSED] drop_first_arg_example
[20:32:52] [PASSED] drop_first_arg_test
[20:32:52] [PASSED] first_arg_example
[20:32:52] [PASSED] first_arg_test
[20:32:52] [PASSED] last_arg_example
[20:32:52] [PASSED] last_arg_test
[20:32:52] [PASSED] pick_arg_example
[20:32:52] [PASSED] sep_comma_example
[20:32:52] ====================== [PASSED] args =======================
[20:32:52] =================== xe_pci (3 subtests) ====================
[20:32:52] ==================== check_graphics_ip ====================
[20:32:52] [PASSED] 12.70 Xe_LPG
[20:32:52] [PASSED] 12.71 Xe_LPG
[20:32:52] [PASSED] 12.74 Xe_LPG+
[20:32:52] [PASSED] 20.01 Xe2_HPG
[20:32:52] [PASSED] 20.02 Xe2_HPG
[20:32:52] [PASSED] 20.04 Xe2_LPG
[20:32:52] [PASSED] 30.00 Xe3_LPG
[20:32:52] [PASSED] 30.01 Xe3_LPG
[20:32:52] [PASSED] 30.03 Xe3_LPG
[20:32:52] ================ [PASSED] check_graphics_ip ================
[20:32:52] ===================== check_media_ip ======================
[20:32:52] [PASSED] 13.00 Xe_LPM+
[20:32:52] [PASSED] 13.01 Xe2_HPM
[20:32:52] [PASSED] 20.00 Xe2_LPM
[20:32:52] [PASSED] 30.00 Xe3_LPM
[20:32:52] [PASSED] 30.02 Xe3_LPM
[20:32:52] ================= [PASSED] check_media_ip ==================
[20:32:52] ================= check_platform_gt_count =================
[20:32:52] [PASSED] 0x9A60 (TIGERLAKE)
[20:32:52] [PASSED] 0x9A68 (TIGERLAKE)
[20:32:52] [PASSED] 0x9A70 (TIGERLAKE)
[20:32:52] [PASSED] 0x9A40 (TIGERLAKE)
[20:32:52] [PASSED] 0x9A49 (TIGERLAKE)
[20:32:52] [PASSED] 0x9A59 (TIGERLAKE)
[20:32:52] [PASSED] 0x9A78 (TIGERLAKE)
[20:32:52] [PASSED] 0x9AC0 (TIGERLAKE)
[20:32:52] [PASSED] 0x9AC9 (TIGERLAKE)
[20:32:52] [PASSED] 0x9AD9 (TIGERLAKE)
[20:32:52] [PASSED] 0x9AF8 (TIGERLAKE)
[20:32:52] [PASSED] 0x4C80 (ROCKETLAKE)
[20:32:52] [PASSED] 0x4C8A (ROCKETLAKE)
[20:32:52] [PASSED] 0x4C8B (ROCKETLAKE)
[20:32:52] [PASSED] 0x4C8C (ROCKETLAKE)
[20:32:52] [PASSED] 0x4C90 (ROCKETLAKE)
[20:32:52] [PASSED] 0x4C9A (ROCKETLAKE)
[20:32:52] [PASSED] 0x4680 (ALDERLAKE_S)
[20:32:52] [PASSED] 0x4682 (ALDERLAKE_S)
[20:32:52] [PASSED] 0x4688 (ALDERLAKE_S)
[20:32:52] [PASSED] 0x468A (ALDERLAKE_S)
[20:32:52] [PASSED] 0x468B (ALDERLAKE_S)
[20:32:52] [PASSED] 0x4690 (ALDERLAKE_S)
[20:32:52] [PASSED] 0x4692 (ALDERLAKE_S)
[20:32:52] [PASSED] 0x4693 (ALDERLAKE_S)
[20:32:52] [PASSED] 0x46A0 (ALDERLAKE_P)
[20:32:52] [PASSED] 0x46A1 (ALDERLAKE_P)
[20:32:52] [PASSED] 0x46A2 (ALDERLAKE_P)
[20:32:52] [PASSED] 0x46A3 (ALDERLAKE_P)
[20:32:52] [PASSED] 0x46A6 (ALDERLAKE_P)
[20:32:52] [PASSED] 0x46A8 (ALDERLAKE_P)
[20:32:52] [PASSED] 0x46AA (ALDERLAKE_P)
[20:32:52] [PASSED] 0x462A (ALDERLAKE_P)
[20:32:52] [PASSED] 0x4626 (ALDERLAKE_P)
[20:32:52] [PASSED] 0x4628 (ALDERLAKE_P)
[20:32:52] [PASSED] 0x46B0 (ALDERLAKE_P)
[20:32:52] [PASSED] 0x46B1 (ALDERLAKE_P)
[20:32:52] [PASSED] 0x46B2 (ALDERLAKE_P)
[20:32:52] [PASSED] 0x46B3 (ALDERLAKE_P)
[20:32:52] [PASSED] 0x46C0 (ALDERLAKE_P)
[20:32:52] [PASSED] 0x46C1 (ALDERLAKE_P)
[20:32:52] [PASSED] 0x46C2 (ALDERLAKE_P)
[20:32:52] [PASSED] 0x46C3 (ALDERLAKE_P)
[20:32:52] [PASSED] 0x46D0 (ALDERLAKE_N)
[20:32:52] [PASSED] 0x46D1 (ALDERLAKE_N)
[20:32:52] [PASSED] 0x46D2 (ALDERLAKE_N)
[20:32:52] [PASSED] 0x46D3 (ALDERLAKE_N)
[20:32:52] [PASSED] 0x46D4 (ALDERLAKE_N)
[20:32:52] [PASSED] 0xA721 (ALDERLAKE_P)
[20:32:52] [PASSED] 0xA7A1 (ALDERLAKE_P)
[20:32:52] [PASSED] 0xA7A9 (ALDERLAKE_P)
[20:32:52] [PASSED] 0xA7AC (ALDERLAKE_P)
[20:32:52] [PASSED] 0xA7AD (ALDERLAKE_P)
[20:32:52] [PASSED] 0xA720 (ALDERLAKE_P)
[20:32:52] [PASSED] 0xA7A0 (ALDERLAKE_P)
[20:32:52] [PASSED] 0xA7A8 (ALDERLAKE_P)
[20:32:52] [PASSED] 0xA7AA (ALDERLAKE_P)
[20:32:52] [PASSED] 0xA7AB (ALDERLAKE_P)
[20:32:52] [PASSED] 0xA780 (ALDERLAKE_S)
[20:32:52] [PASSED] 0xA781 (ALDERLAKE_S)
[20:32:52] [PASSED] 0xA782 (ALDERLAKE_S)
[20:32:52] [PASSED] 0xA783 (ALDERLAKE_S)
[20:32:52] [PASSED] 0xA788 (ALDERLAKE_S)
[20:32:52] [PASSED] 0xA789 (ALDERLAKE_S)
[20:32:52] [PASSED] 0xA78A (ALDERLAKE_S)
[20:32:52] [PASSED] 0xA78B (ALDERLAKE_S)
[20:32:52] [PASSED] 0x4905 (DG1)
[20:32:52] [PASSED] 0x4906 (DG1)
[20:32:52] [PASSED] 0x4907 (DG1)
[20:32:52] [PASSED] 0x4908 (DG1)
[20:32:52] [PASSED] 0x4909 (DG1)
[20:32:52] [PASSED] 0x56C0 (DG2)
[20:32:52] [PASSED] 0x56C2 (DG2)
[20:32:52] [PASSED] 0x56C1 (DG2)
[20:32:52] [PASSED] 0x7D51 (METEORLAKE)
[20:32:52] [PASSED] 0x7DD1 (METEORLAKE)
[20:32:52] [PASSED] 0x7D41 (METEORLAKE)
[20:32:52] [PASSED] 0x7D67 (METEORLAKE)
[20:32:52] [PASSED] 0xB640 (METEORLAKE)
[20:32:52] [PASSED] 0x56A0 (DG2)
[20:32:52] [PASSED] 0x56A1 (DG2)
[20:32:52] [PASSED] 0x56A2 (DG2)
[20:32:52] [PASSED] 0x56BE (DG2)
[20:32:52] [PASSED] 0x56BF (DG2)
[20:32:52] [PASSED] 0x5690 (DG2)
[20:32:52] [PASSED] 0x5691 (DG2)
[20:32:52] [PASSED] 0x5692 (DG2)
[20:32:52] [PASSED] 0x56A5 (DG2)
[20:32:52] [PASSED] 0x56A6 (DG2)
[20:32:52] [PASSED] 0x56B0 (DG2)
[20:32:52] [PASSED] 0x56B1 (DG2)
[20:32:52] [PASSED] 0x56BA (DG2)
[20:32:52] [PASSED] 0x56BB (DG2)
[20:32:52] [PASSED] 0x56BC (DG2)
[20:32:52] [PASSED] 0x56BD (DG2)
[20:32:52] [PASSED] 0x5693 (DG2)
[20:32:52] [PASSED] 0x5694 (DG2)
[20:32:52] [PASSED] 0x5695 (DG2)
[20:32:52] [PASSED] 0x56A3 (DG2)
[20:32:52] [PASSED] 0x56A4 (DG2)
[20:32:52] [PASSED] 0x56B2 (DG2)
[20:32:52] [PASSED] 0x56B3 (DG2)
[20:32:52] [PASSED] 0x5696 (DG2)
[20:32:52] [PASSED] 0x5697 (DG2)
[20:32:52] [PASSED] 0xB69 (PVC)
[20:32:52] [PASSED] 0xB6E (PVC)
[20:32:52] [PASSED] 0xBD4 (PVC)
[20:32:52] [PASSED] 0xBD5 (PVC)
[20:32:52] [PASSED] 0xBD6 (PVC)
[20:32:52] [PASSED] 0xBD7 (PVC)
[20:32:52] [PASSED] 0xBD8 (PVC)
[20:32:52] [PASSED] 0xBD9 (PVC)
[20:32:52] [PASSED] 0xBDA (PVC)
[20:32:52] [PASSED] 0xBDB (PVC)
[20:32:52] [PASSED] 0xBE0 (PVC)
[20:32:52] [PASSED] 0xBE1 (PVC)
[20:32:52] [PASSED] 0xBE5 (PVC)
[20:32:52] [PASSED] 0x7D40 (METEORLAKE)
[20:32:52] [PASSED] 0x7D45 (METEORLAKE)
[20:32:52] [PASSED] 0x7D55 (METEORLAKE)
[20:32:52] [PASSED] 0x7D60 (METEORLAKE)
[20:32:52] [PASSED] 0x7DD5 (METEORLAKE)
[20:32:52] [PASSED] 0x6420 (LUNARLAKE)
[20:32:52] [PASSED] 0x64A0 (LUNARLAKE)
[20:32:52] [PASSED] 0x64B0 (LUNARLAKE)
[20:32:52] [PASSED] 0xE202 (BATTLEMAGE)
[20:32:52] [PASSED] 0xE209 (BATTLEMAGE)
[20:32:52] [PASSED] 0xE20B (BATTLEMAGE)
[20:32:52] [PASSED] 0xE20C (BATTLEMAGE)
[20:32:52] [PASSED] 0xE20D (BATTLEMAGE)
[20:32:52] [PASSED] 0xE210 (BATTLEMAGE)
[20:32:52] [PASSED] 0xE211 (BATTLEMAGE)
[20:32:52] [PASSED] 0xE212 (BATTLEMAGE)
[20:32:52] [PASSED] 0xE216 (BATTLEMAGE)
[20:32:52] [PASSED] 0xE220 (BATTLEMAGE)
[20:32:52] [PASSED] 0xE221 (BATTLEMAGE)
[20:32:52] [PASSED] 0xE222 (BATTLEMAGE)
[20:32:52] [PASSED] 0xE223 (BATTLEMAGE)
[20:32:52] [PASSED] 0xB080 (PANTHERLAKE)
[20:32:52] [PASSED] 0xB081 (PANTHERLAKE)
[20:32:52] [PASSED] 0xB082 (PANTHERLAKE)
[20:32:52] [PASSED] 0xB083 (PANTHERLAKE)
[20:32:52] [PASSED] 0xB084 (PANTHERLAKE)
[20:32:52] [PASSED] 0xB085 (PANTHERLAKE)
[20:32:52] [PASSED] 0xB086 (PANTHERLAKE)
[20:32:52] [PASSED] 0xB087 (PANTHERLAKE)
[20:32:52] [PASSED] 0xB08F (PANTHERLAKE)
[20:32:52] [PASSED] 0xB090 (PANTHERLAKE)
[20:32:52] [PASSED] 0xB0A0 (PANTHERLAKE)
[20:32:52] [PASSED] 0xB0B0 (PANTHERLAKE)
[20:32:52] [PASSED] 0xFD80 (PANTHERLAKE)
[20:32:52] [PASSED] 0xFD81 (PANTHERLAKE)
[20:32:52] ============= [PASSED] check_platform_gt_count =============
[20:32:52] ===================== [PASSED] xe_pci ======================
[20:32:52] =================== xe_rtp (2 subtests) ====================
[20:32:52] =============== xe_rtp_process_to_sr_tests ================
[20:32:52] [PASSED] coalesce-same-reg
[20:32:52] [PASSED] no-match-no-add
[20:32:52] [PASSED] match-or
[20:32:52] [PASSED] match-or-xfail
[20:32:52] [PASSED] no-match-no-add-multiple-rules
[20:32:52] [PASSED] two-regs-two-entries
[20:32:52] [PASSED] clr-one-set-other
[20:32:52] [PASSED] set-field
[20:32:52] [PASSED] conflict-duplicate
[20:32:52] [PASSED] conflict-not-disjoint
[20:32:52] [PASSED] conflict-reg-type
[20:32:52] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[20:32:52] ================== xe_rtp_process_tests ===================
[20:32:52] [PASSED] active1
[20:32:52] [PASSED] active2
[20:32:52] [PASSED] active-inactive
[20:32:52] [PASSED] inactive-active
[20:32:52] [PASSED] inactive-1st_or_active-inactive
[20:32:52] [PASSED] inactive-2nd_or_active-inactive
[20:32:52] [PASSED] inactive-last_or_active-inactive
[20:32:52] [PASSED] inactive-no_or_active-inactive
[20:32:52] ============== [PASSED] xe_rtp_process_tests ===============
[20:32:52] ===================== [PASSED] xe_rtp ======================
[20:32:52] ==================== xe_wa (1 subtest) =====================
[20:32:52] ======================== xe_wa_gt =========================
[20:32:52] [PASSED] TIGERLAKE B0
[20:32:52] [PASSED] DG1 A0
[20:32:52] [PASSED] DG1 B0
[20:32:52] [PASSED] ALDERLAKE_S A0
[20:32:52] [PASSED] ALDERLAKE_S B0
[20:32:52] [PASSED] ALDERLAKE_S C0
[20:32:52] [PASSED] ALDERLAKE_S D0
[20:32:52] [PASSED] ALDERLAKE_P A0
[20:32:52] [PASSED] ALDERLAKE_P B0
[20:32:52] [PASSED] ALDERLAKE_P C0
[20:32:52] [PASSED] ALDERLAKE_S RPLS D0
[20:32:52] [PASSED] ALDERLAKE_P RPLU E0
[20:32:52] [PASSED] DG2 G10 C0
[20:32:52] [PASSED] DG2 G11 B1
[20:32:52] [PASSED] DG2 G12 A1
[20:32:52] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[20:32:52] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[20:32:52] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[20:32:52] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
stty: 'standard input': Inappropriate ioctl for device
[20:32:52] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[20:32:52] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[20:32:52] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[20:32:52] ==================== [PASSED] xe_wa_gt =====================
[20:32:52] ====================== [PASSED] xe_wa ======================
[20:32:52] ============================================================
[20:32:52] Testing complete. Ran 298 tests: passed: 282, skipped: 16
[20:32:52] Elapsed time: 33.468s total, 4.257s configuring, 28.894s building, 0.266s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[20:32:52] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[20:32: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
[20:33:16] Starting KUnit Kernel (1/1)...
[20:33:16] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[20:33:16] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[20:33:16] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[20:33:16] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[20:33:16] =========== drm_validate_clone_mode (2 subtests) ===========
[20:33:16] ============== drm_test_check_in_clone_mode ===============
[20:33:16] [PASSED] in_clone_mode
[20:33:16] [PASSED] not_in_clone_mode
[20:33:16] ========== [PASSED] drm_test_check_in_clone_mode ===========
[20:33:16] =============== drm_test_check_valid_clones ===============
[20:33:16] [PASSED] not_in_clone_mode
[20:33:16] [PASSED] valid_clone
[20:33:16] [PASSED] invalid_clone
[20:33:16] =========== [PASSED] drm_test_check_valid_clones ===========
[20:33:16] ============= [PASSED] drm_validate_clone_mode =============
[20:33:16] ============= drm_validate_modeset (1 subtest) =============
[20:33:16] [PASSED] drm_test_check_connector_changed_modeset
[20:33:16] ============== [PASSED] drm_validate_modeset ===============
[20:33:16] ====== drm_test_bridge_get_current_state (2 subtests) ======
[20:33:16] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[20:33:16] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[20:33:16] ======== [PASSED] drm_test_bridge_get_current_state ========
[20:33:16] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[20:33:16] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[20:33:16] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[20:33:16] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[20:33:16] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[20:33:16] ============== drm_bridge_alloc (2 subtests) ===============
[20:33:16] [PASSED] drm_test_drm_bridge_alloc_basic
[20:33:16] [PASSED] drm_test_drm_bridge_alloc_get_put
[20:33:16] ================ [PASSED] drm_bridge_alloc =================
[20:33:16] ================== drm_buddy (7 subtests) ==================
[20:33:16] [PASSED] drm_test_buddy_alloc_limit
[20:33:16] [PASSED] drm_test_buddy_alloc_optimistic
[20:33:16] [PASSED] drm_test_buddy_alloc_pessimistic
[20:33:16] [PASSED] drm_test_buddy_alloc_pathological
[20:33:16] [PASSED] drm_test_buddy_alloc_contiguous
[20:33:16] [PASSED] drm_test_buddy_alloc_clear
[20:33:16] [PASSED] drm_test_buddy_alloc_range_bias
[20:33:16] ==================== [PASSED] drm_buddy ====================
[20:33:16] ============= drm_cmdline_parser (40 subtests) =============
[20:33:16] [PASSED] drm_test_cmdline_force_d_only
[20:33:16] [PASSED] drm_test_cmdline_force_D_only_dvi
[20:33:16] [PASSED] drm_test_cmdline_force_D_only_hdmi
[20:33:16] [PASSED] drm_test_cmdline_force_D_only_not_digital
[20:33:16] [PASSED] drm_test_cmdline_force_e_only
[20:33:16] [PASSED] drm_test_cmdline_res
[20:33:16] [PASSED] drm_test_cmdline_res_vesa
[20:33:16] [PASSED] drm_test_cmdline_res_vesa_rblank
[20:33:16] [PASSED] drm_test_cmdline_res_rblank
[20:33:16] [PASSED] drm_test_cmdline_res_bpp
[20:33:16] [PASSED] drm_test_cmdline_res_refresh
[20:33:16] [PASSED] drm_test_cmdline_res_bpp_refresh
[20:33:16] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[20:33:16] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[20:33:16] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[20:33:16] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[20:33:16] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[20:33:16] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[20:33:16] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[20:33:16] [PASSED] drm_test_cmdline_res_margins_force_on
[20:33:16] [PASSED] drm_test_cmdline_res_vesa_margins
[20:33:16] [PASSED] drm_test_cmdline_name
[20:33:16] [PASSED] drm_test_cmdline_name_bpp
[20:33:16] [PASSED] drm_test_cmdline_name_option
[20:33:16] [PASSED] drm_test_cmdline_name_bpp_option
[20:33:16] [PASSED] drm_test_cmdline_rotate_0
[20:33:16] [PASSED] drm_test_cmdline_rotate_90
[20:33:16] [PASSED] drm_test_cmdline_rotate_180
[20:33:16] [PASSED] drm_test_cmdline_rotate_270
[20:33:16] [PASSED] drm_test_cmdline_hmirror
[20:33:16] [PASSED] drm_test_cmdline_vmirror
[20:33:16] [PASSED] drm_test_cmdline_margin_options
[20:33:16] [PASSED] drm_test_cmdline_multiple_options
[20:33:16] [PASSED] drm_test_cmdline_bpp_extra_and_option
[20:33:16] [PASSED] drm_test_cmdline_extra_and_option
[20:33:16] [PASSED] drm_test_cmdline_freestanding_options
[20:33:16] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[20:33:16] [PASSED] drm_test_cmdline_panel_orientation
[20:33:16] ================ drm_test_cmdline_invalid =================
[20:33:16] [PASSED] margin_only
[20:33:16] [PASSED] interlace_only
[20:33:16] [PASSED] res_missing_x
[20:33:16] [PASSED] res_missing_y
[20:33:16] [PASSED] res_bad_y
[20:33:16] [PASSED] res_missing_y_bpp
[20:33:16] [PASSED] res_bad_bpp
[20:33:16] [PASSED] res_bad_refresh
[20:33:16] [PASSED] res_bpp_refresh_force_on_off
[20:33:16] [PASSED] res_invalid_mode
[20:33:16] [PASSED] res_bpp_wrong_place_mode
[20:33:16] [PASSED] name_bpp_refresh
[20:33:16] [PASSED] name_refresh
[20:33:16] [PASSED] name_refresh_wrong_mode
[20:33:16] [PASSED] name_refresh_invalid_mode
[20:33:16] [PASSED] rotate_multiple
[20:33:16] [PASSED] rotate_invalid_val
[20:33:16] [PASSED] rotate_truncated
[20:33:16] [PASSED] invalid_option
[20:33:16] [PASSED] invalid_tv_option
[20:33:16] [PASSED] truncated_tv_option
[20:33:16] ============ [PASSED] drm_test_cmdline_invalid =============
[20:33:16] =============== drm_test_cmdline_tv_options ===============
[20:33:16] [PASSED] NTSC
[20:33:16] [PASSED] NTSC_443
[20:33:16] [PASSED] NTSC_J
[20:33:16] [PASSED] PAL
[20:33:16] [PASSED] PAL_M
[20:33:16] [PASSED] PAL_N
[20:33:16] [PASSED] SECAM
[20:33:16] [PASSED] MONO_525
[20:33:16] [PASSED] MONO_625
[20:33:16] =========== [PASSED] drm_test_cmdline_tv_options ===========
[20:33:16] =============== [PASSED] drm_cmdline_parser ================
[20:33:16] ========== drmm_connector_hdmi_init (20 subtests) ==========
[20:33:16] [PASSED] drm_test_connector_hdmi_init_valid
[20:33:16] [PASSED] drm_test_connector_hdmi_init_bpc_8
[20:33:16] [PASSED] drm_test_connector_hdmi_init_bpc_10
[20:33:16] [PASSED] drm_test_connector_hdmi_init_bpc_12
[20:33:16] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[20:33:16] [PASSED] drm_test_connector_hdmi_init_bpc_null
[20:33:16] [PASSED] drm_test_connector_hdmi_init_formats_empty
[20:33:16] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[20:33:16] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[20:33:16] [PASSED] supported_formats=0x9 yuv420_allowed=1
[20:33:16] [PASSED] supported_formats=0x9 yuv420_allowed=0
[20:33:16] [PASSED] supported_formats=0x3 yuv420_allowed=1
[20:33:16] [PASSED] supported_formats=0x3 yuv420_allowed=0
[20:33:16] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[20:33:16] [PASSED] drm_test_connector_hdmi_init_null_ddc
[20:33:16] [PASSED] drm_test_connector_hdmi_init_null_product
[20:33:16] [PASSED] drm_test_connector_hdmi_init_null_vendor
[20:33:16] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[20:33:16] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[20:33:16] [PASSED] drm_test_connector_hdmi_init_product_valid
[20:33:16] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[20:33:16] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[20:33:16] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[20:33:16] ========= drm_test_connector_hdmi_init_type_valid =========
[20:33:16] [PASSED] HDMI-A
[20:33:16] [PASSED] HDMI-B
[20:33:16] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[20:33:16] ======== drm_test_connector_hdmi_init_type_invalid ========
[20:33:16] [PASSED] Unknown
[20:33:16] [PASSED] VGA
[20:33:16] [PASSED] DVI-I
[20:33:16] [PASSED] DVI-D
[20:33:16] [PASSED] DVI-A
[20:33:16] [PASSED] Composite
[20:33:16] [PASSED] SVIDEO
[20:33:16] [PASSED] LVDS
[20:33:16] [PASSED] Component
[20:33:16] [PASSED] DIN
[20:33:16] [PASSED] DP
[20:33:16] [PASSED] TV
[20:33:16] [PASSED] eDP
[20:33:16] [PASSED] Virtual
[20:33:16] [PASSED] DSI
[20:33:16] [PASSED] DPI
[20:33:16] [PASSED] Writeback
[20:33:16] [PASSED] SPI
[20:33:16] [PASSED] USB
[20:33:16] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[20:33:16] ============ [PASSED] drmm_connector_hdmi_init =============
[20:33:16] ============= drmm_connector_init (3 subtests) =============
[20:33:16] [PASSED] drm_test_drmm_connector_init
[20:33:16] [PASSED] drm_test_drmm_connector_init_null_ddc
[20:33:16] ========= drm_test_drmm_connector_init_type_valid =========
[20:33:16] [PASSED] Unknown
[20:33:16] [PASSED] VGA
[20:33:16] [PASSED] DVI-I
[20:33:16] [PASSED] DVI-D
[20:33:16] [PASSED] DVI-A
[20:33:16] [PASSED] Composite
[20:33:16] [PASSED] SVIDEO
[20:33:16] [PASSED] LVDS
[20:33:16] [PASSED] Component
[20:33:16] [PASSED] DIN
[20:33:16] [PASSED] DP
[20:33:16] [PASSED] HDMI-A
[20:33:16] [PASSED] HDMI-B
[20:33:16] [PASSED] TV
[20:33:16] [PASSED] eDP
[20:33:16] [PASSED] Virtual
[20:33:16] [PASSED] DSI
[20:33:16] [PASSED] DPI
[20:33:16] [PASSED] Writeback
[20:33:16] [PASSED] SPI
[20:33:16] [PASSED] USB
[20:33:16] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[20:33:16] =============== [PASSED] drmm_connector_init ===============
[20:33:16] ========= drm_connector_dynamic_init (6 subtests) ==========
[20:33:16] [PASSED] drm_test_drm_connector_dynamic_init
[20:33:16] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[20:33:16] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[20:33:16] [PASSED] drm_test_drm_connector_dynamic_init_properties
[20:33:16] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[20:33:16] [PASSED] Unknown
[20:33:16] [PASSED] VGA
[20:33:16] [PASSED] DVI-I
[20:33:16] [PASSED] DVI-D
[20:33:16] [PASSED] DVI-A
[20:33:16] [PASSED] Composite
[20:33:16] [PASSED] SVIDEO
[20:33:16] [PASSED] LVDS
[20:33:16] [PASSED] Component
[20:33:16] [PASSED] DIN
[20:33:16] [PASSED] DP
[20:33:16] [PASSED] HDMI-A
[20:33:16] [PASSED] HDMI-B
[20:33:16] [PASSED] TV
[20:33:16] [PASSED] eDP
[20:33:16] [PASSED] Virtual
[20:33:16] [PASSED] DSI
[20:33:16] [PASSED] DPI
[20:33:16] [PASSED] Writeback
[20:33:16] [PASSED] SPI
[20:33:16] [PASSED] USB
[20:33:16] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[20:33:16] ======== drm_test_drm_connector_dynamic_init_name =========
[20:33:16] [PASSED] Unknown
[20:33:16] [PASSED] VGA
[20:33:16] [PASSED] DVI-I
[20:33:16] [PASSED] DVI-D
[20:33:16] [PASSED] DVI-A
[20:33:16] [PASSED] Composite
[20:33:16] [PASSED] SVIDEO
[20:33:16] [PASSED] LVDS
[20:33:16] [PASSED] Component
[20:33:16] [PASSED] DIN
[20:33:16] [PASSED] DP
[20:33:16] [PASSED] HDMI-A
[20:33:16] [PASSED] HDMI-B
[20:33:16] [PASSED] TV
[20:33:16] [PASSED] eDP
[20:33:16] [PASSED] Virtual
[20:33:16] [PASSED] DSI
[20:33:16] [PASSED] DPI
[20:33:16] [PASSED] Writeback
[20:33:16] [PASSED] SPI
[20:33:16] [PASSED] USB
[20:33:16] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[20:33:16] =========== [PASSED] drm_connector_dynamic_init ============
[20:33:16] ==== drm_connector_dynamic_register_early (4 subtests) =====
[20:33:16] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[20:33:16] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[20:33:16] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[20:33:16] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[20:33:16] ====== [PASSED] drm_connector_dynamic_register_early =======
[20:33:16] ======= drm_connector_dynamic_register (7 subtests) ========
[20:33:16] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[20:33:16] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[20:33:16] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[20:33:16] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[20:33:16] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[20:33:16] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[20:33:16] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[20:33:16] ========= [PASSED] drm_connector_dynamic_register ==========
[20:33:16] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[20:33:16] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[20:33:16] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[20:33:16] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[20:33:16] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[20:33:16] ========== drm_test_get_tv_mode_from_name_valid ===========
[20:33:16] [PASSED] NTSC
[20:33:16] [PASSED] NTSC-443
[20:33:16] [PASSED] NTSC-J
[20:33:16] [PASSED] PAL
[20:33:16] [PASSED] PAL-M
[20:33:16] [PASSED] PAL-N
[20:33:16] [PASSED] SECAM
[20:33:16] [PASSED] Mono
[20:33:16] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[20:33:16] [PASSED] drm_test_get_tv_mode_from_name_truncated
[20:33:16] ============ [PASSED] drm_get_tv_mode_from_name ============
[20:33:16] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[20:33:16] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[20:33:16] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[20:33:16] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[20:33:16] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[20:33:16] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[20:33:16] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[20:33:16] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[20:33:16] [PASSED] VIC 96
[20:33:16] [PASSED] VIC 97
[20:33:16] [PASSED] VIC 101
[20:33:16] [PASSED] VIC 102
[20:33:16] [PASSED] VIC 106
[20:33:16] [PASSED] VIC 107
[20:33:16] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[20:33:16] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[20:33:16] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[20:33:16] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[20:33:16] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[20:33:16] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[20:33:16] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[20:33:16] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[20:33:16] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[20:33:16] [PASSED] Automatic
[20:33:16] [PASSED] Full
[20:33:16] [PASSED] Limited 16:235
[20:33:16] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[20:33:16] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[20:33:16] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[20:33:16] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[20:33:16] === drm_test_drm_hdmi_connector_get_output_format_name ====
[20:33:16] [PASSED] RGB
[20:33:16] [PASSED] YUV 4:2:0
[20:33:16] [PASSED] YUV 4:2:2
[20:33:16] [PASSED] YUV 4:4:4
[20:33:16] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[20:33:16] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[20:33:16] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[20:33:16] ============= drm_damage_helper (21 subtests) ==============
[20:33:16] [PASSED] drm_test_damage_iter_no_damage
[20:33:16] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[20:33:16] [PASSED] drm_test_damage_iter_no_damage_src_moved
[20:33:16] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[20:33:16] [PASSED] drm_test_damage_iter_no_damage_not_visible
[20:33:16] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[20:33:16] [PASSED] drm_test_damage_iter_no_damage_no_fb
[20:33:16] [PASSED] drm_test_damage_iter_simple_damage
[20:33:16] [PASSED] drm_test_damage_iter_single_damage
[20:33:16] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[20:33:16] [PASSED] drm_test_damage_iter_single_damage_outside_src
[20:33:16] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[20:33:16] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[20:33:16] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[20:33:16] [PASSED] drm_test_damage_iter_single_damage_src_moved
[20:33:16] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[20:33:16] [PASSED] drm_test_damage_iter_damage
[20:33:16] [PASSED] drm_test_damage_iter_damage_one_intersect
[20:33:16] [PASSED] drm_test_damage_iter_damage_one_outside
[20:33:16] [PASSED] drm_test_damage_iter_damage_src_moved
[20:33:16] [PASSED] drm_test_damage_iter_damage_not_visible
[20:33:16] ================ [PASSED] drm_damage_helper ================
[20:33:16] ============== drm_dp_mst_helper (3 subtests) ==============
[20:33:16] ============== drm_test_dp_mst_calc_pbn_mode ==============
[20:33:16] [PASSED] Clock 154000 BPP 30 DSC disabled
[20:33:16] [PASSED] Clock 234000 BPP 30 DSC disabled
[20:33:16] [PASSED] Clock 297000 BPP 24 DSC disabled
[20:33:16] [PASSED] Clock 332880 BPP 24 DSC enabled
[20:33:16] [PASSED] Clock 324540 BPP 24 DSC enabled
[20:33:16] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[20:33:16] ============== drm_test_dp_mst_calc_pbn_div ===============
[20:33:16] [PASSED] Link rate 2000000 lane count 4
[20:33:16] [PASSED] Link rate 2000000 lane count 2
[20:33:16] [PASSED] Link rate 2000000 lane count 1
[20:33:16] [PASSED] Link rate 1350000 lane count 4
[20:33:16] [PASSED] Link rate 1350000 lane count 2
[20:33:16] [PASSED] Link rate 1350000 lane count 1
[20:33:16] [PASSED] Link rate 1000000 lane count 4
[20:33:16] [PASSED] Link rate 1000000 lane count 2
[20:33:16] [PASSED] Link rate 1000000 lane count 1
[20:33:16] [PASSED] Link rate 810000 lane count 4
[20:33:16] [PASSED] Link rate 810000 lane count 2
[20:33:16] [PASSED] Link rate 810000 lane count 1
[20:33:16] [PASSED] Link rate 540000 lane count 4
[20:33:16] [PASSED] Link rate 540000 lane count 2
[20:33:16] [PASSED] Link rate 540000 lane count 1
[20:33:16] [PASSED] Link rate 270000 lane count 4
[20:33:16] [PASSED] Link rate 270000 lane count 2
[20:33:16] [PASSED] Link rate 270000 lane count 1
[20:33:16] [PASSED] Link rate 162000 lane count 4
[20:33:16] [PASSED] Link rate 162000 lane count 2
[20:33:16] [PASSED] Link rate 162000 lane count 1
[20:33:16] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[20:33:16] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[20:33:16] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[20:33:16] [PASSED] DP_POWER_UP_PHY with port number
[20:33:16] [PASSED] DP_POWER_DOWN_PHY with port number
[20:33:16] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[20:33:16] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[20:33:16] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[20:33:16] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[20:33:16] [PASSED] DP_QUERY_PAYLOAD with port number
[20:33:16] [PASSED] DP_QUERY_PAYLOAD with VCPI
[20:33:16] [PASSED] DP_REMOTE_DPCD_READ with port number
[20:33:16] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[20:33:16] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[20:33:16] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[20:33:16] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[20:33:16] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[20:33:16] [PASSED] DP_REMOTE_I2C_READ with port number
[20:33:16] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[20:33:16] [PASSED] DP_REMOTE_I2C_READ with transactions array
[20:33:16] [PASSED] DP_REMOTE_I2C_WRITE with port number
[20:33:16] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[20:33:16] [PASSED] DP_REMOTE_I2C_WRITE with data array
[20:33:16] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[20:33:16] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[20:33:16] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[20:33:16] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[20:33:16] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[20:33:16] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[20:33:16] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[20:33:16] ================ [PASSED] drm_dp_mst_helper ================
[20:33:16] ================== drm_exec (7 subtests) ===================
[20:33:16] [PASSED] sanitycheck
[20:33:16] [PASSED] test_lock
[20:33:16] [PASSED] test_lock_unlock
[20:33:16] [PASSED] test_duplicates
[20:33:16] [PASSED] test_prepare
[20:33:16] [PASSED] test_prepare_array
[20:33:16] [PASSED] test_multiple_loops
[20:33:16] ==================== [PASSED] drm_exec =====================
[20:33:16] =========== drm_format_helper_test (17 subtests) ===========
[20:33:16] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[20:33:16] [PASSED] single_pixel_source_buffer
[20:33:16] [PASSED] single_pixel_clip_rectangle
[20:33:16] [PASSED] well_known_colors
[20:33:16] [PASSED] destination_pitch
[20:33:16] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[20:33:16] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[20:33:16] [PASSED] single_pixel_source_buffer
[20:33:16] [PASSED] single_pixel_clip_rectangle
[20:33:16] [PASSED] well_known_colors
[20:33:16] [PASSED] destination_pitch
[20:33:16] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[20:33:16] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[20:33:16] [PASSED] single_pixel_source_buffer
[20:33:16] [PASSED] single_pixel_clip_rectangle
[20:33:16] [PASSED] well_known_colors
[20:33:16] [PASSED] destination_pitch
[20:33:16] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[20:33:16] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[20:33:16] [PASSED] single_pixel_source_buffer
[20:33:16] [PASSED] single_pixel_clip_rectangle
[20:33:16] [PASSED] well_known_colors
[20:33:16] [PASSED] destination_pitch
[20:33:16] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[20:33:16] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[20:33:16] [PASSED] single_pixel_source_buffer
[20:33:16] [PASSED] single_pixel_clip_rectangle
[20:33:16] [PASSED] well_known_colors
[20:33:16] [PASSED] destination_pitch
[20:33:16] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[20:33:16] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[20:33:16] [PASSED] single_pixel_source_buffer
[20:33:16] [PASSED] single_pixel_clip_rectangle
[20:33:16] [PASSED] well_known_colors
[20:33:16] [PASSED] destination_pitch
[20:33:16] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[20:33:16] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[20:33:16] [PASSED] single_pixel_source_buffer
[20:33:16] [PASSED] single_pixel_clip_rectangle
[20:33:16] [PASSED] well_known_colors
[20:33:16] [PASSED] destination_pitch
[20:33:16] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[20:33:16] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[20:33:16] [PASSED] single_pixel_source_buffer
[20:33:16] [PASSED] single_pixel_clip_rectangle
[20:33:16] [PASSED] well_known_colors
[20:33:16] [PASSED] destination_pitch
[20:33:16] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[20:33:16] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[20:33:16] [PASSED] single_pixel_source_buffer
[20:33:16] [PASSED] single_pixel_clip_rectangle
[20:33:16] [PASSED] well_known_colors
[20:33:16] [PASSED] destination_pitch
[20:33:16] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[20:33:16] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[20:33:16] [PASSED] single_pixel_source_buffer
[20:33:16] [PASSED] single_pixel_clip_rectangle
[20:33:16] [PASSED] well_known_colors
[20:33:16] [PASSED] destination_pitch
[20:33:16] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[20:33:16] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[20:33:16] [PASSED] single_pixel_source_buffer
[20:33:16] [PASSED] single_pixel_clip_rectangle
[20:33:16] [PASSED] well_known_colors
[20:33:16] [PASSED] destination_pitch
[20:33:16] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[20:33:16] ============== drm_test_fb_xrgb8888_to_mono ===============
[20:33:16] [PASSED] single_pixel_source_buffer
[20:33:16] [PASSED] single_pixel_clip_rectangle
[20:33:16] [PASSED] well_known_colors
[20:33:16] [PASSED] destination_pitch
[20:33:16] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[20:33:16] ==================== drm_test_fb_swab =====================
[20:33:16] [PASSED] single_pixel_source_buffer
[20:33:16] [PASSED] single_pixel_clip_rectangle
[20:33:16] [PASSED] well_known_colors
[20:33:16] [PASSED] destination_pitch
[20:33:16] ================ [PASSED] drm_test_fb_swab =================
[20:33:16] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[20:33:16] [PASSED] single_pixel_source_buffer
[20:33:16] [PASSED] single_pixel_clip_rectangle
[20:33:16] [PASSED] well_known_colors
[20:33:16] [PASSED] destination_pitch
[20:33:16] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[20:33:16] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[20:33:16] [PASSED] single_pixel_source_buffer
[20:33:16] [PASSED] single_pixel_clip_rectangle
[20:33:16] [PASSED] well_known_colors
[20:33:16] [PASSED] destination_pitch
[20:33:16] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[20:33:16] ================= drm_test_fb_clip_offset =================
[20:33:16] [PASSED] pass through
[20:33:16] [PASSED] horizontal offset
[20:33:16] [PASSED] vertical offset
[20:33:16] [PASSED] horizontal and vertical offset
[20:33:16] [PASSED] horizontal offset (custom pitch)
[20:33:16] [PASSED] vertical offset (custom pitch)
[20:33:16] [PASSED] horizontal and vertical offset (custom pitch)
[20:33:16] ============= [PASSED] drm_test_fb_clip_offset =============
[20:33:16] =================== drm_test_fb_memcpy ====================
[20:33:16] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[20:33:16] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[20:33:16] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[20:33:16] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[20:33:16] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[20:33:16] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[20:33:16] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[20:33:16] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[20:33:16] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[20:33:16] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[20:33:16] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[20:33:16] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[20:33:16] =============== [PASSED] drm_test_fb_memcpy ================
[20:33:16] ============= [PASSED] drm_format_helper_test ==============
[20:33:16] ================= drm_format (18 subtests) =================
[20:33:16] [PASSED] drm_test_format_block_width_invalid
[20:33:16] [PASSED] drm_test_format_block_width_one_plane
[20:33:16] [PASSED] drm_test_format_block_width_two_plane
[20:33:16] [PASSED] drm_test_format_block_width_three_plane
[20:33:16] [PASSED] drm_test_format_block_width_tiled
[20:33:16] [PASSED] drm_test_format_block_height_invalid
[20:33:16] [PASSED] drm_test_format_block_height_one_plane
[20:33:16] [PASSED] drm_test_format_block_height_two_plane
[20:33:16] [PASSED] drm_test_format_block_height_three_plane
[20:33:16] [PASSED] drm_test_format_block_height_tiled
[20:33:16] [PASSED] drm_test_format_min_pitch_invalid
[20:33:16] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[20:33:16] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[20:33:16] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[20:33:16] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[20:33:16] [PASSED] drm_test_format_min_pitch_two_plane
[20:33:16] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[20:33:16] [PASSED] drm_test_format_min_pitch_tiled
[20:33:16] =================== [PASSED] drm_format ====================
[20:33:16] ============== drm_framebuffer (10 subtests) ===============
[20:33:16] ========== drm_test_framebuffer_check_src_coords ==========
[20:33:16] [PASSED] Success: source fits into fb
[20:33:16] [PASSED] Fail: overflowing fb with x-axis coordinate
[20:33:16] [PASSED] Fail: overflowing fb with y-axis coordinate
[20:33:16] [PASSED] Fail: overflowing fb with source width
[20:33:16] [PASSED] Fail: overflowing fb with source height
[20:33:16] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[20:33:16] [PASSED] drm_test_framebuffer_cleanup
[20:33:16] =============== drm_test_framebuffer_create ===============
[20:33:16] [PASSED] ABGR8888 normal sizes
[20:33:16] [PASSED] ABGR8888 max sizes
[20:33:16] [PASSED] ABGR8888 pitch greater than min required
[20:33:16] [PASSED] ABGR8888 pitch less than min required
[20:33:16] [PASSED] ABGR8888 Invalid width
[20:33:16] [PASSED] ABGR8888 Invalid buffer handle
[20:33:16] [PASSED] No pixel format
[20:33:16] [PASSED] ABGR8888 Width 0
[20:33:16] [PASSED] ABGR8888 Height 0
[20:33:16] [PASSED] ABGR8888 Out of bound height * pitch combination
[20:33:16] [PASSED] ABGR8888 Large buffer offset
[20:33:16] [PASSED] ABGR8888 Buffer offset for inexistent plane
[20:33:16] [PASSED] ABGR8888 Invalid flag
[20:33:16] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[20:33:16] [PASSED] ABGR8888 Valid buffer modifier
[20:33:16] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[20:33:16] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[20:33:16] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[20:33:16] [PASSED] NV12 Normal sizes
[20:33:16] [PASSED] NV12 Max sizes
[20:33:16] [PASSED] NV12 Invalid pitch
[20:33:16] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[20:33:16] [PASSED] NV12 different modifier per-plane
[20:33:16] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[20:33:16] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[20:33:16] [PASSED] NV12 Modifier for inexistent plane
[20:33:16] [PASSED] NV12 Handle for inexistent plane
[20:33:16] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[20:33:16] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[20:33:16] [PASSED] YVU420 Normal sizes
[20:33:16] [PASSED] YVU420 Max sizes
[20:33:16] [PASSED] YVU420 Invalid pitch
[20:33:16] [PASSED] YVU420 Different pitches
[20:33:16] [PASSED] YVU420 Different buffer offsets/pitches
[20:33:16] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[20:33:16] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[20:33:16] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[20:33:16] [PASSED] YVU420 Valid modifier
[20:33:16] [PASSED] YVU420 Different modifiers per plane
[20:33:16] [PASSED] YVU420 Modifier for inexistent plane
[20:33:16] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[20:33:16] [PASSED] X0L2 Normal sizes
[20:33:16] [PASSED] X0L2 Max sizes
[20:33:16] [PASSED] X0L2 Invalid pitch
[20:33:16] [PASSED] X0L2 Pitch greater than minimum required
[20:33:16] [PASSED] X0L2 Handle for inexistent plane
[20:33:16] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[20:33:16] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[20:33:16] [PASSED] X0L2 Valid modifier
[20:33:16] [PASSED] X0L2 Modifier for inexistent plane
[20:33:16] =========== [PASSED] drm_test_framebuffer_create ===========
[20:33:16] [PASSED] drm_test_framebuffer_free
[20:33:16] [PASSED] drm_test_framebuffer_init
[20:33:16] [PASSED] drm_test_framebuffer_init_bad_format
[20:33:16] [PASSED] drm_test_framebuffer_init_dev_mismatch
[20:33:16] [PASSED] drm_test_framebuffer_lookup
[20:33:16] [PASSED] drm_test_framebuffer_lookup_inexistent
[20:33:16] [PASSED] drm_test_framebuffer_modifiers_not_supported
[20:33:16] ================= [PASSED] drm_framebuffer =================
[20:33:16] ================ drm_gem_shmem (8 subtests) ================
[20:33:16] [PASSED] drm_gem_shmem_test_obj_create
[20:33:16] [PASSED] drm_gem_shmem_test_obj_create_private
[20:33:16] [PASSED] drm_gem_shmem_test_pin_pages
[20:33:16] [PASSED] drm_gem_shmem_test_vmap
[20:33:16] [PASSED] drm_gem_shmem_test_get_pages_sgt
[20:33:16] [PASSED] drm_gem_shmem_test_get_sg_table
[20:33:16] [PASSED] drm_gem_shmem_test_madvise
[20:33:16] [PASSED] drm_gem_shmem_test_purge
[20:33:16] ================== [PASSED] drm_gem_shmem ==================
[20:33:16] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[20:33:16] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[20:33:16] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[20:33:16] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[20:33:16] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[20:33:16] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[20:33:16] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[20:33:16] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[20:33:16] [PASSED] Automatic
[20:33:16] [PASSED] Full
[20:33:16] [PASSED] Limited 16:235
[20:33:16] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[20:33:16] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[20:33:16] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[20:33:16] [PASSED] drm_test_check_disable_connector
[20:33:16] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[20:33:16] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[20:33:16] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[20:33:16] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[20:33:16] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[20:33:16] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[20:33:16] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[20:33:16] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[20:33:16] [PASSED] drm_test_check_output_bpc_dvi
[20:33:16] [PASSED] drm_test_check_output_bpc_format_vic_1
[20:33:16] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[20:33:16] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[20:33:16] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[20:33:16] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[20:33:16] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[20:33:16] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[20:33:16] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[20:33:16] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[20:33:16] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[20:33:16] [PASSED] drm_test_check_broadcast_rgb_value
[20:33:16] [PASSED] drm_test_check_bpc_8_value
[20:33:16] [PASSED] drm_test_check_bpc_10_value
[20:33:16] [PASSED] drm_test_check_bpc_12_value
[20:33:16] [PASSED] drm_test_check_format_value
[20:33:16] [PASSED] drm_test_check_tmds_char_value
[20:33:16] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[20:33:16] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[20:33:16] [PASSED] drm_test_check_mode_valid
[20:33:16] [PASSED] drm_test_check_mode_valid_reject
[20:33:16] [PASSED] drm_test_check_mode_valid_reject_rate
[20:33:16] [PASSED] drm_test_check_mode_valid_reject_max_clock
[20:33:16] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[20:33:16] ================= drm_managed (2 subtests) =================
[20:33:16] [PASSED] drm_test_managed_release_action
[20:33:16] [PASSED] drm_test_managed_run_action
[20:33:16] =================== [PASSED] drm_managed ===================
[20:33:16] =================== drm_mm (6 subtests) ====================
[20:33:16] [PASSED] drm_test_mm_init
[20:33:16] [PASSED] drm_test_mm_debug
[20:33:16] [PASSED] drm_test_mm_align32
[20:33:16] [PASSED] drm_test_mm_align64
[20:33:16] [PASSED] drm_test_mm_lowest
[20:33:16] [PASSED] drm_test_mm_highest
[20:33:16] ===================== [PASSED] drm_mm ======================
[20:33:16] ============= drm_modes_analog_tv (5 subtests) =============
[20:33:16] [PASSED] drm_test_modes_analog_tv_mono_576i
[20:33:16] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[20:33:16] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[20:33:16] [PASSED] drm_test_modes_analog_tv_pal_576i
[20:33:16] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[20:33:16] =============== [PASSED] drm_modes_analog_tv ===============
[20:33:16] ============== drm_plane_helper (2 subtests) ===============
[20:33:16] =============== drm_test_check_plane_state ================
[20:33:16] [PASSED] clipping_simple
[20:33:16] [PASSED] clipping_rotate_reflect
[20:33:16] [PASSED] positioning_simple
[20:33:16] [PASSED] upscaling
[20:33:16] [PASSED] downscaling
[20:33:16] [PASSED] rounding1
[20:33:16] [PASSED] rounding2
[20:33:16] [PASSED] rounding3
[20:33:16] [PASSED] rounding4
[20:33:16] =========== [PASSED] drm_test_check_plane_state ============
[20:33:16] =========== drm_test_check_invalid_plane_state ============
[20:33:16] [PASSED] positioning_invalid
[20:33:16] [PASSED] upscaling_invalid
[20:33:16] [PASSED] downscaling_invalid
[20:33:16] ======= [PASSED] drm_test_check_invalid_plane_state ========
[20:33:16] ================ [PASSED] drm_plane_helper =================
[20:33:16] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[20:33:16] ====== drm_test_connector_helper_tv_get_modes_check =======
[20:33:16] [PASSED] None
[20:33:16] [PASSED] PAL
[20:33:16] [PASSED] NTSC
[20:33:16] [PASSED] Both, NTSC Default
[20:33:16] [PASSED] Both, PAL Default
[20:33:16] [PASSED] Both, NTSC Default, with PAL on command-line
[20:33:16] [PASSED] Both, PAL Default, with NTSC on command-line
[20:33:16] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[20:33:16] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[20:33:16] ================== drm_rect (9 subtests) ===================
[20:33:16] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[20:33:16] [PASSED] drm_test_rect_clip_scaled_not_clipped
[20:33:16] [PASSED] drm_test_rect_clip_scaled_clipped
[20:33:16] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[20:33:16] ================= drm_test_rect_intersect =================
[20:33:16] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[20:33:16] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[20:33:16] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[20:33:16] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[20:33:16] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[20:33:16] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[20:33:16] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[20:33:16] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[20:33:16] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[20:33:16] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[20:33:16] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[20:33:16] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[20:33:16] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[20:33:16] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[20:33:16] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[20:33:16] ============= [PASSED] drm_test_rect_intersect =============
[20:33:16] ================ drm_test_rect_calc_hscale ================
[20:33:16] [PASSED] normal use
[20:33:16] [PASSED] out of max range
[20:33:16] [PASSED] out of min range
[20:33:16] [PASSED] zero dst
[20:33:16] [PASSED] negative src
[20:33:16] [PASSED] negative dst
[20:33:16] ============ [PASSED] drm_test_rect_calc_hscale ============
[20:33:16] ================ drm_test_rect_calc_vscale ================
[20:33:16] [PASSED] normal use
[20:33:16] [PASSED] out of max range
[20:33:16] [PASSED] out of min range
[20:33:16] [PASSED] zero dst
[20:33:16] [PASSED] negative src
[20:33:16] [PASSED] negative dst
[20:33:16] ============ [PASSED] drm_test_rect_calc_vscale ============
[20:33:16] ================== drm_test_rect_rotate ===================
[20:33:16] [PASSED] reflect-x
[20:33:16] [PASSED] reflect-y
[20:33:16] [PASSED] rotate-0
[20:33:16] [PASSED] rotate-90
[20:33:16] [PASSED] rotate-180
[20:33:16] [PASSED] rotate-270
stty: 'standard input': Inappropriate ioctl for device
[20:33:16] ============== [PASSED] drm_test_rect_rotate ===============
[20:33:16] ================ drm_test_rect_rotate_inv =================
[20:33:16] [PASSED] reflect-x
[20:33:16] [PASSED] reflect-y
[20:33:16] [PASSED] rotate-0
[20:33:16] [PASSED] rotate-90
[20:33:16] [PASSED] rotate-180
[20:33:16] [PASSED] rotate-270
[20:33:16] ============ [PASSED] drm_test_rect_rotate_inv =============
[20:33:16] ==================== [PASSED] drm_rect =====================
[20:33:16] ============ drm_sysfb_modeset_test (1 subtest) ============
[20:33:16] ============ drm_test_sysfb_build_fourcc_list =============
[20:33:16] [PASSED] no native formats
[20:33:16] [PASSED] XRGB8888 as native format
[20:33:16] [PASSED] remove duplicates
[20:33:16] [PASSED] convert alpha formats
[20:33:16] [PASSED] random formats
[20:33:16] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[20:33:16] ============= [PASSED] drm_sysfb_modeset_test ==============
[20:33:16] ============================================================
[20:33:16] Testing complete. Ran 616 tests: passed: 616
[20:33:16] Elapsed time: 24.548s total, 1.717s configuring, 22.661s building, 0.149s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[20:33:17] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[20:33:18] 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
[20:33:26] Starting KUnit Kernel (1/1)...
[20:33:26] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[20:33:26] ================= ttm_device (5 subtests) ==================
[20:33:26] [PASSED] ttm_device_init_basic
[20:33:26] [PASSED] ttm_device_init_multiple
[20:33:26] [PASSED] ttm_device_fini_basic
[20:33:26] [PASSED] ttm_device_init_no_vma_man
[20:33:26] ================== ttm_device_init_pools ==================
[20:33:26] [PASSED] No DMA allocations, no DMA32 required
[20:33:26] [PASSED] DMA allocations, DMA32 required
[20:33:26] [PASSED] No DMA allocations, DMA32 required
[20:33:26] [PASSED] DMA allocations, no DMA32 required
[20:33:26] ============== [PASSED] ttm_device_init_pools ==============
[20:33:26] =================== [PASSED] ttm_device ====================
[20:33:26] ================== ttm_pool (8 subtests) ===================
[20:33:26] ================== ttm_pool_alloc_basic ===================
[20:33:26] [PASSED] One page
[20:33:26] [PASSED] More than one page
[20:33:26] [PASSED] Above the allocation limit
[20:33:26] [PASSED] One page, with coherent DMA mappings enabled
[20:33:26] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[20:33:26] ============== [PASSED] ttm_pool_alloc_basic ===============
[20:33:26] ============== ttm_pool_alloc_basic_dma_addr ==============
[20:33:26] [PASSED] One page
[20:33:26] [PASSED] More than one page
[20:33:26] [PASSED] Above the allocation limit
[20:33:26] [PASSED] One page, with coherent DMA mappings enabled
[20:33:26] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[20:33:26] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[20:33:26] [PASSED] ttm_pool_alloc_order_caching_match
[20:33:26] [PASSED] ttm_pool_alloc_caching_mismatch
[20:33:26] [PASSED] ttm_pool_alloc_order_mismatch
[20:33:26] [PASSED] ttm_pool_free_dma_alloc
[20:33:26] [PASSED] ttm_pool_free_no_dma_alloc
[20:33:26] [PASSED] ttm_pool_fini_basic
[20:33:26] ==================== [PASSED] ttm_pool =====================
[20:33:26] ================ ttm_resource (8 subtests) =================
[20:33:26] ================= ttm_resource_init_basic =================
[20:33:26] [PASSED] Init resource in TTM_PL_SYSTEM
[20:33:26] [PASSED] Init resource in TTM_PL_VRAM
[20:33:26] [PASSED] Init resource in a private placement
[20:33:26] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[20:33:26] ============= [PASSED] ttm_resource_init_basic =============
[20:33:26] [PASSED] ttm_resource_init_pinned
[20:33:26] [PASSED] ttm_resource_fini_basic
[20:33:26] [PASSED] ttm_resource_manager_init_basic
[20:33:26] [PASSED] ttm_resource_manager_usage_basic
[20:33:26] [PASSED] ttm_resource_manager_set_used_basic
[20:33:26] [PASSED] ttm_sys_man_alloc_basic
[20:33:26] [PASSED] ttm_sys_man_free_basic
[20:33:26] ================== [PASSED] ttm_resource ===================
[20:33:26] =================== ttm_tt (15 subtests) ===================
[20:33:26] ==================== ttm_tt_init_basic ====================
[20:33:26] [PASSED] Page-aligned size
[20:33:26] [PASSED] Extra pages requested
[20:33:26] ================ [PASSED] ttm_tt_init_basic ================
[20:33:26] [PASSED] ttm_tt_init_misaligned
[20:33:26] [PASSED] ttm_tt_fini_basic
[20:33:26] [PASSED] ttm_tt_fini_sg
[20:33:26] [PASSED] ttm_tt_fini_shmem
[20:33:26] [PASSED] ttm_tt_create_basic
[20:33:26] [PASSED] ttm_tt_create_invalid_bo_type
[20:33:26] [PASSED] ttm_tt_create_ttm_exists
[20:33:26] [PASSED] ttm_tt_create_failed
[20:33:26] [PASSED] ttm_tt_destroy_basic
[20:33:26] [PASSED] ttm_tt_populate_null_ttm
[20:33:26] [PASSED] ttm_tt_populate_populated_ttm
[20:33:26] [PASSED] ttm_tt_unpopulate_basic
[20:33:26] [PASSED] ttm_tt_unpopulate_empty_ttm
[20:33:26] [PASSED] ttm_tt_swapin_basic
[20:33:26] ===================== [PASSED] ttm_tt ======================
[20:33:26] =================== ttm_bo (14 subtests) ===================
[20:33:26] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[20:33:26] [PASSED] Cannot be interrupted and sleeps
[20:33:26] [PASSED] Cannot be interrupted, locks straight away
[20:33:26] [PASSED] Can be interrupted, sleeps
[20:33:26] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[20:33:26] [PASSED] ttm_bo_reserve_locked_no_sleep
[20:33:26] [PASSED] ttm_bo_reserve_no_wait_ticket
[20:33:26] [PASSED] ttm_bo_reserve_double_resv
[20:33:26] [PASSED] ttm_bo_reserve_interrupted
[20:33:26] [PASSED] ttm_bo_reserve_deadlock
[20:33:26] [PASSED] ttm_bo_unreserve_basic
[20:33:26] [PASSED] ttm_bo_unreserve_pinned
[20:33:26] [PASSED] ttm_bo_unreserve_bulk
[20:33:26] [PASSED] ttm_bo_put_basic
[20:33:26] [PASSED] ttm_bo_put_shared_resv
[20:33:26] [PASSED] ttm_bo_pin_basic
[20:33:26] [PASSED] ttm_bo_pin_unpin_resource
[20:33:26] [PASSED] ttm_bo_multiple_pin_one_unpin
[20:33:26] ===================== [PASSED] ttm_bo ======================
[20:33:26] ============== ttm_bo_validate (21 subtests) ===============
[20:33:26] ============== ttm_bo_init_reserved_sys_man ===============
[20:33:26] [PASSED] Buffer object for userspace
[20:33:26] [PASSED] Kernel buffer object
[20:33:26] [PASSED] Shared buffer object
[20:33:26] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[20:33:26] ============== ttm_bo_init_reserved_mock_man ==============
[20:33:26] [PASSED] Buffer object for userspace
[20:33:26] [PASSED] Kernel buffer object
[20:33:26] [PASSED] Shared buffer object
[20:33:26] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[20:33:26] [PASSED] ttm_bo_init_reserved_resv
[20:33:26] ================== ttm_bo_validate_basic ==================
[20:33:26] [PASSED] Buffer object for userspace
[20:33:26] [PASSED] Kernel buffer object
[20:33:26] [PASSED] Shared buffer object
[20:33:26] ============== [PASSED] ttm_bo_validate_basic ==============
[20:33:26] [PASSED] ttm_bo_validate_invalid_placement
[20:33:26] ============= ttm_bo_validate_same_placement ==============
[20:33:26] [PASSED] System manager
[20:33:26] [PASSED] VRAM manager
[20:33:26] ========= [PASSED] ttm_bo_validate_same_placement ==========
[20:33:26] [PASSED] ttm_bo_validate_failed_alloc
[20:33:26] [PASSED] ttm_bo_validate_pinned
[20:33:26] [PASSED] ttm_bo_validate_busy_placement
[20:33:26] ================ ttm_bo_validate_multihop =================
[20:33:26] [PASSED] Buffer object for userspace
[20:33:26] [PASSED] Kernel buffer object
[20:33:26] [PASSED] Shared buffer object
[20:33:26] ============ [PASSED] ttm_bo_validate_multihop =============
[20:33:26] ========== ttm_bo_validate_no_placement_signaled ==========
[20:33:26] [PASSED] Buffer object in system domain, no page vector
[20:33:26] [PASSED] Buffer object in system domain with an existing page vector
[20:33:26] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[20:33:26] ======== ttm_bo_validate_no_placement_not_signaled ========
[20:33:26] [PASSED] Buffer object for userspace
[20:33:26] [PASSED] Kernel buffer object
[20:33:26] [PASSED] Shared buffer object
[20:33:26] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[20:33:26] [PASSED] ttm_bo_validate_move_fence_signaled
[20:33:27] ========= ttm_bo_validate_move_fence_not_signaled =========
[20:33:27] [PASSED] Waits for GPU
[20:33:27] [PASSED] Tries to lock straight away
[20:33:27] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[20:33:27] [PASSED] ttm_bo_validate_happy_evict
[20:33:27] [PASSED] ttm_bo_validate_all_pinned_evict
[20:33:27] [PASSED] ttm_bo_validate_allowed_only_evict
[20:33:27] [PASSED] ttm_bo_validate_deleted_evict
[20:33:27] [PASSED] ttm_bo_validate_busy_domain_evict
[20:33:27] [PASSED] ttm_bo_validate_evict_gutting
[20:33:27] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[20:33:27] ================= [PASSED] ttm_bo_validate =================
[20:33:27] ============================================================
[20:33:27] Testing complete. Ran 101 tests: passed: 101
[20:33:27] Elapsed time: 10.018s total, 1.732s configuring, 8.020s building, 0.228s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 26+ messages in thread* ✗ Xe.CI.Full: failure for Optimize vrr.guardband and fix LRR (rev9)
2025-09-07 7:32 [PATCH 00/14] Optimize vrr.guardband and fix LRR Ankit Nautiyal
` (14 preceding siblings ...)
2025-09-08 20:33 ` ✓ CI.KUnit: success for Optimize vrr.guardband and fix LRR (rev9) Patchwork
@ 2025-09-09 0:38 ` Patchwork
2025-09-09 1:09 ` ✓ CI.KUnit: success for Optimize vrr.guardband and fix LRR (rev10) Patchwork
` (2 subsequent siblings)
18 siblings, 0 replies; 26+ messages in thread
From: Patchwork @ 2025-09-09 0:38 UTC (permalink / raw)
To: Ankit Nautiyal; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 372 bytes --]
== Series Details ==
Series: Optimize vrr.guardband and fix LRR (rev9)
URL : https://patchwork.freedesktop.org/series/151244/
State : failure
== Summary ==
ERROR: The runconfig 'xe-3703-6da3b81612a8f96c0b70981f173381ca05f80ce0_FULL' does not exist in the database
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v9/index.html
[-- Attachment #2: Type: text/html, Size: 937 bytes --]
^ permalink raw reply [flat|nested] 26+ messages in thread* ✓ CI.KUnit: success for Optimize vrr.guardband and fix LRR (rev10)
2025-09-07 7:32 [PATCH 00/14] Optimize vrr.guardband and fix LRR Ankit Nautiyal
` (15 preceding siblings ...)
2025-09-09 0:38 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-09-09 1:09 ` Patchwork
2025-09-09 1:42 ` ✓ Xe.CI.BAT: " Patchwork
2025-09-09 8:02 ` ✗ Xe.CI.Full: failure " Patchwork
18 siblings, 0 replies; 26+ messages in thread
From: Patchwork @ 2025-09-09 1:09 UTC (permalink / raw)
To: Ankit Nautiyal; +Cc: intel-xe
== Series Details ==
Series: Optimize vrr.guardband and fix LRR (rev10)
URL : https://patchwork.freedesktop.org/series/151244/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[01:08:18] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[01:08:22] 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
[01:08:51] Starting KUnit Kernel (1/1)...
[01:08:51] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[01:08:51] ================== guc_buf (11 subtests) ===================
[01:08:51] [PASSED] test_smallest
[01:08:51] [PASSED] test_largest
[01:08:51] [PASSED] test_granular
[01:08:51] [PASSED] test_unique
[01:08:51] [PASSED] test_overlap
[01:08:51] [PASSED] test_reusable
[01:08:51] [PASSED] test_too_big
[01:08:51] [PASSED] test_flush
[01:08:51] [PASSED] test_lookup
[01:08:51] [PASSED] test_data
[01:08:51] [PASSED] test_class
[01:08:51] ===================== [PASSED] guc_buf =====================
[01:08:51] =================== guc_dbm (7 subtests) ===================
[01:08:51] [PASSED] test_empty
[01:08:51] [PASSED] test_default
[01:08:51] ======================== test_size ========================
[01:08:51] [PASSED] 4
[01:08:51] [PASSED] 8
[01:08:51] [PASSED] 32
[01:08:51] [PASSED] 256
[01:08:51] ==================== [PASSED] test_size ====================
[01:08:51] ======================= test_reuse ========================
[01:08:51] [PASSED] 4
[01:08:51] [PASSED] 8
[01:08:51] [PASSED] 32
[01:08:51] [PASSED] 256
[01:08:51] =================== [PASSED] test_reuse ====================
[01:08:51] =================== test_range_overlap ====================
[01:08:51] [PASSED] 4
[01:08:51] [PASSED] 8
[01:08:51] [PASSED] 32
[01:08:51] [PASSED] 256
[01:08:51] =============== [PASSED] test_range_overlap ================
[01:08:51] =================== test_range_compact ====================
[01:08:51] [PASSED] 4
[01:08:51] [PASSED] 8
[01:08:51] [PASSED] 32
[01:08:51] [PASSED] 256
[01:08:51] =============== [PASSED] test_range_compact ================
[01:08:51] ==================== test_range_spare =====================
[01:08:51] [PASSED] 4
[01:08:51] [PASSED] 8
[01:08:51] [PASSED] 32
[01:08:51] [PASSED] 256
[01:08:51] ================ [PASSED] test_range_spare =================
[01:08:51] ===================== [PASSED] guc_dbm =====================
[01:08:51] =================== guc_idm (6 subtests) ===================
[01:08:51] [PASSED] bad_init
[01:08:51] [PASSED] no_init
[01:08:51] [PASSED] init_fini
[01:08:51] [PASSED] check_used
[01:08:51] [PASSED] check_quota
[01:08:51] [PASSED] check_all
[01:08:51] ===================== [PASSED] guc_idm =====================
[01:08:51] ================== no_relay (3 subtests) ===================
[01:08:51] [PASSED] xe_drops_guc2pf_if_not_ready
[01:08:51] [PASSED] xe_drops_guc2vf_if_not_ready
[01:08:51] [PASSED] xe_rejects_send_if_not_ready
[01:08:51] ==================== [PASSED] no_relay =====================
[01:08:51] ================== pf_relay (14 subtests) ==================
[01:08:51] [PASSED] pf_rejects_guc2pf_too_short
[01:08:51] [PASSED] pf_rejects_guc2pf_too_long
[01:08:51] [PASSED] pf_rejects_guc2pf_no_payload
[01:08:51] [PASSED] pf_fails_no_payload
[01:08:51] [PASSED] pf_fails_bad_origin
[01:08:51] [PASSED] pf_fails_bad_type
[01:08:51] [PASSED] pf_txn_reports_error
[01:08:51] [PASSED] pf_txn_sends_pf2guc
[01:08:51] [PASSED] pf_sends_pf2guc
[01:08:51] [SKIPPED] pf_loopback_nop
[01:08:51] [SKIPPED] pf_loopback_echo
[01:08:51] [SKIPPED] pf_loopback_fail
[01:08:51] [SKIPPED] pf_loopback_busy
[01:08:51] [SKIPPED] pf_loopback_retry
[01:08:51] ==================== [PASSED] pf_relay =====================
[01:08:51] ================== vf_relay (3 subtests) ===================
[01:08:51] [PASSED] vf_rejects_guc2vf_too_short
[01:08:51] [PASSED] vf_rejects_guc2vf_too_long
[01:08:51] [PASSED] vf_rejects_guc2vf_no_payload
[01:08:51] ==================== [PASSED] vf_relay =====================
[01:08:51] ===================== lmtt (1 subtest) =====================
[01:08:51] ======================== test_ops =========================
[01:08:51] [PASSED] 2-level
[01:08:51] [PASSED] multi-level
[01:08:51] ==================== [PASSED] test_ops =====================
[01:08:51] ====================== [PASSED] lmtt =======================
[01:08:51] ================= pf_service (11 subtests) =================
[01:08:51] [PASSED] pf_negotiate_any
[01:08:51] [PASSED] pf_negotiate_base_match
[01:08:51] [PASSED] pf_negotiate_base_newer
[01:08:51] [PASSED] pf_negotiate_base_next
[01:08:51] [SKIPPED] pf_negotiate_base_older
[01:08:51] [PASSED] pf_negotiate_base_prev
[01:08:51] [PASSED] pf_negotiate_latest_match
[01:08:51] [PASSED] pf_negotiate_latest_newer
[01:08:51] [PASSED] pf_negotiate_latest_next
[01:08:51] [SKIPPED] pf_negotiate_latest_older
[01:08:51] [SKIPPED] pf_negotiate_latest_prev
[01:08:51] =================== [PASSED] pf_service ====================
[01:08:51] =================== xe_mocs (2 subtests) ===================
[01:08:51] ================ xe_live_mocs_kernel_kunit ================
[01:08:51] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[01:08:51] ================ xe_live_mocs_reset_kunit =================
[01:08:51] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[01:08:51] ==================== [SKIPPED] xe_mocs =====================
[01:08:51] ================= xe_migrate (2 subtests) ==================
[01:08:51] ================= xe_migrate_sanity_kunit =================
[01:08:51] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[01:08:51] ================== xe_validate_ccs_kunit ==================
[01:08:51] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[01:08:51] =================== [SKIPPED] xe_migrate ===================
[01:08:51] ================== xe_dma_buf (1 subtest) ==================
[01:08:51] ==================== xe_dma_buf_kunit =====================
[01:08:51] ================ [SKIPPED] xe_dma_buf_kunit ================
[01:08:51] =================== [SKIPPED] xe_dma_buf ===================
[01:08:51] ================= xe_bo_shrink (1 subtest) =================
[01:08:51] =================== xe_bo_shrink_kunit ====================
[01:08:51] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[01:08:51] ================== [SKIPPED] xe_bo_shrink ==================
[01:08:51] ==================== xe_bo (2 subtests) ====================
[01:08:51] ================== xe_ccs_migrate_kunit ===================
[01:08:51] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[01:08:51] ==================== xe_bo_evict_kunit ====================
[01:08:51] =============== [SKIPPED] xe_bo_evict_kunit ================
[01:08:51] ===================== [SKIPPED] xe_bo ======================
[01:08:51] ==================== args (11 subtests) ====================
[01:08:51] [PASSED] count_args_test
[01:08:51] [PASSED] call_args_example
[01:08:51] [PASSED] call_args_test
[01:08:51] [PASSED] drop_first_arg_example
[01:08:51] [PASSED] drop_first_arg_test
[01:08:51] [PASSED] first_arg_example
[01:08:51] [PASSED] first_arg_test
[01:08:51] [PASSED] last_arg_example
[01:08:51] [PASSED] last_arg_test
[01:08:51] [PASSED] pick_arg_example
[01:08:51] [PASSED] sep_comma_example
[01:08:51] ====================== [PASSED] args =======================
[01:08:51] =================== xe_pci (3 subtests) ====================
[01:08:51] ==================== check_graphics_ip ====================
[01:08:51] [PASSED] 12.70 Xe_LPG
[01:08:51] [PASSED] 12.71 Xe_LPG
[01:08:51] [PASSED] 12.74 Xe_LPG+
[01:08:51] [PASSED] 20.01 Xe2_HPG
[01:08:51] [PASSED] 20.02 Xe2_HPG
[01:08:51] [PASSED] 20.04 Xe2_LPG
[01:08:51] [PASSED] 30.00 Xe3_LPG
[01:08:51] [PASSED] 30.01 Xe3_LPG
[01:08:51] [PASSED] 30.03 Xe3_LPG
[01:08:51] ================ [PASSED] check_graphics_ip ================
[01:08:51] ===================== check_media_ip ======================
[01:08:51] [PASSED] 13.00 Xe_LPM+
[01:08:51] [PASSED] 13.01 Xe2_HPM
[01:08:51] [PASSED] 20.00 Xe2_LPM
[01:08:51] [PASSED] 30.00 Xe3_LPM
[01:08:51] [PASSED] 30.02 Xe3_LPM
[01:08:51] ================= [PASSED] check_media_ip ==================
[01:08:51] ================= check_platform_gt_count =================
[01:08:51] [PASSED] 0x9A60 (TIGERLAKE)
[01:08:51] [PASSED] 0x9A68 (TIGERLAKE)
[01:08:51] [PASSED] 0x9A70 (TIGERLAKE)
[01:08:51] [PASSED] 0x9A40 (TIGERLAKE)
[01:08:51] [PASSED] 0x9A49 (TIGERLAKE)
[01:08:51] [PASSED] 0x9A59 (TIGERLAKE)
[01:08:51] [PASSED] 0x9A78 (TIGERLAKE)
[01:08:51] [PASSED] 0x9AC0 (TIGERLAKE)
[01:08:51] [PASSED] 0x9AC9 (TIGERLAKE)
[01:08:51] [PASSED] 0x9AD9 (TIGERLAKE)
[01:08:51] [PASSED] 0x9AF8 (TIGERLAKE)
[01:08:51] [PASSED] 0x4C80 (ROCKETLAKE)
[01:08:51] [PASSED] 0x4C8A (ROCKETLAKE)
[01:08:51] [PASSED] 0x4C8B (ROCKETLAKE)
[01:08:51] [PASSED] 0x4C8C (ROCKETLAKE)
[01:08:51] [PASSED] 0x4C90 (ROCKETLAKE)
[01:08:51] [PASSED] 0x4C9A (ROCKETLAKE)
[01:08:51] [PASSED] 0x4680 (ALDERLAKE_S)
[01:08:51] [PASSED] 0x4682 (ALDERLAKE_S)
[01:08:51] [PASSED] 0x4688 (ALDERLAKE_S)
[01:08:51] [PASSED] 0x468A (ALDERLAKE_S)
[01:08:51] [PASSED] 0x468B (ALDERLAKE_S)
[01:08:51] [PASSED] 0x4690 (ALDERLAKE_S)
[01:08:51] [PASSED] 0x4692 (ALDERLAKE_S)
[01:08:51] [PASSED] 0x4693 (ALDERLAKE_S)
[01:08:51] [PASSED] 0x46A0 (ALDERLAKE_P)
[01:08:51] [PASSED] 0x46A1 (ALDERLAKE_P)
[01:08:51] [PASSED] 0x46A2 (ALDERLAKE_P)
[01:08:51] [PASSED] 0x46A3 (ALDERLAKE_P)
[01:08:51] [PASSED] 0x46A6 (ALDERLAKE_P)
[01:08:51] [PASSED] 0x46A8 (ALDERLAKE_P)
[01:08:51] [PASSED] 0x46AA (ALDERLAKE_P)
[01:08:51] [PASSED] 0x462A (ALDERLAKE_P)
[01:08:51] [PASSED] 0x4626 (ALDERLAKE_P)
[01:08:51] [PASSED] 0x4628 (ALDERLAKE_P)
[01:08:51] [PASSED] 0x46B0 (ALDERLAKE_P)
[01:08:51] [PASSED] 0x46B1 (ALDERLAKE_P)
[01:08:51] [PASSED] 0x46B2 (ALDERLAKE_P)
[01:08:51] [PASSED] 0x46B3 (ALDERLAKE_P)
[01:08:51] [PASSED] 0x46C0 (ALDERLAKE_P)
[01:08:51] [PASSED] 0x46C1 (ALDERLAKE_P)
[01:08:51] [PASSED] 0x46C2 (ALDERLAKE_P)
[01:08:51] [PASSED] 0x46C3 (ALDERLAKE_P)
[01:08:51] [PASSED] 0x46D0 (ALDERLAKE_N)
[01:08:51] [PASSED] 0x46D1 (ALDERLAKE_N)
[01:08:51] [PASSED] 0x46D2 (ALDERLAKE_N)
[01:08:51] [PASSED] 0x46D3 (ALDERLAKE_N)
[01:08:51] [PASSED] 0x46D4 (ALDERLAKE_N)
[01:08:51] [PASSED] 0xA721 (ALDERLAKE_P)
[01:08:51] [PASSED] 0xA7A1 (ALDERLAKE_P)
[01:08:51] [PASSED] 0xA7A9 (ALDERLAKE_P)
[01:08:51] [PASSED] 0xA7AC (ALDERLAKE_P)
[01:08:51] [PASSED] 0xA7AD (ALDERLAKE_P)
[01:08:51] [PASSED] 0xA720 (ALDERLAKE_P)
[01:08:51] [PASSED] 0xA7A0 (ALDERLAKE_P)
[01:08:51] [PASSED] 0xA7A8 (ALDERLAKE_P)
[01:08:51] [PASSED] 0xA7AA (ALDERLAKE_P)
[01:08:51] [PASSED] 0xA7AB (ALDERLAKE_P)
[01:08:51] [PASSED] 0xA780 (ALDERLAKE_S)
[01:08:51] [PASSED] 0xA781 (ALDERLAKE_S)
[01:08:51] [PASSED] 0xA782 (ALDERLAKE_S)
[01:08:51] [PASSED] 0xA783 (ALDERLAKE_S)
[01:08:51] [PASSED] 0xA788 (ALDERLAKE_S)
[01:08:51] [PASSED] 0xA789 (ALDERLAKE_S)
[01:08:51] [PASSED] 0xA78A (ALDERLAKE_S)
[01:08:51] [PASSED] 0xA78B (ALDERLAKE_S)
[01:08:51] [PASSED] 0x4905 (DG1)
[01:08:51] [PASSED] 0x4906 (DG1)
[01:08:51] [PASSED] 0x4907 (DG1)
[01:08:51] [PASSED] 0x4908 (DG1)
[01:08:51] [PASSED] 0x4909 (DG1)
[01:08:51] [PASSED] 0x56C0 (DG2)
[01:08:51] [PASSED] 0x56C2 (DG2)
[01:08:51] [PASSED] 0x56C1 (DG2)
[01:08:51] [PASSED] 0x7D51 (METEORLAKE)
[01:08:51] [PASSED] 0x7DD1 (METEORLAKE)
[01:08:51] [PASSED] 0x7D41 (METEORLAKE)
[01:08:51] [PASSED] 0x7D67 (METEORLAKE)
[01:08:51] [PASSED] 0xB640 (METEORLAKE)
[01:08:51] [PASSED] 0x56A0 (DG2)
[01:08:51] [PASSED] 0x56A1 (DG2)
[01:08:51] [PASSED] 0x56A2 (DG2)
[01:08:51] [PASSED] 0x56BE (DG2)
[01:08:51] [PASSED] 0x56BF (DG2)
[01:08:51] [PASSED] 0x5690 (DG2)
[01:08:51] [PASSED] 0x5691 (DG2)
[01:08:51] [PASSED] 0x5692 (DG2)
[01:08:51] [PASSED] 0x56A5 (DG2)
[01:08:51] [PASSED] 0x56A6 (DG2)
[01:08:51] [PASSED] 0x56B0 (DG2)
[01:08:51] [PASSED] 0x56B1 (DG2)
[01:08:51] [PASSED] 0x56BA (DG2)
[01:08:51] [PASSED] 0x56BB (DG2)
[01:08:51] [PASSED] 0x56BC (DG2)
[01:08:51] [PASSED] 0x56BD (DG2)
[01:08:51] [PASSED] 0x5693 (DG2)
[01:08:51] [PASSED] 0x5694 (DG2)
[01:08:51] [PASSED] 0x5695 (DG2)
[01:08:51] [PASSED] 0x56A3 (DG2)
[01:08:51] [PASSED] 0x56A4 (DG2)
[01:08:51] [PASSED] 0x56B2 (DG2)
[01:08:51] [PASSED] 0x56B3 (DG2)
[01:08:51] [PASSED] 0x5696 (DG2)
[01:08:51] [PASSED] 0x5697 (DG2)
[01:08:51] [PASSED] 0xB69 (PVC)
[01:08:51] [PASSED] 0xB6E (PVC)
[01:08:51] [PASSED] 0xBD4 (PVC)
[01:08:51] [PASSED] 0xBD5 (PVC)
[01:08:51] [PASSED] 0xBD6 (PVC)
[01:08:51] [PASSED] 0xBD7 (PVC)
[01:08:51] [PASSED] 0xBD8 (PVC)
[01:08:51] [PASSED] 0xBD9 (PVC)
[01:08:51] [PASSED] 0xBDA (PVC)
[01:08:51] [PASSED] 0xBDB (PVC)
[01:08:51] [PASSED] 0xBE0 (PVC)
[01:08:51] [PASSED] 0xBE1 (PVC)
[01:08:51] [PASSED] 0xBE5 (PVC)
[01:08:51] [PASSED] 0x7D40 (METEORLAKE)
[01:08:51] [PASSED] 0x7D45 (METEORLAKE)
[01:08:51] [PASSED] 0x7D55 (METEORLAKE)
[01:08:51] [PASSED] 0x7D60 (METEORLAKE)
[01:08:51] [PASSED] 0x7DD5 (METEORLAKE)
[01:08:51] [PASSED] 0x6420 (LUNARLAKE)
[01:08:51] [PASSED] 0x64A0 (LUNARLAKE)
[01:08:51] [PASSED] 0x64B0 (LUNARLAKE)
[01:08:51] [PASSED] 0xE202 (BATTLEMAGE)
[01:08:51] [PASSED] 0xE209 (BATTLEMAGE)
[01:08:51] [PASSED] 0xE20B (BATTLEMAGE)
[01:08:51] [PASSED] 0xE20C (BATTLEMAGE)
[01:08:51] [PASSED] 0xE20D (BATTLEMAGE)
[01:08:51] [PASSED] 0xE210 (BATTLEMAGE)
[01:08:51] [PASSED] 0xE211 (BATTLEMAGE)
[01:08:51] [PASSED] 0xE212 (BATTLEMAGE)
[01:08:51] [PASSED] 0xE216 (BATTLEMAGE)
[01:08:51] [PASSED] 0xE220 (BATTLEMAGE)
[01:08:51] [PASSED] 0xE221 (BATTLEMAGE)
[01:08:51] [PASSED] 0xE222 (BATTLEMAGE)
[01:08:51] [PASSED] 0xE223 (BATTLEMAGE)
[01:08:51] [PASSED] 0xB080 (PANTHERLAKE)
[01:08:51] [PASSED] 0xB081 (PANTHERLAKE)
[01:08:51] [PASSED] 0xB082 (PANTHERLAKE)
[01:08:51] [PASSED] 0xB083 (PANTHERLAKE)
[01:08:51] [PASSED] 0xB084 (PANTHERLAKE)
[01:08:51] [PASSED] 0xB085 (PANTHERLAKE)
[01:08:51] [PASSED] 0xB086 (PANTHERLAKE)
[01:08:51] [PASSED] 0xB087 (PANTHERLAKE)
[01:08:51] [PASSED] 0xB08F (PANTHERLAKE)
[01:08:51] [PASSED] 0xB090 (PANTHERLAKE)
[01:08:51] [PASSED] 0xB0A0 (PANTHERLAKE)
[01:08:51] [PASSED] 0xB0B0 (PANTHERLAKE)
[01:08:51] [PASSED] 0xFD80 (PANTHERLAKE)
[01:08:51] [PASSED] 0xFD81 (PANTHERLAKE)
[01:08:51] ============= [PASSED] check_platform_gt_count =============
[01:08:51] ===================== [PASSED] xe_pci ======================
[01:08:51] =================== xe_rtp (2 subtests) ====================
[01:08:51] =============== xe_rtp_process_to_sr_tests ================
[01:08:51] [PASSED] coalesce-same-reg
[01:08:51] [PASSED] no-match-no-add
[01:08:51] [PASSED] match-or
[01:08:51] [PASSED] match-or-xfail
[01:08:51] [PASSED] no-match-no-add-multiple-rules
[01:08:51] [PASSED] two-regs-two-entries
[01:08:51] [PASSED] clr-one-set-other
[01:08:51] [PASSED] set-field
[01:08:51] [PASSED] conflict-duplicate
[01:08:51] [PASSED] conflict-not-disjoint
[01:08:51] [PASSED] conflict-reg-type
[01:08:51] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[01:08:51] ================== xe_rtp_process_tests ===================
[01:08:51] [PASSED] active1
[01:08:51] [PASSED] active2
[01:08:51] [PASSED] active-inactive
[01:08:51] [PASSED] inactive-active
[01:08:51] [PASSED] inactive-1st_or_active-inactive
[01:08:51] [PASSED] inactive-2nd_or_active-inactive
[01:08:51] [PASSED] inactive-last_or_active-inactive
[01:08:51] [PASSED] inactive-no_or_active-inactive
[01:08:51] ============== [PASSED] xe_rtp_process_tests ===============
[01:08:51] ===================== [PASSED] xe_rtp ======================
[01:08:51] ==================== xe_wa (1 subtest) =====================
[01:08:51] ======================== xe_wa_gt =========================
[01:08:51] [PASSED] TIGERLAKE B0
[01:08:51] [PASSED] DG1 A0
[01:08:51] [PASSED] DG1 B0
[01:08:51] [PASSED] ALDERLAKE_S A0
[01:08:51] [PASSED] ALDERLAKE_S B0
[01:08:51] [PASSED] ALDERLAKE_S C0
[01:08:51] [PASSED] ALDERLAKE_S D0
[01:08:51] [PASSED] ALDERLAKE_P A0
[01:08:51] [PASSED] ALDERLAKE_P B0
[01:08:51] [PASSED] ALDERLAKE_P C0
[01:08:51] [PASSED] ALDERLAKE_S RPLS D0
[01:08:51] [PASSED] ALDERLAKE_P RPLU E0
[01:08:51] [PASSED] DG2 G10 C0
[01:08:51] [PASSED] DG2 G11 B1
[01:08:51] [PASSED] DG2 G12 A1
[01:08:51] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[01:08:51] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[01:08:51] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[01:08:51] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
stty: 'standard input': Inappropriate ioctl for device
[01:08:51] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[01:08:51] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[01:08:51] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[01:08:51] ==================== [PASSED] xe_wa_gt =====================
[01:08:51] ====================== [PASSED] xe_wa ======================
[01:08:51] ============================================================
[01:08:51] Testing complete. Ran 298 tests: passed: 282, skipped: 16
[01:08:51] Elapsed time: 33.462s total, 4.230s configuring, 28.866s building, 0.324s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[01:08:51] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[01:08:53] 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
[01:09:16] Starting KUnit Kernel (1/1)...
[01:09:16] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[01:09:16] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[01:09:16] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[01:09:16] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[01:09:16] =========== drm_validate_clone_mode (2 subtests) ===========
[01:09:16] ============== drm_test_check_in_clone_mode ===============
[01:09:16] [PASSED] in_clone_mode
[01:09:16] [PASSED] not_in_clone_mode
[01:09:16] ========== [PASSED] drm_test_check_in_clone_mode ===========
[01:09:16] =============== drm_test_check_valid_clones ===============
[01:09:16] [PASSED] not_in_clone_mode
[01:09:16] [PASSED] valid_clone
[01:09:16] [PASSED] invalid_clone
[01:09:16] =========== [PASSED] drm_test_check_valid_clones ===========
[01:09:16] ============= [PASSED] drm_validate_clone_mode =============
[01:09:16] ============= drm_validate_modeset (1 subtest) =============
[01:09:16] [PASSED] drm_test_check_connector_changed_modeset
[01:09:16] ============== [PASSED] drm_validate_modeset ===============
[01:09:16] ====== drm_test_bridge_get_current_state (2 subtests) ======
[01:09:16] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[01:09:16] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[01:09:16] ======== [PASSED] drm_test_bridge_get_current_state ========
[01:09:16] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[01:09:16] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[01:09:16] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[01:09:16] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[01:09:16] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[01:09:16] ============== drm_bridge_alloc (2 subtests) ===============
[01:09:16] [PASSED] drm_test_drm_bridge_alloc_basic
[01:09:16] [PASSED] drm_test_drm_bridge_alloc_get_put
[01:09:16] ================ [PASSED] drm_bridge_alloc =================
[01:09:16] ================== drm_buddy (7 subtests) ==================
[01:09:16] [PASSED] drm_test_buddy_alloc_limit
[01:09:16] [PASSED] drm_test_buddy_alloc_optimistic
[01:09:16] [PASSED] drm_test_buddy_alloc_pessimistic
[01:09:16] [PASSED] drm_test_buddy_alloc_pathological
[01:09:16] [PASSED] drm_test_buddy_alloc_contiguous
[01:09:16] [PASSED] drm_test_buddy_alloc_clear
[01:09:16] [PASSED] drm_test_buddy_alloc_range_bias
[01:09:16] ==================== [PASSED] drm_buddy ====================
[01:09:16] ============= drm_cmdline_parser (40 subtests) =============
[01:09:16] [PASSED] drm_test_cmdline_force_d_only
[01:09:16] [PASSED] drm_test_cmdline_force_D_only_dvi
[01:09:16] [PASSED] drm_test_cmdline_force_D_only_hdmi
[01:09:16] [PASSED] drm_test_cmdline_force_D_only_not_digital
[01:09:16] [PASSED] drm_test_cmdline_force_e_only
[01:09:16] [PASSED] drm_test_cmdline_res
[01:09:16] [PASSED] drm_test_cmdline_res_vesa
[01:09:16] [PASSED] drm_test_cmdline_res_vesa_rblank
[01:09:16] [PASSED] drm_test_cmdline_res_rblank
[01:09:16] [PASSED] drm_test_cmdline_res_bpp
[01:09:16] [PASSED] drm_test_cmdline_res_refresh
[01:09:16] [PASSED] drm_test_cmdline_res_bpp_refresh
[01:09:16] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[01:09:16] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[01:09:16] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[01:09:16] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[01:09:16] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[01:09:16] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[01:09:16] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[01:09:16] [PASSED] drm_test_cmdline_res_margins_force_on
[01:09:16] [PASSED] drm_test_cmdline_res_vesa_margins
[01:09:16] [PASSED] drm_test_cmdline_name
[01:09:16] [PASSED] drm_test_cmdline_name_bpp
[01:09:16] [PASSED] drm_test_cmdline_name_option
[01:09:16] [PASSED] drm_test_cmdline_name_bpp_option
[01:09:16] [PASSED] drm_test_cmdline_rotate_0
[01:09:16] [PASSED] drm_test_cmdline_rotate_90
[01:09:16] [PASSED] drm_test_cmdline_rotate_180
[01:09:16] [PASSED] drm_test_cmdline_rotate_270
[01:09:16] [PASSED] drm_test_cmdline_hmirror
[01:09:16] [PASSED] drm_test_cmdline_vmirror
[01:09:16] [PASSED] drm_test_cmdline_margin_options
[01:09:16] [PASSED] drm_test_cmdline_multiple_options
[01:09:16] [PASSED] drm_test_cmdline_bpp_extra_and_option
[01:09:16] [PASSED] drm_test_cmdline_extra_and_option
[01:09:16] [PASSED] drm_test_cmdline_freestanding_options
[01:09:16] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[01:09:16] [PASSED] drm_test_cmdline_panel_orientation
[01:09:16] ================ drm_test_cmdline_invalid =================
[01:09:16] [PASSED] margin_only
[01:09:16] [PASSED] interlace_only
[01:09:16] [PASSED] res_missing_x
[01:09:16] [PASSED] res_missing_y
[01:09:16] [PASSED] res_bad_y
[01:09:16] [PASSED] res_missing_y_bpp
[01:09:16] [PASSED] res_bad_bpp
[01:09:16] [PASSED] res_bad_refresh
[01:09:16] [PASSED] res_bpp_refresh_force_on_off
[01:09:16] [PASSED] res_invalid_mode
[01:09:16] [PASSED] res_bpp_wrong_place_mode
[01:09:16] [PASSED] name_bpp_refresh
[01:09:16] [PASSED] name_refresh
[01:09:16] [PASSED] name_refresh_wrong_mode
[01:09:16] [PASSED] name_refresh_invalid_mode
[01:09:16] [PASSED] rotate_multiple
[01:09:16] [PASSED] rotate_invalid_val
[01:09:16] [PASSED] rotate_truncated
[01:09:16] [PASSED] invalid_option
[01:09:16] [PASSED] invalid_tv_option
[01:09:16] [PASSED] truncated_tv_option
[01:09:16] ============ [PASSED] drm_test_cmdline_invalid =============
[01:09:16] =============== drm_test_cmdline_tv_options ===============
[01:09:16] [PASSED] NTSC
[01:09:16] [PASSED] NTSC_443
[01:09:16] [PASSED] NTSC_J
[01:09:16] [PASSED] PAL
[01:09:16] [PASSED] PAL_M
[01:09:16] [PASSED] PAL_N
[01:09:16] [PASSED] SECAM
[01:09:16] [PASSED] MONO_525
[01:09:16] [PASSED] MONO_625
[01:09:16] =========== [PASSED] drm_test_cmdline_tv_options ===========
[01:09:16] =============== [PASSED] drm_cmdline_parser ================
[01:09:16] ========== drmm_connector_hdmi_init (20 subtests) ==========
[01:09:16] [PASSED] drm_test_connector_hdmi_init_valid
[01:09:16] [PASSED] drm_test_connector_hdmi_init_bpc_8
[01:09:16] [PASSED] drm_test_connector_hdmi_init_bpc_10
[01:09:16] [PASSED] drm_test_connector_hdmi_init_bpc_12
[01:09:16] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[01:09:16] [PASSED] drm_test_connector_hdmi_init_bpc_null
[01:09:16] [PASSED] drm_test_connector_hdmi_init_formats_empty
[01:09:16] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[01:09:16] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[01:09:16] [PASSED] supported_formats=0x9 yuv420_allowed=1
[01:09:16] [PASSED] supported_formats=0x9 yuv420_allowed=0
[01:09:16] [PASSED] supported_formats=0x3 yuv420_allowed=1
[01:09:16] [PASSED] supported_formats=0x3 yuv420_allowed=0
[01:09:16] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[01:09:16] [PASSED] drm_test_connector_hdmi_init_null_ddc
[01:09:16] [PASSED] drm_test_connector_hdmi_init_null_product
[01:09:16] [PASSED] drm_test_connector_hdmi_init_null_vendor
[01:09:16] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[01:09:16] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[01:09:16] [PASSED] drm_test_connector_hdmi_init_product_valid
[01:09:16] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[01:09:16] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[01:09:16] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[01:09:16] ========= drm_test_connector_hdmi_init_type_valid =========
[01:09:16] [PASSED] HDMI-A
[01:09:16] [PASSED] HDMI-B
[01:09:16] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[01:09:16] ======== drm_test_connector_hdmi_init_type_invalid ========
[01:09:16] [PASSED] Unknown
[01:09:16] [PASSED] VGA
[01:09:16] [PASSED] DVI-I
[01:09:16] [PASSED] DVI-D
[01:09:16] [PASSED] DVI-A
[01:09:16] [PASSED] Composite
[01:09:16] [PASSED] SVIDEO
[01:09:16] [PASSED] LVDS
[01:09:16] [PASSED] Component
[01:09:16] [PASSED] DIN
[01:09:16] [PASSED] DP
[01:09:16] [PASSED] TV
[01:09:16] [PASSED] eDP
[01:09:16] [PASSED] Virtual
[01:09:16] [PASSED] DSI
[01:09:16] [PASSED] DPI
[01:09:16] [PASSED] Writeback
[01:09:16] [PASSED] SPI
[01:09:16] [PASSED] USB
[01:09:16] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[01:09:16] ============ [PASSED] drmm_connector_hdmi_init =============
[01:09:16] ============= drmm_connector_init (3 subtests) =============
[01:09:16] [PASSED] drm_test_drmm_connector_init
[01:09:16] [PASSED] drm_test_drmm_connector_init_null_ddc
[01:09:16] ========= drm_test_drmm_connector_init_type_valid =========
[01:09:16] [PASSED] Unknown
[01:09:16] [PASSED] VGA
[01:09:16] [PASSED] DVI-I
[01:09:16] [PASSED] DVI-D
[01:09:16] [PASSED] DVI-A
[01:09:16] [PASSED] Composite
[01:09:16] [PASSED] SVIDEO
[01:09:16] [PASSED] LVDS
[01:09:16] [PASSED] Component
[01:09:16] [PASSED] DIN
[01:09:16] [PASSED] DP
[01:09:16] [PASSED] HDMI-A
[01:09:16] [PASSED] HDMI-B
[01:09:16] [PASSED] TV
[01:09:16] [PASSED] eDP
[01:09:16] [PASSED] Virtual
[01:09:16] [PASSED] DSI
[01:09:16] [PASSED] DPI
[01:09:16] [PASSED] Writeback
[01:09:16] [PASSED] SPI
[01:09:16] [PASSED] USB
[01:09:16] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[01:09:16] =============== [PASSED] drmm_connector_init ===============
[01:09:16] ========= drm_connector_dynamic_init (6 subtests) ==========
[01:09:16] [PASSED] drm_test_drm_connector_dynamic_init
[01:09:16] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[01:09:16] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[01:09:16] [PASSED] drm_test_drm_connector_dynamic_init_properties
[01:09:16] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[01:09:16] [PASSED] Unknown
[01:09:16] [PASSED] VGA
[01:09:16] [PASSED] DVI-I
[01:09:16] [PASSED] DVI-D
[01:09:16] [PASSED] DVI-A
[01:09:16] [PASSED] Composite
[01:09:16] [PASSED] SVIDEO
[01:09:16] [PASSED] LVDS
[01:09:16] [PASSED] Component
[01:09:16] [PASSED] DIN
[01:09:16] [PASSED] DP
[01:09:16] [PASSED] HDMI-A
[01:09:16] [PASSED] HDMI-B
[01:09:16] [PASSED] TV
[01:09:16] [PASSED] eDP
[01:09:16] [PASSED] Virtual
[01:09:16] [PASSED] DSI
[01:09:16] [PASSED] DPI
[01:09:16] [PASSED] Writeback
[01:09:16] [PASSED] SPI
[01:09:16] [PASSED] USB
[01:09:16] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[01:09:16] ======== drm_test_drm_connector_dynamic_init_name =========
[01:09:16] [PASSED] Unknown
[01:09:16] [PASSED] VGA
[01:09:16] [PASSED] DVI-I
[01:09:16] [PASSED] DVI-D
[01:09:16] [PASSED] DVI-A
[01:09:16] [PASSED] Composite
[01:09:16] [PASSED] SVIDEO
[01:09:16] [PASSED] LVDS
[01:09:16] [PASSED] Component
[01:09:16] [PASSED] DIN
[01:09:16] [PASSED] DP
[01:09:16] [PASSED] HDMI-A
[01:09:16] [PASSED] HDMI-B
[01:09:16] [PASSED] TV
[01:09:16] [PASSED] eDP
[01:09:16] [PASSED] Virtual
[01:09:16] [PASSED] DSI
[01:09:16] [PASSED] DPI
[01:09:16] [PASSED] Writeback
[01:09:16] [PASSED] SPI
[01:09:16] [PASSED] USB
[01:09:16] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[01:09:16] =========== [PASSED] drm_connector_dynamic_init ============
[01:09:16] ==== drm_connector_dynamic_register_early (4 subtests) =====
[01:09:16] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[01:09:16] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[01:09:16] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[01:09:16] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[01:09:16] ====== [PASSED] drm_connector_dynamic_register_early =======
[01:09:16] ======= drm_connector_dynamic_register (7 subtests) ========
[01:09:16] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[01:09:16] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[01:09:16] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[01:09:16] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[01:09:16] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[01:09:16] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[01:09:16] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[01:09:16] ========= [PASSED] drm_connector_dynamic_register ==========
[01:09:16] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[01:09:16] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[01:09:16] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[01:09:16] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[01:09:16] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[01:09:16] ========== drm_test_get_tv_mode_from_name_valid ===========
[01:09:16] [PASSED] NTSC
[01:09:16] [PASSED] NTSC-443
[01:09:16] [PASSED] NTSC-J
[01:09:16] [PASSED] PAL
[01:09:16] [PASSED] PAL-M
[01:09:16] [PASSED] PAL-N
[01:09:16] [PASSED] SECAM
[01:09:16] [PASSED] Mono
[01:09:16] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[01:09:16] [PASSED] drm_test_get_tv_mode_from_name_truncated
[01:09:16] ============ [PASSED] drm_get_tv_mode_from_name ============
[01:09:16] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[01:09:16] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[01:09:16] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[01:09:16] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[01:09:16] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[01:09:16] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[01:09:16] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[01:09:16] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[01:09:16] [PASSED] VIC 96
[01:09:16] [PASSED] VIC 97
[01:09:16] [PASSED] VIC 101
[01:09:16] [PASSED] VIC 102
[01:09:16] [PASSED] VIC 106
[01:09:16] [PASSED] VIC 107
[01:09:16] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[01:09:16] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[01:09:16] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[01:09:16] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[01:09:16] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[01:09:16] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[01:09:16] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[01:09:16] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[01:09:16] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[01:09:16] [PASSED] Automatic
[01:09:16] [PASSED] Full
[01:09:16] [PASSED] Limited 16:235
[01:09:16] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[01:09:16] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[01:09:16] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[01:09:16] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[01:09:16] === drm_test_drm_hdmi_connector_get_output_format_name ====
[01:09:16] [PASSED] RGB
[01:09:16] [PASSED] YUV 4:2:0
[01:09:16] [PASSED] YUV 4:2:2
[01:09:16] [PASSED] YUV 4:4:4
[01:09:16] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[01:09:16] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[01:09:16] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[01:09:16] ============= drm_damage_helper (21 subtests) ==============
[01:09:16] [PASSED] drm_test_damage_iter_no_damage
[01:09:16] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[01:09:16] [PASSED] drm_test_damage_iter_no_damage_src_moved
[01:09:16] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[01:09:16] [PASSED] drm_test_damage_iter_no_damage_not_visible
[01:09:16] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[01:09:16] [PASSED] drm_test_damage_iter_no_damage_no_fb
[01:09:16] [PASSED] drm_test_damage_iter_simple_damage
[01:09:16] [PASSED] drm_test_damage_iter_single_damage
[01:09:16] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[01:09:16] [PASSED] drm_test_damage_iter_single_damage_outside_src
[01:09:16] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[01:09:16] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[01:09:16] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[01:09:16] [PASSED] drm_test_damage_iter_single_damage_src_moved
[01:09:16] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[01:09:16] [PASSED] drm_test_damage_iter_damage
[01:09:16] [PASSED] drm_test_damage_iter_damage_one_intersect
[01:09:16] [PASSED] drm_test_damage_iter_damage_one_outside
[01:09:16] [PASSED] drm_test_damage_iter_damage_src_moved
[01:09:16] [PASSED] drm_test_damage_iter_damage_not_visible
[01:09:16] ================ [PASSED] drm_damage_helper ================
[01:09:16] ============== drm_dp_mst_helper (3 subtests) ==============
[01:09:16] ============== drm_test_dp_mst_calc_pbn_mode ==============
[01:09:16] [PASSED] Clock 154000 BPP 30 DSC disabled
[01:09:16] [PASSED] Clock 234000 BPP 30 DSC disabled
[01:09:16] [PASSED] Clock 297000 BPP 24 DSC disabled
[01:09:16] [PASSED] Clock 332880 BPP 24 DSC enabled
[01:09:16] [PASSED] Clock 324540 BPP 24 DSC enabled
[01:09:16] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[01:09:16] ============== drm_test_dp_mst_calc_pbn_div ===============
[01:09:16] [PASSED] Link rate 2000000 lane count 4
[01:09:16] [PASSED] Link rate 2000000 lane count 2
[01:09:16] [PASSED] Link rate 2000000 lane count 1
[01:09:16] [PASSED] Link rate 1350000 lane count 4
[01:09:16] [PASSED] Link rate 1350000 lane count 2
[01:09:16] [PASSED] Link rate 1350000 lane count 1
[01:09:16] [PASSED] Link rate 1000000 lane count 4
[01:09:16] [PASSED] Link rate 1000000 lane count 2
[01:09:16] [PASSED] Link rate 1000000 lane count 1
[01:09:16] [PASSED] Link rate 810000 lane count 4
[01:09:16] [PASSED] Link rate 810000 lane count 2
[01:09:16] [PASSED] Link rate 810000 lane count 1
[01:09:16] [PASSED] Link rate 540000 lane count 4
[01:09:16] [PASSED] Link rate 540000 lane count 2
[01:09:16] [PASSED] Link rate 540000 lane count 1
[01:09:16] [PASSED] Link rate 270000 lane count 4
[01:09:16] [PASSED] Link rate 270000 lane count 2
[01:09:16] [PASSED] Link rate 270000 lane count 1
[01:09:16] [PASSED] Link rate 162000 lane count 4
[01:09:16] [PASSED] Link rate 162000 lane count 2
[01:09:16] [PASSED] Link rate 162000 lane count 1
[01:09:16] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[01:09:16] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[01:09:16] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[01:09:16] [PASSED] DP_POWER_UP_PHY with port number
[01:09:16] [PASSED] DP_POWER_DOWN_PHY with port number
[01:09:16] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[01:09:16] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[01:09:16] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[01:09:16] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[01:09:16] [PASSED] DP_QUERY_PAYLOAD with port number
[01:09:16] [PASSED] DP_QUERY_PAYLOAD with VCPI
[01:09:16] [PASSED] DP_REMOTE_DPCD_READ with port number
[01:09:16] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[01:09:16] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[01:09:16] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[01:09:16] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[01:09:16] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[01:09:16] [PASSED] DP_REMOTE_I2C_READ with port number
[01:09:16] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[01:09:16] [PASSED] DP_REMOTE_I2C_READ with transactions array
[01:09:16] [PASSED] DP_REMOTE_I2C_WRITE with port number
[01:09:16] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[01:09:16] [PASSED] DP_REMOTE_I2C_WRITE with data array
[01:09:16] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[01:09:16] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[01:09:16] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[01:09:16] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[01:09:16] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[01:09:16] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[01:09:16] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[01:09:16] ================ [PASSED] drm_dp_mst_helper ================
[01:09:16] ================== drm_exec (7 subtests) ===================
[01:09:16] [PASSED] sanitycheck
[01:09:16] [PASSED] test_lock
[01:09:16] [PASSED] test_lock_unlock
[01:09:16] [PASSED] test_duplicates
[01:09:16] [PASSED] test_prepare
[01:09:16] [PASSED] test_prepare_array
[01:09:16] [PASSED] test_multiple_loops
[01:09:16] ==================== [PASSED] drm_exec =====================
[01:09:16] =========== drm_format_helper_test (17 subtests) ===========
[01:09:16] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[01:09:16] [PASSED] single_pixel_source_buffer
[01:09:16] [PASSED] single_pixel_clip_rectangle
[01:09:16] [PASSED] well_known_colors
[01:09:16] [PASSED] destination_pitch
[01:09:16] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[01:09:16] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[01:09:16] [PASSED] single_pixel_source_buffer
[01:09:16] [PASSED] single_pixel_clip_rectangle
[01:09:16] [PASSED] well_known_colors
[01:09:16] [PASSED] destination_pitch
[01:09:16] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[01:09:16] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[01:09:16] [PASSED] single_pixel_source_buffer
[01:09:16] [PASSED] single_pixel_clip_rectangle
[01:09:16] [PASSED] well_known_colors
[01:09:16] [PASSED] destination_pitch
[01:09:16] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[01:09:16] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[01:09:16] [PASSED] single_pixel_source_buffer
[01:09:16] [PASSED] single_pixel_clip_rectangle
[01:09:16] [PASSED] well_known_colors
[01:09:16] [PASSED] destination_pitch
[01:09:16] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[01:09:16] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[01:09:16] [PASSED] single_pixel_source_buffer
[01:09:16] [PASSED] single_pixel_clip_rectangle
[01:09:16] [PASSED] well_known_colors
[01:09:16] [PASSED] destination_pitch
[01:09:16] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[01:09:16] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[01:09:16] [PASSED] single_pixel_source_buffer
[01:09:16] [PASSED] single_pixel_clip_rectangle
[01:09:16] [PASSED] well_known_colors
[01:09:16] [PASSED] destination_pitch
[01:09:16] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[01:09:16] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[01:09:16] [PASSED] single_pixel_source_buffer
[01:09:16] [PASSED] single_pixel_clip_rectangle
[01:09:16] [PASSED] well_known_colors
[01:09:16] [PASSED] destination_pitch
[01:09:16] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[01:09:16] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[01:09:16] [PASSED] single_pixel_source_buffer
[01:09:16] [PASSED] single_pixel_clip_rectangle
[01:09:16] [PASSED] well_known_colors
[01:09:16] [PASSED] destination_pitch
[01:09:16] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[01:09:16] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[01:09:16] [PASSED] single_pixel_source_buffer
[01:09:16] [PASSED] single_pixel_clip_rectangle
[01:09:16] [PASSED] well_known_colors
[01:09:16] [PASSED] destination_pitch
[01:09:16] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[01:09:16] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[01:09:16] [PASSED] single_pixel_source_buffer
[01:09:16] [PASSED] single_pixel_clip_rectangle
[01:09:16] [PASSED] well_known_colors
[01:09:16] [PASSED] destination_pitch
[01:09:16] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[01:09:16] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[01:09:16] [PASSED] single_pixel_source_buffer
[01:09:16] [PASSED] single_pixel_clip_rectangle
[01:09:16] [PASSED] well_known_colors
[01:09:16] [PASSED] destination_pitch
[01:09:16] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[01:09:16] ============== drm_test_fb_xrgb8888_to_mono ===============
[01:09:16] [PASSED] single_pixel_source_buffer
[01:09:16] [PASSED] single_pixel_clip_rectangle
[01:09:16] [PASSED] well_known_colors
[01:09:16] [PASSED] destination_pitch
[01:09:16] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[01:09:16] ==================== drm_test_fb_swab =====================
[01:09:16] [PASSED] single_pixel_source_buffer
[01:09:16] [PASSED] single_pixel_clip_rectangle
[01:09:16] [PASSED] well_known_colors
[01:09:16] [PASSED] destination_pitch
[01:09:16] ================ [PASSED] drm_test_fb_swab =================
[01:09:16] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[01:09:16] [PASSED] single_pixel_source_buffer
[01:09:16] [PASSED] single_pixel_clip_rectangle
[01:09:16] [PASSED] well_known_colors
[01:09:16] [PASSED] destination_pitch
[01:09:16] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[01:09:16] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[01:09:16] [PASSED] single_pixel_source_buffer
[01:09:16] [PASSED] single_pixel_clip_rectangle
[01:09:16] [PASSED] well_known_colors
[01:09:16] [PASSED] destination_pitch
[01:09:16] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[01:09:16] ================= drm_test_fb_clip_offset =================
[01:09:16] [PASSED] pass through
[01:09:16] [PASSED] horizontal offset
[01:09:16] [PASSED] vertical offset
[01:09:16] [PASSED] horizontal and vertical offset
[01:09:16] [PASSED] horizontal offset (custom pitch)
[01:09:16] [PASSED] vertical offset (custom pitch)
[01:09:16] [PASSED] horizontal and vertical offset (custom pitch)
[01:09:16] ============= [PASSED] drm_test_fb_clip_offset =============
[01:09:16] =================== drm_test_fb_memcpy ====================
[01:09:16] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[01:09:16] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[01:09:16] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[01:09:16] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[01:09:16] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[01:09:16] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[01:09:16] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[01:09:16] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[01:09:16] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[01:09:16] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[01:09:16] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[01:09:16] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[01:09:16] =============== [PASSED] drm_test_fb_memcpy ================
[01:09:16] ============= [PASSED] drm_format_helper_test ==============
[01:09:16] ================= drm_format (18 subtests) =================
[01:09:16] [PASSED] drm_test_format_block_width_invalid
[01:09:16] [PASSED] drm_test_format_block_width_one_plane
[01:09:16] [PASSED] drm_test_format_block_width_two_plane
[01:09:16] [PASSED] drm_test_format_block_width_three_plane
[01:09:16] [PASSED] drm_test_format_block_width_tiled
[01:09:16] [PASSED] drm_test_format_block_height_invalid
[01:09:16] [PASSED] drm_test_format_block_height_one_plane
[01:09:16] [PASSED] drm_test_format_block_height_two_plane
[01:09:16] [PASSED] drm_test_format_block_height_three_plane
[01:09:16] [PASSED] drm_test_format_block_height_tiled
[01:09:16] [PASSED] drm_test_format_min_pitch_invalid
[01:09:16] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[01:09:16] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[01:09:16] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[01:09:16] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[01:09:16] [PASSED] drm_test_format_min_pitch_two_plane
[01:09:16] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[01:09:16] [PASSED] drm_test_format_min_pitch_tiled
[01:09:16] =================== [PASSED] drm_format ====================
[01:09:16] ============== drm_framebuffer (10 subtests) ===============
[01:09:16] ========== drm_test_framebuffer_check_src_coords ==========
[01:09:16] [PASSED] Success: source fits into fb
[01:09:16] [PASSED] Fail: overflowing fb with x-axis coordinate
[01:09:16] [PASSED] Fail: overflowing fb with y-axis coordinate
[01:09:16] [PASSED] Fail: overflowing fb with source width
[01:09:16] [PASSED] Fail: overflowing fb with source height
[01:09:16] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[01:09:16] [PASSED] drm_test_framebuffer_cleanup
[01:09:16] =============== drm_test_framebuffer_create ===============
[01:09:16] [PASSED] ABGR8888 normal sizes
[01:09:16] [PASSED] ABGR8888 max sizes
[01:09:16] [PASSED] ABGR8888 pitch greater than min required
[01:09:16] [PASSED] ABGR8888 pitch less than min required
[01:09:16] [PASSED] ABGR8888 Invalid width
[01:09:16] [PASSED] ABGR8888 Invalid buffer handle
[01:09:16] [PASSED] No pixel format
[01:09:16] [PASSED] ABGR8888 Width 0
[01:09:16] [PASSED] ABGR8888 Height 0
[01:09:16] [PASSED] ABGR8888 Out of bound height * pitch combination
[01:09:16] [PASSED] ABGR8888 Large buffer offset
[01:09:16] [PASSED] ABGR8888 Buffer offset for inexistent plane
[01:09:16] [PASSED] ABGR8888 Invalid flag
[01:09:16] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[01:09:16] [PASSED] ABGR8888 Valid buffer modifier
[01:09:16] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[01:09:16] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[01:09:16] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[01:09:16] [PASSED] NV12 Normal sizes
[01:09:16] [PASSED] NV12 Max sizes
[01:09:16] [PASSED] NV12 Invalid pitch
[01:09:16] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[01:09:16] [PASSED] NV12 different modifier per-plane
[01:09:16] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[01:09:16] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[01:09:16] [PASSED] NV12 Modifier for inexistent plane
[01:09:16] [PASSED] NV12 Handle for inexistent plane
[01:09:16] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[01:09:16] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[01:09:16] [PASSED] YVU420 Normal sizes
[01:09:16] [PASSED] YVU420 Max sizes
[01:09:16] [PASSED] YVU420 Invalid pitch
[01:09:16] [PASSED] YVU420 Different pitches
[01:09:16] [PASSED] YVU420 Different buffer offsets/pitches
[01:09:16] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[01:09:16] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[01:09:16] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[01:09:16] [PASSED] YVU420 Valid modifier
[01:09:16] [PASSED] YVU420 Different modifiers per plane
[01:09:16] [PASSED] YVU420 Modifier for inexistent plane
[01:09:16] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[01:09:16] [PASSED] X0L2 Normal sizes
[01:09:16] [PASSED] X0L2 Max sizes
[01:09:16] [PASSED] X0L2 Invalid pitch
[01:09:16] [PASSED] X0L2 Pitch greater than minimum required
[01:09:16] [PASSED] X0L2 Handle for inexistent plane
[01:09:16] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[01:09:16] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[01:09:16] [PASSED] X0L2 Valid modifier
[01:09:16] [PASSED] X0L2 Modifier for inexistent plane
[01:09:16] =========== [PASSED] drm_test_framebuffer_create ===========
[01:09:16] [PASSED] drm_test_framebuffer_free
[01:09:16] [PASSED] drm_test_framebuffer_init
[01:09:16] [PASSED] drm_test_framebuffer_init_bad_format
[01:09:16] [PASSED] drm_test_framebuffer_init_dev_mismatch
[01:09:16] [PASSED] drm_test_framebuffer_lookup
[01:09:16] [PASSED] drm_test_framebuffer_lookup_inexistent
[01:09:16] [PASSED] drm_test_framebuffer_modifiers_not_supported
[01:09:16] ================= [PASSED] drm_framebuffer =================
[01:09:16] ================ drm_gem_shmem (8 subtests) ================
[01:09:16] [PASSED] drm_gem_shmem_test_obj_create
[01:09:16] [PASSED] drm_gem_shmem_test_obj_create_private
[01:09:16] [PASSED] drm_gem_shmem_test_pin_pages
[01:09:16] [PASSED] drm_gem_shmem_test_vmap
[01:09:16] [PASSED] drm_gem_shmem_test_get_pages_sgt
[01:09:16] [PASSED] drm_gem_shmem_test_get_sg_table
[01:09:16] [PASSED] drm_gem_shmem_test_madvise
[01:09:16] [PASSED] drm_gem_shmem_test_purge
[01:09:16] ================== [PASSED] drm_gem_shmem ==================
[01:09:16] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[01:09:16] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[01:09:16] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[01:09:16] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[01:09:16] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[01:09:16] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[01:09:16] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[01:09:16] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[01:09:16] [PASSED] Automatic
[01:09:16] [PASSED] Full
[01:09:16] [PASSED] Limited 16:235
[01:09:16] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[01:09:16] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[01:09:16] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[01:09:16] [PASSED] drm_test_check_disable_connector
[01:09:16] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[01:09:16] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[01:09:16] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[01:09:16] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[01:09:16] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[01:09:16] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[01:09:16] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[01:09:16] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[01:09:16] [PASSED] drm_test_check_output_bpc_dvi
[01:09:16] [PASSED] drm_test_check_output_bpc_format_vic_1
[01:09:16] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[01:09:16] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[01:09:16] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[01:09:16] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[01:09:16] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[01:09:16] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[01:09:16] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[01:09:16] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[01:09:16] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[01:09:16] [PASSED] drm_test_check_broadcast_rgb_value
[01:09:16] [PASSED] drm_test_check_bpc_8_value
[01:09:16] [PASSED] drm_test_check_bpc_10_value
[01:09:16] [PASSED] drm_test_check_bpc_12_value
[01:09:16] [PASSED] drm_test_check_format_value
[01:09:16] [PASSED] drm_test_check_tmds_char_value
[01:09:16] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[01:09:16] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[01:09:16] [PASSED] drm_test_check_mode_valid
[01:09:16] [PASSED] drm_test_check_mode_valid_reject
[01:09:16] [PASSED] drm_test_check_mode_valid_reject_rate
[01:09:16] [PASSED] drm_test_check_mode_valid_reject_max_clock
[01:09:16] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[01:09:16] ================= drm_managed (2 subtests) =================
[01:09:16] [PASSED] drm_test_managed_release_action
[01:09:16] [PASSED] drm_test_managed_run_action
[01:09:16] =================== [PASSED] drm_managed ===================
[01:09:16] =================== drm_mm (6 subtests) ====================
[01:09:16] [PASSED] drm_test_mm_init
[01:09:16] [PASSED] drm_test_mm_debug
[01:09:16] [PASSED] drm_test_mm_align32
[01:09:16] [PASSED] drm_test_mm_align64
[01:09:16] [PASSED] drm_test_mm_lowest
[01:09:16] [PASSED] drm_test_mm_highest
[01:09:16] ===================== [PASSED] drm_mm ======================
[01:09:16] ============= drm_modes_analog_tv (5 subtests) =============
[01:09:16] [PASSED] drm_test_modes_analog_tv_mono_576i
[01:09:16] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[01:09:16] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[01:09:16] [PASSED] drm_test_modes_analog_tv_pal_576i
[01:09:16] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[01:09:16] =============== [PASSED] drm_modes_analog_tv ===============
[01:09:16] ============== drm_plane_helper (2 subtests) ===============
[01:09:16] =============== drm_test_check_plane_state ================
[01:09:16] [PASSED] clipping_simple
[01:09:16] [PASSED] clipping_rotate_reflect
[01:09:16] [PASSED] positioning_simple
[01:09:16] [PASSED] upscaling
[01:09:16] [PASSED] downscaling
[01:09:16] [PASSED] rounding1
[01:09:16] [PASSED] rounding2
[01:09:16] [PASSED] rounding3
[01:09:16] [PASSED] rounding4
[01:09:16] =========== [PASSED] drm_test_check_plane_state ============
[01:09:16] =========== drm_test_check_invalid_plane_state ============
[01:09:16] [PASSED] positioning_invalid
[01:09:16] [PASSED] upscaling_invalid
[01:09:16] [PASSED] downscaling_invalid
[01:09:16] ======= [PASSED] drm_test_check_invalid_plane_state ========
[01:09:16] ================ [PASSED] drm_plane_helper =================
[01:09:16] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[01:09:16] ====== drm_test_connector_helper_tv_get_modes_check =======
[01:09:16] [PASSED] None
[01:09:16] [PASSED] PAL
[01:09:16] [PASSED] NTSC
[01:09:16] [PASSED] Both, NTSC Default
[01:09:16] [PASSED] Both, PAL Default
[01:09:16] [PASSED] Both, NTSC Default, with PAL on command-line
[01:09:16] [PASSED] Both, PAL Default, with NTSC on command-line
[01:09:16] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[01:09:16] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[01:09:16] ================== drm_rect (9 subtests) ===================
[01:09:16] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[01:09:16] [PASSED] drm_test_rect_clip_scaled_not_clipped
[01:09:16] [PASSED] drm_test_rect_clip_scaled_clipped
[01:09:16] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[01:09:16] ================= drm_test_rect_intersect =================
[01:09:16] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[01:09:16] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[01:09:16] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[01:09:16] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[01:09:16] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[01:09:16] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[01:09:16] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[01:09:16] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[01:09:16] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[01:09:16] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[01:09:16] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[01:09:16] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[01:09:16] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[01:09:16] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[01:09:16] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[01:09:16] ============= [PASSED] drm_test_rect_intersect =============
[01:09:16] ================ drm_test_rect_calc_hscale ================
[01:09:16] [PASSED] normal use
[01:09:16] [PASSED] out of max range
[01:09:16] [PASSED] out of min range
[01:09:16] [PASSED] zero dst
[01:09:16] [PASSED] negative src
[01:09:16] [PASSED] negative dst
[01:09:16] ============ [PASSED] drm_test_rect_calc_hscale ============
[01:09:16] ================ drm_test_rect_calc_vscale ================
[01:09:16] [PASSED] normal use
[01:09:16] [PASSED] out of max range
[01:09:16] [PASSED] out of min range
[01:09:16] [PASSED] zero dst
[01:09:16] [PASSED] negative src
[01:09:16] [PASSED] negative dst
[01:09:16] ============ [PASSED] drm_test_rect_calc_vscale ============
[01:09:16] ================== drm_test_rect_rotate ===================
[01:09:16] [PASSED] reflect-x
[01:09:16] [PASSED] reflect-y
[01:09:16] [PASSED] rotate-0
[01:09:16] [PASSED] rotate-90
[01:09:16] [PASSED] rotate-180
[01:09:16] [PASSED] rotate-270
stty: 'standard input': Inappropriate ioctl for device
[01:09:16] ============== [PASSED] drm_test_rect_rotate ===============
[01:09:16] ================ drm_test_rect_rotate_inv =================
[01:09:16] [PASSED] reflect-x
[01:09:16] [PASSED] reflect-y
[01:09:16] [PASSED] rotate-0
[01:09:16] [PASSED] rotate-90
[01:09:16] [PASSED] rotate-180
[01:09:16] [PASSED] rotate-270
[01:09:16] ============ [PASSED] drm_test_rect_rotate_inv =============
[01:09:16] ==================== [PASSED] drm_rect =====================
[01:09:16] ============ drm_sysfb_modeset_test (1 subtest) ============
[01:09:16] ============ drm_test_sysfb_build_fourcc_list =============
[01:09:16] [PASSED] no native formats
[01:09:16] [PASSED] XRGB8888 as native format
[01:09:16] [PASSED] remove duplicates
[01:09:16] [PASSED] convert alpha formats
[01:09:16] [PASSED] random formats
[01:09:16] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[01:09:16] ============= [PASSED] drm_sysfb_modeset_test ==============
[01:09:16] ============================================================
[01:09:16] Testing complete. Ran 616 tests: passed: 616
[01:09:16] Elapsed time: 24.749s total, 1.712s configuring, 22.868s building, 0.148s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[01:09:16] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[01:09:18] 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
[01:09:26] Starting KUnit Kernel (1/1)...
[01:09:26] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[01:09:26] ================= ttm_device (5 subtests) ==================
[01:09:26] [PASSED] ttm_device_init_basic
[01:09:26] [PASSED] ttm_device_init_multiple
[01:09:26] [PASSED] ttm_device_fini_basic
[01:09:26] [PASSED] ttm_device_init_no_vma_man
[01:09:26] ================== ttm_device_init_pools ==================
[01:09:26] [PASSED] No DMA allocations, no DMA32 required
[01:09:26] [PASSED] DMA allocations, DMA32 required
[01:09:26] [PASSED] No DMA allocations, DMA32 required
[01:09:26] [PASSED] DMA allocations, no DMA32 required
[01:09:26] ============== [PASSED] ttm_device_init_pools ==============
[01:09:26] =================== [PASSED] ttm_device ====================
[01:09:26] ================== ttm_pool (8 subtests) ===================
[01:09:26] ================== ttm_pool_alloc_basic ===================
[01:09:26] [PASSED] One page
[01:09:26] [PASSED] More than one page
[01:09:26] [PASSED] Above the allocation limit
[01:09:26] [PASSED] One page, with coherent DMA mappings enabled
[01:09:26] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[01:09:26] ============== [PASSED] ttm_pool_alloc_basic ===============
[01:09:26] ============== ttm_pool_alloc_basic_dma_addr ==============
[01:09:26] [PASSED] One page
[01:09:26] [PASSED] More than one page
[01:09:26] [PASSED] Above the allocation limit
[01:09:26] [PASSED] One page, with coherent DMA mappings enabled
[01:09:26] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[01:09:26] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[01:09:26] [PASSED] ttm_pool_alloc_order_caching_match
[01:09:26] [PASSED] ttm_pool_alloc_caching_mismatch
[01:09:26] [PASSED] ttm_pool_alloc_order_mismatch
[01:09:26] [PASSED] ttm_pool_free_dma_alloc
[01:09:26] [PASSED] ttm_pool_free_no_dma_alloc
[01:09:26] [PASSED] ttm_pool_fini_basic
[01:09:26] ==================== [PASSED] ttm_pool =====================
[01:09:26] ================ ttm_resource (8 subtests) =================
[01:09:26] ================= ttm_resource_init_basic =================
[01:09:26] [PASSED] Init resource in TTM_PL_SYSTEM
[01:09:26] [PASSED] Init resource in TTM_PL_VRAM
[01:09:26] [PASSED] Init resource in a private placement
[01:09:26] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[01:09:26] ============= [PASSED] ttm_resource_init_basic =============
[01:09:26] [PASSED] ttm_resource_init_pinned
[01:09:26] [PASSED] ttm_resource_fini_basic
[01:09:26] [PASSED] ttm_resource_manager_init_basic
[01:09:26] [PASSED] ttm_resource_manager_usage_basic
[01:09:26] [PASSED] ttm_resource_manager_set_used_basic
[01:09:26] [PASSED] ttm_sys_man_alloc_basic
[01:09:26] [PASSED] ttm_sys_man_free_basic
[01:09:26] ================== [PASSED] ttm_resource ===================
[01:09:26] =================== ttm_tt (15 subtests) ===================
[01:09:26] ==================== ttm_tt_init_basic ====================
[01:09:26] [PASSED] Page-aligned size
[01:09:26] [PASSED] Extra pages requested
[01:09:26] ================ [PASSED] ttm_tt_init_basic ================
[01:09:26] [PASSED] ttm_tt_init_misaligned
[01:09:26] [PASSED] ttm_tt_fini_basic
[01:09:26] [PASSED] ttm_tt_fini_sg
[01:09:26] [PASSED] ttm_tt_fini_shmem
[01:09:26] [PASSED] ttm_tt_create_basic
[01:09:26] [PASSED] ttm_tt_create_invalid_bo_type
[01:09:26] [PASSED] ttm_tt_create_ttm_exists
[01:09:26] [PASSED] ttm_tt_create_failed
[01:09:26] [PASSED] ttm_tt_destroy_basic
[01:09:26] [PASSED] ttm_tt_populate_null_ttm
[01:09:26] [PASSED] ttm_tt_populate_populated_ttm
[01:09:26] [PASSED] ttm_tt_unpopulate_basic
[01:09:26] [PASSED] ttm_tt_unpopulate_empty_ttm
[01:09:26] [PASSED] ttm_tt_swapin_basic
[01:09:26] ===================== [PASSED] ttm_tt ======================
[01:09:26] =================== ttm_bo (14 subtests) ===================
[01:09:26] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[01:09:26] [PASSED] Cannot be interrupted and sleeps
[01:09:26] [PASSED] Cannot be interrupted, locks straight away
[01:09:26] [PASSED] Can be interrupted, sleeps
[01:09:26] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[01:09:26] [PASSED] ttm_bo_reserve_locked_no_sleep
[01:09:26] [PASSED] ttm_bo_reserve_no_wait_ticket
[01:09:26] [PASSED] ttm_bo_reserve_double_resv
[01:09:26] [PASSED] ttm_bo_reserve_interrupted
[01:09:26] [PASSED] ttm_bo_reserve_deadlock
[01:09:26] [PASSED] ttm_bo_unreserve_basic
[01:09:26] [PASSED] ttm_bo_unreserve_pinned
[01:09:26] [PASSED] ttm_bo_unreserve_bulk
[01:09:26] [PASSED] ttm_bo_put_basic
[01:09:26] [PASSED] ttm_bo_put_shared_resv
[01:09:26] [PASSED] ttm_bo_pin_basic
[01:09:26] [PASSED] ttm_bo_pin_unpin_resource
[01:09:26] [PASSED] ttm_bo_multiple_pin_one_unpin
[01:09:26] ===================== [PASSED] ttm_bo ======================
[01:09:26] ============== ttm_bo_validate (21 subtests) ===============
[01:09:26] ============== ttm_bo_init_reserved_sys_man ===============
[01:09:26] [PASSED] Buffer object for userspace
[01:09:26] [PASSED] Kernel buffer object
[01:09:26] [PASSED] Shared buffer object
[01:09:26] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[01:09:26] ============== ttm_bo_init_reserved_mock_man ==============
[01:09:26] [PASSED] Buffer object for userspace
[01:09:26] [PASSED] Kernel buffer object
[01:09:26] [PASSED] Shared buffer object
[01:09:26] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[01:09:26] [PASSED] ttm_bo_init_reserved_resv
[01:09:26] ================== ttm_bo_validate_basic ==================
[01:09:26] [PASSED] Buffer object for userspace
[01:09:26] [PASSED] Kernel buffer object
[01:09:26] [PASSED] Shared buffer object
[01:09:26] ============== [PASSED] ttm_bo_validate_basic ==============
[01:09:26] [PASSED] ttm_bo_validate_invalid_placement
[01:09:26] ============= ttm_bo_validate_same_placement ==============
[01:09:26] [PASSED] System manager
[01:09:26] [PASSED] VRAM manager
[01:09:26] ========= [PASSED] ttm_bo_validate_same_placement ==========
[01:09:26] [PASSED] ttm_bo_validate_failed_alloc
[01:09:26] [PASSED] ttm_bo_validate_pinned
[01:09:26] [PASSED] ttm_bo_validate_busy_placement
[01:09:26] ================ ttm_bo_validate_multihop =================
[01:09:26] [PASSED] Buffer object for userspace
[01:09:26] [PASSED] Kernel buffer object
[01:09:26] [PASSED] Shared buffer object
[01:09:26] ============ [PASSED] ttm_bo_validate_multihop =============
[01:09:26] ========== ttm_bo_validate_no_placement_signaled ==========
[01:09:26] [PASSED] Buffer object in system domain, no page vector
[01:09:26] [PASSED] Buffer object in system domain with an existing page vector
[01:09:26] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[01:09:26] ======== ttm_bo_validate_no_placement_not_signaled ========
[01:09:26] [PASSED] Buffer object for userspace
[01:09:26] [PASSED] Kernel buffer object
[01:09:26] [PASSED] Shared buffer object
[01:09:26] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[01:09:26] [PASSED] ttm_bo_validate_move_fence_signaled
[01:09:26] ========= ttm_bo_validate_move_fence_not_signaled =========
[01:09:26] [PASSED] Waits for GPU
[01:09:26] [PASSED] Tries to lock straight away
[01:09:26] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[01:09:26] [PASSED] ttm_bo_validate_happy_evict
[01:09:26] [PASSED] ttm_bo_validate_all_pinned_evict
[01:09:26] [PASSED] ttm_bo_validate_allowed_only_evict
[01:09:26] [PASSED] ttm_bo_validate_deleted_evict
[01:09:26] [PASSED] ttm_bo_validate_busy_domain_evict
[01:09:26] [PASSED] ttm_bo_validate_evict_gutting
[01:09:26] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[01:09:26] ================= [PASSED] ttm_bo_validate =================
[01:09:26] ============================================================
[01:09:26] Testing complete. Ran 101 tests: passed: 101
[01:09:26] Elapsed time: 10.006s total, 1.736s configuring, 8.053s building, 0.188s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 26+ messages in thread* ✓ Xe.CI.BAT: success for Optimize vrr.guardband and fix LRR (rev10)
2025-09-07 7:32 [PATCH 00/14] Optimize vrr.guardband and fix LRR Ankit Nautiyal
` (16 preceding siblings ...)
2025-09-09 1:09 ` ✓ CI.KUnit: success for Optimize vrr.guardband and fix LRR (rev10) Patchwork
@ 2025-09-09 1:42 ` Patchwork
2025-09-09 8:02 ` ✗ Xe.CI.Full: failure " Patchwork
18 siblings, 0 replies; 26+ messages in thread
From: Patchwork @ 2025-09-09 1:42 UTC (permalink / raw)
To: Ankit Nautiyal; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1356 bytes --]
== Series Details ==
Series: Optimize vrr.guardband and fix LRR (rev10)
URL : https://patchwork.freedesktop.org/series/151244/
State : success
== Summary ==
CI Bug Log - changes from xe-3705-c45e9e5119ced7fe5cb46837ed90c8dde4c69406_BAT -> xe-pw-151244v10_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (11 -> 11)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-151244v10_BAT that come from known issues:
### IGT changes ###
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#5783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5783
[Intel XE#5894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5894
Build changes
-------------
* Linux: xe-3705-c45e9e5119ced7fe5cb46837ed90c8dde4c69406 -> xe-pw-151244v10
IGT_8526: 13cd231d5da440137bc5d1c26fd3f7c170ace253 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-3705-c45e9e5119ced7fe5cb46837ed90c8dde4c69406: c45e9e5119ced7fe5cb46837ed90c8dde4c69406
xe-pw-151244v10: 151244v10
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/index.html
[-- Attachment #2: Type: text/html, Size: 1758 bytes --]
^ permalink raw reply [flat|nested] 26+ messages in thread* ✗ Xe.CI.Full: failure for Optimize vrr.guardband and fix LRR (rev10)
2025-09-07 7:32 [PATCH 00/14] Optimize vrr.guardband and fix LRR Ankit Nautiyal
` (17 preceding siblings ...)
2025-09-09 1:42 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-09-09 8:02 ` Patchwork
18 siblings, 0 replies; 26+ messages in thread
From: Patchwork @ 2025-09-09 8:02 UTC (permalink / raw)
To: Nautiyal, Ankit K; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 39826 bytes --]
== Series Details ==
Series: Optimize vrr.guardband and fix LRR (rev10)
URL : https://patchwork.freedesktop.org/series/151244/
State : failure
== Summary ==
CI Bug Log - changes from xe-3705-c45e9e5119ced7fe5cb46837ed90c8dde4c69406_FULL -> xe-pw-151244v10_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-151244v10_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-151244v10_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-151244v10_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][1]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-dg2-464/igt@xe_pm@s4-vm-bind-unbind-all.html
Known issues
------------
Here are the changes found in xe-pw-151244v10_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][2] ([Intel XE#316])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-dg2-464/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#2328])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-bmg-4/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-dg2-set2: NOTRUN -> [SKIP][4] ([Intel XE#1124])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-dg2-464/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#1124]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-bmg-6/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
* igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#2314] / [Intel XE#2894])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-bmg-6/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-3-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#367])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-bmg-6/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][8] ([Intel XE#787]) +132 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-dg2-436/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2887]) +3 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-bmg-4/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-dp-2:
- shard-bmg: [PASS][10] -> [FAIL][11] ([Intel XE#5376]) +2 other tests fail
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3705-c45e9e5119ced7fe5cb46837ed90c8dde4c69406/shard-bmg-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-dp-2.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-dp-2.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-d-dp-2:
- shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#455] / [Intel XE#787]) +21 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-d-dp-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][13] ([Intel XE#2705] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [PASS][14] -> [INCOMPLETE][15] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) +1 other test incomplete
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3705-c45e9e5119ced7fe5cb46837ed90c8dde4c69406/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_chamelium_hpd@hdmi-hpd-fast:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2252]) +2 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-bmg-4/igt@kms_chamelium_hpd@hdmi-hpd-fast.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#373])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-dg2-434/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_content_protection@atomic@pipe-a-dp-2:
- shard-dg2-set2: NOTRUN -> [FAIL][18] ([Intel XE#1178])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-dg2-432/igt@kms_content_protection@atomic@pipe-a-dp-2.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#307])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-dg2-464/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@uevent:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2341])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-bmg-6/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#455])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-bmg: [PASS][22] -> [SKIP][23] ([Intel XE#2291]) +2 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3705-c45e9e5119ced7fe5cb46837ed90c8dde4c69406/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@single-move@pipe-c:
- shard-dg2-set2: [PASS][24] -> [DMESG-WARN][25] ([Intel XE#5666]) +1 other test dmesg-warn
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3705-c45e9e5119ced7fe5cb46837ed90c8dde4c69406/shard-dg2-434/igt@kms_cursor_legacy@single-move@pipe-c.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-dg2-435/igt@kms_cursor_legacy@single-move@pipe-c.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-bmg: [PASS][26] -> [SKIP][27] ([Intel XE#4354])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3705-c45e9e5119ced7fe5cb46837ed90c8dde4c69406/shard-bmg-4/igt@kms_dp_link_training@non-uhbr-sst.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-bmg-6/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2244])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-bmg-4/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-bmg: [PASS][29] -> [SKIP][30] ([Intel XE#2316]) +2 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3705-c45e9e5119ced7fe5cb46837ed90c8dde4c69406/shard-bmg-4/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip@basic-plain-flip@b-hdmi-a1:
- shard-adlp: [PASS][31] -> [DMESG-WARN][32] ([Intel XE#4543]) +2 other tests dmesg-warn
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3705-c45e9e5119ced7fe5cb46837ed90c8dde4c69406/shard-adlp-2/igt@kms_flip@basic-plain-flip@b-hdmi-a1.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-adlp-1/igt@kms_flip@basic-plain-flip@b-hdmi-a1.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [PASS][33] -> [FAIL][34] ([Intel XE#301])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3705-c45e9e5119ced7fe5cb46837ed90c8dde4c69406/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_flip@flip-vs-suspend:
- shard-adlp: [PASS][35] -> [DMESG-WARN][36] ([Intel XE#2953] / [Intel XE#4173]) +3 other tests dmesg-warn
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3705-c45e9e5119ced7fe5cb46837ed90c8dde4c69406/shard-adlp-6/igt@kms_flip@flip-vs-suspend.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-adlp-1/igt@kms_flip@flip-vs-suspend.html
- shard-bmg: [PASS][37] -> [INCOMPLETE][38] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3705-c45e9e5119ced7fe5cb46837ed90c8dde4c69406/shard-bmg-8/igt@kms_flip@flip-vs-suspend.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-bmg-2/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@c-dp4:
- shard-dg2-set2: [PASS][39] -> [INCOMPLETE][40] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3705-c45e9e5119ced7fe5cb46837ed90c8dde4c69406/shard-dg2-436/igt@kms_flip@flip-vs-suspend@c-dp4.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-dg2-466/igt@kms_flip@flip-vs-suspend@c-dp4.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2293] / [Intel XE#2380])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2293])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-slowdraw:
- shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#651]) +3 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-slowdraw.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#5390]) +2 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-rte:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#5427])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-rte.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2311]) +7 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2312]) +4 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2313]) +5 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#653]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#346])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-bmg-6/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2685] / [Intel XE#3307])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-bmg-6/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2763]) +4 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-bmg-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#1406] / [Intel XE#1489])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-dg2-464/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#1406] / [Intel XE#1489]) +2 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-bmg-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr@fbc-pr-dpms:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-bmg-6/igt@kms_psr@fbc-pr-dpms.html
* igt@kms_psr@fbc-psr2-primary-render:
- shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-dg2-464/igt@kms_psr@fbc-psr2-primary-render.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#3414] / [Intel XE#3904])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-bmg-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2413])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-bmg-4/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@xe_eudebug@vm-bind-clear:
- shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#4837]) +2 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-dg2-464/igt@xe_eudebug@vm-bind-clear.html
* igt@xe_eudebug_online@breakpoint-many-sessions-tiles:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#4837]) +3 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-bmg-6/igt@xe_eudebug_online@breakpoint-many-sessions-tiles.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind:
- shard-dg2-set2: [PASS][61] -> [SKIP][62] ([Intel XE#1392]) +3 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3705-c45e9e5119ced7fe5cb46837ed90c8dde4c69406/shard-dg2-433/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind.html
* igt@xe_exec_fault_mode@once-rebind:
- shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#288]) +4 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-dg2-434/igt@xe_exec_fault_mode@once-rebind.html
* igt@xe_exec_reset@parallel-gt-reset:
- shard-adlp: [PASS][64] -> [DMESG-WARN][65] ([Intel XE#3876])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3705-c45e9e5119ced7fe5cb46837ed90c8dde4c69406/shard-adlp-9/igt@xe_exec_reset@parallel-gt-reset.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-adlp-1/igt@xe_exec_reset@parallel-gt-reset.html
* igt@xe_exec_system_allocator@threads-many-mmap-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#4943]) +6 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-bmg-4/igt@xe_exec_system_allocator@threads-many-mmap-huge-nomemset.html
* igt@xe_exec_system_allocator@threads-many-mmap-remap-ro:
- shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#4915]) +34 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-dg2-464/igt@xe_exec_system_allocator@threads-many-mmap-remap-ro.html
* igt@xe_exec_threads@threads-bal-mixed-shared-vm-userptr-invalidate-race:
- shard-adlp: [PASS][68] -> [DMESG-FAIL][69] ([Intel XE#3876]) +2 other tests dmesg-fail
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3705-c45e9e5119ced7fe5cb46837ed90c8dde4c69406/shard-adlp-9/igt@xe_exec_threads@threads-bal-mixed-shared-vm-userptr-invalidate-race.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-adlp-1/igt@xe_exec_threads@threads-bal-mixed-shared-vm-userptr-invalidate-race.html
* igt@xe_exec_threads@threads-hang-fd-userptr-invalidate:
- shard-dg2-set2: [PASS][70] -> [DMESG-WARN][71] ([Intel XE#3876])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3705-c45e9e5119ced7fe5cb46837ed90c8dde4c69406/shard-dg2-466/igt@xe_exec_threads@threads-hang-fd-userptr-invalidate.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-dg2-464/igt@xe_exec_threads@threads-hang-fd-userptr-invalidate.html
* igt@xe_oa@oa-tlb-invalidate:
- shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#3573])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-dg2-464/igt@xe_oa@oa-tlb-invalidate.html
* igt@xe_query@multigpu-query-invalid-extension:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#944])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-bmg-4/igt@xe_query@multigpu-query-invalid-extension.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-dg2-set2: NOTRUN -> [SKIP][74] ([Intel XE#3342])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-dg2-464/igt@xe_sriov_flr@flr-vf1-clear.html
#### Possible fixes ####
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-adlp: [DMESG-FAIL][75] ([Intel XE#4543]) -> [PASS][76]
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3705-c45e9e5119ced7fe5cb46837ed90c8dde4c69406/shard-adlp-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-adlp-3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
- shard-bmg: [SKIP][77] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][78]
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3705-c45e9e5119ced7fe5cb46837ed90c8dde4c69406/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4:
- shard-dg2-set2: [INCOMPLETE][79] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) -> [PASS][80]
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3705-c45e9e5119ced7fe5cb46837ed90c8dde4c69406/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [SKIP][81] ([Intel XE#2291]) -> [PASS][82] +6 other tests pass
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3705-c45e9e5119ced7fe5cb46837ed90c8dde4c69406/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [FAIL][83] ([Intel XE#4633]) -> [PASS][84]
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3705-c45e9e5119ced7fe5cb46837ed90c8dde4c69406/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_display_modes@extended-mode-basic:
- shard-bmg: [SKIP][85] ([Intel XE#4302]) -> [PASS][86]
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3705-c45e9e5119ced7fe5cb46837ed90c8dde4c69406/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-bmg-5/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-bmg: [SKIP][87] ([Intel XE#1340]) -> [PASS][88]
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3705-c45e9e5119ced7fe5cb46837ed90c8dde4c69406/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-bmg-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_feature_discovery@display-1x:
- shard-adlp: [DMESG-WARN][89] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][90] +4 other tests pass
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3705-c45e9e5119ced7fe5cb46837ed90c8dde4c69406/shard-adlp-1/igt@kms_feature_discovery@display-1x.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-adlp-9/igt@kms_feature_discovery@display-1x.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-bmg: [SKIP][91] ([Intel XE#2316]) -> [PASS][92] +3 other tests pass
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3705-c45e9e5119ced7fe5cb46837ed90c8dde4c69406/shard-bmg-6/igt@kms_flip@2x-absolute-wf_vblank.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-bmg-5/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-rmfb:
- shard-dg2-set2: [INCOMPLETE][93] ([Intel XE#2049]) -> [PASS][94]
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3705-c45e9e5119ced7fe5cb46837ed90c8dde4c69406/shard-dg2-466/igt@kms_flip@2x-flip-vs-rmfb.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-dg2-464/igt@kms_flip@2x-flip-vs-rmfb.html
* igt@kms_flip@2x-flip-vs-rmfb@bd-hdmi-a6-dp4:
- shard-dg2-set2: [INCOMPLETE][95] ([Intel XE#2049] / [Intel XE#4842]) -> [PASS][96]
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3705-c45e9e5119ced7fe5cb46837ed90c8dde4c69406/shard-dg2-466/igt@kms_flip@2x-flip-vs-rmfb@bd-hdmi-a6-dp4.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-dg2-464/igt@kms_flip@2x-flip-vs-rmfb@bd-hdmi-a6-dp4.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1:
- shard-lnl: [FAIL][97] ([Intel XE#301]) -> [PASS][98]
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3705-c45e9e5119ced7fe5cb46837ed90c8dde4c69406/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
* igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1:
- shard-adlp: [DMESG-WARN][99] ([Intel XE#4543]) -> [PASS][100] +6 other tests pass
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3705-c45e9e5119ced7fe5cb46837ed90c8dde4c69406/shard-adlp-1/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-adlp-9/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html
* igt@kms_flip@flip-vs-rmfb-interruptible:
- shard-adlp: [DMESG-WARN][101] ([Intel XE#4543] / [Intel XE#5208]) -> [PASS][102]
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3705-c45e9e5119ced7fe5cb46837ed90c8dde4c69406/shard-adlp-9/igt@kms_flip@flip-vs-rmfb-interruptible.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-adlp-4/igt@kms_flip@flip-vs-rmfb-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: [INCOMPLETE][103] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][104] +1 other test pass
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3705-c45e9e5119ced7fe5cb46837ed90c8dde4c69406/shard-bmg-3/igt@kms_flip@flip-vs-suspend-interruptible.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-bmg-6/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-bmg: [SKIP][105] ([Intel XE#4596]) -> [PASS][106]
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3705-c45e9e5119ced7fe5cb46837ed90c8dde4c69406/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-none.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-bmg: [SKIP][107] ([Intel XE#1435]) -> [PASS][108]
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3705-c45e9e5119ced7fe5cb46837ed90c8dde4c69406/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-bmg-5/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind:
- shard-dg2-set2: [SKIP][109] ([Intel XE#1392]) -> [PASS][110] +3 other tests pass
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3705-c45e9e5119ced7fe5cb46837ed90c8dde4c69406/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-dg2-436/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind.html
* igt@xe_exec_reset@cm-close-fd:
- shard-adlp: [DMESG-WARN][111] ([Intel XE#3868]) -> [PASS][112]
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3705-c45e9e5119ced7fe5cb46837ed90c8dde4c69406/shard-adlp-3/igt@xe_exec_reset@cm-close-fd.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-adlp-6/igt@xe_exec_reset@cm-close-fd.html
* {igt@xe_pmu@fn-engine-activity-sched-if-idle@engine-drm_xe_engine_class_video_enhance1}:
- shard-bmg: [ABORT][113] ([Intel XE#3970]) -> [PASS][114] +1 other test pass
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3705-c45e9e5119ced7fe5cb46837ed90c8dde4c69406/shard-bmg-1/igt@xe_pmu@fn-engine-activity-sched-if-idle@engine-drm_xe_engine_class_video_enhance1.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-bmg-4/igt@xe_pmu@fn-engine-activity-sched-if-idle@engine-drm_xe_engine_class_video_enhance1.html
#### Warnings ####
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [INCOMPLETE][115] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) -> [INCOMPLETE][116] ([Intel XE#2705] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3705-c45e9e5119ced7fe5cb46837ed90c8dde4c69406/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw:
- shard-bmg: [SKIP][117] ([Intel XE#2312]) -> [SKIP][118] ([Intel XE#2311]) +15 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3705-c45e9e5119ced7fe5cb46837ed90c8dde4c69406/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][119] ([Intel XE#5390]) -> [SKIP][120] ([Intel XE#2312]) +6 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3705-c45e9e5119ced7fe5cb46837ed90c8dde4c69406/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][121] ([Intel XE#2312]) -> [SKIP][122] ([Intel XE#5390]) +5 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3705-c45e9e5119ced7fe5cb46837ed90c8dde4c69406/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move:
- shard-bmg: [SKIP][123] ([Intel XE#2311]) -> [SKIP][124] ([Intel XE#2312]) +8 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3705-c45e9e5119ced7fe5cb46837ed90c8dde4c69406/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
- shard-bmg: [SKIP][125] ([Intel XE#2313]) -> [SKIP][126] ([Intel XE#2312]) +8 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3705-c45e9e5119ced7fe5cb46837ed90c8dde4c69406/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][127] ([Intel XE#2312]) -> [SKIP][128] ([Intel XE#2313]) +15 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3705-c45e9e5119ced7fe5cb46837ed90c8dde4c69406/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-bmg: [SKIP][129] ([Intel XE#4596]) -> [SKIP][130] ([Intel XE#5021])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3705-c45e9e5119ced7fe5cb46837ed90c8dde4c69406/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-y.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-adlp: [SKIP][131] ([Intel XE#836]) -> [ABORT][132] ([Intel XE#5545])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3705-c45e9e5119ced7fe5cb46837ed90c8dde4c69406/shard-adlp-9/igt@kms_pm_rpm@modeset-non-lpsp.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-adlp-1/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
- shard-dg2-set2: [DMESG-WARN][133] ([Intel XE#5893]) -> [DMESG-WARN][134] ([Intel XE#6085])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3705-c45e9e5119ced7fe5cb46837ed90c8dde4c69406/shard-dg2-466/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/shard-dg2-464/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2685]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2685
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[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#3868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868
[Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970
[Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4842]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4842
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5208
[Intel XE#5376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5376
[Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
[Intel XE#5427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5427
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5666]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5666
[Intel XE#5893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5893
[Intel XE#6085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6085
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* Linux: xe-3705-c45e9e5119ced7fe5cb46837ed90c8dde4c69406 -> xe-pw-151244v10
IGT_8526: 13cd231d5da440137bc5d1c26fd3f7c170ace253 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-3705-c45e9e5119ced7fe5cb46837ed90c8dde4c69406: c45e9e5119ced7fe5cb46837ed90c8dde4c69406
xe-pw-151244v10: 151244v10
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-151244v10/index.html
[-- Attachment #2: Type: text/html, Size: 46939 bytes --]
^ permalink raw reply [flat|nested] 26+ messages in thread