* [PATCH] [RFC]: drm/i915/display: Use ceiling division for NV12 UV surface offset calculation
@ 2026-04-11 17:15 Vidya Srinivas
2026-04-11 17:27 ` ✓ CI.KUnit: success for : " Patchwork
` (12 more replies)
0 siblings, 13 replies; 22+ messages in thread
From: Vidya Srinivas @ 2026-04-11 17:15 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe, Vidya Srinivas
For LNL+, odd source size and panning for YUV 422/420 surfaces is
supported. However, it requires the UV (chroma) surface Start X/Y and
width/height to be calculated as ceiling(half of Y plane value) rather
than floor. The current code uses (>> 17) which is floor division. For
odd Y plane values this produces an off-by-one error in the UV plane
offset.
On Android systems we see PLANE ATS fault when NV12 overlays are
used with odd source dimensions:
[ 126.854200] xe 0000:00:02.0: [drm:intel_atomic_setup_scaler [xe]] [CRTC:148:pipe A] attached scaler id 0.0 to PLANE:33
[ 126.854617] xe 0000:00:02.0: [drm:skl_update_scaler [xe]] [CRTC:148:pipe A] scaler_user index 0.0: staged scaling request for 1279x719->1340x753
[ 126.854837] xe 0000:00:02.0: [drm:intel_plane_atomic_check [xe]] UV plane [PLANE:33:plane 1A] using Y plane [PLANE:123:plane 4A]
[ 126.854926] xe 0000:00:02.0: [drm] *ERROR* [CRTC:148:pipe A] PLANE ATS fault
With Y plane width 1279:
floor(1279/2) = 639 (current)
ceil(1279/2) = 640 (required)
Change the UV offset/size calculation to use ceiling division by adding
(1 << 17) - 1 before shifting. This is a no-op for even values since
ceiling and floor are equal when the dividend is even.
Signed-off-by: Vidya Srinivas <vidya.srinivas@intel.com>
---
drivers/gpu/drm/i915/display/skl_universal_plane.c | 14 ++++++++++----
1 file changed, 10 insertions(+), 4 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/skl_universal_plane.c b/drivers/gpu/drm/i915/display/skl_universal_plane.c
index 7a9d494334b5..c455bf92ae99 100644
--- a/drivers/gpu/drm/i915/display/skl_universal_plane.c
+++ b/drivers/gpu/drm/i915/display/skl_universal_plane.c
@@ -2139,10 +2139,16 @@ static int skl_check_nv12_aux_surface(struct intel_plane_state *plane_state)
int min_height = intel_plane_min_height(plane, fb, uv_plane, rotation);
int max_width = intel_plane_max_width(plane, fb, uv_plane, rotation);
int max_height = intel_plane_max_height(plane, fb, uv_plane, rotation);
- int x = plane_state->uapi.src.x1 >> 17;
- int y = plane_state->uapi.src.y1 >> 17;
- int w = drm_rect_width(&plane_state->uapi.src) >> 17;
- int h = drm_rect_height(&plane_state->uapi.src) >> 17;
+
+ /*
+ * LNL+ UV surface start/size =
+ * ceiling(half of Y plane start/size). Use ceiling division
+ * unconditionally; it is a no-op for even values.
+ */
+ int x = (plane_state->uapi.src.x1 + (1 << 17) - 1) >> 17;
+ int y = (plane_state->uapi.src.y1 + (1 << 17) - 1) >> 17;
+ int w = (drm_rect_width(&plane_state->uapi.src) + (1 << 17) - 1) >> 17;
+ int h = (drm_rect_height(&plane_state->uapi.src) + (1 << 17) - 1) >> 17;
u32 offset;
/* FIXME not quite sure how/if these apply to the chroma plane */
--
2.45.2
^ permalink raw reply related [flat|nested] 22+ messages in thread
* ✓ CI.KUnit: success for : drm/i915/display: Use ceiling division for NV12 UV surface offset calculation
2026-04-11 17:15 [PATCH] [RFC]: drm/i915/display: Use ceiling division for NV12 UV surface offset calculation Vidya Srinivas
@ 2026-04-11 17:27 ` Patchwork
2026-04-11 18:14 ` ✓ Xe.CI.BAT: " Patchwork
` (11 subsequent siblings)
12 siblings, 0 replies; 22+ messages in thread
From: Patchwork @ 2026-04-11 17:27 UTC (permalink / raw)
To: Vidya Srinivas; +Cc: intel-xe
== Series Details ==
Series: : drm/i915/display: Use ceiling division for NV12 UV surface offset calculation
URL : https://patchwork.freedesktop.org/series/164739/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[17:26:15] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[17:26:19] 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
[17:26:50] Starting KUnit Kernel (1/1)...
[17:26:50] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[17:26:51] ================== guc_buf (11 subtests) ===================
[17:26:51] [PASSED] test_smallest
[17:26:51] [PASSED] test_largest
[17:26:51] [PASSED] test_granular
[17:26:51] [PASSED] test_unique
[17:26:51] [PASSED] test_overlap
[17:26:51] [PASSED] test_reusable
[17:26:51] [PASSED] test_too_big
[17:26:51] [PASSED] test_flush
[17:26:51] [PASSED] test_lookup
[17:26:51] [PASSED] test_data
[17:26:51] [PASSED] test_class
[17:26:51] ===================== [PASSED] guc_buf =====================
[17:26:51] =================== guc_dbm (7 subtests) ===================
[17:26:51] [PASSED] test_empty
[17:26:51] [PASSED] test_default
[17:26:51] ======================== test_size ========================
[17:26:51] [PASSED] 4
[17:26:51] [PASSED] 8
[17:26:51] [PASSED] 32
[17:26:51] [PASSED] 256
[17:26:51] ==================== [PASSED] test_size ====================
[17:26:51] ======================= test_reuse ========================
[17:26:51] [PASSED] 4
[17:26:51] [PASSED] 8
[17:26:51] [PASSED] 32
[17:26:51] [PASSED] 256
[17:26:51] =================== [PASSED] test_reuse ====================
[17:26:51] =================== test_range_overlap ====================
[17:26:51] [PASSED] 4
[17:26:51] [PASSED] 8
[17:26:51] [PASSED] 32
[17:26:51] [PASSED] 256
[17:26:51] =============== [PASSED] test_range_overlap ================
[17:26:51] =================== test_range_compact ====================
[17:26:51] [PASSED] 4
[17:26:51] [PASSED] 8
[17:26:51] [PASSED] 32
[17:26:51] [PASSED] 256
[17:26:51] =============== [PASSED] test_range_compact ================
[17:26:51] ==================== test_range_spare =====================
[17:26:51] [PASSED] 4
[17:26:51] [PASSED] 8
[17:26:51] [PASSED] 32
[17:26:51] [PASSED] 256
[17:26:51] ================ [PASSED] test_range_spare =================
[17:26:51] ===================== [PASSED] guc_dbm =====================
[17:26:51] =================== guc_idm (6 subtests) ===================
[17:26:51] [PASSED] bad_init
[17:26:51] [PASSED] no_init
[17:26:51] [PASSED] init_fini
[17:26:51] [PASSED] check_used
[17:26:51] [PASSED] check_quota
[17:26:51] [PASSED] check_all
[17:26:51] ===================== [PASSED] guc_idm =====================
[17:26:51] ================== no_relay (3 subtests) ===================
[17:26:51] [PASSED] xe_drops_guc2pf_if_not_ready
[17:26:51] [PASSED] xe_drops_guc2vf_if_not_ready
[17:26:51] [PASSED] xe_rejects_send_if_not_ready
[17:26:51] ==================== [PASSED] no_relay =====================
[17:26:51] ================== pf_relay (14 subtests) ==================
[17:26:51] [PASSED] pf_rejects_guc2pf_too_short
[17:26:51] [PASSED] pf_rejects_guc2pf_too_long
[17:26:51] [PASSED] pf_rejects_guc2pf_no_payload
[17:26:51] [PASSED] pf_fails_no_payload
[17:26:51] [PASSED] pf_fails_bad_origin
[17:26:51] [PASSED] pf_fails_bad_type
[17:26:51] [PASSED] pf_txn_reports_error
[17:26:51] [PASSED] pf_txn_sends_pf2guc
[17:26:51] [PASSED] pf_sends_pf2guc
[17:26:51] [SKIPPED] pf_loopback_nop
[17:26:51] [SKIPPED] pf_loopback_echo
[17:26:51] [SKIPPED] pf_loopback_fail
[17:26:51] [SKIPPED] pf_loopback_busy
[17:26:51] [SKIPPED] pf_loopback_retry
[17:26:51] ==================== [PASSED] pf_relay =====================
[17:26:51] ================== vf_relay (3 subtests) ===================
[17:26:51] [PASSED] vf_rejects_guc2vf_too_short
[17:26:51] [PASSED] vf_rejects_guc2vf_too_long
[17:26:51] [PASSED] vf_rejects_guc2vf_no_payload
[17:26:51] ==================== [PASSED] vf_relay =====================
[17:26:51] ================ pf_gt_config (9 subtests) =================
[17:26:51] [PASSED] fair_contexts_1vf
[17:26:51] [PASSED] fair_doorbells_1vf
[17:26:51] [PASSED] fair_ggtt_1vf
[17:26:51] ====================== fair_vram_1vf ======================
[17:26:51] [PASSED] 3.50 GiB
[17:26:51] [PASSED] 11.5 GiB
[17:26:51] [PASSED] 15.5 GiB
[17:26:51] [PASSED] 31.5 GiB
[17:26:51] [PASSED] 63.5 GiB
[17:26:51] [PASSED] 1.91 GiB
[17:26:51] ================== [PASSED] fair_vram_1vf ==================
[17:26:51] ================ fair_vram_1vf_admin_only =================
[17:26:51] [PASSED] 3.50 GiB
[17:26:51] [PASSED] 11.5 GiB
[17:26:51] [PASSED] 15.5 GiB
[17:26:51] [PASSED] 31.5 GiB
[17:26:51] [PASSED] 63.5 GiB
[17:26:51] [PASSED] 1.91 GiB
[17:26:51] ============ [PASSED] fair_vram_1vf_admin_only =============
[17:26:51] ====================== fair_contexts ======================
[17:26:51] [PASSED] 1 VF
[17:26:51] [PASSED] 2 VFs
[17:26:51] [PASSED] 3 VFs
[17:26:51] [PASSED] 4 VFs
[17:26:51] [PASSED] 5 VFs
[17:26:51] [PASSED] 6 VFs
[17:26:51] [PASSED] 7 VFs
[17:26:51] [PASSED] 8 VFs
[17:26:51] [PASSED] 9 VFs
[17:26:51] [PASSED] 10 VFs
[17:26:51] [PASSED] 11 VFs
[17:26:51] [PASSED] 12 VFs
[17:26:51] [PASSED] 13 VFs
[17:26:51] [PASSED] 14 VFs
[17:26:51] [PASSED] 15 VFs
[17:26:51] [PASSED] 16 VFs
[17:26:51] [PASSED] 17 VFs
[17:26:51] [PASSED] 18 VFs
[17:26:51] [PASSED] 19 VFs
[17:26:51] [PASSED] 20 VFs
[17:26:51] [PASSED] 21 VFs
[17:26:51] [PASSED] 22 VFs
[17:26:51] [PASSED] 23 VFs
[17:26:51] [PASSED] 24 VFs
[17:26:51] [PASSED] 25 VFs
[17:26:51] [PASSED] 26 VFs
[17:26:51] [PASSED] 27 VFs
[17:26:51] [PASSED] 28 VFs
[17:26:51] [PASSED] 29 VFs
[17:26:51] [PASSED] 30 VFs
[17:26:51] [PASSED] 31 VFs
[17:26:51] [PASSED] 32 VFs
[17:26:51] [PASSED] 33 VFs
[17:26:51] [PASSED] 34 VFs
[17:26:51] [PASSED] 35 VFs
[17:26:51] [PASSED] 36 VFs
[17:26:51] [PASSED] 37 VFs
[17:26:51] [PASSED] 38 VFs
[17:26:51] [PASSED] 39 VFs
[17:26:51] [PASSED] 40 VFs
[17:26:51] [PASSED] 41 VFs
[17:26:51] [PASSED] 42 VFs
[17:26:51] [PASSED] 43 VFs
[17:26:51] [PASSED] 44 VFs
[17:26:51] [PASSED] 45 VFs
[17:26:51] [PASSED] 46 VFs
[17:26:51] [PASSED] 47 VFs
[17:26:51] [PASSED] 48 VFs
[17:26:51] [PASSED] 49 VFs
[17:26:51] [PASSED] 50 VFs
[17:26:51] [PASSED] 51 VFs
[17:26:51] [PASSED] 52 VFs
[17:26:51] [PASSED] 53 VFs
[17:26:51] [PASSED] 54 VFs
[17:26:51] [PASSED] 55 VFs
[17:26:51] [PASSED] 56 VFs
[17:26:51] [PASSED] 57 VFs
[17:26:51] [PASSED] 58 VFs
[17:26:51] [PASSED] 59 VFs
[17:26:51] [PASSED] 60 VFs
[17:26:51] [PASSED] 61 VFs
[17:26:51] [PASSED] 62 VFs
[17:26:51] [PASSED] 63 VFs
[17:26:51] ================== [PASSED] fair_contexts ==================
[17:26:51] ===================== fair_doorbells ======================
[17:26:51] [PASSED] 1 VF
[17:26:51] [PASSED] 2 VFs
[17:26:51] [PASSED] 3 VFs
[17:26:51] [PASSED] 4 VFs
[17:26:51] [PASSED] 5 VFs
[17:26:51] [PASSED] 6 VFs
[17:26:51] [PASSED] 7 VFs
[17:26:51] [PASSED] 8 VFs
[17:26:51] [PASSED] 9 VFs
[17:26:51] [PASSED] 10 VFs
[17:26:51] [PASSED] 11 VFs
[17:26:51] [PASSED] 12 VFs
[17:26:51] [PASSED] 13 VFs
[17:26:51] [PASSED] 14 VFs
[17:26:51] [PASSED] 15 VFs
[17:26:51] [PASSED] 16 VFs
[17:26:51] [PASSED] 17 VFs
[17:26:51] [PASSED] 18 VFs
[17:26:51] [PASSED] 19 VFs
[17:26:51] [PASSED] 20 VFs
[17:26:51] [PASSED] 21 VFs
[17:26:51] [PASSED] 22 VFs
[17:26:51] [PASSED] 23 VFs
[17:26:51] [PASSED] 24 VFs
[17:26:51] [PASSED] 25 VFs
[17:26:51] [PASSED] 26 VFs
[17:26:51] [PASSED] 27 VFs
[17:26:51] [PASSED] 28 VFs
[17:26:51] [PASSED] 29 VFs
[17:26:51] [PASSED] 30 VFs
[17:26:51] [PASSED] 31 VFs
[17:26:51] [PASSED] 32 VFs
[17:26:51] [PASSED] 33 VFs
[17:26:51] [PASSED] 34 VFs
[17:26:51] [PASSED] 35 VFs
[17:26:51] [PASSED] 36 VFs
[17:26:51] [PASSED] 37 VFs
[17:26:51] [PASSED] 38 VFs
[17:26:51] [PASSED] 39 VFs
[17:26:51] [PASSED] 40 VFs
[17:26:51] [PASSED] 41 VFs
[17:26:51] [PASSED] 42 VFs
[17:26:51] [PASSED] 43 VFs
[17:26:51] [PASSED] 44 VFs
[17:26:51] [PASSED] 45 VFs
[17:26:51] [PASSED] 46 VFs
[17:26:51] [PASSED] 47 VFs
[17:26:51] [PASSED] 48 VFs
[17:26:51] [PASSED] 49 VFs
[17:26:51] [PASSED] 50 VFs
[17:26:51] [PASSED] 51 VFs
[17:26:51] [PASSED] 52 VFs
[17:26:51] [PASSED] 53 VFs
[17:26:51] [PASSED] 54 VFs
[17:26:51] [PASSED] 55 VFs
[17:26:51] [PASSED] 56 VFs
[17:26:51] [PASSED] 57 VFs
[17:26:51] [PASSED] 58 VFs
[17:26:51] [PASSED] 59 VFs
[17:26:51] [PASSED] 60 VFs
[17:26:51] [PASSED] 61 VFs
[17:26:51] [PASSED] 62 VFs
[17:26:51] [PASSED] 63 VFs
[17:26:51] ================= [PASSED] fair_doorbells ==================
[17:26:51] ======================== fair_ggtt ========================
[17:26:51] [PASSED] 1 VF
[17:26:51] [PASSED] 2 VFs
[17:26:51] [PASSED] 3 VFs
[17:26:51] [PASSED] 4 VFs
[17:26:51] [PASSED] 5 VFs
[17:26:51] [PASSED] 6 VFs
[17:26:51] [PASSED] 7 VFs
[17:26:51] [PASSED] 8 VFs
[17:26:51] [PASSED] 9 VFs
[17:26:51] [PASSED] 10 VFs
[17:26:51] [PASSED] 11 VFs
[17:26:51] [PASSED] 12 VFs
[17:26:51] [PASSED] 13 VFs
[17:26:51] [PASSED] 14 VFs
[17:26:51] [PASSED] 15 VFs
[17:26:51] [PASSED] 16 VFs
[17:26:51] [PASSED] 17 VFs
[17:26:51] [PASSED] 18 VFs
[17:26:51] [PASSED] 19 VFs
[17:26:51] [PASSED] 20 VFs
[17:26:51] [PASSED] 21 VFs
[17:26:51] [PASSED] 22 VFs
[17:26:51] [PASSED] 23 VFs
[17:26:51] [PASSED] 24 VFs
[17:26:51] [PASSED] 25 VFs
[17:26:51] [PASSED] 26 VFs
[17:26:51] [PASSED] 27 VFs
[17:26:51] [PASSED] 28 VFs
[17:26:51] [PASSED] 29 VFs
[17:26:51] [PASSED] 30 VFs
[17:26:51] [PASSED] 31 VFs
[17:26:51] [PASSED] 32 VFs
[17:26:51] [PASSED] 33 VFs
[17:26:51] [PASSED] 34 VFs
[17:26:51] [PASSED] 35 VFs
[17:26:51] [PASSED] 36 VFs
[17:26:51] [PASSED] 37 VFs
[17:26:51] [PASSED] 38 VFs
[17:26:51] [PASSED] 39 VFs
[17:26:51] [PASSED] 40 VFs
[17:26:51] [PASSED] 41 VFs
[17:26:51] [PASSED] 42 VFs
[17:26:51] [PASSED] 43 VFs
[17:26:51] [PASSED] 44 VFs
[17:26:51] [PASSED] 45 VFs
[17:26:51] [PASSED] 46 VFs
[17:26:51] [PASSED] 47 VFs
[17:26:51] [PASSED] 48 VFs
[17:26:51] [PASSED] 49 VFs
[17:26:51] [PASSED] 50 VFs
[17:26:51] [PASSED] 51 VFs
[17:26:51] [PASSED] 52 VFs
[17:26:51] [PASSED] 53 VFs
[17:26:51] [PASSED] 54 VFs
[17:26:51] [PASSED] 55 VFs
[17:26:51] [PASSED] 56 VFs
[17:26:51] [PASSED] 57 VFs
[17:26:51] [PASSED] 58 VFs
[17:26:51] [PASSED] 59 VFs
[17:26:51] [PASSED] 60 VFs
[17:26:51] [PASSED] 61 VFs
[17:26:51] [PASSED] 62 VFs
[17:26:51] [PASSED] 63 VFs
[17:26:51] ==================== [PASSED] fair_ggtt ====================
[17:26:51] ======================== fair_vram ========================
[17:26:51] [PASSED] 1 VF
[17:26:51] [PASSED] 2 VFs
[17:26:51] [PASSED] 3 VFs
[17:26:51] [PASSED] 4 VFs
[17:26:51] [PASSED] 5 VFs
[17:26:51] [PASSED] 6 VFs
[17:26:51] [PASSED] 7 VFs
[17:26:51] [PASSED] 8 VFs
[17:26:51] [PASSED] 9 VFs
[17:26:51] [PASSED] 10 VFs
[17:26:51] [PASSED] 11 VFs
[17:26:51] [PASSED] 12 VFs
[17:26:51] [PASSED] 13 VFs
[17:26:51] [PASSED] 14 VFs
[17:26:51] [PASSED] 15 VFs
[17:26:51] [PASSED] 16 VFs
[17:26:51] [PASSED] 17 VFs
[17:26:51] [PASSED] 18 VFs
[17:26:51] [PASSED] 19 VFs
[17:26:51] [PASSED] 20 VFs
[17:26:51] [PASSED] 21 VFs
[17:26:51] [PASSED] 22 VFs
[17:26:51] [PASSED] 23 VFs
[17:26:51] [PASSED] 24 VFs
[17:26:51] [PASSED] 25 VFs
[17:26:51] [PASSED] 26 VFs
[17:26:51] [PASSED] 27 VFs
[17:26:51] [PASSED] 28 VFs
[17:26:51] [PASSED] 29 VFs
[17:26:51] [PASSED] 30 VFs
[17:26:51] [PASSED] 31 VFs
[17:26:51] [PASSED] 32 VFs
[17:26:51] [PASSED] 33 VFs
[17:26:51] [PASSED] 34 VFs
[17:26:51] [PASSED] 35 VFs
[17:26:51] [PASSED] 36 VFs
[17:26:51] [PASSED] 37 VFs
[17:26:51] [PASSED] 38 VFs
[17:26:51] [PASSED] 39 VFs
[17:26:51] [PASSED] 40 VFs
[17:26:51] [PASSED] 41 VFs
[17:26:51] [PASSED] 42 VFs
[17:26:51] [PASSED] 43 VFs
[17:26:51] [PASSED] 44 VFs
[17:26:51] [PASSED] 45 VFs
[17:26:51] [PASSED] 46 VFs
[17:26:51] [PASSED] 47 VFs
[17:26:51] [PASSED] 48 VFs
[17:26:51] [PASSED] 49 VFs
[17:26:51] [PASSED] 50 VFs
[17:26:51] [PASSED] 51 VFs
[17:26:51] [PASSED] 52 VFs
[17:26:51] [PASSED] 53 VFs
[17:26:51] [PASSED] 54 VFs
[17:26:51] [PASSED] 55 VFs
[17:26:51] [PASSED] 56 VFs
[17:26:51] [PASSED] 57 VFs
[17:26:51] [PASSED] 58 VFs
[17:26:51] [PASSED] 59 VFs
[17:26:51] [PASSED] 60 VFs
[17:26:51] [PASSED] 61 VFs
[17:26:51] [PASSED] 62 VFs
[17:26:51] [PASSED] 63 VFs
[17:26:51] ==================== [PASSED] fair_vram ====================
[17:26:51] ================== [PASSED] pf_gt_config ===================
[17:26:51] ===================== lmtt (1 subtest) =====================
[17:26:51] ======================== test_ops =========================
[17:26:51] [PASSED] 2-level
[17:26:51] [PASSED] multi-level
[17:26:51] ==================== [PASSED] test_ops =====================
[17:26:51] ====================== [PASSED] lmtt =======================
[17:26:51] ================= pf_service (11 subtests) =================
[17:26:51] [PASSED] pf_negotiate_any
[17:26:51] [PASSED] pf_negotiate_base_match
[17:26:51] [PASSED] pf_negotiate_base_newer
[17:26:51] [PASSED] pf_negotiate_base_next
[17:26:51] [SKIPPED] pf_negotiate_base_older
[17:26:51] [PASSED] pf_negotiate_base_prev
[17:26:51] [PASSED] pf_negotiate_latest_match
[17:26:51] [PASSED] pf_negotiate_latest_newer
[17:26:51] [PASSED] pf_negotiate_latest_next
[17:26:51] [SKIPPED] pf_negotiate_latest_older
[17:26:51] [SKIPPED] pf_negotiate_latest_prev
[17:26:51] =================== [PASSED] pf_service ====================
[17:26:51] ================= xe_guc_g2g (2 subtests) ==================
[17:26:51] ============== xe_live_guc_g2g_kunit_default ==============
[17:26:51] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[17:26:51] ============== xe_live_guc_g2g_kunit_allmem ===============
[17:26:51] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[17:26:51] =================== [SKIPPED] xe_guc_g2g ===================
[17:26:51] =================== xe_mocs (2 subtests) ===================
[17:26:51] ================ xe_live_mocs_kernel_kunit ================
[17:26:51] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[17:26:51] ================ xe_live_mocs_reset_kunit =================
[17:26:51] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[17:26:51] ==================== [SKIPPED] xe_mocs =====================
[17:26:51] ================= xe_migrate (2 subtests) ==================
[17:26:51] ================= xe_migrate_sanity_kunit =================
[17:26:51] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[17:26:51] ================== xe_validate_ccs_kunit ==================
[17:26:51] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[17:26:51] =================== [SKIPPED] xe_migrate ===================
[17:26:51] ================== xe_dma_buf (1 subtest) ==================
[17:26:51] ==================== xe_dma_buf_kunit =====================
[17:26:51] ================ [SKIPPED] xe_dma_buf_kunit ================
[17:26:51] =================== [SKIPPED] xe_dma_buf ===================
[17:26:51] ================= xe_bo_shrink (1 subtest) =================
[17:26:51] =================== xe_bo_shrink_kunit ====================
[17:26:51] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[17:26:51] ================== [SKIPPED] xe_bo_shrink ==================
[17:26:51] ==================== xe_bo (2 subtests) ====================
[17:26:51] ================== xe_ccs_migrate_kunit ===================
[17:26:51] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[17:26:51] ==================== xe_bo_evict_kunit ====================
[17:26:51] =============== [SKIPPED] xe_bo_evict_kunit ================
[17:26:51] ===================== [SKIPPED] xe_bo ======================
[17:26:51] ==================== args (13 subtests) ====================
[17:26:51] [PASSED] count_args_test
[17:26:51] [PASSED] call_args_example
[17:26:51] [PASSED] call_args_test
[17:26:51] [PASSED] drop_first_arg_example
[17:26:51] [PASSED] drop_first_arg_test
[17:26:51] [PASSED] first_arg_example
[17:26:51] [PASSED] first_arg_test
[17:26:51] [PASSED] last_arg_example
[17:26:51] [PASSED] last_arg_test
[17:26:51] [PASSED] pick_arg_example
[17:26:51] [PASSED] if_args_example
[17:26:51] [PASSED] if_args_test
[17:26:51] [PASSED] sep_comma_example
[17:26:51] ====================== [PASSED] args =======================
[17:26:51] =================== xe_pci (3 subtests) ====================
[17:26:51] ==================== check_graphics_ip ====================
[17:26:51] [PASSED] 12.00 Xe_LP
[17:26:51] [PASSED] 12.10 Xe_LP+
[17:26:51] [PASSED] 12.55 Xe_HPG
[17:26:51] [PASSED] 12.60 Xe_HPC
[17:26:51] [PASSED] 12.70 Xe_LPG
[17:26:51] [PASSED] 12.71 Xe_LPG
[17:26:51] [PASSED] 12.74 Xe_LPG+
[17:26:51] [PASSED] 20.01 Xe2_HPG
[17:26:51] [PASSED] 20.02 Xe2_HPG
[17:26:51] [PASSED] 20.04 Xe2_LPG
[17:26:51] [PASSED] 30.00 Xe3_LPG
[17:26:51] [PASSED] 30.01 Xe3_LPG
[17:26:51] [PASSED] 30.03 Xe3_LPG
[17:26:51] [PASSED] 30.04 Xe3_LPG
[17:26:51] [PASSED] 30.05 Xe3_LPG
[17:26:51] [PASSED] 35.10 Xe3p_LPG
[17:26:51] [PASSED] 35.11 Xe3p_XPC
[17:26:51] ================ [PASSED] check_graphics_ip ================
[17:26:51] ===================== check_media_ip ======================
[17:26:51] [PASSED] 12.00 Xe_M
[17:26:51] [PASSED] 12.55 Xe_HPM
[17:26:51] [PASSED] 13.00 Xe_LPM+
[17:26:51] [PASSED] 13.01 Xe2_HPM
[17:26:51] [PASSED] 20.00 Xe2_LPM
[17:26:51] [PASSED] 30.00 Xe3_LPM
[17:26:51] [PASSED] 30.02 Xe3_LPM
[17:26:51] [PASSED] 35.00 Xe3p_LPM
[17:26:51] [PASSED] 35.03 Xe3p_HPM
[17:26:51] ================= [PASSED] check_media_ip ==================
[17:26:51] =================== check_platform_desc ===================
[17:26:51] [PASSED] 0x9A60 (TIGERLAKE)
[17:26:51] [PASSED] 0x9A68 (TIGERLAKE)
[17:26:51] [PASSED] 0x9A70 (TIGERLAKE)
[17:26:51] [PASSED] 0x9A40 (TIGERLAKE)
[17:26:51] [PASSED] 0x9A49 (TIGERLAKE)
[17:26:51] [PASSED] 0x9A59 (TIGERLAKE)
[17:26:51] [PASSED] 0x9A78 (TIGERLAKE)
[17:26:51] [PASSED] 0x9AC0 (TIGERLAKE)
[17:26:51] [PASSED] 0x9AC9 (TIGERLAKE)
[17:26:51] [PASSED] 0x9AD9 (TIGERLAKE)
[17:26:51] [PASSED] 0x9AF8 (TIGERLAKE)
[17:26:51] [PASSED] 0x4C80 (ROCKETLAKE)
[17:26:51] [PASSED] 0x4C8A (ROCKETLAKE)
[17:26:51] [PASSED] 0x4C8B (ROCKETLAKE)
[17:26:51] [PASSED] 0x4C8C (ROCKETLAKE)
[17:26:51] [PASSED] 0x4C90 (ROCKETLAKE)
[17:26:51] [PASSED] 0x4C9A (ROCKETLAKE)
[17:26:51] [PASSED] 0x4680 (ALDERLAKE_S)
[17:26:51] [PASSED] 0x4682 (ALDERLAKE_S)
[17:26:51] [PASSED] 0x4688 (ALDERLAKE_S)
[17:26:51] [PASSED] 0x468A (ALDERLAKE_S)
[17:26:51] [PASSED] 0x468B (ALDERLAKE_S)
[17:26:51] [PASSED] 0x4690 (ALDERLAKE_S)
[17:26:51] [PASSED] 0x4692 (ALDERLAKE_S)
[17:26:51] [PASSED] 0x4693 (ALDERLAKE_S)
[17:26:51] [PASSED] 0x46A0 (ALDERLAKE_P)
[17:26:51] [PASSED] 0x46A1 (ALDERLAKE_P)
[17:26:51] [PASSED] 0x46A2 (ALDERLAKE_P)
[17:26:51] [PASSED] 0x46A3 (ALDERLAKE_P)
[17:26:51] [PASSED] 0x46A6 (ALDERLAKE_P)
[17:26:51] [PASSED] 0x46A8 (ALDERLAKE_P)
[17:26:51] [PASSED] 0x46AA (ALDERLAKE_P)
[17:26:51] [PASSED] 0x462A (ALDERLAKE_P)
[17:26:51] [PASSED] 0x4626 (ALDERLAKE_P)
[17:26:51] [PASSED] 0x4628 (ALDERLAKE_P)
[17:26:51] [PASSED] 0x46B0 (ALDERLAKE_P)
[17:26:51] [PASSED] 0x46B1 (ALDERLAKE_P)
[17:26:51] [PASSED] 0x46B2 (ALDERLAKE_P)
[17:26:51] [PASSED] 0x46B3 (ALDERLAKE_P)
[17:26:51] [PASSED] 0x46C0 (ALDERLAKE_P)
[17:26:51] [PASSED] 0x46C1 (ALDERLAKE_P)
[17:26:51] [PASSED] 0x46C2 (ALDERLAKE_P)
[17:26:51] [PASSED] 0x46C3 (ALDERLAKE_P)
[17:26:51] [PASSED] 0x46D0 (ALDERLAKE_N)
[17:26:51] [PASSED] 0x46D1 (ALDERLAKE_N)
[17:26:51] [PASSED] 0x46D2 (ALDERLAKE_N)
[17:26:51] [PASSED] 0x46D3 (ALDERLAKE_N)
[17:26:51] [PASSED] 0x46D4 (ALDERLAKE_N)
[17:26:51] [PASSED] 0xA721 (ALDERLAKE_P)
[17:26:51] [PASSED] 0xA7A1 (ALDERLAKE_P)
[17:26:51] [PASSED] 0xA7A9 (ALDERLAKE_P)
[17:26:51] [PASSED] 0xA7AC (ALDERLAKE_P)
[17:26:51] [PASSED] 0xA7AD (ALDERLAKE_P)
[17:26:51] [PASSED] 0xA720 (ALDERLAKE_P)
[17:26:51] [PASSED] 0xA7A0 (ALDERLAKE_P)
[17:26:51] [PASSED] 0xA7A8 (ALDERLAKE_P)
[17:26:51] [PASSED] 0xA7AA (ALDERLAKE_P)
[17:26:51] [PASSED] 0xA7AB (ALDERLAKE_P)
[17:26:51] [PASSED] 0xA780 (ALDERLAKE_S)
[17:26:51] [PASSED] 0xA781 (ALDERLAKE_S)
[17:26:51] [PASSED] 0xA782 (ALDERLAKE_S)
[17:26:51] [PASSED] 0xA783 (ALDERLAKE_S)
[17:26:51] [PASSED] 0xA788 (ALDERLAKE_S)
[17:26:51] [PASSED] 0xA789 (ALDERLAKE_S)
[17:26:51] [PASSED] 0xA78A (ALDERLAKE_S)
[17:26:51] [PASSED] 0xA78B (ALDERLAKE_S)
[17:26:51] [PASSED] 0x4905 (DG1)
[17:26:51] [PASSED] 0x4906 (DG1)
[17:26:51] [PASSED] 0x4907 (DG1)
[17:26:51] [PASSED] 0x4908 (DG1)
[17:26:51] [PASSED] 0x4909 (DG1)
[17:26:51] [PASSED] 0x56C0 (DG2)
[17:26:51] [PASSED] 0x56C2 (DG2)
[17:26:51] [PASSED] 0x56C1 (DG2)
[17:26:51] [PASSED] 0x7D51 (METEORLAKE)
[17:26:51] [PASSED] 0x7DD1 (METEORLAKE)
[17:26:51] [PASSED] 0x7D41 (METEORLAKE)
[17:26:51] [PASSED] 0x7D67 (METEORLAKE)
[17:26:51] [PASSED] 0xB640 (METEORLAKE)
[17:26:51] [PASSED] 0x56A0 (DG2)
[17:26:51] [PASSED] 0x56A1 (DG2)
[17:26:51] [PASSED] 0x56A2 (DG2)
[17:26:51] [PASSED] 0x56BE (DG2)
[17:26:51] [PASSED] 0x56BF (DG2)
[17:26:51] [PASSED] 0x5690 (DG2)
[17:26:51] [PASSED] 0x5691 (DG2)
[17:26:51] [PASSED] 0x5692 (DG2)
[17:26:51] [PASSED] 0x56A5 (DG2)
[17:26:51] [PASSED] 0x56A6 (DG2)
[17:26:51] [PASSED] 0x56B0 (DG2)
[17:26:51] [PASSED] 0x56B1 (DG2)
[17:26:51] [PASSED] 0x56BA (DG2)
[17:26:51] [PASSED] 0x56BB (DG2)
[17:26:51] [PASSED] 0x56BC (DG2)
[17:26:51] [PASSED] 0x56BD (DG2)
[17:26:51] [PASSED] 0x5693 (DG2)
[17:26:51] [PASSED] 0x5694 (DG2)
[17:26:51] [PASSED] 0x5695 (DG2)
[17:26:51] [PASSED] 0x56A3 (DG2)
[17:26:51] [PASSED] 0x56A4 (DG2)
[17:26:51] [PASSED] 0x56B2 (DG2)
[17:26:51] [PASSED] 0x56B3 (DG2)
[17:26:51] [PASSED] 0x5696 (DG2)
[17:26:51] [PASSED] 0x5697 (DG2)
[17:26:51] [PASSED] 0xB69 (PVC)
[17:26:51] [PASSED] 0xB6E (PVC)
[17:26:51] [PASSED] 0xBD4 (PVC)
[17:26:51] [PASSED] 0xBD5 (PVC)
[17:26:51] [PASSED] 0xBD6 (PVC)
[17:26:51] [PASSED] 0xBD7 (PVC)
[17:26:51] [PASSED] 0xBD8 (PVC)
[17:26:51] [PASSED] 0xBD9 (PVC)
[17:26:51] [PASSED] 0xBDA (PVC)
[17:26:51] [PASSED] 0xBDB (PVC)
[17:26:51] [PASSED] 0xBE0 (PVC)
[17:26:51] [PASSED] 0xBE1 (PVC)
[17:26:51] [PASSED] 0xBE5 (PVC)
[17:26:51] [PASSED] 0x7D40 (METEORLAKE)
[17:26:51] [PASSED] 0x7D45 (METEORLAKE)
[17:26:51] [PASSED] 0x7D55 (METEORLAKE)
[17:26:51] [PASSED] 0x7D60 (METEORLAKE)
[17:26:51] [PASSED] 0x7DD5 (METEORLAKE)
[17:26:51] [PASSED] 0x6420 (LUNARLAKE)
[17:26:51] [PASSED] 0x64A0 (LUNARLAKE)
[17:26:51] [PASSED] 0x64B0 (LUNARLAKE)
[17:26:51] [PASSED] 0xE202 (BATTLEMAGE)
[17:26:51] [PASSED] 0xE209 (BATTLEMAGE)
[17:26:51] [PASSED] 0xE20B (BATTLEMAGE)
[17:26:51] [PASSED] 0xE20C (BATTLEMAGE)
[17:26:51] [PASSED] 0xE20D (BATTLEMAGE)
[17:26:51] [PASSED] 0xE210 (BATTLEMAGE)
[17:26:51] [PASSED] 0xE211 (BATTLEMAGE)
[17:26:51] [PASSED] 0xE212 (BATTLEMAGE)
[17:26:51] [PASSED] 0xE216 (BATTLEMAGE)
[17:26:51] [PASSED] 0xE220 (BATTLEMAGE)
[17:26:51] [PASSED] 0xE221 (BATTLEMAGE)
[17:26:51] [PASSED] 0xE222 (BATTLEMAGE)
[17:26:51] [PASSED] 0xE223 (BATTLEMAGE)
[17:26:51] [PASSED] 0xB080 (PANTHERLAKE)
[17:26:51] [PASSED] 0xB081 (PANTHERLAKE)
[17:26:51] [PASSED] 0xB082 (PANTHERLAKE)
[17:26:51] [PASSED] 0xB083 (PANTHERLAKE)
[17:26:51] [PASSED] 0xB084 (PANTHERLAKE)
[17:26:51] [PASSED] 0xB085 (PANTHERLAKE)
[17:26:51] [PASSED] 0xB086 (PANTHERLAKE)
[17:26:51] [PASSED] 0xB087 (PANTHERLAKE)
[17:26:51] [PASSED] 0xB08F (PANTHERLAKE)
[17:26:51] [PASSED] 0xB090 (PANTHERLAKE)
[17:26:51] [PASSED] 0xB0A0 (PANTHERLAKE)
[17:26:51] [PASSED] 0xB0B0 (PANTHERLAKE)
[17:26:51] [PASSED] 0xFD80 (PANTHERLAKE)
[17:26:51] [PASSED] 0xFD81 (PANTHERLAKE)
[17:26:51] [PASSED] 0xD740 (NOVALAKE_S)
[17:26:51] [PASSED] 0xD741 (NOVALAKE_S)
[17:26:51] [PASSED] 0xD742 (NOVALAKE_S)
[17:26:51] [PASSED] 0xD743 (NOVALAKE_S)
[17:26:51] [PASSED] 0xD744 (NOVALAKE_S)
[17:26:51] [PASSED] 0xD745 (NOVALAKE_S)
[17:26:51] [PASSED] 0x674C (CRESCENTISLAND)
[17:26:51] [PASSED] 0xD750 (NOVALAKE_P)
[17:26:51] [PASSED] 0xD751 (NOVALAKE_P)
[17:26:51] [PASSED] 0xD752 (NOVALAKE_P)
[17:26:51] [PASSED] 0xD753 (NOVALAKE_P)
[17:26:51] [PASSED] 0xD754 (NOVALAKE_P)
[17:26:51] [PASSED] 0xD755 (NOVALAKE_P)
[17:26:51] [PASSED] 0xD756 (NOVALAKE_P)
[17:26:51] [PASSED] 0xD757 (NOVALAKE_P)
[17:26:51] [PASSED] 0xD75F (NOVALAKE_P)
[17:26:51] =============== [PASSED] check_platform_desc ===============
[17:26:51] ===================== [PASSED] xe_pci ======================
[17:26:51] =================== xe_rtp (2 subtests) ====================
[17:26:51] =============== xe_rtp_process_to_sr_tests ================
[17:26:51] [PASSED] coalesce-same-reg
[17:26:51] [PASSED] no-match-no-add
[17:26:51] [PASSED] match-or
[17:26:51] [PASSED] match-or-xfail
[17:26:51] [PASSED] no-match-no-add-multiple-rules
[17:26:51] [PASSED] two-regs-two-entries
[17:26:51] [PASSED] clr-one-set-other
[17:26:51] [PASSED] set-field
[17:26:51] [PASSED] conflict-duplicate
stty: 'standard input': Inappropriate ioctl for device
[17:26:51] [PASSED] conflict-not-disjoint
[17:26:51] [PASSED] conflict-reg-type
[17:26:51] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[17:26:51] ================== xe_rtp_process_tests ===================
[17:26:51] [PASSED] active1
[17:26:51] [PASSED] active2
[17:26:51] [PASSED] active-inactive
[17:26:51] [PASSED] inactive-active
[17:26:51] [PASSED] inactive-1st_or_active-inactive
[17:26:51] [PASSED] inactive-2nd_or_active-inactive
[17:26:51] [PASSED] inactive-last_or_active-inactive
[17:26:51] [PASSED] inactive-no_or_active-inactive
[17:26:51] ============== [PASSED] xe_rtp_process_tests ===============
[17:26:51] ===================== [PASSED] xe_rtp ======================
[17:26:51] ==================== xe_wa (1 subtest) =====================
[17:26:51] ======================== xe_wa_gt =========================
[17:26:51] [PASSED] TIGERLAKE B0
[17:26:51] [PASSED] DG1 A0
[17:26:51] [PASSED] DG1 B0
[17:26:51] [PASSED] ALDERLAKE_S A0
[17:26:51] [PASSED] ALDERLAKE_S B0
[17:26:51] [PASSED] ALDERLAKE_S C0
[17:26:51] [PASSED] ALDERLAKE_S D0
[17:26:51] [PASSED] ALDERLAKE_P A0
[17:26:51] [PASSED] ALDERLAKE_P B0
[17:26:51] [PASSED] ALDERLAKE_P C0
[17:26:51] [PASSED] ALDERLAKE_S RPLS D0
[17:26:51] [PASSED] ALDERLAKE_P RPLU E0
[17:26:51] [PASSED] DG2 G10 C0
[17:26:51] [PASSED] DG2 G11 B1
[17:26:51] [PASSED] DG2 G12 A1
[17:26:51] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[17:26:51] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[17:26:51] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[17:26:51] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[17:26:51] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[17:26:51] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[17:26:51] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[17:26:51] ==================== [PASSED] xe_wa_gt =====================
[17:26:51] ====================== [PASSED] xe_wa ======================
[17:26:51] ============================================================
[17:26:51] Testing complete. Ran 597 tests: passed: 579, skipped: 18
[17:26:51] Elapsed time: 36.244s total, 4.247s configuring, 31.381s building, 0.592s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[17:26:51] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[17:26:53] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[17:27:17] Starting KUnit Kernel (1/1)...
[17:27:17] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[17:27:17] ============ drm_test_pick_cmdline (2 subtests) ============
[17:27:17] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[17:27:17] =============== drm_test_pick_cmdline_named ===============
[17:27:17] [PASSED] NTSC
[17:27:17] [PASSED] NTSC-J
[17:27:17] [PASSED] PAL
[17:27:17] [PASSED] PAL-M
[17:27:17] =========== [PASSED] drm_test_pick_cmdline_named ===========
[17:27:17] ============== [PASSED] drm_test_pick_cmdline ==============
[17:27:17] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[17:27:17] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[17:27:17] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[17:27:17] =========== drm_validate_clone_mode (2 subtests) ===========
[17:27:17] ============== drm_test_check_in_clone_mode ===============
[17:27:17] [PASSED] in_clone_mode
[17:27:17] [PASSED] not_in_clone_mode
[17:27:17] ========== [PASSED] drm_test_check_in_clone_mode ===========
[17:27:17] =============== drm_test_check_valid_clones ===============
[17:27:17] [PASSED] not_in_clone_mode
[17:27:17] [PASSED] valid_clone
[17:27:17] [PASSED] invalid_clone
[17:27:17] =========== [PASSED] drm_test_check_valid_clones ===========
[17:27:17] ============= [PASSED] drm_validate_clone_mode =============
[17:27:17] ============= drm_validate_modeset (1 subtest) =============
[17:27:17] [PASSED] drm_test_check_connector_changed_modeset
[17:27:17] ============== [PASSED] drm_validate_modeset ===============
[17:27:17] ====== drm_test_bridge_get_current_state (2 subtests) ======
[17:27:17] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[17:27:17] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[17:27:17] ======== [PASSED] drm_test_bridge_get_current_state ========
[17:27:17] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[17:27:17] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[17:27:17] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[17:27:17] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[17:27:17] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[17:27:17] ============== drm_bridge_alloc (2 subtests) ===============
[17:27:17] [PASSED] drm_test_drm_bridge_alloc_basic
[17:27:17] [PASSED] drm_test_drm_bridge_alloc_get_put
[17:27:17] ================ [PASSED] drm_bridge_alloc =================
[17:27:17] ============= drm_cmdline_parser (40 subtests) =============
[17:27:17] [PASSED] drm_test_cmdline_force_d_only
[17:27:17] [PASSED] drm_test_cmdline_force_D_only_dvi
[17:27:17] [PASSED] drm_test_cmdline_force_D_only_hdmi
[17:27:17] [PASSED] drm_test_cmdline_force_D_only_not_digital
[17:27:17] [PASSED] drm_test_cmdline_force_e_only
[17:27:17] [PASSED] drm_test_cmdline_res
[17:27:17] [PASSED] drm_test_cmdline_res_vesa
[17:27:17] [PASSED] drm_test_cmdline_res_vesa_rblank
[17:27:17] [PASSED] drm_test_cmdline_res_rblank
[17:27:17] [PASSED] drm_test_cmdline_res_bpp
[17:27:17] [PASSED] drm_test_cmdline_res_refresh
[17:27:17] [PASSED] drm_test_cmdline_res_bpp_refresh
[17:27:17] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[17:27:17] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[17:27:17] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[17:27:17] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[17:27:17] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[17:27:17] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[17:27:17] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[17:27:17] [PASSED] drm_test_cmdline_res_margins_force_on
[17:27:17] [PASSED] drm_test_cmdline_res_vesa_margins
[17:27:17] [PASSED] drm_test_cmdline_name
[17:27:17] [PASSED] drm_test_cmdline_name_bpp
[17:27:17] [PASSED] drm_test_cmdline_name_option
[17:27:17] [PASSED] drm_test_cmdline_name_bpp_option
[17:27:17] [PASSED] drm_test_cmdline_rotate_0
[17:27:17] [PASSED] drm_test_cmdline_rotate_90
[17:27:17] [PASSED] drm_test_cmdline_rotate_180
[17:27:17] [PASSED] drm_test_cmdline_rotate_270
[17:27:17] [PASSED] drm_test_cmdline_hmirror
[17:27:17] [PASSED] drm_test_cmdline_vmirror
[17:27:17] [PASSED] drm_test_cmdline_margin_options
[17:27:17] [PASSED] drm_test_cmdline_multiple_options
[17:27:17] [PASSED] drm_test_cmdline_bpp_extra_and_option
[17:27:17] [PASSED] drm_test_cmdline_extra_and_option
[17:27:17] [PASSED] drm_test_cmdline_freestanding_options
[17:27:17] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[17:27:17] [PASSED] drm_test_cmdline_panel_orientation
[17:27:17] ================ drm_test_cmdline_invalid =================
[17:27:17] [PASSED] margin_only
[17:27:17] [PASSED] interlace_only
[17:27:17] [PASSED] res_missing_x
[17:27:17] [PASSED] res_missing_y
[17:27:17] [PASSED] res_bad_y
[17:27:17] [PASSED] res_missing_y_bpp
[17:27:17] [PASSED] res_bad_bpp
[17:27:17] [PASSED] res_bad_refresh
[17:27:17] [PASSED] res_bpp_refresh_force_on_off
[17:27:17] [PASSED] res_invalid_mode
[17:27:17] [PASSED] res_bpp_wrong_place_mode
[17:27:17] [PASSED] name_bpp_refresh
[17:27:17] [PASSED] name_refresh
[17:27:17] [PASSED] name_refresh_wrong_mode
[17:27:17] [PASSED] name_refresh_invalid_mode
[17:27:17] [PASSED] rotate_multiple
[17:27:17] [PASSED] rotate_invalid_val
[17:27:17] [PASSED] rotate_truncated
[17:27:17] [PASSED] invalid_option
[17:27:17] [PASSED] invalid_tv_option
[17:27:17] [PASSED] truncated_tv_option
[17:27:17] ============ [PASSED] drm_test_cmdline_invalid =============
[17:27:17] =============== drm_test_cmdline_tv_options ===============
[17:27:17] [PASSED] NTSC
[17:27:17] [PASSED] NTSC_443
[17:27:17] [PASSED] NTSC_J
[17:27:17] [PASSED] PAL
[17:27:17] [PASSED] PAL_M
[17:27:17] [PASSED] PAL_N
[17:27:17] [PASSED] SECAM
[17:27:17] [PASSED] MONO_525
[17:27:17] [PASSED] MONO_625
[17:27:17] =========== [PASSED] drm_test_cmdline_tv_options ===========
[17:27:17] =============== [PASSED] drm_cmdline_parser ================
[17:27:17] ========== drmm_connector_hdmi_init (20 subtests) ==========
[17:27:17] [PASSED] drm_test_connector_hdmi_init_valid
[17:27:17] [PASSED] drm_test_connector_hdmi_init_bpc_8
[17:27:17] [PASSED] drm_test_connector_hdmi_init_bpc_10
[17:27:17] [PASSED] drm_test_connector_hdmi_init_bpc_12
[17:27:17] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[17:27:17] [PASSED] drm_test_connector_hdmi_init_bpc_null
[17:27:17] [PASSED] drm_test_connector_hdmi_init_formats_empty
[17:27:17] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[17:27:17] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[17:27:17] [PASSED] supported_formats=0x9 yuv420_allowed=1
[17:27:17] [PASSED] supported_formats=0x9 yuv420_allowed=0
[17:27:17] [PASSED] supported_formats=0x5 yuv420_allowed=1
[17:27:17] [PASSED] supported_formats=0x5 yuv420_allowed=0
[17:27:17] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[17:27:17] [PASSED] drm_test_connector_hdmi_init_null_ddc
[17:27:17] [PASSED] drm_test_connector_hdmi_init_null_product
[17:27:17] [PASSED] drm_test_connector_hdmi_init_null_vendor
[17:27:17] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[17:27:17] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[17:27:17] [PASSED] drm_test_connector_hdmi_init_product_valid
[17:27:17] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[17:27:17] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[17:27:17] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[17:27:17] ========= drm_test_connector_hdmi_init_type_valid =========
[17:27:17] [PASSED] HDMI-A
[17:27:17] [PASSED] HDMI-B
[17:27:17] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[17:27:17] ======== drm_test_connector_hdmi_init_type_invalid ========
[17:27:17] [PASSED] Unknown
[17:27:17] [PASSED] VGA
[17:27:17] [PASSED] DVI-I
[17:27:17] [PASSED] DVI-D
[17:27:17] [PASSED] DVI-A
[17:27:17] [PASSED] Composite
[17:27:17] [PASSED] SVIDEO
[17:27:17] [PASSED] LVDS
[17:27:17] [PASSED] Component
[17:27:17] [PASSED] DIN
[17:27:17] [PASSED] DP
[17:27:17] [PASSED] TV
[17:27:17] [PASSED] eDP
[17:27:17] [PASSED] Virtual
[17:27:17] [PASSED] DSI
[17:27:17] [PASSED] DPI
[17:27:17] [PASSED] Writeback
[17:27:17] [PASSED] SPI
[17:27:17] [PASSED] USB
[17:27:17] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[17:27:17] ============ [PASSED] drmm_connector_hdmi_init =============
[17:27:17] ============= drmm_connector_init (3 subtests) =============
[17:27:17] [PASSED] drm_test_drmm_connector_init
[17:27:17] [PASSED] drm_test_drmm_connector_init_null_ddc
[17:27:17] ========= drm_test_drmm_connector_init_type_valid =========
[17:27:17] [PASSED] Unknown
[17:27:17] [PASSED] VGA
[17:27:17] [PASSED] DVI-I
[17:27:17] [PASSED] DVI-D
[17:27:17] [PASSED] DVI-A
[17:27:17] [PASSED] Composite
[17:27:17] [PASSED] SVIDEO
[17:27:17] [PASSED] LVDS
[17:27:17] [PASSED] Component
[17:27:17] [PASSED] DIN
[17:27:17] [PASSED] DP
[17:27:17] [PASSED] HDMI-A
[17:27:17] [PASSED] HDMI-B
[17:27:17] [PASSED] TV
[17:27:17] [PASSED] eDP
[17:27:17] [PASSED] Virtual
[17:27:17] [PASSED] DSI
[17:27:17] [PASSED] DPI
[17:27:17] [PASSED] Writeback
[17:27:17] [PASSED] SPI
[17:27:17] [PASSED] USB
[17:27:17] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[17:27:17] =============== [PASSED] drmm_connector_init ===============
[17:27:17] ========= drm_connector_dynamic_init (6 subtests) ==========
[17:27:17] [PASSED] drm_test_drm_connector_dynamic_init
[17:27:17] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[17:27:17] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[17:27:17] [PASSED] drm_test_drm_connector_dynamic_init_properties
[17:27:17] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[17:27:17] [PASSED] Unknown
[17:27:17] [PASSED] VGA
[17:27:17] [PASSED] DVI-I
[17:27:17] [PASSED] DVI-D
[17:27:17] [PASSED] DVI-A
[17:27:17] [PASSED] Composite
[17:27:17] [PASSED] SVIDEO
[17:27:17] [PASSED] LVDS
[17:27:17] [PASSED] Component
[17:27:17] [PASSED] DIN
[17:27:17] [PASSED] DP
[17:27:17] [PASSED] HDMI-A
[17:27:17] [PASSED] HDMI-B
[17:27:17] [PASSED] TV
[17:27:17] [PASSED] eDP
[17:27:17] [PASSED] Virtual
[17:27:17] [PASSED] DSI
[17:27:17] [PASSED] DPI
[17:27:17] [PASSED] Writeback
[17:27:17] [PASSED] SPI
[17:27:17] [PASSED] USB
[17:27:17] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[17:27:17] ======== drm_test_drm_connector_dynamic_init_name =========
[17:27:17] [PASSED] Unknown
[17:27:17] [PASSED] VGA
[17:27:17] [PASSED] DVI-I
[17:27:17] [PASSED] DVI-D
[17:27:17] [PASSED] DVI-A
[17:27:17] [PASSED] Composite
[17:27:17] [PASSED] SVIDEO
[17:27:17] [PASSED] LVDS
[17:27:17] [PASSED] Component
[17:27:17] [PASSED] DIN
[17:27:17] [PASSED] DP
[17:27:17] [PASSED] HDMI-A
[17:27:17] [PASSED] HDMI-B
[17:27:17] [PASSED] TV
[17:27:17] [PASSED] eDP
[17:27:17] [PASSED] Virtual
[17:27:17] [PASSED] DSI
[17:27:17] [PASSED] DPI
[17:27:17] [PASSED] Writeback
[17:27:17] [PASSED] SPI
[17:27:17] [PASSED] USB
[17:27:17] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[17:27:17] =========== [PASSED] drm_connector_dynamic_init ============
[17:27:17] ==== drm_connector_dynamic_register_early (4 subtests) =====
[17:27:17] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[17:27:17] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[17:27:17] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[17:27:17] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[17:27:17] ====== [PASSED] drm_connector_dynamic_register_early =======
[17:27:17] ======= drm_connector_dynamic_register (7 subtests) ========
[17:27:17] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[17:27:17] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[17:27:17] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[17:27:17] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[17:27:17] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[17:27:17] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[17:27:17] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[17:27:17] ========= [PASSED] drm_connector_dynamic_register ==========
[17:27:17] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[17:27:17] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[17:27:17] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[17:27:17] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[17:27:17] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[17:27:17] ========== drm_test_get_tv_mode_from_name_valid ===========
[17:27:17] [PASSED] NTSC
[17:27:17] [PASSED] NTSC-443
[17:27:17] [PASSED] NTSC-J
[17:27:17] [PASSED] PAL
[17:27:17] [PASSED] PAL-M
[17:27:17] [PASSED] PAL-N
[17:27:17] [PASSED] SECAM
[17:27:17] [PASSED] Mono
[17:27:17] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[17:27:17] [PASSED] drm_test_get_tv_mode_from_name_truncated
[17:27:17] ============ [PASSED] drm_get_tv_mode_from_name ============
[17:27:17] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[17:27:17] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[17:27:17] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[17:27:17] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[17:27:17] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[17:27:17] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[17:27:17] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[17:27:17] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[17:27:17] [PASSED] VIC 96
[17:27:17] [PASSED] VIC 97
[17:27:17] [PASSED] VIC 101
[17:27:17] [PASSED] VIC 102
[17:27:17] [PASSED] VIC 106
[17:27:17] [PASSED] VIC 107
[17:27:17] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[17:27:17] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[17:27:17] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[17:27:17] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[17:27:17] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[17:27:17] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[17:27:17] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[17:27:17] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[17:27:17] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[17:27:17] [PASSED] Automatic
[17:27:17] [PASSED] Full
[17:27:17] [PASSED] Limited 16:235
[17:27:17] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[17:27:17] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[17:27:17] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[17:27:17] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[17:27:17] === drm_test_drm_hdmi_connector_get_output_format_name ====
[17:27:17] [PASSED] RGB
[17:27:17] [PASSED] YUV 4:2:0
[17:27:17] [PASSED] YUV 4:2:2
[17:27:17] [PASSED] YUV 4:4:4
[17:27:17] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[17:27:17] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[17:27:17] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[17:27:17] ============= drm_damage_helper (21 subtests) ==============
[17:27:17] [PASSED] drm_test_damage_iter_no_damage
[17:27:17] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[17:27:17] [PASSED] drm_test_damage_iter_no_damage_src_moved
[17:27:17] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[17:27:17] [PASSED] drm_test_damage_iter_no_damage_not_visible
[17:27:17] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[17:27:17] [PASSED] drm_test_damage_iter_no_damage_no_fb
[17:27:17] [PASSED] drm_test_damage_iter_simple_damage
[17:27:17] [PASSED] drm_test_damage_iter_single_damage
[17:27:17] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[17:27:17] [PASSED] drm_test_damage_iter_single_damage_outside_src
[17:27:17] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[17:27:17] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[17:27:17] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[17:27:17] [PASSED] drm_test_damage_iter_single_damage_src_moved
[17:27:17] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[17:27:17] [PASSED] drm_test_damage_iter_damage
[17:27:17] [PASSED] drm_test_damage_iter_damage_one_intersect
[17:27:17] [PASSED] drm_test_damage_iter_damage_one_outside
[17:27:17] [PASSED] drm_test_damage_iter_damage_src_moved
[17:27:17] [PASSED] drm_test_damage_iter_damage_not_visible
[17:27:17] ================ [PASSED] drm_damage_helper ================
[17:27:17] ============== drm_dp_mst_helper (3 subtests) ==============
[17:27:17] ============== drm_test_dp_mst_calc_pbn_mode ==============
[17:27:17] [PASSED] Clock 154000 BPP 30 DSC disabled
[17:27:17] [PASSED] Clock 234000 BPP 30 DSC disabled
[17:27:17] [PASSED] Clock 297000 BPP 24 DSC disabled
[17:27:17] [PASSED] Clock 332880 BPP 24 DSC enabled
[17:27:17] [PASSED] Clock 324540 BPP 24 DSC enabled
[17:27:17] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[17:27:17] ============== drm_test_dp_mst_calc_pbn_div ===============
[17:27:17] [PASSED] Link rate 2000000 lane count 4
[17:27:17] [PASSED] Link rate 2000000 lane count 2
[17:27:17] [PASSED] Link rate 2000000 lane count 1
[17:27:17] [PASSED] Link rate 1350000 lane count 4
[17:27:17] [PASSED] Link rate 1350000 lane count 2
[17:27:17] [PASSED] Link rate 1350000 lane count 1
[17:27:17] [PASSED] Link rate 1000000 lane count 4
[17:27:17] [PASSED] Link rate 1000000 lane count 2
[17:27:17] [PASSED] Link rate 1000000 lane count 1
[17:27:17] [PASSED] Link rate 810000 lane count 4
[17:27:17] [PASSED] Link rate 810000 lane count 2
[17:27:17] [PASSED] Link rate 810000 lane count 1
[17:27:17] [PASSED] Link rate 540000 lane count 4
[17:27:17] [PASSED] Link rate 540000 lane count 2
[17:27:17] [PASSED] Link rate 540000 lane count 1
[17:27:17] [PASSED] Link rate 270000 lane count 4
[17:27:17] [PASSED] Link rate 270000 lane count 2
[17:27:17] [PASSED] Link rate 270000 lane count 1
[17:27:17] [PASSED] Link rate 162000 lane count 4
[17:27:17] [PASSED] Link rate 162000 lane count 2
[17:27:17] [PASSED] Link rate 162000 lane count 1
[17:27:17] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[17:27:17] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[17:27:17] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[17:27:17] [PASSED] DP_POWER_UP_PHY with port number
[17:27:17] [PASSED] DP_POWER_DOWN_PHY with port number
[17:27:17] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[17:27:17] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[17:27:17] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[17:27:17] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[17:27:17] [PASSED] DP_QUERY_PAYLOAD with port number
[17:27:17] [PASSED] DP_QUERY_PAYLOAD with VCPI
[17:27:17] [PASSED] DP_REMOTE_DPCD_READ with port number
[17:27:17] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[17:27:17] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[17:27:17] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[17:27:17] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[17:27:17] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[17:27:17] [PASSED] DP_REMOTE_I2C_READ with port number
[17:27:17] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[17:27:17] [PASSED] DP_REMOTE_I2C_READ with transactions array
[17:27:17] [PASSED] DP_REMOTE_I2C_WRITE with port number
[17:27:17] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[17:27:17] [PASSED] DP_REMOTE_I2C_WRITE with data array
[17:27:17] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[17:27:17] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[17:27:17] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[17:27:17] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[17:27:17] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[17:27:17] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[17:27:17] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[17:27:17] ================ [PASSED] drm_dp_mst_helper ================
[17:27:17] ================== drm_exec (7 subtests) ===================
[17:27:17] [PASSED] sanitycheck
[17:27:17] [PASSED] test_lock
[17:27:17] [PASSED] test_lock_unlock
[17:27:17] [PASSED] test_duplicates
[17:27:17] [PASSED] test_prepare
[17:27:17] [PASSED] test_prepare_array
[17:27:17] [PASSED] test_multiple_loops
[17:27:17] ==================== [PASSED] drm_exec =====================
[17:27:17] =========== drm_format_helper_test (17 subtests) ===========
[17:27:17] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[17:27:17] [PASSED] single_pixel_source_buffer
[17:27:17] [PASSED] single_pixel_clip_rectangle
[17:27:17] [PASSED] well_known_colors
[17:27:17] [PASSED] destination_pitch
[17:27:17] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[17:27:17] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[17:27:17] [PASSED] single_pixel_source_buffer
[17:27:17] [PASSED] single_pixel_clip_rectangle
[17:27:17] [PASSED] well_known_colors
[17:27:17] [PASSED] destination_pitch
[17:27:17] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[17:27:17] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[17:27:17] [PASSED] single_pixel_source_buffer
[17:27:17] [PASSED] single_pixel_clip_rectangle
[17:27:17] [PASSED] well_known_colors
[17:27:17] [PASSED] destination_pitch
[17:27:17] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[17:27:17] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[17:27:17] [PASSED] single_pixel_source_buffer
[17:27:17] [PASSED] single_pixel_clip_rectangle
[17:27:17] [PASSED] well_known_colors
[17:27:17] [PASSED] destination_pitch
[17:27:17] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[17:27:17] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[17:27:17] [PASSED] single_pixel_source_buffer
[17:27:17] [PASSED] single_pixel_clip_rectangle
[17:27:17] [PASSED] well_known_colors
[17:27:17] [PASSED] destination_pitch
[17:27:17] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[17:27:17] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[17:27:17] [PASSED] single_pixel_source_buffer
[17:27:17] [PASSED] single_pixel_clip_rectangle
[17:27:17] [PASSED] well_known_colors
[17:27:17] [PASSED] destination_pitch
[17:27:17] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[17:27:17] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[17:27:17] [PASSED] single_pixel_source_buffer
[17:27:17] [PASSED] single_pixel_clip_rectangle
[17:27:17] [PASSED] well_known_colors
[17:27:17] [PASSED] destination_pitch
[17:27:17] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[17:27:17] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[17:27:17] [PASSED] single_pixel_source_buffer
[17:27:17] [PASSED] single_pixel_clip_rectangle
[17:27:17] [PASSED] well_known_colors
[17:27:17] [PASSED] destination_pitch
[17:27:17] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[17:27:17] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[17:27:17] [PASSED] single_pixel_source_buffer
[17:27:17] [PASSED] single_pixel_clip_rectangle
[17:27:17] [PASSED] well_known_colors
[17:27:17] [PASSED] destination_pitch
[17:27:17] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[17:27:17] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[17:27:17] [PASSED] single_pixel_source_buffer
[17:27:17] [PASSED] single_pixel_clip_rectangle
[17:27:17] [PASSED] well_known_colors
[17:27:17] [PASSED] destination_pitch
[17:27:17] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[17:27:17] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[17:27:17] [PASSED] single_pixel_source_buffer
[17:27:17] [PASSED] single_pixel_clip_rectangle
[17:27:17] [PASSED] well_known_colors
[17:27:17] [PASSED] destination_pitch
[17:27:17] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[17:27:17] ============== drm_test_fb_xrgb8888_to_mono ===============
[17:27:17] [PASSED] single_pixel_source_buffer
[17:27:17] [PASSED] single_pixel_clip_rectangle
[17:27:17] [PASSED] well_known_colors
[17:27:17] [PASSED] destination_pitch
[17:27:17] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[17:27:17] ==================== drm_test_fb_swab =====================
[17:27:17] [PASSED] single_pixel_source_buffer
[17:27:17] [PASSED] single_pixel_clip_rectangle
[17:27:17] [PASSED] well_known_colors
[17:27:17] [PASSED] destination_pitch
[17:27:17] ================ [PASSED] drm_test_fb_swab =================
[17:27:17] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[17:27:17] [PASSED] single_pixel_source_buffer
[17:27:17] [PASSED] single_pixel_clip_rectangle
[17:27:17] [PASSED] well_known_colors
[17:27:17] [PASSED] destination_pitch
[17:27:17] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[17:27:17] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[17:27:17] [PASSED] single_pixel_source_buffer
[17:27:17] [PASSED] single_pixel_clip_rectangle
[17:27:17] [PASSED] well_known_colors
[17:27:17] [PASSED] destination_pitch
[17:27:17] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[17:27:17] ================= drm_test_fb_clip_offset =================
[17:27:17] [PASSED] pass through
[17:27:17] [PASSED] horizontal offset
[17:27:17] [PASSED] vertical offset
[17:27:17] [PASSED] horizontal and vertical offset
[17:27:17] [PASSED] horizontal offset (custom pitch)
[17:27:17] [PASSED] vertical offset (custom pitch)
[17:27:17] [PASSED] horizontal and vertical offset (custom pitch)
[17:27:17] ============= [PASSED] drm_test_fb_clip_offset =============
[17:27:17] =================== drm_test_fb_memcpy ====================
[17:27:17] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[17:27:17] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[17:27:17] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[17:27:17] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[17:27:17] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[17:27:17] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[17:27:17] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[17:27:17] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[17:27:17] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[17:27:17] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[17:27:17] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[17:27:17] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[17:27:17] =============== [PASSED] drm_test_fb_memcpy ================
[17:27:17] ============= [PASSED] drm_format_helper_test ==============
[17:27:17] ================= drm_format (18 subtests) =================
[17:27:17] [PASSED] drm_test_format_block_width_invalid
[17:27:17] [PASSED] drm_test_format_block_width_one_plane
[17:27:17] [PASSED] drm_test_format_block_width_two_plane
[17:27:17] [PASSED] drm_test_format_block_width_three_plane
[17:27:17] [PASSED] drm_test_format_block_width_tiled
[17:27:17] [PASSED] drm_test_format_block_height_invalid
[17:27:17] [PASSED] drm_test_format_block_height_one_plane
[17:27:17] [PASSED] drm_test_format_block_height_two_plane
[17:27:17] [PASSED] drm_test_format_block_height_three_plane
[17:27:17] [PASSED] drm_test_format_block_height_tiled
[17:27:17] [PASSED] drm_test_format_min_pitch_invalid
[17:27:17] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[17:27:17] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[17:27:17] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[17:27:17] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[17:27:17] [PASSED] drm_test_format_min_pitch_two_plane
[17:27:17] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[17:27:17] [PASSED] drm_test_format_min_pitch_tiled
[17:27:17] =================== [PASSED] drm_format ====================
[17:27:17] ============== drm_framebuffer (10 subtests) ===============
[17:27:17] ========== drm_test_framebuffer_check_src_coords ==========
[17:27:17] [PASSED] Success: source fits into fb
[17:27:17] [PASSED] Fail: overflowing fb with x-axis coordinate
[17:27:17] [PASSED] Fail: overflowing fb with y-axis coordinate
[17:27:17] [PASSED] Fail: overflowing fb with source width
[17:27:17] [PASSED] Fail: overflowing fb with source height
[17:27:17] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[17:27:17] [PASSED] drm_test_framebuffer_cleanup
[17:27:17] =============== drm_test_framebuffer_create ===============
[17:27:17] [PASSED] ABGR8888 normal sizes
[17:27:17] [PASSED] ABGR8888 max sizes
[17:27:17] [PASSED] ABGR8888 pitch greater than min required
[17:27:17] [PASSED] ABGR8888 pitch less than min required
[17:27:17] [PASSED] ABGR8888 Invalid width
[17:27:17] [PASSED] ABGR8888 Invalid buffer handle
[17:27:17] [PASSED] No pixel format
[17:27:17] [PASSED] ABGR8888 Width 0
[17:27:17] [PASSED] ABGR8888 Height 0
[17:27:17] [PASSED] ABGR8888 Out of bound height * pitch combination
[17:27:17] [PASSED] ABGR8888 Large buffer offset
[17:27:17] [PASSED] ABGR8888 Buffer offset for inexistent plane
[17:27:17] [PASSED] ABGR8888 Invalid flag
[17:27:17] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[17:27:17] [PASSED] ABGR8888 Valid buffer modifier
[17:27:17] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[17:27:17] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[17:27:17] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[17:27:17] [PASSED] NV12 Normal sizes
[17:27:17] [PASSED] NV12 Max sizes
[17:27:17] [PASSED] NV12 Invalid pitch
[17:27:17] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[17:27:17] [PASSED] NV12 different modifier per-plane
[17:27:17] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[17:27:17] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[17:27:17] [PASSED] NV12 Modifier for inexistent plane
[17:27:17] [PASSED] NV12 Handle for inexistent plane
[17:27:17] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[17:27:17] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[17:27:17] [PASSED] YVU420 Normal sizes
[17:27:17] [PASSED] YVU420 Max sizes
[17:27:17] [PASSED] YVU420 Invalid pitch
[17:27:17] [PASSED] YVU420 Different pitches
[17:27:17] [PASSED] YVU420 Different buffer offsets/pitches
[17:27:17] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[17:27:17] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[17:27:17] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[17:27:17] [PASSED] YVU420 Valid modifier
[17:27:17] [PASSED] YVU420 Different modifiers per plane
[17:27:17] [PASSED] YVU420 Modifier for inexistent plane
[17:27:17] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[17:27:17] [PASSED] X0L2 Normal sizes
[17:27:17] [PASSED] X0L2 Max sizes
[17:27:17] [PASSED] X0L2 Invalid pitch
[17:27:17] [PASSED] X0L2 Pitch greater than minimum required
[17:27:17] [PASSED] X0L2 Handle for inexistent plane
[17:27:17] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[17:27:17] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[17:27:17] [PASSED] X0L2 Valid modifier
[17:27:17] [PASSED] X0L2 Modifier for inexistent plane
[17:27:17] =========== [PASSED] drm_test_framebuffer_create ===========
[17:27:17] [PASSED] drm_test_framebuffer_free
[17:27:17] [PASSED] drm_test_framebuffer_init
[17:27:17] [PASSED] drm_test_framebuffer_init_bad_format
[17:27:17] [PASSED] drm_test_framebuffer_init_dev_mismatch
[17:27:17] [PASSED] drm_test_framebuffer_lookup
[17:27:17] [PASSED] drm_test_framebuffer_lookup_inexistent
[17:27:17] [PASSED] drm_test_framebuffer_modifiers_not_supported
[17:27:17] ================= [PASSED] drm_framebuffer =================
[17:27:17] ================ drm_gem_shmem (8 subtests) ================
[17:27:17] [PASSED] drm_gem_shmem_test_obj_create
[17:27:17] [PASSED] drm_gem_shmem_test_obj_create_private
[17:27:17] [PASSED] drm_gem_shmem_test_pin_pages
[17:27:17] [PASSED] drm_gem_shmem_test_vmap
[17:27:17] [PASSED] drm_gem_shmem_test_get_sg_table
[17:27:17] [PASSED] drm_gem_shmem_test_get_pages_sgt
[17:27:17] [PASSED] drm_gem_shmem_test_madvise
[17:27:17] [PASSED] drm_gem_shmem_test_purge
[17:27:17] ================== [PASSED] drm_gem_shmem ==================
[17:27:17] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[17:27:17] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[17:27:17] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[17:27:17] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[17:27:17] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[17:27:17] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[17:27:17] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[17:27:17] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[17:27:17] [PASSED] Automatic
[17:27:17] [PASSED] Full
[17:27:17] [PASSED] Limited 16:235
[17:27:17] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[17:27:17] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[17:27:17] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[17:27:17] [PASSED] drm_test_check_disable_connector
[17:27:17] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[17:27:17] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[17:27:17] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[17:27:17] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[17:27:17] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[17:27:17] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[17:27:17] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[17:27:17] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[17:27:17] [PASSED] drm_test_check_output_bpc_dvi
[17:27:17] [PASSED] drm_test_check_output_bpc_format_vic_1
[17:27:17] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[17:27:17] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[17:27:17] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[17:27:17] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[17:27:17] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[17:27:17] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[17:27:17] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[17:27:17] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[17:27:17] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[17:27:17] [PASSED] drm_test_check_broadcast_rgb_value
[17:27:17] [PASSED] drm_test_check_bpc_8_value
[17:27:17] [PASSED] drm_test_check_bpc_10_value
[17:27:17] [PASSED] drm_test_check_bpc_12_value
[17:27:17] [PASSED] drm_test_check_format_value
[17:27:17] [PASSED] drm_test_check_tmds_char_value
[17:27:17] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[17:27:17] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[17:27:17] [PASSED] drm_test_check_mode_valid
[17:27:17] [PASSED] drm_test_check_mode_valid_reject
[17:27:17] [PASSED] drm_test_check_mode_valid_reject_rate
[17:27:17] [PASSED] drm_test_check_mode_valid_reject_max_clock
[17:27:17] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[17:27:17] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[17:27:17] [PASSED] drm_test_check_infoframes
[17:27:17] [PASSED] drm_test_check_reject_avi_infoframe
[17:27:17] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[17:27:17] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[17:27:17] [PASSED] drm_test_check_reject_audio_infoframe
[17:27:17] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[17:27:17] ================= drm_managed (2 subtests) =================
[17:27:17] [PASSED] drm_test_managed_release_action
[17:27:17] [PASSED] drm_test_managed_run_action
[17:27:17] =================== [PASSED] drm_managed ===================
[17:27:17] =================== drm_mm (6 subtests) ====================
[17:27:17] [PASSED] drm_test_mm_init
[17:27:17] [PASSED] drm_test_mm_debug
[17:27:17] [PASSED] drm_test_mm_align32
[17:27:17] [PASSED] drm_test_mm_align64
[17:27:17] [PASSED] drm_test_mm_lowest
[17:27:17] [PASSED] drm_test_mm_highest
[17:27:17] ===================== [PASSED] drm_mm ======================
[17:27:17] ============= drm_modes_analog_tv (5 subtests) =============
[17:27:17] [PASSED] drm_test_modes_analog_tv_mono_576i
[17:27:17] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[17:27:17] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[17:27:17] [PASSED] drm_test_modes_analog_tv_pal_576i
[17:27:17] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[17:27:17] =============== [PASSED] drm_modes_analog_tv ===============
[17:27:17] ============== drm_plane_helper (2 subtests) ===============
[17:27:17] =============== drm_test_check_plane_state ================
[17:27:17] [PASSED] clipping_simple
[17:27:17] [PASSED] clipping_rotate_reflect
[17:27:17] [PASSED] positioning_simple
[17:27:17] [PASSED] upscaling
[17:27:17] [PASSED] downscaling
[17:27:17] [PASSED] rounding1
[17:27:17] [PASSED] rounding2
[17:27:17] [PASSED] rounding3
[17:27:17] [PASSED] rounding4
[17:27:17] =========== [PASSED] drm_test_check_plane_state ============
[17:27:17] =========== drm_test_check_invalid_plane_state ============
[17:27:17] [PASSED] positioning_invalid
[17:27:17] [PASSED] upscaling_invalid
[17:27:17] [PASSED] downscaling_invalid
[17:27:17] ======= [PASSED] drm_test_check_invalid_plane_state ========
[17:27:17] ================ [PASSED] drm_plane_helper =================
[17:27:17] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[17:27:17] ====== drm_test_connector_helper_tv_get_modes_check =======
[17:27:17] [PASSED] None
[17:27:17] [PASSED] PAL
[17:27:17] [PASSED] NTSC
[17:27:17] [PASSED] Both, NTSC Default
[17:27:17] [PASSED] Both, PAL Default
[17:27:17] [PASSED] Both, NTSC Default, with PAL on command-line
[17:27:17] [PASSED] Both, PAL Default, with NTSC on command-line
[17:27:17] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[17:27:17] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[17:27:17] ================== drm_rect (9 subtests) ===================
[17:27:17] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[17:27:17] [PASSED] drm_test_rect_clip_scaled_not_clipped
[17:27:17] [PASSED] drm_test_rect_clip_scaled_clipped
[17:27:17] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[17:27:17] ================= drm_test_rect_intersect =================
[17:27:17] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[17:27:17] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[17:27:17] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[17:27:17] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[17:27:17] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[17:27:17] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[17:27:17] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[17:27:17] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[17:27:17] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[17:27:17] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[17:27:17] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[17:27:17] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[17:27:17] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[17:27:17] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[17:27:17] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[17:27:17] ============= [PASSED] drm_test_rect_intersect =============
[17:27:17] ================ drm_test_rect_calc_hscale ================
[17:27:17] [PASSED] normal use
[17:27:17] [PASSED] out of max range
[17:27:17] [PASSED] out of min range
[17:27:17] [PASSED] zero dst
[17:27:17] [PASSED] negative src
[17:27:17] [PASSED] negative dst
[17:27:17] ============ [PASSED] drm_test_rect_calc_hscale ============
[17:27:17] ================ drm_test_rect_calc_vscale ================
[17:27:17] [PASSED] normal use
[17:27:17] [PASSED] out of max range
[17:27:17] [PASSED] out of min range
[17:27:17] [PASSED] zero dst
[17:27:17] [PASSED] negative src
[17:27:17] [PASSED] negative dst
stty: 'standard input': Inappropriate ioctl for device
[17:27:17] ============ [PASSED] drm_test_rect_calc_vscale ============
[17:27:17] ================== drm_test_rect_rotate ===================
[17:27:17] [PASSED] reflect-x
[17:27:17] [PASSED] reflect-y
[17:27:17] [PASSED] rotate-0
[17:27:17] [PASSED] rotate-90
[17:27:17] [PASSED] rotate-180
[17:27:17] [PASSED] rotate-270
[17:27:17] ============== [PASSED] drm_test_rect_rotate ===============
[17:27:17] ================ drm_test_rect_rotate_inv =================
[17:27:17] [PASSED] reflect-x
[17:27:17] [PASSED] reflect-y
[17:27:17] [PASSED] rotate-0
[17:27:17] [PASSED] rotate-90
[17:27:17] [PASSED] rotate-180
[17:27:17] [PASSED] rotate-270
[17:27:17] ============ [PASSED] drm_test_rect_rotate_inv =============
[17:27:17] ==================== [PASSED] drm_rect =====================
[17:27:17] ============ drm_sysfb_modeset_test (1 subtest) ============
[17:27:17] ============ drm_test_sysfb_build_fourcc_list =============
[17:27:17] [PASSED] no native formats
[17:27:17] [PASSED] XRGB8888 as native format
[17:27:17] [PASSED] remove duplicates
[17:27:17] [PASSED] convert alpha formats
[17:27:17] [PASSED] random formats
[17:27:17] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[17:27:17] ============= [PASSED] drm_sysfb_modeset_test ==============
[17:27:17] ================== drm_fixp (2 subtests) ===================
[17:27:17] [PASSED] drm_test_int2fixp
[17:27:17] [PASSED] drm_test_sm2fixp
[17:27:17] ==================== [PASSED] drm_fixp =====================
[17:27:17] ============================================================
[17:27:17] Testing complete. Ran 621 tests: passed: 621
[17:27:17] Elapsed time: 26.247s total, 1.746s configuring, 24.322s building, 0.177s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[17:27:17] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[17:27:19] 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
[17:27:29] Starting KUnit Kernel (1/1)...
[17:27:29] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[17:27:29] ================= ttm_device (5 subtests) ==================
[17:27:29] [PASSED] ttm_device_init_basic
[17:27:29] [PASSED] ttm_device_init_multiple
[17:27:29] [PASSED] ttm_device_fini_basic
[17:27:29] [PASSED] ttm_device_init_no_vma_man
[17:27:29] ================== ttm_device_init_pools ==================
[17:27:29] [PASSED] No DMA allocations, no DMA32 required
[17:27:29] [PASSED] DMA allocations, DMA32 required
[17:27:29] [PASSED] No DMA allocations, DMA32 required
[17:27:29] [PASSED] DMA allocations, no DMA32 required
[17:27:29] ============== [PASSED] ttm_device_init_pools ==============
[17:27:29] =================== [PASSED] ttm_device ====================
[17:27:29] ================== ttm_pool (8 subtests) ===================
[17:27:29] ================== ttm_pool_alloc_basic ===================
[17:27:29] [PASSED] One page
[17:27:29] [PASSED] More than one page
[17:27:29] [PASSED] Above the allocation limit
[17:27:29] [PASSED] One page, with coherent DMA mappings enabled
[17:27:29] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[17:27:29] ============== [PASSED] ttm_pool_alloc_basic ===============
[17:27:29] ============== ttm_pool_alloc_basic_dma_addr ==============
[17:27:29] [PASSED] One page
[17:27:29] [PASSED] More than one page
[17:27:29] [PASSED] Above the allocation limit
[17:27:29] [PASSED] One page, with coherent DMA mappings enabled
[17:27:29] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[17:27:29] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[17:27:29] [PASSED] ttm_pool_alloc_order_caching_match
[17:27:29] [PASSED] ttm_pool_alloc_caching_mismatch
[17:27:29] [PASSED] ttm_pool_alloc_order_mismatch
[17:27:29] [PASSED] ttm_pool_free_dma_alloc
[17:27:29] [PASSED] ttm_pool_free_no_dma_alloc
[17:27:29] [PASSED] ttm_pool_fini_basic
[17:27:29] ==================== [PASSED] ttm_pool =====================
[17:27:29] ================ ttm_resource (8 subtests) =================
[17:27:29] ================= ttm_resource_init_basic =================
[17:27:29] [PASSED] Init resource in TTM_PL_SYSTEM
[17:27:29] [PASSED] Init resource in TTM_PL_VRAM
[17:27:29] [PASSED] Init resource in a private placement
[17:27:29] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[17:27:29] ============= [PASSED] ttm_resource_init_basic =============
[17:27:29] [PASSED] ttm_resource_init_pinned
[17:27:29] [PASSED] ttm_resource_fini_basic
[17:27:29] [PASSED] ttm_resource_manager_init_basic
[17:27:29] [PASSED] ttm_resource_manager_usage_basic
[17:27:29] [PASSED] ttm_resource_manager_set_used_basic
[17:27:29] [PASSED] ttm_sys_man_alloc_basic
[17:27:29] [PASSED] ttm_sys_man_free_basic
[17:27:29] ================== [PASSED] ttm_resource ===================
[17:27:29] =================== ttm_tt (15 subtests) ===================
[17:27:29] ==================== ttm_tt_init_basic ====================
[17:27:29] [PASSED] Page-aligned size
[17:27:29] [PASSED] Extra pages requested
[17:27:29] ================ [PASSED] ttm_tt_init_basic ================
[17:27:29] [PASSED] ttm_tt_init_misaligned
[17:27:29] [PASSED] ttm_tt_fini_basic
[17:27:29] [PASSED] ttm_tt_fini_sg
[17:27:29] [PASSED] ttm_tt_fini_shmem
[17:27:29] [PASSED] ttm_tt_create_basic
[17:27:29] [PASSED] ttm_tt_create_invalid_bo_type
[17:27:29] [PASSED] ttm_tt_create_ttm_exists
[17:27:29] [PASSED] ttm_tt_create_failed
[17:27:29] [PASSED] ttm_tt_destroy_basic
[17:27:29] [PASSED] ttm_tt_populate_null_ttm
[17:27:29] [PASSED] ttm_tt_populate_populated_ttm
[17:27:29] [PASSED] ttm_tt_unpopulate_basic
[17:27:29] [PASSED] ttm_tt_unpopulate_empty_ttm
[17:27:29] [PASSED] ttm_tt_swapin_basic
[17:27:29] ===================== [PASSED] ttm_tt ======================
[17:27:29] =================== ttm_bo (14 subtests) ===================
[17:27:29] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[17:27:29] [PASSED] Cannot be interrupted and sleeps
[17:27:29] [PASSED] Cannot be interrupted, locks straight away
[17:27:29] [PASSED] Can be interrupted, sleeps
[17:27:29] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[17:27:29] [PASSED] ttm_bo_reserve_locked_no_sleep
[17:27:29] [PASSED] ttm_bo_reserve_no_wait_ticket
[17:27:29] [PASSED] ttm_bo_reserve_double_resv
[17:27:29] [PASSED] ttm_bo_reserve_interrupted
[17:27:29] [PASSED] ttm_bo_reserve_deadlock
[17:27:29] [PASSED] ttm_bo_unreserve_basic
[17:27:29] [PASSED] ttm_bo_unreserve_pinned
[17:27:29] [PASSED] ttm_bo_unreserve_bulk
[17:27:29] [PASSED] ttm_bo_fini_basic
[17:27:29] [PASSED] ttm_bo_fini_shared_resv
[17:27:29] [PASSED] ttm_bo_pin_basic
[17:27:29] [PASSED] ttm_bo_pin_unpin_resource
[17:27:29] [PASSED] ttm_bo_multiple_pin_one_unpin
[17:27:29] ===================== [PASSED] ttm_bo ======================
[17:27:29] ============== ttm_bo_validate (22 subtests) ===============
[17:27:29] ============== ttm_bo_init_reserved_sys_man ===============
[17:27:29] [PASSED] Buffer object for userspace
[17:27:29] [PASSED] Kernel buffer object
[17:27:29] [PASSED] Shared buffer object
[17:27:29] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[17:27:29] ============== ttm_bo_init_reserved_mock_man ==============
[17:27:29] [PASSED] Buffer object for userspace
[17:27:29] [PASSED] Kernel buffer object
[17:27:29] [PASSED] Shared buffer object
[17:27:29] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[17:27:29] [PASSED] ttm_bo_init_reserved_resv
[17:27:29] ================== ttm_bo_validate_basic ==================
[17:27:29] [PASSED] Buffer object for userspace
[17:27:29] [PASSED] Kernel buffer object
[17:27:29] [PASSED] Shared buffer object
[17:27:29] ============== [PASSED] ttm_bo_validate_basic ==============
[17:27:29] [PASSED] ttm_bo_validate_invalid_placement
[17:27:29] ============= ttm_bo_validate_same_placement ==============
[17:27:29] [PASSED] System manager
[17:27:29] [PASSED] VRAM manager
[17:27:29] ========= [PASSED] ttm_bo_validate_same_placement ==========
[17:27:29] [PASSED] ttm_bo_validate_failed_alloc
[17:27:29] [PASSED] ttm_bo_validate_pinned
[17:27:29] [PASSED] ttm_bo_validate_busy_placement
[17:27:29] ================ ttm_bo_validate_multihop =================
[17:27:29] [PASSED] Buffer object for userspace
[17:27:29] [PASSED] Kernel buffer object
[17:27:29] [PASSED] Shared buffer object
[17:27:29] ============ [PASSED] ttm_bo_validate_multihop =============
[17:27:29] ========== ttm_bo_validate_no_placement_signaled ==========
[17:27:29] [PASSED] Buffer object in system domain, no page vector
[17:27:29] [PASSED] Buffer object in system domain with an existing page vector
[17:27:29] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[17:27:29] ======== ttm_bo_validate_no_placement_not_signaled ========
[17:27:29] [PASSED] Buffer object for userspace
[17:27:29] [PASSED] Kernel buffer object
[17:27:29] [PASSED] Shared buffer object
[17:27:29] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[17:27:29] [PASSED] ttm_bo_validate_move_fence_signaled
[17:27:29] ========= ttm_bo_validate_move_fence_not_signaled =========
[17:27:29] [PASSED] Waits for GPU
[17:27:29] [PASSED] Tries to lock straight away
[17:27:29] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[17:27:29] [PASSED] ttm_bo_validate_swapout
[17:27:29] [PASSED] ttm_bo_validate_happy_evict
[17:27:29] [PASSED] ttm_bo_validate_all_pinned_evict
[17:27:29] [PASSED] ttm_bo_validate_allowed_only_evict
[17:27:29] [PASSED] ttm_bo_validate_deleted_evict
[17:27:29] [PASSED] ttm_bo_validate_busy_domain_evict
[17:27:29] [PASSED] ttm_bo_validate_evict_gutting
[17:27:29] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[17:27:29] ================= [PASSED] ttm_bo_validate =================
[17:27:29] ============================================================
[17:27:29] Testing complete. Ran 102 tests: passed: 102
[17:27:29] Elapsed time: 11.465s total, 1.724s configuring, 9.525s building, 0.185s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 22+ messages in thread
* ✓ Xe.CI.BAT: success for : drm/i915/display: Use ceiling division for NV12 UV surface offset calculation
2026-04-11 17:15 [PATCH] [RFC]: drm/i915/display: Use ceiling division for NV12 UV surface offset calculation Vidya Srinivas
2026-04-11 17:27 ` ✓ CI.KUnit: success for : " Patchwork
@ 2026-04-11 18:14 ` Patchwork
2026-04-11 19:03 ` ✗ Xe.CI.FULL: failure " Patchwork
` (10 subsequent siblings)
12 siblings, 0 replies; 22+ messages in thread
From: Patchwork @ 2026-04-11 18:14 UTC (permalink / raw)
To: Vidya Srinivas; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 989 bytes --]
== Series Details ==
Series: : drm/i915/display: Use ceiling division for NV12 UV surface offset calculation
URL : https://patchwork.freedesktop.org/series/164739/
State : success
== Summary ==
CI Bug Log - changes from xe-4886-dcbfa16156e0733d93e1039011bcbc28e4f9ee15_BAT -> xe-pw-164739v1_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (14 -> 13)
------------------------------
Missing (1): bat-dg2-oem2
Changes
-------
No changes found
Build changes
-------------
* Linux: xe-4886-dcbfa16156e0733d93e1039011bcbc28e4f9ee15 -> xe-pw-164739v1
IGT_8854: 93abaf0170728f69bc27577e5b405f7a2a01b6fd @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4886-dcbfa16156e0733d93e1039011bcbc28e4f9ee15: dcbfa16156e0733d93e1039011bcbc28e4f9ee15
xe-pw-164739v1: 164739v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/index.html
[-- Attachment #2: Type: text/html, Size: 1537 bytes --]
^ permalink raw reply [flat|nested] 22+ messages in thread
* ✗ Xe.CI.FULL: failure for : drm/i915/display: Use ceiling division for NV12 UV surface offset calculation
2026-04-11 17:15 [PATCH] [RFC]: drm/i915/display: Use ceiling division for NV12 UV surface offset calculation Vidya Srinivas
2026-04-11 17:27 ` ✓ CI.KUnit: success for : " Patchwork
2026-04-11 18:14 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-04-11 19:03 ` Patchwork
2026-04-14 15:42 ` [PATCH] [RFC]: " Jani Nikula
` (9 subsequent siblings)
12 siblings, 0 replies; 22+ messages in thread
From: Patchwork @ 2026-04-11 19:03 UTC (permalink / raw)
To: Vidya Srinivas; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 40933 bytes --]
== Series Details ==
Series: : drm/i915/display: Use ceiling division for NV12 UV surface offset calculation
URL : https://patchwork.freedesktop.org/series/164739/
State : failure
== Summary ==
CI Bug Log - changes from xe-4886-dcbfa16156e0733d93e1039011bcbc28e4f9ee15_FULL -> xe-pw-164739v1_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-164739v1_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-164739v1_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-164739v1_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_flip@dpms-off-confusion@c-hdmi-a3:
- shard-bmg: [PASS][1] -> [CRASH][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4886-dcbfa16156e0733d93e1039011bcbc28e4f9ee15/shard-bmg-1/igt@kms_flip@dpms-off-confusion@c-hdmi-a3.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-2/igt@kms_flip@dpms-off-confusion@c-hdmi-a3.html
Known issues
------------
Here are the changes found in xe-pw-164739v1_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#2327])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-6/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#7059] / [Intel XE#7085])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-8/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#1124]) +5 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#1124])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-lnl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#7679]) +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-8/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#3432])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2887]) +7 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-8/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_chamelium_audio@hdmi-audio:
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#373]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-lnl-7/igt@kms_chamelium_audio@hdmi-audio.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2325] / [Intel XE#7358])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-6/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2252]) +2 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-2/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2390] / [Intel XE#6974]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-8/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@uevent:
- shard-bmg: NOTRUN -> [FAIL][14] ([Intel XE#6707] / [Intel XE#7439]) +1 other test fail
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-8/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-256x85:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2320]) +2 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-256x85.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2286] / [Intel XE#6035])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#6126] / [Intel XE#776])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-8/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-3x:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2373] / [Intel XE#7448])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-2/igt@kms_feature_discovery@display-3x.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1421]) +2 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-lnl-7/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@dpms-off-confusion:
- shard-bmg: [PASS][20] -> [DMESG-WARN][21] ([Intel XE#5545])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4886-dcbfa16156e0733d93e1039011bcbc28e4f9ee15/shard-bmg-1/igt@kms_flip@dpms-off-confusion.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-2/igt@kms_flip@dpms-off-confusion.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [PASS][22] -> [FAIL][23] ([Intel XE#301] / [Intel XE#3149]) +1 other test fail
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4886-dcbfa16156e0733d93e1039011bcbc28e4f9ee15/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1:
- shard-lnl: [PASS][24] -> [FAIL][25] ([Intel XE#301])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4886-dcbfa16156e0733d93e1039011bcbc28e4f9ee15/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#7178] / [Intel XE#7349])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#7178] / [Intel XE#7351]) +2 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#7179]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-2/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#4141]) +5 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#656]) +4 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-lnl-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#7061] / [Intel XE#7356])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-lnl-7/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-fullscreen:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2311]) +14 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2350] / [Intel XE#7503])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-8/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2313]) +11 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-wc.html
* igt@kms_hdmi_inject@inject-audio:
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#1470] / [Intel XE#2853])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-lnl-7/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [PASS][37] -> [SKIP][38] ([Intel XE#1503])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4886-dcbfa16156e0733d93e1039011bcbc28e4f9ee15/shard-bmg-5/igt@kms_hdr@invalid-hdr.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-6/igt@kms_hdr@invalid-hdr.html
* igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#1450] / [Intel XE#7394]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-lnl-7/igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1.html
* igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#1450] / [Intel XE#2568] / [Intel XE#7394]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-lnl-7/igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#6911] / [Intel XE#7378])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-2/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#7283]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-2/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-5:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#7130]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-8/igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-5.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#7376] / [Intel XE#870])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-8/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-8/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#1489]) +2 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-2/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2387] / [Intel XE#7429])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-8/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr-sprite-render:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-2/igt@kms_psr@fbc-psr-sprite-render.html
* igt@kms_sharpness_filter@filter-scaler-upscale:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#6503])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-2/igt@kms_sharpness_filter@filter-scaler-upscale.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [PASS][50] -> [FAIL][51] ([Intel XE#4459]) +1 other test fail
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4886-dcbfa16156e0733d93e1039011bcbc28e4f9ee15/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#1499])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-lnl-7/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@xe_eudebug@basic-client-th:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#7636]) +2 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-lnl-7/igt@xe_eudebug@basic-client-th.html
* igt@xe_eudebug_online@breakpoint-many-sessions-single-tile:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#7636]) +4 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-6/igt@xe_eudebug_online@breakpoint-many-sessions-single-tile.html
* igt@xe_evict@evict-small-external-multi-queue-cm:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#7140])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-2/igt@xe_evict@evict-small-external-multi-queue-cm.html
* igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen:
- shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#6540] / [Intel XE#688]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-lnl-7/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html
* igt@xe_exec_balancer@many-execqueues-virtual-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#7482]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-lnl-7/igt@xe_exec_balancer@many-execqueues-virtual-userptr-invalidate-race.html
* igt@xe_exec_basic@many-bindexecqueue-rebind:
- shard-bmg: [PASS][58] -> [SKIP][59] ([Intel XE#6703]) +47 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4886-dcbfa16156e0733d93e1039011bcbc28e4f9ee15/shard-bmg-1/igt@xe_exec_basic@many-bindexecqueue-rebind.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-2/igt@xe_exec_basic@many-bindexecqueue-rebind.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2322] / [Intel XE#7372]) +3 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_basic@multigpu-once-userptr:
- shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#1392]) +2 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-lnl-7/igt@xe_exec_basic@multigpu-once-userptr.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-imm:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#7136]) +8 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-2/igt@xe_exec_fault_mode@many-execqueues-multi-queue-imm.html
* igt@xe_exec_fault_mode@once-multi-queue:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#7136]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-lnl-7/igt@xe_exec_fault_mode@once-multi-queue.html
* igt@xe_exec_multi_queue@max-queues-preempt-mode-basic-smem:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#6874]) +9 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-6/igt@xe_exec_multi_queue@max-queues-preempt-mode-basic-smem.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma:
- shard-lnl: [PASS][65] -> [FAIL][66] ([Intel XE#5625])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4886-dcbfa16156e0733d93e1039011bcbc28e4f9ee15/shard-lnl-7/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-lnl-2/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
* igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#7138]) +3 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-userptr-invalidate.html
* igt@xe_exec_threads@threads-multi-queue-cm-userptr-rebind:
- shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#7138])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-lnl-7/igt@xe_exec_threads@threads-multi-queue-cm-userptr-rebind.html
* igt@xe_mmap@small-bar:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#586] / [Intel XE#7323] / [Intel XE#7384])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-8/igt@xe_mmap@small-bar.html
* igt@xe_multigpu_svm@mgpu-coherency-basic:
- shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#6964])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-lnl-7/igt@xe_multigpu_svm@mgpu-coherency-basic.html
* igt@xe_multigpu_svm@mgpu-concurrent-access-basic:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#6964])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-8/igt@xe_multigpu_svm@mgpu-concurrent-access-basic.html
* igt@xe_pm@d3cold-mmap-system:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#2284] / [Intel XE#7370])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-8/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_pm_residency@cpg-basic:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#584] / [Intel XE#7369])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-lnl-7/igt@xe_pm_residency@cpg-basic.html
* igt@xe_prefetch_fault@prefetch-fault-svm:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#7599])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-2/igt@xe_prefetch_fault@prefetch-fault-svm.html
* igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#4733] / [Intel XE#7417])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-6/igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq.html
* igt@xe_query@multigpu-query-config:
- shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#944])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-lnl-7/igt@xe_query@multigpu-query-config.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#944]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-6/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_sriov_flr@flr-twice:
- shard-bmg: NOTRUN -> [FAIL][78] ([Intel XE#6569])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-8/igt@xe_sriov_flr@flr-twice.html
* igt@xe_survivability@runtime-survivability:
- shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#6529] / [Intel XE#7331] / [Intel XE#7388])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-lnl-7/igt@xe_survivability@runtime-survivability.html
#### Possible fixes ####
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-bmg: [FAIL][80] ([Intel XE#7571]) -> [PASS][81]
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4886-dcbfa16156e0733d93e1039011bcbc28e4f9ee15/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_flip@flip-vs-expired-vblank:
- shard-bmg: [FAIL][82] ([Intel XE#3321]) -> [PASS][83]
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4886-dcbfa16156e0733d93e1039011bcbc28e4f9ee15/shard-bmg-1/igt@kms_flip@flip-vs-expired-vblank.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-2/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_flip@flip-vs-expired-vblank@a-dp2:
- shard-bmg: [FAIL][84] -> [PASS][85]
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4886-dcbfa16156e0733d93e1039011bcbc28e4f9ee15/shard-bmg-1/igt@kms_flip@flip-vs-expired-vblank@a-dp2.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-2/igt@kms_flip@flip-vs-expired-vblank@a-dp2.html
* igt@kms_flip@flip-vs-expired-vblank@a-edp1:
- shard-lnl: [FAIL][86] ([Intel XE#301]) -> [PASS][87] +1 other test pass
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4886-dcbfa16156e0733d93e1039011bcbc28e4f9ee15/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
* igt@kms_flip@plain-flip-ts-check:
- shard-bmg: [FAIL][88] ([Intel XE#6266]) -> [PASS][89] +1 other test pass
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4886-dcbfa16156e0733d93e1039011bcbc28e4f9ee15/shard-bmg-5/igt@kms_flip@plain-flip-ts-check.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-1/igt@kms_flip@plain-flip-ts-check.html
* igt@kms_plane_lowres@tiling-x:
- shard-bmg: [INCOMPLETE][90] ([Intel XE#5681]) -> [PASS][91]
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4886-dcbfa16156e0733d93e1039011bcbc28e4f9ee15/shard-bmg-2/igt@kms_plane_lowres@tiling-x.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-6/igt@kms_plane_lowres@tiling-x.html
* igt@kms_plane_lowres@tiling-x@pipe-c-dp-2:
- shard-bmg: [INCOMPLETE][92] -> [PASS][93]
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4886-dcbfa16156e0733d93e1039011bcbc28e4f9ee15/shard-bmg-2/igt@kms_plane_lowres@tiling-x@pipe-c-dp-2.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-6/igt@kms_plane_lowres@tiling-x@pipe-c-dp-2.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_mmio_probe_early:
- shard-bmg: [DMESG-WARN][94] ([Intel XE#1727]) -> [PASS][95]
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4886-dcbfa16156e0733d93e1039011bcbc28e4f9ee15/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_mmio_probe_early.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_mmio_probe_early.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_wa_gt_init:
- shard-lnl: [ABORT][96] -> [PASS][97]
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4886-dcbfa16156e0733d93e1039011bcbc28e4f9ee15/shard-lnl-8/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_gt_init.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-lnl-7/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_gt_init.html
#### Warnings ####
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-bmg: [SKIP][98] ([Intel XE#607] / [Intel XE#7361]) -> [SKIP][99] ([Intel XE#6703])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4886-dcbfa16156e0733d93e1039011bcbc28e4f9ee15/shard-bmg-1/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-2/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-bmg: [SKIP][100] ([Intel XE#1124]) -> [SKIP][101] ([Intel XE#6703])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4886-dcbfa16156e0733d93e1039011bcbc28e4f9ee15/shard-bmg-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs:
- shard-bmg: [SKIP][102] ([Intel XE#2887]) -> [SKIP][103] ([Intel XE#6703]) +2 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4886-dcbfa16156e0733d93e1039011bcbc28e4f9ee15/shard-bmg-1/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-2/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html
* igt@kms_content_protection@dp-mst-type-1-suspend-resume:
- shard-bmg: [SKIP][104] ([Intel XE#6974]) -> [SKIP][105] ([Intel XE#6703])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4886-dcbfa16156e0733d93e1039011bcbc28e4f9ee15/shard-bmg-1/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-2/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-bmg: [SKIP][106] ([Intel XE#4354] / [Intel XE#7386]) -> [SKIP][107] ([Intel XE#6703])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4886-dcbfa16156e0733d93e1039011bcbc28e4f9ee15/shard-bmg-1/igt@kms_dp_link_training@uhbr-mst.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-2/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][108] ([Intel XE#2311]) -> [SKIP][109] ([Intel XE#6703]) +3 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4886-dcbfa16156e0733d93e1039011bcbc28e4f9ee15/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][110] ([Intel XE#2313]) -> [SKIP][111] ([Intel XE#6703])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4886-dcbfa16156e0733d93e1039011bcbc28e4f9ee15/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-bmg: [SKIP][112] ([Intel XE#5021] / [Intel XE#7377]) -> [SKIP][113] ([Intel XE#6703])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4886-dcbfa16156e0733d93e1039011bcbc28e4f9ee15/shard-bmg-1/igt@kms_plane_multiple@2x-tiling-y.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_pm_backlight@basic-brightness:
- shard-bmg: [SKIP][114] ([Intel XE#7376] / [Intel XE#870]) -> [SKIP][115] ([Intel XE#6703])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4886-dcbfa16156e0733d93e1039011bcbc28e4f9ee15/shard-bmg-1/igt@kms_pm_backlight@basic-brightness.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-2/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area:
- shard-bmg: [SKIP][116] ([Intel XE#1489]) -> [SKIP][117] ([Intel XE#6703])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4886-dcbfa16156e0733d93e1039011bcbc28e4f9ee15/shard-bmg-1/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-2/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html
* igt@kms_psr@fbc-pr-sprite-plane-onoff:
- shard-bmg: [SKIP][118] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][119] ([Intel XE#6703]) +1 other test skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4886-dcbfa16156e0733d93e1039011bcbc28e4f9ee15/shard-bmg-1/igt@kms_psr@fbc-pr-sprite-plane-onoff.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-2/igt@kms_psr@fbc-pr-sprite-plane-onoff.html
* igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-sram:
- shard-bmg: [SKIP][120] ([Intel XE#7636]) -> [SKIP][121] ([Intel XE#6703])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4886-dcbfa16156e0733d93e1039011bcbc28e4f9ee15/shard-bmg-1/igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-sram.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-2/igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-sram.html
* igt@xe_exec_basic@multigpu-no-exec-userptr-rebind:
- shard-bmg: [SKIP][122] ([Intel XE#2322] / [Intel XE#7372]) -> [SKIP][123] ([Intel XE#6703])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4886-dcbfa16156e0733d93e1039011bcbc28e4f9ee15/shard-bmg-1/igt@xe_exec_basic@multigpu-no-exec-userptr-rebind.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-2/igt@xe_exec_basic@multigpu-no-exec-userptr-rebind.html
* igt@xe_exec_fault_mode@once-multi-queue-userptr-imm:
- shard-bmg: [SKIP][124] ([Intel XE#7136]) -> [SKIP][125] ([Intel XE#6703]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4886-dcbfa16156e0733d93e1039011bcbc28e4f9ee15/shard-bmg-1/igt@xe_exec_fault_mode@once-multi-queue-userptr-imm.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-2/igt@xe_exec_fault_mode@once-multi-queue-userptr-imm.html
* igt@xe_exec_multi_queue@many-queues-preempt-mode-fault-dyn-priority-smem:
- shard-bmg: [SKIP][126] ([Intel XE#6874]) -> [SKIP][127] ([Intel XE#6703]) +2 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4886-dcbfa16156e0733d93e1039011bcbc28e4f9ee15/shard-bmg-1/igt@xe_exec_multi_queue@many-queues-preempt-mode-fault-dyn-priority-smem.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-2/igt@xe_exec_multi_queue@many-queues-preempt-mode-fault-dyn-priority-smem.html
* igt@xe_exec_threads@threads-multi-queue-cm-fd-rebind:
- shard-bmg: [SKIP][128] ([Intel XE#7138]) -> [SKIP][129] ([Intel XE#6703])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4886-dcbfa16156e0733d93e1039011bcbc28e4f9ee15/shard-bmg-1/igt@xe_exec_threads@threads-multi-queue-cm-fd-rebind.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-cm-fd-rebind.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1450
[Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[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#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2568
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
[Intel XE#5681]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5681
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586
[Intel XE#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#6126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6126
[Intel XE#6266]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6266
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6529]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6529
[Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703
[Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085
[Intel XE#7130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7323
[Intel XE#7331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7331
[Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[Intel XE#7361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7361
[Intel XE#7369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7369
[Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
[Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377
[Intel XE#7378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7378
[Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383
[Intel XE#7384]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7384
[Intel XE#7386]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7386
[Intel XE#7388]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7388
[Intel XE#7394]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7394
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429
[Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439
[Intel XE#7448]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7448
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7503
[Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
[Intel XE#7599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7599
[Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
[Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* Linux: xe-4886-dcbfa16156e0733d93e1039011bcbc28e4f9ee15 -> xe-pw-164739v1
IGT_8854: 93abaf0170728f69bc27577e5b405f7a2a01b6fd @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4886-dcbfa16156e0733d93e1039011bcbc28e4f9ee15: dcbfa16156e0733d93e1039011bcbc28e4f9ee15
xe-pw-164739v1: 164739v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v1/index.html
[-- Attachment #2: Type: text/html, Size: 46610 bytes --]
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [PATCH] [RFC]: drm/i915/display: Use ceiling division for NV12 UV surface offset calculation
2026-04-11 17:15 [PATCH] [RFC]: drm/i915/display: Use ceiling division for NV12 UV surface offset calculation Vidya Srinivas
` (2 preceding siblings ...)
2026-04-11 19:03 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-04-14 15:42 ` Jani Nikula
2026-04-14 17:10 ` Srinivas, Vidya
2026-04-15 0:15 ` Vidya Srinivas
` (8 subsequent siblings)
12 siblings, 1 reply; 22+ messages in thread
From: Jani Nikula @ 2026-04-14 15:42 UTC (permalink / raw)
To: Vidya Srinivas, intel-gfx; +Cc: intel-xe, Vidya Srinivas
On Sat, 11 Apr 2026, Vidya Srinivas <vidya.srinivas@intel.com> wrote:
> For LNL+, odd source size and panning for YUV 422/420 surfaces is
> supported. However, it requires the UV (chroma) surface Start X/Y and
> width/height to be calculated as ceiling(half of Y plane value) rather
> than floor. The current code uses (>> 17) which is floor division. For
> odd Y plane values this produces an off-by-one error in the UV plane
> offset.
>
> On Android systems we see PLANE ATS fault when NV12 overlays are
> used with odd source dimensions:
>
> [ 126.854200] xe 0000:00:02.0: [drm:intel_atomic_setup_scaler [xe]] [CRTC:148:pipe A] attached scaler id 0.0 to PLANE:33
> [ 126.854617] xe 0000:00:02.0: [drm:skl_update_scaler [xe]] [CRTC:148:pipe A] scaler_user index 0.0: staged scaling request for 1279x719->1340x753
> [ 126.854837] xe 0000:00:02.0: [drm:intel_plane_atomic_check [xe]] UV plane [PLANE:33:plane 1A] using Y plane [PLANE:123:plane 4A]
> [ 126.854926] xe 0000:00:02.0: [drm] *ERROR* [CRTC:148:pipe A] PLANE ATS fault
>
> With Y plane width 1279:
> floor(1279/2) = 639 (current)
> ceil(1279/2) = 640 (required)
>
> Change the UV offset/size calculation to use ceiling division by adding
> (1 << 17) - 1 before shifting. This is a no-op for even values since
> ceiling and floor are equal when the dividend is even.
>
> Signed-off-by: Vidya Srinivas <vidya.srinivas@intel.com>
> ---
> drivers/gpu/drm/i915/display/skl_universal_plane.c | 14 ++++++++++----
> 1 file changed, 10 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/skl_universal_plane.c b/drivers/gpu/drm/i915/display/skl_universal_plane.c
> index 7a9d494334b5..c455bf92ae99 100644
> --- a/drivers/gpu/drm/i915/display/skl_universal_plane.c
> +++ b/drivers/gpu/drm/i915/display/skl_universal_plane.c
> @@ -2139,10 +2139,16 @@ static int skl_check_nv12_aux_surface(struct intel_plane_state *plane_state)
> int min_height = intel_plane_min_height(plane, fb, uv_plane, rotation);
> int max_width = intel_plane_max_width(plane, fb, uv_plane, rotation);
> int max_height = intel_plane_max_height(plane, fb, uv_plane, rotation);
> - int x = plane_state->uapi.src.x1 >> 17;
> - int y = plane_state->uapi.src.y1 >> 17;
> - int w = drm_rect_width(&plane_state->uapi.src) >> 17;
> - int h = drm_rect_height(&plane_state->uapi.src) >> 17;
> +
> + /*
> + * LNL+ UV surface start/size =
> + * ceiling(half of Y plane start/size). Use ceiling division
> + * unconditionally; it is a no-op for even values.
> + */
> + int x = (plane_state->uapi.src.x1 + (1 << 17) - 1) >> 17;
> + int y = (plane_state->uapi.src.y1 + (1 << 17) - 1) >> 17;
> + int w = (drm_rect_width(&plane_state->uapi.src) + (1 << 17) - 1) >> 17;
> + int h = (drm_rect_height(&plane_state->uapi.src) + (1 << 17) - 1) >> 17;
The problem I have with this is that the original >> 17 is already too
magic. It divides a U16.16 fixed point in half, and this is completely
non-obvious.
The commit message doesn't even mention this.
I think this needs a clean separation between the division and the
conversion to int.
BR,
Jani.
> u32 offset;
>
> /* FIXME not quite sure how/if these apply to the chroma plane */
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 22+ messages in thread
* RE: [PATCH] [RFC]: drm/i915/display: Use ceiling division for NV12 UV surface offset calculation
2026-04-14 15:42 ` [PATCH] [RFC]: " Jani Nikula
@ 2026-04-14 17:10 ` Srinivas, Vidya
2026-04-14 17:59 ` Shankar, Uma
0 siblings, 1 reply; 22+ messages in thread
From: Srinivas, Vidya @ 2026-04-14 17:10 UTC (permalink / raw)
To: Jani Nikula, intel-gfx@lists.freedesktop.org
Cc: intel-xe@lists.freedesktop.org
> -----Original Message-----
> From: Jani Nikula <jani.nikula@linux.intel.com>
> Sent: 14 April 2026 21:13
> To: Srinivas, Vidya <vidya.srinivas@intel.com>; intel-gfx@lists.freedesktop.org
> Cc: intel-xe@lists.freedesktop.org; Srinivas, Vidya <vidya.srinivas@intel.com>
> Subject: Re: [PATCH] [RFC]: drm/i915/display: Use ceiling division for NV12 UV
> surface offset calculation
>
> On Sat, 11 Apr 2026, Vidya Srinivas <vidya.srinivas@intel.com> wrote:
> > For LNL+, odd source size and panning for YUV 422/420 surfaces is
> > supported. However, it requires the UV (chroma) surface Start X/Y and
> > width/height to be calculated as ceiling(half of Y plane value) rather
> > than floor. The current code uses (>> 17) which is floor division. For
> > odd Y plane values this produces an off-by-one error in the UV plane
> > offset.
> >
> > On Android systems we see PLANE ATS fault when NV12 overlays are used
> > with odd source dimensions:
> >
> > [ 126.854200] xe 0000:00:02.0: [drm:intel_atomic_setup_scaler [xe]]
> > [CRTC:148:pipe A] attached scaler id 0.0 to PLANE:33 [ 126.854617] xe
> > 0000:00:02.0: [drm:skl_update_scaler [xe]] [CRTC:148:pipe A]
> > scaler_user index 0.0: staged scaling request for 1279x719->1340x753 [
> > 126.854837] xe 0000:00:02.0: [drm:intel_plane_atomic_check [xe]] UV
> > plane [PLANE:33:plane 1A] using Y plane [PLANE:123:plane 4A] [
> > 126.854926] xe 0000:00:02.0: [drm] *ERROR* [CRTC:148:pipe A] PLANE ATS
> > fault
> >
> > With Y plane width 1279:
> > floor(1279/2) = 639 (current)
> > ceil(1279/2) = 640 (required)
> >
> > Change the UV offset/size calculation to use ceiling division by
> > adding
> > (1 << 17) - 1 before shifting. This is a no-op for even values since
> > ceiling and floor are equal when the dividend is even.
> >
> > Signed-off-by: Vidya Srinivas <vidya.srinivas@intel.com>
> > ---
> > drivers/gpu/drm/i915/display/skl_universal_plane.c | 14
> > ++++++++++----
> > 1 file changed, 10 insertions(+), 4 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/i915/display/skl_universal_plane.c
> > b/drivers/gpu/drm/i915/display/skl_universal_plane.c
> > index 7a9d494334b5..c455bf92ae99 100644
> > --- a/drivers/gpu/drm/i915/display/skl_universal_plane.c
> > +++ b/drivers/gpu/drm/i915/display/skl_universal_plane.c
> > @@ -2139,10 +2139,16 @@ static int skl_check_nv12_aux_surface(struct
> intel_plane_state *plane_state)
> > int min_height = intel_plane_min_height(plane, fb, uv_plane,
> rotation);
> > int max_width = intel_plane_max_width(plane, fb, uv_plane,
> rotation);
> > int max_height = intel_plane_max_height(plane, fb, uv_plane,
> rotation);
> > - int x = plane_state->uapi.src.x1 >> 17;
> > - int y = plane_state->uapi.src.y1 >> 17;
> > - int w = drm_rect_width(&plane_state->uapi.src) >> 17;
> > - int h = drm_rect_height(&plane_state->uapi.src) >> 17;
> > +
> > + /*
> > + * LNL+ UV surface start/size =
> > + * ceiling(half of Y plane start/size). Use ceiling division
> > + * unconditionally; it is a no-op for even values.
> > + */
> > + int x = (plane_state->uapi.src.x1 + (1 << 17) - 1) >> 17;
> > + int y = (plane_state->uapi.src.y1 + (1 << 17) - 1) >> 17;
> > + int w = (drm_rect_width(&plane_state->uapi.src) + (1 << 17) - 1) >>
> 17;
> > + int h = (drm_rect_height(&plane_state->uapi.src) + (1 << 17) - 1) >>
> > +17;
>
> The problem I have with this is that the original >> 17 is already too magic. It
> divides a U16.16 fixed point in half, and this is completely non-obvious.
>
> The commit message doesn't even mention this.
>
> I think this needs a clean separation between the division and the conversion
> to int.
Hello Jani
Thank you very much.
Thought of using DIV_ROUND_UP(value >> 16, 2) but it would lose sub-pixel
precision from 16.16 I guess. Kindly suggest.
Regards
Vidya
>
>
> BR,
> Jani.
>
>
> > u32 offset;
> >
> > /* FIXME not quite sure how/if these apply to the chroma plane */
>
> --
> Jani Nikula, Intel
^ permalink raw reply [flat|nested] 22+ messages in thread
* RE: [PATCH] [RFC]: drm/i915/display: Use ceiling division for NV12 UV surface offset calculation
2026-04-14 17:10 ` Srinivas, Vidya
@ 2026-04-14 17:59 ` Shankar, Uma
2026-04-15 0:23 ` Srinivas, Vidya
0 siblings, 1 reply; 22+ messages in thread
From: Shankar, Uma @ 2026-04-14 17:59 UTC (permalink / raw)
To: Srinivas, Vidya, Jani Nikula, intel-gfx@lists.freedesktop.org
Cc: intel-xe@lists.freedesktop.org
> -----Original Message-----
> From: Intel-xe <intel-xe-bounces@lists.freedesktop.org> On Behalf Of Srinivas,
> Vidya
> Sent: Tuesday, April 14, 2026 10:41 PM
> To: Jani Nikula <jani.nikula@linux.intel.com>; intel-gfx@lists.freedesktop.org
> Cc: intel-xe@lists.freedesktop.org
> Subject: RE: [PATCH] [RFC]: drm/i915/display: Use ceiling division for NV12 UV
> surface offset calculation
>
>
>
> > -----Original Message-----
> > From: Jani Nikula <jani.nikula@linux.intel.com>
> > Sent: 14 April 2026 21:13
> > To: Srinivas, Vidya <vidya.srinivas@intel.com>;
> > intel-gfx@lists.freedesktop.org
> > Cc: intel-xe@lists.freedesktop.org; Srinivas, Vidya
> > <vidya.srinivas@intel.com>
> > Subject: Re: [PATCH] [RFC]: drm/i915/display: Use ceiling division for
> > NV12 UV surface offset calculation
> >
> > On Sat, 11 Apr 2026, Vidya Srinivas <vidya.srinivas@intel.com> wrote:
> > > For LNL+, odd source size and panning for YUV 422/420 surfaces is
> > > supported. However, it requires the UV (chroma) surface Start X/Y
> > > and width/height to be calculated as ceiling(half of Y plane value)
> > > rather than floor. The current code uses (>> 17) which is floor
> > > division. For odd Y plane values this produces an off-by-one error
> > > in the UV plane offset.
> > >
> > > On Android systems we see PLANE ATS fault when NV12 overlays are
> > > used with odd source dimensions:
> > >
> > > [ 126.854200] xe 0000:00:02.0: [drm:intel_atomic_setup_scaler [xe]]
> > > [CRTC:148:pipe A] attached scaler id 0.0 to PLANE:33 [ 126.854617]
> > > xe
> > > 0000:00:02.0: [drm:skl_update_scaler [xe]] [CRTC:148:pipe A]
> > > scaler_user index 0.0: staged scaling request for 1279x719->1340x753
> > > [ 126.854837] xe 0000:00:02.0: [drm:intel_plane_atomic_check [xe]]
> > > UV plane [PLANE:33:plane 1A] using Y plane [PLANE:123:plane 4A] [
> > > 126.854926] xe 0000:00:02.0: [drm] *ERROR* [CRTC:148:pipe A] PLANE
> > > ATS fault
> > >
> > > With Y plane width 1279:
> > > floor(1279/2) = 639 (current)
> > > ceil(1279/2) = 640 (required)
> > >
> > > Change the UV offset/size calculation to use ceiling division by
> > > adding
> > > (1 << 17) - 1 before shifting. This is a no-op for even values since
> > > ceiling and floor are equal when the dividend is even.
> > >
> > > Signed-off-by: Vidya Srinivas <vidya.srinivas@intel.com>
> > > ---
> > > drivers/gpu/drm/i915/display/skl_universal_plane.c | 14
> > > ++++++++++----
> > > 1 file changed, 10 insertions(+), 4 deletions(-)
> > >
> > > diff --git a/drivers/gpu/drm/i915/display/skl_universal_plane.c
> > > b/drivers/gpu/drm/i915/display/skl_universal_plane.c
> > > index 7a9d494334b5..c455bf92ae99 100644
> > > --- a/drivers/gpu/drm/i915/display/skl_universal_plane.c
> > > +++ b/drivers/gpu/drm/i915/display/skl_universal_plane.c
> > > @@ -2139,10 +2139,16 @@ static int skl_check_nv12_aux_surface(struct
> > intel_plane_state *plane_state)
> > > int min_height = intel_plane_min_height(plane, fb, uv_plane,
> > rotation);
> > > int max_width = intel_plane_max_width(plane, fb, uv_plane,
> > rotation);
> > > int max_height = intel_plane_max_height(plane, fb, uv_plane,
> > rotation);
> > > - int x = plane_state->uapi.src.x1 >> 17;
> > > - int y = plane_state->uapi.src.y1 >> 17;
> > > - int w = drm_rect_width(&plane_state->uapi.src) >> 17;
> > > - int h = drm_rect_height(&plane_state->uapi.src) >> 17;
> > > +
> > > + /*
> > > + * LNL+ UV surface start/size =
> > > + * ceiling(half of Y plane start/size). Use ceiling division
> > > + * unconditionally; it is a no-op for even values.
> > > + */
> > > + int x = (plane_state->uapi.src.x1 + (1 << 17) - 1) >> 17;
> > > + int y = (plane_state->uapi.src.y1 + (1 << 17) - 1) >> 17;
> > > + int w = (drm_rect_width(&plane_state->uapi.src) + (1 << 17) - 1)
> > > +>>
> > 17;
> > > + int h = (drm_rect_height(&plane_state->uapi.src) + (1 << 17) - 1)
> > > +>> 17;
> >
> > The problem I have with this is that the original >> 17 is already too
> > magic. It divides a U16.16 fixed point in half, and this is completely non-obvious.
> >
> > The commit message doesn't even mention this.
> >
> > I think this needs a clean separation between the division and the
> > conversion to int.
>
> Hello Jani
> Thank you very much.
> Thought of using DIV_ROUND_UP(value >> 16, 2) but it would lose sub-pixel
> precision from 16.16 I guess. Kindly suggest.
Hi Vidya,
We can maybe divide full value by 2^17 directly and do the ceiling operation.
DIV_ROUND_UP(plane_state->uapi.src.x1, 1 << 17);
This should preserve the sub pixel precision and also ceiling gets applied.
Regards,
Uma Shankar
> Regards
> Vidya
>
> >
> >
> > BR,
> > Jani.
> >
> >
> > > u32 offset;
> > >
> > > /* FIXME not quite sure how/if these apply to the chroma plane */
> >
> > --
> > Jani Nikula, Intel
^ permalink raw reply [flat|nested] 22+ messages in thread
* [PATCH] [RFC]: drm/i915/display: Use ceiling division for NV12 UV surface offset calculation
2026-04-11 17:15 [PATCH] [RFC]: drm/i915/display: Use ceiling division for NV12 UV surface offset calculation Vidya Srinivas
` (3 preceding siblings ...)
2026-04-14 15:42 ` [PATCH] [RFC]: " Jani Nikula
@ 2026-04-15 0:15 ` Vidya Srinivas
2026-04-15 11:59 ` Jani Nikula
2026-04-15 1:10 ` ✓ CI.KUnit: success for : drm/i915/display: Use ceiling division for NV12 UV surface offset calculation (rev2) Patchwork
` (7 subsequent siblings)
12 siblings, 1 reply; 22+ messages in thread
From: Vidya Srinivas @ 2026-04-15 0:15 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe, uma.shankar, jani.nikula, Vidya Srinivas
For LNL+, odd source size and panning for YUV 422/420 surfaces is
supported. However, it requires the UV (chroma) surface Start X/Y and
width/height to be calculated as ceiling(half of Y plane value) rather
than floor.
The current code uses (>> 17) which combines the U16.16 fixed-point to
integer conversion (>> 16) with a divide-by-2 for chroma subsampling
(>> 1) into a single floor division. For odd Y plane values this
produces an off-by-one error in the UV plane offset.
On Android systems we see PLANE ATS fault when NV12 overlays are
used with odd source dimensions:
[ 126.854200] xe 0000:00:02.0: [drm:intel_atomic_setup_scaler [xe]] [CRTC:148:pipe A] attached scaler id 0.0 to PLANE:33
[ 126.854617] xe 0000:00:02.0: [drm:skl_update_scaler [xe]] [CRTC:148:pipe A] scaler_user index 0.0: staged scaling request for 1279x719->1340x753
[ 126.854837] xe 0000:00:02.0: [drm:intel_plane_atomic_check [xe]] UV plane [PLANE:33:plane 1A] using Y plane [PLANE:123:plane 4A]
[ 126.854926] xe 0000:00:02.0: [drm] *ERROR* [CRTC:148:pipe A] PLANE ATS fault
With Y plane width 1279:
floor(1279/2) = 639 (current)
ceil(1279/2) = 640 (required)
Use DIV_ROUND_UP(value, 1 << 17) for the ceiling division of the
U16.16 fixed-point source coordinates, preserving sub-pixel precision.
This is a no-op for even values since ceiling and floor are equal
when the dividend is even.
v2: Use DIV_ROUND_UP(value, 1 << 17) to preserve sub-pixel precision
while making the ceiling division readable (Jani, Uma)
Signed-off-by: Vidya Srinivas <vidya.srinivas@intel.com>
---
drivers/gpu/drm/i915/display/skl_universal_plane.c | 14 ++++++++++----
1 file changed, 10 insertions(+), 4 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/skl_universal_plane.c b/drivers/gpu/drm/i915/display/skl_universal_plane.c
index 7a9d494334b5..1de79ff65253 100644
--- a/drivers/gpu/drm/i915/display/skl_universal_plane.c
+++ b/drivers/gpu/drm/i915/display/skl_universal_plane.c
@@ -2139,10 +2139,16 @@ static int skl_check_nv12_aux_surface(struct intel_plane_state *plane_state)
int min_height = intel_plane_min_height(plane, fb, uv_plane, rotation);
int max_width = intel_plane_max_width(plane, fb, uv_plane, rotation);
int max_height = intel_plane_max_height(plane, fb, uv_plane, rotation);
- int x = plane_state->uapi.src.x1 >> 17;
- int y = plane_state->uapi.src.y1 >> 17;
- int w = drm_rect_width(&plane_state->uapi.src) >> 17;
- int h = drm_rect_height(&plane_state->uapi.src) >> 17;
+
+ /*
+ * LNL+ UV surface start/size =
+ * ceiling(half of Y plane start/size). Use ceiling division
+ * unconditionally; it is a no-op for even values.
+ */
+ int x = DIV_ROUND_UP(plane_state->uapi.src.x1, 1 << 17);
+ int y = DIV_ROUND_UP(plane_state->uapi.src.y1, 1 << 17);
+ int w = DIV_ROUND_UP(drm_rect_width(&plane_state->uapi.src), 1 << 17);
+ int h = DIV_ROUND_UP(drm_rect_height(&plane_state->uapi.src), 1 << 17);
u32 offset;
/* FIXME not quite sure how/if these apply to the chroma plane */
--
2.45.2
^ permalink raw reply related [flat|nested] 22+ messages in thread
* RE: [PATCH] [RFC]: drm/i915/display: Use ceiling division for NV12 UV surface offset calculation
2026-04-14 17:59 ` Shankar, Uma
@ 2026-04-15 0:23 ` Srinivas, Vidya
0 siblings, 0 replies; 22+ messages in thread
From: Srinivas, Vidya @ 2026-04-15 0:23 UTC (permalink / raw)
To: Shankar, Uma, Jani Nikula, intel-gfx@lists.freedesktop.org
Cc: intel-xe@lists.freedesktop.org
> -----Original Message-----
> From: Shankar, Uma <uma.shankar@intel.com>
> Sent: 14 April 2026 23:29
> To: Srinivas, Vidya <vidya.srinivas@intel.com>; Jani Nikula
> <jani.nikula@linux.intel.com>; intel-gfx@lists.freedesktop.org
> Cc: intel-xe@lists.freedesktop.org
> Subject: RE: [PATCH] [RFC]: drm/i915/display: Use ceiling division for NV12 UV
> surface offset calculation
>
>
>
> > -----Original Message-----
> > From: Intel-xe <intel-xe-bounces@lists.freedesktop.org> On Behalf Of
> > Srinivas, Vidya
> > Sent: Tuesday, April 14, 2026 10:41 PM
> > To: Jani Nikula <jani.nikula@linux.intel.com>;
> > intel-gfx@lists.freedesktop.org
> > Cc: intel-xe@lists.freedesktop.org
> > Subject: RE: [PATCH] [RFC]: drm/i915/display: Use ceiling division for
> > NV12 UV surface offset calculation
> >
> >
> >
> > > -----Original Message-----
> > > From: Jani Nikula <jani.nikula@linux.intel.com>
> > > Sent: 14 April 2026 21:13
> > > To: Srinivas, Vidya <vidya.srinivas@intel.com>;
> > > intel-gfx@lists.freedesktop.org
> > > Cc: intel-xe@lists.freedesktop.org; Srinivas, Vidya
> > > <vidya.srinivas@intel.com>
> > > Subject: Re: [PATCH] [RFC]: drm/i915/display: Use ceiling division
> > > for
> > > NV12 UV surface offset calculation
> > >
> > > On Sat, 11 Apr 2026, Vidya Srinivas <vidya.srinivas@intel.com> wrote:
> > > > For LNL+, odd source size and panning for YUV 422/420 surfaces is
> > > > supported. However, it requires the UV (chroma) surface Start X/Y
> > > > and width/height to be calculated as ceiling(half of Y plane
> > > > value) rather than floor. The current code uses (>> 17) which is
> > > > floor division. For odd Y plane values this produces an off-by-one
> > > > error in the UV plane offset.
> > > >
> > > > On Android systems we see PLANE ATS fault when NV12 overlays are
> > > > used with odd source dimensions:
> > > >
> > > > [ 126.854200] xe 0000:00:02.0: [drm:intel_atomic_setup_scaler
> > > > [xe]] [CRTC:148:pipe A] attached scaler id 0.0 to PLANE:33 [
> > > > 126.854617] xe
> > > > 0000:00:02.0: [drm:skl_update_scaler [xe]] [CRTC:148:pipe A]
> > > > scaler_user index 0.0: staged scaling request for
> > > > 1279x719->1340x753 [ 126.854837] xe 0000:00:02.0:
> > > > [drm:intel_plane_atomic_check [xe]] UV plane [PLANE:33:plane 1A]
> > > > using Y plane [PLANE:123:plane 4A] [ 126.854926] xe 0000:00:02.0:
> > > > [drm] *ERROR* [CRTC:148:pipe A] PLANE ATS fault
> > > >
> > > > With Y plane width 1279:
> > > > floor(1279/2) = 639 (current)
> > > > ceil(1279/2) = 640 (required)
> > > >
> > > > Change the UV offset/size calculation to use ceiling division by
> > > > adding
> > > > (1 << 17) - 1 before shifting. This is a no-op for even values
> > > > since ceiling and floor are equal when the dividend is even.
> > > >
> > > > Signed-off-by: Vidya Srinivas <vidya.srinivas@intel.com>
> > > > ---
> > > > drivers/gpu/drm/i915/display/skl_universal_plane.c | 14
> > > > ++++++++++----
> > > > 1 file changed, 10 insertions(+), 4 deletions(-)
> > > >
> > > > diff --git a/drivers/gpu/drm/i915/display/skl_universal_plane.c
> > > > b/drivers/gpu/drm/i915/display/skl_universal_plane.c
> > > > index 7a9d494334b5..c455bf92ae99 100644
> > > > --- a/drivers/gpu/drm/i915/display/skl_universal_plane.c
> > > > +++ b/drivers/gpu/drm/i915/display/skl_universal_plane.c
> > > > @@ -2139,10 +2139,16 @@ static int
> > > > skl_check_nv12_aux_surface(struct
> > > intel_plane_state *plane_state)
> > > > int min_height = intel_plane_min_height(plane, fb, uv_plane,
> > > rotation);
> > > > int max_width = intel_plane_max_width(plane, fb, uv_plane,
> > > rotation);
> > > > int max_height = intel_plane_max_height(plane, fb, uv_plane,
> > > rotation);
> > > > - int x = plane_state->uapi.src.x1 >> 17;
> > > > - int y = plane_state->uapi.src.y1 >> 17;
> > > > - int w = drm_rect_width(&plane_state->uapi.src) >> 17;
> > > > - int h = drm_rect_height(&plane_state->uapi.src) >> 17;
> > > > +
> > > > + /*
> > > > + * LNL+ UV surface start/size =
> > > > + * ceiling(half of Y plane start/size). Use ceiling division
> > > > + * unconditionally; it is a no-op for even values.
> > > > + */
> > > > + int x = (plane_state->uapi.src.x1 + (1 << 17) - 1) >> 17;
> > > > + int y = (plane_state->uapi.src.y1 + (1 << 17) - 1) >> 17;
> > > > + int w = (drm_rect_width(&plane_state->uapi.src) + (1 << 17) - 1)
> > > > +>>
> > > 17;
> > > > + int h = (drm_rect_height(&plane_state->uapi.src) + (1 << 17) -
> > > > +1)
> > > > +>> 17;
> > >
> > > The problem I have with this is that the original >> 17 is already
> > > too magic. It divides a U16.16 fixed point in half, and this is completely
> non-obvious.
> > >
> > > The commit message doesn't even mention this.
> > >
> > > I think this needs a clean separation between the division and the
> > > conversion to int.
> >
> > Hello Jani
> > Thank you very much.
> > Thought of using DIV_ROUND_UP(value >> 16, 2) but it would lose
> > sub-pixel precision from 16.16 I guess. Kindly suggest.
>
> Hi Vidya,
> We can maybe divide full value by 2^17 directly and do the ceiling operation.
> DIV_ROUND_UP(plane_state->uapi.src.x1, 1 << 17);
>
> This should preserve the sub pixel precision and also ceiling gets applied.
>
> Regards,
> Uma Shankar
Hello Uma
Thank you very much.
I tested your suggestion and have pushed v2
https://patchwork.freedesktop.org/patch/718371/?series=164739&rev=2
Kindly have a check.
Regards
Vidya
>
> > Regards
> > Vidya
> >
> > >
> > >
> > > BR,
> > > Jani.
> > >
> > >
> > > > u32 offset;
> > > >
> > > > /* FIXME not quite sure how/if these apply to the chroma plane
> > > > */
> > >
> > > --
> > > Jani Nikula, Intel
^ permalink raw reply [flat|nested] 22+ messages in thread
* ✓ CI.KUnit: success for : drm/i915/display: Use ceiling division for NV12 UV surface offset calculation (rev2)
2026-04-11 17:15 [PATCH] [RFC]: drm/i915/display: Use ceiling division for NV12 UV surface offset calculation Vidya Srinivas
` (4 preceding siblings ...)
2026-04-15 0:15 ` Vidya Srinivas
@ 2026-04-15 1:10 ` Patchwork
2026-04-15 2:10 ` ✓ Xe.CI.BAT: " Patchwork
` (6 subsequent siblings)
12 siblings, 0 replies; 22+ messages in thread
From: Patchwork @ 2026-04-15 1:10 UTC (permalink / raw)
To: Srinivas, Vidya; +Cc: intel-xe
== Series Details ==
Series: : drm/i915/display: Use ceiling division for NV12 UV surface offset calculation (rev2)
URL : https://patchwork.freedesktop.org/series/164739/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[01:09:41] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[01:09:45] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[01:10:17] Starting KUnit Kernel (1/1)...
[01:10:17] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[01:10:17] ================== guc_buf (11 subtests) ===================
[01:10:17] [PASSED] test_smallest
[01:10:17] [PASSED] test_largest
[01:10:17] [PASSED] test_granular
[01:10:17] [PASSED] test_unique
[01:10:17] [PASSED] test_overlap
[01:10:17] [PASSED] test_reusable
[01:10:17] [PASSED] test_too_big
[01:10:17] [PASSED] test_flush
[01:10:17] [PASSED] test_lookup
[01:10:17] [PASSED] test_data
[01:10:17] [PASSED] test_class
[01:10:17] ===================== [PASSED] guc_buf =====================
[01:10:17] =================== guc_dbm (7 subtests) ===================
[01:10:17] [PASSED] test_empty
[01:10:17] [PASSED] test_default
[01:10:17] ======================== test_size ========================
[01:10:17] [PASSED] 4
[01:10:17] [PASSED] 8
[01:10:17] [PASSED] 32
[01:10:17] [PASSED] 256
[01:10:17] ==================== [PASSED] test_size ====================
[01:10:17] ======================= test_reuse ========================
[01:10:17] [PASSED] 4
[01:10:17] [PASSED] 8
[01:10:17] [PASSED] 32
[01:10:17] [PASSED] 256
[01:10:17] =================== [PASSED] test_reuse ====================
[01:10:17] =================== test_range_overlap ====================
[01:10:17] [PASSED] 4
[01:10:17] [PASSED] 8
[01:10:17] [PASSED] 32
[01:10:17] [PASSED] 256
[01:10:17] =============== [PASSED] test_range_overlap ================
[01:10:17] =================== test_range_compact ====================
[01:10:17] [PASSED] 4
[01:10:17] [PASSED] 8
[01:10:17] [PASSED] 32
[01:10:17] [PASSED] 256
[01:10:17] =============== [PASSED] test_range_compact ================
[01:10:17] ==================== test_range_spare =====================
[01:10:17] [PASSED] 4
[01:10:17] [PASSED] 8
[01:10:17] [PASSED] 32
[01:10:17] [PASSED] 256
[01:10:17] ================ [PASSED] test_range_spare =================
[01:10:17] ===================== [PASSED] guc_dbm =====================
[01:10:17] =================== guc_idm (6 subtests) ===================
[01:10:17] [PASSED] bad_init
[01:10:17] [PASSED] no_init
[01:10:17] [PASSED] init_fini
[01:10:17] [PASSED] check_used
[01:10:17] [PASSED] check_quota
[01:10:17] [PASSED] check_all
[01:10:17] ===================== [PASSED] guc_idm =====================
[01:10:17] ================== no_relay (3 subtests) ===================
[01:10:17] [PASSED] xe_drops_guc2pf_if_not_ready
[01:10:17] [PASSED] xe_drops_guc2vf_if_not_ready
[01:10:17] [PASSED] xe_rejects_send_if_not_ready
[01:10:17] ==================== [PASSED] no_relay =====================
[01:10:17] ================== pf_relay (14 subtests) ==================
[01:10:17] [PASSED] pf_rejects_guc2pf_too_short
[01:10:17] [PASSED] pf_rejects_guc2pf_too_long
[01:10:17] [PASSED] pf_rejects_guc2pf_no_payload
[01:10:17] [PASSED] pf_fails_no_payload
[01:10:17] [PASSED] pf_fails_bad_origin
[01:10:17] [PASSED] pf_fails_bad_type
[01:10:17] [PASSED] pf_txn_reports_error
[01:10:17] [PASSED] pf_txn_sends_pf2guc
[01:10:17] [PASSED] pf_sends_pf2guc
[01:10:17] [SKIPPED] pf_loopback_nop
[01:10:17] [SKIPPED] pf_loopback_echo
[01:10:17] [SKIPPED] pf_loopback_fail
[01:10:17] [SKIPPED] pf_loopback_busy
[01:10:17] [SKIPPED] pf_loopback_retry
[01:10:17] ==================== [PASSED] pf_relay =====================
[01:10:17] ================== vf_relay (3 subtests) ===================
[01:10:17] [PASSED] vf_rejects_guc2vf_too_short
[01:10:17] [PASSED] vf_rejects_guc2vf_too_long
[01:10:17] [PASSED] vf_rejects_guc2vf_no_payload
[01:10:17] ==================== [PASSED] vf_relay =====================
[01:10:17] ================ pf_gt_config (9 subtests) =================
[01:10:17] [PASSED] fair_contexts_1vf
[01:10:17] [PASSED] fair_doorbells_1vf
[01:10:17] [PASSED] fair_ggtt_1vf
[01:10:17] ====================== fair_vram_1vf ======================
[01:10:17] [PASSED] 3.50 GiB
[01:10:17] [PASSED] 11.5 GiB
[01:10:17] [PASSED] 15.5 GiB
[01:10:17] [PASSED] 31.5 GiB
[01:10:17] [PASSED] 63.5 GiB
[01:10:17] [PASSED] 1.91 GiB
[01:10:17] ================== [PASSED] fair_vram_1vf ==================
[01:10:17] ================ fair_vram_1vf_admin_only =================
[01:10:17] [PASSED] 3.50 GiB
[01:10:17] [PASSED] 11.5 GiB
[01:10:17] [PASSED] 15.5 GiB
[01:10:17] [PASSED] 31.5 GiB
[01:10:17] [PASSED] 63.5 GiB
[01:10:17] [PASSED] 1.91 GiB
[01:10:17] ============ [PASSED] fair_vram_1vf_admin_only =============
[01:10:17] ====================== fair_contexts ======================
[01:10:17] [PASSED] 1 VF
[01:10:17] [PASSED] 2 VFs
[01:10:17] [PASSED] 3 VFs
[01:10:17] [PASSED] 4 VFs
[01:10:17] [PASSED] 5 VFs
[01:10:17] [PASSED] 6 VFs
[01:10:17] [PASSED] 7 VFs
[01:10:17] [PASSED] 8 VFs
[01:10:17] [PASSED] 9 VFs
[01:10:17] [PASSED] 10 VFs
[01:10:17] [PASSED] 11 VFs
[01:10:17] [PASSED] 12 VFs
[01:10:17] [PASSED] 13 VFs
[01:10:17] [PASSED] 14 VFs
[01:10:17] [PASSED] 15 VFs
[01:10:17] [PASSED] 16 VFs
[01:10:17] [PASSED] 17 VFs
[01:10:17] [PASSED] 18 VFs
[01:10:17] [PASSED] 19 VFs
[01:10:17] [PASSED] 20 VFs
[01:10:17] [PASSED] 21 VFs
[01:10:17] [PASSED] 22 VFs
[01:10:17] [PASSED] 23 VFs
[01:10:17] [PASSED] 24 VFs
[01:10:17] [PASSED] 25 VFs
[01:10:17] [PASSED] 26 VFs
[01:10:17] [PASSED] 27 VFs
[01:10:17] [PASSED] 28 VFs
[01:10:17] [PASSED] 29 VFs
[01:10:17] [PASSED] 30 VFs
[01:10:17] [PASSED] 31 VFs
[01:10:17] [PASSED] 32 VFs
[01:10:17] [PASSED] 33 VFs
[01:10:17] [PASSED] 34 VFs
[01:10:17] [PASSED] 35 VFs
[01:10:17] [PASSED] 36 VFs
[01:10:17] [PASSED] 37 VFs
[01:10:17] [PASSED] 38 VFs
[01:10:17] [PASSED] 39 VFs
[01:10:17] [PASSED] 40 VFs
[01:10:17] [PASSED] 41 VFs
[01:10:17] [PASSED] 42 VFs
[01:10:17] [PASSED] 43 VFs
[01:10:17] [PASSED] 44 VFs
[01:10:17] [PASSED] 45 VFs
[01:10:17] [PASSED] 46 VFs
[01:10:17] [PASSED] 47 VFs
[01:10:17] [PASSED] 48 VFs
[01:10:17] [PASSED] 49 VFs
[01:10:17] [PASSED] 50 VFs
[01:10:17] [PASSED] 51 VFs
[01:10:17] [PASSED] 52 VFs
[01:10:17] [PASSED] 53 VFs
[01:10:17] [PASSED] 54 VFs
[01:10:17] [PASSED] 55 VFs
[01:10:17] [PASSED] 56 VFs
[01:10:17] [PASSED] 57 VFs
[01:10:17] [PASSED] 58 VFs
[01:10:17] [PASSED] 59 VFs
[01:10:17] [PASSED] 60 VFs
[01:10:17] [PASSED] 61 VFs
[01:10:17] [PASSED] 62 VFs
[01:10:17] [PASSED] 63 VFs
[01:10:17] ================== [PASSED] fair_contexts ==================
[01:10:17] ===================== fair_doorbells ======================
[01:10:17] [PASSED] 1 VF
[01:10:17] [PASSED] 2 VFs
[01:10:17] [PASSED] 3 VFs
[01:10:17] [PASSED] 4 VFs
[01:10:17] [PASSED] 5 VFs
[01:10:17] [PASSED] 6 VFs
[01:10:17] [PASSED] 7 VFs
[01:10:17] [PASSED] 8 VFs
[01:10:17] [PASSED] 9 VFs
[01:10:17] [PASSED] 10 VFs
[01:10:17] [PASSED] 11 VFs
[01:10:17] [PASSED] 12 VFs
[01:10:17] [PASSED] 13 VFs
[01:10:17] [PASSED] 14 VFs
[01:10:17] [PASSED] 15 VFs
[01:10:17] [PASSED] 16 VFs
[01:10:17] [PASSED] 17 VFs
[01:10:17] [PASSED] 18 VFs
[01:10:17] [PASSED] 19 VFs
[01:10:17] [PASSED] 20 VFs
[01:10:17] [PASSED] 21 VFs
[01:10:17] [PASSED] 22 VFs
[01:10:17] [PASSED] 23 VFs
[01:10:17] [PASSED] 24 VFs
[01:10:17] [PASSED] 25 VFs
[01:10:17] [PASSED] 26 VFs
[01:10:17] [PASSED] 27 VFs
[01:10:17] [PASSED] 28 VFs
[01:10:17] [PASSED] 29 VFs
[01:10:17] [PASSED] 30 VFs
[01:10:17] [PASSED] 31 VFs
[01:10:17] [PASSED] 32 VFs
[01:10:17] [PASSED] 33 VFs
[01:10:17] [PASSED] 34 VFs
[01:10:17] [PASSED] 35 VFs
[01:10:17] [PASSED] 36 VFs
[01:10:17] [PASSED] 37 VFs
[01:10:17] [PASSED] 38 VFs
[01:10:17] [PASSED] 39 VFs
[01:10:17] [PASSED] 40 VFs
[01:10:17] [PASSED] 41 VFs
[01:10:17] [PASSED] 42 VFs
[01:10:17] [PASSED] 43 VFs
[01:10:17] [PASSED] 44 VFs
[01:10:17] [PASSED] 45 VFs
[01:10:17] [PASSED] 46 VFs
[01:10:17] [PASSED] 47 VFs
[01:10:17] [PASSED] 48 VFs
[01:10:17] [PASSED] 49 VFs
[01:10:17] [PASSED] 50 VFs
[01:10:17] [PASSED] 51 VFs
[01:10:17] [PASSED] 52 VFs
[01:10:17] [PASSED] 53 VFs
[01:10:17] [PASSED] 54 VFs
[01:10:17] [PASSED] 55 VFs
[01:10:17] [PASSED] 56 VFs
[01:10:17] [PASSED] 57 VFs
[01:10:17] [PASSED] 58 VFs
[01:10:17] [PASSED] 59 VFs
[01:10:17] [PASSED] 60 VFs
[01:10:17] [PASSED] 61 VFs
[01:10:17] [PASSED] 62 VFs
[01:10:17] [PASSED] 63 VFs
[01:10:17] ================= [PASSED] fair_doorbells ==================
[01:10:17] ======================== fair_ggtt ========================
[01:10:17] [PASSED] 1 VF
[01:10:17] [PASSED] 2 VFs
[01:10:17] [PASSED] 3 VFs
[01:10:17] [PASSED] 4 VFs
[01:10:17] [PASSED] 5 VFs
[01:10:17] [PASSED] 6 VFs
[01:10:17] [PASSED] 7 VFs
[01:10:17] [PASSED] 8 VFs
[01:10:17] [PASSED] 9 VFs
[01:10:17] [PASSED] 10 VFs
[01:10:17] [PASSED] 11 VFs
[01:10:17] [PASSED] 12 VFs
[01:10:17] [PASSED] 13 VFs
[01:10:17] [PASSED] 14 VFs
[01:10:17] [PASSED] 15 VFs
[01:10:17] [PASSED] 16 VFs
[01:10:17] [PASSED] 17 VFs
[01:10:17] [PASSED] 18 VFs
[01:10:17] [PASSED] 19 VFs
[01:10:17] [PASSED] 20 VFs
[01:10:17] [PASSED] 21 VFs
[01:10:17] [PASSED] 22 VFs
[01:10:17] [PASSED] 23 VFs
[01:10:17] [PASSED] 24 VFs
[01:10:17] [PASSED] 25 VFs
[01:10:17] [PASSED] 26 VFs
[01:10:17] [PASSED] 27 VFs
[01:10:17] [PASSED] 28 VFs
[01:10:17] [PASSED] 29 VFs
[01:10:17] [PASSED] 30 VFs
[01:10:17] [PASSED] 31 VFs
[01:10:17] [PASSED] 32 VFs
[01:10:17] [PASSED] 33 VFs
[01:10:17] [PASSED] 34 VFs
[01:10:17] [PASSED] 35 VFs
[01:10:17] [PASSED] 36 VFs
[01:10:17] [PASSED] 37 VFs
[01:10:17] [PASSED] 38 VFs
[01:10:17] [PASSED] 39 VFs
[01:10:17] [PASSED] 40 VFs
[01:10:17] [PASSED] 41 VFs
[01:10:17] [PASSED] 42 VFs
[01:10:17] [PASSED] 43 VFs
[01:10:17] [PASSED] 44 VFs
[01:10:17] [PASSED] 45 VFs
[01:10:17] [PASSED] 46 VFs
[01:10:17] [PASSED] 47 VFs
[01:10:17] [PASSED] 48 VFs
[01:10:17] [PASSED] 49 VFs
[01:10:17] [PASSED] 50 VFs
[01:10:17] [PASSED] 51 VFs
[01:10:17] [PASSED] 52 VFs
[01:10:17] [PASSED] 53 VFs
[01:10:17] [PASSED] 54 VFs
[01:10:17] [PASSED] 55 VFs
[01:10:17] [PASSED] 56 VFs
[01:10:17] [PASSED] 57 VFs
[01:10:17] [PASSED] 58 VFs
[01:10:17] [PASSED] 59 VFs
[01:10:17] [PASSED] 60 VFs
[01:10:17] [PASSED] 61 VFs
[01:10:17] [PASSED] 62 VFs
[01:10:17] [PASSED] 63 VFs
[01:10:17] ==================== [PASSED] fair_ggtt ====================
[01:10:17] ======================== fair_vram ========================
[01:10:17] [PASSED] 1 VF
[01:10:17] [PASSED] 2 VFs
[01:10:17] [PASSED] 3 VFs
[01:10:17] [PASSED] 4 VFs
[01:10:17] [PASSED] 5 VFs
[01:10:17] [PASSED] 6 VFs
[01:10:17] [PASSED] 7 VFs
[01:10:17] [PASSED] 8 VFs
[01:10:17] [PASSED] 9 VFs
[01:10:17] [PASSED] 10 VFs
[01:10:17] [PASSED] 11 VFs
[01:10:17] [PASSED] 12 VFs
[01:10:17] [PASSED] 13 VFs
[01:10:17] [PASSED] 14 VFs
[01:10:17] [PASSED] 15 VFs
[01:10:17] [PASSED] 16 VFs
[01:10:17] [PASSED] 17 VFs
[01:10:17] [PASSED] 18 VFs
[01:10:17] [PASSED] 19 VFs
[01:10:17] [PASSED] 20 VFs
[01:10:17] [PASSED] 21 VFs
[01:10:17] [PASSED] 22 VFs
[01:10:17] [PASSED] 23 VFs
[01:10:17] [PASSED] 24 VFs
[01:10:17] [PASSED] 25 VFs
[01:10:17] [PASSED] 26 VFs
[01:10:17] [PASSED] 27 VFs
[01:10:17] [PASSED] 28 VFs
[01:10:17] [PASSED] 29 VFs
[01:10:17] [PASSED] 30 VFs
[01:10:17] [PASSED] 31 VFs
[01:10:17] [PASSED] 32 VFs
[01:10:17] [PASSED] 33 VFs
[01:10:17] [PASSED] 34 VFs
[01:10:17] [PASSED] 35 VFs
[01:10:17] [PASSED] 36 VFs
[01:10:17] [PASSED] 37 VFs
[01:10:17] [PASSED] 38 VFs
[01:10:17] [PASSED] 39 VFs
[01:10:17] [PASSED] 40 VFs
[01:10:17] [PASSED] 41 VFs
[01:10:17] [PASSED] 42 VFs
[01:10:17] [PASSED] 43 VFs
[01:10:17] [PASSED] 44 VFs
[01:10:17] [PASSED] 45 VFs
[01:10:17] [PASSED] 46 VFs
[01:10:17] [PASSED] 47 VFs
[01:10:17] [PASSED] 48 VFs
[01:10:17] [PASSED] 49 VFs
[01:10:17] [PASSED] 50 VFs
[01:10:17] [PASSED] 51 VFs
[01:10:17] [PASSED] 52 VFs
[01:10:17] [PASSED] 53 VFs
[01:10:17] [PASSED] 54 VFs
[01:10:17] [PASSED] 55 VFs
[01:10:17] [PASSED] 56 VFs
[01:10:17] [PASSED] 57 VFs
[01:10:17] [PASSED] 58 VFs
[01:10:17] [PASSED] 59 VFs
[01:10:17] [PASSED] 60 VFs
[01:10:17] [PASSED] 61 VFs
[01:10:17] [PASSED] 62 VFs
[01:10:17] [PASSED] 63 VFs
[01:10:17] ==================== [PASSED] fair_vram ====================
[01:10:17] ================== [PASSED] pf_gt_config ===================
[01:10:17] ===================== lmtt (1 subtest) =====================
[01:10:17] ======================== test_ops =========================
[01:10:17] [PASSED] 2-level
[01:10:17] [PASSED] multi-level
[01:10:17] ==================== [PASSED] test_ops =====================
[01:10:17] ====================== [PASSED] lmtt =======================
[01:10:17] ================= pf_service (11 subtests) =================
[01:10:17] [PASSED] pf_negotiate_any
[01:10:17] [PASSED] pf_negotiate_base_match
[01:10:17] [PASSED] pf_negotiate_base_newer
[01:10:17] [PASSED] pf_negotiate_base_next
[01:10:17] [SKIPPED] pf_negotiate_base_older
[01:10:17] [PASSED] pf_negotiate_base_prev
[01:10:17] [PASSED] pf_negotiate_latest_match
[01:10:17] [PASSED] pf_negotiate_latest_newer
[01:10:17] [PASSED] pf_negotiate_latest_next
[01:10:17] [SKIPPED] pf_negotiate_latest_older
[01:10:17] [SKIPPED] pf_negotiate_latest_prev
[01:10:17] =================== [PASSED] pf_service ====================
[01:10:17] ================= xe_guc_g2g (2 subtests) ==================
[01:10:17] ============== xe_live_guc_g2g_kunit_default ==============
[01:10:17] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[01:10:17] ============== xe_live_guc_g2g_kunit_allmem ===============
[01:10:17] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[01:10:17] =================== [SKIPPED] xe_guc_g2g ===================
[01:10:17] =================== xe_mocs (2 subtests) ===================
[01:10:17] ================ xe_live_mocs_kernel_kunit ================
[01:10:17] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[01:10:17] ================ xe_live_mocs_reset_kunit =================
[01:10:17] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[01:10:17] ==================== [SKIPPED] xe_mocs =====================
[01:10:17] ================= xe_migrate (2 subtests) ==================
[01:10:17] ================= xe_migrate_sanity_kunit =================
[01:10:17] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[01:10:17] ================== xe_validate_ccs_kunit ==================
[01:10:17] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[01:10:17] =================== [SKIPPED] xe_migrate ===================
[01:10:17] ================== xe_dma_buf (1 subtest) ==================
[01:10:17] ==================== xe_dma_buf_kunit =====================
[01:10:17] ================ [SKIPPED] xe_dma_buf_kunit ================
[01:10:17] =================== [SKIPPED] xe_dma_buf ===================
[01:10:17] ================= xe_bo_shrink (1 subtest) =================
[01:10:17] =================== xe_bo_shrink_kunit ====================
[01:10:17] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[01:10:17] ================== [SKIPPED] xe_bo_shrink ==================
[01:10:17] ==================== xe_bo (2 subtests) ====================
[01:10:17] ================== xe_ccs_migrate_kunit ===================
[01:10:17] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[01:10:17] ==================== xe_bo_evict_kunit ====================
[01:10:17] =============== [SKIPPED] xe_bo_evict_kunit ================
[01:10:17] ===================== [SKIPPED] xe_bo ======================
[01:10:17] ==================== args (13 subtests) ====================
[01:10:17] [PASSED] count_args_test
[01:10:17] [PASSED] call_args_example
[01:10:17] [PASSED] call_args_test
[01:10:17] [PASSED] drop_first_arg_example
[01:10:17] [PASSED] drop_first_arg_test
[01:10:17] [PASSED] first_arg_example
[01:10:17] [PASSED] first_arg_test
[01:10:17] [PASSED] last_arg_example
[01:10:17] [PASSED] last_arg_test
[01:10:17] [PASSED] pick_arg_example
[01:10:17] [PASSED] if_args_example
[01:10:17] [PASSED] if_args_test
[01:10:17] [PASSED] sep_comma_example
[01:10:17] ====================== [PASSED] args =======================
[01:10:17] =================== xe_pci (3 subtests) ====================
[01:10:17] ==================== check_graphics_ip ====================
[01:10:17] [PASSED] 12.00 Xe_LP
[01:10:17] [PASSED] 12.10 Xe_LP+
[01:10:17] [PASSED] 12.55 Xe_HPG
[01:10:17] [PASSED] 12.60 Xe_HPC
[01:10:17] [PASSED] 12.70 Xe_LPG
[01:10:17] [PASSED] 12.71 Xe_LPG
[01:10:17] [PASSED] 12.74 Xe_LPG+
[01:10:17] [PASSED] 20.01 Xe2_HPG
[01:10:17] [PASSED] 20.02 Xe2_HPG
[01:10:17] [PASSED] 20.04 Xe2_LPG
[01:10:17] [PASSED] 30.00 Xe3_LPG
[01:10:17] [PASSED] 30.01 Xe3_LPG
[01:10:17] [PASSED] 30.03 Xe3_LPG
[01:10:17] [PASSED] 30.04 Xe3_LPG
[01:10:17] [PASSED] 30.05 Xe3_LPG
[01:10:17] [PASSED] 35.10 Xe3p_LPG
[01:10:17] [PASSED] 35.11 Xe3p_XPC
[01:10:17] ================ [PASSED] check_graphics_ip ================
[01:10:17] ===================== check_media_ip ======================
[01:10:17] [PASSED] 12.00 Xe_M
[01:10:17] [PASSED] 12.55 Xe_HPM
[01:10:17] [PASSED] 13.00 Xe_LPM+
[01:10:17] [PASSED] 13.01 Xe2_HPM
[01:10:17] [PASSED] 20.00 Xe2_LPM
[01:10:17] [PASSED] 30.00 Xe3_LPM
[01:10:17] [PASSED] 30.02 Xe3_LPM
[01:10:17] [PASSED] 35.00 Xe3p_LPM
[01:10:17] [PASSED] 35.03 Xe3p_HPM
[01:10:17] ================= [PASSED] check_media_ip ==================
[01:10:17] =================== check_platform_desc ===================
[01:10:17] [PASSED] 0x9A60 (TIGERLAKE)
[01:10:17] [PASSED] 0x9A68 (TIGERLAKE)
[01:10:17] [PASSED] 0x9A70 (TIGERLAKE)
[01:10:17] [PASSED] 0x9A40 (TIGERLAKE)
[01:10:17] [PASSED] 0x9A49 (TIGERLAKE)
[01:10:17] [PASSED] 0x9A59 (TIGERLAKE)
[01:10:17] [PASSED] 0x9A78 (TIGERLAKE)
[01:10:17] [PASSED] 0x9AC0 (TIGERLAKE)
[01:10:17] [PASSED] 0x9AC9 (TIGERLAKE)
[01:10:17] [PASSED] 0x9AD9 (TIGERLAKE)
[01:10:17] [PASSED] 0x9AF8 (TIGERLAKE)
[01:10:17] [PASSED] 0x4C80 (ROCKETLAKE)
[01:10:17] [PASSED] 0x4C8A (ROCKETLAKE)
[01:10:17] [PASSED] 0x4C8B (ROCKETLAKE)
[01:10:17] [PASSED] 0x4C8C (ROCKETLAKE)
[01:10:17] [PASSED] 0x4C90 (ROCKETLAKE)
[01:10:17] [PASSED] 0x4C9A (ROCKETLAKE)
[01:10:17] [PASSED] 0x4680 (ALDERLAKE_S)
[01:10:17] [PASSED] 0x4682 (ALDERLAKE_S)
[01:10:17] [PASSED] 0x4688 (ALDERLAKE_S)
[01:10:17] [PASSED] 0x468A (ALDERLAKE_S)
[01:10:17] [PASSED] 0x468B (ALDERLAKE_S)
[01:10:17] [PASSED] 0x4690 (ALDERLAKE_S)
[01:10:17] [PASSED] 0x4692 (ALDERLAKE_S)
[01:10:17] [PASSED] 0x4693 (ALDERLAKE_S)
[01:10:17] [PASSED] 0x46A0 (ALDERLAKE_P)
[01:10:17] [PASSED] 0x46A1 (ALDERLAKE_P)
[01:10:17] [PASSED] 0x46A2 (ALDERLAKE_P)
[01:10:17] [PASSED] 0x46A3 (ALDERLAKE_P)
[01:10:17] [PASSED] 0x46A6 (ALDERLAKE_P)
[01:10:17] [PASSED] 0x46A8 (ALDERLAKE_P)
[01:10:17] [PASSED] 0x46AA (ALDERLAKE_P)
[01:10:17] [PASSED] 0x462A (ALDERLAKE_P)
[01:10:17] [PASSED] 0x4626 (ALDERLAKE_P)
[01:10:17] [PASSED] 0x4628 (ALDERLAKE_P)
[01:10:17] [PASSED] 0x46B0 (ALDERLAKE_P)
[01:10:17] [PASSED] 0x46B1 (ALDERLAKE_P)
[01:10:17] [PASSED] 0x46B2 (ALDERLAKE_P)
[01:10:17] [PASSED] 0x46B3 (ALDERLAKE_P)
[01:10:17] [PASSED] 0x46C0 (ALDERLAKE_P)
[01:10:17] [PASSED] 0x46C1 (ALDERLAKE_P)
[01:10:17] [PASSED] 0x46C2 (ALDERLAKE_P)
[01:10:17] [PASSED] 0x46C3 (ALDERLAKE_P)
[01:10:17] [PASSED] 0x46D0 (ALDERLAKE_N)
[01:10:17] [PASSED] 0x46D1 (ALDERLAKE_N)
[01:10:17] [PASSED] 0x46D2 (ALDERLAKE_N)
[01:10:17] [PASSED] 0x46D3 (ALDERLAKE_N)
[01:10:17] [PASSED] 0x46D4 (ALDERLAKE_N)
[01:10:17] [PASSED] 0xA721 (ALDERLAKE_P)
[01:10:17] [PASSED] 0xA7A1 (ALDERLAKE_P)
[01:10:17] [PASSED] 0xA7A9 (ALDERLAKE_P)
[01:10:17] [PASSED] 0xA7AC (ALDERLAKE_P)
[01:10:17] [PASSED] 0xA7AD (ALDERLAKE_P)
[01:10:17] [PASSED] 0xA720 (ALDERLAKE_P)
[01:10:17] [PASSED] 0xA7A0 (ALDERLAKE_P)
[01:10:17] [PASSED] 0xA7A8 (ALDERLAKE_P)
[01:10:17] [PASSED] 0xA7AA (ALDERLAKE_P)
[01:10:17] [PASSED] 0xA7AB (ALDERLAKE_P)
[01:10:17] [PASSED] 0xA780 (ALDERLAKE_S)
[01:10:17] [PASSED] 0xA781 (ALDERLAKE_S)
[01:10:17] [PASSED] 0xA782 (ALDERLAKE_S)
[01:10:17] [PASSED] 0xA783 (ALDERLAKE_S)
[01:10:17] [PASSED] 0xA788 (ALDERLAKE_S)
[01:10:17] [PASSED] 0xA789 (ALDERLAKE_S)
[01:10:17] [PASSED] 0xA78A (ALDERLAKE_S)
[01:10:17] [PASSED] 0xA78B (ALDERLAKE_S)
[01:10:17] [PASSED] 0x4905 (DG1)
[01:10:17] [PASSED] 0x4906 (DG1)
[01:10:17] [PASSED] 0x4907 (DG1)
[01:10:17] [PASSED] 0x4908 (DG1)
[01:10:17] [PASSED] 0x4909 (DG1)
[01:10:17] [PASSED] 0x56C0 (DG2)
[01:10:17] [PASSED] 0x56C2 (DG2)
[01:10:17] [PASSED] 0x56C1 (DG2)
[01:10:17] [PASSED] 0x7D51 (METEORLAKE)
[01:10:17] [PASSED] 0x7DD1 (METEORLAKE)
[01:10:17] [PASSED] 0x7D41 (METEORLAKE)
[01:10:17] [PASSED] 0x7D67 (METEORLAKE)
[01:10:17] [PASSED] 0xB640 (METEORLAKE)
[01:10:17] [PASSED] 0x56A0 (DG2)
[01:10:17] [PASSED] 0x56A1 (DG2)
[01:10:17] [PASSED] 0x56A2 (DG2)
[01:10:17] [PASSED] 0x56BE (DG2)
[01:10:17] [PASSED] 0x56BF (DG2)
[01:10:17] [PASSED] 0x5690 (DG2)
[01:10:17] [PASSED] 0x5691 (DG2)
[01:10:17] [PASSED] 0x5692 (DG2)
[01:10:17] [PASSED] 0x56A5 (DG2)
[01:10:17] [PASSED] 0x56A6 (DG2)
[01:10:17] [PASSED] 0x56B0 (DG2)
[01:10:17] [PASSED] 0x56B1 (DG2)
[01:10:17] [PASSED] 0x56BA (DG2)
[01:10:17] [PASSED] 0x56BB (DG2)
[01:10:17] [PASSED] 0x56BC (DG2)
[01:10:17] [PASSED] 0x56BD (DG2)
[01:10:17] [PASSED] 0x5693 (DG2)
[01:10:17] [PASSED] 0x5694 (DG2)
[01:10:17] [PASSED] 0x5695 (DG2)
[01:10:17] [PASSED] 0x56A3 (DG2)
[01:10:17] [PASSED] 0x56A4 (DG2)
[01:10:17] [PASSED] 0x56B2 (DG2)
[01:10:17] [PASSED] 0x56B3 (DG2)
[01:10:17] [PASSED] 0x5696 (DG2)
[01:10:17] [PASSED] 0x5697 (DG2)
[01:10:17] [PASSED] 0xB69 (PVC)
[01:10:17] [PASSED] 0xB6E (PVC)
[01:10:17] [PASSED] 0xBD4 (PVC)
[01:10:17] [PASSED] 0xBD5 (PVC)
[01:10:17] [PASSED] 0xBD6 (PVC)
[01:10:17] [PASSED] 0xBD7 (PVC)
[01:10:17] [PASSED] 0xBD8 (PVC)
[01:10:17] [PASSED] 0xBD9 (PVC)
[01:10:17] [PASSED] 0xBDA (PVC)
[01:10:17] [PASSED] 0xBDB (PVC)
[01:10:17] [PASSED] 0xBE0 (PVC)
[01:10:17] [PASSED] 0xBE1 (PVC)
[01:10:17] [PASSED] 0xBE5 (PVC)
[01:10:17] [PASSED] 0x7D40 (METEORLAKE)
[01:10:17] [PASSED] 0x7D45 (METEORLAKE)
[01:10:17] [PASSED] 0x7D55 (METEORLAKE)
[01:10:17] [PASSED] 0x7D60 (METEORLAKE)
[01:10:17] [PASSED] 0x7DD5 (METEORLAKE)
[01:10:17] [PASSED] 0x6420 (LUNARLAKE)
[01:10:17] [PASSED] 0x64A0 (LUNARLAKE)
[01:10:17] [PASSED] 0x64B0 (LUNARLAKE)
[01:10:17] [PASSED] 0xE202 (BATTLEMAGE)
[01:10:17] [PASSED] 0xE209 (BATTLEMAGE)
[01:10:17] [PASSED] 0xE20B (BATTLEMAGE)
[01:10:17] [PASSED] 0xE20C (BATTLEMAGE)
[01:10:17] [PASSED] 0xE20D (BATTLEMAGE)
[01:10:17] [PASSED] 0xE210 (BATTLEMAGE)
[01:10:17] [PASSED] 0xE211 (BATTLEMAGE)
[01:10:17] [PASSED] 0xE212 (BATTLEMAGE)
[01:10:17] [PASSED] 0xE216 (BATTLEMAGE)
[01:10:17] [PASSED] 0xE220 (BATTLEMAGE)
[01:10:17] [PASSED] 0xE221 (BATTLEMAGE)
[01:10:17] [PASSED] 0xE222 (BATTLEMAGE)
[01:10:17] [PASSED] 0xE223 (BATTLEMAGE)
[01:10:17] [PASSED] 0xB080 (PANTHERLAKE)
[01:10:17] [PASSED] 0xB081 (PANTHERLAKE)
[01:10:17] [PASSED] 0xB082 (PANTHERLAKE)
[01:10:17] [PASSED] 0xB083 (PANTHERLAKE)
[01:10:17] [PASSED] 0xB084 (PANTHERLAKE)
[01:10:17] [PASSED] 0xB085 (PANTHERLAKE)
[01:10:17] [PASSED] 0xB086 (PANTHERLAKE)
[01:10:17] [PASSED] 0xB087 (PANTHERLAKE)
[01:10:17] [PASSED] 0xB08F (PANTHERLAKE)
[01:10:17] [PASSED] 0xB090 (PANTHERLAKE)
[01:10:17] [PASSED] 0xB0A0 (PANTHERLAKE)
[01:10:17] [PASSED] 0xB0B0 (PANTHERLAKE)
[01:10:17] [PASSED] 0xFD80 (PANTHERLAKE)
[01:10:17] [PASSED] 0xFD81 (PANTHERLAKE)
[01:10:17] [PASSED] 0xD740 (NOVALAKE_S)
[01:10:17] [PASSED] 0xD741 (NOVALAKE_S)
[01:10:17] [PASSED] 0xD742 (NOVALAKE_S)
[01:10:17] [PASSED] 0xD743 (NOVALAKE_S)
[01:10:17] [PASSED] 0xD744 (NOVALAKE_S)
[01:10:17] [PASSED] 0xD745 (NOVALAKE_S)
[01:10:17] [PASSED] 0x674C (CRESCENTISLAND)
[01:10:17] [PASSED] 0xD750 (NOVALAKE_P)
[01:10:17] [PASSED] 0xD751 (NOVALAKE_P)
[01:10:17] [PASSED] 0xD752 (NOVALAKE_P)
[01:10:17] [PASSED] 0xD753 (NOVALAKE_P)
[01:10:17] [PASSED] 0xD754 (NOVALAKE_P)
[01:10:17] [PASSED] 0xD755 (NOVALAKE_P)
[01:10:17] [PASSED] 0xD756 (NOVALAKE_P)
[01:10:17] [PASSED] 0xD757 (NOVALAKE_P)
[01:10:17] [PASSED] 0xD75F (NOVALAKE_P)
[01:10:17] =============== [PASSED] check_platform_desc ===============
[01:10:17] ===================== [PASSED] xe_pci ======================
[01:10:17] =================== xe_rtp (2 subtests) ====================
[01:10:17] =============== xe_rtp_process_to_sr_tests ================
[01:10:17] [PASSED] coalesce-same-reg
[01:10:17] [PASSED] no-match-no-add
[01:10:17] [PASSED] match-or
[01:10:17] [PASSED] match-or-xfail
[01:10:17] [PASSED] no-match-no-add-multiple-rules
[01:10:17] [PASSED] two-regs-two-entries
[01:10:17] [PASSED] clr-one-set-other
[01:10:17] [PASSED] set-field
[01:10:17] [PASSED] conflict-duplicate
stty: 'standard input': Inappropriate ioctl for device
[01:10:17] [PASSED] conflict-not-disjoint
[01:10:17] [PASSED] conflict-reg-type
[01:10:17] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[01:10:17] ================== xe_rtp_process_tests ===================
[01:10:17] [PASSED] active1
[01:10:17] [PASSED] active2
[01:10:17] [PASSED] active-inactive
[01:10:17] [PASSED] inactive-active
[01:10:17] [PASSED] inactive-1st_or_active-inactive
[01:10:17] [PASSED] inactive-2nd_or_active-inactive
[01:10:17] [PASSED] inactive-last_or_active-inactive
[01:10:17] [PASSED] inactive-no_or_active-inactive
[01:10:17] ============== [PASSED] xe_rtp_process_tests ===============
[01:10:17] ===================== [PASSED] xe_rtp ======================
[01:10:17] ==================== xe_wa (1 subtest) =====================
[01:10:17] ======================== xe_wa_gt =========================
[01:10:17] [PASSED] TIGERLAKE B0
[01:10:17] [PASSED] DG1 A0
[01:10:17] [PASSED] DG1 B0
[01:10:17] [PASSED] ALDERLAKE_S A0
[01:10:17] [PASSED] ALDERLAKE_S B0
[01:10:17] [PASSED] ALDERLAKE_S C0
[01:10:17] [PASSED] ALDERLAKE_S D0
[01:10:17] [PASSED] ALDERLAKE_P A0
[01:10:17] [PASSED] ALDERLAKE_P B0
[01:10:17] [PASSED] ALDERLAKE_P C0
[01:10:17] [PASSED] ALDERLAKE_S RPLS D0
[01:10:17] [PASSED] ALDERLAKE_P RPLU E0
[01:10:17] [PASSED] DG2 G10 C0
[01:10:17] [PASSED] DG2 G11 B1
[01:10:17] [PASSED] DG2 G12 A1
[01:10:17] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[01:10:17] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[01:10:17] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[01:10:17] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[01:10:17] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[01:10:17] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[01:10:17] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[01:10:17] ==================== [PASSED] xe_wa_gt =====================
[01:10:17] ====================== [PASSED] xe_wa ======================
[01:10:17] ============================================================
[01:10:17] Testing complete. Ran 597 tests: passed: 579, skipped: 18
[01:10:17] Elapsed time: 36.288s total, 4.239s configuring, 31.433s building, 0.606s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[01:10:17] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[01:10:19] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[01:10:44] Starting KUnit Kernel (1/1)...
[01:10:44] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[01:10:44] ============ drm_test_pick_cmdline (2 subtests) ============
[01:10:44] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[01:10:44] =============== drm_test_pick_cmdline_named ===============
[01:10:44] [PASSED] NTSC
[01:10:44] [PASSED] NTSC-J
[01:10:44] [PASSED] PAL
[01:10:44] [PASSED] PAL-M
[01:10:44] =========== [PASSED] drm_test_pick_cmdline_named ===========
[01:10:44] ============== [PASSED] drm_test_pick_cmdline ==============
[01:10:44] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[01:10:44] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[01:10:44] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[01:10:44] =========== drm_validate_clone_mode (2 subtests) ===========
[01:10:44] ============== drm_test_check_in_clone_mode ===============
[01:10:44] [PASSED] in_clone_mode
[01:10:44] [PASSED] not_in_clone_mode
[01:10:44] ========== [PASSED] drm_test_check_in_clone_mode ===========
[01:10:44] =============== drm_test_check_valid_clones ===============
[01:10:44] [PASSED] not_in_clone_mode
[01:10:44] [PASSED] valid_clone
[01:10:44] [PASSED] invalid_clone
[01:10:44] =========== [PASSED] drm_test_check_valid_clones ===========
[01:10:44] ============= [PASSED] drm_validate_clone_mode =============
[01:10:44] ============= drm_validate_modeset (1 subtest) =============
[01:10:44] [PASSED] drm_test_check_connector_changed_modeset
[01:10:44] ============== [PASSED] drm_validate_modeset ===============
[01:10:44] ====== drm_test_bridge_get_current_state (2 subtests) ======
[01:10:44] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[01:10:44] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[01:10:44] ======== [PASSED] drm_test_bridge_get_current_state ========
[01:10:44] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[01:10:44] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[01:10:44] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[01:10:44] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[01:10:44] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[01:10:44] ============== drm_bridge_alloc (2 subtests) ===============
[01:10:44] [PASSED] drm_test_drm_bridge_alloc_basic
[01:10:44] [PASSED] drm_test_drm_bridge_alloc_get_put
[01:10:44] ================ [PASSED] drm_bridge_alloc =================
[01:10:44] ============= drm_cmdline_parser (40 subtests) =============
[01:10:44] [PASSED] drm_test_cmdline_force_d_only
[01:10:44] [PASSED] drm_test_cmdline_force_D_only_dvi
[01:10:44] [PASSED] drm_test_cmdline_force_D_only_hdmi
[01:10:44] [PASSED] drm_test_cmdline_force_D_only_not_digital
[01:10:44] [PASSED] drm_test_cmdline_force_e_only
[01:10:44] [PASSED] drm_test_cmdline_res
[01:10:44] [PASSED] drm_test_cmdline_res_vesa
[01:10:44] [PASSED] drm_test_cmdline_res_vesa_rblank
[01:10:44] [PASSED] drm_test_cmdline_res_rblank
[01:10:44] [PASSED] drm_test_cmdline_res_bpp
[01:10:44] [PASSED] drm_test_cmdline_res_refresh
[01:10:44] [PASSED] drm_test_cmdline_res_bpp_refresh
[01:10:44] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[01:10:44] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[01:10:44] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[01:10:44] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[01:10:44] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[01:10:44] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[01:10:44] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[01:10:44] [PASSED] drm_test_cmdline_res_margins_force_on
[01:10:44] [PASSED] drm_test_cmdline_res_vesa_margins
[01:10:44] [PASSED] drm_test_cmdline_name
[01:10:44] [PASSED] drm_test_cmdline_name_bpp
[01:10:44] [PASSED] drm_test_cmdline_name_option
[01:10:44] [PASSED] drm_test_cmdline_name_bpp_option
[01:10:44] [PASSED] drm_test_cmdline_rotate_0
[01:10:44] [PASSED] drm_test_cmdline_rotate_90
[01:10:44] [PASSED] drm_test_cmdline_rotate_180
[01:10:44] [PASSED] drm_test_cmdline_rotate_270
[01:10:44] [PASSED] drm_test_cmdline_hmirror
[01:10:44] [PASSED] drm_test_cmdline_vmirror
[01:10:44] [PASSED] drm_test_cmdline_margin_options
[01:10:44] [PASSED] drm_test_cmdline_multiple_options
[01:10:44] [PASSED] drm_test_cmdline_bpp_extra_and_option
[01:10:44] [PASSED] drm_test_cmdline_extra_and_option
[01:10:44] [PASSED] drm_test_cmdline_freestanding_options
[01:10:44] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[01:10:44] [PASSED] drm_test_cmdline_panel_orientation
[01:10:44] ================ drm_test_cmdline_invalid =================
[01:10:44] [PASSED] margin_only
[01:10:44] [PASSED] interlace_only
[01:10:44] [PASSED] res_missing_x
[01:10:44] [PASSED] res_missing_y
[01:10:44] [PASSED] res_bad_y
[01:10:44] [PASSED] res_missing_y_bpp
[01:10:44] [PASSED] res_bad_bpp
[01:10:44] [PASSED] res_bad_refresh
[01:10:44] [PASSED] res_bpp_refresh_force_on_off
[01:10:44] [PASSED] res_invalid_mode
[01:10:44] [PASSED] res_bpp_wrong_place_mode
[01:10:44] [PASSED] name_bpp_refresh
[01:10:44] [PASSED] name_refresh
[01:10:44] [PASSED] name_refresh_wrong_mode
[01:10:44] [PASSED] name_refresh_invalid_mode
[01:10:44] [PASSED] rotate_multiple
[01:10:44] [PASSED] rotate_invalid_val
[01:10:44] [PASSED] rotate_truncated
[01:10:44] [PASSED] invalid_option
[01:10:44] [PASSED] invalid_tv_option
[01:10:44] [PASSED] truncated_tv_option
[01:10:44] ============ [PASSED] drm_test_cmdline_invalid =============
[01:10:44] =============== drm_test_cmdline_tv_options ===============
[01:10:44] [PASSED] NTSC
[01:10:44] [PASSED] NTSC_443
[01:10:44] [PASSED] NTSC_J
[01:10:44] [PASSED] PAL
[01:10:44] [PASSED] PAL_M
[01:10:44] [PASSED] PAL_N
[01:10:44] [PASSED] SECAM
[01:10:44] [PASSED] MONO_525
[01:10:44] [PASSED] MONO_625
[01:10:44] =========== [PASSED] drm_test_cmdline_tv_options ===========
[01:10:44] =============== [PASSED] drm_cmdline_parser ================
[01:10:44] ========== drmm_connector_hdmi_init (20 subtests) ==========
[01:10:44] [PASSED] drm_test_connector_hdmi_init_valid
[01:10:44] [PASSED] drm_test_connector_hdmi_init_bpc_8
[01:10:44] [PASSED] drm_test_connector_hdmi_init_bpc_10
[01:10:44] [PASSED] drm_test_connector_hdmi_init_bpc_12
[01:10:44] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[01:10:44] [PASSED] drm_test_connector_hdmi_init_bpc_null
[01:10:44] [PASSED] drm_test_connector_hdmi_init_formats_empty
[01:10:44] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[01:10:44] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[01:10:44] [PASSED] supported_formats=0x9 yuv420_allowed=1
[01:10:44] [PASSED] supported_formats=0x9 yuv420_allowed=0
[01:10:44] [PASSED] supported_formats=0x5 yuv420_allowed=1
[01:10:44] [PASSED] supported_formats=0x5 yuv420_allowed=0
[01:10:44] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[01:10:44] [PASSED] drm_test_connector_hdmi_init_null_ddc
[01:10:44] [PASSED] drm_test_connector_hdmi_init_null_product
[01:10:44] [PASSED] drm_test_connector_hdmi_init_null_vendor
[01:10:44] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[01:10:44] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[01:10:44] [PASSED] drm_test_connector_hdmi_init_product_valid
[01:10:44] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[01:10:44] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[01:10:44] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[01:10:44] ========= drm_test_connector_hdmi_init_type_valid =========
[01:10:44] [PASSED] HDMI-A
[01:10:44] [PASSED] HDMI-B
[01:10:44] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[01:10:44] ======== drm_test_connector_hdmi_init_type_invalid ========
[01:10:44] [PASSED] Unknown
[01:10:44] [PASSED] VGA
[01:10:44] [PASSED] DVI-I
[01:10:44] [PASSED] DVI-D
[01:10:44] [PASSED] DVI-A
[01:10:44] [PASSED] Composite
[01:10:44] [PASSED] SVIDEO
[01:10:44] [PASSED] LVDS
[01:10:44] [PASSED] Component
[01:10:44] [PASSED] DIN
[01:10:44] [PASSED] DP
[01:10:44] [PASSED] TV
[01:10:44] [PASSED] eDP
[01:10:44] [PASSED] Virtual
[01:10:44] [PASSED] DSI
[01:10:44] [PASSED] DPI
[01:10:44] [PASSED] Writeback
[01:10:44] [PASSED] SPI
[01:10:44] [PASSED] USB
[01:10:44] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[01:10:44] ============ [PASSED] drmm_connector_hdmi_init =============
[01:10:44] ============= drmm_connector_init (3 subtests) =============
[01:10:44] [PASSED] drm_test_drmm_connector_init
[01:10:44] [PASSED] drm_test_drmm_connector_init_null_ddc
[01:10:44] ========= drm_test_drmm_connector_init_type_valid =========
[01:10:44] [PASSED] Unknown
[01:10:44] [PASSED] VGA
[01:10:44] [PASSED] DVI-I
[01:10:44] [PASSED] DVI-D
[01:10:44] [PASSED] DVI-A
[01:10:44] [PASSED] Composite
[01:10:44] [PASSED] SVIDEO
[01:10:44] [PASSED] LVDS
[01:10:44] [PASSED] Component
[01:10:44] [PASSED] DIN
[01:10:44] [PASSED] DP
[01:10:44] [PASSED] HDMI-A
[01:10:44] [PASSED] HDMI-B
[01:10:44] [PASSED] TV
[01:10:44] [PASSED] eDP
[01:10:44] [PASSED] Virtual
[01:10:44] [PASSED] DSI
[01:10:44] [PASSED] DPI
[01:10:44] [PASSED] Writeback
[01:10:44] [PASSED] SPI
[01:10:44] [PASSED] USB
[01:10:44] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[01:10:44] =============== [PASSED] drmm_connector_init ===============
[01:10:44] ========= drm_connector_dynamic_init (6 subtests) ==========
[01:10:44] [PASSED] drm_test_drm_connector_dynamic_init
[01:10:44] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[01:10:44] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[01:10:44] [PASSED] drm_test_drm_connector_dynamic_init_properties
[01:10:44] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[01:10:44] [PASSED] Unknown
[01:10:44] [PASSED] VGA
[01:10:44] [PASSED] DVI-I
[01:10:44] [PASSED] DVI-D
[01:10:44] [PASSED] DVI-A
[01:10:44] [PASSED] Composite
[01:10:44] [PASSED] SVIDEO
[01:10:44] [PASSED] LVDS
[01:10:44] [PASSED] Component
[01:10:44] [PASSED] DIN
[01:10:44] [PASSED] DP
[01:10:44] [PASSED] HDMI-A
[01:10:44] [PASSED] HDMI-B
[01:10:44] [PASSED] TV
[01:10:44] [PASSED] eDP
[01:10:44] [PASSED] Virtual
[01:10:44] [PASSED] DSI
[01:10:44] [PASSED] DPI
[01:10:44] [PASSED] Writeback
[01:10:44] [PASSED] SPI
[01:10:44] [PASSED] USB
[01:10:44] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[01:10:44] ======== drm_test_drm_connector_dynamic_init_name =========
[01:10:44] [PASSED] Unknown
[01:10:44] [PASSED] VGA
[01:10:44] [PASSED] DVI-I
[01:10:44] [PASSED] DVI-D
[01:10:44] [PASSED] DVI-A
[01:10:44] [PASSED] Composite
[01:10:44] [PASSED] SVIDEO
[01:10:44] [PASSED] LVDS
[01:10:44] [PASSED] Component
[01:10:44] [PASSED] DIN
[01:10:44] [PASSED] DP
[01:10:44] [PASSED] HDMI-A
[01:10:44] [PASSED] HDMI-B
[01:10:44] [PASSED] TV
[01:10:44] [PASSED] eDP
[01:10:44] [PASSED] Virtual
[01:10:44] [PASSED] DSI
[01:10:44] [PASSED] DPI
[01:10:44] [PASSED] Writeback
[01:10:44] [PASSED] SPI
[01:10:44] [PASSED] USB
[01:10:44] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[01:10:44] =========== [PASSED] drm_connector_dynamic_init ============
[01:10:44] ==== drm_connector_dynamic_register_early (4 subtests) =====
[01:10:44] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[01:10:44] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[01:10:44] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[01:10:44] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[01:10:44] ====== [PASSED] drm_connector_dynamic_register_early =======
[01:10:44] ======= drm_connector_dynamic_register (7 subtests) ========
[01:10:44] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[01:10:44] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[01:10:44] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[01:10:44] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[01:10:44] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[01:10:44] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[01:10:44] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[01:10:44] ========= [PASSED] drm_connector_dynamic_register ==========
[01:10:44] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[01:10:44] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[01:10:44] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[01:10:44] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[01:10:44] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[01:10:44] ========== drm_test_get_tv_mode_from_name_valid ===========
[01:10:44] [PASSED] NTSC
[01:10:44] [PASSED] NTSC-443
[01:10:44] [PASSED] NTSC-J
[01:10:44] [PASSED] PAL
[01:10:44] [PASSED] PAL-M
[01:10:44] [PASSED] PAL-N
[01:10:44] [PASSED] SECAM
[01:10:44] [PASSED] Mono
[01:10:44] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[01:10:44] [PASSED] drm_test_get_tv_mode_from_name_truncated
[01:10:44] ============ [PASSED] drm_get_tv_mode_from_name ============
[01:10:44] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[01:10:44] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[01:10:44] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[01:10:44] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[01:10:44] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[01:10:44] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[01:10:44] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[01:10:44] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[01:10:44] [PASSED] VIC 96
[01:10:44] [PASSED] VIC 97
[01:10:44] [PASSED] VIC 101
[01:10:44] [PASSED] VIC 102
[01:10:44] [PASSED] VIC 106
[01:10:44] [PASSED] VIC 107
[01:10:44] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[01:10:44] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[01:10:44] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[01:10:44] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[01:10:44] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[01:10:44] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[01:10:44] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[01:10:44] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[01:10:44] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[01:10:44] [PASSED] Automatic
[01:10:44] [PASSED] Full
[01:10:44] [PASSED] Limited 16:235
[01:10:44] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[01:10:44] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[01:10:44] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[01:10:44] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[01:10:44] === drm_test_drm_hdmi_connector_get_output_format_name ====
[01:10:44] [PASSED] RGB
[01:10:44] [PASSED] YUV 4:2:0
[01:10:44] [PASSED] YUV 4:2:2
[01:10:44] [PASSED] YUV 4:4:4
[01:10:44] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[01:10:44] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[01:10:44] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[01:10:44] ============= drm_damage_helper (21 subtests) ==============
[01:10:44] [PASSED] drm_test_damage_iter_no_damage
[01:10:44] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[01:10:44] [PASSED] drm_test_damage_iter_no_damage_src_moved
[01:10:44] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[01:10:44] [PASSED] drm_test_damage_iter_no_damage_not_visible
[01:10:44] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[01:10:44] [PASSED] drm_test_damage_iter_no_damage_no_fb
[01:10:44] [PASSED] drm_test_damage_iter_simple_damage
[01:10:44] [PASSED] drm_test_damage_iter_single_damage
[01:10:44] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[01:10:44] [PASSED] drm_test_damage_iter_single_damage_outside_src
[01:10:44] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[01:10:44] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[01:10:44] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[01:10:44] [PASSED] drm_test_damage_iter_single_damage_src_moved
[01:10:44] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[01:10:44] [PASSED] drm_test_damage_iter_damage
[01:10:44] [PASSED] drm_test_damage_iter_damage_one_intersect
[01:10:44] [PASSED] drm_test_damage_iter_damage_one_outside
[01:10:44] [PASSED] drm_test_damage_iter_damage_src_moved
[01:10:44] [PASSED] drm_test_damage_iter_damage_not_visible
[01:10:44] ================ [PASSED] drm_damage_helper ================
[01:10:44] ============== drm_dp_mst_helper (3 subtests) ==============
[01:10:44] ============== drm_test_dp_mst_calc_pbn_mode ==============
[01:10:44] [PASSED] Clock 154000 BPP 30 DSC disabled
[01:10:44] [PASSED] Clock 234000 BPP 30 DSC disabled
[01:10:44] [PASSED] Clock 297000 BPP 24 DSC disabled
[01:10:44] [PASSED] Clock 332880 BPP 24 DSC enabled
[01:10:44] [PASSED] Clock 324540 BPP 24 DSC enabled
[01:10:44] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[01:10:44] ============== drm_test_dp_mst_calc_pbn_div ===============
[01:10:44] [PASSED] Link rate 2000000 lane count 4
[01:10:44] [PASSED] Link rate 2000000 lane count 2
[01:10:44] [PASSED] Link rate 2000000 lane count 1
[01:10:44] [PASSED] Link rate 1350000 lane count 4
[01:10:44] [PASSED] Link rate 1350000 lane count 2
[01:10:44] [PASSED] Link rate 1350000 lane count 1
[01:10:44] [PASSED] Link rate 1000000 lane count 4
[01:10:44] [PASSED] Link rate 1000000 lane count 2
[01:10:44] [PASSED] Link rate 1000000 lane count 1
[01:10:44] [PASSED] Link rate 810000 lane count 4
[01:10:44] [PASSED] Link rate 810000 lane count 2
[01:10:44] [PASSED] Link rate 810000 lane count 1
[01:10:44] [PASSED] Link rate 540000 lane count 4
[01:10:44] [PASSED] Link rate 540000 lane count 2
[01:10:44] [PASSED] Link rate 540000 lane count 1
[01:10:44] [PASSED] Link rate 270000 lane count 4
[01:10:44] [PASSED] Link rate 270000 lane count 2
[01:10:44] [PASSED] Link rate 270000 lane count 1
[01:10:44] [PASSED] Link rate 162000 lane count 4
[01:10:44] [PASSED] Link rate 162000 lane count 2
[01:10:44] [PASSED] Link rate 162000 lane count 1
[01:10:44] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[01:10:44] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[01:10:44] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[01:10:44] [PASSED] DP_POWER_UP_PHY with port number
[01:10:44] [PASSED] DP_POWER_DOWN_PHY with port number
[01:10:44] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[01:10:44] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[01:10:44] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[01:10:44] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[01:10:44] [PASSED] DP_QUERY_PAYLOAD with port number
[01:10:44] [PASSED] DP_QUERY_PAYLOAD with VCPI
[01:10:44] [PASSED] DP_REMOTE_DPCD_READ with port number
[01:10:44] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[01:10:44] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[01:10:44] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[01:10:44] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[01:10:44] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[01:10:44] [PASSED] DP_REMOTE_I2C_READ with port number
[01:10:44] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[01:10:44] [PASSED] DP_REMOTE_I2C_READ with transactions array
[01:10:44] [PASSED] DP_REMOTE_I2C_WRITE with port number
[01:10:44] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[01:10:44] [PASSED] DP_REMOTE_I2C_WRITE with data array
[01:10:44] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[01:10:44] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[01:10:44] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[01:10:44] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[01:10:44] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[01:10:44] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[01:10:44] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[01:10:44] ================ [PASSED] drm_dp_mst_helper ================
[01:10:44] ================== drm_exec (7 subtests) ===================
[01:10:44] [PASSED] sanitycheck
[01:10:44] [PASSED] test_lock
[01:10:44] [PASSED] test_lock_unlock
[01:10:44] [PASSED] test_duplicates
[01:10:44] [PASSED] test_prepare
[01:10:44] [PASSED] test_prepare_array
[01:10:44] [PASSED] test_multiple_loops
[01:10:44] ==================== [PASSED] drm_exec =====================
[01:10:44] =========== drm_format_helper_test (17 subtests) ===========
[01:10:44] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[01:10:44] [PASSED] single_pixel_source_buffer
[01:10:44] [PASSED] single_pixel_clip_rectangle
[01:10:44] [PASSED] well_known_colors
[01:10:44] [PASSED] destination_pitch
[01:10:44] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[01:10:44] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[01:10:44] [PASSED] single_pixel_source_buffer
[01:10:44] [PASSED] single_pixel_clip_rectangle
[01:10:44] [PASSED] well_known_colors
[01:10:44] [PASSED] destination_pitch
[01:10:44] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[01:10:44] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[01:10:44] [PASSED] single_pixel_source_buffer
[01:10:44] [PASSED] single_pixel_clip_rectangle
[01:10:44] [PASSED] well_known_colors
[01:10:44] [PASSED] destination_pitch
[01:10:44] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[01:10:44] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[01:10:44] [PASSED] single_pixel_source_buffer
[01:10:44] [PASSED] single_pixel_clip_rectangle
[01:10:44] [PASSED] well_known_colors
[01:10:44] [PASSED] destination_pitch
[01:10:44] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[01:10:44] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[01:10:44] [PASSED] single_pixel_source_buffer
[01:10:44] [PASSED] single_pixel_clip_rectangle
[01:10:44] [PASSED] well_known_colors
[01:10:44] [PASSED] destination_pitch
[01:10:44] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[01:10:44] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[01:10:44] [PASSED] single_pixel_source_buffer
[01:10:44] [PASSED] single_pixel_clip_rectangle
[01:10:44] [PASSED] well_known_colors
[01:10:44] [PASSED] destination_pitch
[01:10:44] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[01:10:44] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[01:10:44] [PASSED] single_pixel_source_buffer
[01:10:44] [PASSED] single_pixel_clip_rectangle
[01:10:44] [PASSED] well_known_colors
[01:10:44] [PASSED] destination_pitch
[01:10:44] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[01:10:44] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[01:10:44] [PASSED] single_pixel_source_buffer
[01:10:44] [PASSED] single_pixel_clip_rectangle
[01:10:44] [PASSED] well_known_colors
[01:10:44] [PASSED] destination_pitch
[01:10:44] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[01:10:44] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[01:10:44] [PASSED] single_pixel_source_buffer
[01:10:44] [PASSED] single_pixel_clip_rectangle
[01:10:44] [PASSED] well_known_colors
[01:10:44] [PASSED] destination_pitch
[01:10:44] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[01:10:44] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[01:10:44] [PASSED] single_pixel_source_buffer
[01:10:44] [PASSED] single_pixel_clip_rectangle
[01:10:44] [PASSED] well_known_colors
[01:10:44] [PASSED] destination_pitch
[01:10:44] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[01:10:44] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[01:10:44] [PASSED] single_pixel_source_buffer
[01:10:44] [PASSED] single_pixel_clip_rectangle
[01:10:44] [PASSED] well_known_colors
[01:10:44] [PASSED] destination_pitch
[01:10:44] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[01:10:44] ============== drm_test_fb_xrgb8888_to_mono ===============
[01:10:44] [PASSED] single_pixel_source_buffer
[01:10:44] [PASSED] single_pixel_clip_rectangle
[01:10:44] [PASSED] well_known_colors
[01:10:44] [PASSED] destination_pitch
[01:10:44] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[01:10:44] ==================== drm_test_fb_swab =====================
[01:10:44] [PASSED] single_pixel_source_buffer
[01:10:44] [PASSED] single_pixel_clip_rectangle
[01:10:44] [PASSED] well_known_colors
[01:10:44] [PASSED] destination_pitch
[01:10:44] ================ [PASSED] drm_test_fb_swab =================
[01:10:44] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[01:10:44] [PASSED] single_pixel_source_buffer
[01:10:44] [PASSED] single_pixel_clip_rectangle
[01:10:44] [PASSED] well_known_colors
[01:10:44] [PASSED] destination_pitch
[01:10:44] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[01:10:44] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[01:10:44] [PASSED] single_pixel_source_buffer
[01:10:44] [PASSED] single_pixel_clip_rectangle
[01:10:44] [PASSED] well_known_colors
[01:10:44] [PASSED] destination_pitch
[01:10:44] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[01:10:44] ================= drm_test_fb_clip_offset =================
[01:10:44] [PASSED] pass through
[01:10:44] [PASSED] horizontal offset
[01:10:44] [PASSED] vertical offset
[01:10:44] [PASSED] horizontal and vertical offset
[01:10:44] [PASSED] horizontal offset (custom pitch)
[01:10:44] [PASSED] vertical offset (custom pitch)
[01:10:44] [PASSED] horizontal and vertical offset (custom pitch)
[01:10:44] ============= [PASSED] drm_test_fb_clip_offset =============
[01:10:44] =================== drm_test_fb_memcpy ====================
[01:10:44] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[01:10:44] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[01:10:44] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[01:10:44] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[01:10:44] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[01:10:44] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[01:10:44] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[01:10:44] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[01:10:44] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[01:10:44] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[01:10:44] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[01:10:44] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[01:10:44] =============== [PASSED] drm_test_fb_memcpy ================
[01:10:44] ============= [PASSED] drm_format_helper_test ==============
[01:10:44] ================= drm_format (18 subtests) =================
[01:10:44] [PASSED] drm_test_format_block_width_invalid
[01:10:44] [PASSED] drm_test_format_block_width_one_plane
[01:10:44] [PASSED] drm_test_format_block_width_two_plane
[01:10:44] [PASSED] drm_test_format_block_width_three_plane
[01:10:44] [PASSED] drm_test_format_block_width_tiled
[01:10:44] [PASSED] drm_test_format_block_height_invalid
[01:10:44] [PASSED] drm_test_format_block_height_one_plane
[01:10:44] [PASSED] drm_test_format_block_height_two_plane
[01:10:44] [PASSED] drm_test_format_block_height_three_plane
[01:10:44] [PASSED] drm_test_format_block_height_tiled
[01:10:44] [PASSED] drm_test_format_min_pitch_invalid
[01:10:44] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[01:10:44] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[01:10:44] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[01:10:44] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[01:10:44] [PASSED] drm_test_format_min_pitch_two_plane
[01:10:44] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[01:10:44] [PASSED] drm_test_format_min_pitch_tiled
[01:10:44] =================== [PASSED] drm_format ====================
[01:10:44] ============== drm_framebuffer (10 subtests) ===============
[01:10:44] ========== drm_test_framebuffer_check_src_coords ==========
[01:10:44] [PASSED] Success: source fits into fb
[01:10:44] [PASSED] Fail: overflowing fb with x-axis coordinate
[01:10:44] [PASSED] Fail: overflowing fb with y-axis coordinate
[01:10:44] [PASSED] Fail: overflowing fb with source width
[01:10:44] [PASSED] Fail: overflowing fb with source height
[01:10:44] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[01:10:44] [PASSED] drm_test_framebuffer_cleanup
[01:10:44] =============== drm_test_framebuffer_create ===============
[01:10:44] [PASSED] ABGR8888 normal sizes
[01:10:44] [PASSED] ABGR8888 max sizes
[01:10:44] [PASSED] ABGR8888 pitch greater than min required
[01:10:44] [PASSED] ABGR8888 pitch less than min required
[01:10:44] [PASSED] ABGR8888 Invalid width
[01:10:44] [PASSED] ABGR8888 Invalid buffer handle
[01:10:44] [PASSED] No pixel format
[01:10:44] [PASSED] ABGR8888 Width 0
[01:10:44] [PASSED] ABGR8888 Height 0
[01:10:44] [PASSED] ABGR8888 Out of bound height * pitch combination
[01:10:44] [PASSED] ABGR8888 Large buffer offset
[01:10:44] [PASSED] ABGR8888 Buffer offset for inexistent plane
[01:10:44] [PASSED] ABGR8888 Invalid flag
[01:10:44] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[01:10:44] [PASSED] ABGR8888 Valid buffer modifier
[01:10:44] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[01:10:44] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[01:10:44] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[01:10:44] [PASSED] NV12 Normal sizes
[01:10:44] [PASSED] NV12 Max sizes
[01:10:44] [PASSED] NV12 Invalid pitch
[01:10:44] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[01:10:44] [PASSED] NV12 different modifier per-plane
[01:10:44] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[01:10:44] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[01:10:44] [PASSED] NV12 Modifier for inexistent plane
[01:10:44] [PASSED] NV12 Handle for inexistent plane
[01:10:44] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[01:10:44] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[01:10:44] [PASSED] YVU420 Normal sizes
[01:10:44] [PASSED] YVU420 Max sizes
[01:10:44] [PASSED] YVU420 Invalid pitch
[01:10:44] [PASSED] YVU420 Different pitches
[01:10:44] [PASSED] YVU420 Different buffer offsets/pitches
[01:10:44] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[01:10:44] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[01:10:44] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[01:10:44] [PASSED] YVU420 Valid modifier
[01:10:44] [PASSED] YVU420 Different modifiers per plane
[01:10:44] [PASSED] YVU420 Modifier for inexistent plane
[01:10:44] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[01:10:44] [PASSED] X0L2 Normal sizes
[01:10:44] [PASSED] X0L2 Max sizes
[01:10:44] [PASSED] X0L2 Invalid pitch
[01:10:44] [PASSED] X0L2 Pitch greater than minimum required
[01:10:44] [PASSED] X0L2 Handle for inexistent plane
[01:10:44] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[01:10:44] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[01:10:44] [PASSED] X0L2 Valid modifier
[01:10:44] [PASSED] X0L2 Modifier for inexistent plane
[01:10:44] =========== [PASSED] drm_test_framebuffer_create ===========
[01:10:44] [PASSED] drm_test_framebuffer_free
[01:10:44] [PASSED] drm_test_framebuffer_init
[01:10:44] [PASSED] drm_test_framebuffer_init_bad_format
[01:10:44] [PASSED] drm_test_framebuffer_init_dev_mismatch
[01:10:44] [PASSED] drm_test_framebuffer_lookup
[01:10:44] [PASSED] drm_test_framebuffer_lookup_inexistent
[01:10:44] [PASSED] drm_test_framebuffer_modifiers_not_supported
[01:10:44] ================= [PASSED] drm_framebuffer =================
[01:10:44] ================ drm_gem_shmem (8 subtests) ================
[01:10:44] [PASSED] drm_gem_shmem_test_obj_create
[01:10:44] [PASSED] drm_gem_shmem_test_obj_create_private
[01:10:44] [PASSED] drm_gem_shmem_test_pin_pages
[01:10:44] [PASSED] drm_gem_shmem_test_vmap
[01:10:44] [PASSED] drm_gem_shmem_test_get_sg_table
[01:10:44] [PASSED] drm_gem_shmem_test_get_pages_sgt
[01:10:44] [PASSED] drm_gem_shmem_test_madvise
[01:10:44] [PASSED] drm_gem_shmem_test_purge
[01:10:44] ================== [PASSED] drm_gem_shmem ==================
[01:10:44] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[01:10:44] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[01:10:44] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[01:10:44] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[01:10:44] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[01:10:44] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[01:10:44] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[01:10:44] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[01:10:44] [PASSED] Automatic
[01:10:44] [PASSED] Full
[01:10:44] [PASSED] Limited 16:235
[01:10:44] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[01:10:44] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[01:10:44] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[01:10:44] [PASSED] drm_test_check_disable_connector
[01:10:44] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[01:10:44] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[01:10:44] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[01:10:44] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[01:10:44] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[01:10:44] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[01:10:44] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[01:10:44] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[01:10:44] [PASSED] drm_test_check_output_bpc_dvi
[01:10:44] [PASSED] drm_test_check_output_bpc_format_vic_1
[01:10:44] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[01:10:44] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[01:10:44] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[01:10:44] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[01:10:44] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[01:10:44] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[01:10:44] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[01:10:44] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[01:10:44] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[01:10:44] [PASSED] drm_test_check_broadcast_rgb_value
[01:10:44] [PASSED] drm_test_check_bpc_8_value
[01:10:44] [PASSED] drm_test_check_bpc_10_value
[01:10:44] [PASSED] drm_test_check_bpc_12_value
[01:10:44] [PASSED] drm_test_check_format_value
[01:10:44] [PASSED] drm_test_check_tmds_char_value
[01:10:44] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[01:10:44] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[01:10:44] [PASSED] drm_test_check_mode_valid
[01:10:44] [PASSED] drm_test_check_mode_valid_reject
[01:10:44] [PASSED] drm_test_check_mode_valid_reject_rate
[01:10:44] [PASSED] drm_test_check_mode_valid_reject_max_clock
[01:10:44] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[01:10:44] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[01:10:44] [PASSED] drm_test_check_infoframes
[01:10:44] [PASSED] drm_test_check_reject_avi_infoframe
[01:10:44] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[01:10:44] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[01:10:44] [PASSED] drm_test_check_reject_audio_infoframe
[01:10:44] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[01:10:44] ================= drm_managed (2 subtests) =================
[01:10:44] [PASSED] drm_test_managed_release_action
[01:10:44] [PASSED] drm_test_managed_run_action
[01:10:44] =================== [PASSED] drm_managed ===================
[01:10:44] =================== drm_mm (6 subtests) ====================
[01:10:44] [PASSED] drm_test_mm_init
[01:10:44] [PASSED] drm_test_mm_debug
[01:10:44] [PASSED] drm_test_mm_align32
[01:10:44] [PASSED] drm_test_mm_align64
[01:10:44] [PASSED] drm_test_mm_lowest
[01:10:44] [PASSED] drm_test_mm_highest
[01:10:44] ===================== [PASSED] drm_mm ======================
[01:10:44] ============= drm_modes_analog_tv (5 subtests) =============
[01:10:44] [PASSED] drm_test_modes_analog_tv_mono_576i
[01:10:44] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[01:10:44] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[01:10:44] [PASSED] drm_test_modes_analog_tv_pal_576i
[01:10:44] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[01:10:44] =============== [PASSED] drm_modes_analog_tv ===============
[01:10:44] ============== drm_plane_helper (2 subtests) ===============
[01:10:44] =============== drm_test_check_plane_state ================
[01:10:44] [PASSED] clipping_simple
[01:10:44] [PASSED] clipping_rotate_reflect
[01:10:44] [PASSED] positioning_simple
[01:10:44] [PASSED] upscaling
[01:10:44] [PASSED] downscaling
[01:10:44] [PASSED] rounding1
[01:10:44] [PASSED] rounding2
[01:10:44] [PASSED] rounding3
[01:10:44] [PASSED] rounding4
[01:10:44] =========== [PASSED] drm_test_check_plane_state ============
[01:10:44] =========== drm_test_check_invalid_plane_state ============
[01:10:44] [PASSED] positioning_invalid
[01:10:44] [PASSED] upscaling_invalid
[01:10:44] [PASSED] downscaling_invalid
[01:10:44] ======= [PASSED] drm_test_check_invalid_plane_state ========
[01:10:44] ================ [PASSED] drm_plane_helper =================
[01:10:44] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[01:10:44] ====== drm_test_connector_helper_tv_get_modes_check =======
[01:10:44] [PASSED] None
[01:10:44] [PASSED] PAL
[01:10:44] [PASSED] NTSC
[01:10:44] [PASSED] Both, NTSC Default
[01:10:44] [PASSED] Both, PAL Default
[01:10:44] [PASSED] Both, NTSC Default, with PAL on command-line
[01:10:44] [PASSED] Both, PAL Default, with NTSC on command-line
[01:10:44] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[01:10:44] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[01:10:44] ================== drm_rect (9 subtests) ===================
[01:10:44] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[01:10:44] [PASSED] drm_test_rect_clip_scaled_not_clipped
[01:10:44] [PASSED] drm_test_rect_clip_scaled_clipped
[01:10:44] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[01:10:44] ================= drm_test_rect_intersect =================
[01:10:44] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[01:10:44] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[01:10:44] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[01:10:44] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[01:10:44] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[01:10:44] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[01:10:44] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[01:10:44] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[01:10:44] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[01:10:44] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[01:10:44] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[01:10:44] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[01:10:44] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[01:10:44] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[01:10:44] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[01:10:44] ============= [PASSED] drm_test_rect_intersect =============
[01:10:44] ================ drm_test_rect_calc_hscale ================
[01:10:44] [PASSED] normal use
[01:10:44] [PASSED] out of max range
[01:10:44] [PASSED] out of min range
[01:10:44] [PASSED] zero dst
[01:10:44] [PASSED] negative src
[01:10:44] [PASSED] negative dst
[01:10:44] ============ [PASSED] drm_test_rect_calc_hscale ============
[01:10:44] ================ drm_test_rect_calc_vscale ================
[01:10:44] [PASSED] normal use
[01:10:44] [PASSED] out of max range
[01:10:44] [PASSED] out of min range
[01:10:44] [PASSED] zero dst
[01:10:44] [PASSED] negative src
[01:10:44] [PASSED] negative dst
stty: 'standard input': Inappropriate ioctl for device
[01:10:44] ============ [PASSED] drm_test_rect_calc_vscale ============
[01:10:44] ================== drm_test_rect_rotate ===================
[01:10:44] [PASSED] reflect-x
[01:10:44] [PASSED] reflect-y
[01:10:44] [PASSED] rotate-0
[01:10:44] [PASSED] rotate-90
[01:10:44] [PASSED] rotate-180
[01:10:44] [PASSED] rotate-270
[01:10:44] ============== [PASSED] drm_test_rect_rotate ===============
[01:10:44] ================ drm_test_rect_rotate_inv =================
[01:10:44] [PASSED] reflect-x
[01:10:44] [PASSED] reflect-y
[01:10:44] [PASSED] rotate-0
[01:10:44] [PASSED] rotate-90
[01:10:44] [PASSED] rotate-180
[01:10:44] [PASSED] rotate-270
[01:10:44] ============ [PASSED] drm_test_rect_rotate_inv =============
[01:10:44] ==================== [PASSED] drm_rect =====================
[01:10:44] ============ drm_sysfb_modeset_test (1 subtest) ============
[01:10:44] ============ drm_test_sysfb_build_fourcc_list =============
[01:10:44] [PASSED] no native formats
[01:10:44] [PASSED] XRGB8888 as native format
[01:10:44] [PASSED] remove duplicates
[01:10:44] [PASSED] convert alpha formats
[01:10:44] [PASSED] random formats
[01:10:44] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[01:10:44] ============= [PASSED] drm_sysfb_modeset_test ==============
[01:10:44] ================== drm_fixp (2 subtests) ===================
[01:10:44] [PASSED] drm_test_int2fixp
[01:10:44] [PASSED] drm_test_sm2fixp
[01:10:44] ==================== [PASSED] drm_fixp =====================
[01:10:44] ============================================================
[01:10:44] Testing complete. Ran 621 tests: passed: 621
[01:10:44] Elapsed time: 26.308s total, 1.704s configuring, 24.432s building, 0.140s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[01:10:44] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[01:10:46] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[01:10:55] Starting KUnit Kernel (1/1)...
[01:10:55] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[01:10:55] ================= ttm_device (5 subtests) ==================
[01:10:55] [PASSED] ttm_device_init_basic
[01:10:55] [PASSED] ttm_device_init_multiple
[01:10:55] [PASSED] ttm_device_fini_basic
[01:10:55] [PASSED] ttm_device_init_no_vma_man
[01:10:55] ================== ttm_device_init_pools ==================
[01:10:55] [PASSED] No DMA allocations, no DMA32 required
[01:10:55] [PASSED] DMA allocations, DMA32 required
[01:10:55] [PASSED] No DMA allocations, DMA32 required
[01:10:55] [PASSED] DMA allocations, no DMA32 required
[01:10:55] ============== [PASSED] ttm_device_init_pools ==============
[01:10:55] =================== [PASSED] ttm_device ====================
[01:10:55] ================== ttm_pool (8 subtests) ===================
[01:10:55] ================== ttm_pool_alloc_basic ===================
[01:10:55] [PASSED] One page
[01:10:55] [PASSED] More than one page
[01:10:55] [PASSED] Above the allocation limit
[01:10:55] [PASSED] One page, with coherent DMA mappings enabled
[01:10:55] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[01:10:55] ============== [PASSED] ttm_pool_alloc_basic ===============
[01:10:55] ============== ttm_pool_alloc_basic_dma_addr ==============
[01:10:55] [PASSED] One page
[01:10:55] [PASSED] More than one page
[01:10:55] [PASSED] Above the allocation limit
[01:10:55] [PASSED] One page, with coherent DMA mappings enabled
[01:10:55] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[01:10:55] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[01:10:55] [PASSED] ttm_pool_alloc_order_caching_match
[01:10:55] [PASSED] ttm_pool_alloc_caching_mismatch
[01:10:55] [PASSED] ttm_pool_alloc_order_mismatch
[01:10:55] [PASSED] ttm_pool_free_dma_alloc
[01:10:55] [PASSED] ttm_pool_free_no_dma_alloc
[01:10:55] [PASSED] ttm_pool_fini_basic
[01:10:55] ==================== [PASSED] ttm_pool =====================
[01:10:55] ================ ttm_resource (8 subtests) =================
[01:10:55] ================= ttm_resource_init_basic =================
[01:10:55] [PASSED] Init resource in TTM_PL_SYSTEM
[01:10:55] [PASSED] Init resource in TTM_PL_VRAM
[01:10:55] [PASSED] Init resource in a private placement
[01:10:55] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[01:10:55] ============= [PASSED] ttm_resource_init_basic =============
[01:10:55] [PASSED] ttm_resource_init_pinned
[01:10:55] [PASSED] ttm_resource_fini_basic
[01:10:55] [PASSED] ttm_resource_manager_init_basic
[01:10:55] [PASSED] ttm_resource_manager_usage_basic
[01:10:55] [PASSED] ttm_resource_manager_set_used_basic
[01:10:55] [PASSED] ttm_sys_man_alloc_basic
[01:10:55] [PASSED] ttm_sys_man_free_basic
[01:10:55] ================== [PASSED] ttm_resource ===================
[01:10:55] =================== ttm_tt (15 subtests) ===================
[01:10:55] ==================== ttm_tt_init_basic ====================
[01:10:55] [PASSED] Page-aligned size
[01:10:55] [PASSED] Extra pages requested
[01:10:55] ================ [PASSED] ttm_tt_init_basic ================
[01:10:55] [PASSED] ttm_tt_init_misaligned
[01:10:55] [PASSED] ttm_tt_fini_basic
[01:10:55] [PASSED] ttm_tt_fini_sg
[01:10:55] [PASSED] ttm_tt_fini_shmem
[01:10:55] [PASSED] ttm_tt_create_basic
[01:10:55] [PASSED] ttm_tt_create_invalid_bo_type
[01:10:55] [PASSED] ttm_tt_create_ttm_exists
[01:10:55] [PASSED] ttm_tt_create_failed
[01:10:55] [PASSED] ttm_tt_destroy_basic
[01:10:55] [PASSED] ttm_tt_populate_null_ttm
[01:10:55] [PASSED] ttm_tt_populate_populated_ttm
[01:10:55] [PASSED] ttm_tt_unpopulate_basic
[01:10:55] [PASSED] ttm_tt_unpopulate_empty_ttm
[01:10:55] [PASSED] ttm_tt_swapin_basic
[01:10:55] ===================== [PASSED] ttm_tt ======================
[01:10:55] =================== ttm_bo (14 subtests) ===================
[01:10:55] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[01:10:55] [PASSED] Cannot be interrupted and sleeps
[01:10:55] [PASSED] Cannot be interrupted, locks straight away
[01:10:55] [PASSED] Can be interrupted, sleeps
[01:10:55] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[01:10:55] [PASSED] ttm_bo_reserve_locked_no_sleep
[01:10:55] [PASSED] ttm_bo_reserve_no_wait_ticket
[01:10:55] [PASSED] ttm_bo_reserve_double_resv
[01:10:55] [PASSED] ttm_bo_reserve_interrupted
[01:10:55] [PASSED] ttm_bo_reserve_deadlock
[01:10:55] [PASSED] ttm_bo_unreserve_basic
[01:10:55] [PASSED] ttm_bo_unreserve_pinned
[01:10:55] [PASSED] ttm_bo_unreserve_bulk
[01:10:55] [PASSED] ttm_bo_fini_basic
[01:10:55] [PASSED] ttm_bo_fini_shared_resv
[01:10:55] [PASSED] ttm_bo_pin_basic
[01:10:55] [PASSED] ttm_bo_pin_unpin_resource
[01:10:55] [PASSED] ttm_bo_multiple_pin_one_unpin
[01:10:55] ===================== [PASSED] ttm_bo ======================
[01:10:55] ============== ttm_bo_validate (22 subtests) ===============
[01:10:55] ============== ttm_bo_init_reserved_sys_man ===============
[01:10:55] [PASSED] Buffer object for userspace
[01:10:55] [PASSED] Kernel buffer object
[01:10:55] [PASSED] Shared buffer object
[01:10:55] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[01:10:55] ============== ttm_bo_init_reserved_mock_man ==============
[01:10:55] [PASSED] Buffer object for userspace
[01:10:55] [PASSED] Kernel buffer object
[01:10:55] [PASSED] Shared buffer object
[01:10:55] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[01:10:55] [PASSED] ttm_bo_init_reserved_resv
[01:10:55] ================== ttm_bo_validate_basic ==================
[01:10:55] [PASSED] Buffer object for userspace
[01:10:55] [PASSED] Kernel buffer object
[01:10:55] [PASSED] Shared buffer object
[01:10:55] ============== [PASSED] ttm_bo_validate_basic ==============
[01:10:55] [PASSED] ttm_bo_validate_invalid_placement
[01:10:55] ============= ttm_bo_validate_same_placement ==============
[01:10:55] [PASSED] System manager
[01:10:55] [PASSED] VRAM manager
[01:10:55] ========= [PASSED] ttm_bo_validate_same_placement ==========
[01:10:55] [PASSED] ttm_bo_validate_failed_alloc
[01:10:55] [PASSED] ttm_bo_validate_pinned
[01:10:55] [PASSED] ttm_bo_validate_busy_placement
[01:10:55] ================ ttm_bo_validate_multihop =================
[01:10:55] [PASSED] Buffer object for userspace
[01:10:55] [PASSED] Kernel buffer object
[01:10:55] [PASSED] Shared buffer object
[01:10:55] ============ [PASSED] ttm_bo_validate_multihop =============
[01:10:55] ========== ttm_bo_validate_no_placement_signaled ==========
[01:10:55] [PASSED] Buffer object in system domain, no page vector
[01:10:55] [PASSED] Buffer object in system domain with an existing page vector
[01:10:55] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[01:10:55] ======== ttm_bo_validate_no_placement_not_signaled ========
[01:10:55] [PASSED] Buffer object for userspace
[01:10:55] [PASSED] Kernel buffer object
[01:10:55] [PASSED] Shared buffer object
[01:10:55] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[01:10:55] [PASSED] ttm_bo_validate_move_fence_signaled
[01:10:55] ========= ttm_bo_validate_move_fence_not_signaled =========
[01:10:55] [PASSED] Waits for GPU
[01:10:55] [PASSED] Tries to lock straight away
[01:10:55] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[01:10:55] [PASSED] ttm_bo_validate_swapout
[01:10:55] [PASSED] ttm_bo_validate_happy_evict
[01:10:55] [PASSED] ttm_bo_validate_all_pinned_evict
[01:10:55] [PASSED] ttm_bo_validate_allowed_only_evict
[01:10:55] [PASSED] ttm_bo_validate_deleted_evict
[01:10:55] [PASSED] ttm_bo_validate_busy_domain_evict
[01:10:55] [PASSED] ttm_bo_validate_evict_gutting
[01:10:55] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[01:10:55] ================= [PASSED] ttm_bo_validate =================
[01:10:55] ============================================================
[01:10:55] Testing complete. Ran 102 tests: passed: 102
[01:10:55] Elapsed time: 11.469s total, 1.709s configuring, 9.494s building, 0.234s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 22+ messages in thread
* ✓ Xe.CI.BAT: success for : drm/i915/display: Use ceiling division for NV12 UV surface offset calculation (rev2)
2026-04-11 17:15 [PATCH] [RFC]: drm/i915/display: Use ceiling division for NV12 UV surface offset calculation Vidya Srinivas
` (5 preceding siblings ...)
2026-04-15 1:10 ` ✓ CI.KUnit: success for : drm/i915/display: Use ceiling division for NV12 UV surface offset calculation (rev2) Patchwork
@ 2026-04-15 2:10 ` Patchwork
2026-04-15 3:01 ` ✗ Xe.CI.FULL: failure " Patchwork
` (5 subsequent siblings)
12 siblings, 0 replies; 22+ messages in thread
From: Patchwork @ 2026-04-15 2:10 UTC (permalink / raw)
To: Srinivas, Vidya; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1672 bytes --]
== Series Details ==
Series: : drm/i915/display: Use ceiling division for NV12 UV surface offset calculation (rev2)
URL : https://patchwork.freedesktop.org/series/164739/
State : success
== Summary ==
CI Bug Log - changes from xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a_BAT -> xe-pw-164739v2_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 13)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-164739v2_BAT that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-ptl-2: [SKIP][1] -> [PASS][2] +3 other tests pass
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/bat-ptl-2/igt@kms_force_connector_basic@prune-stale-modes.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/bat-ptl-2/igt@kms_force_connector_basic@prune-stale-modes.html
Build changes
-------------
* IGT: IGT_8857 -> IGT_8858
* Linux: xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a -> xe-pw-164739v2
IGT_8857: 7ed262f8dd72a12c8fbbb3d6a18c0753a2a2d57a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8858: f2486f2ab02d1163d864529f54a92066a3b9fe4b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a: 19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a
xe-pw-164739v2: 164739v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/index.html
[-- Attachment #2: Type: text/html, Size: 2258 bytes --]
^ permalink raw reply [flat|nested] 22+ messages in thread
* ✗ Xe.CI.FULL: failure for : drm/i915/display: Use ceiling division for NV12 UV surface offset calculation (rev2)
2026-04-11 17:15 [PATCH] [RFC]: drm/i915/display: Use ceiling division for NV12 UV surface offset calculation Vidya Srinivas
` (6 preceding siblings ...)
2026-04-15 2:10 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-04-15 3:01 ` Patchwork
2026-04-15 16:58 ` [PATCH] [RFC v3]: drm/i915/display: Use ceiling division for NV12 UV surface offset calculation Vidya Srinivas
` (4 subsequent siblings)
12 siblings, 0 replies; 22+ messages in thread
From: Patchwork @ 2026-04-15 3:01 UTC (permalink / raw)
To: Srinivas, Vidya; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 57808 bytes --]
== Series Details ==
Series: : drm/i915/display: Use ceiling division for NV12 UV surface offset calculation (rev2)
URL : https://patchwork.freedesktop.org/series/164739/
State : failure
== Summary ==
CI Bug Log - changes from xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a_FULL -> xe-pw-164739v2_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-164739v2_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-164739v2_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-164739v2_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_pmu@gt-frequency:
- shard-lnl: [PASS][1] -> [FAIL][2] +1 other test fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-lnl-1/igt@xe_pmu@gt-frequency.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-lnl-7/igt@xe_pmu@gt-frequency.html
New tests
---------
New tests have been introduced between xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a_FULL and xe-pw-164739v2_FULL:
### New IGT tests (7) ###
* igt@kms_pm_rpm@universal-planes-dpms@plane-65:
- Statuses : 2 pass(s)
- Exec time: [2.46, 7.90] s
* igt@xe_sysfs_scheduler@job_timeout_ms-invalid-large-string@ccs:
- Statuses : 2 pass(s)
- Exec time: [0.0, 0.00] s
* igt@xe_sysfs_scheduler@job_timeout_ms-invalid-string@ccs:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@xe_sysfs_scheduler@preempt_timeout_us-invalid-large-string@ccs:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@xe_sysfs_scheduler@preempt_timeout_us-invalid-string@ccs:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@xe_sysfs_scheduler@timeslice_duration_us-invalid-large-string@ccs:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@xe_sysfs_scheduler@timeslice_duration_us-invalid-string@ccs:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in xe-pw-164739v2_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@hotunplug-rescan:
- shard-bmg: NOTRUN -> [ABORT][3] ([Intel XE#7578])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-5/igt@core_hotunplug@hotunplug-rescan.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#2233])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-7/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2370]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#2327]) +6 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-1/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#1124]) +16 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#7621])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-6/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html
* igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#7679]) +2 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-9/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-4-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#367] / [Intel XE#7354]) +4 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-7/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html
* igt@kms_ccs@bad-rotation-90-y-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2887]) +14 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-7/igt@kms_ccs@bad-rotation-90-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2652]) +8 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#3432]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2724] / [Intel XE#7449])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-5/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_color@degamma:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2325] / [Intel XE#7358]) +2 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-9/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2252]) +10 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-3/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_content_protection@dp-mst-type-0-hdcp14:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#6974]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-10/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
* igt@kms_content_protection@lic-type-1:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#7642]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-7/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@uevent-hdcp14:
- shard-bmg: NOTRUN -> [FAIL][19] ([Intel XE#6707] / [Intel XE#7439]) +1 other test fail
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-5/igt@kms_content_protection@uevent-hdcp14.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2320]) +7 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-3/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2321] / [Intel XE#7355])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-8/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [PASS][22] -> [DMESG-WARN][23] ([Intel XE#5354])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#1508])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-8/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#1340] / [Intel XE#7435])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#4354] / [Intel XE#5870])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-5/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#4331] / [Intel XE#7227])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-5/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2244])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-10/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#6126] / [Intel XE#776])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-2/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2372] / [Intel XE#7359])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-7/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@dp-mst:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2375])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-6/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-plain-flip-ts-check@bd-dp2-hdmi-a3:
- shard-bmg: [PASS][32] -> [ABORT][33] ([Intel XE#5545]) +1 other test abort
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-5/igt@kms_flip@2x-plain-flip-ts-check@bd-dp2-hdmi-a3.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-2/igt@kms_flip@2x-plain-flip-ts-check@bd-dp2-hdmi-a3.html
* igt@kms_flip@blocking-wf_vblank:
- shard-bmg: [PASS][34] -> [FAIL][35] ([Intel XE#7705]) +1 other test fail
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-8/igt@kms_flip@blocking-wf_vblank.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-3/igt@kms_flip@blocking-wf_vblank.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#7178] / [Intel XE#7351]) +6 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2311]) +39 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#4141]) +22 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2313]) +36 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#7061] / [Intel XE#7356]) +8 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-wc.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#3544])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-9/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [PASS][42] -> [SKIP][43] ([Intel XE#1503])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-5/igt@kms_hdr@invalid-hdr.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-2/igt@kms_hdr@invalid-hdr.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#6911] / [Intel XE#7378])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-10/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#6911] / [Intel XE#7466])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-2/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#4090] / [Intel XE#7443])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-6/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_pipe_stress@stress-xrgb8888-ytiled:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#4329] / [Intel XE#6912] / [Intel XE#7375])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-2/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#7283]) +6 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-7/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier.html
* igt@kms_plane_lowres@tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2393])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-4/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#5020] / [Intel XE#7348])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-6/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b.html
* igt@kms_pm_backlight@fade:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#7376] / [Intel XE#870]) +2 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-4/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc6-dpms:
- shard-lnl: [PASS][53] -> [FAIL][54] ([Intel XE#7340])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-lnl-7/igt@kms_pm_dc@dc6-dpms.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-lnl-8/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@deep-pkgc:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2505] / [Intel XE#7447])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-9/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-4/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@package-g7:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#6814] / [Intel XE#7428])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-2/igt@kms_pm_rpm@package-g7.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#1489]) +11 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-6/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2387] / [Intel XE#7429]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-2/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@psr2-primary-page-flip:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2234] / [Intel XE#2850]) +16 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-7/igt@kms_psr@psr2-primary-page-flip.html
* igt@kms_psr@psr2-primary-render:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2234])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-3/igt@kms_psr@psr2-primary-render.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-lnl: [PASS][62] -> [SKIP][63] ([Intel XE#4692] / [Intel XE#7508])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-lnl-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-lnl-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2330] / [Intel XE#5813])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#3904] / [Intel XE#7342]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2413])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-4/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#1435])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-2/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_sharpness_filter@filter-formats:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#6503]) +2 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-10/igt@kms_sharpness_filter@filter-formats.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2426] / [Intel XE#5848])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@max-min:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#1499])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-9/igt@kms_vrr@max-min.html
* igt@xe_compute@ccs-mode-basic:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#6599]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-6/igt@xe_compute@ccs-mode-basic.html
* igt@xe_eudebug@basic-vm-bind-metadata-discovery:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#7636]) +16 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-2/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html
* igt@xe_eudebug_sriov@deny-sriov:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#5793] / [Intel XE#7320] / [Intel XE#7464])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-10/igt@xe_eudebug_sriov@deny-sriov.html
* igt@xe_evict@evict-small-multi-queue-cm:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#7140]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-7/igt@xe_evict@evict-small-multi-queue-cm.html
* igt@xe_exec_basic@multigpu-once-null-defer-mmap:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#2322] / [Intel XE#7372]) +11 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-8/igt@xe_exec_basic@multigpu-once-null-defer-mmap.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#7136]) +18 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-2/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr.html
* igt@xe_exec_multi_queue@two-queues-priority:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#6874]) +35 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-9/igt@xe_exec_multi_queue@two-queues-priority.html
* igt@xe_exec_threads@threads-hang-fd-userptr-invalidate:
- shard-bmg: [PASS][78] -> [DMESG-WARN][79] ([Intel XE#7725])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-2/igt@xe_exec_threads@threads-hang-fd-userptr-invalidate.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-6/igt@xe_exec_threads@threads-hang-fd-userptr-invalidate.html
* igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#7138]) +12 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-3/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr-rebind.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2229])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_multigpu_svm@mgpu-concurrent-access-basic:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#6964]) +4 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-9/igt@xe_multigpu_svm@mgpu-concurrent-access-basic.html
* igt@xe_oa@oa-tlb-invalidate:
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#2248] / [Intel XE#7325] / [Intel XE#7393])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-5/igt@xe_oa@oa-tlb-invalidate.html
* igt@xe_pat@pat-index-xelpg:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2236] / [Intel XE#7590])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-3/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pat@pat-sw-hw-compare:
- shard-bmg: NOTRUN -> [FAIL][85] ([Intel XE#7695])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-9/igt@xe_pat@pat-sw-hw-compare.html
* igt@xe_pat@xa-app-transient-media-on:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#7590]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-5/igt@xe_pat@xa-app-transient-media-on.html
* igt@xe_pm@d3cold-mmap-system:
- shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2284] / [Intel XE#7370])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-8/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_pxp@pxp-stale-bo-exec-post-rpm:
- shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#4733] / [Intel XE#7417]) +4 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-9/igt@xe_pxp@pxp-stale-bo-exec-post-rpm.html
* igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#944]) +1 other test skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-9/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-bmg: [PASS][90] -> [FAIL][91] ([Intel XE#6569])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-4/igt@xe_sriov_flr@flr-vf1-clear.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-2/igt@xe_sriov_flr@flr-vf1-clear.html
#### Possible fixes ####
* igt@core_hotunplug@hotunbind-rebind:
- shard-bmg: [SKIP][92] ([Intel XE#6779]) -> [PASS][93]
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-2/igt@core_hotunplug@hotunbind-rebind.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-5/igt@core_hotunplug@hotunbind-rebind.html
* igt@core_setmaster@master-drop-set-root:
- shard-bmg: [FAIL][94] -> [PASS][95]
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-2/igt@core_setmaster@master-drop-set-root.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-2/igt@core_setmaster@master-drop-set-root.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-bmg: [SKIP][96] ([Intel XE#2685] / [Intel XE#3307]) -> [PASS][97]
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-8/igt@kms_plane_scaling@intel-max-src-size.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-5/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
- shard-lnl: [FAIL][98] ([Intel XE#2142]) -> [PASS][99] +1 other test pass
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-lnl-5/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-lnl-5/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
* igt@xe_exec_system_allocator@once-mmap-race-nomemset:
- shard-bmg: [SKIP][100] ([Intel XE#6557] / [Intel XE#6703]) -> [PASS][101] +2 other tests pass
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-2/igt@xe_exec_system_allocator@once-mmap-race-nomemset.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-10/igt@xe_exec_system_allocator@once-mmap-race-nomemset.html
* igt@xe_exec_system_allocator@twice-mmap-free-madvise:
- shard-bmg: [SKIP][102] ([Intel XE#6703]) -> [PASS][103] +110 other tests pass
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-2/igt@xe_exec_system_allocator@twice-mmap-free-madvise.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-8/igt@xe_exec_system_allocator@twice-mmap-free-madvise.html
#### Warnings ####
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-bmg: [SKIP][104] ([Intel XE#6703]) -> [SKIP][105] ([Intel XE#1124]) +2 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-10/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
- shard-bmg: [SKIP][106] ([Intel XE#6703]) -> [SKIP][107] ([Intel XE#7679])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-2/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-5/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs:
- shard-bmg: [SKIP][108] ([Intel XE#6703]) -> [SKIP][109] ([Intel XE#2887]) +3 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-2/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-1/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-bmg: [SKIP][110] ([Intel XE#6703]) -> [SKIP][111] ([Intel XE#3432])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_chamelium_hpd@dp-hpd-storm:
- shard-bmg: [SKIP][112] ([Intel XE#6703]) -> [SKIP][113] ([Intel XE#2252]) +1 other test skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-2/igt@kms_chamelium_hpd@dp-hpd-storm.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-2/igt@kms_chamelium_hpd@dp-hpd-storm.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-bmg: [SKIP][114] ([Intel XE#6703]) -> [SKIP][115] ([Intel XE#2390] / [Intel XE#6974])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-2/igt@kms_content_protection@dp-mst-type-1.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-7/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-bmg: [SKIP][116] ([Intel XE#6703]) -> [SKIP][117] ([Intel XE#2321] / [Intel XE#7355])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-512x512.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-9/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-128x42:
- shard-bmg: [SKIP][118] ([Intel XE#6703]) -> [SKIP][119] ([Intel XE#2320])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-2/igt@kms_cursor_crc@cursor-random-128x42.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-1/igt@kms_cursor_crc@cursor-random-128x42.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [FAIL][120] ([Intel XE#7571]) -> [FAIL][121] ([Intel XE#7586])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-bmg: [SKIP][122] ([Intel XE#6703]) -> [SKIP][123] ([Intel XE#2244])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-2/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-4/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-bmg: [SKIP][124] ([Intel XE#6703]) -> [SKIP][125] ([Intel XE#7178] / [Intel XE#7351])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-9/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][126] ([Intel XE#6703]) -> [SKIP][127] ([Intel XE#2311]) +5 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-linear:
- shard-bmg: [SKIP][128] ([Intel XE#6703]) -> [SKIP][129] ([Intel XE#4141]) +1 other test skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt:
- shard-bmg: [SKIP][130] ([Intel XE#2312]) -> [SKIP][131] ([Intel XE#2313])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-bmg: [SKIP][132] ([Intel XE#6703]) -> [SKIP][133] ([Intel XE#2313]) +3 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-10/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier-source-clamping:
- shard-bmg: [SKIP][134] ([Intel XE#6703]) -> [SKIP][135] ([Intel XE#7283])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-2/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier-source-clamping.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-6/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier-source-clamping.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-bmg: [SKIP][136] ([Intel XE#6703]) -> [SKIP][137] ([Intel XE#1489]) +2 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-2/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-9/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr@psr-sprite-plane-move:
- shard-bmg: [SKIP][138] ([Intel XE#6703]) -> [SKIP][139] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-2/igt@kms_psr@psr-sprite-plane-move.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-8/igt@kms_psr@psr-sprite-plane-move.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [FAIL][140] ([Intel XE#1729] / [Intel XE#7424]) -> [SKIP][141] ([Intel XE#2426] / [Intel XE#5848])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern.html
* igt@xe_eudebug@basic-vm-bind-ufence-sigint-client:
- shard-bmg: [SKIP][142] ([Intel XE#6703]) -> [SKIP][143] ([Intel XE#7636]) +3 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-2/igt@xe_eudebug@basic-vm-bind-ufence-sigint-client.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-9/igt@xe_eudebug@basic-vm-bind-ufence-sigint-client.html
* igt@xe_exec_basic@multigpu-no-exec-userptr-rebind:
- shard-bmg: [SKIP][144] ([Intel XE#6703]) -> [SKIP][145] ([Intel XE#2322] / [Intel XE#7372])
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-2/igt@xe_exec_basic@multigpu-no-exec-userptr-rebind.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-2/igt@xe_exec_basic@multigpu-no-exec-userptr-rebind.html
* igt@xe_exec_fault_mode@once-multi-queue-userptr-prefetch:
- shard-bmg: [SKIP][146] ([Intel XE#6703]) -> [SKIP][147] ([Intel XE#7136]) +3 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-2/igt@xe_exec_fault_mode@once-multi-queue-userptr-prefetch.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-5/igt@xe_exec_fault_mode@once-multi-queue-userptr-prefetch.html
* igt@xe_exec_multi_queue@few-execs-preempt-mode-fault-userptr:
- shard-bmg: [SKIP][148] ([Intel XE#6703]) -> [SKIP][149] ([Intel XE#6874]) +4 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-2/igt@xe_exec_multi_queue@few-execs-preempt-mode-fault-userptr.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-10/igt@xe_exec_multi_queue@few-execs-preempt-mode-fault-userptr.html
* igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-rebind:
- shard-bmg: [SKIP][150] ([Intel XE#6703]) -> [SKIP][151] ([Intel XE#7138]) +2 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-rebind.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-rebind.html
* igt@xe_module_load@load:
- shard-bmg: ([PASS][152], [PASS][153], [PASS][154], [PASS][155], [PASS][156], [PASS][157], [PASS][158], [DMESG-WARN][159], [PASS][160], [PASS][161], [PASS][162], [PASS][163], [PASS][164], [PASS][165], [PASS][166], [PASS][167], [SKIP][168], [PASS][169], [PASS][170], [PASS][171], [DMESG-WARN][172], [DMESG-WARN][173], [PASS][174], [DMESG-WARN][175], [DMESG-WARN][176], [DMESG-WARN][177]) ([Intel XE#2457] / [Intel XE#7405] / [Intel XE#7725]) -> ([PASS][178], [PASS][179], [PASS][180], [PASS][181], [PASS][182], [PASS][183], [PASS][184], [PASS][185], [PASS][186], [PASS][187], [PASS][188], [PASS][189], [PASS][190], [PASS][191], [PASS][192], [PASS][193], [PASS][194], [PASS][195], [PASS][196], [PASS][197], [PASS][198], [SKIP][199], [PASS][200], [PASS][201], [PASS][202], [PASS][203]) ([Intel XE#2457] / [Intel XE#7405])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-10/igt@xe_module_load@load.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-7/igt@xe_module_load@load.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-8/igt@xe_module_load@load.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-8/igt@xe_module_load@load.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-1/igt@xe_module_load@load.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-1/igt@xe_module_load@load.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-3/igt@xe_module_load@load.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-6/igt@xe_module_load@load.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-5/igt@xe_module_load@load.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-2/igt@xe_module_load@load.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-2/igt@xe_module_load@load.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-10/igt@xe_module_load@load.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-8/igt@xe_module_load@load.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-9/igt@xe_module_load@load.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-5/igt@xe_module_load@load.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-2/igt@xe_module_load@load.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-3/igt@xe_module_load@load.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-9/igt@xe_module_load@load.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-4/igt@xe_module_load@load.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-4/igt@xe_module_load@load.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-6/igt@xe_module_load@load.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-6/igt@xe_module_load@load.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-3/igt@xe_module_load@load.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-6/igt@xe_module_load@load.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-6/igt@xe_module_load@load.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-6/igt@xe_module_load@load.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-10/igt@xe_module_load@load.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-7/igt@xe_module_load@load.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-8/igt@xe_module_load@load.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-8/igt@xe_module_load@load.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-6/igt@xe_module_load@load.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-6/igt@xe_module_load@load.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-10/igt@xe_module_load@load.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-1/igt@xe_module_load@load.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-1/igt@xe_module_load@load.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-1/igt@xe_module_load@load.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-8/igt@xe_module_load@load.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-2/igt@xe_module_load@load.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-2/igt@xe_module_load@load.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-2/igt@xe_module_load@load.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-5/igt@xe_module_load@load.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-5/igt@xe_module_load@load.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-5/igt@xe_module_load@load.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-7/igt@xe_module_load@load.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-7/igt@xe_module_load@load.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-4/igt@xe_module_load@load.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-4/igt@xe_module_load@load.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-1/igt@xe_module_load@load.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-9/igt@xe_module_load@load.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-9/igt@xe_module_load@load.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-9/igt@xe_module_load@load.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-3/igt@xe_module_load@load.html
* igt@xe_pm@d3hot-i2c:
- shard-bmg: [SKIP][204] ([Intel XE#6703]) -> [SKIP][205] ([Intel XE#5742] / [Intel XE#7328] / [Intel XE#7400])
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-2/igt@xe_pm@d3hot-i2c.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-1/igt@xe_pm@d3hot-i2c.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-bmg: [SKIP][206] ([Intel XE#6703]) -> [SKIP][207] ([Intel XE#944]) +1 other test skip
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a/shard-bmg-2/igt@xe_query@multigpu-query-invalid-cs-cycles.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/shard-bmg-1/igt@xe_query@multigpu-query-invalid-cs-cycles.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[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#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#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372
[Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2685]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2685
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4090]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4090
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329
[Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4692
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742
[Intel XE#5793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5793
[Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#5870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5870
[Intel XE#6126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6126
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557
[Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
[Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703
[Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
[Intel XE#6779]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6779
[Intel XE#6814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6814
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
[Intel XE#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7227
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7320
[Intel XE#7325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7325
[Intel XE#7328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7328
[Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7354
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[Intel XE#7359]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7359
[Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7375
[Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
[Intel XE#7378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7378
[Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383
[Intel XE#7393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7393
[Intel XE#7400]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7400
[Intel XE#7405]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7405
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
[Intel XE#7428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7428
[Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429
[Intel XE#7435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7435
[Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439
[Intel XE#7443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7443
[Intel XE#7447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7447
[Intel XE#7449]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7449
[Intel XE#7464]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7464
[Intel XE#7466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7466
[Intel XE#7508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7508
[Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
[Intel XE#7578]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7578
[Intel XE#7586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7586
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#7621]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7621
[Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
[Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642
[Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
[Intel XE#7695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7695
[Intel XE#7705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7705
[Intel XE#7725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7725
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8857 -> IGT_8858
* Linux: xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a -> xe-pw-164739v2
IGT_8857: 7ed262f8dd72a12c8fbbb3d6a18c0753a2a2d57a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8858: f2486f2ab02d1163d864529f54a92066a3b9fe4b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4902-19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a: 19fc8405447f8b93c3fb0a341c00c2ffc6b05c4a
xe-pw-164739v2: 164739v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v2/index.html
[-- Attachment #2: Type: text/html, Size: 65599 bytes --]
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [PATCH] [RFC]: drm/i915/display: Use ceiling division for NV12 UV surface offset calculation
2026-04-15 0:15 ` Vidya Srinivas
@ 2026-04-15 11:59 ` Jani Nikula
2026-04-15 17:06 ` Srinivas, Vidya
0 siblings, 1 reply; 22+ messages in thread
From: Jani Nikula @ 2026-04-15 11:59 UTC (permalink / raw)
To: Vidya Srinivas, intel-gfx; +Cc: intel-xe, uma.shankar, Vidya Srinivas
On Wed, 15 Apr 2026, Vidya Srinivas <vidya.srinivas@intel.com> wrote:
> For LNL+, odd source size and panning for YUV 422/420 surfaces is
> supported. However, it requires the UV (chroma) surface Start X/Y and
> width/height to be calculated as ceiling(half of Y plane value) rather
> than floor.
>
> The current code uses (>> 17) which combines the U16.16 fixed-point to
> integer conversion (>> 16) with a divide-by-2 for chroma subsampling
> (>> 1) into a single floor division. For odd Y plane values this
> produces an off-by-one error in the UV plane offset.
>
> On Android systems we see PLANE ATS fault when NV12 overlays are
> used with odd source dimensions:
>
> [ 126.854200] xe 0000:00:02.0: [drm:intel_atomic_setup_scaler [xe]] [CRTC:148:pipe A] attached scaler id 0.0 to PLANE:33
> [ 126.854617] xe 0000:00:02.0: [drm:skl_update_scaler [xe]] [CRTC:148:pipe A] scaler_user index 0.0: staged scaling request for 1279x719->1340x753
> [ 126.854837] xe 0000:00:02.0: [drm:intel_plane_atomic_check [xe]] UV plane [PLANE:33:plane 1A] using Y plane [PLANE:123:plane 4A]
> [ 126.854926] xe 0000:00:02.0: [drm] *ERROR* [CRTC:148:pipe A] PLANE ATS fault
>
> With Y plane width 1279:
> floor(1279/2) = 639 (current)
> ceil(1279/2) = 640 (required)
>
> Use DIV_ROUND_UP(value, 1 << 17) for the ceiling division of the
> U16.16 fixed-point source coordinates, preserving sub-pixel precision.
> This is a no-op for even values since ceiling and floor are equal
> when the dividend is even.
>
> v2: Use DIV_ROUND_UP(value, 1 << 17) to preserve sub-pixel precision
> while making the ceiling division readable (Jani, Uma)
>
> Signed-off-by: Vidya Srinivas <vidya.srinivas@intel.com>
> ---
> drivers/gpu/drm/i915/display/skl_universal_plane.c | 14 ++++++++++----
> 1 file changed, 10 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/skl_universal_plane.c b/drivers/gpu/drm/i915/display/skl_universal_plane.c
> index 7a9d494334b5..1de79ff65253 100644
> --- a/drivers/gpu/drm/i915/display/skl_universal_plane.c
> +++ b/drivers/gpu/drm/i915/display/skl_universal_plane.c
> @@ -2139,10 +2139,16 @@ static int skl_check_nv12_aux_surface(struct intel_plane_state *plane_state)
> int min_height = intel_plane_min_height(plane, fb, uv_plane, rotation);
> int max_width = intel_plane_max_width(plane, fb, uv_plane, rotation);
> int max_height = intel_plane_max_height(plane, fb, uv_plane, rotation);
> - int x = plane_state->uapi.src.x1 >> 17;
> - int y = plane_state->uapi.src.y1 >> 17;
> - int w = drm_rect_width(&plane_state->uapi.src) >> 17;
> - int h = drm_rect_height(&plane_state->uapi.src) >> 17;
> +
> + /*
> + * LNL+ UV surface start/size =
> + * ceiling(half of Y plane start/size). Use ceiling division
> + * unconditionally; it is a no-op for even values.
> + */
> + int x = DIV_ROUND_UP(plane_state->uapi.src.x1, 1 << 17);
> + int y = DIV_ROUND_UP(plane_state->uapi.src.y1, 1 << 17);
> + int w = DIV_ROUND_UP(drm_rect_width(&plane_state->uapi.src), 1 << 17);
> + int h = DIV_ROUND_UP(drm_rect_height(&plane_state->uapi.src), 1 << 17);
Like I said, my main problem with the original >> 17 is that it combines
two completely separate things in one: division by two, and getting the
integer part of a fixed-point number.
Ideally you'd have helpers for first doing U16.16 division by 2, in
fixed-point domain, and then getting the ceiling conversion to int.
BR,
Jani.
> u32 offset;
>
> /* FIXME not quite sure how/if these apply to the chroma plane */
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 22+ messages in thread
* [PATCH] [RFC v3]: drm/i915/display: Use ceiling division for NV12 UV surface offset calculation
2026-04-11 17:15 [PATCH] [RFC]: drm/i915/display: Use ceiling division for NV12 UV surface offset calculation Vidya Srinivas
` (7 preceding siblings ...)
2026-04-15 3:01 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-04-15 16:58 ` Vidya Srinivas
2026-04-29 11:07 ` Juha-Pekka Heikkilä
2026-04-15 17:09 ` ✗ CI.checkpatch: warning for : drm/i915/display: Use ceiling division for NV12 UV surface offset calculation (rev3) Patchwork
` (3 subsequent siblings)
12 siblings, 1 reply; 22+ messages in thread
From: Vidya Srinivas @ 2026-04-15 16:58 UTC (permalink / raw)
To: intel-gfx; +Cc: intel-xe, uma.shankar, jani.nikula, Vidya Srinivas
For LNL+, odd source size and panning for YUV 422/420 surfaces is
supported. However, it requires the UV (chroma) surface Start X/Y and
width/height to be calculated as ceiling(half of Y plane value) rather
than floor.
The current code uses (>> 17) which combines the U16.16 fixed-point to
integer conversion (>> 16) with a divide-by-2 for chroma subsampling
(>> 1) into a single floor division. For odd Y plane values this
produces an off-by-one error in the UV plane offset.
On Android systems we see PLANE ATS fault when NV12 overlays are
used with odd source dimensions:
[ 126.854200] xe 0000:00:02.0: [drm:intel_atomic_setup_scaler [xe]] [CRTC:148:pipe A] attached scaler id 0.0 to PLANE:33
[ 126.854617] xe 0000:00:02.0: [drm:skl_update_scaler [xe]] [CRTC:148:pipe A] scaler_user index 0.0: staged scaling request for 1279x719->1340x753
[ 126.854837] xe 0000:00:02.0: [drm:intel_plane_atomic_check [xe]] UV plane [PLANE:33:plane 1A] using Y plane [PLANE:123:plane 4A]
[ 126.854926] xe 0000:00:02.0: [drm] *ERROR* [CRTC:148:pipe A] PLANE ATS fault
With Y plane width 1279:
floor(1279/2) = 639 (current)
ceil(1279/2) = 640 (required)
Introduce fp_16_16_div2() and fp_16_16_to_int_ceil() helpers to cleanly
separate the two operations: first halve the U16.16 fixed-point value
for chroma subsampling (staying in fixed-point domain), then convert
to integer with ceiling rounding.
v2: Use DIV_ROUND_UP(value, 1 << 17) to preserve sub-pixel precision
while making the ceiling division readable (Jani, Uma)
v3: Split into two helpers - fp_16_16_div2() for fixed-point division
by 2 and fp_16_16_to_int_ceil() for ceiling conversion to integer,
cleanly separating chroma subsampling from fixed-point to integer
conversion (Jani)
Signed-off-by: Vidya Srinivas <vidya.srinivas@intel.com>
---
.../drm/i915/display/skl_universal_plane.c | 27 ++++++++++++++++---
1 file changed, 23 insertions(+), 4 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/skl_universal_plane.c b/drivers/gpu/drm/i915/display/skl_universal_plane.c
index 7a9d494334b5..e772b0d716c7 100644
--- a/drivers/gpu/drm/i915/display/skl_universal_plane.c
+++ b/drivers/gpu/drm/i915/display/skl_universal_plane.c
@@ -2126,6 +2126,19 @@ static int skl_check_main_surface(struct intel_plane_state *plane_state)
return 0;
}
+
+/* Divide a U16.16 fixed-point value by 2, staying in fixed-point domain */
+static inline u32 fp_16_16_div2(u32 fp)
+{
+ return fp >> 1;
+}
+
+/* Convert a U16.16 fixed-point value to integer, rounding up */
+static inline int fp_16_16_to_int_ceil(u32 fp)
+{
+ return DIV_ROUND_UP(fp, 1 << 16);
+}
+
static int skl_check_nv12_aux_surface(struct intel_plane_state *plane_state)
{
struct intel_display *display = to_intel_display(plane_state);
@@ -2139,10 +2152,16 @@ static int skl_check_nv12_aux_surface(struct intel_plane_state *plane_state)
int min_height = intel_plane_min_height(plane, fb, uv_plane, rotation);
int max_width = intel_plane_max_width(plane, fb, uv_plane, rotation);
int max_height = intel_plane_max_height(plane, fb, uv_plane, rotation);
- int x = plane_state->uapi.src.x1 >> 17;
- int y = plane_state->uapi.src.y1 >> 17;
- int w = drm_rect_width(&plane_state->uapi.src) >> 17;
- int h = drm_rect_height(&plane_state->uapi.src) >> 17;
+
+ /*
+ * LNL+ UV surface start/size =
+ * ceiling(half of Y plane start/size). Use ceiling division
+ * unconditionally; it is a no-op for even values.
+ */
+ int x = fp_16_16_to_int_ceil(fp_16_16_div2(plane_state->uapi.src.x1));
+ int y = fp_16_16_to_int_ceil(fp_16_16_div2(plane_state->uapi.src.y1));
+ int w = fp_16_16_to_int_ceil(fp_16_16_div2(drm_rect_width(&plane_state->uapi.src)));
+ int h = fp_16_16_to_int_ceil(fp_16_16_div2(drm_rect_height(&plane_state->uapi.src)));
u32 offset;
/* FIXME not quite sure how/if these apply to the chroma plane */
--
2.45.2
^ permalink raw reply related [flat|nested] 22+ messages in thread
* RE: [PATCH] [RFC]: drm/i915/display: Use ceiling division for NV12 UV surface offset calculation
2026-04-15 11:59 ` Jani Nikula
@ 2026-04-15 17:06 ` Srinivas, Vidya
2026-04-17 2:03 ` Srinivas, Vidya
0 siblings, 1 reply; 22+ messages in thread
From: Srinivas, Vidya @ 2026-04-15 17:06 UTC (permalink / raw)
To: Nikula, Jani, intel-gfx@lists.freedesktop.org
Cc: intel-xe@lists.freedesktop.org, Shankar, Uma
> -----Original Message-----
> From: Nikula, Jani <jani.nikula@intel.com>
> Sent: 15 April 2026 17:30
> To: Srinivas, Vidya <vidya.srinivas@intel.com>; intel-gfx@lists.freedesktop.org
> Cc: intel-xe@lists.freedesktop.org; Shankar, Uma <uma.shankar@intel.com>;
> Srinivas, Vidya <vidya.srinivas@intel.com>
> Subject: Re: [PATCH] [RFC]: drm/i915/display: Use ceiling division for NV12 UV
> surface offset calculation
>
> On Wed, 15 Apr 2026, Vidya Srinivas <vidya.srinivas@intel.com> wrote:
> > For LNL+, odd source size and panning for YUV 422/420 surfaces is
> > supported. However, it requires the UV (chroma) surface Start X/Y and
> > width/height to be calculated as ceiling(half of Y plane value) rather
> > than floor.
> >
> > The current code uses (>> 17) which combines the U16.16 fixed-point to
> > integer conversion (>> 16) with a divide-by-2 for chroma subsampling
> > (>> 1) into a single floor division. For odd Y plane values this
> > produces an off-by-one error in the UV plane offset.
> >
> > On Android systems we see PLANE ATS fault when NV12 overlays are used
> > with odd source dimensions:
> >
> > [ 126.854200] xe 0000:00:02.0: [drm:intel_atomic_setup_scaler [xe]]
> > [CRTC:148:pipe A] attached scaler id 0.0 to PLANE:33 [ 126.854617] xe
> > 0000:00:02.0: [drm:skl_update_scaler [xe]] [CRTC:148:pipe A]
> > scaler_user index 0.0: staged scaling request for 1279x719->1340x753 [
> > 126.854837] xe 0000:00:02.0: [drm:intel_plane_atomic_check [xe]] UV
> > plane [PLANE:33:plane 1A] using Y plane [PLANE:123:plane 4A] [
> > 126.854926] xe 0000:00:02.0: [drm] *ERROR* [CRTC:148:pipe A] PLANE ATS
> > fault
> >
> > With Y plane width 1279:
> > floor(1279/2) = 639 (current)
> > ceil(1279/2) = 640 (required)
> >
> > Use DIV_ROUND_UP(value, 1 << 17) for the ceiling division of the
> > U16.16 fixed-point source coordinates, preserving sub-pixel precision.
> > This is a no-op for even values since ceiling and floor are equal when
> > the dividend is even.
> >
> > v2: Use DIV_ROUND_UP(value, 1 << 17) to preserve sub-pixel precision
> > while making the ceiling division readable (Jani, Uma)
> >
> > Signed-off-by: Vidya Srinivas <vidya.srinivas@intel.com>
> > ---
> > drivers/gpu/drm/i915/display/skl_universal_plane.c | 14
> > ++++++++++----
> > 1 file changed, 10 insertions(+), 4 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/i915/display/skl_universal_plane.c
> > b/drivers/gpu/drm/i915/display/skl_universal_plane.c
> > index 7a9d494334b5..1de79ff65253 100644
> > --- a/drivers/gpu/drm/i915/display/skl_universal_plane.c
> > +++ b/drivers/gpu/drm/i915/display/skl_universal_plane.c
> > @@ -2139,10 +2139,16 @@ static int skl_check_nv12_aux_surface(struct
> intel_plane_state *plane_state)
> > int min_height = intel_plane_min_height(plane, fb, uv_plane,
> rotation);
> > int max_width = intel_plane_max_width(plane, fb, uv_plane,
> rotation);
> > int max_height = intel_plane_max_height(plane, fb, uv_plane,
> rotation);
> > - int x = plane_state->uapi.src.x1 >> 17;
> > - int y = plane_state->uapi.src.y1 >> 17;
> > - int w = drm_rect_width(&plane_state->uapi.src) >> 17;
> > - int h = drm_rect_height(&plane_state->uapi.src) >> 17;
> > +
> > + /*
> > + * LNL+ UV surface start/size =
> > + * ceiling(half of Y plane start/size). Use ceiling division
> > + * unconditionally; it is a no-op for even values.
> > + */
> > + int x = DIV_ROUND_UP(plane_state->uapi.src.x1, 1 << 17);
> > + int y = DIV_ROUND_UP(plane_state->uapi.src.y1, 1 << 17);
> > + int w = DIV_ROUND_UP(drm_rect_width(&plane_state->uapi.src), 1
> << 17);
> > + int h = DIV_ROUND_UP(drm_rect_height(&plane_state->uapi.src), 1
> <<
> > +17);
>
> Like I said, my main problem with the original >> 17 is that it combines two
> completely separate things in one: division by two, and getting the integer
> part of a fixed-point number.
>
> Ideally you'd have helpers for first doing U16.16 division by 2, in fixed-point
> domain, and then getting the ceiling conversion to int.
>
Hello Jani
Thank you very much.
Tried adding helpers in v3
https://patchwork.freedesktop.org/patch/718493/?series=164739&rev=3
Kindly have a check and suggest.
Regards
Vidya
> BR,
> Jani.
>
>
> > u32 offset;
> >
> > /* FIXME not quite sure how/if these apply to the chroma plane */
>
> --
> Jani Nikula, Intel
^ permalink raw reply [flat|nested] 22+ messages in thread
* ✗ CI.checkpatch: warning for : drm/i915/display: Use ceiling division for NV12 UV surface offset calculation (rev3)
2026-04-11 17:15 [PATCH] [RFC]: drm/i915/display: Use ceiling division for NV12 UV surface offset calculation Vidya Srinivas
` (8 preceding siblings ...)
2026-04-15 16:58 ` [PATCH] [RFC v3]: drm/i915/display: Use ceiling division for NV12 UV surface offset calculation Vidya Srinivas
@ 2026-04-15 17:09 ` Patchwork
2026-04-15 17:11 ` ✓ CI.KUnit: success " Patchwork
` (2 subsequent siblings)
12 siblings, 0 replies; 22+ messages in thread
From: Patchwork @ 2026-04-15 17:09 UTC (permalink / raw)
To: Srinivas, Vidya; +Cc: intel-xe
== Series Details ==
Series: : drm/i915/display: Use ceiling division for NV12 UV surface offset calculation (rev3)
URL : https://patchwork.freedesktop.org/series/164739/
State : warning
== Summary ==
+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
1f57ba1afceae32108bd24770069f764d940a0e4
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 4419f68f1c30650828f7ddb2b1ad1f03a18cc089
Author: Vidya Srinivas <vidya.srinivas@intel.com>
Date: Wed Apr 15 22:28:49 2026 +0530
drm/i915/display: Use ceiling division for NV12 UV surface offset calculation
For LNL+, odd source size and panning for YUV 422/420 surfaces is
supported. However, it requires the UV (chroma) surface Start X/Y and
width/height to be calculated as ceiling(half of Y plane value) rather
than floor.
The current code uses (>> 17) which combines the U16.16 fixed-point to
integer conversion (>> 16) with a divide-by-2 for chroma subsampling
(>> 1) into a single floor division. For odd Y plane values this
produces an off-by-one error in the UV plane offset.
On Android systems we see PLANE ATS fault when NV12 overlays are
used with odd source dimensions:
[ 126.854200] xe 0000:00:02.0: [drm:intel_atomic_setup_scaler [xe]] [CRTC:148:pipe A] attached scaler id 0.0 to PLANE:33
[ 126.854617] xe 0000:00:02.0: [drm:skl_update_scaler [xe]] [CRTC:148:pipe A] scaler_user index 0.0: staged scaling request for 1279x719->1340x753
[ 126.854837] xe 0000:00:02.0: [drm:intel_plane_atomic_check [xe]] UV plane [PLANE:33:plane 1A] using Y plane [PLANE:123:plane 4A]
[ 126.854926] xe 0000:00:02.0: [drm] *ERROR* [CRTC:148:pipe A] PLANE ATS fault
With Y plane width 1279:
floor(1279/2) = 639 (current)
ceil(1279/2) = 640 (required)
Introduce fp_16_16_div2() and fp_16_16_to_int_ceil() helpers to cleanly
separate the two operations: first halve the U16.16 fixed-point value
for chroma subsampling (staying in fixed-point domain), then convert
to integer with ceiling rounding.
v2: Use DIV_ROUND_UP(value, 1 << 17) to preserve sub-pixel precision
while making the ceiling division readable (Jani, Uma)
v3: Split into two helpers - fp_16_16_div2() for fixed-point division
by 2 and fp_16_16_to_int_ceil() for ceiling conversion to integer,
cleanly separating chroma subsampling from fixed-point to integer
conversion (Jani)
Signed-off-by: Vidya Srinivas <vidya.srinivas@intel.com>
+ /mt/dim checkpatch 4c59525db84aca677fd9f052e662912ad9d88448 drm-intel
4419f68f1c30 drm/i915/display: Use ceiling division for NV12 UV surface offset calculation
-:52: CHECK:LINE_SPACING: Please don't use multiple blank lines
#52: FILE: drivers/gpu/drm/i915/display/skl_universal_plane.c:2129:
+
total: 0 errors, 0 warnings, 1 checks, 39 lines checked
^ permalink raw reply [flat|nested] 22+ messages in thread
* ✓ CI.KUnit: success for : drm/i915/display: Use ceiling division for NV12 UV surface offset calculation (rev3)
2026-04-11 17:15 [PATCH] [RFC]: drm/i915/display: Use ceiling division for NV12 UV surface offset calculation Vidya Srinivas
` (9 preceding siblings ...)
2026-04-15 17:09 ` ✗ CI.checkpatch: warning for : drm/i915/display: Use ceiling division for NV12 UV surface offset calculation (rev3) Patchwork
@ 2026-04-15 17:11 ` Patchwork
2026-04-15 18:08 ` ✓ Xe.CI.BAT: " Patchwork
2026-04-15 20:00 ` ✗ Xe.CI.FULL: failure " Patchwork
12 siblings, 0 replies; 22+ messages in thread
From: Patchwork @ 2026-04-15 17:11 UTC (permalink / raw)
To: Srinivas, Vidya; +Cc: intel-xe
== Series Details ==
Series: : drm/i915/display: Use ceiling division for NV12 UV surface offset calculation (rev3)
URL : https://patchwork.freedesktop.org/series/164739/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[17:09:47] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[17:09:52] 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
[17:10:23] Starting KUnit Kernel (1/1)...
[17:10:23] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[17:10:23] ================== guc_buf (11 subtests) ===================
[17:10:23] [PASSED] test_smallest
[17:10:23] [PASSED] test_largest
[17:10:23] [PASSED] test_granular
[17:10:23] [PASSED] test_unique
[17:10:23] [PASSED] test_overlap
[17:10:23] [PASSED] test_reusable
[17:10:23] [PASSED] test_too_big
[17:10:23] [PASSED] test_flush
[17:10:23] [PASSED] test_lookup
[17:10:23] [PASSED] test_data
[17:10:23] [PASSED] test_class
[17:10:23] ===================== [PASSED] guc_buf =====================
[17:10:23] =================== guc_dbm (7 subtests) ===================
[17:10:23] [PASSED] test_empty
[17:10:23] [PASSED] test_default
[17:10:23] ======================== test_size ========================
[17:10:23] [PASSED] 4
[17:10:23] [PASSED] 8
[17:10:23] [PASSED] 32
[17:10:23] [PASSED] 256
[17:10:23] ==================== [PASSED] test_size ====================
[17:10:23] ======================= test_reuse ========================
[17:10:23] [PASSED] 4
[17:10:23] [PASSED] 8
[17:10:23] [PASSED] 32
[17:10:23] [PASSED] 256
[17:10:23] =================== [PASSED] test_reuse ====================
[17:10:23] =================== test_range_overlap ====================
[17:10:23] [PASSED] 4
[17:10:23] [PASSED] 8
[17:10:23] [PASSED] 32
[17:10:23] [PASSED] 256
[17:10:23] =============== [PASSED] test_range_overlap ================
[17:10:23] =================== test_range_compact ====================
[17:10:23] [PASSED] 4
[17:10:23] [PASSED] 8
[17:10:23] [PASSED] 32
[17:10:23] [PASSED] 256
[17:10:23] =============== [PASSED] test_range_compact ================
[17:10:23] ==================== test_range_spare =====================
[17:10:23] [PASSED] 4
[17:10:23] [PASSED] 8
[17:10:23] [PASSED] 32
[17:10:23] [PASSED] 256
[17:10:23] ================ [PASSED] test_range_spare =================
[17:10:23] ===================== [PASSED] guc_dbm =====================
[17:10:23] =================== guc_idm (6 subtests) ===================
[17:10:23] [PASSED] bad_init
[17:10:23] [PASSED] no_init
[17:10:23] [PASSED] init_fini
[17:10:23] [PASSED] check_used
[17:10:23] [PASSED] check_quota
[17:10:23] [PASSED] check_all
[17:10:23] ===================== [PASSED] guc_idm =====================
[17:10:23] ================== no_relay (3 subtests) ===================
[17:10:23] [PASSED] xe_drops_guc2pf_if_not_ready
[17:10:23] [PASSED] xe_drops_guc2vf_if_not_ready
[17:10:23] [PASSED] xe_rejects_send_if_not_ready
[17:10:23] ==================== [PASSED] no_relay =====================
[17:10:23] ================== pf_relay (14 subtests) ==================
[17:10:23] [PASSED] pf_rejects_guc2pf_too_short
[17:10:23] [PASSED] pf_rejects_guc2pf_too_long
[17:10:23] [PASSED] pf_rejects_guc2pf_no_payload
[17:10:23] [PASSED] pf_fails_no_payload
[17:10:23] [PASSED] pf_fails_bad_origin
[17:10:23] [PASSED] pf_fails_bad_type
[17:10:23] [PASSED] pf_txn_reports_error
[17:10:23] [PASSED] pf_txn_sends_pf2guc
[17:10:23] [PASSED] pf_sends_pf2guc
[17:10:23] [SKIPPED] pf_loopback_nop
[17:10:23] [SKIPPED] pf_loopback_echo
[17:10:23] [SKIPPED] pf_loopback_fail
[17:10:23] [SKIPPED] pf_loopback_busy
[17:10:23] [SKIPPED] pf_loopback_retry
[17:10:23] ==================== [PASSED] pf_relay =====================
[17:10:23] ================== vf_relay (3 subtests) ===================
[17:10:23] [PASSED] vf_rejects_guc2vf_too_short
[17:10:23] [PASSED] vf_rejects_guc2vf_too_long
[17:10:23] [PASSED] vf_rejects_guc2vf_no_payload
[17:10:23] ==================== [PASSED] vf_relay =====================
[17:10:23] ================ pf_gt_config (9 subtests) =================
[17:10:23] [PASSED] fair_contexts_1vf
[17:10:23] [PASSED] fair_doorbells_1vf
[17:10:23] [PASSED] fair_ggtt_1vf
[17:10:23] ====================== fair_vram_1vf ======================
[17:10:23] [PASSED] 3.50 GiB
[17:10:23] [PASSED] 11.5 GiB
[17:10:23] [PASSED] 15.5 GiB
[17:10:23] [PASSED] 31.5 GiB
[17:10:23] [PASSED] 63.5 GiB
[17:10:23] [PASSED] 1.91 GiB
[17:10:23] ================== [PASSED] fair_vram_1vf ==================
[17:10:23] ================ fair_vram_1vf_admin_only =================
[17:10:23] [PASSED] 3.50 GiB
[17:10:23] [PASSED] 11.5 GiB
[17:10:23] [PASSED] 15.5 GiB
[17:10:23] [PASSED] 31.5 GiB
[17:10:23] [PASSED] 63.5 GiB
[17:10:23] [PASSED] 1.91 GiB
[17:10:23] ============ [PASSED] fair_vram_1vf_admin_only =============
[17:10:23] ====================== fair_contexts ======================
[17:10:23] [PASSED] 1 VF
[17:10:23] [PASSED] 2 VFs
[17:10:23] [PASSED] 3 VFs
[17:10:23] [PASSED] 4 VFs
[17:10:23] [PASSED] 5 VFs
[17:10:23] [PASSED] 6 VFs
[17:10:23] [PASSED] 7 VFs
[17:10:23] [PASSED] 8 VFs
[17:10:23] [PASSED] 9 VFs
[17:10:23] [PASSED] 10 VFs
[17:10:23] [PASSED] 11 VFs
[17:10:23] [PASSED] 12 VFs
[17:10:23] [PASSED] 13 VFs
[17:10:23] [PASSED] 14 VFs
[17:10:23] [PASSED] 15 VFs
[17:10:23] [PASSED] 16 VFs
[17:10:23] [PASSED] 17 VFs
[17:10:23] [PASSED] 18 VFs
[17:10:23] [PASSED] 19 VFs
[17:10:23] [PASSED] 20 VFs
[17:10:23] [PASSED] 21 VFs
[17:10:23] [PASSED] 22 VFs
[17:10:23] [PASSED] 23 VFs
[17:10:23] [PASSED] 24 VFs
[17:10:23] [PASSED] 25 VFs
[17:10:23] [PASSED] 26 VFs
[17:10:23] [PASSED] 27 VFs
[17:10:23] [PASSED] 28 VFs
[17:10:23] [PASSED] 29 VFs
[17:10:23] [PASSED] 30 VFs
[17:10:23] [PASSED] 31 VFs
[17:10:23] [PASSED] 32 VFs
[17:10:23] [PASSED] 33 VFs
[17:10:23] [PASSED] 34 VFs
[17:10:23] [PASSED] 35 VFs
[17:10:23] [PASSED] 36 VFs
[17:10:23] [PASSED] 37 VFs
[17:10:23] [PASSED] 38 VFs
[17:10:23] [PASSED] 39 VFs
[17:10:23] [PASSED] 40 VFs
[17:10:23] [PASSED] 41 VFs
[17:10:23] [PASSED] 42 VFs
[17:10:23] [PASSED] 43 VFs
[17:10:23] [PASSED] 44 VFs
[17:10:23] [PASSED] 45 VFs
[17:10:23] [PASSED] 46 VFs
[17:10:23] [PASSED] 47 VFs
[17:10:23] [PASSED] 48 VFs
[17:10:23] [PASSED] 49 VFs
[17:10:23] [PASSED] 50 VFs
[17:10:23] [PASSED] 51 VFs
[17:10:23] [PASSED] 52 VFs
[17:10:23] [PASSED] 53 VFs
[17:10:23] [PASSED] 54 VFs
[17:10:23] [PASSED] 55 VFs
[17:10:23] [PASSED] 56 VFs
[17:10:23] [PASSED] 57 VFs
[17:10:23] [PASSED] 58 VFs
[17:10:23] [PASSED] 59 VFs
[17:10:23] [PASSED] 60 VFs
[17:10:23] [PASSED] 61 VFs
[17:10:23] [PASSED] 62 VFs
[17:10:23] [PASSED] 63 VFs
[17:10:23] ================== [PASSED] fair_contexts ==================
[17:10:23] ===================== fair_doorbells ======================
[17:10:23] [PASSED] 1 VF
[17:10:23] [PASSED] 2 VFs
[17:10:23] [PASSED] 3 VFs
[17:10:23] [PASSED] 4 VFs
[17:10:23] [PASSED] 5 VFs
[17:10:23] [PASSED] 6 VFs
[17:10:23] [PASSED] 7 VFs
[17:10:23] [PASSED] 8 VFs
[17:10:23] [PASSED] 9 VFs
[17:10:23] [PASSED] 10 VFs
[17:10:23] [PASSED] 11 VFs
[17:10:23] [PASSED] 12 VFs
[17:10:23] [PASSED] 13 VFs
[17:10:23] [PASSED] 14 VFs
[17:10:23] [PASSED] 15 VFs
[17:10:23] [PASSED] 16 VFs
[17:10:23] [PASSED] 17 VFs
[17:10:23] [PASSED] 18 VFs
[17:10:23] [PASSED] 19 VFs
[17:10:23] [PASSED] 20 VFs
[17:10:23] [PASSED] 21 VFs
[17:10:23] [PASSED] 22 VFs
[17:10:23] [PASSED] 23 VFs
[17:10:23] [PASSED] 24 VFs
[17:10:23] [PASSED] 25 VFs
[17:10:23] [PASSED] 26 VFs
[17:10:23] [PASSED] 27 VFs
[17:10:23] [PASSED] 28 VFs
[17:10:23] [PASSED] 29 VFs
[17:10:23] [PASSED] 30 VFs
[17:10:23] [PASSED] 31 VFs
[17:10:23] [PASSED] 32 VFs
[17:10:23] [PASSED] 33 VFs
[17:10:23] [PASSED] 34 VFs
[17:10:23] [PASSED] 35 VFs
[17:10:23] [PASSED] 36 VFs
[17:10:23] [PASSED] 37 VFs
[17:10:23] [PASSED] 38 VFs
[17:10:23] [PASSED] 39 VFs
[17:10:23] [PASSED] 40 VFs
[17:10:23] [PASSED] 41 VFs
[17:10:23] [PASSED] 42 VFs
[17:10:23] [PASSED] 43 VFs
[17:10:23] [PASSED] 44 VFs
[17:10:23] [PASSED] 45 VFs
[17:10:23] [PASSED] 46 VFs
[17:10:23] [PASSED] 47 VFs
[17:10:23] [PASSED] 48 VFs
[17:10:23] [PASSED] 49 VFs
[17:10:23] [PASSED] 50 VFs
[17:10:23] [PASSED] 51 VFs
[17:10:23] [PASSED] 52 VFs
[17:10:23] [PASSED] 53 VFs
[17:10:23] [PASSED] 54 VFs
[17:10:23] [PASSED] 55 VFs
[17:10:23] [PASSED] 56 VFs
[17:10:23] [PASSED] 57 VFs
[17:10:23] [PASSED] 58 VFs
[17:10:23] [PASSED] 59 VFs
[17:10:23] [PASSED] 60 VFs
[17:10:23] [PASSED] 61 VFs
[17:10:23] [PASSED] 62 VFs
[17:10:23] [PASSED] 63 VFs
[17:10:23] ================= [PASSED] fair_doorbells ==================
[17:10:23] ======================== fair_ggtt ========================
[17:10:23] [PASSED] 1 VF
[17:10:23] [PASSED] 2 VFs
[17:10:23] [PASSED] 3 VFs
[17:10:23] [PASSED] 4 VFs
[17:10:23] [PASSED] 5 VFs
[17:10:23] [PASSED] 6 VFs
[17:10:23] [PASSED] 7 VFs
[17:10:23] [PASSED] 8 VFs
[17:10:23] [PASSED] 9 VFs
[17:10:23] [PASSED] 10 VFs
[17:10:23] [PASSED] 11 VFs
[17:10:23] [PASSED] 12 VFs
[17:10:23] [PASSED] 13 VFs
[17:10:23] [PASSED] 14 VFs
[17:10:23] [PASSED] 15 VFs
[17:10:23] [PASSED] 16 VFs
[17:10:23] [PASSED] 17 VFs
[17:10:23] [PASSED] 18 VFs
[17:10:23] [PASSED] 19 VFs
[17:10:23] [PASSED] 20 VFs
[17:10:23] [PASSED] 21 VFs
[17:10:23] [PASSED] 22 VFs
[17:10:23] [PASSED] 23 VFs
[17:10:23] [PASSED] 24 VFs
[17:10:23] [PASSED] 25 VFs
[17:10:23] [PASSED] 26 VFs
[17:10:23] [PASSED] 27 VFs
[17:10:23] [PASSED] 28 VFs
[17:10:23] [PASSED] 29 VFs
[17:10:23] [PASSED] 30 VFs
[17:10:23] [PASSED] 31 VFs
[17:10:23] [PASSED] 32 VFs
[17:10:23] [PASSED] 33 VFs
[17:10:23] [PASSED] 34 VFs
[17:10:23] [PASSED] 35 VFs
[17:10:23] [PASSED] 36 VFs
[17:10:23] [PASSED] 37 VFs
[17:10:23] [PASSED] 38 VFs
[17:10:23] [PASSED] 39 VFs
[17:10:23] [PASSED] 40 VFs
[17:10:23] [PASSED] 41 VFs
[17:10:23] [PASSED] 42 VFs
[17:10:23] [PASSED] 43 VFs
[17:10:23] [PASSED] 44 VFs
[17:10:23] [PASSED] 45 VFs
[17:10:23] [PASSED] 46 VFs
[17:10:23] [PASSED] 47 VFs
[17:10:23] [PASSED] 48 VFs
[17:10:23] [PASSED] 49 VFs
[17:10:23] [PASSED] 50 VFs
[17:10:23] [PASSED] 51 VFs
[17:10:23] [PASSED] 52 VFs
[17:10:23] [PASSED] 53 VFs
[17:10:23] [PASSED] 54 VFs
[17:10:23] [PASSED] 55 VFs
[17:10:23] [PASSED] 56 VFs
[17:10:23] [PASSED] 57 VFs
[17:10:23] [PASSED] 58 VFs
[17:10:23] [PASSED] 59 VFs
[17:10:23] [PASSED] 60 VFs
[17:10:23] [PASSED] 61 VFs
[17:10:23] [PASSED] 62 VFs
[17:10:23] [PASSED] 63 VFs
[17:10:23] ==================== [PASSED] fair_ggtt ====================
[17:10:23] ======================== fair_vram ========================
[17:10:23] [PASSED] 1 VF
[17:10:23] [PASSED] 2 VFs
[17:10:23] [PASSED] 3 VFs
[17:10:23] [PASSED] 4 VFs
[17:10:23] [PASSED] 5 VFs
[17:10:23] [PASSED] 6 VFs
[17:10:23] [PASSED] 7 VFs
[17:10:23] [PASSED] 8 VFs
[17:10:23] [PASSED] 9 VFs
[17:10:23] [PASSED] 10 VFs
[17:10:23] [PASSED] 11 VFs
[17:10:23] [PASSED] 12 VFs
[17:10:23] [PASSED] 13 VFs
[17:10:23] [PASSED] 14 VFs
[17:10:23] [PASSED] 15 VFs
[17:10:23] [PASSED] 16 VFs
[17:10:23] [PASSED] 17 VFs
[17:10:23] [PASSED] 18 VFs
[17:10:23] [PASSED] 19 VFs
[17:10:23] [PASSED] 20 VFs
[17:10:23] [PASSED] 21 VFs
[17:10:23] [PASSED] 22 VFs
[17:10:23] [PASSED] 23 VFs
[17:10:23] [PASSED] 24 VFs
[17:10:23] [PASSED] 25 VFs
[17:10:23] [PASSED] 26 VFs
[17:10:23] [PASSED] 27 VFs
[17:10:23] [PASSED] 28 VFs
[17:10:23] [PASSED] 29 VFs
[17:10:23] [PASSED] 30 VFs
[17:10:23] [PASSED] 31 VFs
[17:10:23] [PASSED] 32 VFs
[17:10:23] [PASSED] 33 VFs
[17:10:23] [PASSED] 34 VFs
[17:10:23] [PASSED] 35 VFs
[17:10:23] [PASSED] 36 VFs
[17:10:23] [PASSED] 37 VFs
[17:10:23] [PASSED] 38 VFs
[17:10:23] [PASSED] 39 VFs
[17:10:23] [PASSED] 40 VFs
[17:10:23] [PASSED] 41 VFs
[17:10:23] [PASSED] 42 VFs
[17:10:23] [PASSED] 43 VFs
[17:10:23] [PASSED] 44 VFs
[17:10:23] [PASSED] 45 VFs
[17:10:23] [PASSED] 46 VFs
[17:10:23] [PASSED] 47 VFs
[17:10:23] [PASSED] 48 VFs
[17:10:23] [PASSED] 49 VFs
[17:10:23] [PASSED] 50 VFs
[17:10:23] [PASSED] 51 VFs
[17:10:23] [PASSED] 52 VFs
[17:10:23] [PASSED] 53 VFs
[17:10:23] [PASSED] 54 VFs
[17:10:23] [PASSED] 55 VFs
[17:10:23] [PASSED] 56 VFs
[17:10:23] [PASSED] 57 VFs
[17:10:23] [PASSED] 58 VFs
[17:10:23] [PASSED] 59 VFs
[17:10:23] [PASSED] 60 VFs
[17:10:23] [PASSED] 61 VFs
[17:10:23] [PASSED] 62 VFs
[17:10:23] [PASSED] 63 VFs
[17:10:23] ==================== [PASSED] fair_vram ====================
[17:10:23] ================== [PASSED] pf_gt_config ===================
[17:10:23] ===================== lmtt (1 subtest) =====================
[17:10:23] ======================== test_ops =========================
[17:10:23] [PASSED] 2-level
[17:10:23] [PASSED] multi-level
[17:10:23] ==================== [PASSED] test_ops =====================
[17:10:23] ====================== [PASSED] lmtt =======================
[17:10:23] ================= pf_service (11 subtests) =================
[17:10:23] [PASSED] pf_negotiate_any
[17:10:23] [PASSED] pf_negotiate_base_match
[17:10:23] [PASSED] pf_negotiate_base_newer
[17:10:23] [PASSED] pf_negotiate_base_next
[17:10:23] [SKIPPED] pf_negotiate_base_older
[17:10:23] [PASSED] pf_negotiate_base_prev
[17:10:23] [PASSED] pf_negotiate_latest_match
[17:10:23] [PASSED] pf_negotiate_latest_newer
[17:10:23] [PASSED] pf_negotiate_latest_next
[17:10:23] [SKIPPED] pf_negotiate_latest_older
[17:10:23] [SKIPPED] pf_negotiate_latest_prev
[17:10:23] =================== [PASSED] pf_service ====================
[17:10:23] ================= xe_guc_g2g (2 subtests) ==================
[17:10:23] ============== xe_live_guc_g2g_kunit_default ==============
[17:10:23] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[17:10:23] ============== xe_live_guc_g2g_kunit_allmem ===============
[17:10:23] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[17:10:23] =================== [SKIPPED] xe_guc_g2g ===================
[17:10:23] =================== xe_mocs (2 subtests) ===================
[17:10:23] ================ xe_live_mocs_kernel_kunit ================
[17:10:23] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[17:10:23] ================ xe_live_mocs_reset_kunit =================
[17:10:23] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[17:10:23] ==================== [SKIPPED] xe_mocs =====================
[17:10:23] ================= xe_migrate (2 subtests) ==================
[17:10:23] ================= xe_migrate_sanity_kunit =================
[17:10:23] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[17:10:23] ================== xe_validate_ccs_kunit ==================
[17:10:23] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[17:10:23] =================== [SKIPPED] xe_migrate ===================
[17:10:23] ================== xe_dma_buf (1 subtest) ==================
[17:10:23] ==================== xe_dma_buf_kunit =====================
[17:10:23] ================ [SKIPPED] xe_dma_buf_kunit ================
[17:10:23] =================== [SKIPPED] xe_dma_buf ===================
[17:10:23] ================= xe_bo_shrink (1 subtest) =================
[17:10:23] =================== xe_bo_shrink_kunit ====================
[17:10:23] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[17:10:23] ================== [SKIPPED] xe_bo_shrink ==================
[17:10:23] ==================== xe_bo (2 subtests) ====================
[17:10:23] ================== xe_ccs_migrate_kunit ===================
[17:10:23] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[17:10:23] ==================== xe_bo_evict_kunit ====================
[17:10:23] =============== [SKIPPED] xe_bo_evict_kunit ================
[17:10:23] ===================== [SKIPPED] xe_bo ======================
[17:10:23] ==================== args (13 subtests) ====================
[17:10:23] [PASSED] count_args_test
[17:10:23] [PASSED] call_args_example
[17:10:23] [PASSED] call_args_test
[17:10:23] [PASSED] drop_first_arg_example
[17:10:23] [PASSED] drop_first_arg_test
[17:10:23] [PASSED] first_arg_example
[17:10:23] [PASSED] first_arg_test
[17:10:23] [PASSED] last_arg_example
[17:10:23] [PASSED] last_arg_test
[17:10:23] [PASSED] pick_arg_example
[17:10:23] [PASSED] if_args_example
[17:10:23] [PASSED] if_args_test
[17:10:23] [PASSED] sep_comma_example
[17:10:23] ====================== [PASSED] args =======================
[17:10:23] =================== xe_pci (3 subtests) ====================
[17:10:23] ==================== check_graphics_ip ====================
[17:10:23] [PASSED] 12.00 Xe_LP
[17:10:23] [PASSED] 12.10 Xe_LP+
[17:10:23] [PASSED] 12.55 Xe_HPG
[17:10:23] [PASSED] 12.60 Xe_HPC
[17:10:23] [PASSED] 12.70 Xe_LPG
[17:10:23] [PASSED] 12.71 Xe_LPG
[17:10:23] [PASSED] 12.74 Xe_LPG+
[17:10:23] [PASSED] 20.01 Xe2_HPG
[17:10:23] [PASSED] 20.02 Xe2_HPG
[17:10:23] [PASSED] 20.04 Xe2_LPG
[17:10:23] [PASSED] 30.00 Xe3_LPG
[17:10:23] [PASSED] 30.01 Xe3_LPG
[17:10:23] [PASSED] 30.03 Xe3_LPG
[17:10:23] [PASSED] 30.04 Xe3_LPG
[17:10:23] [PASSED] 30.05 Xe3_LPG
[17:10:23] [PASSED] 35.10 Xe3p_LPG
[17:10:23] [PASSED] 35.11 Xe3p_XPC
[17:10:23] ================ [PASSED] check_graphics_ip ================
[17:10:23] ===================== check_media_ip ======================
[17:10:23] [PASSED] 12.00 Xe_M
[17:10:23] [PASSED] 12.55 Xe_HPM
[17:10:23] [PASSED] 13.00 Xe_LPM+
[17:10:23] [PASSED] 13.01 Xe2_HPM
[17:10:23] [PASSED] 20.00 Xe2_LPM
[17:10:23] [PASSED] 30.00 Xe3_LPM
[17:10:23] [PASSED] 30.02 Xe3_LPM
[17:10:23] [PASSED] 35.00 Xe3p_LPM
[17:10:23] [PASSED] 35.03 Xe3p_HPM
[17:10:23] ================= [PASSED] check_media_ip ==================
[17:10:23] =================== check_platform_desc ===================
[17:10:23] [PASSED] 0x9A60 (TIGERLAKE)
[17:10:23] [PASSED] 0x9A68 (TIGERLAKE)
[17:10:23] [PASSED] 0x9A70 (TIGERLAKE)
[17:10:23] [PASSED] 0x9A40 (TIGERLAKE)
[17:10:23] [PASSED] 0x9A49 (TIGERLAKE)
[17:10:23] [PASSED] 0x9A59 (TIGERLAKE)
[17:10:23] [PASSED] 0x9A78 (TIGERLAKE)
[17:10:23] [PASSED] 0x9AC0 (TIGERLAKE)
[17:10:23] [PASSED] 0x9AC9 (TIGERLAKE)
[17:10:23] [PASSED] 0x9AD9 (TIGERLAKE)
[17:10:23] [PASSED] 0x9AF8 (TIGERLAKE)
[17:10:23] [PASSED] 0x4C80 (ROCKETLAKE)
[17:10:23] [PASSED] 0x4C8A (ROCKETLAKE)
[17:10:23] [PASSED] 0x4C8B (ROCKETLAKE)
[17:10:23] [PASSED] 0x4C8C (ROCKETLAKE)
[17:10:23] [PASSED] 0x4C90 (ROCKETLAKE)
[17:10:23] [PASSED] 0x4C9A (ROCKETLAKE)
[17:10:23] [PASSED] 0x4680 (ALDERLAKE_S)
[17:10:23] [PASSED] 0x4682 (ALDERLAKE_S)
[17:10:23] [PASSED] 0x4688 (ALDERLAKE_S)
[17:10:23] [PASSED] 0x468A (ALDERLAKE_S)
[17:10:23] [PASSED] 0x468B (ALDERLAKE_S)
[17:10:23] [PASSED] 0x4690 (ALDERLAKE_S)
[17:10:23] [PASSED] 0x4692 (ALDERLAKE_S)
[17:10:23] [PASSED] 0x4693 (ALDERLAKE_S)
[17:10:23] [PASSED] 0x46A0 (ALDERLAKE_P)
[17:10:23] [PASSED] 0x46A1 (ALDERLAKE_P)
[17:10:23] [PASSED] 0x46A2 (ALDERLAKE_P)
[17:10:23] [PASSED] 0x46A3 (ALDERLAKE_P)
[17:10:23] [PASSED] 0x46A6 (ALDERLAKE_P)
[17:10:23] [PASSED] 0x46A8 (ALDERLAKE_P)
[17:10:23] [PASSED] 0x46AA (ALDERLAKE_P)
[17:10:23] [PASSED] 0x462A (ALDERLAKE_P)
[17:10:23] [PASSED] 0x4626 (ALDERLAKE_P)
[17:10:23] [PASSED] 0x4628 (ALDERLAKE_P)
[17:10:23] [PASSED] 0x46B0 (ALDERLAKE_P)
[17:10:23] [PASSED] 0x46B1 (ALDERLAKE_P)
[17:10:23] [PASSED] 0x46B2 (ALDERLAKE_P)
[17:10:23] [PASSED] 0x46B3 (ALDERLAKE_P)
[17:10:23] [PASSED] 0x46C0 (ALDERLAKE_P)
[17:10:23] [PASSED] 0x46C1 (ALDERLAKE_P)
[17:10:23] [PASSED] 0x46C2 (ALDERLAKE_P)
[17:10:23] [PASSED] 0x46C3 (ALDERLAKE_P)
[17:10:23] [PASSED] 0x46D0 (ALDERLAKE_N)
[17:10:23] [PASSED] 0x46D1 (ALDERLAKE_N)
[17:10:23] [PASSED] 0x46D2 (ALDERLAKE_N)
[17:10:23] [PASSED] 0x46D3 (ALDERLAKE_N)
[17:10:23] [PASSED] 0x46D4 (ALDERLAKE_N)
[17:10:23] [PASSED] 0xA721 (ALDERLAKE_P)
[17:10:23] [PASSED] 0xA7A1 (ALDERLAKE_P)
[17:10:23] [PASSED] 0xA7A9 (ALDERLAKE_P)
[17:10:23] [PASSED] 0xA7AC (ALDERLAKE_P)
[17:10:23] [PASSED] 0xA7AD (ALDERLAKE_P)
[17:10:23] [PASSED] 0xA720 (ALDERLAKE_P)
[17:10:23] [PASSED] 0xA7A0 (ALDERLAKE_P)
[17:10:23] [PASSED] 0xA7A8 (ALDERLAKE_P)
[17:10:23] [PASSED] 0xA7AA (ALDERLAKE_P)
[17:10:23] [PASSED] 0xA7AB (ALDERLAKE_P)
[17:10:23] [PASSED] 0xA780 (ALDERLAKE_S)
[17:10:23] [PASSED] 0xA781 (ALDERLAKE_S)
[17:10:23] [PASSED] 0xA782 (ALDERLAKE_S)
[17:10:23] [PASSED] 0xA783 (ALDERLAKE_S)
[17:10:23] [PASSED] 0xA788 (ALDERLAKE_S)
[17:10:23] [PASSED] 0xA789 (ALDERLAKE_S)
[17:10:23] [PASSED] 0xA78A (ALDERLAKE_S)
[17:10:23] [PASSED] 0xA78B (ALDERLAKE_S)
[17:10:23] [PASSED] 0x4905 (DG1)
[17:10:23] [PASSED] 0x4906 (DG1)
[17:10:23] [PASSED] 0x4907 (DG1)
[17:10:23] [PASSED] 0x4908 (DG1)
[17:10:23] [PASSED] 0x4909 (DG1)
[17:10:23] [PASSED] 0x56C0 (DG2)
[17:10:23] [PASSED] 0x56C2 (DG2)
[17:10:23] [PASSED] 0x56C1 (DG2)
[17:10:23] [PASSED] 0x7D51 (METEORLAKE)
[17:10:23] [PASSED] 0x7DD1 (METEORLAKE)
[17:10:23] [PASSED] 0x7D41 (METEORLAKE)
[17:10:23] [PASSED] 0x7D67 (METEORLAKE)
[17:10:23] [PASSED] 0xB640 (METEORLAKE)
[17:10:23] [PASSED] 0x56A0 (DG2)
[17:10:23] [PASSED] 0x56A1 (DG2)
[17:10:23] [PASSED] 0x56A2 (DG2)
[17:10:23] [PASSED] 0x56BE (DG2)
[17:10:23] [PASSED] 0x56BF (DG2)
[17:10:23] [PASSED] 0x5690 (DG2)
[17:10:23] [PASSED] 0x5691 (DG2)
[17:10:23] [PASSED] 0x5692 (DG2)
[17:10:23] [PASSED] 0x56A5 (DG2)
[17:10:23] [PASSED] 0x56A6 (DG2)
[17:10:23] [PASSED] 0x56B0 (DG2)
[17:10:23] [PASSED] 0x56B1 (DG2)
[17:10:23] [PASSED] 0x56BA (DG2)
[17:10:23] [PASSED] 0x56BB (DG2)
[17:10:23] [PASSED] 0x56BC (DG2)
[17:10:23] [PASSED] 0x56BD (DG2)
[17:10:23] [PASSED] 0x5693 (DG2)
[17:10:23] [PASSED] 0x5694 (DG2)
[17:10:23] [PASSED] 0x5695 (DG2)
[17:10:23] [PASSED] 0x56A3 (DG2)
[17:10:23] [PASSED] 0x56A4 (DG2)
[17:10:23] [PASSED] 0x56B2 (DG2)
[17:10:23] [PASSED] 0x56B3 (DG2)
[17:10:23] [PASSED] 0x5696 (DG2)
[17:10:23] [PASSED] 0x5697 (DG2)
[17:10:23] [PASSED] 0xB69 (PVC)
[17:10:23] [PASSED] 0xB6E (PVC)
[17:10:23] [PASSED] 0xBD4 (PVC)
[17:10:23] [PASSED] 0xBD5 (PVC)
[17:10:23] [PASSED] 0xBD6 (PVC)
[17:10:23] [PASSED] 0xBD7 (PVC)
[17:10:23] [PASSED] 0xBD8 (PVC)
[17:10:23] [PASSED] 0xBD9 (PVC)
[17:10:23] [PASSED] 0xBDA (PVC)
[17:10:23] [PASSED] 0xBDB (PVC)
[17:10:23] [PASSED] 0xBE0 (PVC)
[17:10:23] [PASSED] 0xBE1 (PVC)
[17:10:23] [PASSED] 0xBE5 (PVC)
[17:10:23] [PASSED] 0x7D40 (METEORLAKE)
[17:10:23] [PASSED] 0x7D45 (METEORLAKE)
[17:10:23] [PASSED] 0x7D55 (METEORLAKE)
[17:10:23] [PASSED] 0x7D60 (METEORLAKE)
[17:10:23] [PASSED] 0x7DD5 (METEORLAKE)
[17:10:23] [PASSED] 0x6420 (LUNARLAKE)
[17:10:23] [PASSED] 0x64A0 (LUNARLAKE)
[17:10:23] [PASSED] 0x64B0 (LUNARLAKE)
[17:10:23] [PASSED] 0xE202 (BATTLEMAGE)
[17:10:23] [PASSED] 0xE209 (BATTLEMAGE)
[17:10:23] [PASSED] 0xE20B (BATTLEMAGE)
[17:10:23] [PASSED] 0xE20C (BATTLEMAGE)
[17:10:23] [PASSED] 0xE20D (BATTLEMAGE)
[17:10:23] [PASSED] 0xE210 (BATTLEMAGE)
[17:10:23] [PASSED] 0xE211 (BATTLEMAGE)
[17:10:23] [PASSED] 0xE212 (BATTLEMAGE)
[17:10:23] [PASSED] 0xE216 (BATTLEMAGE)
[17:10:23] [PASSED] 0xE220 (BATTLEMAGE)
[17:10:23] [PASSED] 0xE221 (BATTLEMAGE)
[17:10:23] [PASSED] 0xE222 (BATTLEMAGE)
[17:10:23] [PASSED] 0xE223 (BATTLEMAGE)
[17:10:23] [PASSED] 0xB080 (PANTHERLAKE)
[17:10:23] [PASSED] 0xB081 (PANTHERLAKE)
[17:10:23] [PASSED] 0xB082 (PANTHERLAKE)
[17:10:23] [PASSED] 0xB083 (PANTHERLAKE)
[17:10:23] [PASSED] 0xB084 (PANTHERLAKE)
[17:10:23] [PASSED] 0xB085 (PANTHERLAKE)
[17:10:23] [PASSED] 0xB086 (PANTHERLAKE)
[17:10:23] [PASSED] 0xB087 (PANTHERLAKE)
[17:10:23] [PASSED] 0xB08F (PANTHERLAKE)
[17:10:23] [PASSED] 0xB090 (PANTHERLAKE)
[17:10:23] [PASSED] 0xB0A0 (PANTHERLAKE)
[17:10:23] [PASSED] 0xB0B0 (PANTHERLAKE)
[17:10:23] [PASSED] 0xFD80 (PANTHERLAKE)
[17:10:23] [PASSED] 0xFD81 (PANTHERLAKE)
[17:10:23] [PASSED] 0xD740 (NOVALAKE_S)
[17:10:23] [PASSED] 0xD741 (NOVALAKE_S)
[17:10:23] [PASSED] 0xD742 (NOVALAKE_S)
[17:10:23] [PASSED] 0xD743 (NOVALAKE_S)
[17:10:23] [PASSED] 0xD744 (NOVALAKE_S)
[17:10:23] [PASSED] 0xD745 (NOVALAKE_S)
[17:10:23] [PASSED] 0x674C (CRESCENTISLAND)
[17:10:23] [PASSED] 0xD750 (NOVALAKE_P)
[17:10:23] [PASSED] 0xD751 (NOVALAKE_P)
[17:10:23] [PASSED] 0xD752 (NOVALAKE_P)
[17:10:23] [PASSED] 0xD753 (NOVALAKE_P)
[17:10:23] [PASSED] 0xD754 (NOVALAKE_P)
[17:10:23] [PASSED] 0xD755 (NOVALAKE_P)
[17:10:23] [PASSED] 0xD756 (NOVALAKE_P)
[17:10:23] [PASSED] 0xD757 (NOVALAKE_P)
[17:10:23] [PASSED] 0xD75F (NOVALAKE_P)
[17:10:23] =============== [PASSED] check_platform_desc ===============
[17:10:23] ===================== [PASSED] xe_pci ======================
[17:10:23] =================== xe_rtp (2 subtests) ====================
[17:10:23] =============== xe_rtp_process_to_sr_tests ================
[17:10:23] [PASSED] coalesce-same-reg
[17:10:23] [PASSED] no-match-no-add
[17:10:23] [PASSED] match-or
[17:10:23] [PASSED] match-or-xfail
[17:10:23] [PASSED] no-match-no-add-multiple-rules
[17:10:23] [PASSED] two-regs-two-entries
[17:10:23] [PASSED] clr-one-set-other
[17:10:23] [PASSED] set-field
[17:10:23] [PASSED] conflict-duplicate
stty: 'standard input': Inappropriate ioctl for device
[17:10:23] [PASSED] conflict-not-disjoint
[17:10:23] [PASSED] conflict-reg-type
[17:10:23] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[17:10:23] ================== xe_rtp_process_tests ===================
[17:10:23] [PASSED] active1
[17:10:23] [PASSED] active2
[17:10:23] [PASSED] active-inactive
[17:10:23] [PASSED] inactive-active
[17:10:23] [PASSED] inactive-1st_or_active-inactive
[17:10:23] [PASSED] inactive-2nd_or_active-inactive
[17:10:23] [PASSED] inactive-last_or_active-inactive
[17:10:23] [PASSED] inactive-no_or_active-inactive
[17:10:23] ============== [PASSED] xe_rtp_process_tests ===============
[17:10:23] ===================== [PASSED] xe_rtp ======================
[17:10:23] ==================== xe_wa (1 subtest) =====================
[17:10:23] ======================== xe_wa_gt =========================
[17:10:23] [PASSED] TIGERLAKE B0
[17:10:23] [PASSED] DG1 A0
[17:10:23] [PASSED] DG1 B0
[17:10:23] [PASSED] ALDERLAKE_S A0
[17:10:23] [PASSED] ALDERLAKE_S B0
[17:10:23] [PASSED] ALDERLAKE_S C0
[17:10:23] [PASSED] ALDERLAKE_S D0
[17:10:23] [PASSED] ALDERLAKE_P A0
[17:10:23] [PASSED] ALDERLAKE_P B0
[17:10:23] [PASSED] ALDERLAKE_P C0
[17:10:23] [PASSED] ALDERLAKE_S RPLS D0
[17:10:23] [PASSED] ALDERLAKE_P RPLU E0
[17:10:23] [PASSED] DG2 G10 C0
[17:10:23] [PASSED] DG2 G11 B1
[17:10:23] [PASSED] DG2 G12 A1
[17:10:23] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[17:10:23] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[17:10:23] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[17:10:23] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[17:10:23] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[17:10:23] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[17:10:23] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[17:10:23] ==================== [PASSED] xe_wa_gt =====================
[17:10:23] ====================== [PASSED] xe_wa ======================
[17:10:23] ============================================================
[17:10:23] Testing complete. Ran 597 tests: passed: 579, skipped: 18
[17:10:23] Elapsed time: 35.705s total, 4.198s configuring, 30.890s building, 0.600s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[17:10:23] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[17:10:25] 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
[17:10:49] Starting KUnit Kernel (1/1)...
[17:10:49] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[17:10:49] ============ drm_test_pick_cmdline (2 subtests) ============
[17:10:49] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[17:10:49] =============== drm_test_pick_cmdline_named ===============
[17:10:49] [PASSED] NTSC
[17:10:49] [PASSED] NTSC-J
[17:10:49] [PASSED] PAL
[17:10:49] [PASSED] PAL-M
[17:10:49] =========== [PASSED] drm_test_pick_cmdline_named ===========
[17:10:49] ============== [PASSED] drm_test_pick_cmdline ==============
[17:10:49] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[17:10:49] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[17:10:49] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[17:10:49] =========== drm_validate_clone_mode (2 subtests) ===========
[17:10:49] ============== drm_test_check_in_clone_mode ===============
[17:10:49] [PASSED] in_clone_mode
[17:10:49] [PASSED] not_in_clone_mode
[17:10:49] ========== [PASSED] drm_test_check_in_clone_mode ===========
[17:10:49] =============== drm_test_check_valid_clones ===============
[17:10:49] [PASSED] not_in_clone_mode
[17:10:49] [PASSED] valid_clone
[17:10:49] [PASSED] invalid_clone
[17:10:49] =========== [PASSED] drm_test_check_valid_clones ===========
[17:10:49] ============= [PASSED] drm_validate_clone_mode =============
[17:10:49] ============= drm_validate_modeset (1 subtest) =============
[17:10:49] [PASSED] drm_test_check_connector_changed_modeset
[17:10:49] ============== [PASSED] drm_validate_modeset ===============
[17:10:49] ====== drm_test_bridge_get_current_state (2 subtests) ======
[17:10:49] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[17:10:49] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[17:10:49] ======== [PASSED] drm_test_bridge_get_current_state ========
[17:10:49] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[17:10:49] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[17:10:49] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[17:10:49] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[17:10:49] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[17:10:49] ============== drm_bridge_alloc (2 subtests) ===============
[17:10:49] [PASSED] drm_test_drm_bridge_alloc_basic
[17:10:49] [PASSED] drm_test_drm_bridge_alloc_get_put
[17:10:49] ================ [PASSED] drm_bridge_alloc =================
[17:10:49] ============= drm_cmdline_parser (40 subtests) =============
[17:10:49] [PASSED] drm_test_cmdline_force_d_only
[17:10:49] [PASSED] drm_test_cmdline_force_D_only_dvi
[17:10:49] [PASSED] drm_test_cmdline_force_D_only_hdmi
[17:10:49] [PASSED] drm_test_cmdline_force_D_only_not_digital
[17:10:49] [PASSED] drm_test_cmdline_force_e_only
[17:10:49] [PASSED] drm_test_cmdline_res
[17:10:49] [PASSED] drm_test_cmdline_res_vesa
[17:10:49] [PASSED] drm_test_cmdline_res_vesa_rblank
[17:10:49] [PASSED] drm_test_cmdline_res_rblank
[17:10:49] [PASSED] drm_test_cmdline_res_bpp
[17:10:49] [PASSED] drm_test_cmdline_res_refresh
[17:10:49] [PASSED] drm_test_cmdline_res_bpp_refresh
[17:10:49] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[17:10:49] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[17:10:49] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[17:10:49] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[17:10:49] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[17:10:49] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[17:10:49] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[17:10:49] [PASSED] drm_test_cmdline_res_margins_force_on
[17:10:49] [PASSED] drm_test_cmdline_res_vesa_margins
[17:10:49] [PASSED] drm_test_cmdline_name
[17:10:49] [PASSED] drm_test_cmdline_name_bpp
[17:10:49] [PASSED] drm_test_cmdline_name_option
[17:10:49] [PASSED] drm_test_cmdline_name_bpp_option
[17:10:49] [PASSED] drm_test_cmdline_rotate_0
[17:10:49] [PASSED] drm_test_cmdline_rotate_90
[17:10:49] [PASSED] drm_test_cmdline_rotate_180
[17:10:49] [PASSED] drm_test_cmdline_rotate_270
[17:10:49] [PASSED] drm_test_cmdline_hmirror
[17:10:49] [PASSED] drm_test_cmdline_vmirror
[17:10:49] [PASSED] drm_test_cmdline_margin_options
[17:10:49] [PASSED] drm_test_cmdline_multiple_options
[17:10:49] [PASSED] drm_test_cmdline_bpp_extra_and_option
[17:10:49] [PASSED] drm_test_cmdline_extra_and_option
[17:10:49] [PASSED] drm_test_cmdline_freestanding_options
[17:10:49] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[17:10:49] [PASSED] drm_test_cmdline_panel_orientation
[17:10:49] ================ drm_test_cmdline_invalid =================
[17:10:49] [PASSED] margin_only
[17:10:49] [PASSED] interlace_only
[17:10:49] [PASSED] res_missing_x
[17:10:49] [PASSED] res_missing_y
[17:10:49] [PASSED] res_bad_y
[17:10:49] [PASSED] res_missing_y_bpp
[17:10:49] [PASSED] res_bad_bpp
[17:10:49] [PASSED] res_bad_refresh
[17:10:49] [PASSED] res_bpp_refresh_force_on_off
[17:10:49] [PASSED] res_invalid_mode
[17:10:49] [PASSED] res_bpp_wrong_place_mode
[17:10:49] [PASSED] name_bpp_refresh
[17:10:49] [PASSED] name_refresh
[17:10:49] [PASSED] name_refresh_wrong_mode
[17:10:49] [PASSED] name_refresh_invalid_mode
[17:10:49] [PASSED] rotate_multiple
[17:10:49] [PASSED] rotate_invalid_val
[17:10:49] [PASSED] rotate_truncated
[17:10:49] [PASSED] invalid_option
[17:10:49] [PASSED] invalid_tv_option
[17:10:49] [PASSED] truncated_tv_option
[17:10:49] ============ [PASSED] drm_test_cmdline_invalid =============
[17:10:49] =============== drm_test_cmdline_tv_options ===============
[17:10:49] [PASSED] NTSC
[17:10:49] [PASSED] NTSC_443
[17:10:49] [PASSED] NTSC_J
[17:10:49] [PASSED] PAL
[17:10:49] [PASSED] PAL_M
[17:10:49] [PASSED] PAL_N
[17:10:49] [PASSED] SECAM
[17:10:49] [PASSED] MONO_525
[17:10:49] [PASSED] MONO_625
[17:10:49] =========== [PASSED] drm_test_cmdline_tv_options ===========
[17:10:49] =============== [PASSED] drm_cmdline_parser ================
[17:10:49] ========== drmm_connector_hdmi_init (20 subtests) ==========
[17:10:49] [PASSED] drm_test_connector_hdmi_init_valid
[17:10:49] [PASSED] drm_test_connector_hdmi_init_bpc_8
[17:10:49] [PASSED] drm_test_connector_hdmi_init_bpc_10
[17:10:49] [PASSED] drm_test_connector_hdmi_init_bpc_12
[17:10:49] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[17:10:49] [PASSED] drm_test_connector_hdmi_init_bpc_null
[17:10:49] [PASSED] drm_test_connector_hdmi_init_formats_empty
[17:10:49] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[17:10:49] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[17:10:49] [PASSED] supported_formats=0x9 yuv420_allowed=1
[17:10:49] [PASSED] supported_formats=0x9 yuv420_allowed=0
[17:10:49] [PASSED] supported_formats=0x5 yuv420_allowed=1
[17:10:49] [PASSED] supported_formats=0x5 yuv420_allowed=0
[17:10:49] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[17:10:49] [PASSED] drm_test_connector_hdmi_init_null_ddc
[17:10:49] [PASSED] drm_test_connector_hdmi_init_null_product
[17:10:49] [PASSED] drm_test_connector_hdmi_init_null_vendor
[17:10:49] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[17:10:49] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[17:10:49] [PASSED] drm_test_connector_hdmi_init_product_valid
[17:10:49] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[17:10:49] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[17:10:49] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[17:10:49] ========= drm_test_connector_hdmi_init_type_valid =========
[17:10:49] [PASSED] HDMI-A
[17:10:49] [PASSED] HDMI-B
[17:10:49] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[17:10:49] ======== drm_test_connector_hdmi_init_type_invalid ========
[17:10:49] [PASSED] Unknown
[17:10:49] [PASSED] VGA
[17:10:49] [PASSED] DVI-I
[17:10:49] [PASSED] DVI-D
[17:10:49] [PASSED] DVI-A
[17:10:49] [PASSED] Composite
[17:10:49] [PASSED] SVIDEO
[17:10:49] [PASSED] LVDS
[17:10:49] [PASSED] Component
[17:10:49] [PASSED] DIN
[17:10:49] [PASSED] DP
[17:10:49] [PASSED] TV
[17:10:49] [PASSED] eDP
[17:10:49] [PASSED] Virtual
[17:10:49] [PASSED] DSI
[17:10:49] [PASSED] DPI
[17:10:49] [PASSED] Writeback
[17:10:49] [PASSED] SPI
[17:10:49] [PASSED] USB
[17:10:49] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[17:10:49] ============ [PASSED] drmm_connector_hdmi_init =============
[17:10:49] ============= drmm_connector_init (3 subtests) =============
[17:10:49] [PASSED] drm_test_drmm_connector_init
[17:10:49] [PASSED] drm_test_drmm_connector_init_null_ddc
[17:10:49] ========= drm_test_drmm_connector_init_type_valid =========
[17:10:49] [PASSED] Unknown
[17:10:49] [PASSED] VGA
[17:10:49] [PASSED] DVI-I
[17:10:49] [PASSED] DVI-D
[17:10:49] [PASSED] DVI-A
[17:10:49] [PASSED] Composite
[17:10:49] [PASSED] SVIDEO
[17:10:49] [PASSED] LVDS
[17:10:49] [PASSED] Component
[17:10:49] [PASSED] DIN
[17:10:49] [PASSED] DP
[17:10:49] [PASSED] HDMI-A
[17:10:49] [PASSED] HDMI-B
[17:10:49] [PASSED] TV
[17:10:49] [PASSED] eDP
[17:10:49] [PASSED] Virtual
[17:10:49] [PASSED] DSI
[17:10:49] [PASSED] DPI
[17:10:49] [PASSED] Writeback
[17:10:49] [PASSED] SPI
[17:10:49] [PASSED] USB
[17:10:49] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[17:10:49] =============== [PASSED] drmm_connector_init ===============
[17:10:49] ========= drm_connector_dynamic_init (6 subtests) ==========
[17:10:49] [PASSED] drm_test_drm_connector_dynamic_init
[17:10:49] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[17:10:49] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[17:10:49] [PASSED] drm_test_drm_connector_dynamic_init_properties
[17:10:49] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[17:10:49] [PASSED] Unknown
[17:10:49] [PASSED] VGA
[17:10:49] [PASSED] DVI-I
[17:10:49] [PASSED] DVI-D
[17:10:49] [PASSED] DVI-A
[17:10:49] [PASSED] Composite
[17:10:49] [PASSED] SVIDEO
[17:10:49] [PASSED] LVDS
[17:10:49] [PASSED] Component
[17:10:49] [PASSED] DIN
[17:10:49] [PASSED] DP
[17:10:49] [PASSED] HDMI-A
[17:10:49] [PASSED] HDMI-B
[17:10:49] [PASSED] TV
[17:10:49] [PASSED] eDP
[17:10:49] [PASSED] Virtual
[17:10:49] [PASSED] DSI
[17:10:49] [PASSED] DPI
[17:10:49] [PASSED] Writeback
[17:10:49] [PASSED] SPI
[17:10:49] [PASSED] USB
[17:10:49] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[17:10:49] ======== drm_test_drm_connector_dynamic_init_name =========
[17:10:49] [PASSED] Unknown
[17:10:49] [PASSED] VGA
[17:10:49] [PASSED] DVI-I
[17:10:49] [PASSED] DVI-D
[17:10:49] [PASSED] DVI-A
[17:10:49] [PASSED] Composite
[17:10:49] [PASSED] SVIDEO
[17:10:49] [PASSED] LVDS
[17:10:49] [PASSED] Component
[17:10:49] [PASSED] DIN
[17:10:49] [PASSED] DP
[17:10:49] [PASSED] HDMI-A
[17:10:49] [PASSED] HDMI-B
[17:10:49] [PASSED] TV
[17:10:49] [PASSED] eDP
[17:10:49] [PASSED] Virtual
[17:10:49] [PASSED] DSI
[17:10:49] [PASSED] DPI
[17:10:49] [PASSED] Writeback
[17:10:49] [PASSED] SPI
[17:10:49] [PASSED] USB
[17:10:49] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[17:10:49] =========== [PASSED] drm_connector_dynamic_init ============
[17:10:49] ==== drm_connector_dynamic_register_early (4 subtests) =====
[17:10:49] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[17:10:49] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[17:10:49] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[17:10:49] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[17:10:49] ====== [PASSED] drm_connector_dynamic_register_early =======
[17:10:49] ======= drm_connector_dynamic_register (7 subtests) ========
[17:10:49] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[17:10:49] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[17:10:49] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[17:10:49] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[17:10:49] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[17:10:49] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[17:10:49] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[17:10:49] ========= [PASSED] drm_connector_dynamic_register ==========
[17:10:49] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[17:10:49] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[17:10:49] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[17:10:49] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[17:10:49] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[17:10:49] ========== drm_test_get_tv_mode_from_name_valid ===========
[17:10:49] [PASSED] NTSC
[17:10:49] [PASSED] NTSC-443
[17:10:49] [PASSED] NTSC-J
[17:10:49] [PASSED] PAL
[17:10:49] [PASSED] PAL-M
[17:10:49] [PASSED] PAL-N
[17:10:49] [PASSED] SECAM
[17:10:49] [PASSED] Mono
[17:10:49] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[17:10:49] [PASSED] drm_test_get_tv_mode_from_name_truncated
[17:10:49] ============ [PASSED] drm_get_tv_mode_from_name ============
[17:10:49] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[17:10:49] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[17:10:49] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[17:10:49] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[17:10:49] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[17:10:49] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[17:10:49] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[17:10:49] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[17:10:49] [PASSED] VIC 96
[17:10:49] [PASSED] VIC 97
[17:10:49] [PASSED] VIC 101
[17:10:49] [PASSED] VIC 102
[17:10:49] [PASSED] VIC 106
[17:10:49] [PASSED] VIC 107
[17:10:49] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[17:10:49] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[17:10:49] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[17:10:49] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[17:10:49] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[17:10:49] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[17:10:49] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[17:10:49] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[17:10:49] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[17:10:49] [PASSED] Automatic
[17:10:49] [PASSED] Full
[17:10:49] [PASSED] Limited 16:235
[17:10:49] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[17:10:49] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[17:10:49] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[17:10:49] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[17:10:49] === drm_test_drm_hdmi_connector_get_output_format_name ====
[17:10:49] [PASSED] RGB
[17:10:49] [PASSED] YUV 4:2:0
[17:10:49] [PASSED] YUV 4:2:2
[17:10:49] [PASSED] YUV 4:4:4
[17:10:49] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[17:10:49] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[17:10:49] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[17:10:49] ============= drm_damage_helper (21 subtests) ==============
[17:10:49] [PASSED] drm_test_damage_iter_no_damage
[17:10:49] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[17:10:49] [PASSED] drm_test_damage_iter_no_damage_src_moved
[17:10:49] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[17:10:49] [PASSED] drm_test_damage_iter_no_damage_not_visible
[17:10:49] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[17:10:49] [PASSED] drm_test_damage_iter_no_damage_no_fb
[17:10:49] [PASSED] drm_test_damage_iter_simple_damage
[17:10:49] [PASSED] drm_test_damage_iter_single_damage
[17:10:49] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[17:10:49] [PASSED] drm_test_damage_iter_single_damage_outside_src
[17:10:49] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[17:10:49] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[17:10:49] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[17:10:49] [PASSED] drm_test_damage_iter_single_damage_src_moved
[17:10:49] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[17:10:49] [PASSED] drm_test_damage_iter_damage
[17:10:49] [PASSED] drm_test_damage_iter_damage_one_intersect
[17:10:49] [PASSED] drm_test_damage_iter_damage_one_outside
[17:10:49] [PASSED] drm_test_damage_iter_damage_src_moved
[17:10:49] [PASSED] drm_test_damage_iter_damage_not_visible
[17:10:49] ================ [PASSED] drm_damage_helper ================
[17:10:49] ============== drm_dp_mst_helper (3 subtests) ==============
[17:10:49] ============== drm_test_dp_mst_calc_pbn_mode ==============
[17:10:49] [PASSED] Clock 154000 BPP 30 DSC disabled
[17:10:49] [PASSED] Clock 234000 BPP 30 DSC disabled
[17:10:49] [PASSED] Clock 297000 BPP 24 DSC disabled
[17:10:49] [PASSED] Clock 332880 BPP 24 DSC enabled
[17:10:49] [PASSED] Clock 324540 BPP 24 DSC enabled
[17:10:49] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[17:10:49] ============== drm_test_dp_mst_calc_pbn_div ===============
[17:10:49] [PASSED] Link rate 2000000 lane count 4
[17:10:49] [PASSED] Link rate 2000000 lane count 2
[17:10:49] [PASSED] Link rate 2000000 lane count 1
[17:10:49] [PASSED] Link rate 1350000 lane count 4
[17:10:49] [PASSED] Link rate 1350000 lane count 2
[17:10:49] [PASSED] Link rate 1350000 lane count 1
[17:10:49] [PASSED] Link rate 1000000 lane count 4
[17:10:49] [PASSED] Link rate 1000000 lane count 2
[17:10:49] [PASSED] Link rate 1000000 lane count 1
[17:10:49] [PASSED] Link rate 810000 lane count 4
[17:10:49] [PASSED] Link rate 810000 lane count 2
[17:10:49] [PASSED] Link rate 810000 lane count 1
[17:10:49] [PASSED] Link rate 540000 lane count 4
[17:10:49] [PASSED] Link rate 540000 lane count 2
[17:10:49] [PASSED] Link rate 540000 lane count 1
[17:10:49] [PASSED] Link rate 270000 lane count 4
[17:10:49] [PASSED] Link rate 270000 lane count 2
[17:10:49] [PASSED] Link rate 270000 lane count 1
[17:10:49] [PASSED] Link rate 162000 lane count 4
[17:10:49] [PASSED] Link rate 162000 lane count 2
[17:10:49] [PASSED] Link rate 162000 lane count 1
[17:10:49] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[17:10:49] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[17:10:49] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[17:10:49] [PASSED] DP_POWER_UP_PHY with port number
[17:10:49] [PASSED] DP_POWER_DOWN_PHY with port number
[17:10:49] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[17:10:49] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[17:10:49] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[17:10:49] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[17:10:49] [PASSED] DP_QUERY_PAYLOAD with port number
[17:10:49] [PASSED] DP_QUERY_PAYLOAD with VCPI
[17:10:49] [PASSED] DP_REMOTE_DPCD_READ with port number
[17:10:49] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[17:10:49] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[17:10:49] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[17:10:49] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[17:10:49] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[17:10:49] [PASSED] DP_REMOTE_I2C_READ with port number
[17:10:49] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[17:10:49] [PASSED] DP_REMOTE_I2C_READ with transactions array
[17:10:49] [PASSED] DP_REMOTE_I2C_WRITE with port number
[17:10:49] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[17:10:49] [PASSED] DP_REMOTE_I2C_WRITE with data array
[17:10:49] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[17:10:49] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[17:10:49] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[17:10:49] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[17:10:49] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[17:10:49] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[17:10:49] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[17:10:49] ================ [PASSED] drm_dp_mst_helper ================
[17:10:49] ================== drm_exec (7 subtests) ===================
[17:10:49] [PASSED] sanitycheck
[17:10:49] [PASSED] test_lock
[17:10:49] [PASSED] test_lock_unlock
[17:10:49] [PASSED] test_duplicates
[17:10:49] [PASSED] test_prepare
[17:10:49] [PASSED] test_prepare_array
[17:10:49] [PASSED] test_multiple_loops
[17:10:49] ==================== [PASSED] drm_exec =====================
[17:10:49] =========== drm_format_helper_test (17 subtests) ===========
[17:10:49] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[17:10:49] [PASSED] single_pixel_source_buffer
[17:10:49] [PASSED] single_pixel_clip_rectangle
[17:10:49] [PASSED] well_known_colors
[17:10:49] [PASSED] destination_pitch
[17:10:49] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[17:10:49] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[17:10:49] [PASSED] single_pixel_source_buffer
[17:10:49] [PASSED] single_pixel_clip_rectangle
[17:10:49] [PASSED] well_known_colors
[17:10:49] [PASSED] destination_pitch
[17:10:49] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[17:10:49] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[17:10:49] [PASSED] single_pixel_source_buffer
[17:10:49] [PASSED] single_pixel_clip_rectangle
[17:10:49] [PASSED] well_known_colors
[17:10:49] [PASSED] destination_pitch
[17:10:49] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[17:10:49] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[17:10:49] [PASSED] single_pixel_source_buffer
[17:10:49] [PASSED] single_pixel_clip_rectangle
[17:10:49] [PASSED] well_known_colors
[17:10:49] [PASSED] destination_pitch
[17:10:49] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[17:10:49] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[17:10:49] [PASSED] single_pixel_source_buffer
[17:10:49] [PASSED] single_pixel_clip_rectangle
[17:10:49] [PASSED] well_known_colors
[17:10:49] [PASSED] destination_pitch
[17:10:49] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[17:10:49] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[17:10:49] [PASSED] single_pixel_source_buffer
[17:10:49] [PASSED] single_pixel_clip_rectangle
[17:10:49] [PASSED] well_known_colors
[17:10:49] [PASSED] destination_pitch
[17:10:49] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[17:10:49] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[17:10:49] [PASSED] single_pixel_source_buffer
[17:10:49] [PASSED] single_pixel_clip_rectangle
[17:10:49] [PASSED] well_known_colors
[17:10:49] [PASSED] destination_pitch
[17:10:49] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[17:10:49] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[17:10:49] [PASSED] single_pixel_source_buffer
[17:10:49] [PASSED] single_pixel_clip_rectangle
[17:10:49] [PASSED] well_known_colors
[17:10:49] [PASSED] destination_pitch
[17:10:49] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[17:10:49] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[17:10:49] [PASSED] single_pixel_source_buffer
[17:10:49] [PASSED] single_pixel_clip_rectangle
[17:10:49] [PASSED] well_known_colors
[17:10:49] [PASSED] destination_pitch
[17:10:49] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[17:10:49] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[17:10:49] [PASSED] single_pixel_source_buffer
[17:10:49] [PASSED] single_pixel_clip_rectangle
[17:10:49] [PASSED] well_known_colors
[17:10:49] [PASSED] destination_pitch
[17:10:49] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[17:10:49] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[17:10:49] [PASSED] single_pixel_source_buffer
[17:10:49] [PASSED] single_pixel_clip_rectangle
[17:10:49] [PASSED] well_known_colors
[17:10:49] [PASSED] destination_pitch
[17:10:49] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[17:10:49] ============== drm_test_fb_xrgb8888_to_mono ===============
[17:10:49] [PASSED] single_pixel_source_buffer
[17:10:49] [PASSED] single_pixel_clip_rectangle
[17:10:49] [PASSED] well_known_colors
[17:10:49] [PASSED] destination_pitch
[17:10:49] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[17:10:49] ==================== drm_test_fb_swab =====================
[17:10:49] [PASSED] single_pixel_source_buffer
[17:10:49] [PASSED] single_pixel_clip_rectangle
[17:10:49] [PASSED] well_known_colors
[17:10:49] [PASSED] destination_pitch
[17:10:49] ================ [PASSED] drm_test_fb_swab =================
[17:10:49] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[17:10:49] [PASSED] single_pixel_source_buffer
[17:10:49] [PASSED] single_pixel_clip_rectangle
[17:10:49] [PASSED] well_known_colors
[17:10:49] [PASSED] destination_pitch
[17:10:49] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[17:10:49] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[17:10:49] [PASSED] single_pixel_source_buffer
[17:10:49] [PASSED] single_pixel_clip_rectangle
[17:10:49] [PASSED] well_known_colors
[17:10:49] [PASSED] destination_pitch
[17:10:49] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[17:10:49] ================= drm_test_fb_clip_offset =================
[17:10:49] [PASSED] pass through
[17:10:49] [PASSED] horizontal offset
[17:10:49] [PASSED] vertical offset
[17:10:49] [PASSED] horizontal and vertical offset
[17:10:49] [PASSED] horizontal offset (custom pitch)
[17:10:49] [PASSED] vertical offset (custom pitch)
[17:10:49] [PASSED] horizontal and vertical offset (custom pitch)
[17:10:49] ============= [PASSED] drm_test_fb_clip_offset =============
[17:10:49] =================== drm_test_fb_memcpy ====================
[17:10:49] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[17:10:49] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[17:10:49] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[17:10:49] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[17:10:49] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[17:10:49] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[17:10:49] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[17:10:49] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[17:10:49] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[17:10:49] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[17:10:49] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[17:10:49] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[17:10:49] =============== [PASSED] drm_test_fb_memcpy ================
[17:10:49] ============= [PASSED] drm_format_helper_test ==============
[17:10:49] ================= drm_format (18 subtests) =================
[17:10:49] [PASSED] drm_test_format_block_width_invalid
[17:10:49] [PASSED] drm_test_format_block_width_one_plane
[17:10:49] [PASSED] drm_test_format_block_width_two_plane
[17:10:49] [PASSED] drm_test_format_block_width_three_plane
[17:10:49] [PASSED] drm_test_format_block_width_tiled
[17:10:49] [PASSED] drm_test_format_block_height_invalid
[17:10:49] [PASSED] drm_test_format_block_height_one_plane
[17:10:49] [PASSED] drm_test_format_block_height_two_plane
[17:10:49] [PASSED] drm_test_format_block_height_three_plane
[17:10:49] [PASSED] drm_test_format_block_height_tiled
[17:10:49] [PASSED] drm_test_format_min_pitch_invalid
[17:10:49] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[17:10:49] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[17:10:49] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[17:10:49] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[17:10:49] [PASSED] drm_test_format_min_pitch_two_plane
[17:10:49] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[17:10:49] [PASSED] drm_test_format_min_pitch_tiled
[17:10:49] =================== [PASSED] drm_format ====================
[17:10:49] ============== drm_framebuffer (10 subtests) ===============
[17:10:49] ========== drm_test_framebuffer_check_src_coords ==========
[17:10:49] [PASSED] Success: source fits into fb
[17:10:49] [PASSED] Fail: overflowing fb with x-axis coordinate
[17:10:49] [PASSED] Fail: overflowing fb with y-axis coordinate
[17:10:49] [PASSED] Fail: overflowing fb with source width
[17:10:49] [PASSED] Fail: overflowing fb with source height
[17:10:49] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[17:10:49] [PASSED] drm_test_framebuffer_cleanup
[17:10:49] =============== drm_test_framebuffer_create ===============
[17:10:49] [PASSED] ABGR8888 normal sizes
[17:10:49] [PASSED] ABGR8888 max sizes
[17:10:49] [PASSED] ABGR8888 pitch greater than min required
[17:10:49] [PASSED] ABGR8888 pitch less than min required
[17:10:49] [PASSED] ABGR8888 Invalid width
[17:10:49] [PASSED] ABGR8888 Invalid buffer handle
[17:10:49] [PASSED] No pixel format
[17:10:49] [PASSED] ABGR8888 Width 0
[17:10:49] [PASSED] ABGR8888 Height 0
[17:10:49] [PASSED] ABGR8888 Out of bound height * pitch combination
[17:10:49] [PASSED] ABGR8888 Large buffer offset
[17:10:49] [PASSED] ABGR8888 Buffer offset for inexistent plane
[17:10:49] [PASSED] ABGR8888 Invalid flag
[17:10:49] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[17:10:49] [PASSED] ABGR8888 Valid buffer modifier
[17:10:49] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[17:10:49] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[17:10:49] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[17:10:49] [PASSED] NV12 Normal sizes
[17:10:49] [PASSED] NV12 Max sizes
[17:10:49] [PASSED] NV12 Invalid pitch
[17:10:49] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[17:10:49] [PASSED] NV12 different modifier per-plane
[17:10:49] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[17:10:49] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[17:10:49] [PASSED] NV12 Modifier for inexistent plane
[17:10:49] [PASSED] NV12 Handle for inexistent plane
[17:10:49] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[17:10:49] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[17:10:49] [PASSED] YVU420 Normal sizes
[17:10:49] [PASSED] YVU420 Max sizes
[17:10:49] [PASSED] YVU420 Invalid pitch
[17:10:49] [PASSED] YVU420 Different pitches
[17:10:49] [PASSED] YVU420 Different buffer offsets/pitches
[17:10:49] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[17:10:49] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[17:10:49] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[17:10:49] [PASSED] YVU420 Valid modifier
[17:10:49] [PASSED] YVU420 Different modifiers per plane
[17:10:49] [PASSED] YVU420 Modifier for inexistent plane
[17:10:49] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[17:10:49] [PASSED] X0L2 Normal sizes
[17:10:49] [PASSED] X0L2 Max sizes
[17:10:49] [PASSED] X0L2 Invalid pitch
[17:10:49] [PASSED] X0L2 Pitch greater than minimum required
[17:10:49] [PASSED] X0L2 Handle for inexistent plane
[17:10:49] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[17:10:49] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[17:10:49] [PASSED] X0L2 Valid modifier
[17:10:49] [PASSED] X0L2 Modifier for inexistent plane
[17:10:49] =========== [PASSED] drm_test_framebuffer_create ===========
[17:10:49] [PASSED] drm_test_framebuffer_free
[17:10:49] [PASSED] drm_test_framebuffer_init
[17:10:49] [PASSED] drm_test_framebuffer_init_bad_format
[17:10:49] [PASSED] drm_test_framebuffer_init_dev_mismatch
[17:10:49] [PASSED] drm_test_framebuffer_lookup
[17:10:49] [PASSED] drm_test_framebuffer_lookup_inexistent
[17:10:49] [PASSED] drm_test_framebuffer_modifiers_not_supported
[17:10:49] ================= [PASSED] drm_framebuffer =================
[17:10:49] ================ drm_gem_shmem (8 subtests) ================
[17:10:49] [PASSED] drm_gem_shmem_test_obj_create
[17:10:49] [PASSED] drm_gem_shmem_test_obj_create_private
[17:10:49] [PASSED] drm_gem_shmem_test_pin_pages
[17:10:49] [PASSED] drm_gem_shmem_test_vmap
[17:10:49] [PASSED] drm_gem_shmem_test_get_sg_table
[17:10:49] [PASSED] drm_gem_shmem_test_get_pages_sgt
[17:10:49] [PASSED] drm_gem_shmem_test_madvise
[17:10:49] [PASSED] drm_gem_shmem_test_purge
[17:10:49] ================== [PASSED] drm_gem_shmem ==================
[17:10:49] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[17:10:49] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[17:10:49] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[17:10:49] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[17:10:49] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[17:10:49] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[17:10:49] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[17:10:49] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[17:10:49] [PASSED] Automatic
[17:10:49] [PASSED] Full
[17:10:49] [PASSED] Limited 16:235
[17:10:49] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[17:10:49] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[17:10:49] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[17:10:49] [PASSED] drm_test_check_disable_connector
[17:10:49] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[17:10:49] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[17:10:49] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[17:10:49] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[17:10:49] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[17:10:49] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[17:10:49] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[17:10:49] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[17:10:49] [PASSED] drm_test_check_output_bpc_dvi
[17:10:49] [PASSED] drm_test_check_output_bpc_format_vic_1
[17:10:49] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[17:10:49] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[17:10:49] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[17:10:49] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[17:10:49] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[17:10:49] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[17:10:49] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[17:10:49] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[17:10:49] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[17:10:49] [PASSED] drm_test_check_broadcast_rgb_value
[17:10:49] [PASSED] drm_test_check_bpc_8_value
[17:10:49] [PASSED] drm_test_check_bpc_10_value
[17:10:49] [PASSED] drm_test_check_bpc_12_value
[17:10:49] [PASSED] drm_test_check_format_value
[17:10:49] [PASSED] drm_test_check_tmds_char_value
[17:10:49] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[17:10:49] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[17:10:49] [PASSED] drm_test_check_mode_valid
[17:10:49] [PASSED] drm_test_check_mode_valid_reject
[17:10:49] [PASSED] drm_test_check_mode_valid_reject_rate
[17:10:49] [PASSED] drm_test_check_mode_valid_reject_max_clock
[17:10:49] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[17:10:49] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[17:10:49] [PASSED] drm_test_check_infoframes
[17:10:49] [PASSED] drm_test_check_reject_avi_infoframe
[17:10:49] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[17:10:49] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[17:10:49] [PASSED] drm_test_check_reject_audio_infoframe
[17:10:49] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[17:10:49] ================= drm_managed (2 subtests) =================
[17:10:49] [PASSED] drm_test_managed_release_action
[17:10:49] [PASSED] drm_test_managed_run_action
[17:10:49] =================== [PASSED] drm_managed ===================
[17:10:49] =================== drm_mm (6 subtests) ====================
[17:10:49] [PASSED] drm_test_mm_init
[17:10:49] [PASSED] drm_test_mm_debug
[17:10:49] [PASSED] drm_test_mm_align32
[17:10:49] [PASSED] drm_test_mm_align64
[17:10:49] [PASSED] drm_test_mm_lowest
[17:10:49] [PASSED] drm_test_mm_highest
[17:10:49] ===================== [PASSED] drm_mm ======================
[17:10:49] ============= drm_modes_analog_tv (5 subtests) =============
[17:10:49] [PASSED] drm_test_modes_analog_tv_mono_576i
[17:10:49] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[17:10:49] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[17:10:49] [PASSED] drm_test_modes_analog_tv_pal_576i
[17:10:49] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[17:10:49] =============== [PASSED] drm_modes_analog_tv ===============
[17:10:49] ============== drm_plane_helper (2 subtests) ===============
[17:10:49] =============== drm_test_check_plane_state ================
[17:10:49] [PASSED] clipping_simple
[17:10:49] [PASSED] clipping_rotate_reflect
[17:10:49] [PASSED] positioning_simple
[17:10:49] [PASSED] upscaling
[17:10:49] [PASSED] downscaling
[17:10:49] [PASSED] rounding1
[17:10:49] [PASSED] rounding2
[17:10:49] [PASSED] rounding3
[17:10:49] [PASSED] rounding4
[17:10:49] =========== [PASSED] drm_test_check_plane_state ============
[17:10:49] =========== drm_test_check_invalid_plane_state ============
[17:10:49] [PASSED] positioning_invalid
[17:10:49] [PASSED] upscaling_invalid
[17:10:49] [PASSED] downscaling_invalid
[17:10:49] ======= [PASSED] drm_test_check_invalid_plane_state ========
[17:10:49] ================ [PASSED] drm_plane_helper =================
[17:10:49] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[17:10:49] ====== drm_test_connector_helper_tv_get_modes_check =======
[17:10:49] [PASSED] None
[17:10:49] [PASSED] PAL
[17:10:49] [PASSED] NTSC
[17:10:49] [PASSED] Both, NTSC Default
[17:10:49] [PASSED] Both, PAL Default
[17:10:49] [PASSED] Both, NTSC Default, with PAL on command-line
[17:10:49] [PASSED] Both, PAL Default, with NTSC on command-line
[17:10:49] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[17:10:49] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[17:10:49] ================== drm_rect (9 subtests) ===================
[17:10:49] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[17:10:49] [PASSED] drm_test_rect_clip_scaled_not_clipped
[17:10:49] [PASSED] drm_test_rect_clip_scaled_clipped
[17:10:49] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[17:10:49] ================= drm_test_rect_intersect =================
[17:10:49] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[17:10:49] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[17:10:49] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[17:10:49] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[17:10:49] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[17:10:49] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[17:10:49] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[17:10:49] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[17:10:49] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[17:10:49] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[17:10:49] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[17:10:49] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[17:10:49] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[17:10:49] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[17:10:49] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[17:10:49] ============= [PASSED] drm_test_rect_intersect =============
[17:10:49] ================ drm_test_rect_calc_hscale ================
[17:10:49] [PASSED] normal use
[17:10:49] [PASSED] out of max range
[17:10:49] [PASSED] out of min range
[17:10:49] [PASSED] zero dst
[17:10:49] [PASSED] negative src
[17:10:49] [PASSED] negative dst
[17:10:49] ============ [PASSED] drm_test_rect_calc_hscale ============
[17:10:49] ================ drm_test_rect_calc_vscale ================
[17:10:49] [PASSED] normal use
[17:10:49] [PASSED] out of max range
[17:10:49] [PASSED] out of min range
[17:10:49] [PASSED] zero dst
[17:10:49] [PASSED] negative src
[17:10:49] [PASSED] negative dst
stty: 'standard input': Inappropriate ioctl for device
[17:10:49] ============ [PASSED] drm_test_rect_calc_vscale ============
[17:10:49] ================== drm_test_rect_rotate ===================
[17:10:49] [PASSED] reflect-x
[17:10:49] [PASSED] reflect-y
[17:10:49] [PASSED] rotate-0
[17:10:49] [PASSED] rotate-90
[17:10:49] [PASSED] rotate-180
[17:10:49] [PASSED] rotate-270
[17:10:49] ============== [PASSED] drm_test_rect_rotate ===============
[17:10:49] ================ drm_test_rect_rotate_inv =================
[17:10:49] [PASSED] reflect-x
[17:10:49] [PASSED] reflect-y
[17:10:49] [PASSED] rotate-0
[17:10:49] [PASSED] rotate-90
[17:10:49] [PASSED] rotate-180
[17:10:49] [PASSED] rotate-270
[17:10:49] ============ [PASSED] drm_test_rect_rotate_inv =============
[17:10:49] ==================== [PASSED] drm_rect =====================
[17:10:49] ============ drm_sysfb_modeset_test (1 subtest) ============
[17:10:49] ============ drm_test_sysfb_build_fourcc_list =============
[17:10:49] [PASSED] no native formats
[17:10:49] [PASSED] XRGB8888 as native format
[17:10:49] [PASSED] remove duplicates
[17:10:49] [PASSED] convert alpha formats
[17:10:49] [PASSED] random formats
[17:10:49] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[17:10:49] ============= [PASSED] drm_sysfb_modeset_test ==============
[17:10:49] ================== drm_fixp (2 subtests) ===================
[17:10:49] [PASSED] drm_test_int2fixp
[17:10:49] [PASSED] drm_test_sm2fixp
[17:10:49] ==================== [PASSED] drm_fixp =====================
[17:10:49] ============================================================
[17:10:49] Testing complete. Ran 621 tests: passed: 621
[17:10:49] Elapsed time: 25.911s total, 1.751s configuring, 24.028s building, 0.131s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[17:10:49] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[17:10:51] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[17:11:01] Starting KUnit Kernel (1/1)...
[17:11:01] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[17:11:01] ================= ttm_device (5 subtests) ==================
[17:11:01] [PASSED] ttm_device_init_basic
[17:11:01] [PASSED] ttm_device_init_multiple
[17:11:01] [PASSED] ttm_device_fini_basic
[17:11:01] [PASSED] ttm_device_init_no_vma_man
[17:11:01] ================== ttm_device_init_pools ==================
[17:11:01] [PASSED] No DMA allocations, no DMA32 required
[17:11:01] [PASSED] DMA allocations, DMA32 required
[17:11:01] [PASSED] No DMA allocations, DMA32 required
[17:11:01] [PASSED] DMA allocations, no DMA32 required
[17:11:01] ============== [PASSED] ttm_device_init_pools ==============
[17:11:01] =================== [PASSED] ttm_device ====================
[17:11:01] ================== ttm_pool (8 subtests) ===================
[17:11:01] ================== ttm_pool_alloc_basic ===================
[17:11:01] [PASSED] One page
[17:11:01] [PASSED] More than one page
[17:11:01] [PASSED] Above the allocation limit
[17:11:01] [PASSED] One page, with coherent DMA mappings enabled
[17:11:01] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[17:11:01] ============== [PASSED] ttm_pool_alloc_basic ===============
[17:11:01] ============== ttm_pool_alloc_basic_dma_addr ==============
[17:11:01] [PASSED] One page
[17:11:01] [PASSED] More than one page
[17:11:01] [PASSED] Above the allocation limit
[17:11:01] [PASSED] One page, with coherent DMA mappings enabled
[17:11:01] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[17:11:01] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[17:11:01] [PASSED] ttm_pool_alloc_order_caching_match
[17:11:01] [PASSED] ttm_pool_alloc_caching_mismatch
[17:11:01] [PASSED] ttm_pool_alloc_order_mismatch
[17:11:01] [PASSED] ttm_pool_free_dma_alloc
[17:11:01] [PASSED] ttm_pool_free_no_dma_alloc
[17:11:01] [PASSED] ttm_pool_fini_basic
[17:11:01] ==================== [PASSED] ttm_pool =====================
[17:11:01] ================ ttm_resource (8 subtests) =================
[17:11:01] ================= ttm_resource_init_basic =================
[17:11:01] [PASSED] Init resource in TTM_PL_SYSTEM
[17:11:01] [PASSED] Init resource in TTM_PL_VRAM
[17:11:01] [PASSED] Init resource in a private placement
[17:11:01] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[17:11:01] ============= [PASSED] ttm_resource_init_basic =============
[17:11:01] [PASSED] ttm_resource_init_pinned
[17:11:01] [PASSED] ttm_resource_fini_basic
[17:11:01] [PASSED] ttm_resource_manager_init_basic
[17:11:01] [PASSED] ttm_resource_manager_usage_basic
[17:11:01] [PASSED] ttm_resource_manager_set_used_basic
[17:11:01] [PASSED] ttm_sys_man_alloc_basic
[17:11:01] [PASSED] ttm_sys_man_free_basic
[17:11:01] ================== [PASSED] ttm_resource ===================
[17:11:01] =================== ttm_tt (15 subtests) ===================
[17:11:01] ==================== ttm_tt_init_basic ====================
[17:11:01] [PASSED] Page-aligned size
[17:11:01] [PASSED] Extra pages requested
[17:11:01] ================ [PASSED] ttm_tt_init_basic ================
[17:11:01] [PASSED] ttm_tt_init_misaligned
[17:11:01] [PASSED] ttm_tt_fini_basic
[17:11:01] [PASSED] ttm_tt_fini_sg
[17:11:01] [PASSED] ttm_tt_fini_shmem
[17:11:01] [PASSED] ttm_tt_create_basic
[17:11:01] [PASSED] ttm_tt_create_invalid_bo_type
[17:11:01] [PASSED] ttm_tt_create_ttm_exists
[17:11:01] [PASSED] ttm_tt_create_failed
[17:11:01] [PASSED] ttm_tt_destroy_basic
[17:11:01] [PASSED] ttm_tt_populate_null_ttm
[17:11:01] [PASSED] ttm_tt_populate_populated_ttm
[17:11:01] [PASSED] ttm_tt_unpopulate_basic
[17:11:01] [PASSED] ttm_tt_unpopulate_empty_ttm
[17:11:01] [PASSED] ttm_tt_swapin_basic
[17:11:01] ===================== [PASSED] ttm_tt ======================
[17:11:01] =================== ttm_bo (14 subtests) ===================
[17:11:01] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[17:11:01] [PASSED] Cannot be interrupted and sleeps
[17:11:01] [PASSED] Cannot be interrupted, locks straight away
[17:11:01] [PASSED] Can be interrupted, sleeps
[17:11:01] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[17:11:01] [PASSED] ttm_bo_reserve_locked_no_sleep
[17:11:01] [PASSED] ttm_bo_reserve_no_wait_ticket
[17:11:01] [PASSED] ttm_bo_reserve_double_resv
[17:11:01] [PASSED] ttm_bo_reserve_interrupted
[17:11:01] [PASSED] ttm_bo_reserve_deadlock
[17:11:01] [PASSED] ttm_bo_unreserve_basic
[17:11:01] [PASSED] ttm_bo_unreserve_pinned
[17:11:01] [PASSED] ttm_bo_unreserve_bulk
[17:11:01] [PASSED] ttm_bo_fini_basic
[17:11:01] [PASSED] ttm_bo_fini_shared_resv
[17:11:01] [PASSED] ttm_bo_pin_basic
[17:11:01] [PASSED] ttm_bo_pin_unpin_resource
[17:11:01] [PASSED] ttm_bo_multiple_pin_one_unpin
[17:11:01] ===================== [PASSED] ttm_bo ======================
[17:11:01] ============== ttm_bo_validate (22 subtests) ===============
[17:11:01] ============== ttm_bo_init_reserved_sys_man ===============
[17:11:01] [PASSED] Buffer object for userspace
[17:11:01] [PASSED] Kernel buffer object
[17:11:01] [PASSED] Shared buffer object
[17:11:01] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[17:11:01] ============== ttm_bo_init_reserved_mock_man ==============
[17:11:01] [PASSED] Buffer object for userspace
[17:11:01] [PASSED] Kernel buffer object
[17:11:01] [PASSED] Shared buffer object
[17:11:01] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[17:11:01] [PASSED] ttm_bo_init_reserved_resv
[17:11:01] ================== ttm_bo_validate_basic ==================
[17:11:01] [PASSED] Buffer object for userspace
[17:11:01] [PASSED] Kernel buffer object
[17:11:01] [PASSED] Shared buffer object
[17:11:01] ============== [PASSED] ttm_bo_validate_basic ==============
[17:11:01] [PASSED] ttm_bo_validate_invalid_placement
[17:11:01] ============= ttm_bo_validate_same_placement ==============
[17:11:01] [PASSED] System manager
[17:11:01] [PASSED] VRAM manager
[17:11:01] ========= [PASSED] ttm_bo_validate_same_placement ==========
[17:11:01] [PASSED] ttm_bo_validate_failed_alloc
[17:11:01] [PASSED] ttm_bo_validate_pinned
[17:11:01] [PASSED] ttm_bo_validate_busy_placement
[17:11:01] ================ ttm_bo_validate_multihop =================
[17:11:01] [PASSED] Buffer object for userspace
[17:11:01] [PASSED] Kernel buffer object
[17:11:01] [PASSED] Shared buffer object
[17:11:01] ============ [PASSED] ttm_bo_validate_multihop =============
[17:11:01] ========== ttm_bo_validate_no_placement_signaled ==========
[17:11:01] [PASSED] Buffer object in system domain, no page vector
[17:11:01] [PASSED] Buffer object in system domain with an existing page vector
[17:11:01] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[17:11:01] ======== ttm_bo_validate_no_placement_not_signaled ========
[17:11:01] [PASSED] Buffer object for userspace
[17:11:01] [PASSED] Kernel buffer object
[17:11:01] [PASSED] Shared buffer object
[17:11:01] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[17:11:01] [PASSED] ttm_bo_validate_move_fence_signaled
[17:11:01] ========= ttm_bo_validate_move_fence_not_signaled =========
[17:11:01] [PASSED] Waits for GPU
[17:11:01] [PASSED] Tries to lock straight away
[17:11:01] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[17:11:01] [PASSED] ttm_bo_validate_swapout
[17:11:01] [PASSED] ttm_bo_validate_happy_evict
[17:11:01] [PASSED] ttm_bo_validate_all_pinned_evict
[17:11:01] [PASSED] ttm_bo_validate_allowed_only_evict
[17:11:01] [PASSED] ttm_bo_validate_deleted_evict
[17:11:01] [PASSED] ttm_bo_validate_busy_domain_evict
[17:11:01] [PASSED] ttm_bo_validate_evict_gutting
[17:11:01] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[17:11:01] ================= [PASSED] ttm_bo_validate =================
[17:11:01] ============================================================
[17:11:01] Testing complete. Ran 102 tests: passed: 102
[17:11:01] Elapsed time: 11.492s total, 1.705s configuring, 9.570s building, 0.181s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 22+ messages in thread
* ✓ Xe.CI.BAT: success for : drm/i915/display: Use ceiling division for NV12 UV surface offset calculation (rev3)
2026-04-11 17:15 [PATCH] [RFC]: drm/i915/display: Use ceiling division for NV12 UV surface offset calculation Vidya Srinivas
` (10 preceding siblings ...)
2026-04-15 17:11 ` ✓ CI.KUnit: success " Patchwork
@ 2026-04-15 18:08 ` Patchwork
2026-04-15 20:00 ` ✗ Xe.CI.FULL: failure " Patchwork
12 siblings, 0 replies; 22+ messages in thread
From: Patchwork @ 2026-04-15 18:08 UTC (permalink / raw)
To: Srinivas, Vidya; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1138 bytes --]
== Series Details ==
Series: : drm/i915/display: Use ceiling division for NV12 UV surface offset calculation (rev3)
URL : https://patchwork.freedesktop.org/series/164739/
State : success
== Summary ==
CI Bug Log - changes from xe-4905-4c59525db84aca677fd9f052e662912ad9d88448_BAT -> xe-pw-164739v3_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 13)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8859 -> IGT_8860
* Linux: xe-4905-4c59525db84aca677fd9f052e662912ad9d88448 -> xe-pw-164739v3
IGT_8859: 8d537f073bd4d30da991ab868bee2310ca664401 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8860: db5eb72e9ca0c8f7e39b9bfd88da1b28a85c9f8f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4905-4c59525db84aca677fd9f052e662912ad9d88448: 4c59525db84aca677fd9f052e662912ad9d88448
xe-pw-164739v3: 164739v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/index.html
[-- Attachment #2: Type: text/html, Size: 1700 bytes --]
^ permalink raw reply [flat|nested] 22+ messages in thread
* ✗ Xe.CI.FULL: failure for : drm/i915/display: Use ceiling division for NV12 UV surface offset calculation (rev3)
2026-04-11 17:15 [PATCH] [RFC]: drm/i915/display: Use ceiling division for NV12 UV surface offset calculation Vidya Srinivas
` (11 preceding siblings ...)
2026-04-15 18:08 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-04-15 20:00 ` Patchwork
12 siblings, 0 replies; 22+ messages in thread
From: Patchwork @ 2026-04-15 20:00 UTC (permalink / raw)
To: Srinivas, Vidya; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 40598 bytes --]
== Series Details ==
Series: : drm/i915/display: Use ceiling division for NV12 UV surface offset calculation (rev3)
URL : https://patchwork.freedesktop.org/series/164739/
State : failure
== Summary ==
CI Bug Log - changes from xe-4905-4c59525db84aca677fd9f052e662912ad9d88448_FULL -> xe-pw-164739v3_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-164739v3_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-164739v3_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-164739v3_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_vblank@wait-forked-busy-hang:
- shard-bmg: NOTRUN -> [FAIL][1] +1 other test fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-6/igt@kms_vblank@wait-forked-busy-hang.html
#### Warnings ####
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-2:
- shard-bmg: [FAIL][2] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) -> [TIMEOUT][3] +1 other test timeout
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4905-4c59525db84aca677fd9f052e662912ad9d88448/shard-bmg-7/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-6/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html
Known issues
------------
Here are the changes found in xe-pw-164739v3_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][4] ([Intel XE#1407])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-lnl-3/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2327]) +4 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-10/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#1124]) +11 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-3/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#607] / [Intel XE#7361])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#610] / [Intel XE#7387])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-9/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#1124])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-lnl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#7679])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-1-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#367] / [Intel XE#7354]) +3 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-9/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#2887])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-lnl-5/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2652]) +8 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2887]) +15 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-10/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2325] / [Intel XE#7358]) +3 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-9/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2252]) +8 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-8/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#373]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-lnl-2/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_color@gamma:
- shard-bmg: [PASS][18] -> [DMESG-WARN][19] ([Intel XE#7725]) +5 other tests dmesg-warn
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4905-4c59525db84aca677fd9f052e662912ad9d88448/shard-bmg-8/igt@kms_color@gamma.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-6/igt@kms_color@gamma.html
* igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#6974])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-9/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2390] / [Intel XE#6974]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-6/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0-suspend-resume:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#6974])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-lnl-2/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
* igt@kms_content_protection@srm@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][23] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-10/igt@kms_content_protection@srm@pipe-a-dp-2.html
* igt@kms_content_protection@uevent-hdcp14:
- shard-bmg: NOTRUN -> [FAIL][24] ([Intel XE#6707] / [Intel XE#7439]) +1 other test fail
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-2/igt@kms_content_protection@uevent-hdcp14.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2321] / [Intel XE#7355]) +2 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-9/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#1424])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-lnl-5/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2320]) +4 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-2/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#309] / [Intel XE#7343])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-lnl-3/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#1340] / [Intel XE#7435])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#4354] / [Intel XE#5882])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-lnl-5/igt@kms_dp_link_training@non-uhbr-mst.html
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#4354] / [Intel XE#5882])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-9/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2244]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-1/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#4422] / [Intel XE#7442])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-1/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
* igt@kms_fbcon_fbt@fbc:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#4156] / [Intel XE#7425])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-7/igt@kms_fbcon_fbt@fbc.html
* igt@kms_feature_discovery@psr1:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2374] / [Intel XE#6127])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-2/igt@kms_feature_discovery@psr1.html
* igt@kms_feature_discovery@psr2:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2374] / [Intel XE#6128])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-9/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-bmg: [PASS][37] -> [SKIP][38] ([Intel XE#2316])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4905-4c59525db84aca677fd9f052e662912ad9d88448/shard-bmg-2/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@2x-plain-flip:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#1421]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-lnl-7/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-dp2:
- shard-bmg: [PASS][40] -> [FAIL][41] ([Intel XE#5408] / [Intel XE#6266]) +3 other tests fail
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4905-4c59525db84aca677fd9f052e662912ad9d88448/shard-bmg-8/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-dp2.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-dp2.html
* igt@kms_flip@flip-vs-panning-interruptible@a-hdmi-a3:
- shard-bmg: [PASS][42] -> [ABORT][43] ([Intel XE#5545] / [Intel XE#6652]) +1 other test abort
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4905-4c59525db84aca677fd9f052e662912ad9d88448/shard-bmg-5/igt@kms_flip@flip-vs-panning-interruptible@a-hdmi-a3.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-2/igt@kms_flip@flip-vs-panning-interruptible@a-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#7178] / [Intel XE#7351]) +4 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#7178] / [Intel XE#7351])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#7178] / [Intel XE#7349])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#7179])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-8/igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2311]) +33 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#4141]) +16 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#1469] / [Intel XE#7399])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-lnl-1/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2352] / [Intel XE#7399])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#6312])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-render:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#7061] / [Intel XE#7356]) +5 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#6312] / [Intel XE#651]) +2 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#656]) +8 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2313]) +35 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_hdmi_inject@inject-audio:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#7308])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-1/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#6911] / [Intel XE#7466])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-10/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#4298] / [Intel XE#5873])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-8/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#6900] / [Intel XE#7362])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-lnl-1/igt@kms_joiner@basic-ultra-joiner.html
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#6911] / [Intel XE#7378])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-6/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_panel_fitting@legacy:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2486])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-10/igt@kms_panel_fitting@legacy.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#7283]) +6 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-1/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html
* igt@kms_plane_lowres@tiling-none@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#599] / [Intel XE#7382]) +3 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-lnl-8/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#5021] / [Intel XE#7377])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-1/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_multiple@tiling-y:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#5020] / [Intel XE#7348])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-9/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#3307])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-lnl-1/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_pm_backlight@fade:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#7376] / [Intel XE#870])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-6/igt@kms_pm_backlight@fade.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#1489]) +11 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2387] / [Intel XE#7429]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-7/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr-primary-render:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#2234] / [Intel XE#2850]) +9 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-5/igt@kms_psr@fbc-psr-primary-render.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#3904] / [Intel XE#7342]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#1435])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-2/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_sharpness_filter@invalid-filter-with-scaling-mode:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#6503]) +2 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-9/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html
* igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
- shard-lnl: [PASS][75] -> [FAIL][76] ([Intel XE#2142]) +1 other test fail
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4905-4c59525db84aca677fd9f052e662912ad9d88448/shard-lnl-1/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-lnl-2/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
* igt@xe_eudebug@basic-vm-access-faultable:
- shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#7636]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-lnl-5/igt@xe_eudebug@basic-vm-access-faultable.html
* igt@xe_eudebug_online@set-breakpoint-faultable:
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#7636]) +12 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-9/igt@xe_eudebug_online@set-breakpoint-faultable.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [PASS][79] -> [INCOMPLETE][80] ([Intel XE#6321])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4905-4c59525db84aca677fd9f052e662912ad9d88448/shard-bmg-9/igt@xe_evict@evict-mixed-many-threads-small.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-1/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_evict@evict-small-multi-queue-cm:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#7140])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-10/igt@xe_evict@evict-small-multi-queue-cm.html
* igt@xe_evict_ccs@evict-overcommit-standalone-nofree-samefd:
- shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#6540] / [Intel XE#688]) +1 other test skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-lnl-4/igt@xe_evict_ccs@evict-overcommit-standalone-nofree-samefd.html
* igt@xe_exec_balancer@no-exec-cm-parallel-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#7482]) +3 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-lnl-2/igt@xe_exec_balancer@no-exec-cm-parallel-userptr-invalidate-race.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2322] / [Intel XE#7372]) +11 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-7/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue.html
* igt@xe_exec_basic@multigpu-once-rebind:
- shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#1392])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-lnl-3/igt@xe_exec_basic@multigpu-once-rebind.html
* igt@xe_exec_fault_mode@many-multi-queue-imm:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#7136]) +10 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-2/igt@xe_exec_fault_mode@many-multi-queue-imm.html
* igt@xe_exec_fault_mode@once-multi-queue:
- shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#7136])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-lnl-1/igt@xe_exec_fault_mode@once-multi-queue.html
* igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-userptr:
- shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#6874]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-lnl-1/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-userptr.html
* igt@xe_exec_multi_queue@two-queues-priority:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#6874]) +37 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-3/igt@xe_exec_multi_queue@two-queues-priority.html
* igt@xe_exec_system_allocator@many-mmap-new-race:
- shard-bmg: NOTRUN -> [DMESG-WARN][90] ([Intel XE#7725]) +3 other tests dmesg-warn
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-6/igt@xe_exec_system_allocator@many-mmap-new-race.html
* igt@xe_exec_threads@threads-multi-queue-cm-fd-rebind:
- shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#7138]) +9 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-1/igt@xe_exec_threads@threads-multi-queue-cm-fd-rebind.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_device_create:
- shard-bmg: NOTRUN -> [ABORT][92] ([Intel XE#7578])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_device_create.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#2229])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-8/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_live_ktest@xe_eudebug:
- shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#2833])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-9/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_media_fill@media-fill:
- shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#2459] / [Intel XE#2596] / [Intel XE#7321] / [Intel XE#7453])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-7/igt@xe_media_fill@media-fill.html
* igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#6964]) +6 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-9/igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch.html
* igt@xe_non_msix@walker-interrupt-notification-non-msix:
- shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#7622])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-5/igt@xe_non_msix@walker-interrupt-notification-non-msix.html
* igt@xe_pm@d3cold-mocs:
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2284] / [Intel XE#7370]) +1 other test skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-9/igt@xe_pm@d3cold-mocs.html
* igt@xe_pxp@display-pxp-fb:
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#4733] / [Intel XE#7417]) +3 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-2/igt@xe_pxp@display-pxp-fb.html
* igt@xe_query@multigpu-query-invalid-query:
- shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#944]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-10/igt@xe_query@multigpu-query-invalid-query.html
* igt@xe_query@multigpu-query-invalid-size:
- shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#944])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-lnl-1/igt@xe_query@multigpu-query-invalid-size.html
* igt@xe_sriov_flr@flr-twice:
- shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#4273])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-lnl-8/igt@xe_sriov_flr@flr-twice.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-bmg: NOTRUN -> [DMESG-WARN][103] ([Intel XE#5545])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-6/igt@xe_wedged@wedged-at-any-timeout.html
#### Possible fixes ####
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180:
- shard-bmg: [INCOMPLETE][104] ([Intel XE#5643]) -> [PASS][105]
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4905-4c59525db84aca677fd9f052e662912ad9d88448/shard-bmg-3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-5/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-bmg: [SKIP][106] ([Intel XE#4879]) -> [PASS][107]
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4905-4c59525db84aca677fd9f052e662912ad9d88448/shard-bmg-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [SKIP][108] ([Intel XE#1503]) -> [PASS][109]
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4905-4c59525db84aca677fd9f052e662912ad9d88448/shard-bmg-10/igt@kms_hdr@invalid-hdr.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-5/igt@kms_hdr@invalid-hdr.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [FAIL][110] ([Intel XE#7340]) -> [PASS][111]
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4905-4c59525db84aca677fd9f052e662912ad9d88448/shard-lnl-5/igt@kms_pm_dc@dc5-psr.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-lnl-2/igt@kms_pm_dc@dc5-psr.html
#### Warnings ####
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: [SKIP][112] ([Intel XE#2311]) -> [SKIP][113] ([Intel XE#2312])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4905-4c59525db84aca677fd9f052e662912ad9d88448/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [FAIL][114] ([Intel XE#1729] / [Intel XE#7424]) -> [SKIP][115] ([Intel XE#2426] / [Intel XE#5848])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4905-4c59525db84aca677fd9f052e662912ad9d88448/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/shard-bmg-3/igt@kms_tiled_display@basic-test-pattern.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
[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#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[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#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156
[Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
[Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4879]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4879
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5408]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5408
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5643]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5643
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#5873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5873
[Intel XE#5882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5882
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#6127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6127
[Intel XE#6128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6128
[Intel XE#6266]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6266
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
[Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#6900]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6900
[Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308
[Intel XE#7321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7321
[Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
[Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348
[Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7354
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[Intel XE#7361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7361
[Intel XE#7362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7362
[Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
[Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377
[Intel XE#7378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7378
[Intel XE#7382]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7382
[Intel XE#7387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7387
[Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
[Intel XE#7425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7425
[Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429
[Intel XE#7435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7435
[Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439
[Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442
[Intel XE#7453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7453
[Intel XE#7466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7466
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7578]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7578
[Intel XE#7622]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7622
[Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
[Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
[Intel XE#7725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7725
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8859 -> IGT_8860
* Linux: xe-4905-4c59525db84aca677fd9f052e662912ad9d88448 -> xe-pw-164739v3
IGT_8859: 8d537f073bd4d30da991ab868bee2310ca664401 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8860: db5eb72e9ca0c8f7e39b9bfd88da1b28a85c9f8f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4905-4c59525db84aca677fd9f052e662912ad9d88448: 4c59525db84aca677fd9f052e662912ad9d88448
xe-pw-164739v3: 164739v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164739v3/index.html
[-- Attachment #2: Type: text/html, Size: 44715 bytes --]
^ permalink raw reply [flat|nested] 22+ messages in thread
* RE: [PATCH] [RFC]: drm/i915/display: Use ceiling division for NV12 UV surface offset calculation
2026-04-15 17:06 ` Srinivas, Vidya
@ 2026-04-17 2:03 ` Srinivas, Vidya
0 siblings, 0 replies; 22+ messages in thread
From: Srinivas, Vidya @ 2026-04-17 2:03 UTC (permalink / raw)
To: Nikula, Jani, intel-gfx@lists.freedesktop.org
Cc: intel-xe@lists.freedesktop.org, Shankar, Uma
> -----Original Message-----
> From: Srinivas, Vidya
> Sent: 15 April 2026 22:36
> To: Nikula, Jani <jani.nikula@intel.com>; intel-gfx@lists.freedesktop.org
> Cc: intel-xe@lists.freedesktop.org; Shankar, Uma <uma.shankar@intel.com>
> Subject: RE: [PATCH] [RFC]: drm/i915/display: Use ceiling division for NV12 UV
> surface offset calculation
>
>
>
> > -----Original Message-----
> > From: Nikula, Jani <jani.nikula@intel.com>
> > Sent: 15 April 2026 17:30
> > To: Srinivas, Vidya <vidya.srinivas@intel.com>;
> > intel-gfx@lists.freedesktop.org
> > Cc: intel-xe@lists.freedesktop.org; Shankar, Uma
> > <uma.shankar@intel.com>; Srinivas, Vidya <vidya.srinivas@intel.com>
> > Subject: Re: [PATCH] [RFC]: drm/i915/display: Use ceiling division for
> > NV12 UV surface offset calculation
> >
> > On Wed, 15 Apr 2026, Vidya Srinivas <vidya.srinivas@intel.com> wrote:
> > > For LNL+, odd source size and panning for YUV 422/420 surfaces is
> > > supported. However, it requires the UV (chroma) surface Start X/Y
> > > and width/height to be calculated as ceiling(half of Y plane value)
> > > rather than floor.
> > >
> > > The current code uses (>> 17) which combines the U16.16 fixed-point
> > > to integer conversion (>> 16) with a divide-by-2 for chroma
> > > subsampling (>> 1) into a single floor division. For odd Y plane
> > > values this produces an off-by-one error in the UV plane offset.
> > >
> > > On Android systems we see PLANE ATS fault when NV12 overlays are
> > > used with odd source dimensions:
> > >
> > > [ 126.854200] xe 0000:00:02.0: [drm:intel_atomic_setup_scaler [xe]]
> > > [CRTC:148:pipe A] attached scaler id 0.0 to PLANE:33 [ 126.854617]
> > > xe
> > > 0000:00:02.0: [drm:skl_update_scaler [xe]] [CRTC:148:pipe A]
> > > scaler_user index 0.0: staged scaling request for 1279x719->1340x753
> > > [ 126.854837] xe 0000:00:02.0: [drm:intel_plane_atomic_check [xe]]
> > > UV plane [PLANE:33:plane 1A] using Y plane [PLANE:123:plane 4A] [
> > > 126.854926] xe 0000:00:02.0: [drm] *ERROR* [CRTC:148:pipe A] PLANE
> > > ATS fault
> > >
> > > With Y plane width 1279:
> > > floor(1279/2) = 639 (current)
> > > ceil(1279/2) = 640 (required)
> > >
> > > Use DIV_ROUND_UP(value, 1 << 17) for the ceiling division of the
> > > U16.16 fixed-point source coordinates, preserving sub-pixel precision.
> > > This is a no-op for even values since ceiling and floor are equal
> > > when the dividend is even.
> > >
> > > v2: Use DIV_ROUND_UP(value, 1 << 17) to preserve sub-pixel precision
> > > while making the ceiling division readable (Jani, Uma)
> > >
> > > Signed-off-by: Vidya Srinivas <vidya.srinivas@intel.com>
> > > ---
> > > drivers/gpu/drm/i915/display/skl_universal_plane.c | 14
> > > ++++++++++----
> > > 1 file changed, 10 insertions(+), 4 deletions(-)
> > >
> > > diff --git a/drivers/gpu/drm/i915/display/skl_universal_plane.c
> > > b/drivers/gpu/drm/i915/display/skl_universal_plane.c
> > > index 7a9d494334b5..1de79ff65253 100644
> > > --- a/drivers/gpu/drm/i915/display/skl_universal_plane.c
> > > +++ b/drivers/gpu/drm/i915/display/skl_universal_plane.c
> > > @@ -2139,10 +2139,16 @@ static int skl_check_nv12_aux_surface(struct
> > intel_plane_state *plane_state)
> > > int min_height = intel_plane_min_height(plane, fb, uv_plane,
> > rotation);
> > > int max_width = intel_plane_max_width(plane, fb, uv_plane,
> > rotation);
> > > int max_height = intel_plane_max_height(plane, fb, uv_plane,
> > rotation);
> > > - int x = plane_state->uapi.src.x1 >> 17;
> > > - int y = plane_state->uapi.src.y1 >> 17;
> > > - int w = drm_rect_width(&plane_state->uapi.src) >> 17;
> > > - int h = drm_rect_height(&plane_state->uapi.src) >> 17;
> > > +
> > > + /*
> > > + * LNL+ UV surface start/size =
> > > + * ceiling(half of Y plane start/size). Use ceiling division
> > > + * unconditionally; it is a no-op for even values.
> > > + */
> > > + int x = DIV_ROUND_UP(plane_state->uapi.src.x1, 1 << 17);
> > > + int y = DIV_ROUND_UP(plane_state->uapi.src.y1, 1 << 17);
> > > + int w = DIV_ROUND_UP(drm_rect_width(&plane_state->uapi.src), 1
> > << 17);
> > > + int h = DIV_ROUND_UP(drm_rect_height(&plane_state->uapi.src), 1
> > <<
> > > +17);
> >
> > Like I said, my main problem with the original >> 17 is that it
> > combines two completely separate things in one: division by two, and
> > getting the integer part of a fixed-point number.
> >
> > Ideally you'd have helpers for first doing U16.16 division by 2, in
> > fixed-point domain, and then getting the ceiling conversion to int.
> >
>
> Hello Jani
> Thank you very much.
> Tried adding helpers in v3
> https://patchwork.freedesktop.org/patch/718493/?series=164739&rev=3
> Kindly have a check and suggest.
Hello Jani,
Sorry to bother you. I added the helpers you suggested.
But I understand it might not be something like what you had expected.
If this still isn't the right approach, could you kindly help land a fix in whatever form you see fit?
This is a blocker for Google Android, so really appreciate getting it unblocked.
Thank you so much.
Regards
Vidya
>
> Regards
> Vidya
>
> > BR,
> > Jani.
> >
> >
> > > u32 offset;
> > >
> > > /* FIXME not quite sure how/if these apply to the chroma plane */
> >
> > --
> > Jani Nikula, Intel
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [PATCH] [RFC v3]: drm/i915/display: Use ceiling division for NV12 UV surface offset calculation
2026-04-15 16:58 ` [PATCH] [RFC v3]: drm/i915/display: Use ceiling division for NV12 UV surface offset calculation Vidya Srinivas
@ 2026-04-29 11:07 ` Juha-Pekka Heikkilä
2026-04-29 11:08 ` Srinivas, Vidya
0 siblings, 1 reply; 22+ messages in thread
From: Juha-Pekka Heikkilä @ 2026-04-29 11:07 UTC (permalink / raw)
To: Vidya Srinivas, intel-gfx; +Cc: intel-xe, uma.shankar, jani.nikula
Look ok to me. I tested this make related failing test pass and I didn't
spot planar formats or scaler related failures in results for this patch.
Reviewed-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
On 15/04/2026 19.58, Vidya Srinivas wrote:
> For LNL+, odd source size and panning for YUV 422/420 surfaces is
> supported. However, it requires the UV (chroma) surface Start X/Y and
> width/height to be calculated as ceiling(half of Y plane value) rather
> than floor.
>
> The current code uses (>> 17) which combines the U16.16 fixed-point to
> integer conversion (>> 16) with a divide-by-2 for chroma subsampling
> (>> 1) into a single floor division. For odd Y plane values this
> produces an off-by-one error in the UV plane offset.
>
> On Android systems we see PLANE ATS fault when NV12 overlays are
> used with odd source dimensions:
>
> [ 126.854200] xe 0000:00:02.0: [drm:intel_atomic_setup_scaler [xe]] [CRTC:148:pipe A] attached scaler id 0.0 to PLANE:33
> [ 126.854617] xe 0000:00:02.0: [drm:skl_update_scaler [xe]] [CRTC:148:pipe A] scaler_user index 0.0: staged scaling request for 1279x719->1340x753
> [ 126.854837] xe 0000:00:02.0: [drm:intel_plane_atomic_check [xe]] UV plane [PLANE:33:plane 1A] using Y plane [PLANE:123:plane 4A]
> [ 126.854926] xe 0000:00:02.0: [drm] *ERROR* [CRTC:148:pipe A] PLANE ATS fault
>
> With Y plane width 1279:
> floor(1279/2) = 639 (current)
> ceil(1279/2) = 640 (required)
>
> Introduce fp_16_16_div2() and fp_16_16_to_int_ceil() helpers to cleanly
> separate the two operations: first halve the U16.16 fixed-point value
> for chroma subsampling (staying in fixed-point domain), then convert
> to integer with ceiling rounding.
>
> v2: Use DIV_ROUND_UP(value, 1 << 17) to preserve sub-pixel precision
> while making the ceiling division readable (Jani, Uma)
>
> v3: Split into two helpers - fp_16_16_div2() for fixed-point division
> by 2 and fp_16_16_to_int_ceil() for ceiling conversion to integer,
> cleanly separating chroma subsampling from fixed-point to integer
> conversion (Jani)
>
> Signed-off-by: Vidya Srinivas <vidya.srinivas@intel.com>
> ---
> .../drm/i915/display/skl_universal_plane.c | 27 ++++++++++++++++---
> 1 file changed, 23 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/skl_universal_plane.c b/drivers/gpu/drm/i915/display/skl_universal_plane.c
> index 7a9d494334b5..e772b0d716c7 100644
> --- a/drivers/gpu/drm/i915/display/skl_universal_plane.c
> +++ b/drivers/gpu/drm/i915/display/skl_universal_plane.c
> @@ -2126,6 +2126,19 @@ static int skl_check_main_surface(struct intel_plane_state *plane_state)
> return 0;
> }
>
> +
> +/* Divide a U16.16 fixed-point value by 2, staying in fixed-point domain */
> +static inline u32 fp_16_16_div2(u32 fp)
> +{
> + return fp >> 1;
> +}
> +
> +/* Convert a U16.16 fixed-point value to integer, rounding up */
> +static inline int fp_16_16_to_int_ceil(u32 fp)
> +{
> + return DIV_ROUND_UP(fp, 1 << 16);
> +}
> +
> static int skl_check_nv12_aux_surface(struct intel_plane_state *plane_state)
> {
> struct intel_display *display = to_intel_display(plane_state);
> @@ -2139,10 +2152,16 @@ static int skl_check_nv12_aux_surface(struct intel_plane_state *plane_state)
> int min_height = intel_plane_min_height(plane, fb, uv_plane, rotation);
> int max_width = intel_plane_max_width(plane, fb, uv_plane, rotation);
> int max_height = intel_plane_max_height(plane, fb, uv_plane, rotation);
> - int x = plane_state->uapi.src.x1 >> 17;
> - int y = plane_state->uapi.src.y1 >> 17;
> - int w = drm_rect_width(&plane_state->uapi.src) >> 17;
> - int h = drm_rect_height(&plane_state->uapi.src) >> 17;
> +
> + /*
> + * LNL+ UV surface start/size =
> + * ceiling(half of Y plane start/size). Use ceiling division
> + * unconditionally; it is a no-op for even values.
> + */
> + int x = fp_16_16_to_int_ceil(fp_16_16_div2(plane_state->uapi.src.x1));
> + int y = fp_16_16_to_int_ceil(fp_16_16_div2(plane_state->uapi.src.y1));
> + int w = fp_16_16_to_int_ceil(fp_16_16_div2(drm_rect_width(&plane_state->uapi.src)));
> + int h = fp_16_16_to_int_ceil(fp_16_16_div2(drm_rect_height(&plane_state->uapi.src)));
> u32 offset;
>
> /* FIXME not quite sure how/if these apply to the chroma plane */
^ permalink raw reply [flat|nested] 22+ messages in thread
* RE: [PATCH] [RFC v3]: drm/i915/display: Use ceiling division for NV12 UV surface offset calculation
2026-04-29 11:07 ` Juha-Pekka Heikkilä
@ 2026-04-29 11:08 ` Srinivas, Vidya
0 siblings, 0 replies; 22+ messages in thread
From: Srinivas, Vidya @ 2026-04-29 11:08 UTC (permalink / raw)
To: Juha-Pekka Heikkilä, intel-gfx@lists.freedesktop.org
Cc: intel-xe@lists.freedesktop.org, Shankar, Uma, Nikula, Jani
> -----Original Message-----
> From: Juha-Pekka Heikkilä <juhapekka.heikkila@gmail.com>
> Sent: 29 April 2026 16:37
> To: Srinivas, Vidya <vidya.srinivas@intel.com>; intel-gfx@lists.freedesktop.org
> Cc: intel-xe@lists.freedesktop.org; Shankar, Uma <uma.shankar@intel.com>;
> Nikula, Jani <jani.nikula@intel.com>
> Subject: Re: [PATCH] [RFC v3]: drm/i915/display: Use ceiling division for NV12
> UV surface offset calculation
>
> Look ok to me. I tested this make related failing test pass and I didn't spot
> planar formats or scaler related failures in results for this patch.
>
> Reviewed-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
Thank you very much Juha.
Regards
Vidya
>
> On 15/04/2026 19.58, Vidya Srinivas wrote:
> > For LNL+, odd source size and panning for YUV 422/420 surfaces is
> > supported. However, it requires the UV (chroma) surface Start X/Y and
> > width/height to be calculated as ceiling(half of Y plane value) rather
> > than floor.
> >
> > The current code uses (>> 17) which combines the U16.16 fixed-point to
> > integer conversion (>> 16) with a divide-by-2 for chroma subsampling
> > (>> 1) into a single floor division. For odd Y plane values this
> > produces an off-by-one error in the UV plane offset.
> >
> > On Android systems we see PLANE ATS fault when NV12 overlays are used
> > with odd source dimensions:
> >
> > [ 126.854200] xe 0000:00:02.0: [drm:intel_atomic_setup_scaler [xe]]
> > [CRTC:148:pipe A] attached scaler id 0.0 to PLANE:33 [ 126.854617] xe
> > 0000:00:02.0: [drm:skl_update_scaler [xe]] [CRTC:148:pipe A]
> > scaler_user index 0.0: staged scaling request for 1279x719->1340x753 [
> > 126.854837] xe 0000:00:02.0: [drm:intel_plane_atomic_check [xe]] UV
> > plane [PLANE:33:plane 1A] using Y plane [PLANE:123:plane 4A] [
> > 126.854926] xe 0000:00:02.0: [drm] *ERROR* [CRTC:148:pipe A] PLANE ATS
> > fault
> >
> > With Y plane width 1279:
> > floor(1279/2) = 639 (current)
> > ceil(1279/2) = 640 (required)
> >
> > Introduce fp_16_16_div2() and fp_16_16_to_int_ceil() helpers to
> > cleanly separate the two operations: first halve the U16.16
> > fixed-point value for chroma subsampling (staying in fixed-point
> > domain), then convert to integer with ceiling rounding.
> >
> > v2: Use DIV_ROUND_UP(value, 1 << 17) to preserve sub-pixel precision
> > while making the ceiling division readable (Jani, Uma)
> >
> > v3: Split into two helpers - fp_16_16_div2() for fixed-point division
> > by 2 and fp_16_16_to_int_ceil() for ceiling conversion to integer,
> > cleanly separating chroma subsampling from fixed-point to integer
> > conversion (Jani)
> >
> > Signed-off-by: Vidya Srinivas <vidya.srinivas@intel.com>
> > ---
> > .../drm/i915/display/skl_universal_plane.c | 27 ++++++++++++++++---
> > 1 file changed, 23 insertions(+), 4 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/i915/display/skl_universal_plane.c
> > b/drivers/gpu/drm/i915/display/skl_universal_plane.c
> > index 7a9d494334b5..e772b0d716c7 100644
> > --- a/drivers/gpu/drm/i915/display/skl_universal_plane.c
> > +++ b/drivers/gpu/drm/i915/display/skl_universal_plane.c
> > @@ -2126,6 +2126,19 @@ static int skl_check_main_surface(struct
> intel_plane_state *plane_state)
> > return 0;
> > }
> >
> > +
> > +/* Divide a U16.16 fixed-point value by 2, staying in fixed-point
> > +domain */ static inline u32 fp_16_16_div2(u32 fp) {
> > + return fp >> 1;
> > +}
> > +
> > +/* Convert a U16.16 fixed-point value to integer, rounding up */
> > +static inline int fp_16_16_to_int_ceil(u32 fp) {
> > + return DIV_ROUND_UP(fp, 1 << 16);
> > +}
> > +
> > static int skl_check_nv12_aux_surface(struct intel_plane_state
> *plane_state)
> > {
> > struct intel_display *display = to_intel_display(plane_state); @@
> > -2139,10 +2152,16 @@ static int skl_check_nv12_aux_surface(struct
> intel_plane_state *plane_state)
> > int min_height = intel_plane_min_height(plane, fb, uv_plane,
> rotation);
> > int max_width = intel_plane_max_width(plane, fb, uv_plane,
> rotation);
> > int max_height = intel_plane_max_height(plane, fb, uv_plane,
> rotation);
> > - int x = plane_state->uapi.src.x1 >> 17;
> > - int y = plane_state->uapi.src.y1 >> 17;
> > - int w = drm_rect_width(&plane_state->uapi.src) >> 17;
> > - int h = drm_rect_height(&plane_state->uapi.src) >> 17;
> > +
> > + /*
> > + * LNL+ UV surface start/size =
> > + * ceiling(half of Y plane start/size). Use ceiling division
> > + * unconditionally; it is a no-op for even values.
> > + */
> > + int x = fp_16_16_to_int_ceil(fp_16_16_div2(plane_state-
> >uapi.src.x1));
> > + int y = fp_16_16_to_int_ceil(fp_16_16_div2(plane_state-
> >uapi.src.y1));
> > + int w =
> fp_16_16_to_int_ceil(fp_16_16_div2(drm_rect_width(&plane_state-
> >uapi.src)));
> > + int h =
> > +fp_16_16_to_int_ceil(fp_16_16_div2(drm_rect_height(&plane_state->uapi
> > +.src)));
> > u32 offset;
> >
> > /* FIXME not quite sure how/if these apply to the chroma plane */
^ permalink raw reply [flat|nested] 22+ messages in thread
end of thread, other threads:[~2026-04-29 11:08 UTC | newest]
Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-11 17:15 [PATCH] [RFC]: drm/i915/display: Use ceiling division for NV12 UV surface offset calculation Vidya Srinivas
2026-04-11 17:27 ` ✓ CI.KUnit: success for : " Patchwork
2026-04-11 18:14 ` ✓ Xe.CI.BAT: " Patchwork
2026-04-11 19:03 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-04-14 15:42 ` [PATCH] [RFC]: " Jani Nikula
2026-04-14 17:10 ` Srinivas, Vidya
2026-04-14 17:59 ` Shankar, Uma
2026-04-15 0:23 ` Srinivas, Vidya
2026-04-15 0:15 ` Vidya Srinivas
2026-04-15 11:59 ` Jani Nikula
2026-04-15 17:06 ` Srinivas, Vidya
2026-04-17 2:03 ` Srinivas, Vidya
2026-04-15 1:10 ` ✓ CI.KUnit: success for : drm/i915/display: Use ceiling division for NV12 UV surface offset calculation (rev2) Patchwork
2026-04-15 2:10 ` ✓ Xe.CI.BAT: " Patchwork
2026-04-15 3:01 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-04-15 16:58 ` [PATCH] [RFC v3]: drm/i915/display: Use ceiling division for NV12 UV surface offset calculation Vidya Srinivas
2026-04-29 11:07 ` Juha-Pekka Heikkilä
2026-04-29 11:08 ` Srinivas, Vidya
2026-04-15 17:09 ` ✗ CI.checkpatch: warning for : drm/i915/display: Use ceiling division for NV12 UV surface offset calculation (rev3) Patchwork
2026-04-15 17:11 ` ✓ CI.KUnit: success " Patchwork
2026-04-15 18:08 ` ✓ Xe.CI.BAT: " Patchwork
2026-04-15 20:00 ` ✗ Xe.CI.FULL: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox