* [PATCH] drm/i915/wm: reduce stack usage in skl_print_wm_changes()
@ 2025-06-20 11:37 Arnd Bergmann
2025-06-20 11:43 ` ✗ CI.checkpatch: warning for " Patchwork
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Arnd Bergmann @ 2025-06-20 11:37 UTC (permalink / raw)
To: Jani Nikula, Rodrigo Vivi, Joonas Lahtinen, Tvrtko Ursulin,
David Airlie, Simona Vetter
Cc: Arnd Bergmann, Ville Syrjälä, Vinod Govindapillai,
Suraj Kandpal, Mitul Golani, Stanislav Lisovskiy, intel-gfx,
intel-xe, dri-devel, linux-kernel
From: Arnd Bergmann <arnd@arndb.de>
When KMSAN is enabled, this function causes has a rather excessive stack usage:
drivers/gpu/drm/i915/display/skl_watermark.c:2977:1: error: stack frame size (1432) exceeds limit (1408) in 'skl_compute_wm' [-Werror,-Wframe-larger-than]
This is apparently all caused by the varargs calls to drm_dbg_kms(). Inlining
this into skl_compute_wm() means that any function called by skl_compute_wm()
has its own stack on top of that.
Move the worst bit into a separate function marked as noinline_for_stack to
limit that to the one code path that actually needs it.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
---
drivers/gpu/drm/i915/display/skl_watermark.c | 176 ++++++++++---------
1 file changed, 92 insertions(+), 84 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/skl_watermark.c b/drivers/gpu/drm/i915/display/skl_watermark.c
index 2c2371574d6f..b7c92c718c8f 100644
--- a/drivers/gpu/drm/i915/display/skl_watermark.c
+++ b/drivers/gpu/drm/i915/display/skl_watermark.c
@@ -2680,6 +2680,97 @@ static char enast(bool enable)
return enable ? '*' : ' ';
}
+static noinline_for_stack void
+skl_print_plane_changes(struct intel_display *display,
+ struct intel_plane *plane,
+ const struct skl_plane_wm *old_wm,
+ const struct skl_plane_wm *new_wm)
+{
+ drm_dbg_kms(display->drm,
+ "[PLANE:%d:%s] level %cwm0,%cwm1,%cwm2,%cwm3,%cwm4,%cwm5,%cwm6,%cwm7,%ctwm,%cswm,%cstwm"
+ " -> %cwm0,%cwm1,%cwm2,%cwm3,%cwm4,%cwm5,%cwm6,%cwm7,%ctwm,%cswm,%cstwm\n",
+ plane->base.base.id, plane->base.name,
+ enast(old_wm->wm[0].enable), enast(old_wm->wm[1].enable),
+ enast(old_wm->wm[2].enable), enast(old_wm->wm[3].enable),
+ enast(old_wm->wm[4].enable), enast(old_wm->wm[5].enable),
+ enast(old_wm->wm[6].enable), enast(old_wm->wm[7].enable),
+ enast(old_wm->trans_wm.enable),
+ enast(old_wm->sagv.wm0.enable),
+ enast(old_wm->sagv.trans_wm.enable),
+ enast(new_wm->wm[0].enable), enast(new_wm->wm[1].enable),
+ enast(new_wm->wm[2].enable), enast(new_wm->wm[3].enable),
+ enast(new_wm->wm[4].enable), enast(new_wm->wm[5].enable),
+ enast(new_wm->wm[6].enable), enast(new_wm->wm[7].enable),
+ enast(new_wm->trans_wm.enable),
+ enast(new_wm->sagv.wm0.enable),
+ enast(new_wm->sagv.trans_wm.enable));
+
+ drm_dbg_kms(display->drm,
+ "[PLANE:%d:%s] lines %c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%4d"
+ " -> %c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%4d\n",
+ plane->base.base.id, plane->base.name,
+ enast(old_wm->wm[0].ignore_lines), old_wm->wm[0].lines,
+ enast(old_wm->wm[1].ignore_lines), old_wm->wm[1].lines,
+ enast(old_wm->wm[2].ignore_lines), old_wm->wm[2].lines,
+ enast(old_wm->wm[3].ignore_lines), old_wm->wm[3].lines,
+ enast(old_wm->wm[4].ignore_lines), old_wm->wm[4].lines,
+ enast(old_wm->wm[5].ignore_lines), old_wm->wm[5].lines,
+ enast(old_wm->wm[6].ignore_lines), old_wm->wm[6].lines,
+ enast(old_wm->wm[7].ignore_lines), old_wm->wm[7].lines,
+ enast(old_wm->trans_wm.ignore_lines), old_wm->trans_wm.lines,
+ enast(old_wm->sagv.wm0.ignore_lines), old_wm->sagv.wm0.lines,
+ enast(old_wm->sagv.trans_wm.ignore_lines), old_wm->sagv.trans_wm.lines,
+ enast(new_wm->wm[0].ignore_lines), new_wm->wm[0].lines,
+ enast(new_wm->wm[1].ignore_lines), new_wm->wm[1].lines,
+ enast(new_wm->wm[2].ignore_lines), new_wm->wm[2].lines,
+ enast(new_wm->wm[3].ignore_lines), new_wm->wm[3].lines,
+ enast(new_wm->wm[4].ignore_lines), new_wm->wm[4].lines,
+ enast(new_wm->wm[5].ignore_lines), new_wm->wm[5].lines,
+ enast(new_wm->wm[6].ignore_lines), new_wm->wm[6].lines,
+ enast(new_wm->wm[7].ignore_lines), new_wm->wm[7].lines,
+ enast(new_wm->trans_wm.ignore_lines), new_wm->trans_wm.lines,
+ enast(new_wm->sagv.wm0.ignore_lines), new_wm->sagv.wm0.lines,
+ enast(new_wm->sagv.trans_wm.ignore_lines), new_wm->sagv.trans_wm.lines);
+
+ drm_dbg_kms(display->drm,
+ "[PLANE:%d:%s] blocks %4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%5d"
+ " -> %4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%5d\n",
+ plane->base.base.id, plane->base.name,
+ old_wm->wm[0].blocks, old_wm->wm[1].blocks,
+ old_wm->wm[2].blocks, old_wm->wm[3].blocks,
+ old_wm->wm[4].blocks, old_wm->wm[5].blocks,
+ old_wm->wm[6].blocks, old_wm->wm[7].blocks,
+ old_wm->trans_wm.blocks,
+ old_wm->sagv.wm0.blocks,
+ old_wm->sagv.trans_wm.blocks,
+ new_wm->wm[0].blocks, new_wm->wm[1].blocks,
+ new_wm->wm[2].blocks, new_wm->wm[3].blocks,
+ new_wm->wm[4].blocks, new_wm->wm[5].blocks,
+ new_wm->wm[6].blocks, new_wm->wm[7].blocks,
+ new_wm->trans_wm.blocks,
+ new_wm->sagv.wm0.blocks,
+ new_wm->sagv.trans_wm.blocks);
+
+ drm_dbg_kms(display->drm,
+ "[PLANE:%d:%s] min_ddb %4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%5d"
+ " -> %4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%5d\n",
+ plane->base.base.id, plane->base.name,
+ old_wm->wm[0].min_ddb_alloc, old_wm->wm[1].min_ddb_alloc,
+ old_wm->wm[2].min_ddb_alloc, old_wm->wm[3].min_ddb_alloc,
+ old_wm->wm[4].min_ddb_alloc, old_wm->wm[5].min_ddb_alloc,
+ old_wm->wm[6].min_ddb_alloc, old_wm->wm[7].min_ddb_alloc,
+ old_wm->trans_wm.min_ddb_alloc,
+ old_wm->sagv.wm0.min_ddb_alloc,
+ old_wm->sagv.trans_wm.min_ddb_alloc,
+ new_wm->wm[0].min_ddb_alloc, new_wm->wm[1].min_ddb_alloc,
+ new_wm->wm[2].min_ddb_alloc, new_wm->wm[3].min_ddb_alloc,
+ new_wm->wm[4].min_ddb_alloc, new_wm->wm[5].min_ddb_alloc,
+ new_wm->wm[6].min_ddb_alloc, new_wm->wm[7].min_ddb_alloc,
+ new_wm->trans_wm.min_ddb_alloc,
+ new_wm->sagv.wm0.min_ddb_alloc,
+ new_wm->sagv.trans_wm.min_ddb_alloc);
+}
+
static void
skl_print_wm_changes(struct intel_atomic_state *state)
{
@@ -2709,7 +2800,6 @@ skl_print_wm_changes(struct intel_atomic_state *state)
if (skl_ddb_entry_equal(old, new))
continue;
-
drm_dbg_kms(display->drm,
"[PLANE:%d:%s] ddb (%4d - %4d) -> (%4d - %4d), size %4d -> %4d\n",
plane->base.base.id, plane->base.name,
@@ -2727,89 +2817,7 @@ skl_print_wm_changes(struct intel_atomic_state *state)
if (skl_plane_wm_equals(display, old_wm, new_wm))
continue;
- drm_dbg_kms(display->drm,
- "[PLANE:%d:%s] level %cwm0,%cwm1,%cwm2,%cwm3,%cwm4,%cwm5,%cwm6,%cwm7,%ctwm,%cswm,%cstwm"
- " -> %cwm0,%cwm1,%cwm2,%cwm3,%cwm4,%cwm5,%cwm6,%cwm7,%ctwm,%cswm,%cstwm\n",
- plane->base.base.id, plane->base.name,
- enast(old_wm->wm[0].enable), enast(old_wm->wm[1].enable),
- enast(old_wm->wm[2].enable), enast(old_wm->wm[3].enable),
- enast(old_wm->wm[4].enable), enast(old_wm->wm[5].enable),
- enast(old_wm->wm[6].enable), enast(old_wm->wm[7].enable),
- enast(old_wm->trans_wm.enable),
- enast(old_wm->sagv.wm0.enable),
- enast(old_wm->sagv.trans_wm.enable),
- enast(new_wm->wm[0].enable), enast(new_wm->wm[1].enable),
- enast(new_wm->wm[2].enable), enast(new_wm->wm[3].enable),
- enast(new_wm->wm[4].enable), enast(new_wm->wm[5].enable),
- enast(new_wm->wm[6].enable), enast(new_wm->wm[7].enable),
- enast(new_wm->trans_wm.enable),
- enast(new_wm->sagv.wm0.enable),
- enast(new_wm->sagv.trans_wm.enable));
-
- drm_dbg_kms(display->drm,
- "[PLANE:%d:%s] lines %c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%4d"
- " -> %c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%4d\n",
- plane->base.base.id, plane->base.name,
- enast(old_wm->wm[0].ignore_lines), old_wm->wm[0].lines,
- enast(old_wm->wm[1].ignore_lines), old_wm->wm[1].lines,
- enast(old_wm->wm[2].ignore_lines), old_wm->wm[2].lines,
- enast(old_wm->wm[3].ignore_lines), old_wm->wm[3].lines,
- enast(old_wm->wm[4].ignore_lines), old_wm->wm[4].lines,
- enast(old_wm->wm[5].ignore_lines), old_wm->wm[5].lines,
- enast(old_wm->wm[6].ignore_lines), old_wm->wm[6].lines,
- enast(old_wm->wm[7].ignore_lines), old_wm->wm[7].lines,
- enast(old_wm->trans_wm.ignore_lines), old_wm->trans_wm.lines,
- enast(old_wm->sagv.wm0.ignore_lines), old_wm->sagv.wm0.lines,
- enast(old_wm->sagv.trans_wm.ignore_lines), old_wm->sagv.trans_wm.lines,
- enast(new_wm->wm[0].ignore_lines), new_wm->wm[0].lines,
- enast(new_wm->wm[1].ignore_lines), new_wm->wm[1].lines,
- enast(new_wm->wm[2].ignore_lines), new_wm->wm[2].lines,
- enast(new_wm->wm[3].ignore_lines), new_wm->wm[3].lines,
- enast(new_wm->wm[4].ignore_lines), new_wm->wm[4].lines,
- enast(new_wm->wm[5].ignore_lines), new_wm->wm[5].lines,
- enast(new_wm->wm[6].ignore_lines), new_wm->wm[6].lines,
- enast(new_wm->wm[7].ignore_lines), new_wm->wm[7].lines,
- enast(new_wm->trans_wm.ignore_lines), new_wm->trans_wm.lines,
- enast(new_wm->sagv.wm0.ignore_lines), new_wm->sagv.wm0.lines,
- enast(new_wm->sagv.trans_wm.ignore_lines), new_wm->sagv.trans_wm.lines);
-
- drm_dbg_kms(display->drm,
- "[PLANE:%d:%s] blocks %4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%5d"
- " -> %4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%5d\n",
- plane->base.base.id, plane->base.name,
- old_wm->wm[0].blocks, old_wm->wm[1].blocks,
- old_wm->wm[2].blocks, old_wm->wm[3].blocks,
- old_wm->wm[4].blocks, old_wm->wm[5].blocks,
- old_wm->wm[6].blocks, old_wm->wm[7].blocks,
- old_wm->trans_wm.blocks,
- old_wm->sagv.wm0.blocks,
- old_wm->sagv.trans_wm.blocks,
- new_wm->wm[0].blocks, new_wm->wm[1].blocks,
- new_wm->wm[2].blocks, new_wm->wm[3].blocks,
- new_wm->wm[4].blocks, new_wm->wm[5].blocks,
- new_wm->wm[6].blocks, new_wm->wm[7].blocks,
- new_wm->trans_wm.blocks,
- new_wm->sagv.wm0.blocks,
- new_wm->sagv.trans_wm.blocks);
-
- drm_dbg_kms(display->drm,
- "[PLANE:%d:%s] min_ddb %4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%5d"
- " -> %4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%5d\n",
- plane->base.base.id, plane->base.name,
- old_wm->wm[0].min_ddb_alloc, old_wm->wm[1].min_ddb_alloc,
- old_wm->wm[2].min_ddb_alloc, old_wm->wm[3].min_ddb_alloc,
- old_wm->wm[4].min_ddb_alloc, old_wm->wm[5].min_ddb_alloc,
- old_wm->wm[6].min_ddb_alloc, old_wm->wm[7].min_ddb_alloc,
- old_wm->trans_wm.min_ddb_alloc,
- old_wm->sagv.wm0.min_ddb_alloc,
- old_wm->sagv.trans_wm.min_ddb_alloc,
- new_wm->wm[0].min_ddb_alloc, new_wm->wm[1].min_ddb_alloc,
- new_wm->wm[2].min_ddb_alloc, new_wm->wm[3].min_ddb_alloc,
- new_wm->wm[4].min_ddb_alloc, new_wm->wm[5].min_ddb_alloc,
- new_wm->wm[6].min_ddb_alloc, new_wm->wm[7].min_ddb_alloc,
- new_wm->trans_wm.min_ddb_alloc,
- new_wm->sagv.wm0.min_ddb_alloc,
- new_wm->sagv.trans_wm.min_ddb_alloc);
+ skl_print_plane_changes(display, plane, old_wm, new_wm);
}
}
}
--
2.39.5
^ permalink raw reply related [flat|nested] 5+ messages in thread* ✗ CI.checkpatch: warning for drm/i915/wm: reduce stack usage in skl_print_wm_changes() 2025-06-20 11:37 [PATCH] drm/i915/wm: reduce stack usage in skl_print_wm_changes() Arnd Bergmann @ 2025-06-20 11:43 ` Patchwork 2025-06-20 11:44 ` ✓ CI.KUnit: success " Patchwork ` (2 subsequent siblings) 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2025-06-20 11:43 UTC (permalink / raw) To: Arnd Bergmann; +Cc: intel-xe == Series Details == Series: drm/i915/wm: reduce stack usage in skl_print_wm_changes() URL : https://patchwork.freedesktop.org/series/150564/ State : warning == Summary == + KERNEL=/kernel + git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt Cloning into 'mt'... warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/ + git -C mt rev-list -n1 origin/master f8ff75ae1d2127635239b134695774ed4045d05b + cd /kernel + git config --global --add safe.directory /kernel + git log -n1 commit 87c3264a6eb72ed39f5468f8bc420ac876029036 Author: Arnd Bergmann <arnd@arndb.de> Date: Fri Jun 20 13:37:45 2025 +0200 drm/i915/wm: reduce stack usage in skl_print_wm_changes() When KMSAN is enabled, this function causes has a rather excessive stack usage: drivers/gpu/drm/i915/display/skl_watermark.c:2977:1: error: stack frame size (1432) exceeds limit (1408) in 'skl_compute_wm' [-Werror,-Wframe-larger-than] This is apparently all caused by the varargs calls to drm_dbg_kms(). Inlining this into skl_compute_wm() means that any function called by skl_compute_wm() has its own stack on top of that. Move the worst bit into a separate function marked as noinline_for_stack to limit that to the one code path that actually needs it. Signed-off-by: Arnd Bergmann <arnd@arndb.de> + /mt/dim checkpatch 1b4be188ae14a43b901f3005075fab3a22f77968 drm-intel 87c3264a6eb7 drm/i915/wm: reduce stack usage in skl_print_wm_changes() -:6: WARNING:COMMIT_LOG_LONG_LINE: Prefer a maximum 75 chars per line (possible unwrapped commit description?) #6: When KMSAN is enabled, this function causes has a rather excessive stack usage: total: 0 errors, 1 warnings, 0 checks, 194 lines checked ^ permalink raw reply [flat|nested] 5+ messages in thread
* ✓ CI.KUnit: success for drm/i915/wm: reduce stack usage in skl_print_wm_changes() 2025-06-20 11:37 [PATCH] drm/i915/wm: reduce stack usage in skl_print_wm_changes() Arnd Bergmann 2025-06-20 11:43 ` ✗ CI.checkpatch: warning for " Patchwork @ 2025-06-20 11:44 ` Patchwork 2025-06-20 21:33 ` ✗ Xe.CI.Full: failure " Patchwork 2025-06-24 21:16 ` [PATCH] " Rodrigo Vivi 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2025-06-20 11:44 UTC (permalink / raw) To: Arnd Bergmann; +Cc: intel-xe == Series Details == Series: drm/i915/wm: reduce stack usage in skl_print_wm_changes() URL : https://patchwork.freedesktop.org/series/150564/ State : success == Summary == + trap cleanup EXIT + /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig [11:43:40] Configuring KUnit Kernel ... Generating .config ... Populating config with: $ make ARCH=um O=.kunit olddefconfig [11:43:44] Building KUnit Kernel ... Populating config with: $ make ARCH=um O=.kunit olddefconfig Building with: $ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48 [11:44:11] Starting KUnit Kernel (1/1)... [11:44:11] ============================================================ Running tests with: $ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt [11:44:11] ================== guc_buf (11 subtests) =================== [11:44:11] [PASSED] test_smallest [11:44:11] [PASSED] test_largest [11:44:11] [PASSED] test_granular [11:44:11] [PASSED] test_unique [11:44:11] [PASSED] test_overlap [11:44:11] [PASSED] test_reusable [11:44:11] [PASSED] test_too_big [11:44:11] [PASSED] test_flush [11:44:11] [PASSED] test_lookup [11:44:11] [PASSED] test_data [11:44:11] [PASSED] test_class [11:44:11] ===================== [PASSED] guc_buf ===================== [11:44:11] =================== guc_dbm (7 subtests) =================== [11:44:11] [PASSED] test_empty [11:44:11] [PASSED] test_default [11:44:11] ======================== test_size ======================== [11:44:11] [PASSED] 4 [11:44:11] [PASSED] 8 [11:44:11] [PASSED] 32 [11:44:11] [PASSED] 256 [11:44:11] ==================== [PASSED] test_size ==================== [11:44:11] ======================= test_reuse ======================== [11:44:11] [PASSED] 4 [11:44:11] [PASSED] 8 [11:44:11] [PASSED] 32 [11:44:11] [PASSED] 256 [11:44:11] =================== [PASSED] test_reuse ==================== [11:44:11] =================== test_range_overlap ==================== [11:44:11] [PASSED] 4 [11:44:11] [PASSED] 8 [11:44:11] [PASSED] 32 [11:44:11] [PASSED] 256 [11:44:11] =============== [PASSED] test_range_overlap ================ [11:44:11] =================== test_range_compact ==================== [11:44:11] [PASSED] 4 [11:44:11] [PASSED] 8 [11:44:11] [PASSED] 32 [11:44:11] [PASSED] 256 [11:44:11] =============== [PASSED] test_range_compact ================ [11:44:11] ==================== test_range_spare ===================== [11:44:11] [PASSED] 4 [11:44:11] [PASSED] 8 [11:44:11] [PASSED] 32 [11:44:11] [PASSED] 256 [11:44:11] ================ [PASSED] test_range_spare ================= [11:44:11] ===================== [PASSED] guc_dbm ===================== [11:44:11] =================== guc_idm (6 subtests) =================== [11:44:11] [PASSED] bad_init [11:44:11] [PASSED] no_init [11:44:11] [PASSED] init_fini [11:44:11] [PASSED] check_used [11:44:11] [PASSED] check_quota [11:44:11] [PASSED] check_all [11:44:11] ===================== [PASSED] guc_idm ===================== [11:44:11] ================== no_relay (3 subtests) =================== [11:44:11] [PASSED] xe_drops_guc2pf_if_not_ready [11:44:11] [PASSED] xe_drops_guc2vf_if_not_ready [11:44:11] [PASSED] xe_rejects_send_if_not_ready [11:44:11] ==================== [PASSED] no_relay ===================== [11:44:11] ================== pf_relay (14 subtests) ================== [11:44:11] [PASSED] pf_rejects_guc2pf_too_short [11:44:11] [PASSED] pf_rejects_guc2pf_too_long [11:44:11] [PASSED] pf_rejects_guc2pf_no_payload [11:44:11] [PASSED] pf_fails_no_payload [11:44:11] [PASSED] pf_fails_bad_origin [11:44:11] [PASSED] pf_fails_bad_type [11:44:11] [PASSED] pf_txn_reports_error [11:44:11] [PASSED] pf_txn_sends_pf2guc [11:44:11] [PASSED] pf_sends_pf2guc [11:44:11] [SKIPPED] pf_loopback_nop [11:44:11] [SKIPPED] pf_loopback_echo [11:44:11] [SKIPPED] pf_loopback_fail [11:44:11] [SKIPPED] pf_loopback_busy [11:44:11] [SKIPPED] pf_loopback_retry [11:44:11] ==================== [PASSED] pf_relay ===================== [11:44:11] ================== vf_relay (3 subtests) =================== [11:44:11] [PASSED] vf_rejects_guc2vf_too_short [11:44:11] [PASSED] vf_rejects_guc2vf_too_long [11:44:11] [PASSED] vf_rejects_guc2vf_no_payload [11:44:11] ==================== [PASSED] vf_relay ===================== [11:44:11] ================= pf_service (11 subtests) ================= [11:44:11] [PASSED] pf_negotiate_any [11:44:11] [PASSED] pf_negotiate_base_match [11:44:11] [PASSED] pf_negotiate_base_newer [11:44:11] [PASSED] pf_negotiate_base_next [11:44:11] [SKIPPED] pf_negotiate_base_older [11:44:11] [PASSED] pf_negotiate_base_prev [11:44:11] [PASSED] pf_negotiate_latest_match [11:44:11] [PASSED] pf_negotiate_latest_newer [11:44:11] [PASSED] pf_negotiate_latest_next [11:44:11] [SKIPPED] pf_negotiate_latest_older [11:44:11] [SKIPPED] pf_negotiate_latest_prev [11:44:11] =================== [PASSED] pf_service ==================== [11:44:11] ===================== lmtt (1 subtest) ===================== [11:44:11] ======================== test_ops ========================= [11:44:11] [PASSED] 2-level [11:44:11] [PASSED] multi-level [11:44:11] ==================== [PASSED] test_ops ===================== [11:44:11] ====================== [PASSED] lmtt ======================= [11:44:11] =================== xe_mocs (2 subtests) =================== [11:44:11] ================ xe_live_mocs_kernel_kunit ================ [11:44:11] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============ [11:44:11] ================ xe_live_mocs_reset_kunit ================= [11:44:11] ============ [SKIPPED] xe_live_mocs_reset_kunit ============ [11:44:11] ==================== [SKIPPED] xe_mocs ===================== [11:44:11] ================= xe_migrate (2 subtests) ================== [11:44:11] ================= xe_migrate_sanity_kunit ================= [11:44:11] ============ [SKIPPED] xe_migrate_sanity_kunit ============= [11:44:11] ================== xe_validate_ccs_kunit ================== [11:44:11] ============= [SKIPPED] xe_validate_ccs_kunit ============== [11:44:11] =================== [SKIPPED] xe_migrate =================== [11:44:11] ================== xe_dma_buf (1 subtest) ================== [11:44:11] ==================== xe_dma_buf_kunit ===================== [11:44:11] ================ [SKIPPED] xe_dma_buf_kunit ================ [11:44:11] =================== [SKIPPED] xe_dma_buf =================== [11:44:11] ================= xe_bo_shrink (1 subtest) ================= [11:44:11] =================== xe_bo_shrink_kunit ==================== [11:44:11] =============== [SKIPPED] xe_bo_shrink_kunit =============== [11:44:11] ================== [SKIPPED] xe_bo_shrink ================== [11:44:11] ==================== xe_bo (2 subtests) ==================== [11:44:11] ================== xe_ccs_migrate_kunit =================== [11:44:11] ============== [SKIPPED] xe_ccs_migrate_kunit ============== [11:44:11] ==================== xe_bo_evict_kunit ==================== [11:44:11] =============== [SKIPPED] xe_bo_evict_kunit ================ [11:44:11] ===================== [SKIPPED] xe_bo ====================== [11:44:11] ==================== args (11 subtests) ==================== [11:44:11] [PASSED] count_args_test [11:44:11] [PASSED] call_args_example [11:44:11] [PASSED] call_args_test [11:44:11] [PASSED] drop_first_arg_example [11:44:11] [PASSED] drop_first_arg_test [11:44:11] [PASSED] first_arg_example [11:44:11] [PASSED] first_arg_test [11:44:11] [PASSED] last_arg_example [11:44:11] [PASSED] last_arg_test [11:44:11] [PASSED] pick_arg_example [11:44:11] [PASSED] sep_comma_example [11:44:11] ====================== [PASSED] args ======================= [11:44:11] =================== xe_pci (2 subtests) ==================== [11:44:11] ==================== check_graphics_ip ==================== [11:44:11] [PASSED] 12.70 Xe_LPG [11:44:11] [PASSED] 12.71 Xe_LPG [11:44:11] [PASSED] 12.74 Xe_LPG+ [11:44:11] [PASSED] 20.01 Xe2_HPG [11:44:11] [PASSED] 20.02 Xe2_HPG [11:44:11] [PASSED] 20.04 Xe2_LPG [11:44:11] [PASSED] 30.00 Xe3_LPG [11:44:11] [PASSED] 30.01 Xe3_LPG [11:44:11] [PASSED] 30.03 Xe3_LPG [11:44:11] ================ [PASSED] check_graphics_ip ================ [11:44:11] ===================== check_media_ip ====================== [11:44:11] [PASSED] 13.00 Xe_LPM+ [11:44:11] [PASSED] 13.01 Xe2_HPM [11:44:11] [PASSED] 20.00 Xe2_LPM [11:44:11] [PASSED] 30.00 Xe3_LPM [11:44:11] [PASSED] 30.02 Xe3_LPM stty: 'standard input': Inappropriate ioctl for device [11:44:11] ================= [PASSED] check_media_ip ================== [11:44:11] ===================== [PASSED] xe_pci ====================== [11:44:11] =================== xe_rtp (2 subtests) ==================== [11:44:11] =============== xe_rtp_process_to_sr_tests ================ [11:44:11] [PASSED] coalesce-same-reg [11:44:11] [PASSED] no-match-no-add [11:44:11] [PASSED] match-or [11:44:11] [PASSED] match-or-xfail [11:44:11] [PASSED] no-match-no-add-multiple-rules [11:44:11] [PASSED] two-regs-two-entries [11:44:11] [PASSED] clr-one-set-other [11:44:11] [PASSED] set-field [11:44:11] [PASSED] conflict-duplicate [11:44:11] [PASSED] conflict-not-disjoint [11:44:11] [PASSED] conflict-reg-type [11:44:11] =========== [PASSED] xe_rtp_process_to_sr_tests ============ [11:44:11] ================== xe_rtp_process_tests =================== [11:44:11] [PASSED] active1 [11:44:11] [PASSED] active2 [11:44:12] [PASSED] active-inactive [11:44:12] [PASSED] inactive-active [11:44:12] [PASSED] inactive-1st_or_active-inactive [11:44:12] [PASSED] inactive-2nd_or_active-inactive [11:44:12] [PASSED] inactive-last_or_active-inactive [11:44:12] [PASSED] inactive-no_or_active-inactive [11:44:12] ============== [PASSED] xe_rtp_process_tests =============== [11:44:12] ===================== [PASSED] xe_rtp ====================== [11:44:12] ==================== xe_wa (1 subtest) ===================== [11:44:12] ======================== xe_wa_gt ========================= [11:44:12] [PASSED] TIGERLAKE (B0) [11:44:12] [PASSED] DG1 (A0) [11:44:12] [PASSED] DG1 (B0) [11:44:12] [PASSED] ALDERLAKE_S (A0) [11:44:12] [PASSED] ALDERLAKE_S (B0) [11:44:12] [PASSED] ALDERLAKE_S (C0) [11:44:12] [PASSED] ALDERLAKE_S (D0) [11:44:12] [PASSED] ALDERLAKE_P (A0) [11:44:12] [PASSED] ALDERLAKE_P (B0) [11:44:12] [PASSED] ALDERLAKE_P (C0) [11:44:12] [PASSED] ALDERLAKE_S_RPLS (D0) [11:44:12] [PASSED] ALDERLAKE_P_RPLU (E0) [11:44:12] [PASSED] DG2_G10 (C0) [11:44:12] [PASSED] DG2_G11 (B1) [11:44:12] [PASSED] DG2_G12 (A1) [11:44:12] [PASSED] METEORLAKE (g:A0, m:A0) [11:44:12] [PASSED] METEORLAKE (g:A0, m:A0) [11:44:12] [PASSED] METEORLAKE (g:A0, m:A0) [11:44:12] [PASSED] LUNARLAKE (g:A0, m:A0) [11:44:12] [PASSED] LUNARLAKE (g:B0, m:A0) [11:44:12] [PASSED] BATTLEMAGE (g:A0, m:A1) [11:44:12] ==================== [PASSED] xe_wa_gt ===================== [11:44:12] ====================== [PASSED] xe_wa ====================== [11:44:12] ============================================================ [11:44:12] Testing complete. Ran 145 tests: passed: 129, skipped: 16 [11:44:12] Elapsed time: 31.218s total, 4.170s configuring, 26.732s building, 0.302s running + /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig [11:44:12] Configuring KUnit Kernel ... Regenerating .config ... Populating config with: $ make ARCH=um O=.kunit olddefconfig [11:44:13] Building KUnit Kernel ... Populating config with: $ make ARCH=um O=.kunit olddefconfig Building with: $ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48 [11:44:35] Starting KUnit Kernel (1/1)... [11:44:35] ============================================================ Running tests with: $ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt [11:44:35] == drm_test_atomic_get_connector_for_encoder (1 subtest) === [11:44:35] [PASSED] drm_test_drm_atomic_get_connector_for_encoder [11:44:35] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ==== [11:44:35] =========== drm_validate_clone_mode (2 subtests) =========== [11:44:35] ============== drm_test_check_in_clone_mode =============== [11:44:35] [PASSED] in_clone_mode [11:44:35] [PASSED] not_in_clone_mode [11:44:35] ========== [PASSED] drm_test_check_in_clone_mode =========== [11:44:35] =============== drm_test_check_valid_clones =============== [11:44:35] [PASSED] not_in_clone_mode [11:44:35] [PASSED] valid_clone [11:44:35] [PASSED] invalid_clone [11:44:35] =========== [PASSED] drm_test_check_valid_clones =========== [11:44:35] ============= [PASSED] drm_validate_clone_mode ============= [11:44:35] ============= drm_validate_modeset (1 subtest) ============= [11:44:35] [PASSED] drm_test_check_connector_changed_modeset [11:44:35] ============== [PASSED] drm_validate_modeset =============== [11:44:35] ====== drm_test_bridge_get_current_state (2 subtests) ====== [11:44:35] [PASSED] drm_test_drm_bridge_get_current_state_atomic [11:44:35] [PASSED] drm_test_drm_bridge_get_current_state_legacy [11:44:35] ======== [PASSED] drm_test_bridge_get_current_state ======== [11:44:35] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ====== [11:44:35] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic [11:44:35] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled [11:44:35] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy [11:44:35] ======== [PASSED] drm_test_bridge_helper_reset_crtc ======== [11:44:35] ============== drm_bridge_alloc (2 subtests) =============== [11:44:35] [PASSED] drm_test_drm_bridge_alloc_basic [11:44:35] [PASSED] drm_test_drm_bridge_alloc_get_put [11:44:35] ================ [PASSED] drm_bridge_alloc ================= [11:44:35] ================== drm_buddy (7 subtests) ================== [11:44:35] [PASSED] drm_test_buddy_alloc_limit [11:44:35] [PASSED] drm_test_buddy_alloc_optimistic [11:44:35] [PASSED] drm_test_buddy_alloc_pessimistic [11:44:35] [PASSED] drm_test_buddy_alloc_pathological [11:44:35] [PASSED] drm_test_buddy_alloc_contiguous [11:44:35] [PASSED] drm_test_buddy_alloc_clear [11:44:35] [PASSED] drm_test_buddy_alloc_range_bias [11:44:35] ==================== [PASSED] drm_buddy ==================== [11:44:35] ============= drm_cmdline_parser (40 subtests) ============= [11:44:35] [PASSED] drm_test_cmdline_force_d_only [11:44:35] [PASSED] drm_test_cmdline_force_D_only_dvi [11:44:35] [PASSED] drm_test_cmdline_force_D_only_hdmi [11:44:35] [PASSED] drm_test_cmdline_force_D_only_not_digital [11:44:35] [PASSED] drm_test_cmdline_force_e_only [11:44:35] [PASSED] drm_test_cmdline_res [11:44:35] [PASSED] drm_test_cmdline_res_vesa [11:44:35] [PASSED] drm_test_cmdline_res_vesa_rblank [11:44:35] [PASSED] drm_test_cmdline_res_rblank [11:44:35] [PASSED] drm_test_cmdline_res_bpp [11:44:35] [PASSED] drm_test_cmdline_res_refresh [11:44:35] [PASSED] drm_test_cmdline_res_bpp_refresh [11:44:35] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced [11:44:35] [PASSED] drm_test_cmdline_res_bpp_refresh_margins [11:44:35] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off [11:44:35] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on [11:44:35] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog [11:44:35] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital [11:44:35] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on [11:44:35] [PASSED] drm_test_cmdline_res_margins_force_on [11:44:35] [PASSED] drm_test_cmdline_res_vesa_margins [11:44:35] [PASSED] drm_test_cmdline_name [11:44:35] [PASSED] drm_test_cmdline_name_bpp [11:44:35] [PASSED] drm_test_cmdline_name_option [11:44:35] [PASSED] drm_test_cmdline_name_bpp_option [11:44:35] [PASSED] drm_test_cmdline_rotate_0 [11:44:35] [PASSED] drm_test_cmdline_rotate_90 [11:44:35] [PASSED] drm_test_cmdline_rotate_180 [11:44:35] [PASSED] drm_test_cmdline_rotate_270 [11:44:35] [PASSED] drm_test_cmdline_hmirror [11:44:35] [PASSED] drm_test_cmdline_vmirror [11:44:35] [PASSED] drm_test_cmdline_margin_options [11:44:35] [PASSED] drm_test_cmdline_multiple_options [11:44:35] [PASSED] drm_test_cmdline_bpp_extra_and_option [11:44:35] [PASSED] drm_test_cmdline_extra_and_option [11:44:35] [PASSED] drm_test_cmdline_freestanding_options [11:44:35] [PASSED] drm_test_cmdline_freestanding_force_e_and_options [11:44:35] [PASSED] drm_test_cmdline_panel_orientation [11:44:35] ================ drm_test_cmdline_invalid ================= [11:44:35] [PASSED] margin_only [11:44:35] [PASSED] interlace_only [11:44:35] [PASSED] res_missing_x [11:44:35] [PASSED] res_missing_y [11:44:35] [PASSED] res_bad_y [11:44:35] [PASSED] res_missing_y_bpp [11:44:35] [PASSED] res_bad_bpp [11:44:35] [PASSED] res_bad_refresh [11:44:35] [PASSED] res_bpp_refresh_force_on_off [11:44:35] [PASSED] res_invalid_mode [11:44:35] [PASSED] res_bpp_wrong_place_mode [11:44:35] [PASSED] name_bpp_refresh [11:44:35] [PASSED] name_refresh [11:44:35] [PASSED] name_refresh_wrong_mode [11:44:35] [PASSED] name_refresh_invalid_mode [11:44:35] [PASSED] rotate_multiple [11:44:35] [PASSED] rotate_invalid_val [11:44:35] [PASSED] rotate_truncated [11:44:35] [PASSED] invalid_option [11:44:35] [PASSED] invalid_tv_option [11:44:35] [PASSED] truncated_tv_option [11:44:35] ============ [PASSED] drm_test_cmdline_invalid ============= [11:44:35] =============== drm_test_cmdline_tv_options =============== [11:44:35] [PASSED] NTSC [11:44:35] [PASSED] NTSC_443 [11:44:35] [PASSED] NTSC_J [11:44:35] [PASSED] PAL [11:44:35] [PASSED] PAL_M [11:44:35] [PASSED] PAL_N [11:44:35] [PASSED] SECAM [11:44:35] [PASSED] MONO_525 [11:44:35] [PASSED] MONO_625 [11:44:35] =========== [PASSED] drm_test_cmdline_tv_options =========== [11:44:35] =============== [PASSED] drm_cmdline_parser ================ [11:44:35] ========== drmm_connector_hdmi_init (20 subtests) ========== [11:44:35] [PASSED] drm_test_connector_hdmi_init_valid [11:44:35] [PASSED] drm_test_connector_hdmi_init_bpc_8 [11:44:35] [PASSED] drm_test_connector_hdmi_init_bpc_10 [11:44:35] [PASSED] drm_test_connector_hdmi_init_bpc_12 [11:44:35] [PASSED] drm_test_connector_hdmi_init_bpc_invalid [11:44:35] [PASSED] drm_test_connector_hdmi_init_bpc_null [11:44:35] [PASSED] drm_test_connector_hdmi_init_formats_empty [11:44:35] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb [11:44:35] === drm_test_connector_hdmi_init_formats_yuv420_allowed === [11:44:35] [PASSED] supported_formats=0x9 yuv420_allowed=1 [11:44:35] [PASSED] supported_formats=0x9 yuv420_allowed=0 [11:44:35] [PASSED] supported_formats=0x3 yuv420_allowed=1 [11:44:35] [PASSED] supported_formats=0x3 yuv420_allowed=0 [11:44:35] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed === [11:44:35] [PASSED] drm_test_connector_hdmi_init_null_ddc [11:44:35] [PASSED] drm_test_connector_hdmi_init_null_product [11:44:35] [PASSED] drm_test_connector_hdmi_init_null_vendor [11:44:35] [PASSED] drm_test_connector_hdmi_init_product_length_exact [11:44:35] [PASSED] drm_test_connector_hdmi_init_product_length_too_long [11:44:35] [PASSED] drm_test_connector_hdmi_init_product_valid [11:44:35] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact [11:44:35] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long [11:44:35] [PASSED] drm_test_connector_hdmi_init_vendor_valid [11:44:35] ========= drm_test_connector_hdmi_init_type_valid ========= [11:44:35] [PASSED] HDMI-A [11:44:35] [PASSED] HDMI-B [11:44:35] ===== [PASSED] drm_test_connector_hdmi_init_type_valid ===== [11:44:35] ======== drm_test_connector_hdmi_init_type_invalid ======== [11:44:35] [PASSED] Unknown [11:44:35] [PASSED] VGA [11:44:35] [PASSED] DVI-I [11:44:35] [PASSED] DVI-D [11:44:35] [PASSED] DVI-A [11:44:35] [PASSED] Composite [11:44:35] [PASSED] SVIDEO [11:44:35] [PASSED] LVDS [11:44:35] [PASSED] Component [11:44:35] [PASSED] DIN [11:44:35] [PASSED] DP [11:44:35] [PASSED] TV [11:44:35] [PASSED] eDP [11:44:35] [PASSED] Virtual [11:44:35] [PASSED] DSI [11:44:35] [PASSED] DPI [11:44:35] [PASSED] Writeback [11:44:35] [PASSED] SPI [11:44:35] [PASSED] USB [11:44:35] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ==== [11:44:35] ============ [PASSED] drmm_connector_hdmi_init ============= [11:44:35] ============= drmm_connector_init (3 subtests) ============= [11:44:35] [PASSED] drm_test_drmm_connector_init [11:44:35] [PASSED] drm_test_drmm_connector_init_null_ddc [11:44:35] ========= drm_test_drmm_connector_init_type_valid ========= [11:44:35] [PASSED] Unknown [11:44:35] [PASSED] VGA [11:44:35] [PASSED] DVI-I [11:44:35] [PASSED] DVI-D [11:44:35] [PASSED] DVI-A [11:44:35] [PASSED] Composite [11:44:35] [PASSED] SVIDEO [11:44:35] [PASSED] LVDS [11:44:35] [PASSED] Component [11:44:35] [PASSED] DIN [11:44:35] [PASSED] DP [11:44:35] [PASSED] HDMI-A [11:44:35] [PASSED] HDMI-B [11:44:35] [PASSED] TV [11:44:35] [PASSED] eDP [11:44:35] [PASSED] Virtual [11:44:35] [PASSED] DSI [11:44:35] [PASSED] DPI [11:44:35] [PASSED] Writeback [11:44:35] [PASSED] SPI [11:44:35] [PASSED] USB [11:44:35] ===== [PASSED] drm_test_drmm_connector_init_type_valid ===== [11:44:35] =============== [PASSED] drmm_connector_init =============== [11:44:35] ========= drm_connector_dynamic_init (6 subtests) ========== [11:44:35] [PASSED] drm_test_drm_connector_dynamic_init [11:44:35] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc [11:44:35] [PASSED] drm_test_drm_connector_dynamic_init_not_added [11:44:35] [PASSED] drm_test_drm_connector_dynamic_init_properties [11:44:35] ===== drm_test_drm_connector_dynamic_init_type_valid ====== [11:44:35] [PASSED] Unknown [11:44:35] [PASSED] VGA [11:44:35] [PASSED] DVI-I [11:44:35] [PASSED] DVI-D [11:44:35] [PASSED] DVI-A [11:44:35] [PASSED] Composite [11:44:35] [PASSED] SVIDEO [11:44:35] [PASSED] LVDS [11:44:35] [PASSED] Component [11:44:35] [PASSED] DIN [11:44:35] [PASSED] DP [11:44:35] [PASSED] HDMI-A [11:44:35] [PASSED] HDMI-B [11:44:35] [PASSED] TV [11:44:35] [PASSED] eDP [11:44:35] [PASSED] Virtual [11:44:35] [PASSED] DSI [11:44:35] [PASSED] DPI [11:44:35] [PASSED] Writeback [11:44:35] [PASSED] SPI [11:44:35] [PASSED] USB [11:44:35] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid == [11:44:35] ======== drm_test_drm_connector_dynamic_init_name ========= [11:44:35] [PASSED] Unknown [11:44:35] [PASSED] VGA [11:44:35] [PASSED] DVI-I [11:44:35] [PASSED] DVI-D [11:44:35] [PASSED] DVI-A [11:44:35] [PASSED] Composite [11:44:35] [PASSED] SVIDEO [11:44:35] [PASSED] LVDS [11:44:35] [PASSED] Component [11:44:35] [PASSED] DIN [11:44:35] [PASSED] DP [11:44:35] [PASSED] HDMI-A [11:44:35] [PASSED] HDMI-B [11:44:35] [PASSED] TV [11:44:35] [PASSED] eDP [11:44:35] [PASSED] Virtual [11:44:35] [PASSED] DSI [11:44:35] [PASSED] DPI [11:44:35] [PASSED] Writeback [11:44:35] [PASSED] SPI [11:44:35] [PASSED] USB [11:44:35] ==== [PASSED] drm_test_drm_connector_dynamic_init_name ===== [11:44:35] =========== [PASSED] drm_connector_dynamic_init ============ [11:44:35] ==== drm_connector_dynamic_register_early (4 subtests) ===== [11:44:35] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list [11:44:35] [PASSED] drm_test_drm_connector_dynamic_register_early_defer [11:44:35] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init [11:44:35] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object [11:44:35] ====== [PASSED] drm_connector_dynamic_register_early ======= [11:44:35] ======= drm_connector_dynamic_register (7 subtests) ======== [11:44:35] [PASSED] drm_test_drm_connector_dynamic_register_on_list [11:44:35] [PASSED] drm_test_drm_connector_dynamic_register_no_defer [11:44:35] [PASSED] drm_test_drm_connector_dynamic_register_no_init [11:44:35] [PASSED] drm_test_drm_connector_dynamic_register_mode_object [11:44:35] [PASSED] drm_test_drm_connector_dynamic_register_sysfs [11:44:35] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name [11:44:35] [PASSED] drm_test_drm_connector_dynamic_register_debugfs [11:44:35] ========= [PASSED] drm_connector_dynamic_register ========== [11:44:35] = drm_connector_attach_broadcast_rgb_property (2 subtests) = [11:44:35] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property [11:44:35] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector [11:44:35] === [PASSED] drm_connector_attach_broadcast_rgb_property === [11:44:35] ========== drm_get_tv_mode_from_name (2 subtests) ========== [11:44:35] ========== drm_test_get_tv_mode_from_name_valid =========== [11:44:35] [PASSED] NTSC [11:44:35] [PASSED] NTSC-443 [11:44:35] [PASSED] NTSC-J [11:44:35] [PASSED] PAL [11:44:35] [PASSED] PAL-M [11:44:35] [PASSED] PAL-N [11:44:35] [PASSED] SECAM [11:44:35] [PASSED] Mono [11:44:35] ====== [PASSED] drm_test_get_tv_mode_from_name_valid ======= [11:44:35] [PASSED] drm_test_get_tv_mode_from_name_truncated [11:44:35] ============ [PASSED] drm_get_tv_mode_from_name ============ [11:44:35] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) = [11:44:35] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb [11:44:35] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc [11:44:35] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1 [11:44:35] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc [11:44:35] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1 [11:44:35] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double [11:44:35] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid = [11:44:35] [PASSED] VIC 96 [11:44:35] [PASSED] VIC 97 [11:44:35] [PASSED] VIC 101 [11:44:35] [PASSED] VIC 102 [11:44:35] [PASSED] VIC 106 [11:44:35] [PASSED] VIC 107 [11:44:35] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid === [11:44:35] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc [11:44:35] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc [11:44:35] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc [11:44:35] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc [11:44:35] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc [11:44:35] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ==== [11:44:35] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) == [11:44:35] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ==== [11:44:35] [PASSED] Automatic [11:44:35] [PASSED] Full [11:44:35] [PASSED] Limited 16:235 [11:44:35] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name === [11:44:35] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid [11:44:35] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ==== [11:44:35] == drm_hdmi_connector_get_output_format_name (2 subtests) == [11:44:35] === drm_test_drm_hdmi_connector_get_output_format_name ==== [11:44:35] [PASSED] RGB [11:44:35] [PASSED] YUV 4:2:0 [11:44:35] [PASSED] YUV 4:2:2 [11:44:35] [PASSED] YUV 4:4:4 [11:44:35] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name === [11:44:35] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid [11:44:35] ==== [PASSED] drm_hdmi_connector_get_output_format_name ==== [11:44:35] ============= drm_damage_helper (21 subtests) ============== [11:44:35] [PASSED] drm_test_damage_iter_no_damage [11:44:35] [PASSED] drm_test_damage_iter_no_damage_fractional_src [11:44:35] [PASSED] drm_test_damage_iter_no_damage_src_moved [11:44:35] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved [11:44:35] [PASSED] drm_test_damage_iter_no_damage_not_visible [11:44:35] [PASSED] drm_test_damage_iter_no_damage_no_crtc [11:44:35] [PASSED] drm_test_damage_iter_no_damage_no_fb [11:44:35] [PASSED] drm_test_damage_iter_simple_damage [11:44:35] [PASSED] drm_test_damage_iter_single_damage [11:44:35] [PASSED] drm_test_damage_iter_single_damage_intersect_src [11:44:35] [PASSED] drm_test_damage_iter_single_damage_outside_src [11:44:35] [PASSED] drm_test_damage_iter_single_damage_fractional_src [11:44:35] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src [11:44:35] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src [11:44:35] [PASSED] drm_test_damage_iter_single_damage_src_moved [11:44:35] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved [11:44:35] [PASSED] drm_test_damage_iter_damage [11:44:35] [PASSED] drm_test_damage_iter_damage_one_intersect [11:44:35] [PASSED] drm_test_damage_iter_damage_one_outside [11:44:35] [PASSED] drm_test_damage_iter_damage_src_moved [11:44:35] [PASSED] drm_test_damage_iter_damage_not_visible [11:44:35] ================ [PASSED] drm_damage_helper ================ [11:44:35] ============== drm_dp_mst_helper (3 subtests) ============== [11:44:35] ============== drm_test_dp_mst_calc_pbn_mode ============== [11:44:35] [PASSED] Clock 154000 BPP 30 DSC disabled [11:44:35] [PASSED] Clock 234000 BPP 30 DSC disabled [11:44:35] [PASSED] Clock 297000 BPP 24 DSC disabled [11:44:35] [PASSED] Clock 332880 BPP 24 DSC enabled [11:44:35] [PASSED] Clock 324540 BPP 24 DSC enabled [11:44:35] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ========== [11:44:35] ============== drm_test_dp_mst_calc_pbn_div =============== [11:44:35] [PASSED] Link rate 2000000 lane count 4 [11:44:35] [PASSED] Link rate 2000000 lane count 2 [11:44:35] [PASSED] Link rate 2000000 lane count 1 [11:44:35] [PASSED] Link rate 1350000 lane count 4 [11:44:35] [PASSED] Link rate 1350000 lane count 2 [11:44:35] [PASSED] Link rate 1350000 lane count 1 [11:44:35] [PASSED] Link rate 1000000 lane count 4 [11:44:35] [PASSED] Link rate 1000000 lane count 2 [11:44:35] [PASSED] Link rate 1000000 lane count 1 [11:44:35] [PASSED] Link rate 810000 lane count 4 [11:44:35] [PASSED] Link rate 810000 lane count 2 [11:44:35] [PASSED] Link rate 810000 lane count 1 [11:44:35] [PASSED] Link rate 540000 lane count 4 [11:44:35] [PASSED] Link rate 540000 lane count 2 [11:44:35] [PASSED] Link rate 540000 lane count 1 [11:44:35] [PASSED] Link rate 270000 lane count 4 [11:44:35] [PASSED] Link rate 270000 lane count 2 [11:44:35] [PASSED] Link rate 270000 lane count 1 [11:44:35] [PASSED] Link rate 162000 lane count 4 [11:44:35] [PASSED] Link rate 162000 lane count 2 [11:44:35] [PASSED] Link rate 162000 lane count 1 [11:44:35] ========== [PASSED] drm_test_dp_mst_calc_pbn_div =========== [11:44:35] ========= drm_test_dp_mst_sideband_msg_req_decode ========= [11:44:35] [PASSED] DP_ENUM_PATH_RESOURCES with port number [11:44:35] [PASSED] DP_POWER_UP_PHY with port number [11:44:35] [PASSED] DP_POWER_DOWN_PHY with port number [11:44:35] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks [11:44:35] [PASSED] DP_ALLOCATE_PAYLOAD with port number [11:44:35] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI [11:44:35] [PASSED] DP_ALLOCATE_PAYLOAD with PBN [11:44:35] [PASSED] DP_QUERY_PAYLOAD with port number [11:44:35] [PASSED] DP_QUERY_PAYLOAD with VCPI [11:44:35] [PASSED] DP_REMOTE_DPCD_READ with port number [11:44:35] [PASSED] DP_REMOTE_DPCD_READ with DPCD address [11:44:35] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes [11:44:35] [PASSED] DP_REMOTE_DPCD_WRITE with port number [11:44:35] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address [11:44:35] [PASSED] DP_REMOTE_DPCD_WRITE with data array [11:44:35] [PASSED] DP_REMOTE_I2C_READ with port number [11:44:35] [PASSED] DP_REMOTE_I2C_READ with I2C device ID [11:44:35] [PASSED] DP_REMOTE_I2C_READ with transactions array [11:44:35] [PASSED] DP_REMOTE_I2C_WRITE with port number [11:44:35] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID [11:44:35] [PASSED] DP_REMOTE_I2C_WRITE with data array [11:44:35] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID [11:44:35] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID [11:44:35] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event [11:44:35] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event [11:44:35] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior [11:44:35] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior [11:44:35] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode ===== [11:44:35] ================ [PASSED] drm_dp_mst_helper ================ [11:44:35] ================== drm_exec (7 subtests) =================== [11:44:35] [PASSED] sanitycheck [11:44:35] [PASSED] test_lock [11:44:35] [PASSED] test_lock_unlock [11:44:35] [PASSED] test_duplicates [11:44:35] [PASSED] test_prepare [11:44:35] [PASSED] test_prepare_array [11:44:35] [PASSED] test_multiple_loops [11:44:35] ==================== [PASSED] drm_exec ===================== [11:44:35] =========== drm_format_helper_test (17 subtests) =========== [11:44:35] ============== drm_test_fb_xrgb8888_to_gray8 ============== [11:44:35] [PASSED] single_pixel_source_buffer [11:44:35] [PASSED] single_pixel_clip_rectangle [11:44:35] [PASSED] well_known_colors [11:44:35] [PASSED] destination_pitch [11:44:35] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ========== [11:44:35] ============= drm_test_fb_xrgb8888_to_rgb332 ============== [11:44:35] [PASSED] single_pixel_source_buffer [11:44:35] [PASSED] single_pixel_clip_rectangle [11:44:35] [PASSED] well_known_colors [11:44:35] [PASSED] destination_pitch [11:44:35] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ========== [11:44:35] ============= drm_test_fb_xrgb8888_to_rgb565 ============== [11:44:35] [PASSED] single_pixel_source_buffer [11:44:35] [PASSED] single_pixel_clip_rectangle [11:44:35] [PASSED] well_known_colors [11:44:35] [PASSED] destination_pitch [11:44:35] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ========== [11:44:35] ============ drm_test_fb_xrgb8888_to_xrgb1555 ============= [11:44:35] [PASSED] single_pixel_source_buffer [11:44:35] [PASSED] single_pixel_clip_rectangle [11:44:35] [PASSED] well_known_colors [11:44:35] [PASSED] destination_pitch [11:44:35] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 ========= [11:44:35] ============ drm_test_fb_xrgb8888_to_argb1555 ============= [11:44:35] [PASSED] single_pixel_source_buffer [11:44:35] [PASSED] single_pixel_clip_rectangle [11:44:35] [PASSED] well_known_colors [11:44:35] [PASSED] destination_pitch [11:44:35] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 ========= [11:44:35] ============ drm_test_fb_xrgb8888_to_rgba5551 ============= [11:44:35] [PASSED] single_pixel_source_buffer [11:44:35] [PASSED] single_pixel_clip_rectangle [11:44:35] [PASSED] well_known_colors [11:44:35] [PASSED] destination_pitch [11:44:35] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 ========= [11:44:35] ============= drm_test_fb_xrgb8888_to_rgb888 ============== [11:44:35] [PASSED] single_pixel_source_buffer [11:44:35] [PASSED] single_pixel_clip_rectangle [11:44:35] [PASSED] well_known_colors [11:44:35] [PASSED] destination_pitch [11:44:35] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ========== [11:44:35] ============= drm_test_fb_xrgb8888_to_bgr888 ============== [11:44:35] [PASSED] single_pixel_source_buffer [11:44:35] [PASSED] single_pixel_clip_rectangle [11:44:35] [PASSED] well_known_colors [11:44:35] [PASSED] destination_pitch [11:44:35] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ========== [11:44:35] ============ drm_test_fb_xrgb8888_to_argb8888 ============= [11:44:35] [PASSED] single_pixel_source_buffer [11:44:35] [PASSED] single_pixel_clip_rectangle [11:44:35] [PASSED] well_known_colors [11:44:35] [PASSED] destination_pitch [11:44:35] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 ========= [11:44:35] =========== drm_test_fb_xrgb8888_to_xrgb2101010 =========== [11:44:35] [PASSED] single_pixel_source_buffer [11:44:35] [PASSED] single_pixel_clip_rectangle [11:44:35] [PASSED] well_known_colors [11:44:35] [PASSED] destination_pitch [11:44:35] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 ======= [11:44:35] =========== drm_test_fb_xrgb8888_to_argb2101010 =========== [11:44:35] [PASSED] single_pixel_source_buffer [11:44:35] [PASSED] single_pixel_clip_rectangle [11:44:35] [PASSED] well_known_colors [11:44:35] [PASSED] destination_pitch [11:44:35] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 ======= [11:44:35] ============== drm_test_fb_xrgb8888_to_mono =============== [11:44:35] [PASSED] single_pixel_source_buffer [11:44:35] [PASSED] single_pixel_clip_rectangle [11:44:35] [PASSED] well_known_colors [11:44:35] [PASSED] destination_pitch [11:44:35] ========== [PASSED] drm_test_fb_xrgb8888_to_mono =========== [11:44:35] ==================== drm_test_fb_swab ===================== [11:44:35] [PASSED] single_pixel_source_buffer [11:44:35] [PASSED] single_pixel_clip_rectangle [11:44:35] [PASSED] well_known_colors [11:44:35] [PASSED] destination_pitch [11:44:35] ================ [PASSED] drm_test_fb_swab ================= [11:44:35] ============ drm_test_fb_xrgb8888_to_xbgr8888 ============= [11:44:35] [PASSED] single_pixel_source_buffer [11:44:35] [PASSED] single_pixel_clip_rectangle [11:44:35] [PASSED] well_known_colors [11:44:35] [PASSED] destination_pitch [11:44:35] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 ========= [11:44:35] ============ drm_test_fb_xrgb8888_to_abgr8888 ============= [11:44:35] [PASSED] single_pixel_source_buffer [11:44:35] [PASSED] single_pixel_clip_rectangle [11:44:35] [PASSED] well_known_colors [11:44:35] [PASSED] destination_pitch [11:44:35] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 ========= [11:44:35] ================= drm_test_fb_clip_offset ================= [11:44:35] [PASSED] pass through [11:44:35] [PASSED] horizontal offset [11:44:35] [PASSED] vertical offset [11:44:35] [PASSED] horizontal and vertical offset [11:44:35] [PASSED] horizontal offset (custom pitch) [11:44:35] [PASSED] vertical offset (custom pitch) [11:44:35] [PASSED] horizontal and vertical offset (custom pitch) [11:44:35] ============= [PASSED] drm_test_fb_clip_offset ============= [11:44:35] =================== drm_test_fb_memcpy ==================== [11:44:35] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258) [11:44:35] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258) [11:44:35] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559) [11:44:35] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258) [11:44:35] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258) [11:44:35] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559) [11:44:35] [PASSED] well_known_colors: XB24 little-endian (0x34324258) [11:44:35] [PASSED] well_known_colors: XRA8 little-endian (0x38415258) [11:44:35] [PASSED] well_known_colors: YU24 little-endian (0x34325559) [11:44:35] [PASSED] destination_pitch: XB24 little-endian (0x34324258) [11:44:35] [PASSED] destination_pitch: XRA8 little-endian (0x38415258) [11:44:35] [PASSED] destination_pitch: YU24 little-endian (0x34325559) [11:44:35] =============== [PASSED] drm_test_fb_memcpy ================ [11:44:35] ============= [PASSED] drm_format_helper_test ============== [11:44:35] ================= drm_format (18 subtests) ================= [11:44:35] [PASSED] drm_test_format_block_width_invalid [11:44:35] [PASSED] drm_test_format_block_width_one_plane [11:44:35] [PASSED] drm_test_format_block_width_two_plane [11:44:35] [PASSED] drm_test_format_block_width_three_plane [11:44:35] [PASSED] drm_test_format_block_width_tiled [11:44:35] [PASSED] drm_test_format_block_height_invalid [11:44:35] [PASSED] drm_test_format_block_height_one_plane [11:44:35] [PASSED] drm_test_format_block_height_two_plane [11:44:35] [PASSED] drm_test_format_block_height_three_plane [11:44:35] [PASSED] drm_test_format_block_height_tiled [11:44:35] [PASSED] drm_test_format_min_pitch_invalid [11:44:35] [PASSED] drm_test_format_min_pitch_one_plane_8bpp [11:44:35] [PASSED] drm_test_format_min_pitch_one_plane_16bpp [11:44:35] [PASSED] drm_test_format_min_pitch_one_plane_24bpp [11:44:35] [PASSED] drm_test_format_min_pitch_one_plane_32bpp [11:44:35] [PASSED] drm_test_format_min_pitch_two_plane [11:44:35] [PASSED] drm_test_format_min_pitch_three_plane_8bpp [11:44:35] [PASSED] drm_test_format_min_pitch_tiled [11:44:35] =================== [PASSED] drm_format ==================== [11:44:35] ============== drm_framebuffer (10 subtests) =============== [11:44:35] ========== drm_test_framebuffer_check_src_coords ========== [11:44:35] [PASSED] Success: source fits into fb [11:44:35] [PASSED] Fail: overflowing fb with x-axis coordinate [11:44:35] [PASSED] Fail: overflowing fb with y-axis coordinate [11:44:35] [PASSED] Fail: overflowing fb with source width [11:44:35] [PASSED] Fail: overflowing fb with source height [11:44:35] ====== [PASSED] drm_test_framebuffer_check_src_coords ====== [11:44:35] [PASSED] drm_test_framebuffer_cleanup [11:44:35] =============== drm_test_framebuffer_create =============== [11:44:35] [PASSED] ABGR8888 normal sizes [11:44:35] [PASSED] ABGR8888 max sizes [11:44:35] [PASSED] ABGR8888 pitch greater than min required [11:44:35] [PASSED] ABGR8888 pitch less than min required [11:44:35] [PASSED] ABGR8888 Invalid width [11:44:35] [PASSED] ABGR8888 Invalid buffer handle [11:44:35] [PASSED] No pixel format [11:44:35] [PASSED] ABGR8888 Width 0 [11:44:35] [PASSED] ABGR8888 Height 0 [11:44:35] [PASSED] ABGR8888 Out of bound height * pitch combination [11:44:35] [PASSED] ABGR8888 Large buffer offset [11:44:35] [PASSED] ABGR8888 Buffer offset for inexistent plane [11:44:35] [PASSED] ABGR8888 Invalid flag [11:44:35] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers [11:44:35] [PASSED] ABGR8888 Valid buffer modifier [11:44:35] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE) [11:44:35] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS [11:44:35] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS [11:44:35] [PASSED] NV12 Normal sizes [11:44:35] [PASSED] NV12 Max sizes [11:44:35] [PASSED] NV12 Invalid pitch [11:44:35] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag [11:44:35] [PASSED] NV12 different modifier per-plane [11:44:35] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE [11:44:35] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS [11:44:35] [PASSED] NV12 Modifier for inexistent plane [11:44:35] [PASSED] NV12 Handle for inexistent plane [11:44:35] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS [11:44:35] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier [11:44:35] [PASSED] YVU420 Normal sizes [11:44:35] [PASSED] YVU420 Max sizes [11:44:35] [PASSED] YVU420 Invalid pitch [11:44:35] [PASSED] YVU420 Different pitches [11:44:35] [PASSED] YVU420 Different buffer offsets/pitches [11:44:35] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS [11:44:35] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS [11:44:35] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS [11:44:35] [PASSED] YVU420 Valid modifier [11:44:35] [PASSED] YVU420 Different modifiers per plane [11:44:35] [PASSED] YVU420 Modifier for inexistent plane [11:44:35] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR) [11:44:35] [PASSED] X0L2 Normal sizes [11:44:35] [PASSED] X0L2 Max sizes [11:44:35] [PASSED] X0L2 Invalid pitch [11:44:35] [PASSED] X0L2 Pitch greater than minimum required [11:44:35] [PASSED] X0L2 Handle for inexistent plane [11:44:35] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set [11:44:35] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set [11:44:35] [PASSED] X0L2 Valid modifier [11:44:35] [PASSED] X0L2 Modifier for inexistent plane [11:44:35] =========== [PASSED] drm_test_framebuffer_create =========== [11:44:35] [PASSED] drm_test_framebuffer_free [11:44:35] [PASSED] drm_test_framebuffer_init [11:44:35] [PASSED] drm_test_framebuffer_init_bad_format [11:44:35] [PASSED] drm_test_framebuffer_init_dev_mismatch [11:44:35] [PASSED] drm_test_framebuffer_lookup [11:44:35] [PASSED] drm_test_framebuffer_lookup_inexistent [11:44:35] [PASSED] drm_test_framebuffer_modifiers_not_supported [11:44:35] ================= [PASSED] drm_framebuffer ================= [11:44:35] ================ drm_gem_shmem (8 subtests) ================ [11:44:35] [PASSED] drm_gem_shmem_test_obj_create [11:44:35] [PASSED] drm_gem_shmem_test_obj_create_private [11:44:35] [PASSED] drm_gem_shmem_test_pin_pages [11:44:35] [PASSED] drm_gem_shmem_test_vmap [11:44:35] [PASSED] drm_gem_shmem_test_get_pages_sgt [11:44:35] [PASSED] drm_gem_shmem_test_get_sg_table [11:44:35] [PASSED] drm_gem_shmem_test_madvise [11:44:35] [PASSED] drm_gem_shmem_test_purge [11:44:35] ================== [PASSED] drm_gem_shmem ================== [11:44:35] === drm_atomic_helper_connector_hdmi_check (27 subtests) === [11:44:35] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode [11:44:35] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1 [11:44:35] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode [11:44:35] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1 [11:44:35] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode [11:44:35] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1 [11:44:35] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 ======= [11:44:35] [PASSED] Automatic [11:44:35] [PASSED] Full [11:44:35] [PASSED] Limited 16:235 [11:44:35] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 === [11:44:35] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed [11:44:35] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed [11:44:35] [PASSED] drm_test_check_disable_connector [11:44:35] [PASSED] drm_test_check_hdmi_funcs_reject_rate [11:44:35] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb [11:44:35] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420 [11:44:35] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422 [11:44:35] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420 [11:44:35] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420 [11:44:35] [PASSED] drm_test_check_output_bpc_crtc_mode_changed [11:44:35] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed [11:44:35] [PASSED] drm_test_check_output_bpc_dvi [11:44:35] [PASSED] drm_test_check_output_bpc_format_vic_1 [11:44:35] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only [11:44:35] [PASSED] drm_test_check_output_bpc_format_display_rgb_only [11:44:35] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only [11:44:35] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only [11:44:35] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc [11:44:35] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc [11:44:35] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc [11:44:35] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ====== [11:44:35] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ==== [11:44:35] [PASSED] drm_test_check_broadcast_rgb_value [11:44:35] [PASSED] drm_test_check_bpc_8_value [11:44:35] [PASSED] drm_test_check_bpc_10_value [11:44:35] [PASSED] drm_test_check_bpc_12_value [11:44:35] [PASSED] drm_test_check_format_value [11:44:35] [PASSED] drm_test_check_tmds_char_value [11:44:35] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ====== [11:44:35] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) = [11:44:35] [PASSED] drm_test_check_mode_valid [11:44:35] [PASSED] drm_test_check_mode_valid_reject [11:44:35] [PASSED] drm_test_check_mode_valid_reject_rate [11:44:35] [PASSED] drm_test_check_mode_valid_reject_max_clock [11:44:35] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid === [11:44:35] ================= drm_managed (2 subtests) ================= [11:44:35] [PASSED] drm_test_managed_release_action [11:44:35] [PASSED] drm_test_managed_run_action [11:44:35] =================== [PASSED] drm_managed =================== [11:44:35] =================== drm_mm (6 subtests) ==================== [11:44:35] [PASSED] drm_test_mm_init [11:44:35] [PASSED] drm_test_mm_debug [11:44:35] [PASSED] drm_test_mm_align32 [11:44:35] [PASSED] drm_test_mm_align64 [11:44:35] [PASSED] drm_test_mm_lowest [11:44:35] [PASSED] drm_test_mm_highest [11:44:35] ===================== [PASSED] drm_mm ====================== [11:44:35] ============= drm_modes_analog_tv (5 subtests) ============= [11:44:35] [PASSED] drm_test_modes_analog_tv_mono_576i [11:44:35] [PASSED] drm_test_modes_analog_tv_ntsc_480i [11:44:35] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined [11:44:35] [PASSED] drm_test_modes_analog_tv_pal_576i [11:44:35] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined [11:44:35] =============== [PASSED] drm_modes_analog_tv =============== [11:44:35] ============== drm_plane_helper (2 subtests) =============== [11:44:35] =============== drm_test_check_plane_state ================ [11:44:35] [PASSED] clipping_simple [11:44:35] [PASSED] clipping_rotate_reflect [11:44:35] [PASSED] positioning_simple [11:44:35] [PASSED] upscaling [11:44:35] [PASSED] downscaling [11:44:35] [PASSED] rounding1 [11:44:35] [PASSED] rounding2 [11:44:35] [PASSED] rounding3 [11:44:35] [PASSED] rounding4 [11:44:35] =========== [PASSED] drm_test_check_plane_state ============ [11:44:35] =========== drm_test_check_invalid_plane_state ============ [11:44:35] [PASSED] positioning_invalid [11:44:35] [PASSED] upscaling_invalid [11:44:35] [PASSED] downscaling_invalid [11:44:35] ======= [PASSED] drm_test_check_invalid_plane_state ======== [11:44:35] ================ [PASSED] drm_plane_helper ================= [11:44:35] ====== drm_connector_helper_tv_get_modes (1 subtest) ======= [11:44:35] ====== drm_test_connector_helper_tv_get_modes_check ======= [11:44:35] [PASSED] None [11:44:35] [PASSED] PAL [11:44:35] [PASSED] NTSC [11:44:35] [PASSED] Both, NTSC Default [11:44:35] [PASSED] Both, PAL Default [11:44:35] [PASSED] Both, NTSC Default, with PAL on command-line [11:44:35] [PASSED] Both, PAL Default, with NTSC on command-line [11:44:35] == [PASSED] drm_test_connector_helper_tv_get_modes_check === [11:44:35] ======== [PASSED] drm_connector_helper_tv_get_modes ======== [11:44:35] ================== drm_rect (9 subtests) =================== [11:44:35] [PASSED] drm_test_rect_clip_scaled_div_by_zero [11:44:35] [PASSED] drm_test_rect_clip_scaled_not_clipped [11:44:35] [PASSED] drm_test_rect_clip_scaled_clipped [11:44:35] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned [11:44:35] ================= drm_test_rect_intersect ================= [11:44:35] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0 [11:44:35] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1 [11:44:35] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0 [11:44:35] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1 [11:44:35] [PASSED] right x left: 2x1+0+0 x 3x1+1+0 [11:44:35] [PASSED] left x right: 3x1+1+0 x 2x1+0+0 [11:44:35] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1 [11:44:35] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0 [11:44:35] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1 [11:44:35] [PASSED] touching side: 1x1+0+0 x 1x1+1+0 [11:44:35] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0 [11:44:35] [PASSED] inside another: 2x2+0+0 x 1x1+1+1 [11:44:35] [PASSED] far away: 1x1+0+0 x 1x1+3+6 [11:44:35] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10 [11:44:35] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10 [11:44:35] ============= [PASSED] drm_test_rect_intersect ============= [11:44:35] ================ drm_test_rect_calc_hscale ================ [11:44:35] [PASSED] normal use [11:44:35] [PASSED] out of max range [11:44:35] [PASSED] out of min range [11:44:35] [PASSED] zero dst [11:44:35] [PASSED] negative src [11:44:35] [PASSED] negative dst [11:44:35] ============ [PASSED] drm_test_rect_calc_hscale ============ [11:44:35] ================ drm_test_rect_calc_vscale ================ [11:44:35] [PASSED] normal use [11:44:35] [PASSED] out of max range [11:44:35] [PASSED] out of min range [11:44:35] [PASSED] zero dst [11:44:35] [PASSED] negative src [11:44:35] [PASSED] negative dst [11:44:35] ============ [PASSED] drm_test_rect_calc_vscale ============ [11:44:35] ================== drm_test_rect_rotate =================== [11:44:35] [PASSED] reflect-x [11:44:35] [PASSED] reflect-y [11:44:35] [PASSED] rotate-0 [11:44:35] [PASSED] rotate-90 [11:44:35] [PASSED] rotate-180 [11:44:35] [PASSED] rotate-270 stty: 'standard input': Inappropriate ioctl for device [11:44:35] ============== [PASSED] drm_test_rect_rotate =============== [11:44:35] ================ drm_test_rect_rotate_inv ================= [11:44:35] [PASSED] reflect-x [11:44:35] [PASSED] reflect-y [11:44:35] [PASSED] rotate-0 [11:44:35] [PASSED] rotate-90 [11:44:35] [PASSED] rotate-180 [11:44:35] [PASSED] rotate-270 [11:44:35] ============ [PASSED] drm_test_rect_rotate_inv ============= [11:44:35] ==================== [PASSED] drm_rect ===================== [11:44:35] ============ drm_sysfb_modeset_test (1 subtest) ============ [11:44:35] ============ drm_test_sysfb_build_fourcc_list ============= [11:44:35] [PASSED] no native formats [11:44:35] [PASSED] XRGB8888 as native format [11:44:35] [PASSED] remove duplicates [11:44:35] [PASSED] convert alpha formats [11:44:35] [PASSED] random formats [11:44:35] ======== [PASSED] drm_test_sysfb_build_fourcc_list ========= [11:44:35] ============= [PASSED] drm_sysfb_modeset_test ============== [11:44:35] ============================================================ [11:44:35] Testing complete. Ran 616 tests: passed: 616 [11:44:35] Elapsed time: 23.505s total, 1.707s configuring, 21.581s building, 0.194s running + /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig [11:44:35] Configuring KUnit Kernel ... Regenerating .config ... Populating config with: $ make ARCH=um O=.kunit olddefconfig [11:44:37] Building KUnit Kernel ... Populating config with: $ make ARCH=um O=.kunit olddefconfig Building with: $ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48 [11:44:45] Starting KUnit Kernel (1/1)... [11:44:45] ============================================================ Running tests with: $ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt [11:44:45] ================= ttm_device (5 subtests) ================== [11:44:45] [PASSED] ttm_device_init_basic [11:44:45] [PASSED] ttm_device_init_multiple [11:44:45] [PASSED] ttm_device_fini_basic [11:44:45] [PASSED] ttm_device_init_no_vma_man [11:44:45] ================== ttm_device_init_pools ================== [11:44:45] [PASSED] No DMA allocations, no DMA32 required [11:44:45] [PASSED] DMA allocations, DMA32 required [11:44:45] [PASSED] No DMA allocations, DMA32 required [11:44:45] [PASSED] DMA allocations, no DMA32 required [11:44:45] ============== [PASSED] ttm_device_init_pools ============== [11:44:45] =================== [PASSED] ttm_device ==================== [11:44:45] ================== ttm_pool (8 subtests) =================== [11:44:45] ================== ttm_pool_alloc_basic =================== [11:44:45] [PASSED] One page [11:44:45] [PASSED] More than one page [11:44:45] [PASSED] Above the allocation limit [11:44:45] [PASSED] One page, with coherent DMA mappings enabled [11:44:45] [PASSED] Above the allocation limit, with coherent DMA mappings enabled [11:44:45] ============== [PASSED] ttm_pool_alloc_basic =============== [11:44:45] ============== ttm_pool_alloc_basic_dma_addr ============== [11:44:45] [PASSED] One page [11:44:45] [PASSED] More than one page [11:44:45] [PASSED] Above the allocation limit [11:44:45] [PASSED] One page, with coherent DMA mappings enabled [11:44:45] [PASSED] Above the allocation limit, with coherent DMA mappings enabled [11:44:45] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ========== [11:44:45] [PASSED] ttm_pool_alloc_order_caching_match [11:44:45] [PASSED] ttm_pool_alloc_caching_mismatch [11:44:45] [PASSED] ttm_pool_alloc_order_mismatch [11:44:45] [PASSED] ttm_pool_free_dma_alloc [11:44:45] [PASSED] ttm_pool_free_no_dma_alloc [11:44:45] [PASSED] ttm_pool_fini_basic [11:44:45] ==================== [PASSED] ttm_pool ===================== [11:44:45] ================ ttm_resource (8 subtests) ================= [11:44:45] ================= ttm_resource_init_basic ================= [11:44:45] [PASSED] Init resource in TTM_PL_SYSTEM [11:44:45] [PASSED] Init resource in TTM_PL_VRAM [11:44:45] [PASSED] Init resource in a private placement [11:44:45] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags [11:44:45] ============= [PASSED] ttm_resource_init_basic ============= [11:44:45] [PASSED] ttm_resource_init_pinned [11:44:45] [PASSED] ttm_resource_fini_basic [11:44:45] [PASSED] ttm_resource_manager_init_basic [11:44:45] [PASSED] ttm_resource_manager_usage_basic [11:44:45] [PASSED] ttm_resource_manager_set_used_basic [11:44:45] [PASSED] ttm_sys_man_alloc_basic [11:44:45] [PASSED] ttm_sys_man_free_basic [11:44:45] ================== [PASSED] ttm_resource =================== [11:44:45] =================== ttm_tt (15 subtests) =================== [11:44:45] ==================== ttm_tt_init_basic ==================== [11:44:45] [PASSED] Page-aligned size [11:44:45] [PASSED] Extra pages requested [11:44:45] ================ [PASSED] ttm_tt_init_basic ================ [11:44:45] [PASSED] ttm_tt_init_misaligned [11:44:45] [PASSED] ttm_tt_fini_basic [11:44:45] [PASSED] ttm_tt_fini_sg [11:44:45] [PASSED] ttm_tt_fini_shmem [11:44:45] [PASSED] ttm_tt_create_basic [11:44:45] [PASSED] ttm_tt_create_invalid_bo_type [11:44:45] [PASSED] ttm_tt_create_ttm_exists [11:44:45] [PASSED] ttm_tt_create_failed [11:44:45] [PASSED] ttm_tt_destroy_basic [11:44:45] [PASSED] ttm_tt_populate_null_ttm [11:44:45] [PASSED] ttm_tt_populate_populated_ttm [11:44:45] [PASSED] ttm_tt_unpopulate_basic [11:44:45] [PASSED] ttm_tt_unpopulate_empty_ttm [11:44:45] [PASSED] ttm_tt_swapin_basic [11:44:45] ===================== [PASSED] ttm_tt ====================== [11:44:45] =================== ttm_bo (14 subtests) =================== [11:44:45] =========== ttm_bo_reserve_optimistic_no_ticket =========== [11:44:45] [PASSED] Cannot be interrupted and sleeps [11:44:45] [PASSED] Cannot be interrupted, locks straight away [11:44:45] [PASSED] Can be interrupted, sleeps [11:44:45] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket ======= [11:44:45] [PASSED] ttm_bo_reserve_locked_no_sleep [11:44:45] [PASSED] ttm_bo_reserve_no_wait_ticket [11:44:45] [PASSED] ttm_bo_reserve_double_resv [11:44:45] [PASSED] ttm_bo_reserve_interrupted [11:44:45] [PASSED] ttm_bo_reserve_deadlock [11:44:45] [PASSED] ttm_bo_unreserve_basic [11:44:45] [PASSED] ttm_bo_unreserve_pinned [11:44:45] [PASSED] ttm_bo_unreserve_bulk [11:44:45] [PASSED] ttm_bo_put_basic [11:44:45] [PASSED] ttm_bo_put_shared_resv [11:44:45] [PASSED] ttm_bo_pin_basic [11:44:45] [PASSED] ttm_bo_pin_unpin_resource [11:44:45] [PASSED] ttm_bo_multiple_pin_one_unpin [11:44:45] ===================== [PASSED] ttm_bo ====================== [11:44:45] ============== ttm_bo_validate (22 subtests) =============== [11:44:45] ============== ttm_bo_init_reserved_sys_man =============== [11:44:45] [PASSED] Buffer object for userspace [11:44:45] [PASSED] Kernel buffer object [11:44:45] [PASSED] Shared buffer object [11:44:45] ========== [PASSED] ttm_bo_init_reserved_sys_man =========== [11:44:45] ============== ttm_bo_init_reserved_mock_man ============== [11:44:45] [PASSED] Buffer object for userspace [11:44:45] [PASSED] Kernel buffer object [11:44:45] [PASSED] Shared buffer object [11:44:45] ========== [PASSED] ttm_bo_init_reserved_mock_man ========== [11:44:45] [PASSED] ttm_bo_init_reserved_resv [11:44:45] ================== ttm_bo_validate_basic ================== [11:44:45] [PASSED] Buffer object for userspace [11:44:45] [PASSED] Kernel buffer object [11:44:45] [PASSED] Shared buffer object [11:44:45] ============== [PASSED] ttm_bo_validate_basic ============== [11:44:45] [PASSED] ttm_bo_validate_invalid_placement [11:44:45] ============= ttm_bo_validate_same_placement ============== [11:44:45] [PASSED] System manager [11:44:45] [PASSED] VRAM manager [11:44:45] ========= [PASSED] ttm_bo_validate_same_placement ========== [11:44:45] [PASSED] ttm_bo_validate_failed_alloc [11:44:45] [PASSED] ttm_bo_validate_pinned [11:44:45] [PASSED] ttm_bo_validate_busy_placement [11:44:45] ================ ttm_bo_validate_multihop ================= [11:44:45] [PASSED] Buffer object for userspace [11:44:45] [PASSED] Kernel buffer object [11:44:45] [PASSED] Shared buffer object [11:44:45] ============ [PASSED] ttm_bo_validate_multihop ============= [11:44:45] ========== ttm_bo_validate_no_placement_signaled ========== [11:44:45] [PASSED] Buffer object in system domain, no page vector [11:44:45] [PASSED] Buffer object in system domain with an existing page vector [11:44:45] ====== [PASSED] ttm_bo_validate_no_placement_signaled ====== [11:44:45] ======== ttm_bo_validate_no_placement_not_signaled ======== [11:44:45] [PASSED] Buffer object for userspace [11:44:45] [PASSED] Kernel buffer object [11:44:45] [PASSED] Shared buffer object [11:44:45] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ==== [11:44:45] [PASSED] ttm_bo_validate_move_fence_signaled [11:44:45] ========= ttm_bo_validate_move_fence_not_signaled ========= [11:44:45] [PASSED] Waits for GPU [11:44:45] [PASSED] Tries to lock straight away [11:44:45] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled ===== [11:44:45] [PASSED] ttm_bo_validate_swapout [11:44:45] [PASSED] ttm_bo_validate_happy_evict [11:44:45] [PASSED] ttm_bo_validate_all_pinned_evict [11:44:45] [PASSED] ttm_bo_validate_allowed_only_evict [11:44:45] [PASSED] ttm_bo_validate_deleted_evict [11:44:45] [PASSED] ttm_bo_validate_busy_domain_evict [11:44:45] [PASSED] ttm_bo_validate_evict_gutting [11:44:45] [PASSED] ttm_bo_validate_recrusive_evict stty: 'standard input': Inappropriate ioctl for device [11:44:45] ================= [PASSED] ttm_bo_validate ================= [11:44:45] ============================================================ [11:44:45] Testing complete. Ran 102 tests: passed: 102 [11:44:46] Elapsed time: 10.256s total, 1.712s configuring, 7.876s building, 0.564s running + cleanup ++ stat -c %u:%g /kernel + chown -R 1003:1003 /kernel ^ permalink raw reply [flat|nested] 5+ messages in thread
* ✗ Xe.CI.Full: failure for drm/i915/wm: reduce stack usage in skl_print_wm_changes() 2025-06-20 11:37 [PATCH] drm/i915/wm: reduce stack usage in skl_print_wm_changes() Arnd Bergmann 2025-06-20 11:43 ` ✗ CI.checkpatch: warning for " Patchwork 2025-06-20 11:44 ` ✓ CI.KUnit: success " Patchwork @ 2025-06-20 21:33 ` Patchwork 2025-06-24 21:16 ` [PATCH] " Rodrigo Vivi 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2025-06-20 21:33 UTC (permalink / raw) To: Arnd Bergmann; +Cc: intel-xe [-- Attachment #1: Type: text/plain, Size: 51157 bytes --] == Series Details == Series: drm/i915/wm: reduce stack usage in skl_print_wm_changes() URL : https://patchwork.freedesktop.org/series/150564/ State : failure == Summary == CI Bug Log - changes from xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968_FULL -> xe-pw-150564v1_FULL ==================================================== Summary ------- **WARNING** Minor unknown changes coming with xe-pw-150564v1_FULL need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in xe-pw-150564v1_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-150564v1_FULL: ### IGT changes ### #### Warnings #### * igt@core_hotunplug@hotreplug-lateclose: - shard-dg2-set2: [SKIP][1] ([Intel XE#4208]) -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-435/igt@core_hotunplug@hotreplug-lateclose.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-435/igt@core_hotunplug@hotreplug-lateclose.html * igt@xe_pm@s2idle-vm-bind-userptr: - shard-dg2-set2: [SKIP][3] ([Intel XE#4208]) -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-435/igt@xe_pm@s2idle-vm-bind-userptr.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-435/igt@xe_pm@s2idle-vm-bind-userptr.html Known issues ------------ Here are the changes found in xe-pw-150564v1_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-d-dp-4-4-rc-ccs-cc: - shard-dg2-set2: NOTRUN -> [SKIP][5] ([Intel XE#3767]) +15 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-434/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-d-dp-4-4-rc-ccs-cc.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][6] ([Intel XE#316]) +2 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-436/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][7] ([Intel XE#3658]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-lnl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#1124]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-lnl-6/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg2-set2: NOTRUN -> [SKIP][9] ([Intel XE#1124]) +9 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#1124]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-bmg-4/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-addfb: - shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#619]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-435/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p: - shard-bmg: [PASS][12] -> [SKIP][13] ([Intel XE#2314] / [Intel XE#2894]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#2191]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-435/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html * igt@kms_bw@linear-tiling-1-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#367]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-466/igt@kms_bw@linear-tiling-1-displays-3840x2160p.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2887]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-bmg-4/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#787]) +90 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-466/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#2907]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-436/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#455] / [Intel XE#787]) +23 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-435/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][20] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][21] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#4418]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-436/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@plane-scaling@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#4416]) +3 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-466/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#306]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-434/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#373]) +8 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-434/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2252]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-bmg-4/igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#307]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-466/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic-type-0: - shard-dg2-set2: NOTRUN -> [FAIL][28] ([Intel XE#1178]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-434/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][29] ([Intel XE#3304]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-434/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html * igt@kms_content_protection@uevent@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][30] ([Intel XE#1188]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-bmg-7/igt@kms_content_protection@uevent@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#308]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-435/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-random-256x85: - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#1424]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-lnl-6/igt@kms_cursor_crc@cursor-random-256x85.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-bmg: [PASS][33] -> [SKIP][34] ([Intel XE#2291]) +4 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-bmg: [PASS][35] -> [SKIP][36] ([Intel XE#1340]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-bmg-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dp_link_training@non-uhbr-mst: - shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#4354]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-434/igt@kms_dp_link_training@non-uhbr-mst.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#776]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-436/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#701]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-434/igt@kms_feature_discovery@chamelium.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-bmg: [PASS][40] -> [SKIP][41] ([Intel XE#2316]) +3 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-1/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [PASS][42] -> [FAIL][43] ([Intel XE#2882]) +1 other test fail [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-2/igt@kms_flip@2x-plain-flip-fb-recreate.html [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-bmg-3/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][44] ([Intel XE#301]) +6 other tests fail [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-adlp: [PASS][45] -> [DMESG-WARN][46] ([Intel XE#2953] / [Intel XE#4173]) +9 other tests dmesg-warn [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-adlp-1/igt@kms_flip@flip-vs-suspend-interruptible.html [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-adlp-2/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@wf_vblank-ts-check@a-edp1: - shard-lnl: [PASS][47] -> [FAIL][48] ([Intel XE#886]) +1 other test fail [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-lnl-7/igt@kms_flip@wf_vblank-ts-check@a-edp1.html [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-lnl-7/igt@kms_flip@wf_vblank-ts-check@a-edp1.html * igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-y: - shard-adlp: [PASS][49] -> [DMESG-FAIL][50] ([Intel XE#4543]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-adlp-1/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-y.html [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-adlp-2/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-y.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#651]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#4141]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2311]) +4 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#651]) +27 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2313]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#653]) +25 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#656]) +2 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_hdmi_inject@inject-audio: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#1470] / [Intel XE#2853]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-lnl-6/igt@kms_hdmi_inject@inject-audio.html * igt@kms_joiner@basic-max-non-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#4298]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-434/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-bmg: [PASS][60] -> [SKIP][61] ([Intel XE#3012]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-3/igt@kms_joiner@invalid-modeset-force-big-joiner.html [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#2925]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-435/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#4359]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-434/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html * igt@kms_plane_cursor@viewport: - shard-adlp: [PASS][64] -> [DMESG-WARN][65] ([Intel XE#3868]) +1 other test dmesg-warn [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-adlp-8/igt@kms_plane_cursor@viewport.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-adlp-3/igt@kms_plane_cursor@viewport.html * igt@kms_plane_scaling@intel-max-src-size: - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#3307]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-lnl-6/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#1489]) +7 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-466/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr@fbc-psr-primary-page-flip: - shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2234] / [Intel XE#2850]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-bmg-7/igt@kms_psr@fbc-psr-primary-page-flip.html * igt@kms_psr@fbc-psr2-sprite-blt: - shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#1406]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-lnl-6/igt@kms_psr@fbc-psr2-sprite-blt.html * igt@kms_psr@fbc-psr2-sprite-blt@edp-1: - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#4609]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-lnl-6/igt@kms_psr@fbc-psr2-sprite-blt@edp-1.html * igt@kms_psr@fbc-psr2-sprite-plane-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#2850] / [Intel XE#929]) +12 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-434/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#3414]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-434/igt@kms_rotation_crc@primary-rotation-270.html * igt@xe_compute_preempt@compute-preempt-many-all-ram@engine-drm_xe_engine_class_compute: - shard-dg2-set2: NOTRUN -> [SKIP][73] ([Intel XE#455]) +12 other tests skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-434/igt@xe_compute_preempt@compute-preempt-many-all-ram@engine-drm_xe_engine_class_compute.html * igt@xe_copy_basic@mem-copy-linear-0x369: - shard-dg2-set2: NOTRUN -> [SKIP][74] ([Intel XE#1123]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-435/igt@xe_copy_basic@mem-copy-linear-0x369.html * igt@xe_copy_basic@mem-set-linear-0xfffe: - shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#1126]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-435/igt@xe_copy_basic@mem-set-linear-0xfffe.html * igt@xe_create@create-big-vram: - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#1062]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-lnl-6/igt@xe_create@create-big-vram.html * igt@xe_eudebug@basic-vm-access-userptr-faultable: - shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#4837]) +9 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-466/igt@xe_eudebug@basic-vm-access-userptr-faultable.html * igt@xe_eudebug_online@reset-with-attention: - shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#4837]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-bmg-4/igt@xe_eudebug_online@reset-with-attention.html * igt@xe_exec_fault_mode@once-invalid-userptr-fault: - shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#288]) +24 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-436/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html * igt@xe_exec_mix_modes@exec-spinner-interrupted-lr: - shard-dg2-set2: NOTRUN -> [SKIP][80] ([Intel XE#2360]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-435/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html * igt@xe_exec_system_allocator@process-many-large-mmap-huge-nomemset: - shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#4943]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-bmg-4/igt@xe_exec_system_allocator@process-many-large-mmap-huge-nomemset.html * igt@xe_exec_system_allocator@threads-many-stride-mmap-remap-eocheck: - shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#4915]) +227 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-434/igt@xe_exec_system_allocator@threads-many-stride-mmap-remap-eocheck.html * igt@xe_oa@oa-tlb-invalidate: - shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#2541] / [Intel XE#3573]) +4 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-466/igt@xe_oa@oa-tlb-invalidate.html * igt@xe_pat@pat-index-xehpc: - shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#2838] / [Intel XE#979]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-466/igt@xe_pat@pat-index-xehpc.html * igt@xe_pm@d3cold-mocs: - shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#2284]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-435/igt@xe_pm@d3cold-mocs.html * igt@xe_pm@s3-vm-bind-unbind-all: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#584]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-lnl-6/igt@xe_pm@s3-vm-bind-unbind-all.html * igt@xe_pm@vram-d3cold-threshold: - shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#579]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-436/igt@xe_pm@vram-d3cold-threshold.html * igt@xe_pxp@pxp-stale-bo-bind-post-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#4733]) +4 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-466/igt@xe_pxp@pxp-stale-bo-bind-post-suspend.html * igt@xe_query@multigpu-query-pxp-status: - shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#944]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-lnl-6/igt@xe_query@multigpu-query-pxp-status.html * igt@xe_render_copy@render-stress-4-copies: - shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#4814]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-435/igt@xe_render_copy@render-stress-4-copies.html * igt@xe_sriov_auto_provisioning@fair-allocation: - shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#4130]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-434/igt@xe_sriov_auto_provisioning@fair-allocation.html * igt@xe_sriov_flr@flr-vf1-clear: - shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#3342]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-466/igt@xe_sriov_flr@flr-vf1-clear.html #### Possible fixes #### * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1: - shard-adlp: [FAIL][93] ([Intel XE#3908]) -> [PASS][94] +1 other test pass [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-adlp-6/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-adlp-1/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4: - shard-dg2-set2: [INCOMPLETE][95] ([Intel XE#3862]) -> [PASS][96] +1 other test pass [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [SKIP][97] ([Intel XE#2291]) -> [PASS][98] +5 other tests pass [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-bmg: [SKIP][99] ([Intel XE#4294]) -> [PASS][100] [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-bmg-3/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_flip@2x-flip-vs-dpms-on-nop: - shard-bmg: [SKIP][101] ([Intel XE#2316]) -> [PASS][102] +2 other tests pass [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms-on-nop.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-bmg-2/igt@kms_flip@2x-flip-vs-dpms-on-nop.html * igt@kms_flip@flip-vs-absolute-wf_vblank@c-edp1: - shard-lnl: [FAIL][103] ([Intel XE#886]) -> [PASS][104] [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-lnl-4/igt@kms_flip@flip-vs-absolute-wf_vblank@c-edp1.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-lnl-8/igt@kms_flip@flip-vs-absolute-wf_vblank@c-edp1.html * igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6: - shard-dg2-set2: [FAIL][105] ([Intel XE#301]) -> [PASS][106] +2 other tests pass [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html * igt@kms_flip@flip-vs-expired-vblank@c-dp4: - shard-dg2-set2: [FAIL][107] ([Intel XE#301] / [Intel XE#3321]) -> [PASS][108] +2 other tests pass [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@c-dp4.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank@c-dp4.html * igt@kms_flip@flip-vs-suspend@d-hdmi-a1: - shard-adlp: [DMESG-WARN][109] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][110] +11 other tests pass [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-adlp-3/igt@kms_flip@flip-vs-suspend@d-hdmi-a1.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-adlp-9/igt@kms_flip@flip-vs-suspend@d-hdmi-a1.html * igt@kms_flip@plain-flip-ts-check@a-hdmi-a3: - shard-bmg: [FAIL][111] ([Intel XE#2882]) -> [PASS][112] +2 other tests pass [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-5/igt@kms_flip@plain-flip-ts-check@a-hdmi-a3.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-bmg-2/igt@kms_flip@plain-flip-ts-check@a-hdmi-a3.html * igt@kms_flip_event_leak@basic: - shard-dg2-set2: [SKIP][113] ([Intel XE#4208] / [i915#2575]) -> [PASS][114] +2 other tests pass [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-435/igt@kms_flip_event_leak@basic.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-435/igt@kms_flip_event_leak@basic.html * igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-to-y: - shard-adlp: [DMESG-FAIL][115] ([Intel XE#4543]) -> [PASS][116] [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-adlp-1/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-to-y.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-adlp-2/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-to-y.html * igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-to-y: - shard-adlp: [FAIL][117] ([Intel XE#1874]) -> [PASS][118] [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-adlp-1/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-to-y.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-adlp-2/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-to-y.html * igt@kms_hdr@invalid-hdr: - shard-bmg: [SKIP][119] ([Intel XE#1503]) -> [PASS][120] [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-5/igt@kms_hdr@invalid-hdr.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-bmg-2/igt@kms_hdr@invalid-hdr.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [FAIL][121] ([Intel XE#4459]) -> [PASS][122] +1 other test pass [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-lnl-2/igt@kms_vrr@cmrr@pipe-a-edp-1.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-lnl-6/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@xe_exec_basic@twice-bindexecqueue: - shard-dg2-set2: [SKIP][123] ([Intel XE#4208]) -> [PASS][124] +3 other tests pass [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-435/igt@xe_exec_basic@twice-bindexecqueue.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-435/igt@xe_exec_basic@twice-bindexecqueue.html * igt@xe_exec_reset@parallel-gt-reset: - shard-dg2-set2: [DMESG-WARN][125] ([Intel XE#3876]) -> [PASS][126] [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-436/igt@xe_exec_reset@parallel-gt-reset.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-435/igt@xe_exec_reset@parallel-gt-reset.html * igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset: - shard-lnl: [FAIL][127] ([Intel XE#5018]) -> [PASS][128] [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-lnl-2/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-lnl-3/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html * igt@xe_module_load@many-reload: - shard-adlp: [DMESG-WARN][129] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#5244]) -> [PASS][130] [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-adlp-3/igt@xe_module_load@many-reload.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-adlp-9/igt@xe_module_load@many-reload.html * igt@xe_oa@oa-exponents: - shard-lnl: [TIMEOUT][131] -> [PASS][132] +1 other test pass [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-lnl-6/igt@xe_oa@oa-exponents.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-lnl-8/igt@xe_oa@oa-exponents.html #### Warnings #### * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-dg2-set2: [SKIP][133] ([Intel XE#4208]) -> [SKIP][134] ([Intel XE#1124]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-435/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-435/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs: - shard-dg2-set2: [SKIP][135] ([Intel XE#4208]) -> [SKIP][136] ([Intel XE#455] / [Intel XE#787]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-435/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-435/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html * igt@kms_content_protection@srm: - shard-bmg: [FAIL][137] ([Intel XE#1178]) -> [SKIP][138] ([Intel XE#2341]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-1/igt@kms_content_protection@srm.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-bmg-5/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent: - shard-bmg: [SKIP][139] ([Intel XE#2341]) -> [FAIL][140] ([Intel XE#1188]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-5/igt@kms_content_protection@uevent.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-bmg-7/igt@kms_content_protection@uevent.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-dg2-set2: [SKIP][141] ([Intel XE#4208]) -> [SKIP][142] ([Intel XE#4331]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-435/igt@kms_dp_linktrain_fallback@dsc-fallback.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-435/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw: - shard-bmg: [SKIP][143] ([Intel XE#2311]) -> [SKIP][144] ([Intel XE#2312]) +12 other tests skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][145] ([Intel XE#2312]) -> [SKIP][146] ([Intel XE#2311]) +14 other tests skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-blt: - shard-dg2-set2: [SKIP][147] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][148] ([Intel XE#651]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-blt.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][149] ([Intel XE#4141]) -> [SKIP][150] ([Intel XE#2312]) +4 other tests skip [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: [SKIP][151] ([Intel XE#2312]) -> [SKIP][152] ([Intel XE#4141]) +10 other tests skip [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-move: - shard-dg2-set2: [SKIP][153] ([Intel XE#4208]) -> [SKIP][154] ([Intel XE#651]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-move.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff: - shard-dg2-set2: [SKIP][155] ([Intel XE#4208]) -> [SKIP][156] ([Intel XE#653]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][157] ([Intel XE#2313]) -> [SKIP][158] ([Intel XE#2312]) +11 other tests skip [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][159] ([Intel XE#2312]) -> [SKIP][160] ([Intel XE#2313]) +14 other tests skip [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_plane_multiple@2x-tiling-y: - shard-bmg: [SKIP][161] ([Intel XE#4596]) -> [SKIP][162] ([Intel XE#5021]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-y.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: [SKIP][163] ([Intel XE#4208]) -> [SKIP][164] ([Intel XE#1489]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-435/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-435/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: [SKIP][165] ([Intel XE#2426]) -> [SKIP][166] ([Intel XE#2509]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-dg2-set2: [SKIP][167] ([Intel XE#4208] / [i915#2575]) -> [SKIP][168] ([Intel XE#455]) [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-435/igt@kms_vrr@seamless-rr-switch-virtual.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-435/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@xe_exec_fault_mode@twice-invalid-fault: - shard-dg2-set2: [SKIP][169] ([Intel XE#4208]) -> [SKIP][170] ([Intel XE#288]) [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-435/igt@xe_exec_fault_mode@twice-invalid-fault.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-435/igt@xe_exec_fault_mode@twice-invalid-fault.html * igt@xe_exec_system_allocator@process-many-mmap-new-nomemset: - shard-dg2-set2: [SKIP][171] ([Intel XE#4208]) -> [SKIP][172] ([Intel XE#4915]) +7 other tests skip [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-435/igt@xe_exec_system_allocator@process-many-mmap-new-nomemset.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-435/igt@xe_exec_system_allocator@process-many-mmap-new-nomemset.html * igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs: - shard-dg2-set2: [SKIP][173] ([Intel XE#4208]) -> [SKIP][174] ([Intel XE#4130]) [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968/shard-dg2-435/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/shard-dg2-435/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1062]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1062 [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#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#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [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#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [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#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658 [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#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [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#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908 [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173 [Intel XE#4208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4208 [Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294 [Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298 [Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331 [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#4359]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4359 [Intel XE#4416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4416 [Intel XE#4418]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4418 [Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459 [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#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814 [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837 [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#5018]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5018 [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021 [Intel XE#5244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5244 [Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300 [Intel XE#5301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5301 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 Build changes ------------- * Linux: xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968 -> xe-pw-150564v1 IGT_8418: 8418 xe-3282-1b4be188ae14a43b901f3005075fab3a22f77968: 1b4be188ae14a43b901f3005075fab3a22f77968 xe-pw-150564v1: 150564v1 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150564v1/index.html [-- Attachment #2: Type: text/html, Size: 58437 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] drm/i915/wm: reduce stack usage in skl_print_wm_changes() 2025-06-20 11:37 [PATCH] drm/i915/wm: reduce stack usage in skl_print_wm_changes() Arnd Bergmann ` (2 preceding siblings ...) 2025-06-20 21:33 ` ✗ Xe.CI.Full: failure " Patchwork @ 2025-06-24 21:16 ` Rodrigo Vivi 3 siblings, 0 replies; 5+ messages in thread From: Rodrigo Vivi @ 2025-06-24 21:16 UTC (permalink / raw) To: Arnd Bergmann Cc: Jani Nikula, Joonas Lahtinen, Tvrtko Ursulin, David Airlie, Simona Vetter, Arnd Bergmann, Ville Syrjälä, Vinod Govindapillai, Suraj Kandpal, Mitul Golani, Stanislav Lisovskiy, intel-gfx, intel-xe, dri-devel, linux-kernel On Fri, Jun 20, 2025 at 01:37:45PM +0200, Arnd Bergmann wrote: > From: Arnd Bergmann <arnd@arndb.de> > > When KMSAN is enabled, this function causes has a rather excessive stack usage: > > drivers/gpu/drm/i915/display/skl_watermark.c:2977:1: error: stack frame size (1432) exceeds limit (1408) in 'skl_compute_wm' [-Werror,-Wframe-larger-than] > > This is apparently all caused by the varargs calls to drm_dbg_kms(). Inlining > this into skl_compute_wm() means that any function called by skl_compute_wm() > has its own stack on top of that. > > Move the worst bit into a separate function marked as noinline_for_stack to > limit that to the one code path that actually needs it. > > Signed-off-by: Arnd Bergmann <arnd@arndb.de> > --- > drivers/gpu/drm/i915/display/skl_watermark.c | 176 ++++++++++--------- > 1 file changed, 92 insertions(+), 84 deletions(-) > > diff --git a/drivers/gpu/drm/i915/display/skl_watermark.c b/drivers/gpu/drm/i915/display/skl_watermark.c > index 2c2371574d6f..b7c92c718c8f 100644 > --- a/drivers/gpu/drm/i915/display/skl_watermark.c > +++ b/drivers/gpu/drm/i915/display/skl_watermark.c > @@ -2680,6 +2680,97 @@ static char enast(bool enable) > return enable ? '*' : ' '; > } > > +static noinline_for_stack void on this I'm mostly trusting you and your compiler, but it looks safe enough... Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> and pushing to drm-intel-next as well... Thanks for all the patches > +skl_print_plane_changes(struct intel_display *display, > + struct intel_plane *plane, > + const struct skl_plane_wm *old_wm, > + const struct skl_plane_wm *new_wm) > +{ > + drm_dbg_kms(display->drm, > + "[PLANE:%d:%s] level %cwm0,%cwm1,%cwm2,%cwm3,%cwm4,%cwm5,%cwm6,%cwm7,%ctwm,%cswm,%cstwm" > + " -> %cwm0,%cwm1,%cwm2,%cwm3,%cwm4,%cwm5,%cwm6,%cwm7,%ctwm,%cswm,%cstwm\n", > + plane->base.base.id, plane->base.name, > + enast(old_wm->wm[0].enable), enast(old_wm->wm[1].enable), > + enast(old_wm->wm[2].enable), enast(old_wm->wm[3].enable), > + enast(old_wm->wm[4].enable), enast(old_wm->wm[5].enable), > + enast(old_wm->wm[6].enable), enast(old_wm->wm[7].enable), > + enast(old_wm->trans_wm.enable), > + enast(old_wm->sagv.wm0.enable), > + enast(old_wm->sagv.trans_wm.enable), > + enast(new_wm->wm[0].enable), enast(new_wm->wm[1].enable), > + enast(new_wm->wm[2].enable), enast(new_wm->wm[3].enable), > + enast(new_wm->wm[4].enable), enast(new_wm->wm[5].enable), > + enast(new_wm->wm[6].enable), enast(new_wm->wm[7].enable), > + enast(new_wm->trans_wm.enable), > + enast(new_wm->sagv.wm0.enable), > + enast(new_wm->sagv.trans_wm.enable)); > + > + drm_dbg_kms(display->drm, > + "[PLANE:%d:%s] lines %c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%4d" > + " -> %c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%4d\n", > + plane->base.base.id, plane->base.name, > + enast(old_wm->wm[0].ignore_lines), old_wm->wm[0].lines, > + enast(old_wm->wm[1].ignore_lines), old_wm->wm[1].lines, > + enast(old_wm->wm[2].ignore_lines), old_wm->wm[2].lines, > + enast(old_wm->wm[3].ignore_lines), old_wm->wm[3].lines, > + enast(old_wm->wm[4].ignore_lines), old_wm->wm[4].lines, > + enast(old_wm->wm[5].ignore_lines), old_wm->wm[5].lines, > + enast(old_wm->wm[6].ignore_lines), old_wm->wm[6].lines, > + enast(old_wm->wm[7].ignore_lines), old_wm->wm[7].lines, > + enast(old_wm->trans_wm.ignore_lines), old_wm->trans_wm.lines, > + enast(old_wm->sagv.wm0.ignore_lines), old_wm->sagv.wm0.lines, > + enast(old_wm->sagv.trans_wm.ignore_lines), old_wm->sagv.trans_wm.lines, > + enast(new_wm->wm[0].ignore_lines), new_wm->wm[0].lines, > + enast(new_wm->wm[1].ignore_lines), new_wm->wm[1].lines, > + enast(new_wm->wm[2].ignore_lines), new_wm->wm[2].lines, > + enast(new_wm->wm[3].ignore_lines), new_wm->wm[3].lines, > + enast(new_wm->wm[4].ignore_lines), new_wm->wm[4].lines, > + enast(new_wm->wm[5].ignore_lines), new_wm->wm[5].lines, > + enast(new_wm->wm[6].ignore_lines), new_wm->wm[6].lines, > + enast(new_wm->wm[7].ignore_lines), new_wm->wm[7].lines, > + enast(new_wm->trans_wm.ignore_lines), new_wm->trans_wm.lines, > + enast(new_wm->sagv.wm0.ignore_lines), new_wm->sagv.wm0.lines, > + enast(new_wm->sagv.trans_wm.ignore_lines), new_wm->sagv.trans_wm.lines); > + > + drm_dbg_kms(display->drm, > + "[PLANE:%d:%s] blocks %4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%5d" > + " -> %4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%5d\n", > + plane->base.base.id, plane->base.name, > + old_wm->wm[0].blocks, old_wm->wm[1].blocks, > + old_wm->wm[2].blocks, old_wm->wm[3].blocks, > + old_wm->wm[4].blocks, old_wm->wm[5].blocks, > + old_wm->wm[6].blocks, old_wm->wm[7].blocks, > + old_wm->trans_wm.blocks, > + old_wm->sagv.wm0.blocks, > + old_wm->sagv.trans_wm.blocks, > + new_wm->wm[0].blocks, new_wm->wm[1].blocks, > + new_wm->wm[2].blocks, new_wm->wm[3].blocks, > + new_wm->wm[4].blocks, new_wm->wm[5].blocks, > + new_wm->wm[6].blocks, new_wm->wm[7].blocks, > + new_wm->trans_wm.blocks, > + new_wm->sagv.wm0.blocks, > + new_wm->sagv.trans_wm.blocks); > + > + drm_dbg_kms(display->drm, > + "[PLANE:%d:%s] min_ddb %4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%5d" > + " -> %4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%5d\n", > + plane->base.base.id, plane->base.name, > + old_wm->wm[0].min_ddb_alloc, old_wm->wm[1].min_ddb_alloc, > + old_wm->wm[2].min_ddb_alloc, old_wm->wm[3].min_ddb_alloc, > + old_wm->wm[4].min_ddb_alloc, old_wm->wm[5].min_ddb_alloc, > + old_wm->wm[6].min_ddb_alloc, old_wm->wm[7].min_ddb_alloc, > + old_wm->trans_wm.min_ddb_alloc, > + old_wm->sagv.wm0.min_ddb_alloc, > + old_wm->sagv.trans_wm.min_ddb_alloc, > + new_wm->wm[0].min_ddb_alloc, new_wm->wm[1].min_ddb_alloc, > + new_wm->wm[2].min_ddb_alloc, new_wm->wm[3].min_ddb_alloc, > + new_wm->wm[4].min_ddb_alloc, new_wm->wm[5].min_ddb_alloc, > + new_wm->wm[6].min_ddb_alloc, new_wm->wm[7].min_ddb_alloc, > + new_wm->trans_wm.min_ddb_alloc, > + new_wm->sagv.wm0.min_ddb_alloc, > + new_wm->sagv.trans_wm.min_ddb_alloc); > +} > + > static void > skl_print_wm_changes(struct intel_atomic_state *state) > { > @@ -2709,7 +2800,6 @@ skl_print_wm_changes(struct intel_atomic_state *state) > > if (skl_ddb_entry_equal(old, new)) > continue; > - > drm_dbg_kms(display->drm, > "[PLANE:%d:%s] ddb (%4d - %4d) -> (%4d - %4d), size %4d -> %4d\n", > plane->base.base.id, plane->base.name, > @@ -2727,89 +2817,7 @@ skl_print_wm_changes(struct intel_atomic_state *state) > if (skl_plane_wm_equals(display, old_wm, new_wm)) > continue; > > - drm_dbg_kms(display->drm, > - "[PLANE:%d:%s] level %cwm0,%cwm1,%cwm2,%cwm3,%cwm4,%cwm5,%cwm6,%cwm7,%ctwm,%cswm,%cstwm" > - " -> %cwm0,%cwm1,%cwm2,%cwm3,%cwm4,%cwm5,%cwm6,%cwm7,%ctwm,%cswm,%cstwm\n", > - plane->base.base.id, plane->base.name, > - enast(old_wm->wm[0].enable), enast(old_wm->wm[1].enable), > - enast(old_wm->wm[2].enable), enast(old_wm->wm[3].enable), > - enast(old_wm->wm[4].enable), enast(old_wm->wm[5].enable), > - enast(old_wm->wm[6].enable), enast(old_wm->wm[7].enable), > - enast(old_wm->trans_wm.enable), > - enast(old_wm->sagv.wm0.enable), > - enast(old_wm->sagv.trans_wm.enable), > - enast(new_wm->wm[0].enable), enast(new_wm->wm[1].enable), > - enast(new_wm->wm[2].enable), enast(new_wm->wm[3].enable), > - enast(new_wm->wm[4].enable), enast(new_wm->wm[5].enable), > - enast(new_wm->wm[6].enable), enast(new_wm->wm[7].enable), > - enast(new_wm->trans_wm.enable), > - enast(new_wm->sagv.wm0.enable), > - enast(new_wm->sagv.trans_wm.enable)); > - > - drm_dbg_kms(display->drm, > - "[PLANE:%d:%s] lines %c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%4d" > - " -> %c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%4d\n", > - plane->base.base.id, plane->base.name, > - enast(old_wm->wm[0].ignore_lines), old_wm->wm[0].lines, > - enast(old_wm->wm[1].ignore_lines), old_wm->wm[1].lines, > - enast(old_wm->wm[2].ignore_lines), old_wm->wm[2].lines, > - enast(old_wm->wm[3].ignore_lines), old_wm->wm[3].lines, > - enast(old_wm->wm[4].ignore_lines), old_wm->wm[4].lines, > - enast(old_wm->wm[5].ignore_lines), old_wm->wm[5].lines, > - enast(old_wm->wm[6].ignore_lines), old_wm->wm[6].lines, > - enast(old_wm->wm[7].ignore_lines), old_wm->wm[7].lines, > - enast(old_wm->trans_wm.ignore_lines), old_wm->trans_wm.lines, > - enast(old_wm->sagv.wm0.ignore_lines), old_wm->sagv.wm0.lines, > - enast(old_wm->sagv.trans_wm.ignore_lines), old_wm->sagv.trans_wm.lines, > - enast(new_wm->wm[0].ignore_lines), new_wm->wm[0].lines, > - enast(new_wm->wm[1].ignore_lines), new_wm->wm[1].lines, > - enast(new_wm->wm[2].ignore_lines), new_wm->wm[2].lines, > - enast(new_wm->wm[3].ignore_lines), new_wm->wm[3].lines, > - enast(new_wm->wm[4].ignore_lines), new_wm->wm[4].lines, > - enast(new_wm->wm[5].ignore_lines), new_wm->wm[5].lines, > - enast(new_wm->wm[6].ignore_lines), new_wm->wm[6].lines, > - enast(new_wm->wm[7].ignore_lines), new_wm->wm[7].lines, > - enast(new_wm->trans_wm.ignore_lines), new_wm->trans_wm.lines, > - enast(new_wm->sagv.wm0.ignore_lines), new_wm->sagv.wm0.lines, > - enast(new_wm->sagv.trans_wm.ignore_lines), new_wm->sagv.trans_wm.lines); > - > - drm_dbg_kms(display->drm, > - "[PLANE:%d:%s] blocks %4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%5d" > - " -> %4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%5d\n", > - plane->base.base.id, plane->base.name, > - old_wm->wm[0].blocks, old_wm->wm[1].blocks, > - old_wm->wm[2].blocks, old_wm->wm[3].blocks, > - old_wm->wm[4].blocks, old_wm->wm[5].blocks, > - old_wm->wm[6].blocks, old_wm->wm[7].blocks, > - old_wm->trans_wm.blocks, > - old_wm->sagv.wm0.blocks, > - old_wm->sagv.trans_wm.blocks, > - new_wm->wm[0].blocks, new_wm->wm[1].blocks, > - new_wm->wm[2].blocks, new_wm->wm[3].blocks, > - new_wm->wm[4].blocks, new_wm->wm[5].blocks, > - new_wm->wm[6].blocks, new_wm->wm[7].blocks, > - new_wm->trans_wm.blocks, > - new_wm->sagv.wm0.blocks, > - new_wm->sagv.trans_wm.blocks); > - > - drm_dbg_kms(display->drm, > - "[PLANE:%d:%s] min_ddb %4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%5d" > - " -> %4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%5d\n", > - plane->base.base.id, plane->base.name, > - old_wm->wm[0].min_ddb_alloc, old_wm->wm[1].min_ddb_alloc, > - old_wm->wm[2].min_ddb_alloc, old_wm->wm[3].min_ddb_alloc, > - old_wm->wm[4].min_ddb_alloc, old_wm->wm[5].min_ddb_alloc, > - old_wm->wm[6].min_ddb_alloc, old_wm->wm[7].min_ddb_alloc, > - old_wm->trans_wm.min_ddb_alloc, > - old_wm->sagv.wm0.min_ddb_alloc, > - old_wm->sagv.trans_wm.min_ddb_alloc, > - new_wm->wm[0].min_ddb_alloc, new_wm->wm[1].min_ddb_alloc, > - new_wm->wm[2].min_ddb_alloc, new_wm->wm[3].min_ddb_alloc, > - new_wm->wm[4].min_ddb_alloc, new_wm->wm[5].min_ddb_alloc, > - new_wm->wm[6].min_ddb_alloc, new_wm->wm[7].min_ddb_alloc, > - new_wm->trans_wm.min_ddb_alloc, > - new_wm->sagv.wm0.min_ddb_alloc, > - new_wm->sagv.trans_wm.min_ddb_alloc); > + skl_print_plane_changes(display, plane, old_wm, new_wm); > } > } > } > -- > 2.39.5 > ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2025-06-24 21:17 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-06-20 11:37 [PATCH] drm/i915/wm: reduce stack usage in skl_print_wm_changes() Arnd Bergmann 2025-06-20 11:43 ` ✗ CI.checkpatch: warning for " Patchwork 2025-06-20 11:44 ` ✓ CI.KUnit: success " Patchwork 2025-06-20 21:33 ` ✗ Xe.CI.Full: failure " Patchwork 2025-06-24 21:16 ` [PATCH] " Rodrigo Vivi
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox