Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v4] drm/xe/ptl: Disable DCC on PTL
@ 2026-01-24  0:59 Vinay Belgaumkar
  2026-01-24  1:09 ` ✓ CI.KUnit: success for drm/xe/ptl: Disable DCC on PTL (rev5) Patchwork
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: Vinay Belgaumkar @ 2026-01-24  0:59 UTC (permalink / raw)
  To: intel-xe; +Cc: Vinay Belgaumkar, Daniele Ceraolo Spurio, Rodrigo Vivi

On PTL, the recommendation is to disable DCC(Duty Cycle Control) as
it may cause some regressions due to added latencies. Upcoming GuC
releases will disable DCC on PTL as well, but we need to force it in
KMD so that this behavior is propagated to older kernels.

v2: Update commit message (Rodrigo)
v3: Rebase
v4: Fix BAT issue

Fixes: 5cdb71d3b0db ("drm/xe/ptl: Add GuC FW definition for PTL")
Cc: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Vinay Belgaumkar<vinay.belgaumkar@intel.com>
---
 drivers/gpu/drm/xe/xe_guc_pc.c | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/drivers/gpu/drm/xe/xe_guc_pc.c b/drivers/gpu/drm/xe/xe_guc_pc.c
index 54702a0fd05b..5e5495a39a3c 100644
--- a/drivers/gpu/drm/xe/xe_guc_pc.c
+++ b/drivers/gpu/drm/xe/xe_guc_pc.c
@@ -1198,6 +1198,36 @@ int xe_guc_pc_set_power_profile(struct xe_guc_pc *pc, const char *buf)
 	return ret;
 }
 
+static int pc_action_set_dcc(struct xe_guc_pc *pc, bool enable)
+{
+	int ret;
+
+	ret = pc_action_set_param(pc,
+				  SLPC_PARAM_TASK_ENABLE_DCC,
+				  enable);
+	if (!ret)
+		return pc_action_set_param(pc,
+					   SLPC_PARAM_TASK_DISABLE_DCC,
+					   !enable);
+	else
+		return ret;
+}
+
+static int pc_modify_defaults(struct xe_guc_pc *pc)
+{
+	struct xe_device *xe = pc_to_xe(pc);
+	struct xe_gt *gt = pc_to_gt(pc);
+	int ret = 0;
+
+	if (xe->info.platform == XE_PANTHERLAKE) {
+		ret = pc_action_set_dcc(pc, false);
+		if (unlikely(ret))
+			xe_gt_err(gt, "Failed to modify DCC default: %pe\n", ERR_PTR(ret));
+	}
+
+	return ret;
+}
+
 /**
  * xe_guc_pc_start - Start GuC's Power Conservation component
  * @pc: Xe_GuC_PC instance
@@ -1249,6 +1279,10 @@ int xe_guc_pc_start(struct xe_guc_pc *pc)
 			   ktime_ms_delta(ktime_get(), earlier));
 	}
 
+	ret = pc_modify_defaults(pc);
+	if (ret)
+		return ret;
+
 	ret = pc_init_freqs(pc);
 	if (ret)
 		return ret;
-- 
2.38.1


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* ✓ CI.KUnit: success for drm/xe/ptl: Disable DCC on PTL (rev5)
  2026-01-24  0:59 [PATCH v4] drm/xe/ptl: Disable DCC on PTL Vinay Belgaumkar
@ 2026-01-24  1:09 ` Patchwork
  2026-01-24  9:09 ` ✗ Xe.CI.Full: failure " Patchwork
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-01-24  1:09 UTC (permalink / raw)
  To: Vinay Belgaumkar; +Cc: intel-xe

== Series Details ==

Series: drm/xe/ptl: Disable DCC on PTL (rev5)
URL   : https://patchwork.freedesktop.org/series/160388/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[01:07:51] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[01:07:55] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[01:08:27] Starting KUnit Kernel (1/1)...
[01:08:27] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[01:08:27] ================== guc_buf (11 subtests) ===================
[01:08:27] [PASSED] test_smallest
[01:08:27] [PASSED] test_largest
[01:08:27] [PASSED] test_granular
[01:08:27] [PASSED] test_unique
[01:08:27] [PASSED] test_overlap
[01:08:27] [PASSED] test_reusable
[01:08:27] [PASSED] test_too_big
[01:08:27] [PASSED] test_flush
[01:08:27] [PASSED] test_lookup
[01:08:27] [PASSED] test_data
[01:08:27] [PASSED] test_class
[01:08:27] ===================== [PASSED] guc_buf =====================
[01:08:27] =================== guc_dbm (7 subtests) ===================
[01:08:27] [PASSED] test_empty
[01:08:27] [PASSED] test_default
[01:08:27] ======================== test_size  ========================
[01:08:27] [PASSED] 4
[01:08:27] [PASSED] 8
[01:08:27] [PASSED] 32
[01:08:27] [PASSED] 256
[01:08:27] ==================== [PASSED] test_size ====================
[01:08:27] ======================= test_reuse  ========================
[01:08:27] [PASSED] 4
[01:08:27] [PASSED] 8
[01:08:27] [PASSED] 32
[01:08:27] [PASSED] 256
[01:08:27] =================== [PASSED] test_reuse ====================
[01:08:27] =================== test_range_overlap  ====================
[01:08:27] [PASSED] 4
[01:08:27] [PASSED] 8
[01:08:27] [PASSED] 32
[01:08:27] [PASSED] 256
[01:08:27] =============== [PASSED] test_range_overlap ================
[01:08:27] =================== test_range_compact  ====================
[01:08:27] [PASSED] 4
[01:08:27] [PASSED] 8
[01:08:27] [PASSED] 32
[01:08:27] [PASSED] 256
[01:08:27] =============== [PASSED] test_range_compact ================
[01:08:27] ==================== test_range_spare  =====================
[01:08:27] [PASSED] 4
[01:08:27] [PASSED] 8
[01:08:27] [PASSED] 32
[01:08:27] [PASSED] 256
[01:08:27] ================ [PASSED] test_range_spare =================
[01:08:27] ===================== [PASSED] guc_dbm =====================
[01:08:27] =================== guc_idm (6 subtests) ===================
[01:08:27] [PASSED] bad_init
[01:08:27] [PASSED] no_init
[01:08:27] [PASSED] init_fini
[01:08:27] [PASSED] check_used
[01:08:27] [PASSED] check_quota
[01:08:27] [PASSED] check_all
[01:08:27] ===================== [PASSED] guc_idm =====================
[01:08:27] ================== no_relay (3 subtests) ===================
[01:08:27] [PASSED] xe_drops_guc2pf_if_not_ready
[01:08:27] [PASSED] xe_drops_guc2vf_if_not_ready
[01:08:27] [PASSED] xe_rejects_send_if_not_ready
[01:08:27] ==================== [PASSED] no_relay =====================
[01:08:27] ================== pf_relay (14 subtests) ==================
[01:08:27] [PASSED] pf_rejects_guc2pf_too_short
[01:08:27] [PASSED] pf_rejects_guc2pf_too_long
[01:08:27] [PASSED] pf_rejects_guc2pf_no_payload
[01:08:27] [PASSED] pf_fails_no_payload
[01:08:27] [PASSED] pf_fails_bad_origin
[01:08:27] [PASSED] pf_fails_bad_type
[01:08:27] [PASSED] pf_txn_reports_error
[01:08:27] [PASSED] pf_txn_sends_pf2guc
[01:08:27] [PASSED] pf_sends_pf2guc
[01:08:27] [SKIPPED] pf_loopback_nop
[01:08:27] [SKIPPED] pf_loopback_echo
[01:08:27] [SKIPPED] pf_loopback_fail
[01:08:27] [SKIPPED] pf_loopback_busy
[01:08:27] [SKIPPED] pf_loopback_retry
[01:08:27] ==================== [PASSED] pf_relay =====================
[01:08:27] ================== vf_relay (3 subtests) ===================
[01:08:27] [PASSED] vf_rejects_guc2vf_too_short
[01:08:27] [PASSED] vf_rejects_guc2vf_too_long
[01:08:27] [PASSED] vf_rejects_guc2vf_no_payload
[01:08:27] ==================== [PASSED] vf_relay =====================
[01:08:27] ================ pf_gt_config (6 subtests) =================
[01:08:27] [PASSED] fair_contexts_1vf
[01:08:27] [PASSED] fair_doorbells_1vf
[01:08:27] [PASSED] fair_ggtt_1vf
[01:08:27] ====================== fair_contexts  ======================
[01:08:27] [PASSED] 1 VF
[01:08:27] [PASSED] 2 VFs
[01:08:27] [PASSED] 3 VFs
[01:08:27] [PASSED] 4 VFs
[01:08:27] [PASSED] 5 VFs
[01:08:27] [PASSED] 6 VFs
[01:08:27] [PASSED] 7 VFs
[01:08:27] [PASSED] 8 VFs
[01:08:27] [PASSED] 9 VFs
[01:08:27] [PASSED] 10 VFs
[01:08:27] [PASSED] 11 VFs
[01:08:27] [PASSED] 12 VFs
[01:08:27] [PASSED] 13 VFs
[01:08:27] [PASSED] 14 VFs
[01:08:27] [PASSED] 15 VFs
[01:08:27] [PASSED] 16 VFs
[01:08:27] [PASSED] 17 VFs
[01:08:27] [PASSED] 18 VFs
[01:08:27] [PASSED] 19 VFs
[01:08:27] [PASSED] 20 VFs
[01:08:27] [PASSED] 21 VFs
[01:08:27] [PASSED] 22 VFs
[01:08:27] [PASSED] 23 VFs
[01:08:27] [PASSED] 24 VFs
[01:08:27] [PASSED] 25 VFs
[01:08:27] [PASSED] 26 VFs
[01:08:27] [PASSED] 27 VFs
[01:08:27] [PASSED] 28 VFs
[01:08:27] [PASSED] 29 VFs
[01:08:27] [PASSED] 30 VFs
[01:08:27] [PASSED] 31 VFs
[01:08:27] [PASSED] 32 VFs
[01:08:27] [PASSED] 33 VFs
[01:08:27] [PASSED] 34 VFs
[01:08:27] [PASSED] 35 VFs
[01:08:27] [PASSED] 36 VFs
[01:08:27] [PASSED] 37 VFs
[01:08:27] [PASSED] 38 VFs
[01:08:27] [PASSED] 39 VFs
[01:08:27] [PASSED] 40 VFs
[01:08:27] [PASSED] 41 VFs
[01:08:27] [PASSED] 42 VFs
[01:08:27] [PASSED] 43 VFs
[01:08:27] [PASSED] 44 VFs
[01:08:27] [PASSED] 45 VFs
[01:08:27] [PASSED] 46 VFs
[01:08:27] [PASSED] 47 VFs
[01:08:27] [PASSED] 48 VFs
[01:08:27] [PASSED] 49 VFs
[01:08:27] [PASSED] 50 VFs
[01:08:27] [PASSED] 51 VFs
[01:08:27] [PASSED] 52 VFs
[01:08:27] [PASSED] 53 VFs
[01:08:27] [PASSED] 54 VFs
[01:08:27] [PASSED] 55 VFs
[01:08:27] [PASSED] 56 VFs
[01:08:27] [PASSED] 57 VFs
[01:08:27] [PASSED] 58 VFs
[01:08:27] [PASSED] 59 VFs
[01:08:27] [PASSED] 60 VFs
[01:08:27] [PASSED] 61 VFs
[01:08:27] [PASSED] 62 VFs
[01:08:27] [PASSED] 63 VFs
[01:08:27] ================== [PASSED] fair_contexts ==================
[01:08:27] ===================== fair_doorbells  ======================
[01:08:27] [PASSED] 1 VF
[01:08:27] [PASSED] 2 VFs
[01:08:27] [PASSED] 3 VFs
[01:08:27] [PASSED] 4 VFs
[01:08:27] [PASSED] 5 VFs
[01:08:27] [PASSED] 6 VFs
[01:08:27] [PASSED] 7 VFs
[01:08:27] [PASSED] 8 VFs
[01:08:27] [PASSED] 9 VFs
[01:08:27] [PASSED] 10 VFs
[01:08:27] [PASSED] 11 VFs
[01:08:27] [PASSED] 12 VFs
[01:08:27] [PASSED] 13 VFs
[01:08:27] [PASSED] 14 VFs
[01:08:27] [PASSED] 15 VFs
[01:08:27] [PASSED] 16 VFs
[01:08:27] [PASSED] 17 VFs
[01:08:27] [PASSED] 18 VFs
[01:08:27] [PASSED] 19 VFs
[01:08:27] [PASSED] 20 VFs
[01:08:27] [PASSED] 21 VFs
[01:08:27] [PASSED] 22 VFs
[01:08:27] [PASSED] 23 VFs
[01:08:27] [PASSED] 24 VFs
[01:08:27] [PASSED] 25 VFs
[01:08:27] [PASSED] 26 VFs
[01:08:27] [PASSED] 27 VFs
[01:08:27] [PASSED] 28 VFs
[01:08:27] [PASSED] 29 VFs
[01:08:27] [PASSED] 30 VFs
[01:08:27] [PASSED] 31 VFs
[01:08:27] [PASSED] 32 VFs
[01:08:27] [PASSED] 33 VFs
[01:08:27] [PASSED] 34 VFs
[01:08:27] [PASSED] 35 VFs
[01:08:27] [PASSED] 36 VFs
[01:08:27] [PASSED] 37 VFs
[01:08:27] [PASSED] 38 VFs
[01:08:27] [PASSED] 39 VFs
[01:08:27] [PASSED] 40 VFs
[01:08:27] [PASSED] 41 VFs
[01:08:27] [PASSED] 42 VFs
[01:08:27] [PASSED] 43 VFs
[01:08:27] [PASSED] 44 VFs
[01:08:27] [PASSED] 45 VFs
[01:08:27] [PASSED] 46 VFs
[01:08:27] [PASSED] 47 VFs
[01:08:27] [PASSED] 48 VFs
[01:08:27] [PASSED] 49 VFs
[01:08:27] [PASSED] 50 VFs
[01:08:27] [PASSED] 51 VFs
[01:08:27] [PASSED] 52 VFs
[01:08:27] [PASSED] 53 VFs
[01:08:27] [PASSED] 54 VFs
[01:08:27] [PASSED] 55 VFs
[01:08:27] [PASSED] 56 VFs
[01:08:27] [PASSED] 57 VFs
[01:08:27] [PASSED] 58 VFs
[01:08:27] [PASSED] 59 VFs
[01:08:27] [PASSED] 60 VFs
[01:08:27] [PASSED] 61 VFs
[01:08:27] [PASSED] 62 VFs
[01:08:27] [PASSED] 63 VFs
[01:08:27] ================= [PASSED] fair_doorbells ==================
[01:08:27] ======================== fair_ggtt  ========================
[01:08:27] [PASSED] 1 VF
[01:08:27] [PASSED] 2 VFs
[01:08:27] [PASSED] 3 VFs
[01:08:27] [PASSED] 4 VFs
[01:08:27] [PASSED] 5 VFs
[01:08:27] [PASSED] 6 VFs
[01:08:27] [PASSED] 7 VFs
[01:08:27] [PASSED] 8 VFs
[01:08:27] [PASSED] 9 VFs
[01:08:27] [PASSED] 10 VFs
[01:08:27] [PASSED] 11 VFs
[01:08:27] [PASSED] 12 VFs
[01:08:27] [PASSED] 13 VFs
[01:08:27] [PASSED] 14 VFs
[01:08:27] [PASSED] 15 VFs
[01:08:27] [PASSED] 16 VFs
[01:08:27] [PASSED] 17 VFs
[01:08:27] [PASSED] 18 VFs
[01:08:27] [PASSED] 19 VFs
[01:08:27] [PASSED] 20 VFs
[01:08:27] [PASSED] 21 VFs
[01:08:27] [PASSED] 22 VFs
[01:08:27] [PASSED] 23 VFs
[01:08:27] [PASSED] 24 VFs
[01:08:27] [PASSED] 25 VFs
[01:08:27] [PASSED] 26 VFs
[01:08:27] [PASSED] 27 VFs
[01:08:27] [PASSED] 28 VFs
[01:08:27] [PASSED] 29 VFs
[01:08:27] [PASSED] 30 VFs
[01:08:27] [PASSED] 31 VFs
[01:08:27] [PASSED] 32 VFs
[01:08:27] [PASSED] 33 VFs
[01:08:27] [PASSED] 34 VFs
[01:08:27] [PASSED] 35 VFs
[01:08:27] [PASSED] 36 VFs
[01:08:27] [PASSED] 37 VFs
[01:08:27] [PASSED] 38 VFs
[01:08:27] [PASSED] 39 VFs
[01:08:27] [PASSED] 40 VFs
[01:08:27] [PASSED] 41 VFs
[01:08:27] [PASSED] 42 VFs
[01:08:27] [PASSED] 43 VFs
[01:08:27] [PASSED] 44 VFs
[01:08:27] [PASSED] 45 VFs
[01:08:27] [PASSED] 46 VFs
[01:08:27] [PASSED] 47 VFs
[01:08:27] [PASSED] 48 VFs
[01:08:27] [PASSED] 49 VFs
[01:08:27] [PASSED] 50 VFs
[01:08:27] [PASSED] 51 VFs
[01:08:27] [PASSED] 52 VFs
[01:08:27] [PASSED] 53 VFs
[01:08:27] [PASSED] 54 VFs
[01:08:27] [PASSED] 55 VFs
[01:08:27] [PASSED] 56 VFs
[01:08:27] [PASSED] 57 VFs
[01:08:27] [PASSED] 58 VFs
[01:08:27] [PASSED] 59 VFs
[01:08:27] [PASSED] 60 VFs
[01:08:27] [PASSED] 61 VFs
[01:08:27] [PASSED] 62 VFs
[01:08:27] [PASSED] 63 VFs
[01:08:27] ==================== [PASSED] fair_ggtt ====================
[01:08:27] ================== [PASSED] pf_gt_config ===================
[01:08:27] ===================== lmtt (1 subtest) =====================
[01:08:27] ======================== test_ops  =========================
[01:08:27] [PASSED] 2-level
[01:08:27] [PASSED] multi-level
[01:08:27] ==================== [PASSED] test_ops =====================
[01:08:27] ====================== [PASSED] lmtt =======================
[01:08:27] ================= pf_service (11 subtests) =================
[01:08:27] [PASSED] pf_negotiate_any
[01:08:27] [PASSED] pf_negotiate_base_match
[01:08:27] [PASSED] pf_negotiate_base_newer
[01:08:27] [PASSED] pf_negotiate_base_next
[01:08:27] [SKIPPED] pf_negotiate_base_older
[01:08:27] [PASSED] pf_negotiate_base_prev
[01:08:27] [PASSED] pf_negotiate_latest_match
[01:08:27] [PASSED] pf_negotiate_latest_newer
[01:08:27] [PASSED] pf_negotiate_latest_next
[01:08:27] [SKIPPED] pf_negotiate_latest_older
[01:08:27] [SKIPPED] pf_negotiate_latest_prev
[01:08:27] =================== [PASSED] pf_service ====================
[01:08:27] ================= xe_guc_g2g (2 subtests) ==================
[01:08:27] ============== xe_live_guc_g2g_kunit_default  ==============
[01:08:27] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[01:08:27] ============== xe_live_guc_g2g_kunit_allmem  ===============
[01:08:27] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[01:08:27] =================== [SKIPPED] xe_guc_g2g ===================
[01:08:27] =================== xe_mocs (2 subtests) ===================
[01:08:27] ================ xe_live_mocs_kernel_kunit  ================
[01:08:27] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[01:08:27] ================ xe_live_mocs_reset_kunit  =================
[01:08:27] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[01:08:27] ==================== [SKIPPED] xe_mocs =====================
[01:08:27] ================= xe_migrate (2 subtests) ==================
[01:08:27] ================= xe_migrate_sanity_kunit  =================
[01:08:27] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[01:08:27] ================== xe_validate_ccs_kunit  ==================
[01:08:27] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[01:08:27] =================== [SKIPPED] xe_migrate ===================
[01:08:27] ================== xe_dma_buf (1 subtest) ==================
[01:08:27] ==================== xe_dma_buf_kunit  =====================
[01:08:27] ================ [SKIPPED] xe_dma_buf_kunit ================
[01:08:27] =================== [SKIPPED] xe_dma_buf ===================
[01:08:27] ================= xe_bo_shrink (1 subtest) =================
[01:08:27] =================== xe_bo_shrink_kunit  ====================
[01:08:27] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[01:08:27] ================== [SKIPPED] xe_bo_shrink ==================
[01:08:27] ==================== xe_bo (2 subtests) ====================
[01:08:27] ================== xe_ccs_migrate_kunit  ===================
[01:08:27] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[01:08:27] ==================== xe_bo_evict_kunit  ====================
[01:08:27] =============== [SKIPPED] xe_bo_evict_kunit ================
[01:08:27] ===================== [SKIPPED] xe_bo ======================
[01:08:27] ==================== args (13 subtests) ====================
[01:08:27] [PASSED] count_args_test
[01:08:27] [PASSED] call_args_example
[01:08:27] [PASSED] call_args_test
[01:08:27] [PASSED] drop_first_arg_example
[01:08:27] [PASSED] drop_first_arg_test
[01:08:27] [PASSED] first_arg_example
[01:08:27] [PASSED] first_arg_test
[01:08:27] [PASSED] last_arg_example
[01:08:27] [PASSED] last_arg_test
[01:08:27] [PASSED] pick_arg_example
[01:08:27] [PASSED] if_args_example
[01:08:27] [PASSED] if_args_test
[01:08:27] [PASSED] sep_comma_example
[01:08:27] ====================== [PASSED] args =======================
[01:08:27] =================== xe_pci (3 subtests) ====================
[01:08:27] ==================== check_graphics_ip  ====================
[01:08:27] [PASSED] 12.00 Xe_LP
[01:08:27] [PASSED] 12.10 Xe_LP+
[01:08:27] [PASSED] 12.55 Xe_HPG
[01:08:27] [PASSED] 12.60 Xe_HPC
[01:08:27] [PASSED] 12.70 Xe_LPG
[01:08:27] [PASSED] 12.71 Xe_LPG
[01:08:27] [PASSED] 12.74 Xe_LPG+
[01:08:27] [PASSED] 20.01 Xe2_HPG
[01:08:27] [PASSED] 20.02 Xe2_HPG
[01:08:27] [PASSED] 20.04 Xe2_LPG
[01:08:27] [PASSED] 30.00 Xe3_LPG
[01:08:27] [PASSED] 30.01 Xe3_LPG
[01:08:27] [PASSED] 30.03 Xe3_LPG
[01:08:27] [PASSED] 30.04 Xe3_LPG
[01:08:27] [PASSED] 30.05 Xe3_LPG
[01:08:27] [PASSED] 35.11 Xe3p_XPC
[01:08:27] ================ [PASSED] check_graphics_ip ================
[01:08:27] ===================== check_media_ip  ======================
[01:08:27] [PASSED] 12.00 Xe_M
[01:08:27] [PASSED] 12.55 Xe_HPM
[01:08:27] [PASSED] 13.00 Xe_LPM+
[01:08:27] [PASSED] 13.01 Xe2_HPM
[01:08:27] [PASSED] 20.00 Xe2_LPM
[01:08:27] [PASSED] 30.00 Xe3_LPM
[01:08:27] [PASSED] 30.02 Xe3_LPM
[01:08:27] [PASSED] 35.00 Xe3p_LPM
[01:08:27] [PASSED] 35.03 Xe3p_HPM
[01:08:27] ================= [PASSED] check_media_ip ==================
[01:08:27] =================== check_platform_desc  ===================
[01:08:27] [PASSED] 0x9A60 (TIGERLAKE)
[01:08:27] [PASSED] 0x9A68 (TIGERLAKE)
[01:08:27] [PASSED] 0x9A70 (TIGERLAKE)
[01:08:27] [PASSED] 0x9A40 (TIGERLAKE)
[01:08:27] [PASSED] 0x9A49 (TIGERLAKE)
[01:08:27] [PASSED] 0x9A59 (TIGERLAKE)
[01:08:27] [PASSED] 0x9A78 (TIGERLAKE)
[01:08:27] [PASSED] 0x9AC0 (TIGERLAKE)
[01:08:27] [PASSED] 0x9AC9 (TIGERLAKE)
[01:08:27] [PASSED] 0x9AD9 (TIGERLAKE)
[01:08:27] [PASSED] 0x9AF8 (TIGERLAKE)
[01:08:27] [PASSED] 0x4C80 (ROCKETLAKE)
[01:08:27] [PASSED] 0x4C8A (ROCKETLAKE)
[01:08:27] [PASSED] 0x4C8B (ROCKETLAKE)
[01:08:27] [PASSED] 0x4C8C (ROCKETLAKE)
[01:08:27] [PASSED] 0x4C90 (ROCKETLAKE)
[01:08:27] [PASSED] 0x4C9A (ROCKETLAKE)
[01:08:27] [PASSED] 0x4680 (ALDERLAKE_S)
[01:08:27] [PASSED] 0x4682 (ALDERLAKE_S)
[01:08:27] [PASSED] 0x4688 (ALDERLAKE_S)
[01:08:27] [PASSED] 0x468A (ALDERLAKE_S)
[01:08:27] [PASSED] 0x468B (ALDERLAKE_S)
[01:08:27] [PASSED] 0x4690 (ALDERLAKE_S)
[01:08:27] [PASSED] 0x4692 (ALDERLAKE_S)
[01:08:27] [PASSED] 0x4693 (ALDERLAKE_S)
[01:08:27] [PASSED] 0x46A0 (ALDERLAKE_P)
[01:08:27] [PASSED] 0x46A1 (ALDERLAKE_P)
[01:08:27] [PASSED] 0x46A2 (ALDERLAKE_P)
[01:08:27] [PASSED] 0x46A3 (ALDERLAKE_P)
[01:08:27] [PASSED] 0x46A6 (ALDERLAKE_P)
[01:08:27] [PASSED] 0x46A8 (ALDERLAKE_P)
[01:08:27] [PASSED] 0x46AA (ALDERLAKE_P)
[01:08:27] [PASSED] 0x462A (ALDERLAKE_P)
[01:08:27] [PASSED] 0x4626 (ALDERLAKE_P)
[01:08:27] [PASSED] 0x4628 (ALDERLAKE_P)
stty: 'standard input': Inappropriate ioctl for device
[01:08:27] [PASSED] 0x46B0 (ALDERLAKE_P)
[01:08:27] [PASSED] 0x46B1 (ALDERLAKE_P)
[01:08:27] [PASSED] 0x46B2 (ALDERLAKE_P)
[01:08:27] [PASSED] 0x46B3 (ALDERLAKE_P)
[01:08:27] [PASSED] 0x46C0 (ALDERLAKE_P)
[01:08:27] [PASSED] 0x46C1 (ALDERLAKE_P)
[01:08:27] [PASSED] 0x46C2 (ALDERLAKE_P)
[01:08:27] [PASSED] 0x46C3 (ALDERLAKE_P)
[01:08:27] [PASSED] 0x46D0 (ALDERLAKE_N)
[01:08:27] [PASSED] 0x46D1 (ALDERLAKE_N)
[01:08:27] [PASSED] 0x46D2 (ALDERLAKE_N)
[01:08:27] [PASSED] 0x46D3 (ALDERLAKE_N)
[01:08:27] [PASSED] 0x46D4 (ALDERLAKE_N)
[01:08:27] [PASSED] 0xA721 (ALDERLAKE_P)
[01:08:27] [PASSED] 0xA7A1 (ALDERLAKE_P)
[01:08:27] [PASSED] 0xA7A9 (ALDERLAKE_P)
[01:08:27] [PASSED] 0xA7AC (ALDERLAKE_P)
[01:08:27] [PASSED] 0xA7AD (ALDERLAKE_P)
[01:08:27] [PASSED] 0xA720 (ALDERLAKE_P)
[01:08:27] [PASSED] 0xA7A0 (ALDERLAKE_P)
[01:08:27] [PASSED] 0xA7A8 (ALDERLAKE_P)
[01:08:27] [PASSED] 0xA7AA (ALDERLAKE_P)
[01:08:27] [PASSED] 0xA7AB (ALDERLAKE_P)
[01:08:27] [PASSED] 0xA780 (ALDERLAKE_S)
[01:08:27] [PASSED] 0xA781 (ALDERLAKE_S)
[01:08:27] [PASSED] 0xA782 (ALDERLAKE_S)
[01:08:27] [PASSED] 0xA783 (ALDERLAKE_S)
[01:08:27] [PASSED] 0xA788 (ALDERLAKE_S)
[01:08:27] [PASSED] 0xA789 (ALDERLAKE_S)
[01:08:27] [PASSED] 0xA78A (ALDERLAKE_S)
[01:08:27] [PASSED] 0xA78B (ALDERLAKE_S)
[01:08:27] [PASSED] 0x4905 (DG1)
[01:08:27] [PASSED] 0x4906 (DG1)
[01:08:27] [PASSED] 0x4907 (DG1)
[01:08:27] [PASSED] 0x4908 (DG1)
[01:08:27] [PASSED] 0x4909 (DG1)
[01:08:27] [PASSED] 0x56C0 (DG2)
[01:08:27] [PASSED] 0x56C2 (DG2)
[01:08:27] [PASSED] 0x56C1 (DG2)
[01:08:27] [PASSED] 0x7D51 (METEORLAKE)
[01:08:27] [PASSED] 0x7DD1 (METEORLAKE)
[01:08:27] [PASSED] 0x7D41 (METEORLAKE)
[01:08:27] [PASSED] 0x7D67 (METEORLAKE)
[01:08:27] [PASSED] 0xB640 (METEORLAKE)
[01:08:27] [PASSED] 0x56A0 (DG2)
[01:08:27] [PASSED] 0x56A1 (DG2)
[01:08:27] [PASSED] 0x56A2 (DG2)
[01:08:27] [PASSED] 0x56BE (DG2)
[01:08:27] [PASSED] 0x56BF (DG2)
[01:08:27] [PASSED] 0x5690 (DG2)
[01:08:27] [PASSED] 0x5691 (DG2)
[01:08:27] [PASSED] 0x5692 (DG2)
[01:08:27] [PASSED] 0x56A5 (DG2)
[01:08:27] [PASSED] 0x56A6 (DG2)
[01:08:27] [PASSED] 0x56B0 (DG2)
[01:08:27] [PASSED] 0x56B1 (DG2)
[01:08:27] [PASSED] 0x56BA (DG2)
[01:08:27] [PASSED] 0x56BB (DG2)
[01:08:27] [PASSED] 0x56BC (DG2)
[01:08:27] [PASSED] 0x56BD (DG2)
[01:08:27] [PASSED] 0x5693 (DG2)
[01:08:27] [PASSED] 0x5694 (DG2)
[01:08:27] [PASSED] 0x5695 (DG2)
[01:08:27] [PASSED] 0x56A3 (DG2)
[01:08:27] [PASSED] 0x56A4 (DG2)
[01:08:27] [PASSED] 0x56B2 (DG2)
[01:08:27] [PASSED] 0x56B3 (DG2)
[01:08:27] [PASSED] 0x5696 (DG2)
[01:08:27] [PASSED] 0x5697 (DG2)
[01:08:27] [PASSED] 0xB69 (PVC)
[01:08:27] [PASSED] 0xB6E (PVC)
[01:08:27] [PASSED] 0xBD4 (PVC)
[01:08:27] [PASSED] 0xBD5 (PVC)
[01:08:27] [PASSED] 0xBD6 (PVC)
[01:08:27] [PASSED] 0xBD7 (PVC)
[01:08:27] [PASSED] 0xBD8 (PVC)
[01:08:27] [PASSED] 0xBD9 (PVC)
[01:08:27] [PASSED] 0xBDA (PVC)
[01:08:27] [PASSED] 0xBDB (PVC)
[01:08:27] [PASSED] 0xBE0 (PVC)
[01:08:27] [PASSED] 0xBE1 (PVC)
[01:08:27] [PASSED] 0xBE5 (PVC)
[01:08:27] [PASSED] 0x7D40 (METEORLAKE)
[01:08:27] [PASSED] 0x7D45 (METEORLAKE)
[01:08:27] [PASSED] 0x7D55 (METEORLAKE)
[01:08:27] [PASSED] 0x7D60 (METEORLAKE)
[01:08:27] [PASSED] 0x7DD5 (METEORLAKE)
[01:08:27] [PASSED] 0x6420 (LUNARLAKE)
[01:08:27] [PASSED] 0x64A0 (LUNARLAKE)
[01:08:27] [PASSED] 0x64B0 (LUNARLAKE)
[01:08:27] [PASSED] 0xE202 (BATTLEMAGE)
[01:08:27] [PASSED] 0xE209 (BATTLEMAGE)
[01:08:27] [PASSED] 0xE20B (BATTLEMAGE)
[01:08:27] [PASSED] 0xE20C (BATTLEMAGE)
[01:08:27] [PASSED] 0xE20D (BATTLEMAGE)
[01:08:27] [PASSED] 0xE210 (BATTLEMAGE)
[01:08:27] [PASSED] 0xE211 (BATTLEMAGE)
[01:08:27] [PASSED] 0xE212 (BATTLEMAGE)
[01:08:27] [PASSED] 0xE216 (BATTLEMAGE)
[01:08:27] [PASSED] 0xE220 (BATTLEMAGE)
[01:08:27] [PASSED] 0xE221 (BATTLEMAGE)
[01:08:27] [PASSED] 0xE222 (BATTLEMAGE)
[01:08:27] [PASSED] 0xE223 (BATTLEMAGE)
[01:08:27] [PASSED] 0xB080 (PANTHERLAKE)
[01:08:27] [PASSED] 0xB081 (PANTHERLAKE)
[01:08:27] [PASSED] 0xB082 (PANTHERLAKE)
[01:08:27] [PASSED] 0xB083 (PANTHERLAKE)
[01:08:27] [PASSED] 0xB084 (PANTHERLAKE)
[01:08:27] [PASSED] 0xB085 (PANTHERLAKE)
[01:08:27] [PASSED] 0xB086 (PANTHERLAKE)
[01:08:27] [PASSED] 0xB087 (PANTHERLAKE)
[01:08:27] [PASSED] 0xB08F (PANTHERLAKE)
[01:08:27] [PASSED] 0xB090 (PANTHERLAKE)
[01:08:27] [PASSED] 0xB0A0 (PANTHERLAKE)
[01:08:27] [PASSED] 0xB0B0 (PANTHERLAKE)
[01:08:27] [PASSED] 0xFD80 (PANTHERLAKE)
[01:08:27] [PASSED] 0xFD81 (PANTHERLAKE)
[01:08:27] [PASSED] 0xD740 (NOVALAKE_S)
[01:08:27] [PASSED] 0xD741 (NOVALAKE_S)
[01:08:27] [PASSED] 0xD742 (NOVALAKE_S)
[01:08:27] [PASSED] 0xD743 (NOVALAKE_S)
[01:08:27] [PASSED] 0xD744 (NOVALAKE_S)
[01:08:27] [PASSED] 0xD745 (NOVALAKE_S)
[01:08:27] [PASSED] 0x674C (CRESCENTISLAND)
[01:08:27] =============== [PASSED] check_platform_desc ===============
[01:08:27] ===================== [PASSED] xe_pci ======================
[01:08:27] =================== xe_rtp (2 subtests) ====================
[01:08:27] =============== xe_rtp_process_to_sr_tests  ================
[01:08:27] [PASSED] coalesce-same-reg
[01:08:27] [PASSED] no-match-no-add
[01:08:27] [PASSED] match-or
[01:08:27] [PASSED] match-or-xfail
[01:08:27] [PASSED] no-match-no-add-multiple-rules
[01:08:27] [PASSED] two-regs-two-entries
[01:08:27] [PASSED] clr-one-set-other
[01:08:27] [PASSED] set-field
[01:08:27] [PASSED] conflict-duplicate
[01:08:27] [PASSED] conflict-not-disjoint
[01:08:27] [PASSED] conflict-reg-type
[01:08:27] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[01:08:27] ================== xe_rtp_process_tests  ===================
[01:08:27] [PASSED] active1
[01:08:27] [PASSED] active2
[01:08:27] [PASSED] active-inactive
[01:08:27] [PASSED] inactive-active
[01:08:27] [PASSED] inactive-1st_or_active-inactive
[01:08:27] [PASSED] inactive-2nd_or_active-inactive
[01:08:27] [PASSED] inactive-last_or_active-inactive
[01:08:27] [PASSED] inactive-no_or_active-inactive
[01:08:27] ============== [PASSED] xe_rtp_process_tests ===============
[01:08:27] ===================== [PASSED] xe_rtp ======================
[01:08:27] ==================== xe_wa (1 subtest) =====================
[01:08:27] ======================== xe_wa_gt  =========================
[01:08:27] [PASSED] TIGERLAKE B0
[01:08:27] [PASSED] DG1 A0
[01:08:27] [PASSED] DG1 B0
[01:08:27] [PASSED] ALDERLAKE_S A0
[01:08:27] [PASSED] ALDERLAKE_S B0
[01:08:27] [PASSED] ALDERLAKE_S C0
[01:08:27] [PASSED] ALDERLAKE_S D0
[01:08:27] [PASSED] ALDERLAKE_P A0
[01:08:27] [PASSED] ALDERLAKE_P B0
[01:08:27] [PASSED] ALDERLAKE_P C0
[01:08:27] [PASSED] ALDERLAKE_S RPLS D0
[01:08:27] [PASSED] ALDERLAKE_P RPLU E0
[01:08:27] [PASSED] DG2 G10 C0
[01:08:27] [PASSED] DG2 G11 B1
[01:08:27] [PASSED] DG2 G12 A1
[01:08:27] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[01:08:27] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[01:08:27] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[01:08:27] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[01:08:27] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[01:08:27] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[01:08:27] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[01:08:27] ==================== [PASSED] xe_wa_gt =====================
[01:08:27] ====================== [PASSED] xe_wa ======================
[01:08:27] ============================================================
[01:08:27] Testing complete. Ran 512 tests: passed: 494, skipped: 18
[01:08:27] Elapsed time: 36.383s total, 4.154s configuring, 31.711s building, 0.464s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[01:08:27] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[01:08:29] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[01:08:54] Starting KUnit Kernel (1/1)...
[01:08:54] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[01:08:55] ============ drm_test_pick_cmdline (2 subtests) ============
[01:08:55] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[01:08:55] =============== drm_test_pick_cmdline_named  ===============
[01:08:55] [PASSED] NTSC
[01:08:55] [PASSED] NTSC-J
[01:08:55] [PASSED] PAL
[01:08:55] [PASSED] PAL-M
[01:08:55] =========== [PASSED] drm_test_pick_cmdline_named ===========
[01:08:55] ============== [PASSED] drm_test_pick_cmdline ==============
[01:08:55] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[01:08:55] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[01:08:55] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[01:08:55] =========== drm_validate_clone_mode (2 subtests) ===========
[01:08:55] ============== drm_test_check_in_clone_mode  ===============
[01:08:55] [PASSED] in_clone_mode
[01:08:55] [PASSED] not_in_clone_mode
[01:08:55] ========== [PASSED] drm_test_check_in_clone_mode ===========
[01:08:55] =============== drm_test_check_valid_clones  ===============
[01:08:55] [PASSED] not_in_clone_mode
[01:08:55] [PASSED] valid_clone
[01:08:55] [PASSED] invalid_clone
[01:08:55] =========== [PASSED] drm_test_check_valid_clones ===========
[01:08:55] ============= [PASSED] drm_validate_clone_mode =============
[01:08:55] ============= drm_validate_modeset (1 subtest) =============
[01:08:55] [PASSED] drm_test_check_connector_changed_modeset
[01:08:55] ============== [PASSED] drm_validate_modeset ===============
[01:08:55] ====== drm_test_bridge_get_current_state (2 subtests) ======
[01:08:55] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[01:08:55] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[01:08:55] ======== [PASSED] drm_test_bridge_get_current_state ========
[01:08:55] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[01:08:55] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[01:08:55] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[01:08:55] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[01:08:55] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[01:08:55] ============== drm_bridge_alloc (2 subtests) ===============
[01:08:55] [PASSED] drm_test_drm_bridge_alloc_basic
[01:08:55] [PASSED] drm_test_drm_bridge_alloc_get_put
[01:08:55] ================ [PASSED] drm_bridge_alloc =================
[01:08:55] ================== drm_buddy (9 subtests) ==================
[01:08:55] [PASSED] drm_test_buddy_alloc_limit
[01:08:55] [PASSED] drm_test_buddy_alloc_optimistic
[01:08:55] [PASSED] drm_test_buddy_alloc_pessimistic
[01:08:55] [PASSED] drm_test_buddy_alloc_pathological
[01:08:55] [PASSED] drm_test_buddy_alloc_contiguous
[01:08:55] [PASSED] drm_test_buddy_alloc_clear
[01:08:55] [PASSED] drm_test_buddy_alloc_range_bias
[01:08:55] [PASSED] drm_test_buddy_fragmentation_performance
[01:08:55] [PASSED] drm_test_buddy_alloc_exceeds_max_order
[01:08:55] ==================== [PASSED] drm_buddy ====================
[01:08:55] ============= drm_cmdline_parser (40 subtests) =============
[01:08:55] [PASSED] drm_test_cmdline_force_d_only
[01:08:55] [PASSED] drm_test_cmdline_force_D_only_dvi
[01:08:55] [PASSED] drm_test_cmdline_force_D_only_hdmi
[01:08:55] [PASSED] drm_test_cmdline_force_D_only_not_digital
[01:08:55] [PASSED] drm_test_cmdline_force_e_only
[01:08:55] [PASSED] drm_test_cmdline_res
[01:08:55] [PASSED] drm_test_cmdline_res_vesa
[01:08:55] [PASSED] drm_test_cmdline_res_vesa_rblank
[01:08:55] [PASSED] drm_test_cmdline_res_rblank
[01:08:55] [PASSED] drm_test_cmdline_res_bpp
[01:08:55] [PASSED] drm_test_cmdline_res_refresh
[01:08:55] [PASSED] drm_test_cmdline_res_bpp_refresh
[01:08:55] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[01:08:55] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[01:08:55] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[01:08:55] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[01:08:55] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[01:08:55] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[01:08:55] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[01:08:55] [PASSED] drm_test_cmdline_res_margins_force_on
[01:08:55] [PASSED] drm_test_cmdline_res_vesa_margins
[01:08:55] [PASSED] drm_test_cmdline_name
[01:08:55] [PASSED] drm_test_cmdline_name_bpp
[01:08:55] [PASSED] drm_test_cmdline_name_option
[01:08:55] [PASSED] drm_test_cmdline_name_bpp_option
[01:08:55] [PASSED] drm_test_cmdline_rotate_0
[01:08:55] [PASSED] drm_test_cmdline_rotate_90
[01:08:55] [PASSED] drm_test_cmdline_rotate_180
[01:08:55] [PASSED] drm_test_cmdline_rotate_270
[01:08:55] [PASSED] drm_test_cmdline_hmirror
[01:08:55] [PASSED] drm_test_cmdline_vmirror
[01:08:55] [PASSED] drm_test_cmdline_margin_options
[01:08:55] [PASSED] drm_test_cmdline_multiple_options
[01:08:55] [PASSED] drm_test_cmdline_bpp_extra_and_option
[01:08:55] [PASSED] drm_test_cmdline_extra_and_option
[01:08:55] [PASSED] drm_test_cmdline_freestanding_options
[01:08:55] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[01:08:55] [PASSED] drm_test_cmdline_panel_orientation
[01:08:55] ================ drm_test_cmdline_invalid  =================
[01:08:55] [PASSED] margin_only
[01:08:55] [PASSED] interlace_only
[01:08:55] [PASSED] res_missing_x
[01:08:55] [PASSED] res_missing_y
[01:08:55] [PASSED] res_bad_y
[01:08:55] [PASSED] res_missing_y_bpp
[01:08:55] [PASSED] res_bad_bpp
[01:08:55] [PASSED] res_bad_refresh
[01:08:55] [PASSED] res_bpp_refresh_force_on_off
[01:08:55] [PASSED] res_invalid_mode
[01:08:55] [PASSED] res_bpp_wrong_place_mode
[01:08:55] [PASSED] name_bpp_refresh
[01:08:55] [PASSED] name_refresh
[01:08:55] [PASSED] name_refresh_wrong_mode
[01:08:55] [PASSED] name_refresh_invalid_mode
[01:08:55] [PASSED] rotate_multiple
[01:08:55] [PASSED] rotate_invalid_val
[01:08:55] [PASSED] rotate_truncated
[01:08:55] [PASSED] invalid_option
[01:08:55] [PASSED] invalid_tv_option
[01:08:55] [PASSED] truncated_tv_option
[01:08:55] ============ [PASSED] drm_test_cmdline_invalid =============
[01:08:55] =============== drm_test_cmdline_tv_options  ===============
[01:08:55] [PASSED] NTSC
[01:08:55] [PASSED] NTSC_443
[01:08:55] [PASSED] NTSC_J
[01:08:55] [PASSED] PAL
[01:08:55] [PASSED] PAL_M
[01:08:55] [PASSED] PAL_N
[01:08:55] [PASSED] SECAM
[01:08:55] [PASSED] MONO_525
[01:08:55] [PASSED] MONO_625
[01:08:55] =========== [PASSED] drm_test_cmdline_tv_options ===========
[01:08:55] =============== [PASSED] drm_cmdline_parser ================
[01:08:55] ========== drmm_connector_hdmi_init (20 subtests) ==========
[01:08:55] [PASSED] drm_test_connector_hdmi_init_valid
[01:08:55] [PASSED] drm_test_connector_hdmi_init_bpc_8
[01:08:55] [PASSED] drm_test_connector_hdmi_init_bpc_10
[01:08:55] [PASSED] drm_test_connector_hdmi_init_bpc_12
[01:08:55] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[01:08:55] [PASSED] drm_test_connector_hdmi_init_bpc_null
[01:08:55] [PASSED] drm_test_connector_hdmi_init_formats_empty
[01:08:55] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[01:08:55] === drm_test_connector_hdmi_init_formats_yuv420_allowed  ===
[01:08:55] [PASSED] supported_formats=0x9 yuv420_allowed=1
[01:08:55] [PASSED] supported_formats=0x9 yuv420_allowed=0
[01:08:55] [PASSED] supported_formats=0x3 yuv420_allowed=1
[01:08:55] [PASSED] supported_formats=0x3 yuv420_allowed=0
[01:08:55] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[01:08:55] [PASSED] drm_test_connector_hdmi_init_null_ddc
[01:08:55] [PASSED] drm_test_connector_hdmi_init_null_product
[01:08:55] [PASSED] drm_test_connector_hdmi_init_null_vendor
[01:08:55] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[01:08:55] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[01:08:55] [PASSED] drm_test_connector_hdmi_init_product_valid
[01:08:55] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[01:08:55] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[01:08:55] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[01:08:55] ========= drm_test_connector_hdmi_init_type_valid  =========
[01:08:55] [PASSED] HDMI-A
[01:08:55] [PASSED] HDMI-B
[01:08:55] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[01:08:55] ======== drm_test_connector_hdmi_init_type_invalid  ========
[01:08:55] [PASSED] Unknown
[01:08:55] [PASSED] VGA
[01:08:55] [PASSED] DVI-I
[01:08:55] [PASSED] DVI-D
[01:08:55] [PASSED] DVI-A
[01:08:55] [PASSED] Composite
[01:08:55] [PASSED] SVIDEO
[01:08:55] [PASSED] LVDS
[01:08:55] [PASSED] Component
[01:08:55] [PASSED] DIN
[01:08:55] [PASSED] DP
[01:08:55] [PASSED] TV
[01:08:55] [PASSED] eDP
[01:08:55] [PASSED] Virtual
[01:08:55] [PASSED] DSI
[01:08:55] [PASSED] DPI
[01:08:55] [PASSED] Writeback
[01:08:55] [PASSED] SPI
[01:08:55] [PASSED] USB
[01:08:55] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[01:08:55] ============ [PASSED] drmm_connector_hdmi_init =============
[01:08:55] ============= drmm_connector_init (3 subtests) =============
[01:08:55] [PASSED] drm_test_drmm_connector_init
[01:08:55] [PASSED] drm_test_drmm_connector_init_null_ddc
[01:08:55] ========= drm_test_drmm_connector_init_type_valid  =========
[01:08:55] [PASSED] Unknown
[01:08:55] [PASSED] VGA
[01:08:55] [PASSED] DVI-I
[01:08:55] [PASSED] DVI-D
[01:08:55] [PASSED] DVI-A
[01:08:55] [PASSED] Composite
[01:08:55] [PASSED] SVIDEO
[01:08:55] [PASSED] LVDS
[01:08:55] [PASSED] Component
[01:08:55] [PASSED] DIN
[01:08:55] [PASSED] DP
[01:08:55] [PASSED] HDMI-A
[01:08:55] [PASSED] HDMI-B
[01:08:55] [PASSED] TV
[01:08:55] [PASSED] eDP
[01:08:55] [PASSED] Virtual
[01:08:55] [PASSED] DSI
[01:08:55] [PASSED] DPI
[01:08:55] [PASSED] Writeback
[01:08:55] [PASSED] SPI
[01:08:55] [PASSED] USB
[01:08:55] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[01:08:55] =============== [PASSED] drmm_connector_init ===============
[01:08:55] ========= drm_connector_dynamic_init (6 subtests) ==========
[01:08:55] [PASSED] drm_test_drm_connector_dynamic_init
[01:08:55] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[01:08:55] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[01:08:55] [PASSED] drm_test_drm_connector_dynamic_init_properties
[01:08:55] ===== drm_test_drm_connector_dynamic_init_type_valid  ======
[01:08:55] [PASSED] Unknown
[01:08:55] [PASSED] VGA
[01:08:55] [PASSED] DVI-I
[01:08:55] [PASSED] DVI-D
[01:08:55] [PASSED] DVI-A
[01:08:55] [PASSED] Composite
[01:08:55] [PASSED] SVIDEO
[01:08:55] [PASSED] LVDS
[01:08:55] [PASSED] Component
[01:08:55] [PASSED] DIN
[01:08:55] [PASSED] DP
[01:08:55] [PASSED] HDMI-A
[01:08:55] [PASSED] HDMI-B
[01:08:55] [PASSED] TV
[01:08:55] [PASSED] eDP
[01:08:55] [PASSED] Virtual
[01:08:55] [PASSED] DSI
[01:08:55] [PASSED] DPI
[01:08:55] [PASSED] Writeback
[01:08:55] [PASSED] SPI
[01:08:55] [PASSED] USB
[01:08:55] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[01:08:55] ======== drm_test_drm_connector_dynamic_init_name  =========
[01:08:55] [PASSED] Unknown
[01:08:55] [PASSED] VGA
[01:08:55] [PASSED] DVI-I
[01:08:55] [PASSED] DVI-D
[01:08:55] [PASSED] DVI-A
[01:08:55] [PASSED] Composite
[01:08:55] [PASSED] SVIDEO
[01:08:55] [PASSED] LVDS
[01:08:55] [PASSED] Component
[01:08:55] [PASSED] DIN
[01:08:55] [PASSED] DP
[01:08:55] [PASSED] HDMI-A
[01:08:55] [PASSED] HDMI-B
[01:08:55] [PASSED] TV
[01:08:55] [PASSED] eDP
[01:08:55] [PASSED] Virtual
[01:08:55] [PASSED] DSI
[01:08:55] [PASSED] DPI
[01:08:55] [PASSED] Writeback
[01:08:55] [PASSED] SPI
[01:08:55] [PASSED] USB
[01:08:55] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[01:08:55] =========== [PASSED] drm_connector_dynamic_init ============
[01:08:55] ==== drm_connector_dynamic_register_early (4 subtests) =====
[01:08:55] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[01:08:55] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[01:08:55] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[01:08:55] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[01:08:55] ====== [PASSED] drm_connector_dynamic_register_early =======
[01:08:55] ======= drm_connector_dynamic_register (7 subtests) ========
[01:08:55] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[01:08:55] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[01:08:55] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[01:08:55] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[01:08:55] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[01:08:55] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[01:08:55] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[01:08:55] ========= [PASSED] drm_connector_dynamic_register ==========
[01:08:55] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[01:08:55] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[01:08:55] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[01:08:55] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[01:08:55] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[01:08:55] ========== drm_test_get_tv_mode_from_name_valid  ===========
[01:08:55] [PASSED] NTSC
[01:08:55] [PASSED] NTSC-443
[01:08:55] [PASSED] NTSC-J
[01:08:55] [PASSED] PAL
[01:08:55] [PASSED] PAL-M
[01:08:55] [PASSED] PAL-N
[01:08:55] [PASSED] SECAM
[01:08:55] [PASSED] Mono
[01:08:55] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[01:08:55] [PASSED] drm_test_get_tv_mode_from_name_truncated
[01:08:55] ============ [PASSED] drm_get_tv_mode_from_name ============
[01:08:55] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[01:08:55] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[01:08:55] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[01:08:55] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[01:08:55] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[01:08:55] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[01:08:55] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[01:08:55] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid  =
[01:08:55] [PASSED] VIC 96
[01:08:55] [PASSED] VIC 97
[01:08:55] [PASSED] VIC 101
[01:08:55] [PASSED] VIC 102
[01:08:55] [PASSED] VIC 106
[01:08:55] [PASSED] VIC 107
[01:08:55] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[01:08:55] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[01:08:55] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[01:08:55] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[01:08:55] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[01:08:55] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[01:08:55] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[01:08:55] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[01:08:55] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name  ====
[01:08:55] [PASSED] Automatic
[01:08:55] [PASSED] Full
[01:08:55] [PASSED] Limited 16:235
[01:08:55] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[01:08:55] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[01:08:55] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[01:08:55] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[01:08:55] === drm_test_drm_hdmi_connector_get_output_format_name  ====
[01:08:55] [PASSED] RGB
[01:08:55] [PASSED] YUV 4:2:0
[01:08:55] [PASSED] YUV 4:2:2
[01:08:55] [PASSED] YUV 4:4:4
[01:08:55] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[01:08:55] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[01:08:55] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[01:08:55] ============= drm_damage_helper (21 subtests) ==============
[01:08:55] [PASSED] drm_test_damage_iter_no_damage
[01:08:55] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[01:08:55] [PASSED] drm_test_damage_iter_no_damage_src_moved
[01:08:55] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[01:08:55] [PASSED] drm_test_damage_iter_no_damage_not_visible
[01:08:55] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[01:08:55] [PASSED] drm_test_damage_iter_no_damage_no_fb
[01:08:55] [PASSED] drm_test_damage_iter_simple_damage
[01:08:55] [PASSED] drm_test_damage_iter_single_damage
[01:08:55] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[01:08:55] [PASSED] drm_test_damage_iter_single_damage_outside_src
[01:08:55] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[01:08:55] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[01:08:55] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[01:08:55] [PASSED] drm_test_damage_iter_single_damage_src_moved
[01:08:55] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[01:08:55] [PASSED] drm_test_damage_iter_damage
[01:08:55] [PASSED] drm_test_damage_iter_damage_one_intersect
[01:08:55] [PASSED] drm_test_damage_iter_damage_one_outside
[01:08:55] [PASSED] drm_test_damage_iter_damage_src_moved
[01:08:55] [PASSED] drm_test_damage_iter_damage_not_visible
[01:08:55] ================ [PASSED] drm_damage_helper ================
[01:08:55] ============== drm_dp_mst_helper (3 subtests) ==============
[01:08:55] ============== drm_test_dp_mst_calc_pbn_mode  ==============
[01:08:55] [PASSED] Clock 154000 BPP 30 DSC disabled
[01:08:55] [PASSED] Clock 234000 BPP 30 DSC disabled
[01:08:55] [PASSED] Clock 297000 BPP 24 DSC disabled
[01:08:55] [PASSED] Clock 332880 BPP 24 DSC enabled
[01:08:55] [PASSED] Clock 324540 BPP 24 DSC enabled
[01:08:55] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[01:08:55] ============== drm_test_dp_mst_calc_pbn_div  ===============
[01:08:55] [PASSED] Link rate 2000000 lane count 4
[01:08:55] [PASSED] Link rate 2000000 lane count 2
[01:08:55] [PASSED] Link rate 2000000 lane count 1
[01:08:55] [PASSED] Link rate 1350000 lane count 4
[01:08:55] [PASSED] Link rate 1350000 lane count 2
[01:08:55] [PASSED] Link rate 1350000 lane count 1
[01:08:55] [PASSED] Link rate 1000000 lane count 4
[01:08:55] [PASSED] Link rate 1000000 lane count 2
[01:08:55] [PASSED] Link rate 1000000 lane count 1
[01:08:55] [PASSED] Link rate 810000 lane count 4
[01:08:55] [PASSED] Link rate 810000 lane count 2
[01:08:55] [PASSED] Link rate 810000 lane count 1
[01:08:55] [PASSED] Link rate 540000 lane count 4
[01:08:55] [PASSED] Link rate 540000 lane count 2
[01:08:55] [PASSED] Link rate 540000 lane count 1
[01:08:55] [PASSED] Link rate 270000 lane count 4
[01:08:55] [PASSED] Link rate 270000 lane count 2
[01:08:55] [PASSED] Link rate 270000 lane count 1
[01:08:55] [PASSED] Link rate 162000 lane count 4
[01:08:55] [PASSED] Link rate 162000 lane count 2
[01:08:55] [PASSED] Link rate 162000 lane count 1
[01:08:55] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[01:08:55] ========= drm_test_dp_mst_sideband_msg_req_decode  =========
[01:08:55] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[01:08:55] [PASSED] DP_POWER_UP_PHY with port number
[01:08:55] [PASSED] DP_POWER_DOWN_PHY with port number
[01:08:55] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[01:08:55] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[01:08:55] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[01:08:55] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[01:08:55] [PASSED] DP_QUERY_PAYLOAD with port number
[01:08:55] [PASSED] DP_QUERY_PAYLOAD with VCPI
[01:08:55] [PASSED] DP_REMOTE_DPCD_READ with port number
[01:08:55] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[01:08:55] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[01:08:55] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[01:08:55] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[01:08:55] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[01:08:55] [PASSED] DP_REMOTE_I2C_READ with port number
[01:08:55] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[01:08:55] [PASSED] DP_REMOTE_I2C_READ with transactions array
[01:08:55] [PASSED] DP_REMOTE_I2C_WRITE with port number
[01:08:55] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[01:08:55] [PASSED] DP_REMOTE_I2C_WRITE with data array
[01:08:55] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[01:08:55] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[01:08:55] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[01:08:55] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[01:08:55] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[01:08:55] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[01:08:55] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[01:08:55] ================ [PASSED] drm_dp_mst_helper ================
[01:08:55] ================== drm_exec (7 subtests) ===================
[01:08:55] [PASSED] sanitycheck
[01:08:55] [PASSED] test_lock
[01:08:55] [PASSED] test_lock_unlock
[01:08:55] [PASSED] test_duplicates
[01:08:55] [PASSED] test_prepare
[01:08:55] [PASSED] test_prepare_array
[01:08:55] [PASSED] test_multiple_loops
[01:08:55] ==================== [PASSED] drm_exec =====================
[01:08:55] =========== drm_format_helper_test (17 subtests) ===========
[01:08:55] ============== drm_test_fb_xrgb8888_to_gray8  ==============
[01:08:55] [PASSED] single_pixel_source_buffer
[01:08:55] [PASSED] single_pixel_clip_rectangle
[01:08:55] [PASSED] well_known_colors
[01:08:55] [PASSED] destination_pitch
[01:08:55] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[01:08:55] ============= drm_test_fb_xrgb8888_to_rgb332  ==============
[01:08:55] [PASSED] single_pixel_source_buffer
[01:08:55] [PASSED] single_pixel_clip_rectangle
[01:08:55] [PASSED] well_known_colors
[01:08:55] [PASSED] destination_pitch
[01:08:55] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[01:08:55] ============= drm_test_fb_xrgb8888_to_rgb565  ==============
[01:08:55] [PASSED] single_pixel_source_buffer
[01:08:55] [PASSED] single_pixel_clip_rectangle
[01:08:55] [PASSED] well_known_colors
[01:08:55] [PASSED] destination_pitch
[01:08:55] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[01:08:55] ============ drm_test_fb_xrgb8888_to_xrgb1555  =============
[01:08:55] [PASSED] single_pixel_source_buffer
[01:08:55] [PASSED] single_pixel_clip_rectangle
[01:08:55] [PASSED] well_known_colors
[01:08:55] [PASSED] destination_pitch
[01:08:55] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[01:08:55] ============ drm_test_fb_xrgb8888_to_argb1555  =============
[01:08:55] [PASSED] single_pixel_source_buffer
[01:08:55] [PASSED] single_pixel_clip_rectangle
[01:08:55] [PASSED] well_known_colors
[01:08:55] [PASSED] destination_pitch
[01:08:55] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[01:08:55] ============ drm_test_fb_xrgb8888_to_rgba5551  =============
[01:08:55] [PASSED] single_pixel_source_buffer
[01:08:55] [PASSED] single_pixel_clip_rectangle
[01:08:55] [PASSED] well_known_colors
[01:08:55] [PASSED] destination_pitch
[01:08:55] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[01:08:55] ============= drm_test_fb_xrgb8888_to_rgb888  ==============
[01:08:55] [PASSED] single_pixel_source_buffer
[01:08:55] [PASSED] single_pixel_clip_rectangle
[01:08:55] [PASSED] well_known_colors
[01:08:55] [PASSED] destination_pitch
[01:08:55] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[01:08:55] ============= drm_test_fb_xrgb8888_to_bgr888  ==============
[01:08:55] [PASSED] single_pixel_source_buffer
[01:08:55] [PASSED] single_pixel_clip_rectangle
[01:08:55] [PASSED] well_known_colors
[01:08:55] [PASSED] destination_pitch
[01:08:55] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[01:08:55] ============ drm_test_fb_xrgb8888_to_argb8888  =============
[01:08:55] [PASSED] single_pixel_source_buffer
[01:08:55] [PASSED] single_pixel_clip_rectangle
[01:08:55] [PASSED] well_known_colors
[01:08:55] [PASSED] destination_pitch
[01:08:55] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[01:08:55] =========== drm_test_fb_xrgb8888_to_xrgb2101010  ===========
[01:08:55] [PASSED] single_pixel_source_buffer
[01:08:55] [PASSED] single_pixel_clip_rectangle
[01:08:55] [PASSED] well_known_colors
[01:08:55] [PASSED] destination_pitch
[01:08:55] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[01:08:55] =========== drm_test_fb_xrgb8888_to_argb2101010  ===========
[01:08:55] [PASSED] single_pixel_source_buffer
[01:08:55] [PASSED] single_pixel_clip_rectangle
[01:08:55] [PASSED] well_known_colors
[01:08:55] [PASSED] destination_pitch
[01:08:55] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[01:08:55] ============== drm_test_fb_xrgb8888_to_mono  ===============
[01:08:55] [PASSED] single_pixel_source_buffer
[01:08:55] [PASSED] single_pixel_clip_rectangle
[01:08:55] [PASSED] well_known_colors
[01:08:55] [PASSED] destination_pitch
[01:08:55] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[01:08:55] ==================== drm_test_fb_swab  =====================
[01:08:55] [PASSED] single_pixel_source_buffer
[01:08:55] [PASSED] single_pixel_clip_rectangle
[01:08:55] [PASSED] well_known_colors
[01:08:55] [PASSED] destination_pitch
[01:08:55] ================ [PASSED] drm_test_fb_swab =================
[01:08:55] ============ drm_test_fb_xrgb8888_to_xbgr8888  =============
[01:08:55] [PASSED] single_pixel_source_buffer
[01:08:55] [PASSED] single_pixel_clip_rectangle
[01:08:55] [PASSED] well_known_colors
[01:08:55] [PASSED] destination_pitch
[01:08:55] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[01:08:55] ============ drm_test_fb_xrgb8888_to_abgr8888  =============
[01:08:55] [PASSED] single_pixel_source_buffer
[01:08:55] [PASSED] single_pixel_clip_rectangle
[01:08:55] [PASSED] well_known_colors
[01:08:55] [PASSED] destination_pitch
[01:08:55] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[01:08:55] ================= drm_test_fb_clip_offset  =================
[01:08:55] [PASSED] pass through
[01:08:55] [PASSED] horizontal offset
[01:08:55] [PASSED] vertical offset
[01:08:55] [PASSED] horizontal and vertical offset
[01:08:55] [PASSED] horizontal offset (custom pitch)
[01:08:55] [PASSED] vertical offset (custom pitch)
[01:08:55] [PASSED] horizontal and vertical offset (custom pitch)
[01:08:55] ============= [PASSED] drm_test_fb_clip_offset =============
[01:08:55] =================== drm_test_fb_memcpy  ====================
[01:08:55] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[01:08:55] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[01:08:55] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[01:08:55] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[01:08:55] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[01:08:55] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[01:08:55] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[01:08:55] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[01:08:55] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[01:08:55] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[01:08:55] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[01:08:55] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[01:08:55] =============== [PASSED] drm_test_fb_memcpy ================
[01:08:55] ============= [PASSED] drm_format_helper_test ==============
[01:08:55] ================= drm_format (18 subtests) =================
[01:08:55] [PASSED] drm_test_format_block_width_invalid
[01:08:55] [PASSED] drm_test_format_block_width_one_plane
[01:08:55] [PASSED] drm_test_format_block_width_two_plane
[01:08:55] [PASSED] drm_test_format_block_width_three_plane
[01:08:55] [PASSED] drm_test_format_block_width_tiled
[01:08:55] [PASSED] drm_test_format_block_height_invalid
[01:08:55] [PASSED] drm_test_format_block_height_one_plane
[01:08:55] [PASSED] drm_test_format_block_height_two_plane
[01:08:55] [PASSED] drm_test_format_block_height_three_plane
[01:08:55] [PASSED] drm_test_format_block_height_tiled
[01:08:55] [PASSED] drm_test_format_min_pitch_invalid
[01:08:55] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[01:08:55] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[01:08:55] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[01:08:55] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[01:08:55] [PASSED] drm_test_format_min_pitch_two_plane
[01:08:55] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[01:08:55] [PASSED] drm_test_format_min_pitch_tiled
[01:08:55] =================== [PASSED] drm_format ====================
[01:08:55] ============== drm_framebuffer (10 subtests) ===============
[01:08:55] ========== drm_test_framebuffer_check_src_coords  ==========
[01:08:55] [PASSED] Success: source fits into fb
[01:08:55] [PASSED] Fail: overflowing fb with x-axis coordinate
[01:08:55] [PASSED] Fail: overflowing fb with y-axis coordinate
[01:08:55] [PASSED] Fail: overflowing fb with source width
[01:08:55] [PASSED] Fail: overflowing fb with source height
[01:08:55] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[01:08:55] [PASSED] drm_test_framebuffer_cleanup
[01:08:55] =============== drm_test_framebuffer_create  ===============
[01:08:55] [PASSED] ABGR8888 normal sizes
[01:08:55] [PASSED] ABGR8888 max sizes
[01:08:55] [PASSED] ABGR8888 pitch greater than min required
[01:08:55] [PASSED] ABGR8888 pitch less than min required
[01:08:55] [PASSED] ABGR8888 Invalid width
[01:08:55] [PASSED] ABGR8888 Invalid buffer handle
[01:08:55] [PASSED] No pixel format
[01:08:55] [PASSED] ABGR8888 Width 0
[01:08:55] [PASSED] ABGR8888 Height 0
[01:08:55] [PASSED] ABGR8888 Out of bound height * pitch combination
[01:08:55] [PASSED] ABGR8888 Large buffer offset
[01:08:55] [PASSED] ABGR8888 Buffer offset for inexistent plane
[01:08:55] [PASSED] ABGR8888 Invalid flag
[01:08:55] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[01:08:55] [PASSED] ABGR8888 Valid buffer modifier
[01:08:55] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[01:08:55] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[01:08:55] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[01:08:55] [PASSED] NV12 Normal sizes
[01:08:55] [PASSED] NV12 Max sizes
[01:08:55] [PASSED] NV12 Invalid pitch
[01:08:55] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[01:08:55] [PASSED] NV12 different  modifier per-plane
[01:08:55] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[01:08:55] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[01:08:55] [PASSED] NV12 Modifier for inexistent plane
[01:08:55] [PASSED] NV12 Handle for inexistent plane
[01:08:55] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[01:08:55] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[01:08:55] [PASSED] YVU420 Normal sizes
[01:08:55] [PASSED] YVU420 Max sizes
[01:08:55] [PASSED] YVU420 Invalid pitch
[01:08:55] [PASSED] YVU420 Different pitches
[01:08:55] [PASSED] YVU420 Different buffer offsets/pitches
[01:08:55] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[01:08:55] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[01:08:55] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[01:08:55] [PASSED] YVU420 Valid modifier
[01:08:55] [PASSED] YVU420 Different modifiers per plane
[01:08:55] [PASSED] YVU420 Modifier for inexistent plane
[01:08:55] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[01:08:55] [PASSED] X0L2 Normal sizes
[01:08:55] [PASSED] X0L2 Max sizes
[01:08:55] [PASSED] X0L2 Invalid pitch
[01:08:55] [PASSED] X0L2 Pitch greater than minimum required
[01:08:55] [PASSED] X0L2 Handle for inexistent plane
[01:08:55] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[01:08:55] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[01:08:55] [PASSED] X0L2 Valid modifier
[01:08:55] [PASSED] X0L2 Modifier for inexistent plane
[01:08:55] =========== [PASSED] drm_test_framebuffer_create ===========
[01:08:55] [PASSED] drm_test_framebuffer_free
[01:08:55] [PASSED] drm_test_framebuffer_init
[01:08:55] [PASSED] drm_test_framebuffer_init_bad_format
[01:08:55] [PASSED] drm_test_framebuffer_init_dev_mismatch
[01:08:55] [PASSED] drm_test_framebuffer_lookup
[01:08:55] [PASSED] drm_test_framebuffer_lookup_inexistent
[01:08:55] [PASSED] drm_test_framebuffer_modifiers_not_supported
[01:08:55] ================= [PASSED] drm_framebuffer =================
[01:08:55] ================ drm_gem_shmem (8 subtests) ================
[01:08:55] [PASSED] drm_gem_shmem_test_obj_create
[01:08:55] [PASSED] drm_gem_shmem_test_obj_create_private
[01:08:55] [PASSED] drm_gem_shmem_test_pin_pages
[01:08:55] [PASSED] drm_gem_shmem_test_vmap
[01:08:55] [PASSED] drm_gem_shmem_test_get_sg_table
[01:08:55] [PASSED] drm_gem_shmem_test_get_pages_sgt
[01:08:55] [PASSED] drm_gem_shmem_test_madvise
[01:08:55] [PASSED] drm_gem_shmem_test_purge
[01:08:55] ================== [PASSED] drm_gem_shmem ==================
[01:08:55] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[01:08:55] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[01:08:55] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[01:08:55] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[01:08:55] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[01:08:55] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[01:08:55] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[01:08:55] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420  =======
[01:08:55] [PASSED] Automatic
[01:08:55] [PASSED] Full
[01:08:55] [PASSED] Limited 16:235
[01:08:55] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[01:08:55] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[01:08:55] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[01:08:55] [PASSED] drm_test_check_disable_connector
[01:08:55] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[01:08:55] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[01:08:55] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[01:08:55] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[01:08:55] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[01:08:55] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[01:08:55] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[01:08:55] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[01:08:55] [PASSED] drm_test_check_output_bpc_dvi
[01:08:55] [PASSED] drm_test_check_output_bpc_format_vic_1
[01:08:55] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[01:08:55] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[01:08:55] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[01:08:55] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[01:08:55] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[01:08:55] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[01:08:55] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[01:08:55] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[01:08:55] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[01:08:55] [PASSED] drm_test_check_broadcast_rgb_value
[01:08:55] [PASSED] drm_test_check_bpc_8_value
[01:08:55] [PASSED] drm_test_check_bpc_10_value
[01:08:55] [PASSED] drm_test_check_bpc_12_value
[01:08:55] [PASSED] drm_test_check_format_value
[01:08:55] [PASSED] drm_test_check_tmds_char_value
[01:08:55] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[01:08:55] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[01:08:55] [PASSED] drm_test_check_mode_valid
[01:08:55] [PASSED] drm_test_check_mode_valid_reject
[01:08:55] [PASSED] drm_test_check_mode_valid_reject_rate
[01:08:55] [PASSED] drm_test_check_mode_valid_reject_max_clock
[01:08:55] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[01:08:55] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[01:08:55] [PASSED] drm_test_check_infoframes
[01:08:55] [PASSED] drm_test_check_reject_avi_infoframe
[01:08:55] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[01:08:55] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[01:08:55] [PASSED] drm_test_check_reject_audio_infoframe
[01:08:55] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[01:08:55] ================= drm_managed (2 subtests) =================
[01:08:55] [PASSED] drm_test_managed_release_action
[01:08:55] [PASSED] drm_test_managed_run_action
[01:08:55] =================== [PASSED] drm_managed ===================
[01:08:55] =================== drm_mm (6 subtests) ====================
[01:08:55] [PASSED] drm_test_mm_init
[01:08:55] [PASSED] drm_test_mm_debug
[01:08:55] [PASSED] drm_test_mm_align32
[01:08:55] [PASSED] drm_test_mm_align64
[01:08:55] [PASSED] drm_test_mm_lowest
[01:08:55] [PASSED] drm_test_mm_highest
[01:08:55] ===================== [PASSED] drm_mm ======================
[01:08:55] ============= drm_modes_analog_tv (5 subtests) =============
[01:08:55] [PASSED] drm_test_modes_analog_tv_mono_576i
[01:08:55] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[01:08:55] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[01:08:55] [PASSED] drm_test_modes_analog_tv_pal_576i
[01:08:55] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[01:08:55] =============== [PASSED] drm_modes_analog_tv ===============
[01:08:55] ============== drm_plane_helper (2 subtests) ===============
[01:08:55] =============== drm_test_check_plane_state  ================
[01:08:55] [PASSED] clipping_simple
[01:08:55] [PASSED] clipping_rotate_reflect
[01:08:55] [PASSED] positioning_simple
[01:08:55] [PASSED] upscaling
[01:08:55] [PASSED] downscaling
[01:08:55] [PASSED] rounding1
[01:08:55] [PASSED] rounding2
[01:08:55] [PASSED] rounding3
[01:08:55] [PASSED] rounding4
[01:08:55] =========== [PASSED] drm_test_check_plane_state ============
[01:08:55] =========== drm_test_check_invalid_plane_state  ============
[01:08:55] [PASSED] positioning_invalid
[01:08:55] [PASSED] upscaling_invalid
[01:08:55] [PASSED] downscaling_invalid
[01:08:55] ======= [PASSED] drm_test_check_invalid_plane_state ========
[01:08:55] ================ [PASSED] drm_plane_helper =================
[01:08:55] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[01:08:55] ====== drm_test_connector_helper_tv_get_modes_check  =======
[01:08:55] [PASSED] None
[01:08:55] [PASSED] PAL
[01:08:55] [PASSED] NTSC
[01:08:55] [PASSED] Both, NTSC Default
[01:08:55] [PASSED] Both, PAL Default
[01:08:55] [PASSED] Both, NTSC Default, with PAL on command-line
[01:08:55] [PASSED] Both, PAL Default, with NTSC on command-line
[01:08:55] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[01:08:55] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[01:08:55] ================== drm_rect (9 subtests) ===================
[01:08:55] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[01:08:55] [PASSED] drm_test_rect_clip_scaled_not_clipped
[01:08:55] [PASSED] drm_test_rect_clip_scaled_clipped
[01:08:55] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[01:08:55] ================= drm_test_rect_intersect  =================
[01:08:55] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[01:08:55] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[01:08:55] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[01:08:55] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[01:08:55] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[01:08:55] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[01:08:55] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[01:08:55] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[01:08:55] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[01:08:55] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[01:08:55] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[01:08:55] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[01:08:55] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[01:08:55] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[01:08:55] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
stty: 'standard input': Inappropriate ioctl for device
[01:08:55] ============= [PASSED] drm_test_rect_intersect =============
[01:08:55] ================ drm_test_rect_calc_hscale  ================
[01:08:55] [PASSED] normal use
[01:08:55] [PASSED] out of max range
[01:08:55] [PASSED] out of min range
[01:08:55] [PASSED] zero dst
[01:08:55] [PASSED] negative src
[01:08:55] [PASSED] negative dst
[01:08:55] ============ [PASSED] drm_test_rect_calc_hscale ============
[01:08:55] ================ drm_test_rect_calc_vscale  ================
[01:08:55] [PASSED] normal use
[01:08:55] [PASSED] out of max range
[01:08:55] [PASSED] out of min range
[01:08:55] [PASSED] zero dst
[01:08:55] [PASSED] negative src
[01:08:55] [PASSED] negative dst
[01:08:55] ============ [PASSED] drm_test_rect_calc_vscale ============
[01:08:55] ================== drm_test_rect_rotate  ===================
[01:08:55] [PASSED] reflect-x
[01:08:55] [PASSED] reflect-y
[01:08:55] [PASSED] rotate-0
[01:08:55] [PASSED] rotate-90
[01:08:55] [PASSED] rotate-180
[01:08:55] [PASSED] rotate-270
[01:08:55] ============== [PASSED] drm_test_rect_rotate ===============
[01:08:55] ================ drm_test_rect_rotate_inv  =================
[01:08:55] [PASSED] reflect-x
[01:08:55] [PASSED] reflect-y
[01:08:55] [PASSED] rotate-0
[01:08:55] [PASSED] rotate-90
[01:08:55] [PASSED] rotate-180
[01:08:55] [PASSED] rotate-270
[01:08:55] ============ [PASSED] drm_test_rect_rotate_inv =============
[01:08:55] ==================== [PASSED] drm_rect =====================
[01:08:55] ============ drm_sysfb_modeset_test (1 subtest) ============
[01:08:55] ============ drm_test_sysfb_build_fourcc_list  =============
[01:08:55] [PASSED] no native formats
[01:08:55] [PASSED] XRGB8888 as native format
[01:08:55] [PASSED] remove duplicates
[01:08:55] [PASSED] convert alpha formats
[01:08:55] [PASSED] random formats
[01:08:55] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[01:08:55] ============= [PASSED] drm_sysfb_modeset_test ==============
[01:08:55] ================== drm_fixp (2 subtests) ===================
[01:08:55] [PASSED] drm_test_int2fixp
[01:08:55] [PASSED] drm_test_sm2fixp
[01:08:55] ==================== [PASSED] drm_fixp =====================
[01:08:55] ============================================================
[01:08:55] Testing complete. Ran 630 tests: passed: 630
[01:08:55] Elapsed time: 27.416s total, 1.681s configuring, 25.319s building, 0.357s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[01:08:55] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[01:08:57] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[01:09:06] Starting KUnit Kernel (1/1)...
[01:09:06] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[01:09:06] ================= ttm_device (5 subtests) ==================
[01:09:06] [PASSED] ttm_device_init_basic
[01:09:06] [PASSED] ttm_device_init_multiple
[01:09:06] [PASSED] ttm_device_fini_basic
[01:09:06] [PASSED] ttm_device_init_no_vma_man
[01:09:06] ================== ttm_device_init_pools  ==================
[01:09:06] [PASSED] No DMA allocations, no DMA32 required
[01:09:06] [PASSED] DMA allocations, DMA32 required
[01:09:06] [PASSED] No DMA allocations, DMA32 required
[01:09:06] [PASSED] DMA allocations, no DMA32 required
[01:09:06] ============== [PASSED] ttm_device_init_pools ==============
[01:09:06] =================== [PASSED] ttm_device ====================
[01:09:06] ================== ttm_pool (8 subtests) ===================
[01:09:06] ================== ttm_pool_alloc_basic  ===================
[01:09:06] [PASSED] One page
[01:09:06] [PASSED] More than one page
[01:09:06] [PASSED] Above the allocation limit
[01:09:06] [PASSED] One page, with coherent DMA mappings enabled
[01:09:06] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[01:09:06] ============== [PASSED] ttm_pool_alloc_basic ===============
[01:09:06] ============== ttm_pool_alloc_basic_dma_addr  ==============
[01:09:06] [PASSED] One page
[01:09:06] [PASSED] More than one page
[01:09:06] [PASSED] Above the allocation limit
[01:09:06] [PASSED] One page, with coherent DMA mappings enabled
[01:09:06] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[01:09:06] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[01:09:06] [PASSED] ttm_pool_alloc_order_caching_match
[01:09:06] [PASSED] ttm_pool_alloc_caching_mismatch
[01:09:06] [PASSED] ttm_pool_alloc_order_mismatch
[01:09:06] [PASSED] ttm_pool_free_dma_alloc
[01:09:06] [PASSED] ttm_pool_free_no_dma_alloc
[01:09:06] [PASSED] ttm_pool_fini_basic
[01:09:06] ==================== [PASSED] ttm_pool =====================
[01:09:06] ================ ttm_resource (8 subtests) =================
[01:09:06] ================= ttm_resource_init_basic  =================
[01:09:06] [PASSED] Init resource in TTM_PL_SYSTEM
[01:09:06] [PASSED] Init resource in TTM_PL_VRAM
[01:09:06] [PASSED] Init resource in a private placement
[01:09:06] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[01:09:06] ============= [PASSED] ttm_resource_init_basic =============
[01:09:06] [PASSED] ttm_resource_init_pinned
[01:09:06] [PASSED] ttm_resource_fini_basic
[01:09:06] [PASSED] ttm_resource_manager_init_basic
[01:09:06] [PASSED] ttm_resource_manager_usage_basic
[01:09:06] [PASSED] ttm_resource_manager_set_used_basic
[01:09:06] [PASSED] ttm_sys_man_alloc_basic
[01:09:06] [PASSED] ttm_sys_man_free_basic
[01:09:06] ================== [PASSED] ttm_resource ===================
[01:09:06] =================== ttm_tt (15 subtests) ===================
[01:09:06] ==================== ttm_tt_init_basic  ====================
[01:09:06] [PASSED] Page-aligned size
[01:09:06] [PASSED] Extra pages requested
[01:09:06] ================ [PASSED] ttm_tt_init_basic ================
[01:09:06] [PASSED] ttm_tt_init_misaligned
[01:09:06] [PASSED] ttm_tt_fini_basic
[01:09:06] [PASSED] ttm_tt_fini_sg
[01:09:06] [PASSED] ttm_tt_fini_shmem
[01:09:06] [PASSED] ttm_tt_create_basic
[01:09:06] [PASSED] ttm_tt_create_invalid_bo_type
[01:09:06] [PASSED] ttm_tt_create_ttm_exists
[01:09:06] [PASSED] ttm_tt_create_failed
[01:09:06] [PASSED] ttm_tt_destroy_basic
[01:09:06] [PASSED] ttm_tt_populate_null_ttm
[01:09:06] [PASSED] ttm_tt_populate_populated_ttm
[01:09:06] [PASSED] ttm_tt_unpopulate_basic
[01:09:06] [PASSED] ttm_tt_unpopulate_empty_ttm
[01:09:06] [PASSED] ttm_tt_swapin_basic
[01:09:06] ===================== [PASSED] ttm_tt ======================
[01:09:06] =================== ttm_bo (14 subtests) ===================
[01:09:06] =========== ttm_bo_reserve_optimistic_no_ticket  ===========
[01:09:06] [PASSED] Cannot be interrupted and sleeps
[01:09:06] [PASSED] Cannot be interrupted, locks straight away
[01:09:06] [PASSED] Can be interrupted, sleeps
[01:09:06] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[01:09:06] [PASSED] ttm_bo_reserve_locked_no_sleep
[01:09:06] [PASSED] ttm_bo_reserve_no_wait_ticket
[01:09:06] [PASSED] ttm_bo_reserve_double_resv
[01:09:06] [PASSED] ttm_bo_reserve_interrupted
[01:09:06] [PASSED] ttm_bo_reserve_deadlock
[01:09:06] [PASSED] ttm_bo_unreserve_basic
[01:09:06] [PASSED] ttm_bo_unreserve_pinned
[01:09:06] [PASSED] ttm_bo_unreserve_bulk
[01:09:06] [PASSED] ttm_bo_fini_basic
[01:09:06] [PASSED] ttm_bo_fini_shared_resv
[01:09:06] [PASSED] ttm_bo_pin_basic
[01:09:06] [PASSED] ttm_bo_pin_unpin_resource
[01:09:06] [PASSED] ttm_bo_multiple_pin_one_unpin
[01:09:06] ===================== [PASSED] ttm_bo ======================
[01:09:06] ============== ttm_bo_validate (21 subtests) ===============
[01:09:06] ============== ttm_bo_init_reserved_sys_man  ===============
[01:09:06] [PASSED] Buffer object for userspace
[01:09:06] [PASSED] Kernel buffer object
[01:09:06] [PASSED] Shared buffer object
[01:09:06] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[01:09:06] ============== ttm_bo_init_reserved_mock_man  ==============
[01:09:06] [PASSED] Buffer object for userspace
[01:09:06] [PASSED] Kernel buffer object
[01:09:06] [PASSED] Shared buffer object
[01:09:06] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[01:09:06] [PASSED] ttm_bo_init_reserved_resv
[01:09:06] ================== ttm_bo_validate_basic  ==================
[01:09:06] [PASSED] Buffer object for userspace
[01:09:06] [PASSED] Kernel buffer object
[01:09:06] [PASSED] Shared buffer object
[01:09:06] ============== [PASSED] ttm_bo_validate_basic ==============
[01:09:06] [PASSED] ttm_bo_validate_invalid_placement
[01:09:06] ============= ttm_bo_validate_same_placement  ==============
[01:09:06] [PASSED] System manager
[01:09:06] [PASSED] VRAM manager
[01:09:06] ========= [PASSED] ttm_bo_validate_same_placement ==========
[01:09:06] [PASSED] ttm_bo_validate_failed_alloc
[01:09:06] [PASSED] ttm_bo_validate_pinned
[01:09:06] [PASSED] ttm_bo_validate_busy_placement
[01:09:06] ================ ttm_bo_validate_multihop  =================
[01:09:06] [PASSED] Buffer object for userspace
[01:09:06] [PASSED] Kernel buffer object
[01:09:06] [PASSED] Shared buffer object
[01:09:06] ============ [PASSED] ttm_bo_validate_multihop =============
[01:09:06] ========== ttm_bo_validate_no_placement_signaled  ==========
[01:09:06] [PASSED] Buffer object in system domain, no page vector
[01:09:06] [PASSED] Buffer object in system domain with an existing page vector
[01:09:06] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[01:09:06] ======== ttm_bo_validate_no_placement_not_signaled  ========
[01:09:06] [PASSED] Buffer object for userspace
[01:09:06] [PASSED] Kernel buffer object
[01:09:06] [PASSED] Shared buffer object
[01:09:06] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[01:09:06] [PASSED] ttm_bo_validate_move_fence_signaled
[01:09:06] ========= ttm_bo_validate_move_fence_not_signaled  =========
[01:09:06] [PASSED] Waits for GPU
[01:09:06] [PASSED] Tries to lock straight away
[01:09:06] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[01:09:06] [PASSED] ttm_bo_validate_happy_evict
[01:09:06] [PASSED] ttm_bo_validate_all_pinned_evict
[01:09:06] [PASSED] ttm_bo_validate_allowed_only_evict
[01:09:06] [PASSED] ttm_bo_validate_deleted_evict
[01:09:06] [PASSED] ttm_bo_validate_busy_domain_evict
[01:09:06] [PASSED] ttm_bo_validate_evict_gutting
[01:09:06] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[01:09:06] ================= [PASSED] ttm_bo_validate =================
[01:09:06] ============================================================
[01:09:06] Testing complete. Ran 101 tests: passed: 101
[01:09:06] Elapsed time: 11.382s total, 1.644s configuring, 9.522s building, 0.186s running

+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel



^ permalink raw reply	[flat|nested] 10+ messages in thread

* ✗ Xe.CI.Full: failure for drm/xe/ptl: Disable DCC on PTL (rev5)
  2026-01-24  0:59 [PATCH v4] drm/xe/ptl: Disable DCC on PTL Vinay Belgaumkar
  2026-01-24  1:09 ` ✓ CI.KUnit: success for drm/xe/ptl: Disable DCC on PTL (rev5) Patchwork
@ 2026-01-24  9:09 ` Patchwork
  2026-01-26  8:01 ` ✓ CI.KUnit: success " Patchwork
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-01-24  9:09 UTC (permalink / raw)
  To: Vinay Belgaumkar; +Cc: intel-xe

[-- Attachment #1: Type: text/plain, Size: 368 bytes --]

== Series Details ==

Series: drm/xe/ptl: Disable DCC on PTL (rev5)
URL   : https://patchwork.freedesktop.org/series/160388/
State : failure

== Summary ==

ERROR: The runconfig 'xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9_FULL' does not exist in the database

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/index.html

[-- Attachment #2: Type: text/html, Size: 933 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* ✓ CI.KUnit: success for drm/xe/ptl: Disable DCC on PTL (rev5)
  2026-01-24  0:59 [PATCH v4] drm/xe/ptl: Disable DCC on PTL Vinay Belgaumkar
  2026-01-24  1:09 ` ✓ CI.KUnit: success for drm/xe/ptl: Disable DCC on PTL (rev5) Patchwork
  2026-01-24  9:09 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2026-01-26  8:01 ` Patchwork
  2026-01-26  8:26 ` Patchwork
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-01-26  8:01 UTC (permalink / raw)
  To: Vinay Belgaumkar; +Cc: intel-xe

== Series Details ==

Series: drm/xe/ptl: Disable DCC on PTL (rev5)
URL   : https://patchwork.freedesktop.org/series/160388/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[07:59:55] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[07:59:59] 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=25
[08:00:38] Starting KUnit Kernel (1/1)...
[08:00:38] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[08:00:39] ================== guc_buf (11 subtests) ===================
[08:00:39] [PASSED] test_smallest
[08:00:39] [PASSED] test_largest
[08:00:39] [PASSED] test_granular
[08:00:39] [PASSED] test_unique
[08:00:39] [PASSED] test_overlap
[08:00:39] [PASSED] test_reusable
[08:00:39] [PASSED] test_too_big
[08:00:39] [PASSED] test_flush
[08:00:39] [PASSED] test_lookup
[08:00:39] [PASSED] test_data
[08:00:39] [PASSED] test_class
[08:00:39] ===================== [PASSED] guc_buf =====================
[08:00:39] =================== guc_dbm (7 subtests) ===================
[08:00:39] [PASSED] test_empty
[08:00:39] [PASSED] test_default
[08:00:39] ======================== test_size  ========================
[08:00:39] [PASSED] 4
[08:00:39] [PASSED] 8
[08:00:39] [PASSED] 32
[08:00:39] [PASSED] 256
[08:00:39] ==================== [PASSED] test_size ====================
[08:00:39] ======================= test_reuse  ========================
[08:00:39] [PASSED] 4
[08:00:39] [PASSED] 8
[08:00:39] [PASSED] 32
[08:00:39] [PASSED] 256
[08:00:39] =================== [PASSED] test_reuse ====================
[08:00:39] =================== test_range_overlap  ====================
[08:00:39] [PASSED] 4
[08:00:39] [PASSED] 8
[08:00:39] [PASSED] 32
[08:00:39] [PASSED] 256
[08:00:39] =============== [PASSED] test_range_overlap ================
[08:00:39] =================== test_range_compact  ====================
[08:00:39] [PASSED] 4
[08:00:39] [PASSED] 8
[08:00:39] [PASSED] 32
[08:00:39] [PASSED] 256
[08:00:39] =============== [PASSED] test_range_compact ================
[08:00:39] ==================== test_range_spare  =====================
[08:00:39] [PASSED] 4
[08:00:39] [PASSED] 8
[08:00:39] [PASSED] 32
[08:00:39] [PASSED] 256
[08:00:39] ================ [PASSED] test_range_spare =================
[08:00:39] ===================== [PASSED] guc_dbm =====================
[08:00:39] =================== guc_idm (6 subtests) ===================
[08:00:39] [PASSED] bad_init
[08:00:39] [PASSED] no_init
[08:00:39] [PASSED] init_fini
[08:00:39] [PASSED] check_used
[08:00:39] [PASSED] check_quota
[08:00:39] [PASSED] check_all
[08:00:39] ===================== [PASSED] guc_idm =====================
[08:00:39] ================== no_relay (3 subtests) ===================
[08:00:39] [PASSED] xe_drops_guc2pf_if_not_ready
[08:00:39] [PASSED] xe_drops_guc2vf_if_not_ready
[08:00:39] [PASSED] xe_rejects_send_if_not_ready
[08:00:39] ==================== [PASSED] no_relay =====================
[08:00:39] ================== pf_relay (14 subtests) ==================
[08:00:39] [PASSED] pf_rejects_guc2pf_too_short
[08:00:39] [PASSED] pf_rejects_guc2pf_too_long
[08:00:39] [PASSED] pf_rejects_guc2pf_no_payload
[08:00:39] [PASSED] pf_fails_no_payload
[08:00:39] [PASSED] pf_fails_bad_origin
[08:00:39] [PASSED] pf_fails_bad_type
[08:00:39] [PASSED] pf_txn_reports_error
[08:00:39] [PASSED] pf_txn_sends_pf2guc
[08:00:39] [PASSED] pf_sends_pf2guc
[08:00:39] [SKIPPED] pf_loopback_nop
[08:00:39] [SKIPPED] pf_loopback_echo
[08:00:39] [SKIPPED] pf_loopback_fail
[08:00:39] [SKIPPED] pf_loopback_busy
[08:00:39] [SKIPPED] pf_loopback_retry
[08:00:39] ==================== [PASSED] pf_relay =====================
[08:00:39] ================== vf_relay (3 subtests) ===================
[08:00:39] [PASSED] vf_rejects_guc2vf_too_short
[08:00:39] [PASSED] vf_rejects_guc2vf_too_long
[08:00:39] [PASSED] vf_rejects_guc2vf_no_payload
[08:00:39] ==================== [PASSED] vf_relay =====================
[08:00:39] ================ pf_gt_config (6 subtests) =================
[08:00:39] [PASSED] fair_contexts_1vf
[08:00:39] [PASSED] fair_doorbells_1vf
[08:00:39] [PASSED] fair_ggtt_1vf
[08:00:39] ====================== fair_contexts  ======================
[08:00:39] [PASSED] 1 VF
[08:00:39] [PASSED] 2 VFs
[08:00:39] [PASSED] 3 VFs
[08:00:39] [PASSED] 4 VFs
[08:00:39] [PASSED] 5 VFs
[08:00:39] [PASSED] 6 VFs
[08:00:39] [PASSED] 7 VFs
[08:00:39] [PASSED] 8 VFs
[08:00:39] [PASSED] 9 VFs
[08:00:39] [PASSED] 10 VFs
[08:00:39] [PASSED] 11 VFs
[08:00:39] [PASSED] 12 VFs
[08:00:39] [PASSED] 13 VFs
[08:00:39] [PASSED] 14 VFs
[08:00:39] [PASSED] 15 VFs
[08:00:39] [PASSED] 16 VFs
[08:00:39] [PASSED] 17 VFs
[08:00:39] [PASSED] 18 VFs
[08:00:39] [PASSED] 19 VFs
[08:00:39] [PASSED] 20 VFs
[08:00:39] [PASSED] 21 VFs
[08:00:39] [PASSED] 22 VFs
[08:00:39] [PASSED] 23 VFs
[08:00:39] [PASSED] 24 VFs
[08:00:39] [PASSED] 25 VFs
[08:00:39] [PASSED] 26 VFs
[08:00:39] [PASSED] 27 VFs
[08:00:39] [PASSED] 28 VFs
[08:00:39] [PASSED] 29 VFs
[08:00:39] [PASSED] 30 VFs
[08:00:39] [PASSED] 31 VFs
[08:00:39] [PASSED] 32 VFs
[08:00:39] [PASSED] 33 VFs
[08:00:39] [PASSED] 34 VFs
[08:00:39] [PASSED] 35 VFs
[08:00:39] [PASSED] 36 VFs
[08:00:39] [PASSED] 37 VFs
[08:00:39] [PASSED] 38 VFs
[08:00:39] [PASSED] 39 VFs
[08:00:39] [PASSED] 40 VFs
[08:00:39] [PASSED] 41 VFs
[08:00:39] [PASSED] 42 VFs
[08:00:39] [PASSED] 43 VFs
[08:00:39] [PASSED] 44 VFs
[08:00:39] [PASSED] 45 VFs
[08:00:39] [PASSED] 46 VFs
[08:00:39] [PASSED] 47 VFs
[08:00:39] [PASSED] 48 VFs
[08:00:39] [PASSED] 49 VFs
[08:00:39] [PASSED] 50 VFs
[08:00:39] [PASSED] 51 VFs
[08:00:39] [PASSED] 52 VFs
[08:00:39] [PASSED] 53 VFs
[08:00:39] [PASSED] 54 VFs
[08:00:39] [PASSED] 55 VFs
[08:00:39] [PASSED] 56 VFs
[08:00:39] [PASSED] 57 VFs
[08:00:39] [PASSED] 58 VFs
[08:00:39] [PASSED] 59 VFs
[08:00:39] [PASSED] 60 VFs
[08:00:39] [PASSED] 61 VFs
[08:00:39] [PASSED] 62 VFs
[08:00:39] [PASSED] 63 VFs
[08:00:39] ================== [PASSED] fair_contexts ==================
[08:00:39] ===================== fair_doorbells  ======================
[08:00:39] [PASSED] 1 VF
[08:00:39] [PASSED] 2 VFs
[08:00:39] [PASSED] 3 VFs
[08:00:39] [PASSED] 4 VFs
[08:00:39] [PASSED] 5 VFs
[08:00:39] [PASSED] 6 VFs
[08:00:39] [PASSED] 7 VFs
[08:00:39] [PASSED] 8 VFs
[08:00:39] [PASSED] 9 VFs
[08:00:39] [PASSED] 10 VFs
[08:00:39] [PASSED] 11 VFs
[08:00:39] [PASSED] 12 VFs
[08:00:39] [PASSED] 13 VFs
[08:00:39] [PASSED] 14 VFs
[08:00:39] [PASSED] 15 VFs
[08:00:39] [PASSED] 16 VFs
[08:00:39] [PASSED] 17 VFs
[08:00:39] [PASSED] 18 VFs
[08:00:39] [PASSED] 19 VFs
[08:00:39] [PASSED] 20 VFs
[08:00:39] [PASSED] 21 VFs
[08:00:39] [PASSED] 22 VFs
[08:00:39] [PASSED] 23 VFs
[08:00:39] [PASSED] 24 VFs
[08:00:39] [PASSED] 25 VFs
[08:00:39] [PASSED] 26 VFs
[08:00:39] [PASSED] 27 VFs
[08:00:39] [PASSED] 28 VFs
[08:00:39] [PASSED] 29 VFs
[08:00:39] [PASSED] 30 VFs
[08:00:39] [PASSED] 31 VFs
[08:00:39] [PASSED] 32 VFs
[08:00:39] [PASSED] 33 VFs
[08:00:39] [PASSED] 34 VFs
[08:00:39] [PASSED] 35 VFs
[08:00:39] [PASSED] 36 VFs
[08:00:39] [PASSED] 37 VFs
[08:00:39] [PASSED] 38 VFs
[08:00:39] [PASSED] 39 VFs
[08:00:39] [PASSED] 40 VFs
[08:00:39] [PASSED] 41 VFs
[08:00:39] [PASSED] 42 VFs
[08:00:39] [PASSED] 43 VFs
[08:00:39] [PASSED] 44 VFs
[08:00:39] [PASSED] 45 VFs
[08:00:39] [PASSED] 46 VFs
[08:00:39] [PASSED] 47 VFs
[08:00:39] [PASSED] 48 VFs
[08:00:39] [PASSED] 49 VFs
[08:00:39] [PASSED] 50 VFs
[08:00:39] [PASSED] 51 VFs
[08:00:39] [PASSED] 52 VFs
[08:00:39] [PASSED] 53 VFs
[08:00:39] [PASSED] 54 VFs
[08:00:39] [PASSED] 55 VFs
[08:00:39] [PASSED] 56 VFs
[08:00:39] [PASSED] 57 VFs
[08:00:39] [PASSED] 58 VFs
[08:00:39] [PASSED] 59 VFs
[08:00:39] [PASSED] 60 VFs
[08:00:39] [PASSED] 61 VFs
[08:00:39] [PASSED] 62 VFs
[08:00:39] [PASSED] 63 VFs
[08:00:39] ================= [PASSED] fair_doorbells ==================
[08:00:39] ======================== fair_ggtt  ========================
[08:00:39] [PASSED] 1 VF
[08:00:39] [PASSED] 2 VFs
[08:00:39] [PASSED] 3 VFs
[08:00:39] [PASSED] 4 VFs
[08:00:39] [PASSED] 5 VFs
[08:00:39] [PASSED] 6 VFs
[08:00:39] [PASSED] 7 VFs
[08:00:39] [PASSED] 8 VFs
[08:00:39] [PASSED] 9 VFs
[08:00:39] [PASSED] 10 VFs
[08:00:39] [PASSED] 11 VFs
[08:00:39] [PASSED] 12 VFs
[08:00:39] [PASSED] 13 VFs
[08:00:39] [PASSED] 14 VFs
[08:00:39] [PASSED] 15 VFs
[08:00:39] [PASSED] 16 VFs
[08:00:39] [PASSED] 17 VFs
[08:00:39] [PASSED] 18 VFs
[08:00:39] [PASSED] 19 VFs
[08:00:39] [PASSED] 20 VFs
[08:00:39] [PASSED] 21 VFs
[08:00:39] [PASSED] 22 VFs
[08:00:39] [PASSED] 23 VFs
[08:00:39] [PASSED] 24 VFs
[08:00:39] [PASSED] 25 VFs
[08:00:39] [PASSED] 26 VFs
[08:00:39] [PASSED] 27 VFs
[08:00:39] [PASSED] 28 VFs
[08:00:39] [PASSED] 29 VFs
[08:00:39] [PASSED] 30 VFs
[08:00:39] [PASSED] 31 VFs
[08:00:39] [PASSED] 32 VFs
[08:00:39] [PASSED] 33 VFs
[08:00:39] [PASSED] 34 VFs
[08:00:39] [PASSED] 35 VFs
[08:00:39] [PASSED] 36 VFs
[08:00:39] [PASSED] 37 VFs
[08:00:39] [PASSED] 38 VFs
[08:00:39] [PASSED] 39 VFs
[08:00:39] [PASSED] 40 VFs
[08:00:39] [PASSED] 41 VFs
[08:00:39] [PASSED] 42 VFs
[08:00:39] [PASSED] 43 VFs
[08:00:39] [PASSED] 44 VFs
[08:00:39] [PASSED] 45 VFs
[08:00:39] [PASSED] 46 VFs
[08:00:39] [PASSED] 47 VFs
[08:00:39] [PASSED] 48 VFs
[08:00:39] [PASSED] 49 VFs
[08:00:39] [PASSED] 50 VFs
[08:00:39] [PASSED] 51 VFs
[08:00:39] [PASSED] 52 VFs
[08:00:39] [PASSED] 53 VFs
[08:00:39] [PASSED] 54 VFs
[08:00:39] [PASSED] 55 VFs
[08:00:39] [PASSED] 56 VFs
[08:00:39] [PASSED] 57 VFs
[08:00:39] [PASSED] 58 VFs
[08:00:39] [PASSED] 59 VFs
[08:00:39] [PASSED] 60 VFs
[08:00:39] [PASSED] 61 VFs
[08:00:39] [PASSED] 62 VFs
[08:00:39] [PASSED] 63 VFs
[08:00:39] ==================== [PASSED] fair_ggtt ====================
[08:00:39] ================== [PASSED] pf_gt_config ===================
[08:00:39] ===================== lmtt (1 subtest) =====================
[08:00:39] ======================== test_ops  =========================
[08:00:39] [PASSED] 2-level
[08:00:39] [PASSED] multi-level
[08:00:39] ==================== [PASSED] test_ops =====================
[08:00:39] ====================== [PASSED] lmtt =======================
[08:00:39] ================= pf_service (11 subtests) =================
[08:00:39] [PASSED] pf_negotiate_any
[08:00:39] [PASSED] pf_negotiate_base_match
[08:00:39] [PASSED] pf_negotiate_base_newer
[08:00:39] [PASSED] pf_negotiate_base_next
[08:00:39] [SKIPPED] pf_negotiate_base_older
[08:00:39] [PASSED] pf_negotiate_base_prev
[08:00:39] [PASSED] pf_negotiate_latest_match
[08:00:39] [PASSED] pf_negotiate_latest_newer
[08:00:39] [PASSED] pf_negotiate_latest_next
[08:00:39] [SKIPPED] pf_negotiate_latest_older
[08:00:39] [SKIPPED] pf_negotiate_latest_prev
[08:00:39] =================== [PASSED] pf_service ====================
[08:00:39] ================= xe_guc_g2g (2 subtests) ==================
[08:00:39] ============== xe_live_guc_g2g_kunit_default  ==============
[08:00:39] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[08:00:39] ============== xe_live_guc_g2g_kunit_allmem  ===============
[08:00:39] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[08:00:39] =================== [SKIPPED] xe_guc_g2g ===================
[08:00:39] =================== xe_mocs (2 subtests) ===================
[08:00:39] ================ xe_live_mocs_kernel_kunit  ================
[08:00:39] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[08:00:39] ================ xe_live_mocs_reset_kunit  =================
[08:00:39] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[08:00:39] ==================== [SKIPPED] xe_mocs =====================
[08:00:39] ================= xe_migrate (2 subtests) ==================
[08:00:39] ================= xe_migrate_sanity_kunit  =================
[08:00:39] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[08:00:39] ================== xe_validate_ccs_kunit  ==================
[08:00:39] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[08:00:39] =================== [SKIPPED] xe_migrate ===================
[08:00:39] ================== xe_dma_buf (1 subtest) ==================
[08:00:39] ==================== xe_dma_buf_kunit  =====================
[08:00:39] ================ [SKIPPED] xe_dma_buf_kunit ================
[08:00:39] =================== [SKIPPED] xe_dma_buf ===================
[08:00:39] ================= xe_bo_shrink (1 subtest) =================
[08:00:39] =================== xe_bo_shrink_kunit  ====================
[08:00:39] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[08:00:39] ================== [SKIPPED] xe_bo_shrink ==================
[08:00:39] ==================== xe_bo (2 subtests) ====================
[08:00:39] ================== xe_ccs_migrate_kunit  ===================
[08:00:39] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[08:00:39] ==================== xe_bo_evict_kunit  ====================
[08:00:39] =============== [SKIPPED] xe_bo_evict_kunit ================
[08:00:39] ===================== [SKIPPED] xe_bo ======================
[08:00:39] ==================== args (13 subtests) ====================
[08:00:39] [PASSED] count_args_test
[08:00:39] [PASSED] call_args_example
[08:00:39] [PASSED] call_args_test
[08:00:39] [PASSED] drop_first_arg_example
[08:00:39] [PASSED] drop_first_arg_test
[08:00:39] [PASSED] first_arg_example
[08:00:39] [PASSED] first_arg_test
[08:00:39] [PASSED] last_arg_example
[08:00:39] [PASSED] last_arg_test
[08:00:39] [PASSED] pick_arg_example
[08:00:39] [PASSED] if_args_example
[08:00:39] [PASSED] if_args_test
[08:00:39] [PASSED] sep_comma_example
[08:00:39] ====================== [PASSED] args =======================
[08:00:39] =================== xe_pci (3 subtests) ====================
[08:00:39] ==================== check_graphics_ip  ====================
[08:00:39] [PASSED] 12.00 Xe_LP
[08:00:39] [PASSED] 12.10 Xe_LP+
[08:00:39] [PASSED] 12.55 Xe_HPG
[08:00:39] [PASSED] 12.60 Xe_HPC
[08:00:39] [PASSED] 12.70 Xe_LPG
[08:00:39] [PASSED] 12.71 Xe_LPG
[08:00:39] [PASSED] 12.74 Xe_LPG+
[08:00:39] [PASSED] 20.01 Xe2_HPG
[08:00:39] [PASSED] 20.02 Xe2_HPG
[08:00:39] [PASSED] 20.04 Xe2_LPG
[08:00:39] [PASSED] 30.00 Xe3_LPG
[08:00:39] [PASSED] 30.01 Xe3_LPG
[08:00:39] [PASSED] 30.03 Xe3_LPG
[08:00:39] [PASSED] 30.04 Xe3_LPG
[08:00:39] [PASSED] 30.05 Xe3_LPG
[08:00:39] [PASSED] 35.11 Xe3p_XPC
[08:00:39] ================ [PASSED] check_graphics_ip ================
[08:00:39] ===================== check_media_ip  ======================
[08:00:39] [PASSED] 12.00 Xe_M
[08:00:39] [PASSED] 12.55 Xe_HPM
[08:00:39] [PASSED] 13.00 Xe_LPM+
[08:00:39] [PASSED] 13.01 Xe2_HPM
[08:00:39] [PASSED] 20.00 Xe2_LPM
[08:00:39] [PASSED] 30.00 Xe3_LPM
[08:00:39] [PASSED] 30.02 Xe3_LPM
[08:00:39] [PASSED] 35.00 Xe3p_LPM
[08:00:39] [PASSED] 35.03 Xe3p_HPM
[08:00:39] ================= [PASSED] check_media_ip ==================
[08:00:39] =================== check_platform_desc  ===================
[08:00:39] [PASSED] 0x9A60 (TIGERLAKE)
[08:00:39] [PASSED] 0x9A68 (TIGERLAKE)
[08:00:39] [PASSED] 0x9A70 (TIGERLAKE)
[08:00:39] [PASSED] 0x9A40 (TIGERLAKE)
[08:00:39] [PASSED] 0x9A49 (TIGERLAKE)
[08:00:39] [PASSED] 0x9A59 (TIGERLAKE)
[08:00:39] [PASSED] 0x9A78 (TIGERLAKE)
[08:00:39] [PASSED] 0x9AC0 (TIGERLAKE)
[08:00:39] [PASSED] 0x9AC9 (TIGERLAKE)
[08:00:39] [PASSED] 0x9AD9 (TIGERLAKE)
[08:00:39] [PASSED] 0x9AF8 (TIGERLAKE)
[08:00:39] [PASSED] 0x4C80 (ROCKETLAKE)
[08:00:39] [PASSED] 0x4C8A (ROCKETLAKE)
[08:00:39] [PASSED] 0x4C8B (ROCKETLAKE)
[08:00:39] [PASSED] 0x4C8C (ROCKETLAKE)
[08:00:39] [PASSED] 0x4C90 (ROCKETLAKE)
[08:00:39] [PASSED] 0x4C9A (ROCKETLAKE)
[08:00:39] [PASSED] 0x4680 (ALDERLAKE_S)
[08:00:39] [PASSED] 0x4682 (ALDERLAKE_S)
[08:00:39] [PASSED] 0x4688 (ALDERLAKE_S)
[08:00:39] [PASSED] 0x468A (ALDERLAKE_S)
[08:00:39] [PASSED] 0x468B (ALDERLAKE_S)
[08:00:39] [PASSED] 0x4690 (ALDERLAKE_S)
[08:00:39] [PASSED] 0x4692 (ALDERLAKE_S)
[08:00:39] [PASSED] 0x4693 (ALDERLAKE_S)
[08:00:39] [PASSED] 0x46A0 (ALDERLAKE_P)
[08:00:39] [PASSED] 0x46A1 (ALDERLAKE_P)
[08:00:39] [PASSED] 0x46A2 (ALDERLAKE_P)
[08:00:39] [PASSED] 0x46A3 (ALDERLAKE_P)
[08:00:39] [PASSED] 0x46A6 (ALDERLAKE_P)
[08:00:39] [PASSED] 0x46A8 (ALDERLAKE_P)
[08:00:39] [PASSED] 0x46AA (ALDERLAKE_P)
[08:00:39] [PASSED] 0x462A (ALDERLAKE_P)
[08:00:39] [PASSED] 0x4626 (ALDERLAKE_P)
[08:00:39] [PASSED] 0x4628 (ALDERLAKE_P)
stty: 'standard input': Inappropriate ioctl for device
[08:00:39] [PASSED] 0x46B0 (ALDERLAKE_P)
[08:00:39] [PASSED] 0x46B1 (ALDERLAKE_P)
[08:00:39] [PASSED] 0x46B2 (ALDERLAKE_P)
[08:00:39] [PASSED] 0x46B3 (ALDERLAKE_P)
[08:00:39] [PASSED] 0x46C0 (ALDERLAKE_P)
[08:00:39] [PASSED] 0x46C1 (ALDERLAKE_P)
[08:00:39] [PASSED] 0x46C2 (ALDERLAKE_P)
[08:00:39] [PASSED] 0x46C3 (ALDERLAKE_P)
[08:00:39] [PASSED] 0x46D0 (ALDERLAKE_N)
[08:00:39] [PASSED] 0x46D1 (ALDERLAKE_N)
[08:00:39] [PASSED] 0x46D2 (ALDERLAKE_N)
[08:00:39] [PASSED] 0x46D3 (ALDERLAKE_N)
[08:00:39] [PASSED] 0x46D4 (ALDERLAKE_N)
[08:00:39] [PASSED] 0xA721 (ALDERLAKE_P)
[08:00:39] [PASSED] 0xA7A1 (ALDERLAKE_P)
[08:00:39] [PASSED] 0xA7A9 (ALDERLAKE_P)
[08:00:39] [PASSED] 0xA7AC (ALDERLAKE_P)
[08:00:39] [PASSED] 0xA7AD (ALDERLAKE_P)
[08:00:39] [PASSED] 0xA720 (ALDERLAKE_P)
[08:00:39] [PASSED] 0xA7A0 (ALDERLAKE_P)
[08:00:39] [PASSED] 0xA7A8 (ALDERLAKE_P)
[08:00:39] [PASSED] 0xA7AA (ALDERLAKE_P)
[08:00:39] [PASSED] 0xA7AB (ALDERLAKE_P)
[08:00:39] [PASSED] 0xA780 (ALDERLAKE_S)
[08:00:39] [PASSED] 0xA781 (ALDERLAKE_S)
[08:00:39] [PASSED] 0xA782 (ALDERLAKE_S)
[08:00:39] [PASSED] 0xA783 (ALDERLAKE_S)
[08:00:39] [PASSED] 0xA788 (ALDERLAKE_S)
[08:00:39] [PASSED] 0xA789 (ALDERLAKE_S)
[08:00:39] [PASSED] 0xA78A (ALDERLAKE_S)
[08:00:39] [PASSED] 0xA78B (ALDERLAKE_S)
[08:00:39] [PASSED] 0x4905 (DG1)
[08:00:39] [PASSED] 0x4906 (DG1)
[08:00:39] [PASSED] 0x4907 (DG1)
[08:00:39] [PASSED] 0x4908 (DG1)
[08:00:39] [PASSED] 0x4909 (DG1)
[08:00:39] [PASSED] 0x56C0 (DG2)
[08:00:39] [PASSED] 0x56C2 (DG2)
[08:00:39] [PASSED] 0x56C1 (DG2)
[08:00:39] [PASSED] 0x7D51 (METEORLAKE)
[08:00:39] [PASSED] 0x7DD1 (METEORLAKE)
[08:00:39] [PASSED] 0x7D41 (METEORLAKE)
[08:00:39] [PASSED] 0x7D67 (METEORLAKE)
[08:00:39] [PASSED] 0xB640 (METEORLAKE)
[08:00:39] [PASSED] 0x56A0 (DG2)
[08:00:39] [PASSED] 0x56A1 (DG2)
[08:00:39] [PASSED] 0x56A2 (DG2)
[08:00:39] [PASSED] 0x56BE (DG2)
[08:00:39] [PASSED] 0x56BF (DG2)
[08:00:39] [PASSED] 0x5690 (DG2)
[08:00:39] [PASSED] 0x5691 (DG2)
[08:00:39] [PASSED] 0x5692 (DG2)
[08:00:39] [PASSED] 0x56A5 (DG2)
[08:00:39] [PASSED] 0x56A6 (DG2)
[08:00:39] [PASSED] 0x56B0 (DG2)
[08:00:39] [PASSED] 0x56B1 (DG2)
[08:00:39] [PASSED] 0x56BA (DG2)
[08:00:39] [PASSED] 0x56BB (DG2)
[08:00:39] [PASSED] 0x56BC (DG2)
[08:00:39] [PASSED] 0x56BD (DG2)
[08:00:39] [PASSED] 0x5693 (DG2)
[08:00:39] [PASSED] 0x5694 (DG2)
[08:00:39] [PASSED] 0x5695 (DG2)
[08:00:39] [PASSED] 0x56A3 (DG2)
[08:00:39] [PASSED] 0x56A4 (DG2)
[08:00:39] [PASSED] 0x56B2 (DG2)
[08:00:39] [PASSED] 0x56B3 (DG2)
[08:00:39] [PASSED] 0x5696 (DG2)
[08:00:39] [PASSED] 0x5697 (DG2)
[08:00:39] [PASSED] 0xB69 (PVC)
[08:00:39] [PASSED] 0xB6E (PVC)
[08:00:39] [PASSED] 0xBD4 (PVC)
[08:00:39] [PASSED] 0xBD5 (PVC)
[08:00:39] [PASSED] 0xBD6 (PVC)
[08:00:39] [PASSED] 0xBD7 (PVC)
[08:00:39] [PASSED] 0xBD8 (PVC)
[08:00:39] [PASSED] 0xBD9 (PVC)
[08:00:39] [PASSED] 0xBDA (PVC)
[08:00:39] [PASSED] 0xBDB (PVC)
[08:00:39] [PASSED] 0xBE0 (PVC)
[08:00:39] [PASSED] 0xBE1 (PVC)
[08:00:39] [PASSED] 0xBE5 (PVC)
[08:00:39] [PASSED] 0x7D40 (METEORLAKE)
[08:00:39] [PASSED] 0x7D45 (METEORLAKE)
[08:00:39] [PASSED] 0x7D55 (METEORLAKE)
[08:00:39] [PASSED] 0x7D60 (METEORLAKE)
[08:00:39] [PASSED] 0x7DD5 (METEORLAKE)
[08:00:39] [PASSED] 0x6420 (LUNARLAKE)
[08:00:39] [PASSED] 0x64A0 (LUNARLAKE)
[08:00:39] [PASSED] 0x64B0 (LUNARLAKE)
[08:00:39] [PASSED] 0xE202 (BATTLEMAGE)
[08:00:39] [PASSED] 0xE209 (BATTLEMAGE)
[08:00:39] [PASSED] 0xE20B (BATTLEMAGE)
[08:00:39] [PASSED] 0xE20C (BATTLEMAGE)
[08:00:39] [PASSED] 0xE20D (BATTLEMAGE)
[08:00:39] [PASSED] 0xE210 (BATTLEMAGE)
[08:00:39] [PASSED] 0xE211 (BATTLEMAGE)
[08:00:39] [PASSED] 0xE212 (BATTLEMAGE)
[08:00:39] [PASSED] 0xE216 (BATTLEMAGE)
[08:00:39] [PASSED] 0xE220 (BATTLEMAGE)
[08:00:39] [PASSED] 0xE221 (BATTLEMAGE)
[08:00:39] [PASSED] 0xE222 (BATTLEMAGE)
[08:00:39] [PASSED] 0xE223 (BATTLEMAGE)
[08:00:39] [PASSED] 0xB080 (PANTHERLAKE)
[08:00:39] [PASSED] 0xB081 (PANTHERLAKE)
[08:00:39] [PASSED] 0xB082 (PANTHERLAKE)
[08:00:39] [PASSED] 0xB083 (PANTHERLAKE)
[08:00:39] [PASSED] 0xB084 (PANTHERLAKE)
[08:00:39] [PASSED] 0xB085 (PANTHERLAKE)
[08:00:39] [PASSED] 0xB086 (PANTHERLAKE)
[08:00:39] [PASSED] 0xB087 (PANTHERLAKE)
[08:00:39] [PASSED] 0xB08F (PANTHERLAKE)
[08:00:39] [PASSED] 0xB090 (PANTHERLAKE)
[08:00:39] [PASSED] 0xB0A0 (PANTHERLAKE)
[08:00:39] [PASSED] 0xB0B0 (PANTHERLAKE)
[08:00:39] [PASSED] 0xFD80 (PANTHERLAKE)
[08:00:39] [PASSED] 0xFD81 (PANTHERLAKE)
[08:00:39] [PASSED] 0xD740 (NOVALAKE_S)
[08:00:39] [PASSED] 0xD741 (NOVALAKE_S)
[08:00:39] [PASSED] 0xD742 (NOVALAKE_S)
[08:00:39] [PASSED] 0xD743 (NOVALAKE_S)
[08:00:39] [PASSED] 0xD744 (NOVALAKE_S)
[08:00:39] [PASSED] 0xD745 (NOVALAKE_S)
[08:00:39] [PASSED] 0x674C (CRESCENTISLAND)
[08:00:39] =============== [PASSED] check_platform_desc ===============
[08:00:39] ===================== [PASSED] xe_pci ======================
[08:00:39] =================== xe_rtp (2 subtests) ====================
[08:00:39] =============== xe_rtp_process_to_sr_tests  ================
[08:00:39] [PASSED] coalesce-same-reg
[08:00:39] [PASSED] no-match-no-add
[08:00:39] [PASSED] match-or
[08:00:39] [PASSED] match-or-xfail
[08:00:39] [PASSED] no-match-no-add-multiple-rules
[08:00:39] [PASSED] two-regs-two-entries
[08:00:39] [PASSED] clr-one-set-other
[08:00:39] [PASSED] set-field
[08:00:39] [PASSED] conflict-duplicate
[08:00:39] [PASSED] conflict-not-disjoint
[08:00:39] [PASSED] conflict-reg-type
[08:00:39] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[08:00:39] ================== xe_rtp_process_tests  ===================
[08:00:39] [PASSED] active1
[08:00:39] [PASSED] active2
[08:00:39] [PASSED] active-inactive
[08:00:39] [PASSED] inactive-active
[08:00:39] [PASSED] inactive-1st_or_active-inactive
[08:00:39] [PASSED] inactive-2nd_or_active-inactive
[08:00:39] [PASSED] inactive-last_or_active-inactive
[08:00:39] [PASSED] inactive-no_or_active-inactive
[08:00:39] ============== [PASSED] xe_rtp_process_tests ===============
[08:00:39] ===================== [PASSED] xe_rtp ======================
[08:00:39] ==================== xe_wa (1 subtest) =====================
[08:00:39] ======================== xe_wa_gt  =========================
[08:00:39] [PASSED] TIGERLAKE B0
[08:00:39] [PASSED] DG1 A0
[08:00:39] [PASSED] DG1 B0
[08:00:39] [PASSED] ALDERLAKE_S A0
[08:00:39] [PASSED] ALDERLAKE_S B0
[08:00:39] [PASSED] ALDERLAKE_S C0
[08:00:39] [PASSED] ALDERLAKE_S D0
[08:00:39] [PASSED] ALDERLAKE_P A0
[08:00:39] [PASSED] ALDERLAKE_P B0
[08:00:39] [PASSED] ALDERLAKE_P C0
[08:00:39] [PASSED] ALDERLAKE_S RPLS D0
[08:00:39] [PASSED] ALDERLAKE_P RPLU E0
[08:00:39] [PASSED] DG2 G10 C0
[08:00:39] [PASSED] DG2 G11 B1
[08:00:39] [PASSED] DG2 G12 A1
[08:00:39] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[08:00:39] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[08:00:39] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[08:00:39] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[08:00:39] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[08:00:39] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[08:00:39] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[08:00:39] ==================== [PASSED] xe_wa_gt =====================
[08:00:39] ====================== [PASSED] xe_wa ======================
[08:00:39] ============================================================
[08:00:39] Testing complete. Ran 512 tests: passed: 494, skipped: 18
[08:00:39] Elapsed time: 43.764s total, 4.363s configuring, 38.883s building, 0.483s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[08:00:39] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[08:00:41] 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=25
[08:01:11] Starting KUnit Kernel (1/1)...
[08:01:11] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[08:01:11] ============ drm_test_pick_cmdline (2 subtests) ============
[08:01:11] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[08:01:11] =============== drm_test_pick_cmdline_named  ===============
[08:01:11] [PASSED] NTSC
[08:01:11] [PASSED] NTSC-J
[08:01:11] [PASSED] PAL
[08:01:11] [PASSED] PAL-M
[08:01:11] =========== [PASSED] drm_test_pick_cmdline_named ===========
[08:01:11] ============== [PASSED] drm_test_pick_cmdline ==============
[08:01:11] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[08:01:11] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[08:01:11] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[08:01:11] =========== drm_validate_clone_mode (2 subtests) ===========
[08:01:11] ============== drm_test_check_in_clone_mode  ===============
[08:01:11] [PASSED] in_clone_mode
[08:01:11] [PASSED] not_in_clone_mode
[08:01:11] ========== [PASSED] drm_test_check_in_clone_mode ===========
[08:01:11] =============== drm_test_check_valid_clones  ===============
[08:01:11] [PASSED] not_in_clone_mode
[08:01:11] [PASSED] valid_clone
[08:01:11] [PASSED] invalid_clone
[08:01:11] =========== [PASSED] drm_test_check_valid_clones ===========
[08:01:11] ============= [PASSED] drm_validate_clone_mode =============
[08:01:11] ============= drm_validate_modeset (1 subtest) =============
[08:01:11] [PASSED] drm_test_check_connector_changed_modeset
[08:01:11] ============== [PASSED] drm_validate_modeset ===============
[08:01:11] ====== drm_test_bridge_get_current_state (2 subtests) ======
[08:01:11] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[08:01:11] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[08:01:11] ======== [PASSED] drm_test_bridge_get_current_state ========
[08:01:11] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[08:01:11] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[08:01:11] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[08:01:11] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[08:01:11] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[08:01:11] ============== drm_bridge_alloc (2 subtests) ===============
[08:01:11] [PASSED] drm_test_drm_bridge_alloc_basic
[08:01:11] [PASSED] drm_test_drm_bridge_alloc_get_put
[08:01:11] ================ [PASSED] drm_bridge_alloc =================
[08:01:11] ================== drm_buddy (9 subtests) ==================
[08:01:11] [PASSED] drm_test_buddy_alloc_limit
[08:01:11] [PASSED] drm_test_buddy_alloc_optimistic
[08:01:11] [PASSED] drm_test_buddy_alloc_pessimistic
[08:01:11] [PASSED] drm_test_buddy_alloc_pathological
[08:01:11] [PASSED] drm_test_buddy_alloc_contiguous
[08:01:11] [PASSED] drm_test_buddy_alloc_clear
[08:01:12] [PASSED] drm_test_buddy_alloc_range_bias
[08:01:12] [PASSED] drm_test_buddy_fragmentation_performance
[08:01:12] [PASSED] drm_test_buddy_alloc_exceeds_max_order
[08:01:12] ==================== [PASSED] drm_buddy ====================
[08:01:12] ============= drm_cmdline_parser (40 subtests) =============
[08:01:12] [PASSED] drm_test_cmdline_force_d_only
[08:01:12] [PASSED] drm_test_cmdline_force_D_only_dvi
[08:01:12] [PASSED] drm_test_cmdline_force_D_only_hdmi
[08:01:12] [PASSED] drm_test_cmdline_force_D_only_not_digital
[08:01:12] [PASSED] drm_test_cmdline_force_e_only
[08:01:12] [PASSED] drm_test_cmdline_res
[08:01:12] [PASSED] drm_test_cmdline_res_vesa
[08:01:12] [PASSED] drm_test_cmdline_res_vesa_rblank
[08:01:12] [PASSED] drm_test_cmdline_res_rblank
[08:01:12] [PASSED] drm_test_cmdline_res_bpp
[08:01:12] [PASSED] drm_test_cmdline_res_refresh
[08:01:12] [PASSED] drm_test_cmdline_res_bpp_refresh
[08:01:12] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[08:01:12] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[08:01:12] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[08:01:12] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[08:01:12] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[08:01:12] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[08:01:12] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[08:01:12] [PASSED] drm_test_cmdline_res_margins_force_on
[08:01:12] [PASSED] drm_test_cmdline_res_vesa_margins
[08:01:12] [PASSED] drm_test_cmdline_name
[08:01:12] [PASSED] drm_test_cmdline_name_bpp
[08:01:12] [PASSED] drm_test_cmdline_name_option
[08:01:12] [PASSED] drm_test_cmdline_name_bpp_option
[08:01:12] [PASSED] drm_test_cmdline_rotate_0
[08:01:12] [PASSED] drm_test_cmdline_rotate_90
[08:01:12] [PASSED] drm_test_cmdline_rotate_180
[08:01:12] [PASSED] drm_test_cmdline_rotate_270
[08:01:12] [PASSED] drm_test_cmdline_hmirror
[08:01:12] [PASSED] drm_test_cmdline_vmirror
[08:01:12] [PASSED] drm_test_cmdline_margin_options
[08:01:12] [PASSED] drm_test_cmdline_multiple_options
[08:01:12] [PASSED] drm_test_cmdline_bpp_extra_and_option
[08:01:12] [PASSED] drm_test_cmdline_extra_and_option
[08:01:12] [PASSED] drm_test_cmdline_freestanding_options
[08:01:12] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[08:01:12] [PASSED] drm_test_cmdline_panel_orientation
[08:01:12] ================ drm_test_cmdline_invalid  =================
[08:01:12] [PASSED] margin_only
[08:01:12] [PASSED] interlace_only
[08:01:12] [PASSED] res_missing_x
[08:01:12] [PASSED] res_missing_y
[08:01:12] [PASSED] res_bad_y
[08:01:12] [PASSED] res_missing_y_bpp
[08:01:12] [PASSED] res_bad_bpp
[08:01:12] [PASSED] res_bad_refresh
[08:01:12] [PASSED] res_bpp_refresh_force_on_off
[08:01:12] [PASSED] res_invalid_mode
[08:01:12] [PASSED] res_bpp_wrong_place_mode
[08:01:12] [PASSED] name_bpp_refresh
[08:01:12] [PASSED] name_refresh
[08:01:12] [PASSED] name_refresh_wrong_mode
[08:01:12] [PASSED] name_refresh_invalid_mode
[08:01:12] [PASSED] rotate_multiple
[08:01:12] [PASSED] rotate_invalid_val
[08:01:12] [PASSED] rotate_truncated
[08:01:12] [PASSED] invalid_option
[08:01:12] [PASSED] invalid_tv_option
[08:01:12] [PASSED] truncated_tv_option
[08:01:12] ============ [PASSED] drm_test_cmdline_invalid =============
[08:01:12] =============== drm_test_cmdline_tv_options  ===============
[08:01:12] [PASSED] NTSC
[08:01:12] [PASSED] NTSC_443
[08:01:12] [PASSED] NTSC_J
[08:01:12] [PASSED] PAL
[08:01:12] [PASSED] PAL_M
[08:01:12] [PASSED] PAL_N
[08:01:12] [PASSED] SECAM
[08:01:12] [PASSED] MONO_525
[08:01:12] [PASSED] MONO_625
[08:01:12] =========== [PASSED] drm_test_cmdline_tv_options ===========
[08:01:12] =============== [PASSED] drm_cmdline_parser ================
[08:01:12] ========== drmm_connector_hdmi_init (20 subtests) ==========
[08:01:12] [PASSED] drm_test_connector_hdmi_init_valid
[08:01:12] [PASSED] drm_test_connector_hdmi_init_bpc_8
[08:01:12] [PASSED] drm_test_connector_hdmi_init_bpc_10
[08:01:12] [PASSED] drm_test_connector_hdmi_init_bpc_12
[08:01:12] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[08:01:12] [PASSED] drm_test_connector_hdmi_init_bpc_null
[08:01:12] [PASSED] drm_test_connector_hdmi_init_formats_empty
[08:01:12] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[08:01:12] === drm_test_connector_hdmi_init_formats_yuv420_allowed  ===
[08:01:12] [PASSED] supported_formats=0x9 yuv420_allowed=1
[08:01:12] [PASSED] supported_formats=0x9 yuv420_allowed=0
[08:01:12] [PASSED] supported_formats=0x3 yuv420_allowed=1
[08:01:12] [PASSED] supported_formats=0x3 yuv420_allowed=0
[08:01:12] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[08:01:12] [PASSED] drm_test_connector_hdmi_init_null_ddc
[08:01:12] [PASSED] drm_test_connector_hdmi_init_null_product
[08:01:12] [PASSED] drm_test_connector_hdmi_init_null_vendor
[08:01:12] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[08:01:12] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[08:01:12] [PASSED] drm_test_connector_hdmi_init_product_valid
[08:01:12] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[08:01:12] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[08:01:12] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[08:01:12] ========= drm_test_connector_hdmi_init_type_valid  =========
[08:01:12] [PASSED] HDMI-A
[08:01:12] [PASSED] HDMI-B
[08:01:12] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[08:01:12] ======== drm_test_connector_hdmi_init_type_invalid  ========
[08:01:12] [PASSED] Unknown
[08:01:12] [PASSED] VGA
[08:01:12] [PASSED] DVI-I
[08:01:12] [PASSED] DVI-D
[08:01:12] [PASSED] DVI-A
[08:01:12] [PASSED] Composite
[08:01:12] [PASSED] SVIDEO
[08:01:12] [PASSED] LVDS
[08:01:12] [PASSED] Component
[08:01:12] [PASSED] DIN
[08:01:12] [PASSED] DP
[08:01:12] [PASSED] TV
[08:01:12] [PASSED] eDP
[08:01:12] [PASSED] Virtual
[08:01:12] [PASSED] DSI
[08:01:12] [PASSED] DPI
[08:01:12] [PASSED] Writeback
[08:01:12] [PASSED] SPI
[08:01:12] [PASSED] USB
[08:01:12] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[08:01:12] ============ [PASSED] drmm_connector_hdmi_init =============
[08:01:12] ============= drmm_connector_init (3 subtests) =============
[08:01:12] [PASSED] drm_test_drmm_connector_init
[08:01:12] [PASSED] drm_test_drmm_connector_init_null_ddc
[08:01:12] ========= drm_test_drmm_connector_init_type_valid  =========
[08:01:12] [PASSED] Unknown
[08:01:12] [PASSED] VGA
[08:01:12] [PASSED] DVI-I
[08:01:12] [PASSED] DVI-D
[08:01:12] [PASSED] DVI-A
[08:01:12] [PASSED] Composite
[08:01:12] [PASSED] SVIDEO
[08:01:12] [PASSED] LVDS
[08:01:12] [PASSED] Component
[08:01:12] [PASSED] DIN
[08:01:12] [PASSED] DP
[08:01:12] [PASSED] HDMI-A
[08:01:12] [PASSED] HDMI-B
[08:01:12] [PASSED] TV
[08:01:12] [PASSED] eDP
[08:01:12] [PASSED] Virtual
[08:01:12] [PASSED] DSI
[08:01:12] [PASSED] DPI
[08:01:12] [PASSED] Writeback
[08:01:12] [PASSED] SPI
[08:01:12] [PASSED] USB
[08:01:12] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[08:01:12] =============== [PASSED] drmm_connector_init ===============
[08:01:12] ========= drm_connector_dynamic_init (6 subtests) ==========
[08:01:12] [PASSED] drm_test_drm_connector_dynamic_init
[08:01:12] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[08:01:12] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[08:01:12] [PASSED] drm_test_drm_connector_dynamic_init_properties
[08:01:12] ===== drm_test_drm_connector_dynamic_init_type_valid  ======
[08:01:12] [PASSED] Unknown
[08:01:12] [PASSED] VGA
[08:01:12] [PASSED] DVI-I
[08:01:12] [PASSED] DVI-D
[08:01:12] [PASSED] DVI-A
[08:01:12] [PASSED] Composite
[08:01:12] [PASSED] SVIDEO
[08:01:12] [PASSED] LVDS
[08:01:12] [PASSED] Component
[08:01:12] [PASSED] DIN
[08:01:12] [PASSED] DP
[08:01:12] [PASSED] HDMI-A
[08:01:12] [PASSED] HDMI-B
[08:01:12] [PASSED] TV
[08:01:12] [PASSED] eDP
[08:01:12] [PASSED] Virtual
[08:01:12] [PASSED] DSI
[08:01:12] [PASSED] DPI
[08:01:12] [PASSED] Writeback
[08:01:12] [PASSED] SPI
[08:01:12] [PASSED] USB
[08:01:12] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[08:01:12] ======== drm_test_drm_connector_dynamic_init_name  =========
[08:01:12] [PASSED] Unknown
[08:01:12] [PASSED] VGA
[08:01:12] [PASSED] DVI-I
[08:01:12] [PASSED] DVI-D
[08:01:12] [PASSED] DVI-A
[08:01:12] [PASSED] Composite
[08:01:12] [PASSED] SVIDEO
[08:01:12] [PASSED] LVDS
[08:01:12] [PASSED] Component
[08:01:12] [PASSED] DIN
[08:01:12] [PASSED] DP
[08:01:12] [PASSED] HDMI-A
[08:01:12] [PASSED] HDMI-B
[08:01:12] [PASSED] TV
[08:01:12] [PASSED] eDP
[08:01:12] [PASSED] Virtual
[08:01:12] [PASSED] DSI
[08:01:12] [PASSED] DPI
[08:01:12] [PASSED] Writeback
[08:01:12] [PASSED] SPI
[08:01:12] [PASSED] USB
[08:01:12] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[08:01:12] =========== [PASSED] drm_connector_dynamic_init ============
[08:01:12] ==== drm_connector_dynamic_register_early (4 subtests) =====
[08:01:12] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[08:01:12] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[08:01:12] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[08:01:12] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[08:01:12] ====== [PASSED] drm_connector_dynamic_register_early =======
[08:01:12] ======= drm_connector_dynamic_register (7 subtests) ========
[08:01:12] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[08:01:12] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[08:01:12] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[08:01:12] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[08:01:12] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[08:01:12] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[08:01:12] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[08:01:12] ========= [PASSED] drm_connector_dynamic_register ==========
[08:01:12] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[08:01:12] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[08:01:12] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[08:01:12] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[08:01:12] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[08:01:12] ========== drm_test_get_tv_mode_from_name_valid  ===========
[08:01:12] [PASSED] NTSC
[08:01:12] [PASSED] NTSC-443
[08:01:12] [PASSED] NTSC-J
[08:01:12] [PASSED] PAL
[08:01:12] [PASSED] PAL-M
[08:01:12] [PASSED] PAL-N
[08:01:12] [PASSED] SECAM
[08:01:12] [PASSED] Mono
[08:01:12] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[08:01:12] [PASSED] drm_test_get_tv_mode_from_name_truncated
[08:01:12] ============ [PASSED] drm_get_tv_mode_from_name ============
[08:01:12] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[08:01:12] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[08:01:12] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[08:01:12] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[08:01:12] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[08:01:12] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[08:01:12] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[08:01:12] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid  =
[08:01:12] [PASSED] VIC 96
[08:01:12] [PASSED] VIC 97
[08:01:12] [PASSED] VIC 101
[08:01:12] [PASSED] VIC 102
[08:01:12] [PASSED] VIC 106
[08:01:12] [PASSED] VIC 107
[08:01:12] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[08:01:12] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[08:01:12] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[08:01:12] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[08:01:12] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[08:01:12] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[08:01:12] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[08:01:12] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[08:01:12] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name  ====
[08:01:12] [PASSED] Automatic
[08:01:12] [PASSED] Full
[08:01:12] [PASSED] Limited 16:235
[08:01:12] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[08:01:12] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[08:01:12] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[08:01:12] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[08:01:12] === drm_test_drm_hdmi_connector_get_output_format_name  ====
[08:01:12] [PASSED] RGB
[08:01:12] [PASSED] YUV 4:2:0
[08:01:12] [PASSED] YUV 4:2:2
[08:01:12] [PASSED] YUV 4:4:4
[08:01:12] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[08:01:12] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[08:01:12] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[08:01:12] ============= drm_damage_helper (21 subtests) ==============
[08:01:12] [PASSED] drm_test_damage_iter_no_damage
[08:01:12] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[08:01:12] [PASSED] drm_test_damage_iter_no_damage_src_moved
[08:01:12] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[08:01:12] [PASSED] drm_test_damage_iter_no_damage_not_visible
[08:01:12] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[08:01:12] [PASSED] drm_test_damage_iter_no_damage_no_fb
[08:01:12] [PASSED] drm_test_damage_iter_simple_damage
[08:01:12] [PASSED] drm_test_damage_iter_single_damage
[08:01:12] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[08:01:12] [PASSED] drm_test_damage_iter_single_damage_outside_src
[08:01:12] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[08:01:12] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[08:01:12] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[08:01:12] [PASSED] drm_test_damage_iter_single_damage_src_moved
[08:01:12] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[08:01:12] [PASSED] drm_test_damage_iter_damage
[08:01:12] [PASSED] drm_test_damage_iter_damage_one_intersect
[08:01:12] [PASSED] drm_test_damage_iter_damage_one_outside
[08:01:12] [PASSED] drm_test_damage_iter_damage_src_moved
[08:01:12] [PASSED] drm_test_damage_iter_damage_not_visible
[08:01:12] ================ [PASSED] drm_damage_helper ================
[08:01:12] ============== drm_dp_mst_helper (3 subtests) ==============
[08:01:12] ============== drm_test_dp_mst_calc_pbn_mode  ==============
[08:01:12] [PASSED] Clock 154000 BPP 30 DSC disabled
[08:01:12] [PASSED] Clock 234000 BPP 30 DSC disabled
[08:01:12] [PASSED] Clock 297000 BPP 24 DSC disabled
[08:01:12] [PASSED] Clock 332880 BPP 24 DSC enabled
[08:01:12] [PASSED] Clock 324540 BPP 24 DSC enabled
[08:01:12] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[08:01:12] ============== drm_test_dp_mst_calc_pbn_div  ===============
[08:01:12] [PASSED] Link rate 2000000 lane count 4
[08:01:12] [PASSED] Link rate 2000000 lane count 2
[08:01:12] [PASSED] Link rate 2000000 lane count 1
[08:01:12] [PASSED] Link rate 1350000 lane count 4
[08:01:12] [PASSED] Link rate 1350000 lane count 2
[08:01:12] [PASSED] Link rate 1350000 lane count 1
[08:01:12] [PASSED] Link rate 1000000 lane count 4
[08:01:12] [PASSED] Link rate 1000000 lane count 2
[08:01:12] [PASSED] Link rate 1000000 lane count 1
[08:01:12] [PASSED] Link rate 810000 lane count 4
[08:01:12] [PASSED] Link rate 810000 lane count 2
[08:01:12] [PASSED] Link rate 810000 lane count 1
[08:01:12] [PASSED] Link rate 540000 lane count 4
[08:01:12] [PASSED] Link rate 540000 lane count 2
[08:01:12] [PASSED] Link rate 540000 lane count 1
[08:01:12] [PASSED] Link rate 270000 lane count 4
[08:01:12] [PASSED] Link rate 270000 lane count 2
[08:01:12] [PASSED] Link rate 270000 lane count 1
[08:01:12] [PASSED] Link rate 162000 lane count 4
[08:01:12] [PASSED] Link rate 162000 lane count 2
[08:01:12] [PASSED] Link rate 162000 lane count 1
[08:01:12] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[08:01:12] ========= drm_test_dp_mst_sideband_msg_req_decode  =========
[08:01:12] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[08:01:12] [PASSED] DP_POWER_UP_PHY with port number
[08:01:12] [PASSED] DP_POWER_DOWN_PHY with port number
[08:01:12] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[08:01:12] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[08:01:12] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[08:01:12] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[08:01:12] [PASSED] DP_QUERY_PAYLOAD with port number
[08:01:12] [PASSED] DP_QUERY_PAYLOAD with VCPI
[08:01:12] [PASSED] DP_REMOTE_DPCD_READ with port number
[08:01:12] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[08:01:12] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[08:01:12] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[08:01:12] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[08:01:12] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[08:01:12] [PASSED] DP_REMOTE_I2C_READ with port number
[08:01:12] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[08:01:12] [PASSED] DP_REMOTE_I2C_READ with transactions array
[08:01:12] [PASSED] DP_REMOTE_I2C_WRITE with port number
[08:01:12] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[08:01:12] [PASSED] DP_REMOTE_I2C_WRITE with data array
[08:01:12] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[08:01:12] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[08:01:12] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[08:01:12] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[08:01:12] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[08:01:12] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[08:01:12] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[08:01:12] ================ [PASSED] drm_dp_mst_helper ================
[08:01:12] ================== drm_exec (7 subtests) ===================
[08:01:12] [PASSED] sanitycheck
[08:01:12] [PASSED] test_lock
[08:01:12] [PASSED] test_lock_unlock
[08:01:12] [PASSED] test_duplicates
[08:01:12] [PASSED] test_prepare
[08:01:12] [PASSED] test_prepare_array
[08:01:12] [PASSED] test_multiple_loops
[08:01:12] ==================== [PASSED] drm_exec =====================
[08:01:12] =========== drm_format_helper_test (17 subtests) ===========
[08:01:12] ============== drm_test_fb_xrgb8888_to_gray8  ==============
[08:01:12] [PASSED] single_pixel_source_buffer
[08:01:12] [PASSED] single_pixel_clip_rectangle
[08:01:12] [PASSED] well_known_colors
[08:01:12] [PASSED] destination_pitch
[08:01:12] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[08:01:12] ============= drm_test_fb_xrgb8888_to_rgb332  ==============
[08:01:12] [PASSED] single_pixel_source_buffer
[08:01:12] [PASSED] single_pixel_clip_rectangle
[08:01:12] [PASSED] well_known_colors
[08:01:12] [PASSED] destination_pitch
[08:01:12] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[08:01:12] ============= drm_test_fb_xrgb8888_to_rgb565  ==============
[08:01:12] [PASSED] single_pixel_source_buffer
[08:01:12] [PASSED] single_pixel_clip_rectangle
[08:01:12] [PASSED] well_known_colors
[08:01:12] [PASSED] destination_pitch
[08:01:12] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[08:01:12] ============ drm_test_fb_xrgb8888_to_xrgb1555  =============
[08:01:12] [PASSED] single_pixel_source_buffer
[08:01:12] [PASSED] single_pixel_clip_rectangle
[08:01:12] [PASSED] well_known_colors
[08:01:12] [PASSED] destination_pitch
[08:01:12] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[08:01:12] ============ drm_test_fb_xrgb8888_to_argb1555  =============
[08:01:12] [PASSED] single_pixel_source_buffer
[08:01:12] [PASSED] single_pixel_clip_rectangle
[08:01:12] [PASSED] well_known_colors
[08:01:12] [PASSED] destination_pitch
[08:01:12] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[08:01:12] ============ drm_test_fb_xrgb8888_to_rgba5551  =============
[08:01:12] [PASSED] single_pixel_source_buffer
[08:01:12] [PASSED] single_pixel_clip_rectangle
[08:01:12] [PASSED] well_known_colors
[08:01:12] [PASSED] destination_pitch
[08:01:12] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[08:01:12] ============= drm_test_fb_xrgb8888_to_rgb888  ==============
[08:01:12] [PASSED] single_pixel_source_buffer
[08:01:12] [PASSED] single_pixel_clip_rectangle
[08:01:12] [PASSED] well_known_colors
[08:01:12] [PASSED] destination_pitch
[08:01:12] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[08:01:12] ============= drm_test_fb_xrgb8888_to_bgr888  ==============
[08:01:12] [PASSED] single_pixel_source_buffer
[08:01:12] [PASSED] single_pixel_clip_rectangle
[08:01:12] [PASSED] well_known_colors
[08:01:12] [PASSED] destination_pitch
[08:01:12] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[08:01:12] ============ drm_test_fb_xrgb8888_to_argb8888  =============
[08:01:12] [PASSED] single_pixel_source_buffer
[08:01:12] [PASSED] single_pixel_clip_rectangle
[08:01:12] [PASSED] well_known_colors
[08:01:12] [PASSED] destination_pitch
[08:01:12] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[08:01:12] =========== drm_test_fb_xrgb8888_to_xrgb2101010  ===========
[08:01:12] [PASSED] single_pixel_source_buffer
[08:01:12] [PASSED] single_pixel_clip_rectangle
[08:01:12] [PASSED] well_known_colors
[08:01:12] [PASSED] destination_pitch
[08:01:12] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[08:01:12] =========== drm_test_fb_xrgb8888_to_argb2101010  ===========
[08:01:12] [PASSED] single_pixel_source_buffer
[08:01:12] [PASSED] single_pixel_clip_rectangle
[08:01:12] [PASSED] well_known_colors
[08:01:12] [PASSED] destination_pitch
[08:01:12] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[08:01:12] ============== drm_test_fb_xrgb8888_to_mono  ===============
[08:01:12] [PASSED] single_pixel_source_buffer
[08:01:12] [PASSED] single_pixel_clip_rectangle
[08:01:12] [PASSED] well_known_colors
[08:01:12] [PASSED] destination_pitch
[08:01:12] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[08:01:12] ==================== drm_test_fb_swab  =====================
[08:01:12] [PASSED] single_pixel_source_buffer
[08:01:12] [PASSED] single_pixel_clip_rectangle
[08:01:12] [PASSED] well_known_colors
[08:01:12] [PASSED] destination_pitch
[08:01:12] ================ [PASSED] drm_test_fb_swab =================
[08:01:12] ============ drm_test_fb_xrgb8888_to_xbgr8888  =============
[08:01:12] [PASSED] single_pixel_source_buffer
[08:01:12] [PASSED] single_pixel_clip_rectangle
[08:01:12] [PASSED] well_known_colors
[08:01:12] [PASSED] destination_pitch
[08:01:12] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[08:01:12] ============ drm_test_fb_xrgb8888_to_abgr8888  =============
[08:01:12] [PASSED] single_pixel_source_buffer
[08:01:12] [PASSED] single_pixel_clip_rectangle
[08:01:12] [PASSED] well_known_colors
[08:01:12] [PASSED] destination_pitch
[08:01:12] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[08:01:12] ================= drm_test_fb_clip_offset  =================
[08:01:12] [PASSED] pass through
[08:01:12] [PASSED] horizontal offset
[08:01:12] [PASSED] vertical offset
[08:01:12] [PASSED] horizontal and vertical offset
[08:01:12] [PASSED] horizontal offset (custom pitch)
[08:01:12] [PASSED] vertical offset (custom pitch)
[08:01:12] [PASSED] horizontal and vertical offset (custom pitch)
[08:01:12] ============= [PASSED] drm_test_fb_clip_offset =============
[08:01:12] =================== drm_test_fb_memcpy  ====================
[08:01:12] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[08:01:12] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[08:01:12] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[08:01:12] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[08:01:12] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[08:01:12] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[08:01:12] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[08:01:12] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[08:01:12] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[08:01:12] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[08:01:12] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[08:01:12] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[08:01:12] =============== [PASSED] drm_test_fb_memcpy ================
[08:01:12] ============= [PASSED] drm_format_helper_test ==============
[08:01:12] ================= drm_format (18 subtests) =================
[08:01:12] [PASSED] drm_test_format_block_width_invalid
[08:01:12] [PASSED] drm_test_format_block_width_one_plane
[08:01:12] [PASSED] drm_test_format_block_width_two_plane
[08:01:12] [PASSED] drm_test_format_block_width_three_plane
[08:01:12] [PASSED] drm_test_format_block_width_tiled
[08:01:12] [PASSED] drm_test_format_block_height_invalid
[08:01:12] [PASSED] drm_test_format_block_height_one_plane
[08:01:12] [PASSED] drm_test_format_block_height_two_plane
[08:01:12] [PASSED] drm_test_format_block_height_three_plane
[08:01:12] [PASSED] drm_test_format_block_height_tiled
[08:01:12] [PASSED] drm_test_format_min_pitch_invalid
[08:01:12] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[08:01:12] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[08:01:12] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[08:01:12] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[08:01:12] [PASSED] drm_test_format_min_pitch_two_plane
[08:01:12] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[08:01:12] [PASSED] drm_test_format_min_pitch_tiled
[08:01:12] =================== [PASSED] drm_format ====================
[08:01:12] ============== drm_framebuffer (10 subtests) ===============
[08:01:12] ========== drm_test_framebuffer_check_src_coords  ==========
[08:01:12] [PASSED] Success: source fits into fb
[08:01:12] [PASSED] Fail: overflowing fb with x-axis coordinate
[08:01:12] [PASSED] Fail: overflowing fb with y-axis coordinate
[08:01:12] [PASSED] Fail: overflowing fb with source width
[08:01:12] [PASSED] Fail: overflowing fb with source height
[08:01:12] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[08:01:12] [PASSED] drm_test_framebuffer_cleanup
[08:01:12] =============== drm_test_framebuffer_create  ===============
[08:01:12] [PASSED] ABGR8888 normal sizes
[08:01:12] [PASSED] ABGR8888 max sizes
[08:01:12] [PASSED] ABGR8888 pitch greater than min required
[08:01:12] [PASSED] ABGR8888 pitch less than min required
[08:01:12] [PASSED] ABGR8888 Invalid width
[08:01:12] [PASSED] ABGR8888 Invalid buffer handle
[08:01:12] [PASSED] No pixel format
[08:01:12] [PASSED] ABGR8888 Width 0
[08:01:12] [PASSED] ABGR8888 Height 0
[08:01:12] [PASSED] ABGR8888 Out of bound height * pitch combination
[08:01:12] [PASSED] ABGR8888 Large buffer offset
[08:01:12] [PASSED] ABGR8888 Buffer offset for inexistent plane
[08:01:12] [PASSED] ABGR8888 Invalid flag
[08:01:12] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[08:01:12] [PASSED] ABGR8888 Valid buffer modifier
[08:01:12] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[08:01:12] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[08:01:12] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[08:01:12] [PASSED] NV12 Normal sizes
[08:01:12] [PASSED] NV12 Max sizes
[08:01:12] [PASSED] NV12 Invalid pitch
[08:01:12] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[08:01:12] [PASSED] NV12 different  modifier per-plane
[08:01:12] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[08:01:12] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[08:01:12] [PASSED] NV12 Modifier for inexistent plane
[08:01:12] [PASSED] NV12 Handle for inexistent plane
[08:01:12] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[08:01:12] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[08:01:12] [PASSED] YVU420 Normal sizes
[08:01:12] [PASSED] YVU420 Max sizes
[08:01:12] [PASSED] YVU420 Invalid pitch
[08:01:12] [PASSED] YVU420 Different pitches
[08:01:12] [PASSED] YVU420 Different buffer offsets/pitches
[08:01:12] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[08:01:12] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[08:01:12] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[08:01:12] [PASSED] YVU420 Valid modifier
[08:01:12] [PASSED] YVU420 Different modifiers per plane
[08:01:12] [PASSED] YVU420 Modifier for inexistent plane
[08:01:12] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[08:01:12] [PASSED] X0L2 Normal sizes
[08:01:12] [PASSED] X0L2 Max sizes
[08:01:12] [PASSED] X0L2 Invalid pitch
[08:01:12] [PASSED] X0L2 Pitch greater than minimum required
[08:01:12] [PASSED] X0L2 Handle for inexistent plane
[08:01:12] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[08:01:12] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[08:01:12] [PASSED] X0L2 Valid modifier
[08:01:12] [PASSED] X0L2 Modifier for inexistent plane
[08:01:12] =========== [PASSED] drm_test_framebuffer_create ===========
[08:01:12] [PASSED] drm_test_framebuffer_free
[08:01:12] [PASSED] drm_test_framebuffer_init
[08:01:12] [PASSED] drm_test_framebuffer_init_bad_format
[08:01:12] [PASSED] drm_test_framebuffer_init_dev_mismatch
[08:01:12] [PASSED] drm_test_framebuffer_lookup
[08:01:12] [PASSED] drm_test_framebuffer_lookup_inexistent
[08:01:12] [PASSED] drm_test_framebuffer_modifiers_not_supported
[08:01:12] ================= [PASSED] drm_framebuffer =================
[08:01:12] ================ drm_gem_shmem (8 subtests) ================
[08:01:12] [PASSED] drm_gem_shmem_test_obj_create
[08:01:12] [PASSED] drm_gem_shmem_test_obj_create_private
[08:01:12] [PASSED] drm_gem_shmem_test_pin_pages
[08:01:12] [PASSED] drm_gem_shmem_test_vmap
[08:01:12] [PASSED] drm_gem_shmem_test_get_sg_table
[08:01:12] [PASSED] drm_gem_shmem_test_get_pages_sgt
[08:01:12] [PASSED] drm_gem_shmem_test_madvise
[08:01:12] [PASSED] drm_gem_shmem_test_purge
[08:01:12] ================== [PASSED] drm_gem_shmem ==================
[08:01:12] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[08:01:12] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[08:01:12] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[08:01:12] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[08:01:12] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[08:01:12] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[08:01:12] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[08:01:12] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420  =======
[08:01:12] [PASSED] Automatic
[08:01:12] [PASSED] Full
[08:01:12] [PASSED] Limited 16:235
[08:01:12] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[08:01:12] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[08:01:12] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[08:01:12] [PASSED] drm_test_check_disable_connector
[08:01:12] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[08:01:12] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[08:01:12] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[08:01:12] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[08:01:12] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[08:01:12] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[08:01:12] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[08:01:12] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[08:01:12] [PASSED] drm_test_check_output_bpc_dvi
[08:01:12] [PASSED] drm_test_check_output_bpc_format_vic_1
[08:01:12] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[08:01:12] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[08:01:12] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[08:01:12] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[08:01:12] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[08:01:12] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[08:01:12] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[08:01:12] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[08:01:12] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[08:01:12] [PASSED] drm_test_check_broadcast_rgb_value
[08:01:12] [PASSED] drm_test_check_bpc_8_value
[08:01:12] [PASSED] drm_test_check_bpc_10_value
[08:01:12] [PASSED] drm_test_check_bpc_12_value
[08:01:12] [PASSED] drm_test_check_format_value
[08:01:12] [PASSED] drm_test_check_tmds_char_value
[08:01:12] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[08:01:12] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[08:01:12] [PASSED] drm_test_check_mode_valid
[08:01:12] [PASSED] drm_test_check_mode_valid_reject
[08:01:12] [PASSED] drm_test_check_mode_valid_reject_rate
[08:01:12] [PASSED] drm_test_check_mode_valid_reject_max_clock
[08:01:12] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[08:01:12] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[08:01:12] [PASSED] drm_test_check_infoframes
[08:01:12] [PASSED] drm_test_check_reject_avi_infoframe
[08:01:12] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[08:01:12] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[08:01:12] [PASSED] drm_test_check_reject_audio_infoframe
[08:01:12] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[08:01:12] ================= drm_managed (2 subtests) =================
[08:01:12] [PASSED] drm_test_managed_release_action
[08:01:12] [PASSED] drm_test_managed_run_action
[08:01:12] =================== [PASSED] drm_managed ===================
[08:01:12] =================== drm_mm (6 subtests) ====================
[08:01:12] [PASSED] drm_test_mm_init
[08:01:12] [PASSED] drm_test_mm_debug
[08:01:12] [PASSED] drm_test_mm_align32
[08:01:12] [PASSED] drm_test_mm_align64
[08:01:12] [PASSED] drm_test_mm_lowest
[08:01:12] [PASSED] drm_test_mm_highest
[08:01:12] ===================== [PASSED] drm_mm ======================
[08:01:12] ============= drm_modes_analog_tv (5 subtests) =============
[08:01:12] [PASSED] drm_test_modes_analog_tv_mono_576i
[08:01:12] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[08:01:12] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[08:01:12] [PASSED] drm_test_modes_analog_tv_pal_576i
[08:01:12] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[08:01:12] =============== [PASSED] drm_modes_analog_tv ===============
[08:01:12] ============== drm_plane_helper (2 subtests) ===============
[08:01:12] =============== drm_test_check_plane_state  ================
[08:01:12] [PASSED] clipping_simple
[08:01:12] [PASSED] clipping_rotate_reflect
[08:01:12] [PASSED] positioning_simple
[08:01:12] [PASSED] upscaling
[08:01:12] [PASSED] downscaling
[08:01:12] [PASSED] rounding1
[08:01:12] [PASSED] rounding2
[08:01:12] [PASSED] rounding3
[08:01:12] [PASSED] rounding4
[08:01:12] =========== [PASSED] drm_test_check_plane_state ============
[08:01:12] =========== drm_test_check_invalid_plane_state  ============
[08:01:12] [PASSED] positioning_invalid
[08:01:12] [PASSED] upscaling_invalid
[08:01:12] [PASSED] downscaling_invalid
[08:01:12] ======= [PASSED] drm_test_check_invalid_plane_state ========
[08:01:12] ================ [PASSED] drm_plane_helper =================
[08:01:12] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[08:01:12] ====== drm_test_connector_helper_tv_get_modes_check  =======
[08:01:12] [PASSED] None
[08:01:12] [PASSED] PAL
[08:01:12] [PASSED] NTSC
[08:01:12] [PASSED] Both, NTSC Default
[08:01:12] [PASSED] Both, PAL Default
[08:01:12] [PASSED] Both, NTSC Default, with PAL on command-line
[08:01:12] [PASSED] Both, PAL Default, with NTSC on command-line
[08:01:12] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[08:01:12] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[08:01:12] ================== drm_rect (9 subtests) ===================
[08:01:12] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[08:01:12] [PASSED] drm_test_rect_clip_scaled_not_clipped
[08:01:12] [PASSED] drm_test_rect_clip_scaled_clipped
[08:01:12] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[08:01:12] ================= drm_test_rect_intersect  =================
[08:01:12] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[08:01:12] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[08:01:12] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[08:01:12] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[08:01:12] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[08:01:12] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[08:01:12] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[08:01:12] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[08:01:12] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[08:01:12] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[08:01:12] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[08:01:12] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[08:01:12] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[08:01:12] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[08:01:12] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
stty: 'standard input': Inappropriate ioctl for device
[08:01:12] ============= [PASSED] drm_test_rect_intersect =============
[08:01:12] ================ drm_test_rect_calc_hscale  ================
[08:01:12] [PASSED] normal use
[08:01:12] [PASSED] out of max range
[08:01:12] [PASSED] out of min range
[08:01:12] [PASSED] zero dst
[08:01:12] [PASSED] negative src
[08:01:12] [PASSED] negative dst
[08:01:12] ============ [PASSED] drm_test_rect_calc_hscale ============
[08:01:12] ================ drm_test_rect_calc_vscale  ================
[08:01:12] [PASSED] normal use
[08:01:12] [PASSED] out of max range
[08:01:12] [PASSED] out of min range
[08:01:12] [PASSED] zero dst
[08:01:12] [PASSED] negative src
[08:01:12] [PASSED] negative dst
[08:01:12] ============ [PASSED] drm_test_rect_calc_vscale ============
[08:01:12] ================== drm_test_rect_rotate  ===================
[08:01:12] [PASSED] reflect-x
[08:01:12] [PASSED] reflect-y
[08:01:12] [PASSED] rotate-0
[08:01:12] [PASSED] rotate-90
[08:01:12] [PASSED] rotate-180
[08:01:12] [PASSED] rotate-270
[08:01:12] ============== [PASSED] drm_test_rect_rotate ===============
[08:01:12] ================ drm_test_rect_rotate_inv  =================
[08:01:12] [PASSED] reflect-x
[08:01:12] [PASSED] reflect-y
[08:01:12] [PASSED] rotate-0
[08:01:12] [PASSED] rotate-90
[08:01:12] [PASSED] rotate-180
[08:01:12] [PASSED] rotate-270
[08:01:12] ============ [PASSED] drm_test_rect_rotate_inv =============
[08:01:12] ==================== [PASSED] drm_rect =====================
[08:01:12] ============ drm_sysfb_modeset_test (1 subtest) ============
[08:01:12] ============ drm_test_sysfb_build_fourcc_list  =============
[08:01:12] [PASSED] no native formats
[08:01:12] [PASSED] XRGB8888 as native format
[08:01:12] [PASSED] remove duplicates
[08:01:12] [PASSED] convert alpha formats
[08:01:12] [PASSED] random formats
[08:01:12] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[08:01:12] ============= [PASSED] drm_sysfb_modeset_test ==============
[08:01:12] ================== drm_fixp (2 subtests) ===================
[08:01:12] [PASSED] drm_test_int2fixp
[08:01:12] [PASSED] drm_test_sm2fixp
[08:01:12] ==================== [PASSED] drm_fixp =====================
[08:01:12] ============================================================
[08:01:12] Testing complete. Ran 630 tests: passed: 630
[08:01:12] Elapsed time: 32.872s total, 1.659s configuring, 30.797s building, 0.400s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[08:01:12] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[08:01:14] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=25
[08:01:23] Starting KUnit Kernel (1/1)...
[08:01:23] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[08:01:23] ================= ttm_device (5 subtests) ==================
[08:01:23] [PASSED] ttm_device_init_basic
[08:01:23] [PASSED] ttm_device_init_multiple
[08:01:23] [PASSED] ttm_device_fini_basic
[08:01:23] [PASSED] ttm_device_init_no_vma_man
[08:01:23] ================== ttm_device_init_pools  ==================
[08:01:23] [PASSED] No DMA allocations, no DMA32 required
[08:01:23] [PASSED] DMA allocations, DMA32 required
[08:01:23] [PASSED] No DMA allocations, DMA32 required
[08:01:23] [PASSED] DMA allocations, no DMA32 required
[08:01:23] ============== [PASSED] ttm_device_init_pools ==============
[08:01:23] =================== [PASSED] ttm_device ====================
[08:01:23] ================== ttm_pool (8 subtests) ===================
[08:01:23] ================== ttm_pool_alloc_basic  ===================
[08:01:23] [PASSED] One page
[08:01:23] [PASSED] More than one page
[08:01:23] [PASSED] Above the allocation limit
[08:01:23] [PASSED] One page, with coherent DMA mappings enabled
[08:01:23] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[08:01:23] ============== [PASSED] ttm_pool_alloc_basic ===============
[08:01:23] ============== ttm_pool_alloc_basic_dma_addr  ==============
[08:01:23] [PASSED] One page
[08:01:23] [PASSED] More than one page
[08:01:23] [PASSED] Above the allocation limit
[08:01:23] [PASSED] One page, with coherent DMA mappings enabled
[08:01:23] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[08:01:23] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[08:01:23] [PASSED] ttm_pool_alloc_order_caching_match
[08:01:23] [PASSED] ttm_pool_alloc_caching_mismatch
[08:01:23] [PASSED] ttm_pool_alloc_order_mismatch
[08:01:23] [PASSED] ttm_pool_free_dma_alloc
[08:01:23] [PASSED] ttm_pool_free_no_dma_alloc
[08:01:23] [PASSED] ttm_pool_fini_basic
[08:01:23] ==================== [PASSED] ttm_pool =====================
[08:01:23] ================ ttm_resource (8 subtests) =================
[08:01:23] ================= ttm_resource_init_basic  =================
[08:01:23] [PASSED] Init resource in TTM_PL_SYSTEM
[08:01:23] [PASSED] Init resource in TTM_PL_VRAM
[08:01:23] [PASSED] Init resource in a private placement
[08:01:23] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[08:01:23] ============= [PASSED] ttm_resource_init_basic =============
[08:01:23] [PASSED] ttm_resource_init_pinned
[08:01:23] [PASSED] ttm_resource_fini_basic
[08:01:23] [PASSED] ttm_resource_manager_init_basic
[08:01:23] [PASSED] ttm_resource_manager_usage_basic
[08:01:23] [PASSED] ttm_resource_manager_set_used_basic
[08:01:23] [PASSED] ttm_sys_man_alloc_basic
[08:01:23] [PASSED] ttm_sys_man_free_basic
[08:01:23] ================== [PASSED] ttm_resource ===================
[08:01:23] =================== ttm_tt (15 subtests) ===================
[08:01:23] ==================== ttm_tt_init_basic  ====================
[08:01:23] [PASSED] Page-aligned size
[08:01:23] [PASSED] Extra pages requested
[08:01:23] ================ [PASSED] ttm_tt_init_basic ================
[08:01:23] [PASSED] ttm_tt_init_misaligned
[08:01:23] [PASSED] ttm_tt_fini_basic
[08:01:23] [PASSED] ttm_tt_fini_sg
[08:01:23] [PASSED] ttm_tt_fini_shmem
[08:01:23] [PASSED] ttm_tt_create_basic
[08:01:23] [PASSED] ttm_tt_create_invalid_bo_type
[08:01:23] [PASSED] ttm_tt_create_ttm_exists
[08:01:23] [PASSED] ttm_tt_create_failed
[08:01:23] [PASSED] ttm_tt_destroy_basic
[08:01:23] [PASSED] ttm_tt_populate_null_ttm
[08:01:23] [PASSED] ttm_tt_populate_populated_ttm
[08:01:23] [PASSED] ttm_tt_unpopulate_basic
[08:01:23] [PASSED] ttm_tt_unpopulate_empty_ttm
[08:01:23] [PASSED] ttm_tt_swapin_basic
[08:01:23] ===================== [PASSED] ttm_tt ======================
[08:01:23] =================== ttm_bo (14 subtests) ===================
[08:01:23] =========== ttm_bo_reserve_optimistic_no_ticket  ===========
[08:01:23] [PASSED] Cannot be interrupted and sleeps
[08:01:23] [PASSED] Cannot be interrupted, locks straight away
[08:01:23] [PASSED] Can be interrupted, sleeps
[08:01:23] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[08:01:23] [PASSED] ttm_bo_reserve_locked_no_sleep
[08:01:23] [PASSED] ttm_bo_reserve_no_wait_ticket
[08:01:23] [PASSED] ttm_bo_reserve_double_resv
[08:01:23] [PASSED] ttm_bo_reserve_interrupted
[08:01:23] [PASSED] ttm_bo_reserve_deadlock
[08:01:23] [PASSED] ttm_bo_unreserve_basic
[08:01:23] [PASSED] ttm_bo_unreserve_pinned
[08:01:23] [PASSED] ttm_bo_unreserve_bulk
[08:01:23] [PASSED] ttm_bo_fini_basic
[08:01:23] [PASSED] ttm_bo_fini_shared_resv
[08:01:23] [PASSED] ttm_bo_pin_basic
[08:01:23] [PASSED] ttm_bo_pin_unpin_resource
[08:01:23] [PASSED] ttm_bo_multiple_pin_one_unpin
[08:01:23] ===================== [PASSED] ttm_bo ======================
[08:01:23] ============== ttm_bo_validate (21 subtests) ===============
[08:01:23] ============== ttm_bo_init_reserved_sys_man  ===============
[08:01:23] [PASSED] Buffer object for userspace
[08:01:23] [PASSED] Kernel buffer object
[08:01:23] [PASSED] Shared buffer object
[08:01:23] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[08:01:23] ============== ttm_bo_init_reserved_mock_man  ==============
[08:01:23] [PASSED] Buffer object for userspace
[08:01:23] [PASSED] Kernel buffer object
[08:01:23] [PASSED] Shared buffer object
[08:01:23] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[08:01:23] [PASSED] ttm_bo_init_reserved_resv
[08:01:23] ================== ttm_bo_validate_basic  ==================
[08:01:23] [PASSED] Buffer object for userspace
[08:01:23] [PASSED] Kernel buffer object
[08:01:23] [PASSED] Shared buffer object
[08:01:23] ============== [PASSED] ttm_bo_validate_basic ==============
[08:01:23] [PASSED] ttm_bo_validate_invalid_placement
[08:01:23] ============= ttm_bo_validate_same_placement  ==============
[08:01:23] [PASSED] System manager
[08:01:23] [PASSED] VRAM manager
[08:01:23] ========= [PASSED] ttm_bo_validate_same_placement ==========
[08:01:23] [PASSED] ttm_bo_validate_failed_alloc
[08:01:23] [PASSED] ttm_bo_validate_pinned
[08:01:23] [PASSED] ttm_bo_validate_busy_placement
[08:01:23] ================ ttm_bo_validate_multihop  =================
[08:01:23] [PASSED] Buffer object for userspace
[08:01:23] [PASSED] Kernel buffer object
[08:01:23] [PASSED] Shared buffer object
[08:01:23] ============ [PASSED] ttm_bo_validate_multihop =============
[08:01:23] ========== ttm_bo_validate_no_placement_signaled  ==========
[08:01:23] [PASSED] Buffer object in system domain, no page vector
[08:01:23] [PASSED] Buffer object in system domain with an existing page vector
[08:01:23] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[08:01:23] ======== ttm_bo_validate_no_placement_not_signaled  ========
[08:01:23] [PASSED] Buffer object for userspace
[08:01:23] [PASSED] Kernel buffer object
[08:01:23] [PASSED] Shared buffer object
[08:01:23] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[08:01:23] [PASSED] ttm_bo_validate_move_fence_signaled
[08:01:23] ========= ttm_bo_validate_move_fence_not_signaled  =========
[08:01:23] [PASSED] Waits for GPU
[08:01:23] [PASSED] Tries to lock straight away
[08:01:23] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[08:01:23] [PASSED] ttm_bo_validate_happy_evict
[08:01:23] [PASSED] ttm_bo_validate_all_pinned_evict
[08:01:23] [PASSED] ttm_bo_validate_allowed_only_evict
[08:01:23] [PASSED] ttm_bo_validate_deleted_evict
[08:01:23] [PASSED] ttm_bo_validate_busy_domain_evict
[08:01:23] [PASSED] ttm_bo_validate_evict_gutting
[08:01:23] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[08:01:23] ================= [PASSED] ttm_bo_validate =================
[08:01:23] ============================================================
[08:01:23] Testing complete. Ran 101 tests: passed: 101
[08:01:23] Elapsed time: 11.269s total, 1.625s configuring, 9.377s building, 0.227s running

+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel



^ permalink raw reply	[flat|nested] 10+ messages in thread

* ✓ CI.KUnit: success for drm/xe/ptl: Disable DCC on PTL (rev5)
  2026-01-24  0:59 [PATCH v4] drm/xe/ptl: Disable DCC on PTL Vinay Belgaumkar
                   ` (2 preceding siblings ...)
  2026-01-26  8:01 ` ✓ CI.KUnit: success " Patchwork
@ 2026-01-26  8:26 ` Patchwork
  2026-01-26  9:11 ` Patchwork
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-01-26  8:26 UTC (permalink / raw)
  To: Vinay Belgaumkar; +Cc: intel-xe

== Series Details ==

Series: drm/xe/ptl: Disable DCC on PTL (rev5)
URL   : https://patchwork.freedesktop.org/series/160388/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[08:24:32] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[08:24:36] 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=25
[08:25:15] Starting KUnit Kernel (1/1)...
[08:25:15] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[08:25:15] ================== guc_buf (11 subtests) ===================
[08:25:15] [PASSED] test_smallest
[08:25:15] [PASSED] test_largest
[08:25:15] [PASSED] test_granular
[08:25:15] [PASSED] test_unique
[08:25:15] [PASSED] test_overlap
[08:25:15] [PASSED] test_reusable
[08:25:15] [PASSED] test_too_big
[08:25:15] [PASSED] test_flush
[08:25:15] [PASSED] test_lookup
[08:25:15] [PASSED] test_data
[08:25:15] [PASSED] test_class
[08:25:15] ===================== [PASSED] guc_buf =====================
[08:25:15] =================== guc_dbm (7 subtests) ===================
[08:25:15] [PASSED] test_empty
[08:25:15] [PASSED] test_default
[08:25:15] ======================== test_size  ========================
[08:25:15] [PASSED] 4
[08:25:15] [PASSED] 8
[08:25:15] [PASSED] 32
[08:25:15] [PASSED] 256
[08:25:15] ==================== [PASSED] test_size ====================
[08:25:15] ======================= test_reuse  ========================
[08:25:15] [PASSED] 4
[08:25:15] [PASSED] 8
[08:25:15] [PASSED] 32
[08:25:15] [PASSED] 256
[08:25:15] =================== [PASSED] test_reuse ====================
[08:25:15] =================== test_range_overlap  ====================
[08:25:15] [PASSED] 4
[08:25:16] [PASSED] 8
[08:25:16] [PASSED] 32
[08:25:16] [PASSED] 256
[08:25:16] =============== [PASSED] test_range_overlap ================
[08:25:16] =================== test_range_compact  ====================
[08:25:16] [PASSED] 4
[08:25:16] [PASSED] 8
[08:25:16] [PASSED] 32
[08:25:16] [PASSED] 256
[08:25:16] =============== [PASSED] test_range_compact ================
[08:25:16] ==================== test_range_spare  =====================
[08:25:16] [PASSED] 4
[08:25:16] [PASSED] 8
[08:25:16] [PASSED] 32
[08:25:16] [PASSED] 256
[08:25:16] ================ [PASSED] test_range_spare =================
[08:25:16] ===================== [PASSED] guc_dbm =====================
[08:25:16] =================== guc_idm (6 subtests) ===================
[08:25:16] [PASSED] bad_init
[08:25:16] [PASSED] no_init
[08:25:16] [PASSED] init_fini
[08:25:16] [PASSED] check_used
[08:25:16] [PASSED] check_quota
[08:25:16] [PASSED] check_all
[08:25:16] ===================== [PASSED] guc_idm =====================
[08:25:16] ================== no_relay (3 subtests) ===================
[08:25:16] [PASSED] xe_drops_guc2pf_if_not_ready
[08:25:16] [PASSED] xe_drops_guc2vf_if_not_ready
[08:25:16] [PASSED] xe_rejects_send_if_not_ready
[08:25:16] ==================== [PASSED] no_relay =====================
[08:25:16] ================== pf_relay (14 subtests) ==================
[08:25:16] [PASSED] pf_rejects_guc2pf_too_short
[08:25:16] [PASSED] pf_rejects_guc2pf_too_long
[08:25:16] [PASSED] pf_rejects_guc2pf_no_payload
[08:25:16] [PASSED] pf_fails_no_payload
[08:25:16] [PASSED] pf_fails_bad_origin
[08:25:16] [PASSED] pf_fails_bad_type
[08:25:16] [PASSED] pf_txn_reports_error
[08:25:16] [PASSED] pf_txn_sends_pf2guc
[08:25:16] [PASSED] pf_sends_pf2guc
[08:25:16] [SKIPPED] pf_loopback_nop
[08:25:16] [SKIPPED] pf_loopback_echo
[08:25:16] [SKIPPED] pf_loopback_fail
[08:25:16] [SKIPPED] pf_loopback_busy
[08:25:16] [SKIPPED] pf_loopback_retry
[08:25:16] ==================== [PASSED] pf_relay =====================
[08:25:16] ================== vf_relay (3 subtests) ===================
[08:25:16] [PASSED] vf_rejects_guc2vf_too_short
[08:25:16] [PASSED] vf_rejects_guc2vf_too_long
[08:25:16] [PASSED] vf_rejects_guc2vf_no_payload
[08:25:16] ==================== [PASSED] vf_relay =====================
[08:25:16] ================ pf_gt_config (6 subtests) =================
[08:25:16] [PASSED] fair_contexts_1vf
[08:25:16] [PASSED] fair_doorbells_1vf
[08:25:16] [PASSED] fair_ggtt_1vf
[08:25:16] ====================== fair_contexts  ======================
[08:25:16] [PASSED] 1 VF
[08:25:16] [PASSED] 2 VFs
[08:25:16] [PASSED] 3 VFs
[08:25:16] [PASSED] 4 VFs
[08:25:16] [PASSED] 5 VFs
[08:25:16] [PASSED] 6 VFs
[08:25:16] [PASSED] 7 VFs
[08:25:16] [PASSED] 8 VFs
[08:25:16] [PASSED] 9 VFs
[08:25:16] [PASSED] 10 VFs
[08:25:16] [PASSED] 11 VFs
[08:25:16] [PASSED] 12 VFs
[08:25:16] [PASSED] 13 VFs
[08:25:16] [PASSED] 14 VFs
[08:25:16] [PASSED] 15 VFs
[08:25:16] [PASSED] 16 VFs
[08:25:16] [PASSED] 17 VFs
[08:25:16] [PASSED] 18 VFs
[08:25:16] [PASSED] 19 VFs
[08:25:16] [PASSED] 20 VFs
[08:25:16] [PASSED] 21 VFs
[08:25:16] [PASSED] 22 VFs
[08:25:16] [PASSED] 23 VFs
[08:25:16] [PASSED] 24 VFs
[08:25:16] [PASSED] 25 VFs
[08:25:16] [PASSED] 26 VFs
[08:25:16] [PASSED] 27 VFs
[08:25:16] [PASSED] 28 VFs
[08:25:16] [PASSED] 29 VFs
[08:25:16] [PASSED] 30 VFs
[08:25:16] [PASSED] 31 VFs
[08:25:16] [PASSED] 32 VFs
[08:25:16] [PASSED] 33 VFs
[08:25:16] [PASSED] 34 VFs
[08:25:16] [PASSED] 35 VFs
[08:25:16] [PASSED] 36 VFs
[08:25:16] [PASSED] 37 VFs
[08:25:16] [PASSED] 38 VFs
[08:25:16] [PASSED] 39 VFs
[08:25:16] [PASSED] 40 VFs
[08:25:16] [PASSED] 41 VFs
[08:25:16] [PASSED] 42 VFs
[08:25:16] [PASSED] 43 VFs
[08:25:16] [PASSED] 44 VFs
[08:25:16] [PASSED] 45 VFs
[08:25:16] [PASSED] 46 VFs
[08:25:16] [PASSED] 47 VFs
[08:25:16] [PASSED] 48 VFs
[08:25:16] [PASSED] 49 VFs
[08:25:16] [PASSED] 50 VFs
[08:25:16] [PASSED] 51 VFs
[08:25:16] [PASSED] 52 VFs
[08:25:16] [PASSED] 53 VFs
[08:25:16] [PASSED] 54 VFs
[08:25:16] [PASSED] 55 VFs
[08:25:16] [PASSED] 56 VFs
[08:25:16] [PASSED] 57 VFs
[08:25:16] [PASSED] 58 VFs
[08:25:16] [PASSED] 59 VFs
[08:25:16] [PASSED] 60 VFs
[08:25:16] [PASSED] 61 VFs
[08:25:16] [PASSED] 62 VFs
[08:25:16] [PASSED] 63 VFs
[08:25:16] ================== [PASSED] fair_contexts ==================
[08:25:16] ===================== fair_doorbells  ======================
[08:25:16] [PASSED] 1 VF
[08:25:16] [PASSED] 2 VFs
[08:25:16] [PASSED] 3 VFs
[08:25:16] [PASSED] 4 VFs
[08:25:16] [PASSED] 5 VFs
[08:25:16] [PASSED] 6 VFs
[08:25:16] [PASSED] 7 VFs
[08:25:16] [PASSED] 8 VFs
[08:25:16] [PASSED] 9 VFs
[08:25:16] [PASSED] 10 VFs
[08:25:16] [PASSED] 11 VFs
[08:25:16] [PASSED] 12 VFs
[08:25:16] [PASSED] 13 VFs
[08:25:16] [PASSED] 14 VFs
[08:25:16] [PASSED] 15 VFs
[08:25:16] [PASSED] 16 VFs
[08:25:16] [PASSED] 17 VFs
[08:25:16] [PASSED] 18 VFs
[08:25:16] [PASSED] 19 VFs
[08:25:16] [PASSED] 20 VFs
[08:25:16] [PASSED] 21 VFs
[08:25:16] [PASSED] 22 VFs
[08:25:16] [PASSED] 23 VFs
[08:25:16] [PASSED] 24 VFs
[08:25:16] [PASSED] 25 VFs
[08:25:16] [PASSED] 26 VFs
[08:25:16] [PASSED] 27 VFs
[08:25:16] [PASSED] 28 VFs
[08:25:16] [PASSED] 29 VFs
[08:25:16] [PASSED] 30 VFs
[08:25:16] [PASSED] 31 VFs
[08:25:16] [PASSED] 32 VFs
[08:25:16] [PASSED] 33 VFs
[08:25:16] [PASSED] 34 VFs
[08:25:16] [PASSED] 35 VFs
[08:25:16] [PASSED] 36 VFs
[08:25:16] [PASSED] 37 VFs
[08:25:16] [PASSED] 38 VFs
[08:25:16] [PASSED] 39 VFs
[08:25:16] [PASSED] 40 VFs
[08:25:16] [PASSED] 41 VFs
[08:25:16] [PASSED] 42 VFs
[08:25:16] [PASSED] 43 VFs
[08:25:16] [PASSED] 44 VFs
[08:25:16] [PASSED] 45 VFs
[08:25:16] [PASSED] 46 VFs
[08:25:16] [PASSED] 47 VFs
[08:25:16] [PASSED] 48 VFs
[08:25:16] [PASSED] 49 VFs
[08:25:16] [PASSED] 50 VFs
[08:25:16] [PASSED] 51 VFs
[08:25:16] [PASSED] 52 VFs
[08:25:16] [PASSED] 53 VFs
[08:25:16] [PASSED] 54 VFs
[08:25:16] [PASSED] 55 VFs
[08:25:16] [PASSED] 56 VFs
[08:25:16] [PASSED] 57 VFs
[08:25:16] [PASSED] 58 VFs
[08:25:16] [PASSED] 59 VFs
[08:25:16] [PASSED] 60 VFs
[08:25:16] [PASSED] 61 VFs
[08:25:16] [PASSED] 62 VFs
[08:25:16] [PASSED] 63 VFs
[08:25:16] ================= [PASSED] fair_doorbells ==================
[08:25:16] ======================== fair_ggtt  ========================
[08:25:16] [PASSED] 1 VF
[08:25:16] [PASSED] 2 VFs
[08:25:16] [PASSED] 3 VFs
[08:25:16] [PASSED] 4 VFs
[08:25:16] [PASSED] 5 VFs
[08:25:16] [PASSED] 6 VFs
[08:25:16] [PASSED] 7 VFs
[08:25:16] [PASSED] 8 VFs
[08:25:16] [PASSED] 9 VFs
[08:25:16] [PASSED] 10 VFs
[08:25:16] [PASSED] 11 VFs
[08:25:16] [PASSED] 12 VFs
[08:25:16] [PASSED] 13 VFs
[08:25:16] [PASSED] 14 VFs
[08:25:16] [PASSED] 15 VFs
[08:25:16] [PASSED] 16 VFs
[08:25:16] [PASSED] 17 VFs
[08:25:16] [PASSED] 18 VFs
[08:25:16] [PASSED] 19 VFs
[08:25:16] [PASSED] 20 VFs
[08:25:16] [PASSED] 21 VFs
[08:25:16] [PASSED] 22 VFs
[08:25:16] [PASSED] 23 VFs
[08:25:16] [PASSED] 24 VFs
[08:25:16] [PASSED] 25 VFs
[08:25:16] [PASSED] 26 VFs
[08:25:16] [PASSED] 27 VFs
[08:25:16] [PASSED] 28 VFs
[08:25:16] [PASSED] 29 VFs
[08:25:16] [PASSED] 30 VFs
[08:25:16] [PASSED] 31 VFs
[08:25:16] [PASSED] 32 VFs
[08:25:16] [PASSED] 33 VFs
[08:25:16] [PASSED] 34 VFs
[08:25:16] [PASSED] 35 VFs
[08:25:16] [PASSED] 36 VFs
[08:25:16] [PASSED] 37 VFs
[08:25:16] [PASSED] 38 VFs
[08:25:16] [PASSED] 39 VFs
[08:25:16] [PASSED] 40 VFs
[08:25:16] [PASSED] 41 VFs
[08:25:16] [PASSED] 42 VFs
[08:25:16] [PASSED] 43 VFs
[08:25:16] [PASSED] 44 VFs
[08:25:16] [PASSED] 45 VFs
[08:25:16] [PASSED] 46 VFs
[08:25:16] [PASSED] 47 VFs
[08:25:16] [PASSED] 48 VFs
[08:25:16] [PASSED] 49 VFs
[08:25:16] [PASSED] 50 VFs
[08:25:16] [PASSED] 51 VFs
[08:25:16] [PASSED] 52 VFs
[08:25:16] [PASSED] 53 VFs
[08:25:16] [PASSED] 54 VFs
[08:25:16] [PASSED] 55 VFs
[08:25:16] [PASSED] 56 VFs
[08:25:16] [PASSED] 57 VFs
[08:25:16] [PASSED] 58 VFs
[08:25:16] [PASSED] 59 VFs
[08:25:16] [PASSED] 60 VFs
[08:25:16] [PASSED] 61 VFs
[08:25:16] [PASSED] 62 VFs
[08:25:16] [PASSED] 63 VFs
[08:25:16] ==================== [PASSED] fair_ggtt ====================
[08:25:16] ================== [PASSED] pf_gt_config ===================
[08:25:16] ===================== lmtt (1 subtest) =====================
[08:25:16] ======================== test_ops  =========================
[08:25:16] [PASSED] 2-level
[08:25:16] [PASSED] multi-level
[08:25:16] ==================== [PASSED] test_ops =====================
[08:25:16] ====================== [PASSED] lmtt =======================
[08:25:16] ================= pf_service (11 subtests) =================
[08:25:16] [PASSED] pf_negotiate_any
[08:25:16] [PASSED] pf_negotiate_base_match
[08:25:16] [PASSED] pf_negotiate_base_newer
[08:25:16] [PASSED] pf_negotiate_base_next
[08:25:16] [SKIPPED] pf_negotiate_base_older
[08:25:16] [PASSED] pf_negotiate_base_prev
[08:25:16] [PASSED] pf_negotiate_latest_match
[08:25:16] [PASSED] pf_negotiate_latest_newer
[08:25:16] [PASSED] pf_negotiate_latest_next
[08:25:16] [SKIPPED] pf_negotiate_latest_older
[08:25:16] [SKIPPED] pf_negotiate_latest_prev
[08:25:16] =================== [PASSED] pf_service ====================
[08:25:16] ================= xe_guc_g2g (2 subtests) ==================
[08:25:16] ============== xe_live_guc_g2g_kunit_default  ==============
[08:25:16] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[08:25:16] ============== xe_live_guc_g2g_kunit_allmem  ===============
[08:25:16] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[08:25:16] =================== [SKIPPED] xe_guc_g2g ===================
[08:25:16] =================== xe_mocs (2 subtests) ===================
[08:25:16] ================ xe_live_mocs_kernel_kunit  ================
[08:25:16] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[08:25:16] ================ xe_live_mocs_reset_kunit  =================
[08:25:16] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[08:25:16] ==================== [SKIPPED] xe_mocs =====================
[08:25:16] ================= xe_migrate (2 subtests) ==================
[08:25:16] ================= xe_migrate_sanity_kunit  =================
[08:25:16] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[08:25:16] ================== xe_validate_ccs_kunit  ==================
[08:25:16] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[08:25:16] =================== [SKIPPED] xe_migrate ===================
[08:25:16] ================== xe_dma_buf (1 subtest) ==================
[08:25:16] ==================== xe_dma_buf_kunit  =====================
[08:25:16] ================ [SKIPPED] xe_dma_buf_kunit ================
[08:25:16] =================== [SKIPPED] xe_dma_buf ===================
[08:25:16] ================= xe_bo_shrink (1 subtest) =================
[08:25:16] =================== xe_bo_shrink_kunit  ====================
[08:25:16] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[08:25:16] ================== [SKIPPED] xe_bo_shrink ==================
[08:25:16] ==================== xe_bo (2 subtests) ====================
[08:25:16] ================== xe_ccs_migrate_kunit  ===================
[08:25:16] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[08:25:16] ==================== xe_bo_evict_kunit  ====================
[08:25:16] =============== [SKIPPED] xe_bo_evict_kunit ================
[08:25:16] ===================== [SKIPPED] xe_bo ======================
[08:25:16] ==================== args (13 subtests) ====================
[08:25:16] [PASSED] count_args_test
[08:25:16] [PASSED] call_args_example
[08:25:16] [PASSED] call_args_test
[08:25:16] [PASSED] drop_first_arg_example
[08:25:16] [PASSED] drop_first_arg_test
[08:25:16] [PASSED] first_arg_example
[08:25:16] [PASSED] first_arg_test
[08:25:16] [PASSED] last_arg_example
[08:25:16] [PASSED] last_arg_test
[08:25:16] [PASSED] pick_arg_example
[08:25:16] [PASSED] if_args_example
[08:25:16] [PASSED] if_args_test
[08:25:16] [PASSED] sep_comma_example
[08:25:16] ====================== [PASSED] args =======================
[08:25:16] =================== xe_pci (3 subtests) ====================
[08:25:16] ==================== check_graphics_ip  ====================
[08:25:16] [PASSED] 12.00 Xe_LP
[08:25:16] [PASSED] 12.10 Xe_LP+
[08:25:16] [PASSED] 12.55 Xe_HPG
[08:25:16] [PASSED] 12.60 Xe_HPC
[08:25:16] [PASSED] 12.70 Xe_LPG
[08:25:16] [PASSED] 12.71 Xe_LPG
[08:25:16] [PASSED] 12.74 Xe_LPG+
[08:25:16] [PASSED] 20.01 Xe2_HPG
[08:25:16] [PASSED] 20.02 Xe2_HPG
[08:25:16] [PASSED] 20.04 Xe2_LPG
[08:25:16] [PASSED] 30.00 Xe3_LPG
[08:25:16] [PASSED] 30.01 Xe3_LPG
[08:25:16] [PASSED] 30.03 Xe3_LPG
[08:25:16] [PASSED] 30.04 Xe3_LPG
[08:25:16] [PASSED] 30.05 Xe3_LPG
[08:25:16] [PASSED] 35.11 Xe3p_XPC
[08:25:16] ================ [PASSED] check_graphics_ip ================
[08:25:16] ===================== check_media_ip  ======================
[08:25:16] [PASSED] 12.00 Xe_M
[08:25:16] [PASSED] 12.55 Xe_HPM
[08:25:16] [PASSED] 13.00 Xe_LPM+
[08:25:16] [PASSED] 13.01 Xe2_HPM
[08:25:16] [PASSED] 20.00 Xe2_LPM
[08:25:16] [PASSED] 30.00 Xe3_LPM
[08:25:16] [PASSED] 30.02 Xe3_LPM
[08:25:16] [PASSED] 35.00 Xe3p_LPM
[08:25:16] [PASSED] 35.03 Xe3p_HPM
[08:25:16] ================= [PASSED] check_media_ip ==================
[08:25:16] =================== check_platform_desc  ===================
[08:25:16] [PASSED] 0x9A60 (TIGERLAKE)
[08:25:16] [PASSED] 0x9A68 (TIGERLAKE)
[08:25:16] [PASSED] 0x9A70 (TIGERLAKE)
[08:25:16] [PASSED] 0x9A40 (TIGERLAKE)
[08:25:16] [PASSED] 0x9A49 (TIGERLAKE)
[08:25:16] [PASSED] 0x9A59 (TIGERLAKE)
[08:25:16] [PASSED] 0x9A78 (TIGERLAKE)
[08:25:16] [PASSED] 0x9AC0 (TIGERLAKE)
[08:25:16] [PASSED] 0x9AC9 (TIGERLAKE)
[08:25:16] [PASSED] 0x9AD9 (TIGERLAKE)
[08:25:16] [PASSED] 0x9AF8 (TIGERLAKE)
[08:25:16] [PASSED] 0x4C80 (ROCKETLAKE)
[08:25:16] [PASSED] 0x4C8A (ROCKETLAKE)
[08:25:16] [PASSED] 0x4C8B (ROCKETLAKE)
[08:25:16] [PASSED] 0x4C8C (ROCKETLAKE)
[08:25:16] [PASSED] 0x4C90 (ROCKETLAKE)
[08:25:16] [PASSED] 0x4C9A (ROCKETLAKE)
[08:25:16] [PASSED] 0x4680 (ALDERLAKE_S)
[08:25:16] [PASSED] 0x4682 (ALDERLAKE_S)
[08:25:16] [PASSED] 0x4688 (ALDERLAKE_S)
[08:25:16] [PASSED] 0x468A (ALDERLAKE_S)
[08:25:16] [PASSED] 0x468B (ALDERLAKE_S)
[08:25:16] [PASSED] 0x4690 (ALDERLAKE_S)
[08:25:16] [PASSED] 0x4692 (ALDERLAKE_S)
[08:25:16] [PASSED] 0x4693 (ALDERLAKE_S)
[08:25:16] [PASSED] 0x46A0 (ALDERLAKE_P)
[08:25:16] [PASSED] 0x46A1 (ALDERLAKE_P)
[08:25:16] [PASSED] 0x46A2 (ALDERLAKE_P)
[08:25:16] [PASSED] 0x46A3 (ALDERLAKE_P)
[08:25:16] [PASSED] 0x46A6 (ALDERLAKE_P)
[08:25:16] [PASSED] 0x46A8 (ALDERLAKE_P)
[08:25:16] [PASSED] 0x46AA (ALDERLAKE_P)
[08:25:16] [PASSED] 0x462A (ALDERLAKE_P)
[08:25:16] [PASSED] 0x4626 (ALDERLAKE_P)
[08:25:16] [PASSED] 0x4628 (ALDERLAKE_P)
stty: 'standard input': Inappropriate ioctl for device
[08:25:16] [PASSED] 0x46B0 (ALDERLAKE_P)
[08:25:16] [PASSED] 0x46B1 (ALDERLAKE_P)
[08:25:16] [PASSED] 0x46B2 (ALDERLAKE_P)
[08:25:16] [PASSED] 0x46B3 (ALDERLAKE_P)
[08:25:16] [PASSED] 0x46C0 (ALDERLAKE_P)
[08:25:16] [PASSED] 0x46C1 (ALDERLAKE_P)
[08:25:16] [PASSED] 0x46C2 (ALDERLAKE_P)
[08:25:16] [PASSED] 0x46C3 (ALDERLAKE_P)
[08:25:16] [PASSED] 0x46D0 (ALDERLAKE_N)
[08:25:16] [PASSED] 0x46D1 (ALDERLAKE_N)
[08:25:16] [PASSED] 0x46D2 (ALDERLAKE_N)
[08:25:16] [PASSED] 0x46D3 (ALDERLAKE_N)
[08:25:16] [PASSED] 0x46D4 (ALDERLAKE_N)
[08:25:16] [PASSED] 0xA721 (ALDERLAKE_P)
[08:25:16] [PASSED] 0xA7A1 (ALDERLAKE_P)
[08:25:16] [PASSED] 0xA7A9 (ALDERLAKE_P)
[08:25:16] [PASSED] 0xA7AC (ALDERLAKE_P)
[08:25:16] [PASSED] 0xA7AD (ALDERLAKE_P)
[08:25:16] [PASSED] 0xA720 (ALDERLAKE_P)
[08:25:16] [PASSED] 0xA7A0 (ALDERLAKE_P)
[08:25:16] [PASSED] 0xA7A8 (ALDERLAKE_P)
[08:25:16] [PASSED] 0xA7AA (ALDERLAKE_P)
[08:25:16] [PASSED] 0xA7AB (ALDERLAKE_P)
[08:25:16] [PASSED] 0xA780 (ALDERLAKE_S)
[08:25:16] [PASSED] 0xA781 (ALDERLAKE_S)
[08:25:16] [PASSED] 0xA782 (ALDERLAKE_S)
[08:25:16] [PASSED] 0xA783 (ALDERLAKE_S)
[08:25:16] [PASSED] 0xA788 (ALDERLAKE_S)
[08:25:16] [PASSED] 0xA789 (ALDERLAKE_S)
[08:25:16] [PASSED] 0xA78A (ALDERLAKE_S)
[08:25:16] [PASSED] 0xA78B (ALDERLAKE_S)
[08:25:16] [PASSED] 0x4905 (DG1)
[08:25:16] [PASSED] 0x4906 (DG1)
[08:25:16] [PASSED] 0x4907 (DG1)
[08:25:16] [PASSED] 0x4908 (DG1)
[08:25:16] [PASSED] 0x4909 (DG1)
[08:25:16] [PASSED] 0x56C0 (DG2)
[08:25:16] [PASSED] 0x56C2 (DG2)
[08:25:16] [PASSED] 0x56C1 (DG2)
[08:25:16] [PASSED] 0x7D51 (METEORLAKE)
[08:25:16] [PASSED] 0x7DD1 (METEORLAKE)
[08:25:16] [PASSED] 0x7D41 (METEORLAKE)
[08:25:16] [PASSED] 0x7D67 (METEORLAKE)
[08:25:16] [PASSED] 0xB640 (METEORLAKE)
[08:25:16] [PASSED] 0x56A0 (DG2)
[08:25:16] [PASSED] 0x56A1 (DG2)
[08:25:16] [PASSED] 0x56A2 (DG2)
[08:25:16] [PASSED] 0x56BE (DG2)
[08:25:16] [PASSED] 0x56BF (DG2)
[08:25:16] [PASSED] 0x5690 (DG2)
[08:25:16] [PASSED] 0x5691 (DG2)
[08:25:16] [PASSED] 0x5692 (DG2)
[08:25:16] [PASSED] 0x56A5 (DG2)
[08:25:16] [PASSED] 0x56A6 (DG2)
[08:25:16] [PASSED] 0x56B0 (DG2)
[08:25:16] [PASSED] 0x56B1 (DG2)
[08:25:16] [PASSED] 0x56BA (DG2)
[08:25:16] [PASSED] 0x56BB (DG2)
[08:25:16] [PASSED] 0x56BC (DG2)
[08:25:16] [PASSED] 0x56BD (DG2)
[08:25:16] [PASSED] 0x5693 (DG2)
[08:25:16] [PASSED] 0x5694 (DG2)
[08:25:16] [PASSED] 0x5695 (DG2)
[08:25:16] [PASSED] 0x56A3 (DG2)
[08:25:16] [PASSED] 0x56A4 (DG2)
[08:25:16] [PASSED] 0x56B2 (DG2)
[08:25:16] [PASSED] 0x56B3 (DG2)
[08:25:16] [PASSED] 0x5696 (DG2)
[08:25:16] [PASSED] 0x5697 (DG2)
[08:25:16] [PASSED] 0xB69 (PVC)
[08:25:16] [PASSED] 0xB6E (PVC)
[08:25:16] [PASSED] 0xBD4 (PVC)
[08:25:16] [PASSED] 0xBD5 (PVC)
[08:25:16] [PASSED] 0xBD6 (PVC)
[08:25:16] [PASSED] 0xBD7 (PVC)
[08:25:16] [PASSED] 0xBD8 (PVC)
[08:25:16] [PASSED] 0xBD9 (PVC)
[08:25:16] [PASSED] 0xBDA (PVC)
[08:25:16] [PASSED] 0xBDB (PVC)
[08:25:16] [PASSED] 0xBE0 (PVC)
[08:25:16] [PASSED] 0xBE1 (PVC)
[08:25:16] [PASSED] 0xBE5 (PVC)
[08:25:16] [PASSED] 0x7D40 (METEORLAKE)
[08:25:16] [PASSED] 0x7D45 (METEORLAKE)
[08:25:16] [PASSED] 0x7D55 (METEORLAKE)
[08:25:16] [PASSED] 0x7D60 (METEORLAKE)
[08:25:16] [PASSED] 0x7DD5 (METEORLAKE)
[08:25:16] [PASSED] 0x6420 (LUNARLAKE)
[08:25:16] [PASSED] 0x64A0 (LUNARLAKE)
[08:25:16] [PASSED] 0x64B0 (LUNARLAKE)
[08:25:16] [PASSED] 0xE202 (BATTLEMAGE)
[08:25:16] [PASSED] 0xE209 (BATTLEMAGE)
[08:25:16] [PASSED] 0xE20B (BATTLEMAGE)
[08:25:16] [PASSED] 0xE20C (BATTLEMAGE)
[08:25:16] [PASSED] 0xE20D (BATTLEMAGE)
[08:25:16] [PASSED] 0xE210 (BATTLEMAGE)
[08:25:16] [PASSED] 0xE211 (BATTLEMAGE)
[08:25:16] [PASSED] 0xE212 (BATTLEMAGE)
[08:25:16] [PASSED] 0xE216 (BATTLEMAGE)
[08:25:16] [PASSED] 0xE220 (BATTLEMAGE)
[08:25:16] [PASSED] 0xE221 (BATTLEMAGE)
[08:25:16] [PASSED] 0xE222 (BATTLEMAGE)
[08:25:16] [PASSED] 0xE223 (BATTLEMAGE)
[08:25:16] [PASSED] 0xB080 (PANTHERLAKE)
[08:25:16] [PASSED] 0xB081 (PANTHERLAKE)
[08:25:16] [PASSED] 0xB082 (PANTHERLAKE)
[08:25:16] [PASSED] 0xB083 (PANTHERLAKE)
[08:25:16] [PASSED] 0xB084 (PANTHERLAKE)
[08:25:16] [PASSED] 0xB085 (PANTHERLAKE)
[08:25:16] [PASSED] 0xB086 (PANTHERLAKE)
[08:25:16] [PASSED] 0xB087 (PANTHERLAKE)
[08:25:16] [PASSED] 0xB08F (PANTHERLAKE)
[08:25:16] [PASSED] 0xB090 (PANTHERLAKE)
[08:25:16] [PASSED] 0xB0A0 (PANTHERLAKE)
[08:25:16] [PASSED] 0xB0B0 (PANTHERLAKE)
[08:25:16] [PASSED] 0xFD80 (PANTHERLAKE)
[08:25:16] [PASSED] 0xFD81 (PANTHERLAKE)
[08:25:16] [PASSED] 0xD740 (NOVALAKE_S)
[08:25:16] [PASSED] 0xD741 (NOVALAKE_S)
[08:25:16] [PASSED] 0xD742 (NOVALAKE_S)
[08:25:16] [PASSED] 0xD743 (NOVALAKE_S)
[08:25:16] [PASSED] 0xD744 (NOVALAKE_S)
[08:25:16] [PASSED] 0xD745 (NOVALAKE_S)
[08:25:16] [PASSED] 0x674C (CRESCENTISLAND)
[08:25:16] =============== [PASSED] check_platform_desc ===============
[08:25:16] ===================== [PASSED] xe_pci ======================
[08:25:16] =================== xe_rtp (2 subtests) ====================
[08:25:16] =============== xe_rtp_process_to_sr_tests  ================
[08:25:16] [PASSED] coalesce-same-reg
[08:25:16] [PASSED] no-match-no-add
[08:25:16] [PASSED] match-or
[08:25:16] [PASSED] match-or-xfail
[08:25:16] [PASSED] no-match-no-add-multiple-rules
[08:25:16] [PASSED] two-regs-two-entries
[08:25:16] [PASSED] clr-one-set-other
[08:25:16] [PASSED] set-field
[08:25:16] [PASSED] conflict-duplicate
[08:25:16] [PASSED] conflict-not-disjoint
[08:25:16] [PASSED] conflict-reg-type
[08:25:16] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[08:25:16] ================== xe_rtp_process_tests  ===================
[08:25:16] [PASSED] active1
[08:25:16] [PASSED] active2
[08:25:16] [PASSED] active-inactive
[08:25:16] [PASSED] inactive-active
[08:25:16] [PASSED] inactive-1st_or_active-inactive
[08:25:16] [PASSED] inactive-2nd_or_active-inactive
[08:25:16] [PASSED] inactive-last_or_active-inactive
[08:25:16] [PASSED] inactive-no_or_active-inactive
[08:25:16] ============== [PASSED] xe_rtp_process_tests ===============
[08:25:16] ===================== [PASSED] xe_rtp ======================
[08:25:16] ==================== xe_wa (1 subtest) =====================
[08:25:16] ======================== xe_wa_gt  =========================
[08:25:16] [PASSED] TIGERLAKE B0
[08:25:16] [PASSED] DG1 A0
[08:25:16] [PASSED] DG1 B0
[08:25:16] [PASSED] ALDERLAKE_S A0
[08:25:16] [PASSED] ALDERLAKE_S B0
[08:25:16] [PASSED] ALDERLAKE_S C0
[08:25:16] [PASSED] ALDERLAKE_S D0
[08:25:16] [PASSED] ALDERLAKE_P A0
[08:25:16] [PASSED] ALDERLAKE_P B0
[08:25:16] [PASSED] ALDERLAKE_P C0
[08:25:16] [PASSED] ALDERLAKE_S RPLS D0
[08:25:16] [PASSED] ALDERLAKE_P RPLU E0
[08:25:16] [PASSED] DG2 G10 C0
[08:25:16] [PASSED] DG2 G11 B1
[08:25:16] [PASSED] DG2 G12 A1
[08:25:16] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[08:25:16] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[08:25:16] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[08:25:16] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[08:25:16] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[08:25:16] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[08:25:16] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[08:25:16] ==================== [PASSED] xe_wa_gt =====================
[08:25:16] ====================== [PASSED] xe_wa ======================
[08:25:16] ============================================================
[08:25:16] Testing complete. Ran 512 tests: passed: 494, skipped: 18
[08:25:16] Elapsed time: 44.218s total, 4.270s configuring, 39.431s building, 0.471s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[08:25:16] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[08:25:18] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=25
[08:25:48] Starting KUnit Kernel (1/1)...
[08:25:48] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[08:25:48] ============ drm_test_pick_cmdline (2 subtests) ============
[08:25:48] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[08:25:48] =============== drm_test_pick_cmdline_named  ===============
[08:25:48] [PASSED] NTSC
[08:25:48] [PASSED] NTSC-J
[08:25:48] [PASSED] PAL
[08:25:48] [PASSED] PAL-M
[08:25:48] =========== [PASSED] drm_test_pick_cmdline_named ===========
[08:25:48] ============== [PASSED] drm_test_pick_cmdline ==============
[08:25:48] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[08:25:48] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[08:25:48] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[08:25:48] =========== drm_validate_clone_mode (2 subtests) ===========
[08:25:48] ============== drm_test_check_in_clone_mode  ===============
[08:25:48] [PASSED] in_clone_mode
[08:25:48] [PASSED] not_in_clone_mode
[08:25:48] ========== [PASSED] drm_test_check_in_clone_mode ===========
[08:25:48] =============== drm_test_check_valid_clones  ===============
[08:25:48] [PASSED] not_in_clone_mode
[08:25:48] [PASSED] valid_clone
[08:25:48] [PASSED] invalid_clone
[08:25:48] =========== [PASSED] drm_test_check_valid_clones ===========
[08:25:48] ============= [PASSED] drm_validate_clone_mode =============
[08:25:48] ============= drm_validate_modeset (1 subtest) =============
[08:25:48] [PASSED] drm_test_check_connector_changed_modeset
[08:25:48] ============== [PASSED] drm_validate_modeset ===============
[08:25:48] ====== drm_test_bridge_get_current_state (2 subtests) ======
[08:25:48] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[08:25:48] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[08:25:48] ======== [PASSED] drm_test_bridge_get_current_state ========
[08:25:48] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[08:25:48] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[08:25:48] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[08:25:48] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[08:25:48] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[08:25:48] ============== drm_bridge_alloc (2 subtests) ===============
[08:25:48] [PASSED] drm_test_drm_bridge_alloc_basic
[08:25:48] [PASSED] drm_test_drm_bridge_alloc_get_put
[08:25:48] ================ [PASSED] drm_bridge_alloc =================
[08:25:48] ================== drm_buddy (9 subtests) ==================
[08:25:48] [PASSED] drm_test_buddy_alloc_limit
[08:25:48] [PASSED] drm_test_buddy_alloc_optimistic
[08:25:48] [PASSED] drm_test_buddy_alloc_pessimistic
[08:25:48] [PASSED] drm_test_buddy_alloc_pathological
[08:25:48] [PASSED] drm_test_buddy_alloc_contiguous
[08:25:48] [PASSED] drm_test_buddy_alloc_clear
[08:25:48] [PASSED] drm_test_buddy_alloc_range_bias
[08:25:48] [PASSED] drm_test_buddy_fragmentation_performance
[08:25:48] [PASSED] drm_test_buddy_alloc_exceeds_max_order
[08:25:48] ==================== [PASSED] drm_buddy ====================
[08:25:48] ============= drm_cmdline_parser (40 subtests) =============
[08:25:48] [PASSED] drm_test_cmdline_force_d_only
[08:25:48] [PASSED] drm_test_cmdline_force_D_only_dvi
[08:25:48] [PASSED] drm_test_cmdline_force_D_only_hdmi
[08:25:48] [PASSED] drm_test_cmdline_force_D_only_not_digital
[08:25:48] [PASSED] drm_test_cmdline_force_e_only
[08:25:48] [PASSED] drm_test_cmdline_res
[08:25:48] [PASSED] drm_test_cmdline_res_vesa
[08:25:48] [PASSED] drm_test_cmdline_res_vesa_rblank
[08:25:48] [PASSED] drm_test_cmdline_res_rblank
[08:25:48] [PASSED] drm_test_cmdline_res_bpp
[08:25:48] [PASSED] drm_test_cmdline_res_refresh
[08:25:48] [PASSED] drm_test_cmdline_res_bpp_refresh
[08:25:48] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[08:25:48] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[08:25:48] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[08:25:48] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[08:25:48] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[08:25:48] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[08:25:48] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[08:25:48] [PASSED] drm_test_cmdline_res_margins_force_on
[08:25:48] [PASSED] drm_test_cmdline_res_vesa_margins
[08:25:48] [PASSED] drm_test_cmdline_name
[08:25:48] [PASSED] drm_test_cmdline_name_bpp
[08:25:48] [PASSED] drm_test_cmdline_name_option
[08:25:48] [PASSED] drm_test_cmdline_name_bpp_option
[08:25:48] [PASSED] drm_test_cmdline_rotate_0
[08:25:48] [PASSED] drm_test_cmdline_rotate_90
[08:25:48] [PASSED] drm_test_cmdline_rotate_180
[08:25:48] [PASSED] drm_test_cmdline_rotate_270
[08:25:48] [PASSED] drm_test_cmdline_hmirror
[08:25:48] [PASSED] drm_test_cmdline_vmirror
[08:25:48] [PASSED] drm_test_cmdline_margin_options
[08:25:48] [PASSED] drm_test_cmdline_multiple_options
[08:25:48] [PASSED] drm_test_cmdline_bpp_extra_and_option
[08:25:48] [PASSED] drm_test_cmdline_extra_and_option
[08:25:48] [PASSED] drm_test_cmdline_freestanding_options
[08:25:48] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[08:25:48] [PASSED] drm_test_cmdline_panel_orientation
[08:25:48] ================ drm_test_cmdline_invalid  =================
[08:25:48] [PASSED] margin_only
[08:25:48] [PASSED] interlace_only
[08:25:48] [PASSED] res_missing_x
[08:25:48] [PASSED] res_missing_y
[08:25:48] [PASSED] res_bad_y
[08:25:48] [PASSED] res_missing_y_bpp
[08:25:48] [PASSED] res_bad_bpp
[08:25:48] [PASSED] res_bad_refresh
[08:25:48] [PASSED] res_bpp_refresh_force_on_off
[08:25:48] [PASSED] res_invalid_mode
[08:25:48] [PASSED] res_bpp_wrong_place_mode
[08:25:48] [PASSED] name_bpp_refresh
[08:25:48] [PASSED] name_refresh
[08:25:48] [PASSED] name_refresh_wrong_mode
[08:25:48] [PASSED] name_refresh_invalid_mode
[08:25:48] [PASSED] rotate_multiple
[08:25:48] [PASSED] rotate_invalid_val
[08:25:48] [PASSED] rotate_truncated
[08:25:48] [PASSED] invalid_option
[08:25:48] [PASSED] invalid_tv_option
[08:25:48] [PASSED] truncated_tv_option
[08:25:48] ============ [PASSED] drm_test_cmdline_invalid =============
[08:25:48] =============== drm_test_cmdline_tv_options  ===============
[08:25:48] [PASSED] NTSC
[08:25:48] [PASSED] NTSC_443
[08:25:48] [PASSED] NTSC_J
[08:25:48] [PASSED] PAL
[08:25:48] [PASSED] PAL_M
[08:25:48] [PASSED] PAL_N
[08:25:48] [PASSED] SECAM
[08:25:48] [PASSED] MONO_525
[08:25:48] [PASSED] MONO_625
[08:25:48] =========== [PASSED] drm_test_cmdline_tv_options ===========
[08:25:48] =============== [PASSED] drm_cmdline_parser ================
[08:25:48] ========== drmm_connector_hdmi_init (20 subtests) ==========
[08:25:48] [PASSED] drm_test_connector_hdmi_init_valid
[08:25:48] [PASSED] drm_test_connector_hdmi_init_bpc_8
[08:25:48] [PASSED] drm_test_connector_hdmi_init_bpc_10
[08:25:48] [PASSED] drm_test_connector_hdmi_init_bpc_12
[08:25:48] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[08:25:48] [PASSED] drm_test_connector_hdmi_init_bpc_null
[08:25:48] [PASSED] drm_test_connector_hdmi_init_formats_empty
[08:25:48] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[08:25:48] === drm_test_connector_hdmi_init_formats_yuv420_allowed  ===
[08:25:48] [PASSED] supported_formats=0x9 yuv420_allowed=1
[08:25:48] [PASSED] supported_formats=0x9 yuv420_allowed=0
[08:25:48] [PASSED] supported_formats=0x3 yuv420_allowed=1
[08:25:48] [PASSED] supported_formats=0x3 yuv420_allowed=0
[08:25:48] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[08:25:48] [PASSED] drm_test_connector_hdmi_init_null_ddc
[08:25:48] [PASSED] drm_test_connector_hdmi_init_null_product
[08:25:48] [PASSED] drm_test_connector_hdmi_init_null_vendor
[08:25:48] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[08:25:48] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[08:25:48] [PASSED] drm_test_connector_hdmi_init_product_valid
[08:25:48] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[08:25:48] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[08:25:48] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[08:25:48] ========= drm_test_connector_hdmi_init_type_valid  =========
[08:25:48] [PASSED] HDMI-A
[08:25:48] [PASSED] HDMI-B
[08:25:48] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[08:25:48] ======== drm_test_connector_hdmi_init_type_invalid  ========
[08:25:48] [PASSED] Unknown
[08:25:48] [PASSED] VGA
[08:25:48] [PASSED] DVI-I
[08:25:48] [PASSED] DVI-D
[08:25:48] [PASSED] DVI-A
[08:25:48] [PASSED] Composite
[08:25:48] [PASSED] SVIDEO
[08:25:48] [PASSED] LVDS
[08:25:48] [PASSED] Component
[08:25:48] [PASSED] DIN
[08:25:48] [PASSED] DP
[08:25:48] [PASSED] TV
[08:25:48] [PASSED] eDP
[08:25:48] [PASSED] Virtual
[08:25:48] [PASSED] DSI
[08:25:48] [PASSED] DPI
[08:25:48] [PASSED] Writeback
[08:25:48] [PASSED] SPI
[08:25:48] [PASSED] USB
[08:25:48] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[08:25:48] ============ [PASSED] drmm_connector_hdmi_init =============
[08:25:48] ============= drmm_connector_init (3 subtests) =============
[08:25:48] [PASSED] drm_test_drmm_connector_init
[08:25:48] [PASSED] drm_test_drmm_connector_init_null_ddc
[08:25:48] ========= drm_test_drmm_connector_init_type_valid  =========
[08:25:48] [PASSED] Unknown
[08:25:48] [PASSED] VGA
[08:25:48] [PASSED] DVI-I
[08:25:48] [PASSED] DVI-D
[08:25:48] [PASSED] DVI-A
[08:25:48] [PASSED] Composite
[08:25:48] [PASSED] SVIDEO
[08:25:48] [PASSED] LVDS
[08:25:48] [PASSED] Component
[08:25:48] [PASSED] DIN
[08:25:48] [PASSED] DP
[08:25:48] [PASSED] HDMI-A
[08:25:48] [PASSED] HDMI-B
[08:25:48] [PASSED] TV
[08:25:48] [PASSED] eDP
[08:25:48] [PASSED] Virtual
[08:25:48] [PASSED] DSI
[08:25:48] [PASSED] DPI
[08:25:48] [PASSED] Writeback
[08:25:48] [PASSED] SPI
[08:25:48] [PASSED] USB
[08:25:48] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[08:25:48] =============== [PASSED] drmm_connector_init ===============
[08:25:48] ========= drm_connector_dynamic_init (6 subtests) ==========
[08:25:48] [PASSED] drm_test_drm_connector_dynamic_init
[08:25:48] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[08:25:48] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[08:25:48] [PASSED] drm_test_drm_connector_dynamic_init_properties
[08:25:48] ===== drm_test_drm_connector_dynamic_init_type_valid  ======
[08:25:48] [PASSED] Unknown
[08:25:48] [PASSED] VGA
[08:25:48] [PASSED] DVI-I
[08:25:48] [PASSED] DVI-D
[08:25:48] [PASSED] DVI-A
[08:25:48] [PASSED] Composite
[08:25:48] [PASSED] SVIDEO
[08:25:48] [PASSED] LVDS
[08:25:48] [PASSED] Component
[08:25:48] [PASSED] DIN
[08:25:48] [PASSED] DP
[08:25:48] [PASSED] HDMI-A
[08:25:48] [PASSED] HDMI-B
[08:25:48] [PASSED] TV
[08:25:48] [PASSED] eDP
[08:25:48] [PASSED] Virtual
[08:25:48] [PASSED] DSI
[08:25:48] [PASSED] DPI
[08:25:48] [PASSED] Writeback
[08:25:48] [PASSED] SPI
[08:25:48] [PASSED] USB
[08:25:48] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[08:25:48] ======== drm_test_drm_connector_dynamic_init_name  =========
[08:25:48] [PASSED] Unknown
[08:25:48] [PASSED] VGA
[08:25:48] [PASSED] DVI-I
[08:25:48] [PASSED] DVI-D
[08:25:48] [PASSED] DVI-A
[08:25:48] [PASSED] Composite
[08:25:48] [PASSED] SVIDEO
[08:25:48] [PASSED] LVDS
[08:25:48] [PASSED] Component
[08:25:48] [PASSED] DIN
[08:25:48] [PASSED] DP
[08:25:48] [PASSED] HDMI-A
[08:25:48] [PASSED] HDMI-B
[08:25:48] [PASSED] TV
[08:25:48] [PASSED] eDP
[08:25:48] [PASSED] Virtual
[08:25:48] [PASSED] DSI
[08:25:48] [PASSED] DPI
[08:25:48] [PASSED] Writeback
[08:25:48] [PASSED] SPI
[08:25:48] [PASSED] USB
[08:25:48] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[08:25:48] =========== [PASSED] drm_connector_dynamic_init ============
[08:25:48] ==== drm_connector_dynamic_register_early (4 subtests) =====
[08:25:48] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[08:25:48] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[08:25:48] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[08:25:48] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[08:25:48] ====== [PASSED] drm_connector_dynamic_register_early =======
[08:25:48] ======= drm_connector_dynamic_register (7 subtests) ========
[08:25:48] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[08:25:48] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[08:25:48] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[08:25:48] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[08:25:48] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[08:25:48] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[08:25:48] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[08:25:48] ========= [PASSED] drm_connector_dynamic_register ==========
[08:25:48] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[08:25:48] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[08:25:48] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[08:25:48] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[08:25:48] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[08:25:48] ========== drm_test_get_tv_mode_from_name_valid  ===========
[08:25:48] [PASSED] NTSC
[08:25:48] [PASSED] NTSC-443
[08:25:48] [PASSED] NTSC-J
[08:25:48] [PASSED] PAL
[08:25:48] [PASSED] PAL-M
[08:25:48] [PASSED] PAL-N
[08:25:48] [PASSED] SECAM
[08:25:48] [PASSED] Mono
[08:25:48] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[08:25:48] [PASSED] drm_test_get_tv_mode_from_name_truncated
[08:25:48] ============ [PASSED] drm_get_tv_mode_from_name ============
[08:25:48] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[08:25:48] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[08:25:48] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[08:25:48] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[08:25:48] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[08:25:48] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[08:25:48] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[08:25:48] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid  =
[08:25:48] [PASSED] VIC 96
[08:25:48] [PASSED] VIC 97
[08:25:48] [PASSED] VIC 101
[08:25:48] [PASSED] VIC 102
[08:25:48] [PASSED] VIC 106
[08:25:48] [PASSED] VIC 107
[08:25:48] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[08:25:48] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[08:25:48] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[08:25:48] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[08:25:48] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[08:25:48] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[08:25:48] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[08:25:48] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[08:25:48] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name  ====
[08:25:48] [PASSED] Automatic
[08:25:48] [PASSED] Full
[08:25:48] [PASSED] Limited 16:235
[08:25:48] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[08:25:48] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[08:25:48] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[08:25:48] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[08:25:48] === drm_test_drm_hdmi_connector_get_output_format_name  ====
[08:25:48] [PASSED] RGB
[08:25:48] [PASSED] YUV 4:2:0
[08:25:48] [PASSED] YUV 4:2:2
[08:25:48] [PASSED] YUV 4:4:4
[08:25:48] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[08:25:48] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[08:25:48] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[08:25:48] ============= drm_damage_helper (21 subtests) ==============
[08:25:48] [PASSED] drm_test_damage_iter_no_damage
[08:25:48] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[08:25:48] [PASSED] drm_test_damage_iter_no_damage_src_moved
[08:25:48] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[08:25:48] [PASSED] drm_test_damage_iter_no_damage_not_visible
[08:25:48] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[08:25:48] [PASSED] drm_test_damage_iter_no_damage_no_fb
[08:25:48] [PASSED] drm_test_damage_iter_simple_damage
[08:25:48] [PASSED] drm_test_damage_iter_single_damage
[08:25:48] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[08:25:48] [PASSED] drm_test_damage_iter_single_damage_outside_src
[08:25:48] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[08:25:48] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[08:25:48] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[08:25:48] [PASSED] drm_test_damage_iter_single_damage_src_moved
[08:25:48] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[08:25:48] [PASSED] drm_test_damage_iter_damage
[08:25:48] [PASSED] drm_test_damage_iter_damage_one_intersect
[08:25:48] [PASSED] drm_test_damage_iter_damage_one_outside
[08:25:48] [PASSED] drm_test_damage_iter_damage_src_moved
[08:25:48] [PASSED] drm_test_damage_iter_damage_not_visible
[08:25:48] ================ [PASSED] drm_damage_helper ================
[08:25:48] ============== drm_dp_mst_helper (3 subtests) ==============
[08:25:48] ============== drm_test_dp_mst_calc_pbn_mode  ==============
[08:25:48] [PASSED] Clock 154000 BPP 30 DSC disabled
[08:25:48] [PASSED] Clock 234000 BPP 30 DSC disabled
[08:25:48] [PASSED] Clock 297000 BPP 24 DSC disabled
[08:25:48] [PASSED] Clock 332880 BPP 24 DSC enabled
[08:25:48] [PASSED] Clock 324540 BPP 24 DSC enabled
[08:25:48] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[08:25:48] ============== drm_test_dp_mst_calc_pbn_div  ===============
[08:25:48] [PASSED] Link rate 2000000 lane count 4
[08:25:48] [PASSED] Link rate 2000000 lane count 2
[08:25:48] [PASSED] Link rate 2000000 lane count 1
[08:25:48] [PASSED] Link rate 1350000 lane count 4
[08:25:48] [PASSED] Link rate 1350000 lane count 2
[08:25:48] [PASSED] Link rate 1350000 lane count 1
[08:25:48] [PASSED] Link rate 1000000 lane count 4
[08:25:48] [PASSED] Link rate 1000000 lane count 2
[08:25:48] [PASSED] Link rate 1000000 lane count 1
[08:25:48] [PASSED] Link rate 810000 lane count 4
[08:25:48] [PASSED] Link rate 810000 lane count 2
[08:25:48] [PASSED] Link rate 810000 lane count 1
[08:25:48] [PASSED] Link rate 540000 lane count 4
[08:25:48] [PASSED] Link rate 540000 lane count 2
[08:25:48] [PASSED] Link rate 540000 lane count 1
[08:25:48] [PASSED] Link rate 270000 lane count 4
[08:25:48] [PASSED] Link rate 270000 lane count 2
[08:25:48] [PASSED] Link rate 270000 lane count 1
[08:25:48] [PASSED] Link rate 162000 lane count 4
[08:25:48] [PASSED] Link rate 162000 lane count 2
[08:25:48] [PASSED] Link rate 162000 lane count 1
[08:25:48] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[08:25:48] ========= drm_test_dp_mst_sideband_msg_req_decode  =========
[08:25:48] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[08:25:48] [PASSED] DP_POWER_UP_PHY with port number
[08:25:48] [PASSED] DP_POWER_DOWN_PHY with port number
[08:25:48] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[08:25:48] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[08:25:48] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[08:25:48] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[08:25:48] [PASSED] DP_QUERY_PAYLOAD with port number
[08:25:48] [PASSED] DP_QUERY_PAYLOAD with VCPI
[08:25:48] [PASSED] DP_REMOTE_DPCD_READ with port number
[08:25:48] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[08:25:48] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[08:25:48] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[08:25:48] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[08:25:48] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[08:25:48] [PASSED] DP_REMOTE_I2C_READ with port number
[08:25:48] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[08:25:48] [PASSED] DP_REMOTE_I2C_READ with transactions array
[08:25:48] [PASSED] DP_REMOTE_I2C_WRITE with port number
[08:25:48] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[08:25:48] [PASSED] DP_REMOTE_I2C_WRITE with data array
[08:25:48] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[08:25:48] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[08:25:48] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[08:25:48] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[08:25:48] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[08:25:48] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[08:25:48] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[08:25:48] ================ [PASSED] drm_dp_mst_helper ================
[08:25:48] ================== drm_exec (7 subtests) ===================
[08:25:48] [PASSED] sanitycheck
[08:25:48] [PASSED] test_lock
[08:25:48] [PASSED] test_lock_unlock
[08:25:48] [PASSED] test_duplicates
[08:25:48] [PASSED] test_prepare
[08:25:48] [PASSED] test_prepare_array
[08:25:48] [PASSED] test_multiple_loops
[08:25:48] ==================== [PASSED] drm_exec =====================
[08:25:48] =========== drm_format_helper_test (17 subtests) ===========
[08:25:48] ============== drm_test_fb_xrgb8888_to_gray8  ==============
[08:25:48] [PASSED] single_pixel_source_buffer
[08:25:48] [PASSED] single_pixel_clip_rectangle
[08:25:48] [PASSED] well_known_colors
[08:25:48] [PASSED] destination_pitch
[08:25:48] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[08:25:48] ============= drm_test_fb_xrgb8888_to_rgb332  ==============
[08:25:48] [PASSED] single_pixel_source_buffer
[08:25:48] [PASSED] single_pixel_clip_rectangle
[08:25:48] [PASSED] well_known_colors
[08:25:48] [PASSED] destination_pitch
[08:25:48] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[08:25:48] ============= drm_test_fb_xrgb8888_to_rgb565  ==============
[08:25:48] [PASSED] single_pixel_source_buffer
[08:25:48] [PASSED] single_pixel_clip_rectangle
[08:25:48] [PASSED] well_known_colors
[08:25:48] [PASSED] destination_pitch
[08:25:48] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[08:25:48] ============ drm_test_fb_xrgb8888_to_xrgb1555  =============
[08:25:48] [PASSED] single_pixel_source_buffer
[08:25:48] [PASSED] single_pixel_clip_rectangle
[08:25:48] [PASSED] well_known_colors
[08:25:48] [PASSED] destination_pitch
[08:25:48] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[08:25:48] ============ drm_test_fb_xrgb8888_to_argb1555  =============
[08:25:48] [PASSED] single_pixel_source_buffer
[08:25:48] [PASSED] single_pixel_clip_rectangle
[08:25:48] [PASSED] well_known_colors
[08:25:48] [PASSED] destination_pitch
[08:25:48] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[08:25:48] ============ drm_test_fb_xrgb8888_to_rgba5551  =============
[08:25:48] [PASSED] single_pixel_source_buffer
[08:25:48] [PASSED] single_pixel_clip_rectangle
[08:25:48] [PASSED] well_known_colors
[08:25:48] [PASSED] destination_pitch
[08:25:48] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[08:25:48] ============= drm_test_fb_xrgb8888_to_rgb888  ==============
[08:25:48] [PASSED] single_pixel_source_buffer
[08:25:48] [PASSED] single_pixel_clip_rectangle
[08:25:48] [PASSED] well_known_colors
[08:25:48] [PASSED] destination_pitch
[08:25:48] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[08:25:48] ============= drm_test_fb_xrgb8888_to_bgr888  ==============
[08:25:48] [PASSED] single_pixel_source_buffer
[08:25:48] [PASSED] single_pixel_clip_rectangle
[08:25:48] [PASSED] well_known_colors
[08:25:48] [PASSED] destination_pitch
[08:25:48] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[08:25:48] ============ drm_test_fb_xrgb8888_to_argb8888  =============
[08:25:48] [PASSED] single_pixel_source_buffer
[08:25:48] [PASSED] single_pixel_clip_rectangle
[08:25:48] [PASSED] well_known_colors
[08:25:48] [PASSED] destination_pitch
[08:25:48] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[08:25:48] =========== drm_test_fb_xrgb8888_to_xrgb2101010  ===========
[08:25:48] [PASSED] single_pixel_source_buffer
[08:25:48] [PASSED] single_pixel_clip_rectangle
[08:25:48] [PASSED] well_known_colors
[08:25:48] [PASSED] destination_pitch
[08:25:48] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[08:25:48] =========== drm_test_fb_xrgb8888_to_argb2101010  ===========
[08:25:48] [PASSED] single_pixel_source_buffer
[08:25:48] [PASSED] single_pixel_clip_rectangle
[08:25:48] [PASSED] well_known_colors
[08:25:48] [PASSED] destination_pitch
[08:25:48] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[08:25:48] ============== drm_test_fb_xrgb8888_to_mono  ===============
[08:25:48] [PASSED] single_pixel_source_buffer
[08:25:48] [PASSED] single_pixel_clip_rectangle
[08:25:48] [PASSED] well_known_colors
[08:25:48] [PASSED] destination_pitch
[08:25:48] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[08:25:48] ==================== drm_test_fb_swab  =====================
[08:25:48] [PASSED] single_pixel_source_buffer
[08:25:48] [PASSED] single_pixel_clip_rectangle
[08:25:48] [PASSED] well_known_colors
[08:25:48] [PASSED] destination_pitch
[08:25:48] ================ [PASSED] drm_test_fb_swab =================
[08:25:48] ============ drm_test_fb_xrgb8888_to_xbgr8888  =============
[08:25:48] [PASSED] single_pixel_source_buffer
[08:25:48] [PASSED] single_pixel_clip_rectangle
[08:25:48] [PASSED] well_known_colors
[08:25:48] [PASSED] destination_pitch
[08:25:48] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[08:25:48] ============ drm_test_fb_xrgb8888_to_abgr8888  =============
[08:25:48] [PASSED] single_pixel_source_buffer
[08:25:48] [PASSED] single_pixel_clip_rectangle
[08:25:48] [PASSED] well_known_colors
[08:25:48] [PASSED] destination_pitch
[08:25:48] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[08:25:48] ================= drm_test_fb_clip_offset  =================
[08:25:48] [PASSED] pass through
[08:25:48] [PASSED] horizontal offset
[08:25:48] [PASSED] vertical offset
[08:25:48] [PASSED] horizontal and vertical offset
[08:25:48] [PASSED] horizontal offset (custom pitch)
[08:25:48] [PASSED] vertical offset (custom pitch)
[08:25:48] [PASSED] horizontal and vertical offset (custom pitch)
[08:25:48] ============= [PASSED] drm_test_fb_clip_offset =============
[08:25:48] =================== drm_test_fb_memcpy  ====================
[08:25:48] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[08:25:48] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[08:25:48] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[08:25:48] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[08:25:48] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[08:25:48] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[08:25:48] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[08:25:48] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[08:25:48] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[08:25:48] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[08:25:48] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[08:25:48] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[08:25:48] =============== [PASSED] drm_test_fb_memcpy ================
[08:25:48] ============= [PASSED] drm_format_helper_test ==============
[08:25:48] ================= drm_format (18 subtests) =================
[08:25:48] [PASSED] drm_test_format_block_width_invalid
[08:25:48] [PASSED] drm_test_format_block_width_one_plane
[08:25:48] [PASSED] drm_test_format_block_width_two_plane
[08:25:48] [PASSED] drm_test_format_block_width_three_plane
[08:25:48] [PASSED] drm_test_format_block_width_tiled
[08:25:48] [PASSED] drm_test_format_block_height_invalid
[08:25:48] [PASSED] drm_test_format_block_height_one_plane
[08:25:48] [PASSED] drm_test_format_block_height_two_plane
[08:25:48] [PASSED] drm_test_format_block_height_three_plane
[08:25:48] [PASSED] drm_test_format_block_height_tiled
[08:25:48] [PASSED] drm_test_format_min_pitch_invalid
[08:25:48] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[08:25:48] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[08:25:48] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[08:25:48] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[08:25:48] [PASSED] drm_test_format_min_pitch_two_plane
[08:25:48] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[08:25:48] [PASSED] drm_test_format_min_pitch_tiled
[08:25:48] =================== [PASSED] drm_format ====================
[08:25:48] ============== drm_framebuffer (10 subtests) ===============
[08:25:48] ========== drm_test_framebuffer_check_src_coords  ==========
[08:25:48] [PASSED] Success: source fits into fb
[08:25:48] [PASSED] Fail: overflowing fb with x-axis coordinate
[08:25:48] [PASSED] Fail: overflowing fb with y-axis coordinate
[08:25:48] [PASSED] Fail: overflowing fb with source width
[08:25:48] [PASSED] Fail: overflowing fb with source height
[08:25:48] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[08:25:48] [PASSED] drm_test_framebuffer_cleanup
[08:25:48] =============== drm_test_framebuffer_create  ===============
[08:25:48] [PASSED] ABGR8888 normal sizes
[08:25:48] [PASSED] ABGR8888 max sizes
[08:25:48] [PASSED] ABGR8888 pitch greater than min required
[08:25:48] [PASSED] ABGR8888 pitch less than min required
[08:25:48] [PASSED] ABGR8888 Invalid width
[08:25:48] [PASSED] ABGR8888 Invalid buffer handle
[08:25:48] [PASSED] No pixel format
[08:25:48] [PASSED] ABGR8888 Width 0
[08:25:48] [PASSED] ABGR8888 Height 0
[08:25:48] [PASSED] ABGR8888 Out of bound height * pitch combination
[08:25:48] [PASSED] ABGR8888 Large buffer offset
[08:25:48] [PASSED] ABGR8888 Buffer offset for inexistent plane
[08:25:48] [PASSED] ABGR8888 Invalid flag
[08:25:48] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[08:25:48] [PASSED] ABGR8888 Valid buffer modifier
[08:25:48] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[08:25:48] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[08:25:48] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[08:25:48] [PASSED] NV12 Normal sizes
[08:25:48] [PASSED] NV12 Max sizes
[08:25:48] [PASSED] NV12 Invalid pitch
[08:25:48] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[08:25:48] [PASSED] NV12 different  modifier per-plane
[08:25:48] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[08:25:48] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[08:25:48] [PASSED] NV12 Modifier for inexistent plane
[08:25:48] [PASSED] NV12 Handle for inexistent plane
[08:25:48] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[08:25:48] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[08:25:48] [PASSED] YVU420 Normal sizes
[08:25:48] [PASSED] YVU420 Max sizes
[08:25:48] [PASSED] YVU420 Invalid pitch
[08:25:48] [PASSED] YVU420 Different pitches
[08:25:48] [PASSED] YVU420 Different buffer offsets/pitches
[08:25:48] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[08:25:48] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[08:25:48] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[08:25:48] [PASSED] YVU420 Valid modifier
[08:25:48] [PASSED] YVU420 Different modifiers per plane
[08:25:48] [PASSED] YVU420 Modifier for inexistent plane
[08:25:48] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[08:25:48] [PASSED] X0L2 Normal sizes
[08:25:48] [PASSED] X0L2 Max sizes
[08:25:48] [PASSED] X0L2 Invalid pitch
[08:25:48] [PASSED] X0L2 Pitch greater than minimum required
[08:25:48] [PASSED] X0L2 Handle for inexistent plane
[08:25:48] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[08:25:48] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[08:25:48] [PASSED] X0L2 Valid modifier
[08:25:48] [PASSED] X0L2 Modifier for inexistent plane
[08:25:48] =========== [PASSED] drm_test_framebuffer_create ===========
[08:25:48] [PASSED] drm_test_framebuffer_free
[08:25:48] [PASSED] drm_test_framebuffer_init
[08:25:48] [PASSED] drm_test_framebuffer_init_bad_format
[08:25:48] [PASSED] drm_test_framebuffer_init_dev_mismatch
[08:25:48] [PASSED] drm_test_framebuffer_lookup
[08:25:48] [PASSED] drm_test_framebuffer_lookup_inexistent
[08:25:48] [PASSED] drm_test_framebuffer_modifiers_not_supported
[08:25:48] ================= [PASSED] drm_framebuffer =================
[08:25:48] ================ drm_gem_shmem (8 subtests) ================
[08:25:48] [PASSED] drm_gem_shmem_test_obj_create
[08:25:48] [PASSED] drm_gem_shmem_test_obj_create_private
[08:25:48] [PASSED] drm_gem_shmem_test_pin_pages
[08:25:48] [PASSED] drm_gem_shmem_test_vmap
[08:25:48] [PASSED] drm_gem_shmem_test_get_sg_table
[08:25:48] [PASSED] drm_gem_shmem_test_get_pages_sgt
[08:25:48] [PASSED] drm_gem_shmem_test_madvise
[08:25:48] [PASSED] drm_gem_shmem_test_purge
[08:25:48] ================== [PASSED] drm_gem_shmem ==================
[08:25:48] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[08:25:48] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[08:25:48] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[08:25:48] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[08:25:48] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[08:25:48] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[08:25:48] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[08:25:48] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420  =======
[08:25:48] [PASSED] Automatic
[08:25:48] [PASSED] Full
[08:25:48] [PASSED] Limited 16:235
[08:25:48] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[08:25:48] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[08:25:48] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[08:25:48] [PASSED] drm_test_check_disable_connector
[08:25:48] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[08:25:48] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[08:25:48] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[08:25:48] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[08:25:48] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[08:25:48] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[08:25:48] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[08:25:48] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[08:25:48] [PASSED] drm_test_check_output_bpc_dvi
[08:25:48] [PASSED] drm_test_check_output_bpc_format_vic_1
[08:25:48] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[08:25:48] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[08:25:48] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[08:25:48] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[08:25:48] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[08:25:48] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[08:25:48] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[08:25:48] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[08:25:48] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[08:25:48] [PASSED] drm_test_check_broadcast_rgb_value
[08:25:48] [PASSED] drm_test_check_bpc_8_value
[08:25:48] [PASSED] drm_test_check_bpc_10_value
[08:25:48] [PASSED] drm_test_check_bpc_12_value
[08:25:48] [PASSED] drm_test_check_format_value
[08:25:48] [PASSED] drm_test_check_tmds_char_value
[08:25:48] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[08:25:48] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[08:25:48] [PASSED] drm_test_check_mode_valid
[08:25:48] [PASSED] drm_test_check_mode_valid_reject
[08:25:48] [PASSED] drm_test_check_mode_valid_reject_rate
[08:25:48] [PASSED] drm_test_check_mode_valid_reject_max_clock
[08:25:48] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[08:25:48] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[08:25:48] [PASSED] drm_test_check_infoframes
[08:25:48] [PASSED] drm_test_check_reject_avi_infoframe
[08:25:48] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[08:25:48] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[08:25:48] [PASSED] drm_test_check_reject_audio_infoframe
[08:25:48] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[08:25:48] ================= drm_managed (2 subtests) =================
[08:25:48] [PASSED] drm_test_managed_release_action
[08:25:48] [PASSED] drm_test_managed_run_action
[08:25:48] =================== [PASSED] drm_managed ===================
[08:25:48] =================== drm_mm (6 subtests) ====================
[08:25:48] [PASSED] drm_test_mm_init
[08:25:48] [PASSED] drm_test_mm_debug
[08:25:48] [PASSED] drm_test_mm_align32
[08:25:48] [PASSED] drm_test_mm_align64
[08:25:48] [PASSED] drm_test_mm_lowest
[08:25:48] [PASSED] drm_test_mm_highest
[08:25:48] ===================== [PASSED] drm_mm ======================
[08:25:48] ============= drm_modes_analog_tv (5 subtests) =============
[08:25:48] [PASSED] drm_test_modes_analog_tv_mono_576i
[08:25:48] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[08:25:48] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[08:25:48] [PASSED] drm_test_modes_analog_tv_pal_576i
[08:25:48] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[08:25:48] =============== [PASSED] drm_modes_analog_tv ===============
[08:25:48] ============== drm_plane_helper (2 subtests) ===============
[08:25:48] =============== drm_test_check_plane_state  ================
[08:25:48] [PASSED] clipping_simple
[08:25:48] [PASSED] clipping_rotate_reflect
[08:25:48] [PASSED] positioning_simple
[08:25:48] [PASSED] upscaling
[08:25:48] [PASSED] downscaling
[08:25:48] [PASSED] rounding1
[08:25:48] [PASSED] rounding2
[08:25:48] [PASSED] rounding3
[08:25:48] [PASSED] rounding4
[08:25:48] =========== [PASSED] drm_test_check_plane_state ============
[08:25:48] =========== drm_test_check_invalid_plane_state  ============
[08:25:48] [PASSED] positioning_invalid
[08:25:48] [PASSED] upscaling_invalid
[08:25:48] [PASSED] downscaling_invalid
[08:25:48] ======= [PASSED] drm_test_check_invalid_plane_state ========
[08:25:48] ================ [PASSED] drm_plane_helper =================
[08:25:48] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[08:25:48] ====== drm_test_connector_helper_tv_get_modes_check  =======
[08:25:48] [PASSED] None
[08:25:48] [PASSED] PAL
[08:25:48] [PASSED] NTSC
[08:25:48] [PASSED] Both, NTSC Default
[08:25:48] [PASSED] Both, PAL Default
[08:25:48] [PASSED] Both, NTSC Default, with PAL on command-line
[08:25:48] [PASSED] Both, PAL Default, with NTSC on command-line
[08:25:48] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[08:25:48] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[08:25:48] ================== drm_rect (9 subtests) ===================
[08:25:48] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[08:25:48] [PASSED] drm_test_rect_clip_scaled_not_clipped
[08:25:48] [PASSED] drm_test_rect_clip_scaled_clipped
[08:25:48] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[08:25:48] ================= drm_test_rect_intersect  =================
[08:25:48] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[08:25:48] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[08:25:48] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[08:25:48] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[08:25:48] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[08:25:48] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[08:25:48] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[08:25:48] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[08:25:48] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[08:25:48] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[08:25:48] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[08:25:48] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[08:25:48] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[08:25:48] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[08:25:48] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
stty: 'standard input': Inappropriate ioctl for device
[08:25:48] ============= [PASSED] drm_test_rect_intersect =============
[08:25:48] ================ drm_test_rect_calc_hscale  ================
[08:25:48] [PASSED] normal use
[08:25:48] [PASSED] out of max range
[08:25:48] [PASSED] out of min range
[08:25:48] [PASSED] zero dst
[08:25:48] [PASSED] negative src
[08:25:48] [PASSED] negative dst
[08:25:48] ============ [PASSED] drm_test_rect_calc_hscale ============
[08:25:48] ================ drm_test_rect_calc_vscale  ================
[08:25:48] [PASSED] normal use
[08:25:48] [PASSED] out of max range
[08:25:48] [PASSED] out of min range
[08:25:48] [PASSED] zero dst
[08:25:48] [PASSED] negative src
[08:25:48] [PASSED] negative dst
[08:25:48] ============ [PASSED] drm_test_rect_calc_vscale ============
[08:25:48] ================== drm_test_rect_rotate  ===================
[08:25:48] [PASSED] reflect-x
[08:25:48] [PASSED] reflect-y
[08:25:48] [PASSED] rotate-0
[08:25:48] [PASSED] rotate-90
[08:25:48] [PASSED] rotate-180
[08:25:48] [PASSED] rotate-270
[08:25:48] ============== [PASSED] drm_test_rect_rotate ===============
[08:25:48] ================ drm_test_rect_rotate_inv  =================
[08:25:48] [PASSED] reflect-x
[08:25:48] [PASSED] reflect-y
[08:25:48] [PASSED] rotate-0
[08:25:48] [PASSED] rotate-90
[08:25:48] [PASSED] rotate-180
[08:25:48] [PASSED] rotate-270
[08:25:48] ============ [PASSED] drm_test_rect_rotate_inv =============
[08:25:48] ==================== [PASSED] drm_rect =====================
[08:25:48] ============ drm_sysfb_modeset_test (1 subtest) ============
[08:25:48] ============ drm_test_sysfb_build_fourcc_list  =============
[08:25:48] [PASSED] no native formats
[08:25:48] [PASSED] XRGB8888 as native format
[08:25:48] [PASSED] remove duplicates
[08:25:48] [PASSED] convert alpha formats
[08:25:48] [PASSED] random formats
[08:25:48] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[08:25:48] ============= [PASSED] drm_sysfb_modeset_test ==============
[08:25:48] ================== drm_fixp (2 subtests) ===================
[08:25:48] [PASSED] drm_test_int2fixp
[08:25:48] [PASSED] drm_test_sm2fixp
[08:25:48] ==================== [PASSED] drm_fixp =====================
[08:25:48] ============================================================
[08:25:48] Testing complete. Ran 630 tests: passed: 630
[08:25:48] Elapsed time: 32.354s total, 1.641s configuring, 30.246s building, 0.452s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[08:25:48] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[08:25:50] 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=25
[08:25:59] Starting KUnit Kernel (1/1)...
[08:25:59] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[08:26:00] ================= ttm_device (5 subtests) ==================
[08:26:00] [PASSED] ttm_device_init_basic
[08:26:00] [PASSED] ttm_device_init_multiple
[08:26:00] [PASSED] ttm_device_fini_basic
[08:26:00] [PASSED] ttm_device_init_no_vma_man
[08:26:00] ================== ttm_device_init_pools  ==================
[08:26:00] [PASSED] No DMA allocations, no DMA32 required
[08:26:00] [PASSED] DMA allocations, DMA32 required
[08:26:00] [PASSED] No DMA allocations, DMA32 required
[08:26:00] [PASSED] DMA allocations, no DMA32 required
[08:26:00] ============== [PASSED] ttm_device_init_pools ==============
[08:26:00] =================== [PASSED] ttm_device ====================
[08:26:00] ================== ttm_pool (8 subtests) ===================
[08:26:00] ================== ttm_pool_alloc_basic  ===================
[08:26:00] [PASSED] One page
[08:26:00] [PASSED] More than one page
[08:26:00] [PASSED] Above the allocation limit
[08:26:00] [PASSED] One page, with coherent DMA mappings enabled
[08:26:00] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[08:26:00] ============== [PASSED] ttm_pool_alloc_basic ===============
[08:26:00] ============== ttm_pool_alloc_basic_dma_addr  ==============
[08:26:00] [PASSED] One page
[08:26:00] [PASSED] More than one page
[08:26:00] [PASSED] Above the allocation limit
[08:26:00] [PASSED] One page, with coherent DMA mappings enabled
[08:26:00] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[08:26:00] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[08:26:00] [PASSED] ttm_pool_alloc_order_caching_match
[08:26:00] [PASSED] ttm_pool_alloc_caching_mismatch
[08:26:00] [PASSED] ttm_pool_alloc_order_mismatch
[08:26:00] [PASSED] ttm_pool_free_dma_alloc
[08:26:00] [PASSED] ttm_pool_free_no_dma_alloc
[08:26:00] [PASSED] ttm_pool_fini_basic
[08:26:00] ==================== [PASSED] ttm_pool =====================
[08:26:00] ================ ttm_resource (8 subtests) =================
[08:26:00] ================= ttm_resource_init_basic  =================
[08:26:00] [PASSED] Init resource in TTM_PL_SYSTEM
[08:26:00] [PASSED] Init resource in TTM_PL_VRAM
[08:26:00] [PASSED] Init resource in a private placement
[08:26:00] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[08:26:00] ============= [PASSED] ttm_resource_init_basic =============
[08:26:00] [PASSED] ttm_resource_init_pinned
[08:26:00] [PASSED] ttm_resource_fini_basic
[08:26:00] [PASSED] ttm_resource_manager_init_basic
[08:26:00] [PASSED] ttm_resource_manager_usage_basic
[08:26:00] [PASSED] ttm_resource_manager_set_used_basic
[08:26:00] [PASSED] ttm_sys_man_alloc_basic
[08:26:00] [PASSED] ttm_sys_man_free_basic
[08:26:00] ================== [PASSED] ttm_resource ===================
[08:26:00] =================== ttm_tt (15 subtests) ===================
[08:26:00] ==================== ttm_tt_init_basic  ====================
[08:26:00] [PASSED] Page-aligned size
[08:26:00] [PASSED] Extra pages requested
[08:26:00] ================ [PASSED] ttm_tt_init_basic ================
[08:26:00] [PASSED] ttm_tt_init_misaligned
[08:26:00] [PASSED] ttm_tt_fini_basic
[08:26:00] [PASSED] ttm_tt_fini_sg
[08:26:00] [PASSED] ttm_tt_fini_shmem
[08:26:00] [PASSED] ttm_tt_create_basic
[08:26:00] [PASSED] ttm_tt_create_invalid_bo_type
[08:26:00] [PASSED] ttm_tt_create_ttm_exists
[08:26:00] [PASSED] ttm_tt_create_failed
[08:26:00] [PASSED] ttm_tt_destroy_basic
[08:26:00] [PASSED] ttm_tt_populate_null_ttm
[08:26:00] [PASSED] ttm_tt_populate_populated_ttm
[08:26:00] [PASSED] ttm_tt_unpopulate_basic
[08:26:00] [PASSED] ttm_tt_unpopulate_empty_ttm
[08:26:00] [PASSED] ttm_tt_swapin_basic
[08:26:00] ===================== [PASSED] ttm_tt ======================
[08:26:00] =================== ttm_bo (14 subtests) ===================
[08:26:00] =========== ttm_bo_reserve_optimistic_no_ticket  ===========
[08:26:00] [PASSED] Cannot be interrupted and sleeps
[08:26:00] [PASSED] Cannot be interrupted, locks straight away
[08:26:00] [PASSED] Can be interrupted, sleeps
[08:26:00] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[08:26:00] [PASSED] ttm_bo_reserve_locked_no_sleep
[08:26:00] [PASSED] ttm_bo_reserve_no_wait_ticket
[08:26:00] [PASSED] ttm_bo_reserve_double_resv
[08:26:00] [PASSED] ttm_bo_reserve_interrupted
[08:26:00] [PASSED] ttm_bo_reserve_deadlock
[08:26:00] [PASSED] ttm_bo_unreserve_basic
[08:26:00] [PASSED] ttm_bo_unreserve_pinned
[08:26:00] [PASSED] ttm_bo_unreserve_bulk
[08:26:00] [PASSED] ttm_bo_fini_basic
[08:26:00] [PASSED] ttm_bo_fini_shared_resv
[08:26:00] [PASSED] ttm_bo_pin_basic
[08:26:00] [PASSED] ttm_bo_pin_unpin_resource
[08:26:00] [PASSED] ttm_bo_multiple_pin_one_unpin
[08:26:00] ===================== [PASSED] ttm_bo ======================
[08:26:00] ============== ttm_bo_validate (21 subtests) ===============
[08:26:00] ============== ttm_bo_init_reserved_sys_man  ===============
[08:26:00] [PASSED] Buffer object for userspace
[08:26:00] [PASSED] Kernel buffer object
[08:26:00] [PASSED] Shared buffer object
[08:26:00] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[08:26:00] ============== ttm_bo_init_reserved_mock_man  ==============
[08:26:00] [PASSED] Buffer object for userspace
[08:26:00] [PASSED] Kernel buffer object
[08:26:00] [PASSED] Shared buffer object
[08:26:00] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[08:26:00] [PASSED] ttm_bo_init_reserved_resv
[08:26:00] ================== ttm_bo_validate_basic  ==================
[08:26:00] [PASSED] Buffer object for userspace
[08:26:00] [PASSED] Kernel buffer object
[08:26:00] [PASSED] Shared buffer object
[08:26:00] ============== [PASSED] ttm_bo_validate_basic ==============
[08:26:00] [PASSED] ttm_bo_validate_invalid_placement
[08:26:00] ============= ttm_bo_validate_same_placement  ==============
[08:26:00] [PASSED] System manager
[08:26:00] [PASSED] VRAM manager
[08:26:00] ========= [PASSED] ttm_bo_validate_same_placement ==========
[08:26:00] [PASSED] ttm_bo_validate_failed_alloc
[08:26:00] [PASSED] ttm_bo_validate_pinned
[08:26:00] [PASSED] ttm_bo_validate_busy_placement
[08:26:00] ================ ttm_bo_validate_multihop  =================
[08:26:00] [PASSED] Buffer object for userspace
[08:26:00] [PASSED] Kernel buffer object
[08:26:00] [PASSED] Shared buffer object
[08:26:00] ============ [PASSED] ttm_bo_validate_multihop =============
[08:26:00] ========== ttm_bo_validate_no_placement_signaled  ==========
[08:26:00] [PASSED] Buffer object in system domain, no page vector
[08:26:00] [PASSED] Buffer object in system domain with an existing page vector
[08:26:00] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[08:26:00] ======== ttm_bo_validate_no_placement_not_signaled  ========
[08:26:00] [PASSED] Buffer object for userspace
[08:26:00] [PASSED] Kernel buffer object
[08:26:00] [PASSED] Shared buffer object
[08:26:00] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[08:26:00] [PASSED] ttm_bo_validate_move_fence_signaled
[08:26:00] ========= ttm_bo_validate_move_fence_not_signaled  =========
[08:26:00] [PASSED] Waits for GPU
[08:26:00] [PASSED] Tries to lock straight away
[08:26:00] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[08:26:00] [PASSED] ttm_bo_validate_happy_evict
[08:26:00] [PASSED] ttm_bo_validate_all_pinned_evict
[08:26:00] [PASSED] ttm_bo_validate_allowed_only_evict
[08:26:00] [PASSED] ttm_bo_validate_deleted_evict
[08:26:00] [PASSED] ttm_bo_validate_busy_domain_evict
[08:26:00] [PASSED] ttm_bo_validate_evict_gutting
[08:26:00] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[08:26:00] ================= [PASSED] ttm_bo_validate =================
[08:26:00] ============================================================
[08:26:00] Testing complete. Ran 101 tests: passed: 101
[08:26:00] Elapsed time: 11.301s total, 1.631s configuring, 9.404s building, 0.233s running

+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel



^ permalink raw reply	[flat|nested] 10+ messages in thread

* ✓ CI.KUnit: success for drm/xe/ptl: Disable DCC on PTL (rev5)
  2026-01-24  0:59 [PATCH v4] drm/xe/ptl: Disable DCC on PTL Vinay Belgaumkar
                   ` (3 preceding siblings ...)
  2026-01-26  8:26 ` Patchwork
@ 2026-01-26  9:11 ` Patchwork
  2026-01-26  9:54 ` ✓ Xe.CI.BAT: " Patchwork
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-01-26  9:11 UTC (permalink / raw)
  To: Vinay Belgaumkar; +Cc: intel-xe

== Series Details ==

Series: drm/xe/ptl: Disable DCC on PTL (rev5)
URL   : https://patchwork.freedesktop.org/series/160388/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[09:09:35] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[09:09:39] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=25
[09:10:19] Starting KUnit Kernel (1/1)...
[09:10:19] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[09:10:19] ================== guc_buf (11 subtests) ===================
[09:10:19] [PASSED] test_smallest
[09:10:19] [PASSED] test_largest
[09:10:19] [PASSED] test_granular
[09:10:19] [PASSED] test_unique
[09:10:19] [PASSED] test_overlap
[09:10:19] [PASSED] test_reusable
[09:10:19] [PASSED] test_too_big
[09:10:19] [PASSED] test_flush
[09:10:19] [PASSED] test_lookup
[09:10:19] [PASSED] test_data
[09:10:19] [PASSED] test_class
[09:10:19] ===================== [PASSED] guc_buf =====================
[09:10:19] =================== guc_dbm (7 subtests) ===================
[09:10:19] [PASSED] test_empty
[09:10:19] [PASSED] test_default
[09:10:19] ======================== test_size  ========================
[09:10:19] [PASSED] 4
[09:10:19] [PASSED] 8
[09:10:19] [PASSED] 32
[09:10:19] [PASSED] 256
[09:10:19] ==================== [PASSED] test_size ====================
[09:10:19] ======================= test_reuse  ========================
[09:10:19] [PASSED] 4
[09:10:19] [PASSED] 8
[09:10:19] [PASSED] 32
[09:10:19] [PASSED] 256
[09:10:19] =================== [PASSED] test_reuse ====================
[09:10:19] =================== test_range_overlap  ====================
[09:10:19] [PASSED] 4
[09:10:19] [PASSED] 8
[09:10:19] [PASSED] 32
[09:10:19] [PASSED] 256
[09:10:19] =============== [PASSED] test_range_overlap ================
[09:10:19] =================== test_range_compact  ====================
[09:10:19] [PASSED] 4
[09:10:19] [PASSED] 8
[09:10:19] [PASSED] 32
[09:10:19] [PASSED] 256
[09:10:19] =============== [PASSED] test_range_compact ================
[09:10:19] ==================== test_range_spare  =====================
[09:10:19] [PASSED] 4
[09:10:19] [PASSED] 8
[09:10:19] [PASSED] 32
[09:10:19] [PASSED] 256
[09:10:19] ================ [PASSED] test_range_spare =================
[09:10:19] ===================== [PASSED] guc_dbm =====================
[09:10:19] =================== guc_idm (6 subtests) ===================
[09:10:19] [PASSED] bad_init
[09:10:19] [PASSED] no_init
[09:10:19] [PASSED] init_fini
[09:10:19] [PASSED] check_used
[09:10:19] [PASSED] check_quota
[09:10:19] [PASSED] check_all
[09:10:19] ===================== [PASSED] guc_idm =====================
[09:10:19] ================== no_relay (3 subtests) ===================
[09:10:19] [PASSED] xe_drops_guc2pf_if_not_ready
[09:10:19] [PASSED] xe_drops_guc2vf_if_not_ready
[09:10:19] [PASSED] xe_rejects_send_if_not_ready
[09:10:19] ==================== [PASSED] no_relay =====================
[09:10:19] ================== pf_relay (14 subtests) ==================
[09:10:19] [PASSED] pf_rejects_guc2pf_too_short
[09:10:19] [PASSED] pf_rejects_guc2pf_too_long
[09:10:19] [PASSED] pf_rejects_guc2pf_no_payload
[09:10:19] [PASSED] pf_fails_no_payload
[09:10:19] [PASSED] pf_fails_bad_origin
[09:10:19] [PASSED] pf_fails_bad_type
[09:10:19] [PASSED] pf_txn_reports_error
[09:10:19] [PASSED] pf_txn_sends_pf2guc
[09:10:19] [PASSED] pf_sends_pf2guc
[09:10:19] [SKIPPED] pf_loopback_nop
[09:10:19] [SKIPPED] pf_loopback_echo
[09:10:19] [SKIPPED] pf_loopback_fail
[09:10:19] [SKIPPED] pf_loopback_busy
[09:10:19] [SKIPPED] pf_loopback_retry
[09:10:19] ==================== [PASSED] pf_relay =====================
[09:10:19] ================== vf_relay (3 subtests) ===================
[09:10:19] [PASSED] vf_rejects_guc2vf_too_short
[09:10:19] [PASSED] vf_rejects_guc2vf_too_long
[09:10:19] [PASSED] vf_rejects_guc2vf_no_payload
[09:10:19] ==================== [PASSED] vf_relay =====================
[09:10:19] ================ pf_gt_config (6 subtests) =================
[09:10:19] [PASSED] fair_contexts_1vf
[09:10:19] [PASSED] fair_doorbells_1vf
[09:10:19] [PASSED] fair_ggtt_1vf
[09:10:19] ====================== fair_contexts  ======================
[09:10:19] [PASSED] 1 VF
[09:10:19] [PASSED] 2 VFs
[09:10:19] [PASSED] 3 VFs
[09:10:19] [PASSED] 4 VFs
[09:10:19] [PASSED] 5 VFs
[09:10:19] [PASSED] 6 VFs
[09:10:19] [PASSED] 7 VFs
[09:10:19] [PASSED] 8 VFs
[09:10:19] [PASSED] 9 VFs
[09:10:19] [PASSED] 10 VFs
[09:10:19] [PASSED] 11 VFs
[09:10:19] [PASSED] 12 VFs
[09:10:19] [PASSED] 13 VFs
[09:10:19] [PASSED] 14 VFs
[09:10:19] [PASSED] 15 VFs
[09:10:19] [PASSED] 16 VFs
[09:10:19] [PASSED] 17 VFs
[09:10:19] [PASSED] 18 VFs
[09:10:19] [PASSED] 19 VFs
[09:10:19] [PASSED] 20 VFs
[09:10:19] [PASSED] 21 VFs
[09:10:19] [PASSED] 22 VFs
[09:10:19] [PASSED] 23 VFs
[09:10:19] [PASSED] 24 VFs
[09:10:19] [PASSED] 25 VFs
[09:10:19] [PASSED] 26 VFs
[09:10:19] [PASSED] 27 VFs
[09:10:19] [PASSED] 28 VFs
[09:10:19] [PASSED] 29 VFs
[09:10:19] [PASSED] 30 VFs
[09:10:19] [PASSED] 31 VFs
[09:10:19] [PASSED] 32 VFs
[09:10:19] [PASSED] 33 VFs
[09:10:19] [PASSED] 34 VFs
[09:10:19] [PASSED] 35 VFs
[09:10:19] [PASSED] 36 VFs
[09:10:19] [PASSED] 37 VFs
[09:10:19] [PASSED] 38 VFs
[09:10:19] [PASSED] 39 VFs
[09:10:19] [PASSED] 40 VFs
[09:10:19] [PASSED] 41 VFs
[09:10:19] [PASSED] 42 VFs
[09:10:19] [PASSED] 43 VFs
[09:10:19] [PASSED] 44 VFs
[09:10:19] [PASSED] 45 VFs
[09:10:19] [PASSED] 46 VFs
[09:10:19] [PASSED] 47 VFs
[09:10:19] [PASSED] 48 VFs
[09:10:19] [PASSED] 49 VFs
[09:10:19] [PASSED] 50 VFs
[09:10:19] [PASSED] 51 VFs
[09:10:19] [PASSED] 52 VFs
[09:10:19] [PASSED] 53 VFs
[09:10:19] [PASSED] 54 VFs
[09:10:19] [PASSED] 55 VFs
[09:10:19] [PASSED] 56 VFs
[09:10:19] [PASSED] 57 VFs
[09:10:19] [PASSED] 58 VFs
[09:10:19] [PASSED] 59 VFs
[09:10:19] [PASSED] 60 VFs
[09:10:19] [PASSED] 61 VFs
[09:10:19] [PASSED] 62 VFs
[09:10:19] [PASSED] 63 VFs
[09:10:19] ================== [PASSED] fair_contexts ==================
[09:10:19] ===================== fair_doorbells  ======================
[09:10:19] [PASSED] 1 VF
[09:10:19] [PASSED] 2 VFs
[09:10:19] [PASSED] 3 VFs
[09:10:19] [PASSED] 4 VFs
[09:10:19] [PASSED] 5 VFs
[09:10:19] [PASSED] 6 VFs
[09:10:19] [PASSED] 7 VFs
[09:10:19] [PASSED] 8 VFs
[09:10:19] [PASSED] 9 VFs
[09:10:19] [PASSED] 10 VFs
[09:10:19] [PASSED] 11 VFs
[09:10:19] [PASSED] 12 VFs
[09:10:19] [PASSED] 13 VFs
[09:10:19] [PASSED] 14 VFs
[09:10:19] [PASSED] 15 VFs
[09:10:19] [PASSED] 16 VFs
[09:10:19] [PASSED] 17 VFs
[09:10:19] [PASSED] 18 VFs
[09:10:19] [PASSED] 19 VFs
[09:10:19] [PASSED] 20 VFs
[09:10:19] [PASSED] 21 VFs
[09:10:19] [PASSED] 22 VFs
[09:10:19] [PASSED] 23 VFs
[09:10:19] [PASSED] 24 VFs
[09:10:19] [PASSED] 25 VFs
[09:10:19] [PASSED] 26 VFs
[09:10:19] [PASSED] 27 VFs
[09:10:19] [PASSED] 28 VFs
[09:10:19] [PASSED] 29 VFs
[09:10:19] [PASSED] 30 VFs
[09:10:19] [PASSED] 31 VFs
[09:10:19] [PASSED] 32 VFs
[09:10:19] [PASSED] 33 VFs
[09:10:19] [PASSED] 34 VFs
[09:10:19] [PASSED] 35 VFs
[09:10:19] [PASSED] 36 VFs
[09:10:19] [PASSED] 37 VFs
[09:10:19] [PASSED] 38 VFs
[09:10:19] [PASSED] 39 VFs
[09:10:19] [PASSED] 40 VFs
[09:10:19] [PASSED] 41 VFs
[09:10:19] [PASSED] 42 VFs
[09:10:19] [PASSED] 43 VFs
[09:10:19] [PASSED] 44 VFs
[09:10:19] [PASSED] 45 VFs
[09:10:19] [PASSED] 46 VFs
[09:10:19] [PASSED] 47 VFs
[09:10:19] [PASSED] 48 VFs
[09:10:19] [PASSED] 49 VFs
[09:10:19] [PASSED] 50 VFs
[09:10:19] [PASSED] 51 VFs
[09:10:19] [PASSED] 52 VFs
[09:10:19] [PASSED] 53 VFs
[09:10:19] [PASSED] 54 VFs
[09:10:19] [PASSED] 55 VFs
[09:10:19] [PASSED] 56 VFs
[09:10:19] [PASSED] 57 VFs
[09:10:19] [PASSED] 58 VFs
[09:10:19] [PASSED] 59 VFs
[09:10:19] [PASSED] 60 VFs
[09:10:19] [PASSED] 61 VFs
[09:10:19] [PASSED] 62 VFs
[09:10:19] [PASSED] 63 VFs
[09:10:19] ================= [PASSED] fair_doorbells ==================
[09:10:19] ======================== fair_ggtt  ========================
[09:10:19] [PASSED] 1 VF
[09:10:19] [PASSED] 2 VFs
[09:10:19] [PASSED] 3 VFs
[09:10:19] [PASSED] 4 VFs
[09:10:19] [PASSED] 5 VFs
[09:10:19] [PASSED] 6 VFs
[09:10:19] [PASSED] 7 VFs
[09:10:19] [PASSED] 8 VFs
[09:10:19] [PASSED] 9 VFs
[09:10:19] [PASSED] 10 VFs
[09:10:19] [PASSED] 11 VFs
[09:10:19] [PASSED] 12 VFs
[09:10:19] [PASSED] 13 VFs
[09:10:19] [PASSED] 14 VFs
[09:10:19] [PASSED] 15 VFs
[09:10:19] [PASSED] 16 VFs
[09:10:19] [PASSED] 17 VFs
[09:10:19] [PASSED] 18 VFs
[09:10:19] [PASSED] 19 VFs
[09:10:19] [PASSED] 20 VFs
[09:10:19] [PASSED] 21 VFs
[09:10:19] [PASSED] 22 VFs
[09:10:19] [PASSED] 23 VFs
[09:10:19] [PASSED] 24 VFs
[09:10:19] [PASSED] 25 VFs
[09:10:19] [PASSED] 26 VFs
[09:10:19] [PASSED] 27 VFs
[09:10:19] [PASSED] 28 VFs
[09:10:19] [PASSED] 29 VFs
[09:10:19] [PASSED] 30 VFs
[09:10:19] [PASSED] 31 VFs
[09:10:19] [PASSED] 32 VFs
[09:10:19] [PASSED] 33 VFs
[09:10:19] [PASSED] 34 VFs
[09:10:19] [PASSED] 35 VFs
[09:10:19] [PASSED] 36 VFs
[09:10:19] [PASSED] 37 VFs
[09:10:19] [PASSED] 38 VFs
[09:10:19] [PASSED] 39 VFs
[09:10:19] [PASSED] 40 VFs
[09:10:19] [PASSED] 41 VFs
[09:10:19] [PASSED] 42 VFs
[09:10:19] [PASSED] 43 VFs
[09:10:19] [PASSED] 44 VFs
[09:10:19] [PASSED] 45 VFs
[09:10:19] [PASSED] 46 VFs
[09:10:19] [PASSED] 47 VFs
[09:10:19] [PASSED] 48 VFs
[09:10:19] [PASSED] 49 VFs
[09:10:19] [PASSED] 50 VFs
[09:10:19] [PASSED] 51 VFs
[09:10:19] [PASSED] 52 VFs
[09:10:19] [PASSED] 53 VFs
[09:10:19] [PASSED] 54 VFs
[09:10:19] [PASSED] 55 VFs
[09:10:19] [PASSED] 56 VFs
[09:10:19] [PASSED] 57 VFs
[09:10:19] [PASSED] 58 VFs
[09:10:19] [PASSED] 59 VFs
[09:10:19] [PASSED] 60 VFs
[09:10:19] [PASSED] 61 VFs
[09:10:19] [PASSED] 62 VFs
[09:10:19] [PASSED] 63 VFs
[09:10:19] ==================== [PASSED] fair_ggtt ====================
[09:10:19] ================== [PASSED] pf_gt_config ===================
[09:10:19] ===================== lmtt (1 subtest) =====================
[09:10:19] ======================== test_ops  =========================
[09:10:19] [PASSED] 2-level
[09:10:19] [PASSED] multi-level
[09:10:19] ==================== [PASSED] test_ops =====================
[09:10:19] ====================== [PASSED] lmtt =======================
[09:10:19] ================= pf_service (11 subtests) =================
[09:10:19] [PASSED] pf_negotiate_any
[09:10:19] [PASSED] pf_negotiate_base_match
[09:10:19] [PASSED] pf_negotiate_base_newer
[09:10:19] [PASSED] pf_negotiate_base_next
[09:10:19] [SKIPPED] pf_negotiate_base_older
[09:10:19] [PASSED] pf_negotiate_base_prev
[09:10:19] [PASSED] pf_negotiate_latest_match
[09:10:19] [PASSED] pf_negotiate_latest_newer
[09:10:19] [PASSED] pf_negotiate_latest_next
[09:10:19] [SKIPPED] pf_negotiate_latest_older
[09:10:19] [SKIPPED] pf_negotiate_latest_prev
[09:10:19] =================== [PASSED] pf_service ====================
[09:10:19] ================= xe_guc_g2g (2 subtests) ==================
[09:10:19] ============== xe_live_guc_g2g_kunit_default  ==============
[09:10:19] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[09:10:19] ============== xe_live_guc_g2g_kunit_allmem  ===============
[09:10:19] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[09:10:19] =================== [SKIPPED] xe_guc_g2g ===================
[09:10:19] =================== xe_mocs (2 subtests) ===================
[09:10:19] ================ xe_live_mocs_kernel_kunit  ================
[09:10:19] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[09:10:19] ================ xe_live_mocs_reset_kunit  =================
[09:10:19] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[09:10:19] ==================== [SKIPPED] xe_mocs =====================
[09:10:19] ================= xe_migrate (2 subtests) ==================
[09:10:19] ================= xe_migrate_sanity_kunit  =================
[09:10:19] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[09:10:19] ================== xe_validate_ccs_kunit  ==================
[09:10:19] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[09:10:19] =================== [SKIPPED] xe_migrate ===================
[09:10:19] ================== xe_dma_buf (1 subtest) ==================
[09:10:19] ==================== xe_dma_buf_kunit  =====================
[09:10:19] ================ [SKIPPED] xe_dma_buf_kunit ================
[09:10:19] =================== [SKIPPED] xe_dma_buf ===================
[09:10:19] ================= xe_bo_shrink (1 subtest) =================
[09:10:19] =================== xe_bo_shrink_kunit  ====================
[09:10:19] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[09:10:19] ================== [SKIPPED] xe_bo_shrink ==================
[09:10:19] ==================== xe_bo (2 subtests) ====================
[09:10:19] ================== xe_ccs_migrate_kunit  ===================
[09:10:19] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[09:10:19] ==================== xe_bo_evict_kunit  ====================
[09:10:19] =============== [SKIPPED] xe_bo_evict_kunit ================
[09:10:19] ===================== [SKIPPED] xe_bo ======================
[09:10:19] ==================== args (13 subtests) ====================
[09:10:19] [PASSED] count_args_test
[09:10:19] [PASSED] call_args_example
[09:10:19] [PASSED] call_args_test
[09:10:19] [PASSED] drop_first_arg_example
[09:10:19] [PASSED] drop_first_arg_test
[09:10:19] [PASSED] first_arg_example
[09:10:19] [PASSED] first_arg_test
[09:10:19] [PASSED] last_arg_example
[09:10:19] [PASSED] last_arg_test
[09:10:19] [PASSED] pick_arg_example
[09:10:19] [PASSED] if_args_example
[09:10:19] [PASSED] if_args_test
[09:10:19] [PASSED] sep_comma_example
[09:10:19] ====================== [PASSED] args =======================
[09:10:19] =================== xe_pci (3 subtests) ====================
[09:10:19] ==================== check_graphics_ip  ====================
[09:10:19] [PASSED] 12.00 Xe_LP
[09:10:19] [PASSED] 12.10 Xe_LP+
[09:10:19] [PASSED] 12.55 Xe_HPG
[09:10:19] [PASSED] 12.60 Xe_HPC
[09:10:19] [PASSED] 12.70 Xe_LPG
[09:10:19] [PASSED] 12.71 Xe_LPG
[09:10:19] [PASSED] 12.74 Xe_LPG+
[09:10:19] [PASSED] 20.01 Xe2_HPG
[09:10:19] [PASSED] 20.02 Xe2_HPG
[09:10:19] [PASSED] 20.04 Xe2_LPG
[09:10:19] [PASSED] 30.00 Xe3_LPG
[09:10:19] [PASSED] 30.01 Xe3_LPG
[09:10:19] [PASSED] 30.03 Xe3_LPG
[09:10:19] [PASSED] 30.04 Xe3_LPG
[09:10:19] [PASSED] 30.05 Xe3_LPG
[09:10:19] [PASSED] 35.11 Xe3p_XPC
[09:10:19] ================ [PASSED] check_graphics_ip ================
[09:10:19] ===================== check_media_ip  ======================
[09:10:19] [PASSED] 12.00 Xe_M
[09:10:19] [PASSED] 12.55 Xe_HPM
[09:10:19] [PASSED] 13.00 Xe_LPM+
[09:10:19] [PASSED] 13.01 Xe2_HPM
[09:10:19] [PASSED] 20.00 Xe2_LPM
[09:10:19] [PASSED] 30.00 Xe3_LPM
[09:10:19] [PASSED] 30.02 Xe3_LPM
[09:10:19] [PASSED] 35.00 Xe3p_LPM
[09:10:19] [PASSED] 35.03 Xe3p_HPM
[09:10:19] ================= [PASSED] check_media_ip ==================
[09:10:19] =================== check_platform_desc  ===================
[09:10:19] [PASSED] 0x9A60 (TIGERLAKE)
[09:10:19] [PASSED] 0x9A68 (TIGERLAKE)
[09:10:19] [PASSED] 0x9A70 (TIGERLAKE)
[09:10:19] [PASSED] 0x9A40 (TIGERLAKE)
[09:10:19] [PASSED] 0x9A49 (TIGERLAKE)
[09:10:19] [PASSED] 0x9A59 (TIGERLAKE)
[09:10:19] [PASSED] 0x9A78 (TIGERLAKE)
[09:10:19] [PASSED] 0x9AC0 (TIGERLAKE)
[09:10:19] [PASSED] 0x9AC9 (TIGERLAKE)
[09:10:19] [PASSED] 0x9AD9 (TIGERLAKE)
[09:10:19] [PASSED] 0x9AF8 (TIGERLAKE)
[09:10:19] [PASSED] 0x4C80 (ROCKETLAKE)
[09:10:19] [PASSED] 0x4C8A (ROCKETLAKE)
[09:10:19] [PASSED] 0x4C8B (ROCKETLAKE)
[09:10:19] [PASSED] 0x4C8C (ROCKETLAKE)
[09:10:19] [PASSED] 0x4C90 (ROCKETLAKE)
[09:10:19] [PASSED] 0x4C9A (ROCKETLAKE)
[09:10:19] [PASSED] 0x4680 (ALDERLAKE_S)
[09:10:19] [PASSED] 0x4682 (ALDERLAKE_S)
[09:10:19] [PASSED] 0x4688 (ALDERLAKE_S)
[09:10:19] [PASSED] 0x468A (ALDERLAKE_S)
[09:10:19] [PASSED] 0x468B (ALDERLAKE_S)
[09:10:19] [PASSED] 0x4690 (ALDERLAKE_S)
[09:10:19] [PASSED] 0x4692 (ALDERLAKE_S)
[09:10:19] [PASSED] 0x4693 (ALDERLAKE_S)
[09:10:19] [PASSED] 0x46A0 (ALDERLAKE_P)
[09:10:19] [PASSED] 0x46A1 (ALDERLAKE_P)
[09:10:19] [PASSED] 0x46A2 (ALDERLAKE_P)
[09:10:19] [PASSED] 0x46A3 (ALDERLAKE_P)
[09:10:19] [PASSED] 0x46A6 (ALDERLAKE_P)
[09:10:19] [PASSED] 0x46A8 (ALDERLAKE_P)
[09:10:19] [PASSED] 0x46AA (ALDERLAKE_P)
[09:10:19] [PASSED] 0x462A (ALDERLAKE_P)
[09:10:19] [PASSED] 0x4626 (ALDERLAKE_P)
[09:10:19] [PASSED] 0x4628 (ALDERLAKE_P)
stty: 'standard input': Inappropriate ioctl for device
[09:10:19] [PASSED] 0x46B0 (ALDERLAKE_P)
[09:10:19] [PASSED] 0x46B1 (ALDERLAKE_P)
[09:10:19] [PASSED] 0x46B2 (ALDERLAKE_P)
[09:10:19] [PASSED] 0x46B3 (ALDERLAKE_P)
[09:10:19] [PASSED] 0x46C0 (ALDERLAKE_P)
[09:10:19] [PASSED] 0x46C1 (ALDERLAKE_P)
[09:10:19] [PASSED] 0x46C2 (ALDERLAKE_P)
[09:10:19] [PASSED] 0x46C3 (ALDERLAKE_P)
[09:10:19] [PASSED] 0x46D0 (ALDERLAKE_N)
[09:10:19] [PASSED] 0x46D1 (ALDERLAKE_N)
[09:10:19] [PASSED] 0x46D2 (ALDERLAKE_N)
[09:10:19] [PASSED] 0x46D3 (ALDERLAKE_N)
[09:10:19] [PASSED] 0x46D4 (ALDERLAKE_N)
[09:10:19] [PASSED] 0xA721 (ALDERLAKE_P)
[09:10:19] [PASSED] 0xA7A1 (ALDERLAKE_P)
[09:10:19] [PASSED] 0xA7A9 (ALDERLAKE_P)
[09:10:19] [PASSED] 0xA7AC (ALDERLAKE_P)
[09:10:19] [PASSED] 0xA7AD (ALDERLAKE_P)
[09:10:19] [PASSED] 0xA720 (ALDERLAKE_P)
[09:10:19] [PASSED] 0xA7A0 (ALDERLAKE_P)
[09:10:19] [PASSED] 0xA7A8 (ALDERLAKE_P)
[09:10:19] [PASSED] 0xA7AA (ALDERLAKE_P)
[09:10:19] [PASSED] 0xA7AB (ALDERLAKE_P)
[09:10:19] [PASSED] 0xA780 (ALDERLAKE_S)
[09:10:19] [PASSED] 0xA781 (ALDERLAKE_S)
[09:10:19] [PASSED] 0xA782 (ALDERLAKE_S)
[09:10:19] [PASSED] 0xA783 (ALDERLAKE_S)
[09:10:19] [PASSED] 0xA788 (ALDERLAKE_S)
[09:10:19] [PASSED] 0xA789 (ALDERLAKE_S)
[09:10:19] [PASSED] 0xA78A (ALDERLAKE_S)
[09:10:19] [PASSED] 0xA78B (ALDERLAKE_S)
[09:10:19] [PASSED] 0x4905 (DG1)
[09:10:19] [PASSED] 0x4906 (DG1)
[09:10:19] [PASSED] 0x4907 (DG1)
[09:10:19] [PASSED] 0x4908 (DG1)
[09:10:19] [PASSED] 0x4909 (DG1)
[09:10:19] [PASSED] 0x56C0 (DG2)
[09:10:19] [PASSED] 0x56C2 (DG2)
[09:10:19] [PASSED] 0x56C1 (DG2)
[09:10:19] [PASSED] 0x7D51 (METEORLAKE)
[09:10:19] [PASSED] 0x7DD1 (METEORLAKE)
[09:10:19] [PASSED] 0x7D41 (METEORLAKE)
[09:10:19] [PASSED] 0x7D67 (METEORLAKE)
[09:10:19] [PASSED] 0xB640 (METEORLAKE)
[09:10:19] [PASSED] 0x56A0 (DG2)
[09:10:19] [PASSED] 0x56A1 (DG2)
[09:10:19] [PASSED] 0x56A2 (DG2)
[09:10:19] [PASSED] 0x56BE (DG2)
[09:10:19] [PASSED] 0x56BF (DG2)
[09:10:19] [PASSED] 0x5690 (DG2)
[09:10:19] [PASSED] 0x5691 (DG2)
[09:10:19] [PASSED] 0x5692 (DG2)
[09:10:19] [PASSED] 0x56A5 (DG2)
[09:10:19] [PASSED] 0x56A6 (DG2)
[09:10:19] [PASSED] 0x56B0 (DG2)
[09:10:19] [PASSED] 0x56B1 (DG2)
[09:10:19] [PASSED] 0x56BA (DG2)
[09:10:19] [PASSED] 0x56BB (DG2)
[09:10:19] [PASSED] 0x56BC (DG2)
[09:10:19] [PASSED] 0x56BD (DG2)
[09:10:19] [PASSED] 0x5693 (DG2)
[09:10:19] [PASSED] 0x5694 (DG2)
[09:10:19] [PASSED] 0x5695 (DG2)
[09:10:19] [PASSED] 0x56A3 (DG2)
[09:10:19] [PASSED] 0x56A4 (DG2)
[09:10:19] [PASSED] 0x56B2 (DG2)
[09:10:19] [PASSED] 0x56B3 (DG2)
[09:10:19] [PASSED] 0x5696 (DG2)
[09:10:19] [PASSED] 0x5697 (DG2)
[09:10:19] [PASSED] 0xB69 (PVC)
[09:10:19] [PASSED] 0xB6E (PVC)
[09:10:19] [PASSED] 0xBD4 (PVC)
[09:10:19] [PASSED] 0xBD5 (PVC)
[09:10:19] [PASSED] 0xBD6 (PVC)
[09:10:19] [PASSED] 0xBD7 (PVC)
[09:10:19] [PASSED] 0xBD8 (PVC)
[09:10:19] [PASSED] 0xBD9 (PVC)
[09:10:19] [PASSED] 0xBDA (PVC)
[09:10:19] [PASSED] 0xBDB (PVC)
[09:10:19] [PASSED] 0xBE0 (PVC)
[09:10:19] [PASSED] 0xBE1 (PVC)
[09:10:19] [PASSED] 0xBE5 (PVC)
[09:10:19] [PASSED] 0x7D40 (METEORLAKE)
[09:10:19] [PASSED] 0x7D45 (METEORLAKE)
[09:10:19] [PASSED] 0x7D55 (METEORLAKE)
[09:10:19] [PASSED] 0x7D60 (METEORLAKE)
[09:10:19] [PASSED] 0x7DD5 (METEORLAKE)
[09:10:19] [PASSED] 0x6420 (LUNARLAKE)
[09:10:19] [PASSED] 0x64A0 (LUNARLAKE)
[09:10:19] [PASSED] 0x64B0 (LUNARLAKE)
[09:10:19] [PASSED] 0xE202 (BATTLEMAGE)
[09:10:19] [PASSED] 0xE209 (BATTLEMAGE)
[09:10:19] [PASSED] 0xE20B (BATTLEMAGE)
[09:10:19] [PASSED] 0xE20C (BATTLEMAGE)
[09:10:19] [PASSED] 0xE20D (BATTLEMAGE)
[09:10:19] [PASSED] 0xE210 (BATTLEMAGE)
[09:10:19] [PASSED] 0xE211 (BATTLEMAGE)
[09:10:19] [PASSED] 0xE212 (BATTLEMAGE)
[09:10:19] [PASSED] 0xE216 (BATTLEMAGE)
[09:10:19] [PASSED] 0xE220 (BATTLEMAGE)
[09:10:19] [PASSED] 0xE221 (BATTLEMAGE)
[09:10:19] [PASSED] 0xE222 (BATTLEMAGE)
[09:10:19] [PASSED] 0xE223 (BATTLEMAGE)
[09:10:19] [PASSED] 0xB080 (PANTHERLAKE)
[09:10:19] [PASSED] 0xB081 (PANTHERLAKE)
[09:10:19] [PASSED] 0xB082 (PANTHERLAKE)
[09:10:19] [PASSED] 0xB083 (PANTHERLAKE)
[09:10:19] [PASSED] 0xB084 (PANTHERLAKE)
[09:10:19] [PASSED] 0xB085 (PANTHERLAKE)
[09:10:19] [PASSED] 0xB086 (PANTHERLAKE)
[09:10:19] [PASSED] 0xB087 (PANTHERLAKE)
[09:10:19] [PASSED] 0xB08F (PANTHERLAKE)
[09:10:19] [PASSED] 0xB090 (PANTHERLAKE)
[09:10:19] [PASSED] 0xB0A0 (PANTHERLAKE)
[09:10:19] [PASSED] 0xB0B0 (PANTHERLAKE)
[09:10:19] [PASSED] 0xFD80 (PANTHERLAKE)
[09:10:19] [PASSED] 0xFD81 (PANTHERLAKE)
[09:10:19] [PASSED] 0xD740 (NOVALAKE_S)
[09:10:19] [PASSED] 0xD741 (NOVALAKE_S)
[09:10:19] [PASSED] 0xD742 (NOVALAKE_S)
[09:10:19] [PASSED] 0xD743 (NOVALAKE_S)
[09:10:19] [PASSED] 0xD744 (NOVALAKE_S)
[09:10:19] [PASSED] 0xD745 (NOVALAKE_S)
[09:10:19] [PASSED] 0x674C (CRESCENTISLAND)
[09:10:19] =============== [PASSED] check_platform_desc ===============
[09:10:19] ===================== [PASSED] xe_pci ======================
[09:10:19] =================== xe_rtp (2 subtests) ====================
[09:10:19] =============== xe_rtp_process_to_sr_tests  ================
[09:10:19] [PASSED] coalesce-same-reg
[09:10:19] [PASSED] no-match-no-add
[09:10:19] [PASSED] match-or
[09:10:19] [PASSED] match-or-xfail
[09:10:19] [PASSED] no-match-no-add-multiple-rules
[09:10:19] [PASSED] two-regs-two-entries
[09:10:19] [PASSED] clr-one-set-other
[09:10:19] [PASSED] set-field
[09:10:19] [PASSED] conflict-duplicate
[09:10:19] [PASSED] conflict-not-disjoint
[09:10:19] [PASSED] conflict-reg-type
[09:10:19] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[09:10:19] ================== xe_rtp_process_tests  ===================
[09:10:19] [PASSED] active1
[09:10:19] [PASSED] active2
[09:10:19] [PASSED] active-inactive
[09:10:19] [PASSED] inactive-active
[09:10:19] [PASSED] inactive-1st_or_active-inactive
[09:10:19] [PASSED] inactive-2nd_or_active-inactive
[09:10:19] [PASSED] inactive-last_or_active-inactive
[09:10:19] [PASSED] inactive-no_or_active-inactive
[09:10:19] ============== [PASSED] xe_rtp_process_tests ===============
[09:10:19] ===================== [PASSED] xe_rtp ======================
[09:10:19] ==================== xe_wa (1 subtest) =====================
[09:10:19] ======================== xe_wa_gt  =========================
[09:10:19] [PASSED] TIGERLAKE B0
[09:10:19] [PASSED] DG1 A0
[09:10:19] [PASSED] DG1 B0
[09:10:19] [PASSED] ALDERLAKE_S A0
[09:10:19] [PASSED] ALDERLAKE_S B0
[09:10:19] [PASSED] ALDERLAKE_S C0
[09:10:19] [PASSED] ALDERLAKE_S D0
[09:10:19] [PASSED] ALDERLAKE_P A0
[09:10:19] [PASSED] ALDERLAKE_P B0
[09:10:19] [PASSED] ALDERLAKE_P C0
[09:10:19] [PASSED] ALDERLAKE_S RPLS D0
[09:10:19] [PASSED] ALDERLAKE_P RPLU E0
[09:10:19] [PASSED] DG2 G10 C0
[09:10:19] [PASSED] DG2 G11 B1
[09:10:19] [PASSED] DG2 G12 A1
[09:10:19] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[09:10:19] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[09:10:19] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[09:10:19] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[09:10:19] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[09:10:19] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[09:10:19] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[09:10:19] ==================== [PASSED] xe_wa_gt =====================
[09:10:19] ====================== [PASSED] xe_wa ======================
[09:10:19] ============================================================
[09:10:19] Testing complete. Ran 512 tests: passed: 494, skipped: 18
[09:10:19] Elapsed time: 44.546s total, 4.306s configuring, 39.723s building, 0.488s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[09:10:19] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[09:10:21] 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=25
[09:10:52] Starting KUnit Kernel (1/1)...
[09:10:52] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[09:10:52] ============ drm_test_pick_cmdline (2 subtests) ============
[09:10:52] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[09:10:52] =============== drm_test_pick_cmdline_named  ===============
[09:10:52] [PASSED] NTSC
[09:10:52] [PASSED] NTSC-J
[09:10:52] [PASSED] PAL
[09:10:52] [PASSED] PAL-M
[09:10:52] =========== [PASSED] drm_test_pick_cmdline_named ===========
[09:10:52] ============== [PASSED] drm_test_pick_cmdline ==============
[09:10:52] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[09:10:52] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[09:10:52] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[09:10:52] =========== drm_validate_clone_mode (2 subtests) ===========
[09:10:52] ============== drm_test_check_in_clone_mode  ===============
[09:10:52] [PASSED] in_clone_mode
[09:10:52] [PASSED] not_in_clone_mode
[09:10:52] ========== [PASSED] drm_test_check_in_clone_mode ===========
[09:10:52] =============== drm_test_check_valid_clones  ===============
[09:10:52] [PASSED] not_in_clone_mode
[09:10:52] [PASSED] valid_clone
[09:10:52] [PASSED] invalid_clone
[09:10:52] =========== [PASSED] drm_test_check_valid_clones ===========
[09:10:52] ============= [PASSED] drm_validate_clone_mode =============
[09:10:52] ============= drm_validate_modeset (1 subtest) =============
[09:10:52] [PASSED] drm_test_check_connector_changed_modeset
[09:10:52] ============== [PASSED] drm_validate_modeset ===============
[09:10:52] ====== drm_test_bridge_get_current_state (2 subtests) ======
[09:10:52] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[09:10:52] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[09:10:52] ======== [PASSED] drm_test_bridge_get_current_state ========
[09:10:52] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[09:10:52] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[09:10:52] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[09:10:52] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[09:10:52] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[09:10:52] ============== drm_bridge_alloc (2 subtests) ===============
[09:10:52] [PASSED] drm_test_drm_bridge_alloc_basic
[09:10:52] [PASSED] drm_test_drm_bridge_alloc_get_put
[09:10:52] ================ [PASSED] drm_bridge_alloc =================
[09:10:52] ================== drm_buddy (9 subtests) ==================
[09:10:52] [PASSED] drm_test_buddy_alloc_limit
[09:10:52] [PASSED] drm_test_buddy_alloc_optimistic
[09:10:52] [PASSED] drm_test_buddy_alloc_pessimistic
[09:10:52] [PASSED] drm_test_buddy_alloc_pathological
[09:10:52] [PASSED] drm_test_buddy_alloc_contiguous
[09:10:52] [PASSED] drm_test_buddy_alloc_clear
[09:10:52] [PASSED] drm_test_buddy_alloc_range_bias
[09:10:52] [PASSED] drm_test_buddy_fragmentation_performance
[09:10:52] [PASSED] drm_test_buddy_alloc_exceeds_max_order
[09:10:52] ==================== [PASSED] drm_buddy ====================
[09:10:52] ============= drm_cmdline_parser (40 subtests) =============
[09:10:52] [PASSED] drm_test_cmdline_force_d_only
[09:10:52] [PASSED] drm_test_cmdline_force_D_only_dvi
[09:10:52] [PASSED] drm_test_cmdline_force_D_only_hdmi
[09:10:52] [PASSED] drm_test_cmdline_force_D_only_not_digital
[09:10:52] [PASSED] drm_test_cmdline_force_e_only
[09:10:52] [PASSED] drm_test_cmdline_res
[09:10:52] [PASSED] drm_test_cmdline_res_vesa
[09:10:52] [PASSED] drm_test_cmdline_res_vesa_rblank
[09:10:52] [PASSED] drm_test_cmdline_res_rblank
[09:10:52] [PASSED] drm_test_cmdline_res_bpp
[09:10:52] [PASSED] drm_test_cmdline_res_refresh
[09:10:52] [PASSED] drm_test_cmdline_res_bpp_refresh
[09:10:52] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[09:10:52] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[09:10:52] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[09:10:52] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[09:10:52] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[09:10:52] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[09:10:52] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[09:10:52] [PASSED] drm_test_cmdline_res_margins_force_on
[09:10:52] [PASSED] drm_test_cmdline_res_vesa_margins
[09:10:52] [PASSED] drm_test_cmdline_name
[09:10:52] [PASSED] drm_test_cmdline_name_bpp
[09:10:52] [PASSED] drm_test_cmdline_name_option
[09:10:52] [PASSED] drm_test_cmdline_name_bpp_option
[09:10:52] [PASSED] drm_test_cmdline_rotate_0
[09:10:52] [PASSED] drm_test_cmdline_rotate_90
[09:10:52] [PASSED] drm_test_cmdline_rotate_180
[09:10:52] [PASSED] drm_test_cmdline_rotate_270
[09:10:52] [PASSED] drm_test_cmdline_hmirror
[09:10:52] [PASSED] drm_test_cmdline_vmirror
[09:10:52] [PASSED] drm_test_cmdline_margin_options
[09:10:52] [PASSED] drm_test_cmdline_multiple_options
[09:10:52] [PASSED] drm_test_cmdline_bpp_extra_and_option
[09:10:52] [PASSED] drm_test_cmdline_extra_and_option
[09:10:52] [PASSED] drm_test_cmdline_freestanding_options
[09:10:52] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[09:10:52] [PASSED] drm_test_cmdline_panel_orientation
[09:10:52] ================ drm_test_cmdline_invalid  =================
[09:10:52] [PASSED] margin_only
[09:10:52] [PASSED] interlace_only
[09:10:52] [PASSED] res_missing_x
[09:10:52] [PASSED] res_missing_y
[09:10:52] [PASSED] res_bad_y
[09:10:52] [PASSED] res_missing_y_bpp
[09:10:52] [PASSED] res_bad_bpp
[09:10:52] [PASSED] res_bad_refresh
[09:10:52] [PASSED] res_bpp_refresh_force_on_off
[09:10:52] [PASSED] res_invalid_mode
[09:10:52] [PASSED] res_bpp_wrong_place_mode
[09:10:52] [PASSED] name_bpp_refresh
[09:10:52] [PASSED] name_refresh
[09:10:52] [PASSED] name_refresh_wrong_mode
[09:10:52] [PASSED] name_refresh_invalid_mode
[09:10:52] [PASSED] rotate_multiple
[09:10:52] [PASSED] rotate_invalid_val
[09:10:52] [PASSED] rotate_truncated
[09:10:52] [PASSED] invalid_option
[09:10:52] [PASSED] invalid_tv_option
[09:10:52] [PASSED] truncated_tv_option
[09:10:52] ============ [PASSED] drm_test_cmdline_invalid =============
[09:10:52] =============== drm_test_cmdline_tv_options  ===============
[09:10:52] [PASSED] NTSC
[09:10:52] [PASSED] NTSC_443
[09:10:52] [PASSED] NTSC_J
[09:10:52] [PASSED] PAL
[09:10:52] [PASSED] PAL_M
[09:10:52] [PASSED] PAL_N
[09:10:52] [PASSED] SECAM
[09:10:52] [PASSED] MONO_525
[09:10:52] [PASSED] MONO_625
[09:10:52] =========== [PASSED] drm_test_cmdline_tv_options ===========
[09:10:52] =============== [PASSED] drm_cmdline_parser ================
[09:10:52] ========== drmm_connector_hdmi_init (20 subtests) ==========
[09:10:52] [PASSED] drm_test_connector_hdmi_init_valid
[09:10:52] [PASSED] drm_test_connector_hdmi_init_bpc_8
[09:10:52] [PASSED] drm_test_connector_hdmi_init_bpc_10
[09:10:52] [PASSED] drm_test_connector_hdmi_init_bpc_12
[09:10:52] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[09:10:52] [PASSED] drm_test_connector_hdmi_init_bpc_null
[09:10:52] [PASSED] drm_test_connector_hdmi_init_formats_empty
[09:10:52] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[09:10:52] === drm_test_connector_hdmi_init_formats_yuv420_allowed  ===
[09:10:52] [PASSED] supported_formats=0x9 yuv420_allowed=1
[09:10:52] [PASSED] supported_formats=0x9 yuv420_allowed=0
[09:10:52] [PASSED] supported_formats=0x3 yuv420_allowed=1
[09:10:52] [PASSED] supported_formats=0x3 yuv420_allowed=0
[09:10:52] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[09:10:52] [PASSED] drm_test_connector_hdmi_init_null_ddc
[09:10:52] [PASSED] drm_test_connector_hdmi_init_null_product
[09:10:52] [PASSED] drm_test_connector_hdmi_init_null_vendor
[09:10:52] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[09:10:52] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[09:10:52] [PASSED] drm_test_connector_hdmi_init_product_valid
[09:10:52] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[09:10:52] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[09:10:52] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[09:10:52] ========= drm_test_connector_hdmi_init_type_valid  =========
[09:10:52] [PASSED] HDMI-A
[09:10:52] [PASSED] HDMI-B
[09:10:52] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[09:10:52] ======== drm_test_connector_hdmi_init_type_invalid  ========
[09:10:52] [PASSED] Unknown
[09:10:52] [PASSED] VGA
[09:10:52] [PASSED] DVI-I
[09:10:52] [PASSED] DVI-D
[09:10:52] [PASSED] DVI-A
[09:10:52] [PASSED] Composite
[09:10:52] [PASSED] SVIDEO
[09:10:52] [PASSED] LVDS
[09:10:52] [PASSED] Component
[09:10:52] [PASSED] DIN
[09:10:52] [PASSED] DP
[09:10:52] [PASSED] TV
[09:10:52] [PASSED] eDP
[09:10:52] [PASSED] Virtual
[09:10:52] [PASSED] DSI
[09:10:52] [PASSED] DPI
[09:10:52] [PASSED] Writeback
[09:10:52] [PASSED] SPI
[09:10:52] [PASSED] USB
[09:10:52] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[09:10:52] ============ [PASSED] drmm_connector_hdmi_init =============
[09:10:52] ============= drmm_connector_init (3 subtests) =============
[09:10:52] [PASSED] drm_test_drmm_connector_init
[09:10:52] [PASSED] drm_test_drmm_connector_init_null_ddc
[09:10:52] ========= drm_test_drmm_connector_init_type_valid  =========
[09:10:52] [PASSED] Unknown
[09:10:52] [PASSED] VGA
[09:10:52] [PASSED] DVI-I
[09:10:52] [PASSED] DVI-D
[09:10:52] [PASSED] DVI-A
[09:10:52] [PASSED] Composite
[09:10:52] [PASSED] SVIDEO
[09:10:52] [PASSED] LVDS
[09:10:52] [PASSED] Component
[09:10:52] [PASSED] DIN
[09:10:52] [PASSED] DP
[09:10:52] [PASSED] HDMI-A
[09:10:52] [PASSED] HDMI-B
[09:10:52] [PASSED] TV
[09:10:52] [PASSED] eDP
[09:10:52] [PASSED] Virtual
[09:10:52] [PASSED] DSI
[09:10:52] [PASSED] DPI
[09:10:52] [PASSED] Writeback
[09:10:52] [PASSED] SPI
[09:10:52] [PASSED] USB
[09:10:52] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[09:10:52] =============== [PASSED] drmm_connector_init ===============
[09:10:52] ========= drm_connector_dynamic_init (6 subtests) ==========
[09:10:52] [PASSED] drm_test_drm_connector_dynamic_init
[09:10:52] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[09:10:52] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[09:10:52] [PASSED] drm_test_drm_connector_dynamic_init_properties
[09:10:52] ===== drm_test_drm_connector_dynamic_init_type_valid  ======
[09:10:52] [PASSED] Unknown
[09:10:52] [PASSED] VGA
[09:10:52] [PASSED] DVI-I
[09:10:52] [PASSED] DVI-D
[09:10:52] [PASSED] DVI-A
[09:10:52] [PASSED] Composite
[09:10:52] [PASSED] SVIDEO
[09:10:52] [PASSED] LVDS
[09:10:52] [PASSED] Component
[09:10:52] [PASSED] DIN
[09:10:52] [PASSED] DP
[09:10:52] [PASSED] HDMI-A
[09:10:52] [PASSED] HDMI-B
[09:10:52] [PASSED] TV
[09:10:52] [PASSED] eDP
[09:10:52] [PASSED] Virtual
[09:10:52] [PASSED] DSI
[09:10:52] [PASSED] DPI
[09:10:52] [PASSED] Writeback
[09:10:52] [PASSED] SPI
[09:10:52] [PASSED] USB
[09:10:52] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[09:10:52] ======== drm_test_drm_connector_dynamic_init_name  =========
[09:10:52] [PASSED] Unknown
[09:10:52] [PASSED] VGA
[09:10:52] [PASSED] DVI-I
[09:10:52] [PASSED] DVI-D
[09:10:52] [PASSED] DVI-A
[09:10:52] [PASSED] Composite
[09:10:52] [PASSED] SVIDEO
[09:10:52] [PASSED] LVDS
[09:10:52] [PASSED] Component
[09:10:52] [PASSED] DIN
[09:10:52] [PASSED] DP
[09:10:52] [PASSED] HDMI-A
[09:10:52] [PASSED] HDMI-B
[09:10:52] [PASSED] TV
[09:10:52] [PASSED] eDP
[09:10:52] [PASSED] Virtual
[09:10:52] [PASSED] DSI
[09:10:52] [PASSED] DPI
[09:10:52] [PASSED] Writeback
[09:10:52] [PASSED] SPI
[09:10:52] [PASSED] USB
[09:10:52] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[09:10:52] =========== [PASSED] drm_connector_dynamic_init ============
[09:10:52] ==== drm_connector_dynamic_register_early (4 subtests) =====
[09:10:52] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[09:10:52] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[09:10:52] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[09:10:52] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[09:10:52] ====== [PASSED] drm_connector_dynamic_register_early =======
[09:10:52] ======= drm_connector_dynamic_register (7 subtests) ========
[09:10:52] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[09:10:52] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[09:10:52] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[09:10:52] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[09:10:52] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[09:10:52] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[09:10:52] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[09:10:52] ========= [PASSED] drm_connector_dynamic_register ==========
[09:10:52] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[09:10:52] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[09:10:52] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[09:10:52] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[09:10:52] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[09:10:52] ========== drm_test_get_tv_mode_from_name_valid  ===========
[09:10:52] [PASSED] NTSC
[09:10:52] [PASSED] NTSC-443
[09:10:52] [PASSED] NTSC-J
[09:10:52] [PASSED] PAL
[09:10:52] [PASSED] PAL-M
[09:10:52] [PASSED] PAL-N
[09:10:52] [PASSED] SECAM
[09:10:52] [PASSED] Mono
[09:10:52] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[09:10:52] [PASSED] drm_test_get_tv_mode_from_name_truncated
[09:10:52] ============ [PASSED] drm_get_tv_mode_from_name ============
[09:10:52] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[09:10:52] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[09:10:52] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[09:10:52] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[09:10:52] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[09:10:52] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[09:10:52] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[09:10:52] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid  =
[09:10:52] [PASSED] VIC 96
[09:10:52] [PASSED] VIC 97
[09:10:52] [PASSED] VIC 101
[09:10:52] [PASSED] VIC 102
[09:10:52] [PASSED] VIC 106
[09:10:52] [PASSED] VIC 107
[09:10:52] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[09:10:52] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[09:10:52] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[09:10:52] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[09:10:52] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[09:10:52] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[09:10:52] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[09:10:52] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[09:10:52] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name  ====
[09:10:52] [PASSED] Automatic
[09:10:52] [PASSED] Full
[09:10:52] [PASSED] Limited 16:235
[09:10:52] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[09:10:52] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[09:10:52] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[09:10:52] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[09:10:52] === drm_test_drm_hdmi_connector_get_output_format_name  ====
[09:10:52] [PASSED] RGB
[09:10:52] [PASSED] YUV 4:2:0
[09:10:52] [PASSED] YUV 4:2:2
[09:10:52] [PASSED] YUV 4:4:4
[09:10:52] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[09:10:52] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[09:10:52] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[09:10:52] ============= drm_damage_helper (21 subtests) ==============
[09:10:52] [PASSED] drm_test_damage_iter_no_damage
[09:10:52] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[09:10:52] [PASSED] drm_test_damage_iter_no_damage_src_moved
[09:10:52] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[09:10:52] [PASSED] drm_test_damage_iter_no_damage_not_visible
[09:10:52] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[09:10:52] [PASSED] drm_test_damage_iter_no_damage_no_fb
[09:10:52] [PASSED] drm_test_damage_iter_simple_damage
[09:10:52] [PASSED] drm_test_damage_iter_single_damage
[09:10:52] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[09:10:52] [PASSED] drm_test_damage_iter_single_damage_outside_src
[09:10:52] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[09:10:52] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[09:10:52] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[09:10:52] [PASSED] drm_test_damage_iter_single_damage_src_moved
[09:10:52] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[09:10:52] [PASSED] drm_test_damage_iter_damage
[09:10:52] [PASSED] drm_test_damage_iter_damage_one_intersect
[09:10:52] [PASSED] drm_test_damage_iter_damage_one_outside
[09:10:52] [PASSED] drm_test_damage_iter_damage_src_moved
[09:10:52] [PASSED] drm_test_damage_iter_damage_not_visible
[09:10:52] ================ [PASSED] drm_damage_helper ================
[09:10:52] ============== drm_dp_mst_helper (3 subtests) ==============
[09:10:52] ============== drm_test_dp_mst_calc_pbn_mode  ==============
[09:10:52] [PASSED] Clock 154000 BPP 30 DSC disabled
[09:10:52] [PASSED] Clock 234000 BPP 30 DSC disabled
[09:10:52] [PASSED] Clock 297000 BPP 24 DSC disabled
[09:10:52] [PASSED] Clock 332880 BPP 24 DSC enabled
[09:10:52] [PASSED] Clock 324540 BPP 24 DSC enabled
[09:10:52] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[09:10:52] ============== drm_test_dp_mst_calc_pbn_div  ===============
[09:10:52] [PASSED] Link rate 2000000 lane count 4
[09:10:52] [PASSED] Link rate 2000000 lane count 2
[09:10:52] [PASSED] Link rate 2000000 lane count 1
[09:10:52] [PASSED] Link rate 1350000 lane count 4
[09:10:52] [PASSED] Link rate 1350000 lane count 2
[09:10:52] [PASSED] Link rate 1350000 lane count 1
[09:10:52] [PASSED] Link rate 1000000 lane count 4
[09:10:52] [PASSED] Link rate 1000000 lane count 2
[09:10:52] [PASSED] Link rate 1000000 lane count 1
[09:10:52] [PASSED] Link rate 810000 lane count 4
[09:10:52] [PASSED] Link rate 810000 lane count 2
[09:10:52] [PASSED] Link rate 810000 lane count 1
[09:10:52] [PASSED] Link rate 540000 lane count 4
[09:10:52] [PASSED] Link rate 540000 lane count 2
[09:10:52] [PASSED] Link rate 540000 lane count 1
[09:10:52] [PASSED] Link rate 270000 lane count 4
[09:10:52] [PASSED] Link rate 270000 lane count 2
[09:10:52] [PASSED] Link rate 270000 lane count 1
[09:10:52] [PASSED] Link rate 162000 lane count 4
[09:10:52] [PASSED] Link rate 162000 lane count 2
[09:10:52] [PASSED] Link rate 162000 lane count 1
[09:10:52] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[09:10:52] ========= drm_test_dp_mst_sideband_msg_req_decode  =========
[09:10:52] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[09:10:52] [PASSED] DP_POWER_UP_PHY with port number
[09:10:52] [PASSED] DP_POWER_DOWN_PHY with port number
[09:10:52] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[09:10:52] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[09:10:52] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[09:10:52] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[09:10:52] [PASSED] DP_QUERY_PAYLOAD with port number
[09:10:52] [PASSED] DP_QUERY_PAYLOAD with VCPI
[09:10:52] [PASSED] DP_REMOTE_DPCD_READ with port number
[09:10:52] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[09:10:52] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[09:10:52] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[09:10:52] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[09:10:52] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[09:10:52] [PASSED] DP_REMOTE_I2C_READ with port number
[09:10:52] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[09:10:52] [PASSED] DP_REMOTE_I2C_READ with transactions array
[09:10:52] [PASSED] DP_REMOTE_I2C_WRITE with port number
[09:10:52] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[09:10:52] [PASSED] DP_REMOTE_I2C_WRITE with data array
[09:10:52] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[09:10:52] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[09:10:52] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[09:10:52] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[09:10:52] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[09:10:52] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[09:10:52] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[09:10:52] ================ [PASSED] drm_dp_mst_helper ================
[09:10:52] ================== drm_exec (7 subtests) ===================
[09:10:52] [PASSED] sanitycheck
[09:10:52] [PASSED] test_lock
[09:10:52] [PASSED] test_lock_unlock
[09:10:52] [PASSED] test_duplicates
[09:10:52] [PASSED] test_prepare
[09:10:52] [PASSED] test_prepare_array
[09:10:52] [PASSED] test_multiple_loops
[09:10:52] ==================== [PASSED] drm_exec =====================
[09:10:52] =========== drm_format_helper_test (17 subtests) ===========
[09:10:52] ============== drm_test_fb_xrgb8888_to_gray8  ==============
[09:10:52] [PASSED] single_pixel_source_buffer
[09:10:52] [PASSED] single_pixel_clip_rectangle
[09:10:52] [PASSED] well_known_colors
[09:10:52] [PASSED] destination_pitch
[09:10:52] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[09:10:52] ============= drm_test_fb_xrgb8888_to_rgb332  ==============
[09:10:52] [PASSED] single_pixel_source_buffer
[09:10:52] [PASSED] single_pixel_clip_rectangle
[09:10:52] [PASSED] well_known_colors
[09:10:52] [PASSED] destination_pitch
[09:10:52] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[09:10:52] ============= drm_test_fb_xrgb8888_to_rgb565  ==============
[09:10:52] [PASSED] single_pixel_source_buffer
[09:10:52] [PASSED] single_pixel_clip_rectangle
[09:10:52] [PASSED] well_known_colors
[09:10:52] [PASSED] destination_pitch
[09:10:52] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[09:10:52] ============ drm_test_fb_xrgb8888_to_xrgb1555  =============
[09:10:52] [PASSED] single_pixel_source_buffer
[09:10:52] [PASSED] single_pixel_clip_rectangle
[09:10:52] [PASSED] well_known_colors
[09:10:52] [PASSED] destination_pitch
[09:10:52] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[09:10:52] ============ drm_test_fb_xrgb8888_to_argb1555  =============
[09:10:52] [PASSED] single_pixel_source_buffer
[09:10:52] [PASSED] single_pixel_clip_rectangle
[09:10:52] [PASSED] well_known_colors
[09:10:52] [PASSED] destination_pitch
[09:10:52] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[09:10:52] ============ drm_test_fb_xrgb8888_to_rgba5551  =============
[09:10:52] [PASSED] single_pixel_source_buffer
[09:10:52] [PASSED] single_pixel_clip_rectangle
[09:10:52] [PASSED] well_known_colors
[09:10:52] [PASSED] destination_pitch
[09:10:52] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[09:10:52] ============= drm_test_fb_xrgb8888_to_rgb888  ==============
[09:10:52] [PASSED] single_pixel_source_buffer
[09:10:52] [PASSED] single_pixel_clip_rectangle
[09:10:52] [PASSED] well_known_colors
[09:10:52] [PASSED] destination_pitch
[09:10:52] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[09:10:52] ============= drm_test_fb_xrgb8888_to_bgr888  ==============
[09:10:52] [PASSED] single_pixel_source_buffer
[09:10:52] [PASSED] single_pixel_clip_rectangle
[09:10:52] [PASSED] well_known_colors
[09:10:52] [PASSED] destination_pitch
[09:10:52] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[09:10:52] ============ drm_test_fb_xrgb8888_to_argb8888  =============
[09:10:52] [PASSED] single_pixel_source_buffer
[09:10:52] [PASSED] single_pixel_clip_rectangle
[09:10:52] [PASSED] well_known_colors
[09:10:52] [PASSED] destination_pitch
[09:10:52] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[09:10:52] =========== drm_test_fb_xrgb8888_to_xrgb2101010  ===========
[09:10:52] [PASSED] single_pixel_source_buffer
[09:10:52] [PASSED] single_pixel_clip_rectangle
[09:10:52] [PASSED] well_known_colors
[09:10:52] [PASSED] destination_pitch
[09:10:52] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[09:10:52] =========== drm_test_fb_xrgb8888_to_argb2101010  ===========
[09:10:52] [PASSED] single_pixel_source_buffer
[09:10:52] [PASSED] single_pixel_clip_rectangle
[09:10:52] [PASSED] well_known_colors
[09:10:52] [PASSED] destination_pitch
[09:10:52] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[09:10:52] ============== drm_test_fb_xrgb8888_to_mono  ===============
[09:10:52] [PASSED] single_pixel_source_buffer
[09:10:52] [PASSED] single_pixel_clip_rectangle
[09:10:52] [PASSED] well_known_colors
[09:10:52] [PASSED] destination_pitch
[09:10:52] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[09:10:52] ==================== drm_test_fb_swab  =====================
[09:10:52] [PASSED] single_pixel_source_buffer
[09:10:52] [PASSED] single_pixel_clip_rectangle
[09:10:52] [PASSED] well_known_colors
[09:10:52] [PASSED] destination_pitch
[09:10:52] ================ [PASSED] drm_test_fb_swab =================
[09:10:52] ============ drm_test_fb_xrgb8888_to_xbgr8888  =============
[09:10:52] [PASSED] single_pixel_source_buffer
[09:10:52] [PASSED] single_pixel_clip_rectangle
[09:10:52] [PASSED] well_known_colors
[09:10:52] [PASSED] destination_pitch
[09:10:52] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[09:10:52] ============ drm_test_fb_xrgb8888_to_abgr8888  =============
[09:10:52] [PASSED] single_pixel_source_buffer
[09:10:52] [PASSED] single_pixel_clip_rectangle
[09:10:52] [PASSED] well_known_colors
[09:10:52] [PASSED] destination_pitch
[09:10:52] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[09:10:52] ================= drm_test_fb_clip_offset  =================
[09:10:52] [PASSED] pass through
[09:10:52] [PASSED] horizontal offset
[09:10:52] [PASSED] vertical offset
[09:10:52] [PASSED] horizontal and vertical offset
[09:10:52] [PASSED] horizontal offset (custom pitch)
[09:10:52] [PASSED] vertical offset (custom pitch)
[09:10:52] [PASSED] horizontal and vertical offset (custom pitch)
[09:10:52] ============= [PASSED] drm_test_fb_clip_offset =============
[09:10:52] =================== drm_test_fb_memcpy  ====================
[09:10:52] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[09:10:52] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[09:10:52] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[09:10:52] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[09:10:52] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[09:10:52] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[09:10:52] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[09:10:52] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[09:10:52] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[09:10:52] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[09:10:52] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[09:10:52] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[09:10:52] =============== [PASSED] drm_test_fb_memcpy ================
[09:10:52] ============= [PASSED] drm_format_helper_test ==============
[09:10:52] ================= drm_format (18 subtests) =================
[09:10:52] [PASSED] drm_test_format_block_width_invalid
[09:10:52] [PASSED] drm_test_format_block_width_one_plane
[09:10:52] [PASSED] drm_test_format_block_width_two_plane
[09:10:52] [PASSED] drm_test_format_block_width_three_plane
[09:10:52] [PASSED] drm_test_format_block_width_tiled
[09:10:52] [PASSED] drm_test_format_block_height_invalid
[09:10:52] [PASSED] drm_test_format_block_height_one_plane
[09:10:52] [PASSED] drm_test_format_block_height_two_plane
[09:10:52] [PASSED] drm_test_format_block_height_three_plane
[09:10:52] [PASSED] drm_test_format_block_height_tiled
[09:10:52] [PASSED] drm_test_format_min_pitch_invalid
[09:10:52] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[09:10:52] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[09:10:52] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[09:10:52] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[09:10:52] [PASSED] drm_test_format_min_pitch_two_plane
[09:10:52] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[09:10:52] [PASSED] drm_test_format_min_pitch_tiled
[09:10:52] =================== [PASSED] drm_format ====================
[09:10:52] ============== drm_framebuffer (10 subtests) ===============
[09:10:52] ========== drm_test_framebuffer_check_src_coords  ==========
[09:10:52] [PASSED] Success: source fits into fb
[09:10:52] [PASSED] Fail: overflowing fb with x-axis coordinate
[09:10:52] [PASSED] Fail: overflowing fb with y-axis coordinate
[09:10:52] [PASSED] Fail: overflowing fb with source width
[09:10:52] [PASSED] Fail: overflowing fb with source height
[09:10:52] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[09:10:52] [PASSED] drm_test_framebuffer_cleanup
[09:10:52] =============== drm_test_framebuffer_create  ===============
[09:10:52] [PASSED] ABGR8888 normal sizes
[09:10:52] [PASSED] ABGR8888 max sizes
[09:10:52] [PASSED] ABGR8888 pitch greater than min required
[09:10:52] [PASSED] ABGR8888 pitch less than min required
[09:10:52] [PASSED] ABGR8888 Invalid width
[09:10:52] [PASSED] ABGR8888 Invalid buffer handle
[09:10:52] [PASSED] No pixel format
[09:10:52] [PASSED] ABGR8888 Width 0
[09:10:52] [PASSED] ABGR8888 Height 0
[09:10:52] [PASSED] ABGR8888 Out of bound height * pitch combination
[09:10:52] [PASSED] ABGR8888 Large buffer offset
[09:10:52] [PASSED] ABGR8888 Buffer offset for inexistent plane
[09:10:52] [PASSED] ABGR8888 Invalid flag
[09:10:52] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[09:10:52] [PASSED] ABGR8888 Valid buffer modifier
[09:10:52] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[09:10:52] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[09:10:52] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[09:10:52] [PASSED] NV12 Normal sizes
[09:10:52] [PASSED] NV12 Max sizes
[09:10:52] [PASSED] NV12 Invalid pitch
[09:10:52] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[09:10:52] [PASSED] NV12 different  modifier per-plane
[09:10:52] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[09:10:52] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[09:10:52] [PASSED] NV12 Modifier for inexistent plane
[09:10:52] [PASSED] NV12 Handle for inexistent plane
[09:10:52] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[09:10:52] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[09:10:52] [PASSED] YVU420 Normal sizes
[09:10:52] [PASSED] YVU420 Max sizes
[09:10:52] [PASSED] YVU420 Invalid pitch
[09:10:52] [PASSED] YVU420 Different pitches
[09:10:52] [PASSED] YVU420 Different buffer offsets/pitches
[09:10:52] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[09:10:52] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[09:10:52] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[09:10:52] [PASSED] YVU420 Valid modifier
[09:10:52] [PASSED] YVU420 Different modifiers per plane
[09:10:52] [PASSED] YVU420 Modifier for inexistent plane
[09:10:52] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[09:10:52] [PASSED] X0L2 Normal sizes
[09:10:52] [PASSED] X0L2 Max sizes
[09:10:52] [PASSED] X0L2 Invalid pitch
[09:10:52] [PASSED] X0L2 Pitch greater than minimum required
[09:10:52] [PASSED] X0L2 Handle for inexistent plane
[09:10:52] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[09:10:52] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[09:10:52] [PASSED] X0L2 Valid modifier
[09:10:52] [PASSED] X0L2 Modifier for inexistent plane
[09:10:52] =========== [PASSED] drm_test_framebuffer_create ===========
[09:10:52] [PASSED] drm_test_framebuffer_free
[09:10:52] [PASSED] drm_test_framebuffer_init
[09:10:52] [PASSED] drm_test_framebuffer_init_bad_format
[09:10:52] [PASSED] drm_test_framebuffer_init_dev_mismatch
[09:10:52] [PASSED] drm_test_framebuffer_lookup
[09:10:52] [PASSED] drm_test_framebuffer_lookup_inexistent
[09:10:52] [PASSED] drm_test_framebuffer_modifiers_not_supported
[09:10:52] ================= [PASSED] drm_framebuffer =================
[09:10:52] ================ drm_gem_shmem (8 subtests) ================
[09:10:52] [PASSED] drm_gem_shmem_test_obj_create
[09:10:52] [PASSED] drm_gem_shmem_test_obj_create_private
[09:10:52] [PASSED] drm_gem_shmem_test_pin_pages
[09:10:52] [PASSED] drm_gem_shmem_test_vmap
[09:10:52] [PASSED] drm_gem_shmem_test_get_sg_table
[09:10:52] [PASSED] drm_gem_shmem_test_get_pages_sgt
[09:10:52] [PASSED] drm_gem_shmem_test_madvise
[09:10:52] [PASSED] drm_gem_shmem_test_purge
[09:10:52] ================== [PASSED] drm_gem_shmem ==================
[09:10:52] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[09:10:52] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[09:10:52] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[09:10:52] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[09:10:52] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[09:10:52] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[09:10:52] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[09:10:52] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420  =======
[09:10:52] [PASSED] Automatic
[09:10:52] [PASSED] Full
[09:10:52] [PASSED] Limited 16:235
[09:10:52] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[09:10:52] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[09:10:52] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[09:10:52] [PASSED] drm_test_check_disable_connector
[09:10:52] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[09:10:52] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[09:10:52] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[09:10:52] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[09:10:52] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[09:10:52] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[09:10:52] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[09:10:52] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[09:10:52] [PASSED] drm_test_check_output_bpc_dvi
[09:10:52] [PASSED] drm_test_check_output_bpc_format_vic_1
[09:10:52] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[09:10:52] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[09:10:52] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[09:10:52] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[09:10:52] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[09:10:52] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[09:10:52] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[09:10:52] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[09:10:52] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[09:10:52] [PASSED] drm_test_check_broadcast_rgb_value
[09:10:52] [PASSED] drm_test_check_bpc_8_value
[09:10:52] [PASSED] drm_test_check_bpc_10_value
[09:10:52] [PASSED] drm_test_check_bpc_12_value
[09:10:52] [PASSED] drm_test_check_format_value
[09:10:52] [PASSED] drm_test_check_tmds_char_value
[09:10:52] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[09:10:52] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[09:10:52] [PASSED] drm_test_check_mode_valid
[09:10:52] [PASSED] drm_test_check_mode_valid_reject
[09:10:52] [PASSED] drm_test_check_mode_valid_reject_rate
[09:10:52] [PASSED] drm_test_check_mode_valid_reject_max_clock
[09:10:52] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[09:10:52] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[09:10:52] [PASSED] drm_test_check_infoframes
[09:10:52] [PASSED] drm_test_check_reject_avi_infoframe
[09:10:52] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[09:10:52] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[09:10:52] [PASSED] drm_test_check_reject_audio_infoframe
[09:10:52] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[09:10:52] ================= drm_managed (2 subtests) =================
[09:10:52] [PASSED] drm_test_managed_release_action
[09:10:52] [PASSED] drm_test_managed_run_action
[09:10:52] =================== [PASSED] drm_managed ===================
[09:10:52] =================== drm_mm (6 subtests) ====================
[09:10:52] [PASSED] drm_test_mm_init
[09:10:52] [PASSED] drm_test_mm_debug
[09:10:52] [PASSED] drm_test_mm_align32
[09:10:52] [PASSED] drm_test_mm_align64
[09:10:52] [PASSED] drm_test_mm_lowest
[09:10:52] [PASSED] drm_test_mm_highest
[09:10:52] ===================== [PASSED] drm_mm ======================
[09:10:52] ============= drm_modes_analog_tv (5 subtests) =============
[09:10:52] [PASSED] drm_test_modes_analog_tv_mono_576i
[09:10:52] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[09:10:52] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[09:10:52] [PASSED] drm_test_modes_analog_tv_pal_576i
[09:10:52] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[09:10:52] =============== [PASSED] drm_modes_analog_tv ===============
[09:10:52] ============== drm_plane_helper (2 subtests) ===============
[09:10:52] =============== drm_test_check_plane_state  ================
[09:10:52] [PASSED] clipping_simple
[09:10:52] [PASSED] clipping_rotate_reflect
[09:10:52] [PASSED] positioning_simple
[09:10:52] [PASSED] upscaling
[09:10:52] [PASSED] downscaling
[09:10:52] [PASSED] rounding1
[09:10:52] [PASSED] rounding2
[09:10:52] [PASSED] rounding3
[09:10:52] [PASSED] rounding4
[09:10:52] =========== [PASSED] drm_test_check_plane_state ============
[09:10:52] =========== drm_test_check_invalid_plane_state  ============
[09:10:52] [PASSED] positioning_invalid
[09:10:52] [PASSED] upscaling_invalid
[09:10:52] [PASSED] downscaling_invalid
[09:10:52] ======= [PASSED] drm_test_check_invalid_plane_state ========
[09:10:52] ================ [PASSED] drm_plane_helper =================
[09:10:52] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[09:10:52] ====== drm_test_connector_helper_tv_get_modes_check  =======
[09:10:52] [PASSED] None
[09:10:52] [PASSED] PAL
[09:10:52] [PASSED] NTSC
[09:10:52] [PASSED] Both, NTSC Default
[09:10:52] [PASSED] Both, PAL Default
[09:10:52] [PASSED] Both, NTSC Default, with PAL on command-line
[09:10:52] [PASSED] Both, PAL Default, with NTSC on command-line
[09:10:52] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[09:10:52] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[09:10:52] ================== drm_rect (9 subtests) ===================
[09:10:52] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[09:10:52] [PASSED] drm_test_rect_clip_scaled_not_clipped
[09:10:52] [PASSED] drm_test_rect_clip_scaled_clipped
[09:10:52] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[09:10:52] ================= drm_test_rect_intersect  =================
[09:10:52] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[09:10:52] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[09:10:52] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[09:10:52] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[09:10:52] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[09:10:52] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[09:10:52] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[09:10:52] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[09:10:52] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[09:10:52] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[09:10:52] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[09:10:52] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[09:10:52] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[09:10:52] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[09:10:52] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
stty: 'standard input': Inappropriate ioctl for device
[09:10:52] ============= [PASSED] drm_test_rect_intersect =============
[09:10:52] ================ drm_test_rect_calc_hscale  ================
[09:10:52] [PASSED] normal use
[09:10:52] [PASSED] out of max range
[09:10:52] [PASSED] out of min range
[09:10:52] [PASSED] zero dst
[09:10:52] [PASSED] negative src
[09:10:52] [PASSED] negative dst
[09:10:52] ============ [PASSED] drm_test_rect_calc_hscale ============
[09:10:52] ================ drm_test_rect_calc_vscale  ================
[09:10:52] [PASSED] normal use
[09:10:52] [PASSED] out of max range
[09:10:52] [PASSED] out of min range
[09:10:52] [PASSED] zero dst
[09:10:52] [PASSED] negative src
[09:10:52] [PASSED] negative dst
[09:10:52] ============ [PASSED] drm_test_rect_calc_vscale ============
[09:10:52] ================== drm_test_rect_rotate  ===================
[09:10:52] [PASSED] reflect-x
[09:10:52] [PASSED] reflect-y
[09:10:52] [PASSED] rotate-0
[09:10:52] [PASSED] rotate-90
[09:10:52] [PASSED] rotate-180
[09:10:52] [PASSED] rotate-270
[09:10:52] ============== [PASSED] drm_test_rect_rotate ===============
[09:10:52] ================ drm_test_rect_rotate_inv  =================
[09:10:52] [PASSED] reflect-x
[09:10:52] [PASSED] reflect-y
[09:10:52] [PASSED] rotate-0
[09:10:52] [PASSED] rotate-90
[09:10:52] [PASSED] rotate-180
[09:10:52] [PASSED] rotate-270
[09:10:52] ============ [PASSED] drm_test_rect_rotate_inv =============
[09:10:52] ==================== [PASSED] drm_rect =====================
[09:10:52] ============ drm_sysfb_modeset_test (1 subtest) ============
[09:10:52] ============ drm_test_sysfb_build_fourcc_list  =============
[09:10:52] [PASSED] no native formats
[09:10:52] [PASSED] XRGB8888 as native format
[09:10:52] [PASSED] remove duplicates
[09:10:52] [PASSED] convert alpha formats
[09:10:52] [PASSED] random formats
[09:10:52] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[09:10:52] ============= [PASSED] drm_sysfb_modeset_test ==============
[09:10:52] ================== drm_fixp (2 subtests) ===================
[09:10:52] [PASSED] drm_test_int2fixp
[09:10:52] [PASSED] drm_test_sm2fixp
[09:10:52] ==================== [PASSED] drm_fixp =====================
[09:10:52] ============================================================
[09:10:52] Testing complete. Ran 630 tests: passed: 630
[09:10:52] Elapsed time: 32.642s total, 1.631s configuring, 30.594s building, 0.404s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[09:10:52] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[09:10:54] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=25
[09:11:03] Starting KUnit Kernel (1/1)...
[09:11:03] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[09:11:03] ================= ttm_device (5 subtests) ==================
[09:11:03] [PASSED] ttm_device_init_basic
[09:11:03] [PASSED] ttm_device_init_multiple
[09:11:03] [PASSED] ttm_device_fini_basic
[09:11:03] [PASSED] ttm_device_init_no_vma_man
[09:11:03] ================== ttm_device_init_pools  ==================
[09:11:03] [PASSED] No DMA allocations, no DMA32 required
[09:11:03] [PASSED] DMA allocations, DMA32 required
[09:11:03] [PASSED] No DMA allocations, DMA32 required
[09:11:03] [PASSED] DMA allocations, no DMA32 required
[09:11:03] ============== [PASSED] ttm_device_init_pools ==============
[09:11:03] =================== [PASSED] ttm_device ====================
[09:11:03] ================== ttm_pool (8 subtests) ===================
[09:11:03] ================== ttm_pool_alloc_basic  ===================
[09:11:03] [PASSED] One page
[09:11:03] [PASSED] More than one page
[09:11:03] [PASSED] Above the allocation limit
[09:11:03] [PASSED] One page, with coherent DMA mappings enabled
[09:11:03] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[09:11:03] ============== [PASSED] ttm_pool_alloc_basic ===============
[09:11:03] ============== ttm_pool_alloc_basic_dma_addr  ==============
[09:11:03] [PASSED] One page
[09:11:03] [PASSED] More than one page
[09:11:03] [PASSED] Above the allocation limit
[09:11:03] [PASSED] One page, with coherent DMA mappings enabled
[09:11:03] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[09:11:03] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[09:11:03] [PASSED] ttm_pool_alloc_order_caching_match
[09:11:03] [PASSED] ttm_pool_alloc_caching_mismatch
[09:11:03] [PASSED] ttm_pool_alloc_order_mismatch
[09:11:03] [PASSED] ttm_pool_free_dma_alloc
[09:11:03] [PASSED] ttm_pool_free_no_dma_alloc
[09:11:03] [PASSED] ttm_pool_fini_basic
[09:11:03] ==================== [PASSED] ttm_pool =====================
[09:11:03] ================ ttm_resource (8 subtests) =================
[09:11:03] ================= ttm_resource_init_basic  =================
[09:11:03] [PASSED] Init resource in TTM_PL_SYSTEM
[09:11:03] [PASSED] Init resource in TTM_PL_VRAM
[09:11:03] [PASSED] Init resource in a private placement
[09:11:03] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[09:11:03] ============= [PASSED] ttm_resource_init_basic =============
[09:11:03] [PASSED] ttm_resource_init_pinned
[09:11:03] [PASSED] ttm_resource_fini_basic
[09:11:03] [PASSED] ttm_resource_manager_init_basic
[09:11:03] [PASSED] ttm_resource_manager_usage_basic
[09:11:03] [PASSED] ttm_resource_manager_set_used_basic
[09:11:03] [PASSED] ttm_sys_man_alloc_basic
[09:11:03] [PASSED] ttm_sys_man_free_basic
[09:11:03] ================== [PASSED] ttm_resource ===================
[09:11:03] =================== ttm_tt (15 subtests) ===================
[09:11:03] ==================== ttm_tt_init_basic  ====================
[09:11:03] [PASSED] Page-aligned size
[09:11:03] [PASSED] Extra pages requested
[09:11:03] ================ [PASSED] ttm_tt_init_basic ================
[09:11:03] [PASSED] ttm_tt_init_misaligned
[09:11:03] [PASSED] ttm_tt_fini_basic
[09:11:03] [PASSED] ttm_tt_fini_sg
[09:11:03] [PASSED] ttm_tt_fini_shmem
[09:11:03] [PASSED] ttm_tt_create_basic
[09:11:03] [PASSED] ttm_tt_create_invalid_bo_type
[09:11:03] [PASSED] ttm_tt_create_ttm_exists
[09:11:03] [PASSED] ttm_tt_create_failed
[09:11:03] [PASSED] ttm_tt_destroy_basic
[09:11:03] [PASSED] ttm_tt_populate_null_ttm
[09:11:03] [PASSED] ttm_tt_populate_populated_ttm
[09:11:03] [PASSED] ttm_tt_unpopulate_basic
[09:11:03] [PASSED] ttm_tt_unpopulate_empty_ttm
[09:11:03] [PASSED] ttm_tt_swapin_basic
[09:11:03] ===================== [PASSED] ttm_tt ======================
[09:11:03] =================== ttm_bo (14 subtests) ===================
[09:11:03] =========== ttm_bo_reserve_optimistic_no_ticket  ===========
[09:11:03] [PASSED] Cannot be interrupted and sleeps
[09:11:03] [PASSED] Cannot be interrupted, locks straight away
[09:11:03] [PASSED] Can be interrupted, sleeps
[09:11:03] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[09:11:03] [PASSED] ttm_bo_reserve_locked_no_sleep
[09:11:03] [PASSED] ttm_bo_reserve_no_wait_ticket
[09:11:03] [PASSED] ttm_bo_reserve_double_resv
[09:11:03] [PASSED] ttm_bo_reserve_interrupted
[09:11:03] [PASSED] ttm_bo_reserve_deadlock
[09:11:03] [PASSED] ttm_bo_unreserve_basic
[09:11:03] [PASSED] ttm_bo_unreserve_pinned
[09:11:03] [PASSED] ttm_bo_unreserve_bulk
[09:11:03] [PASSED] ttm_bo_fini_basic
[09:11:03] [PASSED] ttm_bo_fini_shared_resv
[09:11:03] [PASSED] ttm_bo_pin_basic
[09:11:03] [PASSED] ttm_bo_pin_unpin_resource
[09:11:03] [PASSED] ttm_bo_multiple_pin_one_unpin
[09:11:03] ===================== [PASSED] ttm_bo ======================
[09:11:03] ============== ttm_bo_validate (21 subtests) ===============
[09:11:03] ============== ttm_bo_init_reserved_sys_man  ===============
[09:11:03] [PASSED] Buffer object for userspace
[09:11:03] [PASSED] Kernel buffer object
[09:11:03] [PASSED] Shared buffer object
[09:11:03] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[09:11:03] ============== ttm_bo_init_reserved_mock_man  ==============
[09:11:03] [PASSED] Buffer object for userspace
[09:11:03] [PASSED] Kernel buffer object
[09:11:03] [PASSED] Shared buffer object
[09:11:03] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[09:11:03] [PASSED] ttm_bo_init_reserved_resv
[09:11:03] ================== ttm_bo_validate_basic  ==================
[09:11:03] [PASSED] Buffer object for userspace
[09:11:03] [PASSED] Kernel buffer object
[09:11:03] [PASSED] Shared buffer object
[09:11:03] ============== [PASSED] ttm_bo_validate_basic ==============
[09:11:03] [PASSED] ttm_bo_validate_invalid_placement
[09:11:03] ============= ttm_bo_validate_same_placement  ==============
[09:11:03] [PASSED] System manager
[09:11:03] [PASSED] VRAM manager
[09:11:03] ========= [PASSED] ttm_bo_validate_same_placement ==========
[09:11:03] [PASSED] ttm_bo_validate_failed_alloc
[09:11:03] [PASSED] ttm_bo_validate_pinned
[09:11:03] [PASSED] ttm_bo_validate_busy_placement
[09:11:03] ================ ttm_bo_validate_multihop  =================
[09:11:03] [PASSED] Buffer object for userspace
[09:11:03] [PASSED] Kernel buffer object
[09:11:03] [PASSED] Shared buffer object
[09:11:03] ============ [PASSED] ttm_bo_validate_multihop =============
[09:11:03] ========== ttm_bo_validate_no_placement_signaled  ==========
[09:11:03] [PASSED] Buffer object in system domain, no page vector
[09:11:03] [PASSED] Buffer object in system domain with an existing page vector
[09:11:03] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[09:11:03] ======== ttm_bo_validate_no_placement_not_signaled  ========
[09:11:03] [PASSED] Buffer object for userspace
[09:11:03] [PASSED] Kernel buffer object
[09:11:03] [PASSED] Shared buffer object
[09:11:03] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[09:11:03] [PASSED] ttm_bo_validate_move_fence_signaled
[09:11:03] ========= ttm_bo_validate_move_fence_not_signaled  =========
[09:11:03] [PASSED] Waits for GPU
[09:11:03] [PASSED] Tries to lock straight away
[09:11:03] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[09:11:03] [PASSED] ttm_bo_validate_happy_evict
[09:11:03] [PASSED] ttm_bo_validate_all_pinned_evict
[09:11:03] [PASSED] ttm_bo_validate_allowed_only_evict
[09:11:03] [PASSED] ttm_bo_validate_deleted_evict
[09:11:03] [PASSED] ttm_bo_validate_busy_domain_evict
[09:11:03] [PASSED] ttm_bo_validate_evict_gutting
[09:11:03] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[09:11:03] ================= [PASSED] ttm_bo_validate =================
[09:11:03] ============================================================
[09:11:03] Testing complete. Ran 101 tests: passed: 101
[09:11:03] Elapsed time: 11.165s total, 1.626s configuring, 9.323s building, 0.177s running

+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel



^ permalink raw reply	[flat|nested] 10+ messages in thread

* ✓ Xe.CI.BAT: success for drm/xe/ptl: Disable DCC on PTL (rev5)
  2026-01-24  0:59 [PATCH v4] drm/xe/ptl: Disable DCC on PTL Vinay Belgaumkar
                   ` (4 preceding siblings ...)
  2026-01-26  9:11 ` Patchwork
@ 2026-01-26  9:54 ` Patchwork
  2026-01-26 11:33 ` ✓ Xe.CI.Full: " Patchwork
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-01-26  9:54 UTC (permalink / raw)
  To: Vinay Belgaumkar; +Cc: intel-xe

[-- Attachment #1: Type: text/plain, Size: 11437 bytes --]

== Series Details ==

Series: drm/xe/ptl: Disable DCC on PTL (rev5)
URL   : https://patchwork.freedesktop.org/series/160388/
State : success

== Summary ==

CI Bug Log - changes from xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9_FULL -> xe-pw-160388v5_FULL
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (2 -> 2)
------------------------------

  No changes in participating hosts

Known issues
------------

  Here are the changes found in xe-pw-160388v5_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_big_fb@y-tiled-32bpp-rotate-270:
    - shard-bmg:          NOTRUN -> [SKIP][1] ([Intel XE#1124])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][2] ([Intel XE#2887])
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs.html

  * igt@kms_content_protection@type1:
    - shard-bmg:          NOTRUN -> [SKIP][3] ([Intel XE#2341])
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@kms_content_protection@type1.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-blt:
    - shard-lnl:          NOTRUN -> [SKIP][4] ([Intel XE#656])
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-lnl-3/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][5] ([Intel XE#2311]) +1 other test skip
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render:
    - shard-lnl:          NOTRUN -> [SKIP][6] ([Intel XE#7061])
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-argb161616f-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][7] ([Intel XE#7061])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][8] ([Intel XE#2313])
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@kms_frontbuffer_tracking@psr-suspend.html

  * igt@kms_plane_multiple@2x-tiling-4:
    - shard-bmg:          [PASS][9] -> [ABORT][10] ([Intel XE#5175])
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-4.html
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-4.html

  * igt@kms_plane_multiple@2x-tiling-4@pipe-d-hdmi-a-3-pipe-a-dp-2:
    - shard-bmg:          [PASS][11] -> [ABORT][12] ([Intel XE#1727])
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-4@pipe-d-hdmi-a-3-pipe-a-dp-2.html
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-4@pipe-d-hdmi-a-3-pipe-a-dp-2.html

  * igt@kms_plane_multiple@2x-tiling-4@pipe-d-hdmi-a-3-pipe-b-dp-2:
    - shard-bmg:          [PASS][13] -> [INCOMPLETE][14] ([Intel XE#6652])
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-4@pipe-d-hdmi-a-3-pipe-b-dp-2.html
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-4@pipe-d-hdmi-a-3-pipe-b-dp-2.html

  * igt@kms_pm_rpm@dpms-mode-unset-lpsp:
    - shard-bmg:          NOTRUN -> [SKIP][15] ([Intel XE#1439] / [Intel XE#836])
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html

  * igt@kms_sharpness_filter@invalid-plane-with-filter@pipe-a-edp-1-invalid-plane-with-filter:
    - shard-lnl:          [PASS][16] -> [DMESG-WARN][17] ([Intel XE#4537]) +1 other test dmesg-warn
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9/shard-lnl-5/igt@kms_sharpness_filter@invalid-plane-with-filter@pipe-a-edp-1-invalid-plane-with-filter.html
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-lnl-7/igt@kms_sharpness_filter@invalid-plane-with-filter@pipe-a-edp-1-invalid-plane-with-filter.html

  * igt@kms_vrr@max-min:
    - shard-bmg:          NOTRUN -> [SKIP][18] ([Intel XE#1499])
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@kms_vrr@max-min.html

  * igt@xe_evict@evict-mixed-many-threads-small:
    - shard-bmg:          [PASS][19] -> [INCOMPLETE][20] ([Intel XE#6321])
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9/shard-bmg-8/igt@xe_evict@evict-mixed-many-threads-small.html
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-1/igt@xe_evict@evict-mixed-many-threads-small.html

  * igt@xe_exec_multi_queue@many-execs-close-fd-smem:
    - shard-bmg:          NOTRUN -> [SKIP][21] ([Intel XE#6874])
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@xe_exec_multi_queue@many-execs-close-fd-smem.html

  * igt@xe_exec_system_allocator@once-mmap-new-huge:
    - shard-bmg:          NOTRUN -> [SKIP][22] ([Intel XE#4943])
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@xe_exec_system_allocator@once-mmap-new-huge.html

  * igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-file:
    - shard-lnl:          [PASS][23] -> [DMESG-WARN][24] ([Intel XE#7063])
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9/shard-lnl-8/igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-file.html
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-lnl-5/igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-file.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge-nomemset:
    - shard-lnl:          NOTRUN -> [SKIP][25] ([Intel XE#4943])
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-lnl-3/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge-nomemset.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-shared-remap:
    - shard-bmg:          [PASS][26] -> [ABORT][27] ([Intel XE#5545])
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9/shard-bmg-10/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-shared-remap.html
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-2/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-shared-remap.html

  * igt@xe_pm@s3-d3cold-basic-exec:
    - shard-bmg:          NOTRUN -> [SKIP][28] ([Intel XE#2284])
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@xe_pm@s3-d3cold-basic-exec.html

  
#### Possible fixes ####

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic:
    - shard-bmg:          [FAIL][29] ([Intel XE#4633]) -> [PASS][30]
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-9/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
    - shard-bmg:          [FAIL][31] ([Intel XE#5299]) -> [PASS][32]
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9/shard-bmg-9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html

  * igt@xe_vm@large-binds-16777216:
    - shard-bmg:          [INCOMPLETE][33] ([Intel XE#2594]) -> [PASS][34]
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9/shard-bmg-7/igt@xe_vm@large-binds-16777216.html
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@xe_vm@large-binds-16777216.html

  
#### Warnings ####

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-bmg:          [SKIP][35] ([Intel XE#2426]) -> [FAIL][36] ([Intel XE#1729])
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern.html
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern.html

  
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
  [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [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#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#4537]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4537
  [Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633
  [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
  [Intel XE#5175]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5175
  [Intel XE#5299]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5299
  [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
  [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
  [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#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
  [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
  [Intel XE#7063]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7063
  [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836


Build changes
-------------

  * Linux: xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9 -> xe-pw-160388v5

  IGT_8716: 8716
  xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9: a47173257e3d0aeae02f59baad97046bee0b7ce9
  xe-pw-160388v5: 160388v5

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/index.html

[-- Attachment #2: Type: text/html, Size: 12686 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* ✓ Xe.CI.Full: success for drm/xe/ptl: Disable DCC on PTL (rev5)
  2026-01-24  0:59 [PATCH v4] drm/xe/ptl: Disable DCC on PTL Vinay Belgaumkar
                   ` (5 preceding siblings ...)
  2026-01-26  9:54 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-01-26 11:33 ` Patchwork
  2026-01-26 11:42 ` Patchwork
  2026-01-26 21:39 ` [PATCH v4] drm/xe/ptl: Disable DCC on PTL Rodrigo Vivi
  8 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-01-26 11:33 UTC (permalink / raw)
  To: Vinay Belgaumkar; +Cc: intel-xe

[-- Attachment #1: Type: text/plain, Size: 23379 bytes --]

== Series Details ==

Series: drm/xe/ptl: Disable DCC on PTL (rev5)
URL   : https://patchwork.freedesktop.org/series/160388/
State : success

== Summary ==

CI Bug Log - changes from xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9_FULL -> xe-pw-160388v5_FULL
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (2 -> 2)
------------------------------

  No changes in participating hosts

Known issues
------------

  Here are the changes found in xe-pw-160388v5_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_big_fb@y-tiled-32bpp-rotate-270:
    - shard-bmg:          NOTRUN -> [SKIP][1] ([Intel XE#1124])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][2] ([Intel XE#2887])
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs.html

  * igt@kms_content_protection@type1:
    - shard-bmg:          NOTRUN -> [SKIP][3] ([Intel XE#2341])
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@kms_content_protection@type1.html

  * igt@kms_cursor_edge_walk@256x256-top-edge@pipe-d-dp-2:
    - shard-bmg:          [PASS][4] -> ([PASS][5], [FAIL][6], [PASS][7]) ([Intel XE#6841]) +1 other test ( 1 fail, 2 pass )
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9/shard-bmg-1/igt@kms_cursor_edge_walk@256x256-top-edge@pipe-d-dp-2.html
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-8/igt@kms_cursor_edge_walk@256x256-top-edge@pipe-d-dp-2.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-2/igt@kms_cursor_edge_walk@256x256-top-edge@pipe-d-dp-2.html
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-9/igt@kms_cursor_edge_walk@256x256-top-edge@pipe-d-dp-2.html

  * igt@kms_dsc@dsc-basic:
    - shard-bmg:          NOTRUN -> [SKIP][8] ([Intel XE#2244])
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@kms_dsc@dsc-basic.html

  * igt@kms_flip@2x-flip-vs-expired-vblank:
    - shard-bmg:          [PASS][9] -> ([FAIL][10], [PASS][11], [PASS][12]) ([Intel XE#3321]) +1 other test ( 1 fail, 2 pass )
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9/shard-bmg-10/igt@kms_flip@2x-flip-vs-expired-vblank.html
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank.html
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank.html
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-9/igt@kms_flip@2x-flip-vs-expired-vblank.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-blt:
    - shard-lnl:          NOTRUN -> ([SKIP][13], [SKIP][14]) ([Intel XE#656])
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-lnl-3/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-blt.html
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-lnl-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][15] ([Intel XE#7061]) +1 other test skip
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][16] ([Intel XE#2311]) +1 other test skip
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render:
    - shard-lnl:          NOTRUN -> ([SKIP][17], [SKIP][18]) ([Intel XE#7061])
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render.html
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][19] ([Intel XE#2313]) +4 other tests skip
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html

  * igt@kms_plane_multiple@2x-tiling-4:
    - shard-bmg:          [PASS][20] -> ([ABORT][21], [PASS][22], [PASS][23]) ([Intel XE#5175])
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-4.html
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-4.html
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-4.html
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-9/igt@kms_plane_multiple@2x-tiling-4.html

  * igt@kms_plane_multiple@2x-tiling-4@pipe-d-hdmi-a-3-pipe-a-dp-2:
    - shard-bmg:          [PASS][24] -> ([PASS][25], [ABORT][26], [PASS][27]) ([Intel XE#1727])
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-4@pipe-d-hdmi-a-3-pipe-a-dp-2.html
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-9/igt@kms_plane_multiple@2x-tiling-4@pipe-d-hdmi-a-3-pipe-a-dp-2.html
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-4@pipe-d-hdmi-a-3-pipe-a-dp-2.html
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-4@pipe-d-hdmi-a-3-pipe-a-dp-2.html

  * igt@kms_plane_multiple@2x-tiling-4@pipe-d-hdmi-a-3-pipe-b-dp-2:
    - shard-bmg:          [PASS][28] -> ([PASS][29], [PASS][30], [INCOMPLETE][31]) ([Intel XE#6652])
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-4@pipe-d-hdmi-a-3-pipe-b-dp-2.html
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-4@pipe-d-hdmi-a-3-pipe-b-dp-2.html
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-9/igt@kms_plane_multiple@2x-tiling-4@pipe-d-hdmi-a-3-pipe-b-dp-2.html
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-4@pipe-d-hdmi-a-3-pipe-b-dp-2.html

  * igt@kms_pm_rpm@dpms-mode-unset-lpsp:
    - shard-bmg:          NOTRUN -> [SKIP][32] ([Intel XE#1439] / [Intel XE#836])
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html

  * igt@kms_sharpness_filter@filter-dpms:
    - shard-bmg:          NOTRUN -> [SKIP][33] ([Intel XE#6503])
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@kms_sharpness_filter@filter-dpms.html

  * igt@kms_sharpness_filter@invalid-plane-with-filter@pipe-a-edp-1-invalid-plane-with-filter:
    - shard-lnl:          [PASS][34] -> ([DMESG-WARN][35], [PASS][36], [DMESG-WARN][37]) ([Intel XE#4537]) +1 other test ( 2 dmesg-warn, 1 pass )
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9/shard-lnl-5/igt@kms_sharpness_filter@invalid-plane-with-filter@pipe-a-edp-1-invalid-plane-with-filter.html
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-lnl-7/igt@kms_sharpness_filter@invalid-plane-with-filter@pipe-a-edp-1-invalid-plane-with-filter.html
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-lnl-4/igt@kms_sharpness_filter@invalid-plane-with-filter@pipe-a-edp-1-invalid-plane-with-filter.html
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-lnl-8/igt@kms_sharpness_filter@invalid-plane-with-filter@pipe-a-edp-1-invalid-plane-with-filter.html

  * igt@kms_vrr@max-min:
    - shard-bmg:          NOTRUN -> [SKIP][38] ([Intel XE#1499])
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@kms_vrr@max-min.html

  * igt@xe_eudebug_online@single-step-one:
    - shard-bmg:          NOTRUN -> [SKIP][39] ([Intel XE#4837] / [Intel XE#6665])
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@xe_eudebug_online@single-step-one.html

  * igt@xe_evict@evict-mixed-many-threads-small:
    - shard-bmg:          [PASS][40] -> ([PASS][41], [INCOMPLETE][42]) ([Intel XE#6321])
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9/shard-bmg-8/igt@xe_evict@evict-mixed-many-threads-small.html
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@xe_evict@evict-mixed-many-threads-small.html
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-1/igt@xe_evict@evict-mixed-many-threads-small.html

  * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][43] ([Intel XE#2322])
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind.html

  * igt@xe_exec_multi_queue@many-execs-close-fd-smem:
    - shard-bmg:          NOTRUN -> [SKIP][44] ([Intel XE#6874])
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@xe_exec_multi_queue@many-execs-close-fd-smem.html

  * igt@xe_exec_system_allocator@once-mmap-new-huge:
    - shard-bmg:          NOTRUN -> [SKIP][45] ([Intel XE#4943]) +1 other test skip
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@xe_exec_system_allocator@once-mmap-new-huge.html

  * igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-file:
    - shard-lnl:          [PASS][46] -> ([DMESG-WARN][47], [DMESG-WARN][48]) ([Intel XE#7063])
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9/shard-lnl-8/igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-file.html
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-lnl-2/igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-file.html
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-lnl-5/igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-file.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge-nomemset:
    - shard-lnl:          NOTRUN -> ([SKIP][49], [SKIP][50]) ([Intel XE#4943])
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-lnl-5/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge-nomemset.html
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-lnl-3/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge-nomemset.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-shared-remap:
    - shard-bmg:          [PASS][51] -> ([PASS][52], [PASS][53], [ABORT][54]) ([Intel XE#5545])
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9/shard-bmg-10/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-shared-remap.html
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-7/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-shared-remap.html
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-3/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-shared-remap.html
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-2/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-shared-remap.html

  * igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][55] ([Intel XE#7138]) +1 other test skip
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-rebind.html

  * igt@xe_pm@s3-d3cold-basic-exec:
    - shard-bmg:          NOTRUN -> [SKIP][56] ([Intel XE#2284])
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@xe_pm@s3-d3cold-basic-exec.html

  * igt@xe_pxp@pxp-optout:
    - shard-bmg:          NOTRUN -> [SKIP][57] ([Intel XE#4733])
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@xe_pxp@pxp-optout.html

  
#### Possible fixes ####

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
    - shard-bmg:          [FAIL][58] ([Intel XE#5299]) -> ([PASS][59], [PASS][60], [PASS][61])
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9/shard-bmg-9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html

  * igt@xe_vm@large-binds-16777216:
    - shard-bmg:          [INCOMPLETE][62] ([Intel XE#2594]) -> [PASS][63]
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9/shard-bmg-7/igt@xe_vm@large-binds-16777216.html
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@xe_vm@large-binds-16777216.html

  
#### Warnings ####

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic:
    - shard-bmg:          [FAIL][64] ([Intel XE#4633]) -> ([PASS][65], [FAIL][66], [PASS][67]) ([Intel XE#4633])
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-9/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@flip-vs-cursor-legacy:
    - shard-bmg:          [FAIL][68] ([Intel XE#5299]) -> ([FAIL][69], [PASS][70]) ([Intel XE#5299])
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html

  * igt@kms_cursor_legacy@flip-vs-cursor-toggle:
    - shard-bmg:          [DMESG-WARN][71] ([Intel XE#5354]) -> ([DMESG-WARN][72], [DMESG-WARN][73], [PASS][74]) ([Intel XE#5354])
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9/shard-bmg-9/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-9/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-bmg:          [INCOMPLETE][75] ([Intel XE#2049] / [Intel XE#2597]) -> ([INCOMPLETE][76], [PASS][77]) ([Intel XE#2049] / [Intel XE#2597]) +1 other test ( 1 incomplete, 1 pass )
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9/shard-bmg-8/igt@kms_flip@flip-vs-suspend.html
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-1/igt@kms_flip@flip-vs-suspend.html
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff:
    - shard-lnl:          [DMESG-WARN][78] ([Intel XE#7063]) -> ([DMESG-WARN][79], [PASS][80]) ([Intel XE#7063])
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9/shard-lnl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff.html
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-lnl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff.html
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-lnl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-bmg:          [SKIP][81] ([Intel XE#3374] / [Intel XE#3544]) -> ([SKIP][82], [SKIP][83]) ([Intel XE#3544])
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9/shard-bmg-3/igt@kms_hdr@brightness-with-hdr.html
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-9/igt@kms_hdr@brightness-with-hdr.html
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-2/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_hdr@invalid-hdr:
    - shard-bmg:          [SKIP][84] ([Intel XE#1503]) -> ([SKIP][85], [PASS][86], [PASS][87]) ([Intel XE#1503])
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9/shard-bmg-2/igt@kms_hdr@invalid-hdr.html
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-4/igt@kms_hdr@invalid-hdr.html
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-1/igt@kms_hdr@invalid-hdr.html
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-7/igt@kms_hdr@invalid-hdr.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-bmg:          [SKIP][88] ([Intel XE#2426]) -> ([FAIL][89], [FAIL][90]) ([Intel XE#1729])
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern.html
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern.html
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          [SKIP][91] ([Intel XE#2509]) -> ([SKIP][92], [SKIP][93], [SKIP][94]) ([Intel XE#2426] / [Intel XE#2509])
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
  [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#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
  [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
  [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#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
  [Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594
  [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
  [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
  [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
  [Intel XE#4537]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4537
  [Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
  [Intel XE#5175]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5175
  [Intel XE#5299]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5299
  [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#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
  [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
  [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#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
  [Intel XE#6841]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6841
  [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
  [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
  [Intel XE#7063]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7063
  [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
  [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836


Build changes
-------------

  * Linux: xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9 -> xe-pw-160388v5

  IGT_8716: 8716
  xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9: a47173257e3d0aeae02f59baad97046bee0b7ce9
  xe-pw-160388v5: 160388v5

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/index.html

[-- Attachment #2: Type: text/html, Size: 25745 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* ✓ Xe.CI.Full: success for drm/xe/ptl: Disable DCC on PTL (rev5)
  2026-01-24  0:59 [PATCH v4] drm/xe/ptl: Disable DCC on PTL Vinay Belgaumkar
                   ` (6 preceding siblings ...)
  2026-01-26 11:33 ` ✓ Xe.CI.Full: " Patchwork
@ 2026-01-26 11:42 ` Patchwork
  2026-01-26 21:39 ` [PATCH v4] drm/xe/ptl: Disable DCC on PTL Rodrigo Vivi
  8 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-01-26 11:42 UTC (permalink / raw)
  To: Vinay Belgaumkar; +Cc: intel-xe

[-- Attachment #1: Type: text/plain, Size: 23379 bytes --]

== Series Details ==

Series: drm/xe/ptl: Disable DCC on PTL (rev5)
URL   : https://patchwork.freedesktop.org/series/160388/
State : success

== Summary ==

CI Bug Log - changes from xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9_FULL -> xe-pw-160388v5_FULL
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (2 -> 2)
------------------------------

  No changes in participating hosts

Known issues
------------

  Here are the changes found in xe-pw-160388v5_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_big_fb@y-tiled-32bpp-rotate-270:
    - shard-bmg:          NOTRUN -> [SKIP][1] ([Intel XE#1124])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][2] ([Intel XE#2887])
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs.html

  * igt@kms_content_protection@type1:
    - shard-bmg:          NOTRUN -> [SKIP][3] ([Intel XE#2341])
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@kms_content_protection@type1.html

  * igt@kms_cursor_edge_walk@256x256-top-edge@pipe-d-dp-2:
    - shard-bmg:          [PASS][4] -> ([PASS][5], [FAIL][6], [PASS][7]) ([Intel XE#6841]) +1 other test ( 1 fail, 2 pass )
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9/shard-bmg-1/igt@kms_cursor_edge_walk@256x256-top-edge@pipe-d-dp-2.html
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-8/igt@kms_cursor_edge_walk@256x256-top-edge@pipe-d-dp-2.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-2/igt@kms_cursor_edge_walk@256x256-top-edge@pipe-d-dp-2.html
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-9/igt@kms_cursor_edge_walk@256x256-top-edge@pipe-d-dp-2.html

  * igt@kms_dsc@dsc-basic:
    - shard-bmg:          NOTRUN -> [SKIP][8] ([Intel XE#2244])
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@kms_dsc@dsc-basic.html

  * igt@kms_flip@2x-flip-vs-expired-vblank:
    - shard-bmg:          [PASS][9] -> ([FAIL][10], [PASS][11], [PASS][12]) ([Intel XE#3321]) +1 other test ( 1 fail, 2 pass )
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9/shard-bmg-10/igt@kms_flip@2x-flip-vs-expired-vblank.html
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank.html
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank.html
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-9/igt@kms_flip@2x-flip-vs-expired-vblank.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-blt:
    - shard-lnl:          NOTRUN -> ([SKIP][13], [SKIP][14]) ([Intel XE#656])
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-lnl-3/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-blt.html
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-lnl-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][15] ([Intel XE#7061]) +1 other test skip
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][16] ([Intel XE#2311]) +1 other test skip
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render:
    - shard-lnl:          NOTRUN -> ([SKIP][17], [SKIP][18]) ([Intel XE#7061])
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render.html
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][19] ([Intel XE#2313]) +4 other tests skip
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html

  * igt@kms_plane_multiple@2x-tiling-4:
    - shard-bmg:          [PASS][20] -> ([ABORT][21], [PASS][22], [PASS][23]) ([Intel XE#5175])
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-4.html
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-4.html
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-4.html
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-9/igt@kms_plane_multiple@2x-tiling-4.html

  * igt@kms_plane_multiple@2x-tiling-4@pipe-d-hdmi-a-3-pipe-a-dp-2:
    - shard-bmg:          [PASS][24] -> ([PASS][25], [ABORT][26], [PASS][27]) ([Intel XE#1727])
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-4@pipe-d-hdmi-a-3-pipe-a-dp-2.html
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-9/igt@kms_plane_multiple@2x-tiling-4@pipe-d-hdmi-a-3-pipe-a-dp-2.html
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-4@pipe-d-hdmi-a-3-pipe-a-dp-2.html
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-4@pipe-d-hdmi-a-3-pipe-a-dp-2.html

  * igt@kms_plane_multiple@2x-tiling-4@pipe-d-hdmi-a-3-pipe-b-dp-2:
    - shard-bmg:          [PASS][28] -> ([PASS][29], [PASS][30], [INCOMPLETE][31]) ([Intel XE#6652])
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-4@pipe-d-hdmi-a-3-pipe-b-dp-2.html
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-4@pipe-d-hdmi-a-3-pipe-b-dp-2.html
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-9/igt@kms_plane_multiple@2x-tiling-4@pipe-d-hdmi-a-3-pipe-b-dp-2.html
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-4@pipe-d-hdmi-a-3-pipe-b-dp-2.html

  * igt@kms_pm_rpm@dpms-mode-unset-lpsp:
    - shard-bmg:          NOTRUN -> [SKIP][32] ([Intel XE#1439] / [Intel XE#836])
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html

  * igt@kms_sharpness_filter@filter-dpms:
    - shard-bmg:          NOTRUN -> [SKIP][33] ([Intel XE#6503])
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@kms_sharpness_filter@filter-dpms.html

  * igt@kms_sharpness_filter@invalid-plane-with-filter@pipe-a-edp-1-invalid-plane-with-filter:
    - shard-lnl:          [PASS][34] -> ([DMESG-WARN][35], [PASS][36], [DMESG-WARN][37]) ([Intel XE#4537]) +1 other test ( 2 dmesg-warn, 1 pass )
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9/shard-lnl-5/igt@kms_sharpness_filter@invalid-plane-with-filter@pipe-a-edp-1-invalid-plane-with-filter.html
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-lnl-7/igt@kms_sharpness_filter@invalid-plane-with-filter@pipe-a-edp-1-invalid-plane-with-filter.html
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-lnl-4/igt@kms_sharpness_filter@invalid-plane-with-filter@pipe-a-edp-1-invalid-plane-with-filter.html
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-lnl-8/igt@kms_sharpness_filter@invalid-plane-with-filter@pipe-a-edp-1-invalid-plane-with-filter.html

  * igt@kms_vrr@max-min:
    - shard-bmg:          NOTRUN -> [SKIP][38] ([Intel XE#1499])
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@kms_vrr@max-min.html

  * igt@xe_eudebug_online@single-step-one:
    - shard-bmg:          NOTRUN -> [SKIP][39] ([Intel XE#4837] / [Intel XE#6665])
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@xe_eudebug_online@single-step-one.html

  * igt@xe_evict@evict-mixed-many-threads-small:
    - shard-bmg:          [PASS][40] -> ([PASS][41], [INCOMPLETE][42]) ([Intel XE#6321])
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9/shard-bmg-8/igt@xe_evict@evict-mixed-many-threads-small.html
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@xe_evict@evict-mixed-many-threads-small.html
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-1/igt@xe_evict@evict-mixed-many-threads-small.html

  * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][43] ([Intel XE#2322])
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind.html

  * igt@xe_exec_multi_queue@many-execs-close-fd-smem:
    - shard-bmg:          NOTRUN -> [SKIP][44] ([Intel XE#6874])
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@xe_exec_multi_queue@many-execs-close-fd-smem.html

  * igt@xe_exec_system_allocator@once-mmap-new-huge:
    - shard-bmg:          NOTRUN -> [SKIP][45] ([Intel XE#4943]) +1 other test skip
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@xe_exec_system_allocator@once-mmap-new-huge.html

  * igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-file:
    - shard-lnl:          [PASS][46] -> ([DMESG-WARN][47], [DMESG-WARN][48]) ([Intel XE#7063])
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9/shard-lnl-8/igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-file.html
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-lnl-2/igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-file.html
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-lnl-5/igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-file.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge-nomemset:
    - shard-lnl:          NOTRUN -> ([SKIP][49], [SKIP][50]) ([Intel XE#4943])
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-lnl-5/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge-nomemset.html
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-lnl-3/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge-nomemset.html

  * igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-shared-remap:
    - shard-bmg:          [PASS][51] -> ([PASS][52], [PASS][53], [ABORT][54]) ([Intel XE#5545])
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9/shard-bmg-10/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-shared-remap.html
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-7/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-shared-remap.html
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-3/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-shared-remap.html
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-2/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-shared-remap.html

  * igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][55] ([Intel XE#7138]) +1 other test skip
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-rebind.html

  * igt@xe_pm@s3-d3cold-basic-exec:
    - shard-bmg:          NOTRUN -> [SKIP][56] ([Intel XE#2284])
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@xe_pm@s3-d3cold-basic-exec.html

  * igt@xe_pxp@pxp-optout:
    - shard-bmg:          NOTRUN -> [SKIP][57] ([Intel XE#4733])
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@xe_pxp@pxp-optout.html

  
#### Possible fixes ####

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
    - shard-bmg:          [FAIL][58] ([Intel XE#5299]) -> ([PASS][59], [PASS][60], [PASS][61])
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9/shard-bmg-9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html

  * igt@xe_vm@large-binds-16777216:
    - shard-bmg:          [INCOMPLETE][62] ([Intel XE#2594]) -> [PASS][63]
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9/shard-bmg-7/igt@xe_vm@large-binds-16777216.html
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@xe_vm@large-binds-16777216.html

  
#### Warnings ####

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic:
    - shard-bmg:          [FAIL][64] ([Intel XE#4633]) -> ([PASS][65], [FAIL][66], [PASS][67]) ([Intel XE#4633])
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-9/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@flip-vs-cursor-legacy:
    - shard-bmg:          [FAIL][68] ([Intel XE#5299]) -> ([FAIL][69], [PASS][70]) ([Intel XE#5299])
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html

  * igt@kms_cursor_legacy@flip-vs-cursor-toggle:
    - shard-bmg:          [DMESG-WARN][71] ([Intel XE#5354]) -> ([DMESG-WARN][72], [DMESG-WARN][73], [PASS][74]) ([Intel XE#5354])
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9/shard-bmg-9/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-9/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-bmg:          [INCOMPLETE][75] ([Intel XE#2049] / [Intel XE#2597]) -> ([INCOMPLETE][76], [PASS][77]) ([Intel XE#2049] / [Intel XE#2597]) +1 other test ( 1 incomplete, 1 pass )
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9/shard-bmg-8/igt@kms_flip@flip-vs-suspend.html
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-1/igt@kms_flip@flip-vs-suspend.html
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff:
    - shard-lnl:          [DMESG-WARN][78] ([Intel XE#7063]) -> ([DMESG-WARN][79], [PASS][80]) ([Intel XE#7063])
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9/shard-lnl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff.html
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-lnl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff.html
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-lnl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-bmg:          [SKIP][81] ([Intel XE#3374] / [Intel XE#3544]) -> ([SKIP][82], [SKIP][83]) ([Intel XE#3544])
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9/shard-bmg-3/igt@kms_hdr@brightness-with-hdr.html
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-9/igt@kms_hdr@brightness-with-hdr.html
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-2/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_hdr@invalid-hdr:
    - shard-bmg:          [SKIP][84] ([Intel XE#1503]) -> ([SKIP][85], [PASS][86], [PASS][87]) ([Intel XE#1503])
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9/shard-bmg-2/igt@kms_hdr@invalid-hdr.html
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-4/igt@kms_hdr@invalid-hdr.html
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-1/igt@kms_hdr@invalid-hdr.html
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-7/igt@kms_hdr@invalid-hdr.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-bmg:          [SKIP][88] ([Intel XE#2426]) -> ([FAIL][89], [FAIL][90]) ([Intel XE#1729])
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern.html
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern.html
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          [SKIP][91] ([Intel XE#2509]) -> ([SKIP][92], [SKIP][93], [SKIP][94]) ([Intel XE#2426] / [Intel XE#2509])
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
  [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#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
  [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
  [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#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
  [Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594
  [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
  [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
  [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
  [Intel XE#4537]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4537
  [Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
  [Intel XE#5175]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5175
  [Intel XE#5299]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5299
  [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#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
  [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
  [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#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
  [Intel XE#6841]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6841
  [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
  [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
  [Intel XE#7063]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7063
  [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
  [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836


Build changes
-------------

  * Linux: xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9 -> xe-pw-160388v5

  IGT_8716: 8716
  xe-4443-a47173257e3d0aeae02f59baad97046bee0b7ce9: a47173257e3d0aeae02f59baad97046bee0b7ce9
  xe-pw-160388v5: 160388v5

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160388v5/index.html

[-- Attachment #2: Type: text/html, Size: 25745 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH v4] drm/xe/ptl: Disable DCC on PTL
  2026-01-24  0:59 [PATCH v4] drm/xe/ptl: Disable DCC on PTL Vinay Belgaumkar
                   ` (7 preceding siblings ...)
  2026-01-26 11:42 ` Patchwork
@ 2026-01-26 21:39 ` Rodrigo Vivi
  8 siblings, 0 replies; 10+ messages in thread
From: Rodrigo Vivi @ 2026-01-26 21:39 UTC (permalink / raw)
  To: Vinay Belgaumkar; +Cc: intel-xe, Daniele Ceraolo Spurio

On Fri, Jan 23, 2026 at 04:59:17PM -0800, Vinay Belgaumkar wrote:
> On PTL, the recommendation is to disable DCC(Duty Cycle Control) as
> it may cause some regressions due to added latencies. Upcoming GuC
> releases will disable DCC on PTL as well, but we need to force it in
> KMD so that this behavior is propagated to older kernels.
> 
> v2: Update commit message (Rodrigo)
> v3: Rebase
> v4: Fix BAT issue

Since the only real change in v4 was the typo, I have modified this
note while pushing the patch.

Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
and pushed

Thanks,
Rodrigo.

> 
> Fixes: 5cdb71d3b0db ("drm/xe/ptl: Add GuC FW definition for PTL")
> Cc: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
> Signed-off-by: Vinay Belgaumkar<vinay.belgaumkar@intel.com>
> ---
>  drivers/gpu/drm/xe/xe_guc_pc.c | 34 ++++++++++++++++++++++++++++++++++
>  1 file changed, 34 insertions(+)
> 
> diff --git a/drivers/gpu/drm/xe/xe_guc_pc.c b/drivers/gpu/drm/xe/xe_guc_pc.c
> index 54702a0fd05b..5e5495a39a3c 100644
> --- a/drivers/gpu/drm/xe/xe_guc_pc.c
> +++ b/drivers/gpu/drm/xe/xe_guc_pc.c
> @@ -1198,6 +1198,36 @@ int xe_guc_pc_set_power_profile(struct xe_guc_pc *pc, const char *buf)
>  	return ret;
>  }
>  
> +static int pc_action_set_dcc(struct xe_guc_pc *pc, bool enable)
> +{
> +	int ret;
> +
> +	ret = pc_action_set_param(pc,
> +				  SLPC_PARAM_TASK_ENABLE_DCC,
> +				  enable);
> +	if (!ret)
> +		return pc_action_set_param(pc,
> +					   SLPC_PARAM_TASK_DISABLE_DCC,
> +					   !enable);
> +	else
> +		return ret;
> +}
> +
> +static int pc_modify_defaults(struct xe_guc_pc *pc)
> +{
> +	struct xe_device *xe = pc_to_xe(pc);
> +	struct xe_gt *gt = pc_to_gt(pc);
> +	int ret = 0;
> +
> +	if (xe->info.platform == XE_PANTHERLAKE) {
> +		ret = pc_action_set_dcc(pc, false);
> +		if (unlikely(ret))
> +			xe_gt_err(gt, "Failed to modify DCC default: %pe\n", ERR_PTR(ret));
> +	}
> +
> +	return ret;
> +}
> +
>  /**
>   * xe_guc_pc_start - Start GuC's Power Conservation component
>   * @pc: Xe_GuC_PC instance
> @@ -1249,6 +1279,10 @@ int xe_guc_pc_start(struct xe_guc_pc *pc)
>  			   ktime_ms_delta(ktime_get(), earlier));
>  	}
>  
> +	ret = pc_modify_defaults(pc);
> +	if (ret)
> +		return ret;
> +
>  	ret = pc_init_freqs(pc);
>  	if (ret)
>  		return ret;
> -- 
> 2.38.1
> 

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2026-01-26 21:39 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-01-24  0:59 [PATCH v4] drm/xe/ptl: Disable DCC on PTL Vinay Belgaumkar
2026-01-24  1:09 ` ✓ CI.KUnit: success for drm/xe/ptl: Disable DCC on PTL (rev5) Patchwork
2026-01-24  9:09 ` ✗ Xe.CI.Full: failure " Patchwork
2026-01-26  8:01 ` ✓ CI.KUnit: success " Patchwork
2026-01-26  8:26 ` Patchwork
2026-01-26  9:11 ` Patchwork
2026-01-26  9:54 ` ✓ Xe.CI.BAT: " Patchwork
2026-01-26 11:33 ` ✓ Xe.CI.Full: " Patchwork
2026-01-26 11:42 ` Patchwork
2026-01-26 21:39 ` [PATCH v4] drm/xe/ptl: Disable DCC on PTL Rodrigo Vivi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox