Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/xe/guc: Eliminate RPe caching for SLPC parameter handling
@ 2025-10-13  6:42 Sk Anirban
  2025-10-13  7:12 ` ✓ CI.KUnit: success for " Patchwork
                   ` (8 more replies)
  0 siblings, 9 replies; 14+ messages in thread
From: Sk Anirban @ 2025-10-13  6:42 UTC (permalink / raw)
  To: intel-xe
  Cc: anshuman.gupta, badal.nilawar, riana.tauro, karthik.poosa,
	raag.jadav, soham.purkait, mallesh.koujalagi, vinay.belgaumkar,
	rodrigo.vivi, Sk Anirban

RPe is runtime-determined by PCODE and caching it caused stale values,
leading to incorrect GuC SLPC parameter settings.
Drop the cached rpe_freq field and query fresh values from hardware
on each use to ensure GuC SLPC parameters reflect current RPe.

v2: Remove cached RPe frequency field (Rodrigo)

Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/5166
Signed-off-by: Sk Anirban <sk.anirban@intel.com>
---
 drivers/gpu/drm/xe/xe_guc_pc.c       | 36 +++++++++++++++-------------
 drivers/gpu/drm/xe/xe_guc_pc_types.h |  2 --
 2 files changed, 20 insertions(+), 18 deletions(-)

diff --git a/drivers/gpu/drm/xe/xe_guc_pc.c b/drivers/gpu/drm/xe/xe_guc_pc.c
index 3c0feb50a1e2..2d1d5121555e 100644
--- a/drivers/gpu/drm/xe/xe_guc_pc.c
+++ b/drivers/gpu/drm/xe/xe_guc_pc.c
@@ -330,7 +330,7 @@ static int pc_set_min_freq(struct xe_guc_pc *pc, u32 freq)
 	 * Our goal is to have the admin choices respected.
 	 */
 	pc_action_set_param(pc, SLPC_PARAM_IGNORE_EFFICIENT_FREQUENCY,
-			    freq < pc->rpe_freq);
+			    freq < xe_guc_pc_get_rpe_freq(pc));
 
 	return pc_action_set_param(pc,
 				   SLPC_PARAM_GLOBAL_MIN_GT_UNSLICE_FREQ_MHZ,
@@ -375,7 +375,7 @@ static void mtl_update_rpa_value(struct xe_guc_pc *pc)
 	pc->rpa_freq = decode_freq(REG_FIELD_GET(MTL_RPA_MASK, reg));
 }
 
-static void mtl_update_rpe_value(struct xe_guc_pc *pc)
+static u32 mtl_get_rpe_value(struct xe_guc_pc *pc)
 {
 	struct xe_gt *gt = pc_to_gt(pc);
 	u32 reg;
@@ -385,7 +385,7 @@ static void mtl_update_rpe_value(struct xe_guc_pc *pc)
 	else
 		reg = xe_mmio_read32(&gt->mmio, MTL_GT_RPE_FREQUENCY);
 
-	pc->rpe_freq = decode_freq(REG_FIELD_GET(MTL_RPE_MASK, reg));
+	return decode_freq(REG_FIELD_GET(MTL_RPE_MASK, reg));
 }
 
 static void tgl_update_rpa_value(struct xe_guc_pc *pc)
@@ -408,7 +408,7 @@ static void tgl_update_rpa_value(struct xe_guc_pc *pc)
 	}
 }
 
-static void tgl_update_rpe_value(struct xe_guc_pc *pc)
+static u32 tgl_get_rpe_value(struct xe_guc_pc *pc)
 {
 	struct xe_gt *gt = pc_to_gt(pc);
 	struct xe_device *xe = gt_to_xe(gt);
@@ -421,10 +421,10 @@ static void tgl_update_rpe_value(struct xe_guc_pc *pc)
 	 */
 	if (xe->info.platform == XE_PVC) {
 		reg = xe_mmio_read32(&gt->mmio, PVC_RP_STATE_CAP);
-		pc->rpe_freq = REG_FIELD_GET(RP1_MASK, reg) * GT_FREQUENCY_MULTIPLIER;
+		return REG_FIELD_GET(RP1_MASK, reg) * GT_FREQUENCY_MULTIPLIER;
 	} else {
 		reg = xe_mmio_read32(&gt->mmio, FREQ_INFO_REC);
-		pc->rpe_freq = REG_FIELD_GET(RPE_MASK, reg) * GT_FREQUENCY_MULTIPLIER;
+		return REG_FIELD_GET(RPE_MASK, reg) * GT_FREQUENCY_MULTIPLIER;
 	}
 }
 
@@ -433,20 +433,17 @@ static void pc_update_rp_values(struct xe_guc_pc *pc)
 	struct xe_gt *gt = pc_to_gt(pc);
 	struct xe_device *xe = gt_to_xe(gt);
 
-	if (GRAPHICS_VERx100(xe) >= 1270) {
+	if (GRAPHICS_VERx100(xe) >= 1270)
 		mtl_update_rpa_value(pc);
-		mtl_update_rpe_value(pc);
-	} else {
+	else
 		tgl_update_rpa_value(pc);
-		tgl_update_rpe_value(pc);
-	}
 
 	/*
 	 * RPe is decided at runtime by PCODE. In the rare case where that's
 	 * smaller than the fused min, we will trust the PCODE and use that
 	 * as our minimum one.
 	 */
-	pc->rpn_freq = min(pc->rpn_freq, pc->rpe_freq);
+	pc->rpn_freq = min(pc->rpn_freq, xe_guc_pc_get_rpe_freq(pc));
 }
 
 /**
@@ -560,9 +557,16 @@ u32 xe_guc_pc_get_rpa_freq(struct xe_guc_pc *pc)
  */
 u32 xe_guc_pc_get_rpe_freq(struct xe_guc_pc *pc)
 {
-	pc_update_rp_values(pc);
+	struct xe_gt *gt = pc_to_gt(pc);
+	struct xe_device *xe = gt_to_xe(gt);
+	u32 rpe_freq;
+
+	if (GRAPHICS_VERx100(xe) >= 1270)
+		rpe_freq = mtl_get_rpe_value(pc);
+	else
+		rpe_freq = tgl_get_rpe_value(pc);
 
-	return pc->rpe_freq;
+	return rpe_freq;
 }
 
 /**
@@ -1021,7 +1025,7 @@ static int pc_set_mert_freq_cap(struct xe_guc_pc *pc)
 	/*
 	 * Ensure min and max are bound by MERT_FREQ_CAP until driver loads.
 	 */
-	ret = pc_set_min_freq(pc, min(pc->rpe_freq, pc_max_freq_cap(pc)));
+	ret = pc_set_min_freq(pc, min(xe_guc_pc_get_rpe_freq(pc), pc_max_freq_cap(pc)));
 	if (!ret)
 		ret = pc_set_max_freq(pc, min(pc->rp0_freq, pc_max_freq_cap(pc)));
 
@@ -1339,7 +1343,7 @@ static void xe_guc_pc_fini_hw(void *arg)
 	XE_WARN_ON(xe_guc_pc_stop(pc));
 
 	/* Bind requested freq to mert_freq_cap before unload */
-	pc_set_cur_freq(pc, min(pc_max_freq_cap(pc), pc->rpe_freq));
+	pc_set_cur_freq(pc, min(pc_max_freq_cap(pc), xe_guc_pc_get_rpe_freq(pc)));
 
 	xe_force_wake_put(gt_to_fw(pc_to_gt(pc)), fw_ref);
 }
diff --git a/drivers/gpu/drm/xe/xe_guc_pc_types.h b/drivers/gpu/drm/xe/xe_guc_pc_types.h
index 5e4ea53fbee6..f27c05d81706 100644
--- a/drivers/gpu/drm/xe/xe_guc_pc_types.h
+++ b/drivers/gpu/drm/xe/xe_guc_pc_types.h
@@ -21,8 +21,6 @@ struct xe_guc_pc {
 	u32 rp0_freq;
 	/** @rpa_freq: HW RPa frequency - The Achievable one */
 	u32 rpa_freq;
-	/** @rpe_freq: HW RPe frequency - The Efficient one */
-	u32 rpe_freq;
 	/** @rpn_freq: HW RPN frequency - The Minimum one */
 	u32 rpn_freq;
 	/** @user_requested_min: Stash the minimum requested freq by user */
-- 
2.43.0


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

* ✓ CI.KUnit: success for drm/xe/guc: Eliminate RPe caching for SLPC parameter handling
  2025-10-13  6:42 [PATCH] drm/xe/guc: Eliminate RPe caching for SLPC parameter handling Sk Anirban
@ 2025-10-13  7:12 ` Patchwork
  2025-10-13  7:55 ` ✓ Xe.CI.BAT: " Patchwork
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-10-13  7:12 UTC (permalink / raw)
  To: Sk Anirban; +Cc: intel-xe

== Series Details ==

Series: drm/xe/guc: Eliminate RPe caching for SLPC parameter handling
URL   : https://patchwork.freedesktop.org/series/155809/
State : success

== Summary ==

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

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

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

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



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

* ✓ Xe.CI.BAT: success for drm/xe/guc: Eliminate RPe caching for SLPC parameter handling
  2025-10-13  6:42 [PATCH] drm/xe/guc: Eliminate RPe caching for SLPC parameter handling Sk Anirban
  2025-10-13  7:12 ` ✓ CI.KUnit: success for " Patchwork
@ 2025-10-13  7:55 ` Patchwork
  2025-10-13  8:36 ` ✓ Xe.CI.Full: " Patchwork
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-10-13  7:55 UTC (permalink / raw)
  To: Sk Anirban; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe/guc: Eliminate RPe caching for SLPC parameter handling
URL   : https://patchwork.freedesktop.org/series/155809/
State : success

== Summary ==

CI Bug Log - changes from xe-3904-085518a4da5bcf9b68ef798e27ef71d64443aad7_BAT -> xe-pw-155809v1_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (11 -> 11)
------------------------------

  No changes in participating hosts

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

  Here are the changes found in xe-pw-155809v1_BAT that come from known issues:

### IGT changes ###

  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [Intel XE#6287]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6287


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

  * Linux: xe-3904-085518a4da5bcf9b68ef798e27ef71d64443aad7 -> xe-pw-155809v1

  IGT_8582: 8582
  xe-3904-085518a4da5bcf9b68ef798e27ef71d64443aad7: 085518a4da5bcf9b68ef798e27ef71d64443aad7
  xe-pw-155809v1: 155809v1

== Logs ==

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

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

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

* ✓ Xe.CI.Full: success for drm/xe/guc: Eliminate RPe caching for SLPC parameter handling
  2025-10-13  6:42 [PATCH] drm/xe/guc: Eliminate RPe caching for SLPC parameter handling Sk Anirban
  2025-10-13  7:12 ` ✓ CI.KUnit: success for " Patchwork
  2025-10-13  7:55 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-10-13  8:36 ` Patchwork
  2025-10-13 20:05 ` [PATCH] " Rodrigo Vivi
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-10-13  8:36 UTC (permalink / raw)
  To: Sk Anirban; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe/guc: Eliminate RPe caching for SLPC parameter handling
URL   : https://patchwork.freedesktop.org/series/155809/
State : success

== Summary ==

CI Bug Log - changes from xe-3904-085518a4da5bcf9b68ef798e27ef71d64443aad7_FULL -> xe-pw-155809v1_FULL
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (4 -> 4)
------------------------------

  No changes in participating hosts


Changes
-------

  No changes found


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

  * Linux: xe-3904-085518a4da5bcf9b68ef798e27ef71d64443aad7 -> xe-pw-155809v1

  IGT_8582: 8582
  xe-3904-085518a4da5bcf9b68ef798e27ef71d64443aad7: 085518a4da5bcf9b68ef798e27ef71d64443aad7
  xe-pw-155809v1: 155809v1

== Logs ==

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

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

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

* Re: [PATCH] drm/xe/guc: Eliminate RPe caching for SLPC parameter handling
  2025-10-13  6:42 [PATCH] drm/xe/guc: Eliminate RPe caching for SLPC parameter handling Sk Anirban
                   ` (2 preceding siblings ...)
  2025-10-13  8:36 ` ✓ Xe.CI.Full: " Patchwork
@ 2025-10-13 20:05 ` Rodrigo Vivi
  2025-10-13 20:11   ` Anirban, Sk
  2025-10-14 19:34   ` Anirban, Sk
  2025-10-13 22:35 ` ✓ CI.KUnit: success for drm/xe/guc: Eliminate RPe caching for SLPC parameter handling (rev2) Patchwork
                   ` (4 subsequent siblings)
  8 siblings, 2 replies; 14+ messages in thread
From: Rodrigo Vivi @ 2025-10-13 20:05 UTC (permalink / raw)
  To: Sk Anirban
  Cc: intel-xe, anshuman.gupta, badal.nilawar, riana.tauro,
	karthik.poosa, raag.jadav, soham.purkait, mallesh.koujalagi,
	vinay.belgaumkar

On Mon, Oct 13, 2025 at 12:12:15PM +0530, Sk Anirban wrote:
> RPe is runtime-determined by PCODE and caching it caused stale values,
> leading to incorrect GuC SLPC parameter settings.
> Drop the cached rpe_freq field and query fresh values from hardware
> on each use to ensure GuC SLPC parameters reflect current RPe.
> 
> v2: Remove cached RPe frequency field (Rodrigo)
> 
> Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/5166

Is it passing cleanly the igt/tests/intel/xe_gt_freq ?

Thanks,
Rodrigo.

> Signed-off-by: Sk Anirban <sk.anirban@intel.com>
> ---
>  drivers/gpu/drm/xe/xe_guc_pc.c       | 36 +++++++++++++++-------------
>  drivers/gpu/drm/xe/xe_guc_pc_types.h |  2 --
>  2 files changed, 20 insertions(+), 18 deletions(-)
> 
> diff --git a/drivers/gpu/drm/xe/xe_guc_pc.c b/drivers/gpu/drm/xe/xe_guc_pc.c
> index 3c0feb50a1e2..2d1d5121555e 100644
> --- a/drivers/gpu/drm/xe/xe_guc_pc.c
> +++ b/drivers/gpu/drm/xe/xe_guc_pc.c
> @@ -330,7 +330,7 @@ static int pc_set_min_freq(struct xe_guc_pc *pc, u32 freq)
>  	 * Our goal is to have the admin choices respected.
>  	 */
>  	pc_action_set_param(pc, SLPC_PARAM_IGNORE_EFFICIENT_FREQUENCY,
> -			    freq < pc->rpe_freq);
> +			    freq < xe_guc_pc_get_rpe_freq(pc));
>  
>  	return pc_action_set_param(pc,
>  				   SLPC_PARAM_GLOBAL_MIN_GT_UNSLICE_FREQ_MHZ,
> @@ -375,7 +375,7 @@ static void mtl_update_rpa_value(struct xe_guc_pc *pc)
>  	pc->rpa_freq = decode_freq(REG_FIELD_GET(MTL_RPA_MASK, reg));
>  }
>  
> -static void mtl_update_rpe_value(struct xe_guc_pc *pc)
> +static u32 mtl_get_rpe_value(struct xe_guc_pc *pc)
>  {
>  	struct xe_gt *gt = pc_to_gt(pc);
>  	u32 reg;
> @@ -385,7 +385,7 @@ static void mtl_update_rpe_value(struct xe_guc_pc *pc)
>  	else
>  		reg = xe_mmio_read32(&gt->mmio, MTL_GT_RPE_FREQUENCY);
>  
> -	pc->rpe_freq = decode_freq(REG_FIELD_GET(MTL_RPE_MASK, reg));
> +	return decode_freq(REG_FIELD_GET(MTL_RPE_MASK, reg));
>  }
>  
>  static void tgl_update_rpa_value(struct xe_guc_pc *pc)
> @@ -408,7 +408,7 @@ static void tgl_update_rpa_value(struct xe_guc_pc *pc)
>  	}
>  }
>  
> -static void tgl_update_rpe_value(struct xe_guc_pc *pc)
> +static u32 tgl_get_rpe_value(struct xe_guc_pc *pc)
>  {
>  	struct xe_gt *gt = pc_to_gt(pc);
>  	struct xe_device *xe = gt_to_xe(gt);
> @@ -421,10 +421,10 @@ static void tgl_update_rpe_value(struct xe_guc_pc *pc)
>  	 */
>  	if (xe->info.platform == XE_PVC) {
>  		reg = xe_mmio_read32(&gt->mmio, PVC_RP_STATE_CAP);
> -		pc->rpe_freq = REG_FIELD_GET(RP1_MASK, reg) * GT_FREQUENCY_MULTIPLIER;
> +		return REG_FIELD_GET(RP1_MASK, reg) * GT_FREQUENCY_MULTIPLIER;
>  	} else {
>  		reg = xe_mmio_read32(&gt->mmio, FREQ_INFO_REC);
> -		pc->rpe_freq = REG_FIELD_GET(RPE_MASK, reg) * GT_FREQUENCY_MULTIPLIER;
> +		return REG_FIELD_GET(RPE_MASK, reg) * GT_FREQUENCY_MULTIPLIER;
>  	}
>  }
>  
> @@ -433,20 +433,17 @@ static void pc_update_rp_values(struct xe_guc_pc *pc)
>  	struct xe_gt *gt = pc_to_gt(pc);
>  	struct xe_device *xe = gt_to_xe(gt);
>  
> -	if (GRAPHICS_VERx100(xe) >= 1270) {
> +	if (GRAPHICS_VERx100(xe) >= 1270)
>  		mtl_update_rpa_value(pc);
> -		mtl_update_rpe_value(pc);
> -	} else {
> +	else
>  		tgl_update_rpa_value(pc);
> -		tgl_update_rpe_value(pc);
> -	}
>  
>  	/*
>  	 * RPe is decided at runtime by PCODE. In the rare case where that's
>  	 * smaller than the fused min, we will trust the PCODE and use that
>  	 * as our minimum one.
>  	 */
> -	pc->rpn_freq = min(pc->rpn_freq, pc->rpe_freq);
> +	pc->rpn_freq = min(pc->rpn_freq, xe_guc_pc_get_rpe_freq(pc));
>  }
>  
>  /**
> @@ -560,9 +557,16 @@ u32 xe_guc_pc_get_rpa_freq(struct xe_guc_pc *pc)
>   */
>  u32 xe_guc_pc_get_rpe_freq(struct xe_guc_pc *pc)
>  {
> -	pc_update_rp_values(pc);
> +	struct xe_gt *gt = pc_to_gt(pc);
> +	struct xe_device *xe = gt_to_xe(gt);
> +	u32 rpe_freq;
> +
> +	if (GRAPHICS_VERx100(xe) >= 1270)
> +		rpe_freq = mtl_get_rpe_value(pc);
> +	else
> +		rpe_freq = tgl_get_rpe_value(pc);
>  
> -	return pc->rpe_freq;
> +	return rpe_freq;
>  }
>  
>  /**
> @@ -1021,7 +1025,7 @@ static int pc_set_mert_freq_cap(struct xe_guc_pc *pc)
>  	/*
>  	 * Ensure min and max are bound by MERT_FREQ_CAP until driver loads.
>  	 */
> -	ret = pc_set_min_freq(pc, min(pc->rpe_freq, pc_max_freq_cap(pc)));
> +	ret = pc_set_min_freq(pc, min(xe_guc_pc_get_rpe_freq(pc), pc_max_freq_cap(pc)));
>  	if (!ret)
>  		ret = pc_set_max_freq(pc, min(pc->rp0_freq, pc_max_freq_cap(pc)));
>  
> @@ -1339,7 +1343,7 @@ static void xe_guc_pc_fini_hw(void *arg)
>  	XE_WARN_ON(xe_guc_pc_stop(pc));
>  
>  	/* Bind requested freq to mert_freq_cap before unload */
> -	pc_set_cur_freq(pc, min(pc_max_freq_cap(pc), pc->rpe_freq));
> +	pc_set_cur_freq(pc, min(pc_max_freq_cap(pc), xe_guc_pc_get_rpe_freq(pc)));
>  
>  	xe_force_wake_put(gt_to_fw(pc_to_gt(pc)), fw_ref);
>  }
> diff --git a/drivers/gpu/drm/xe/xe_guc_pc_types.h b/drivers/gpu/drm/xe/xe_guc_pc_types.h
> index 5e4ea53fbee6..f27c05d81706 100644
> --- a/drivers/gpu/drm/xe/xe_guc_pc_types.h
> +++ b/drivers/gpu/drm/xe/xe_guc_pc_types.h
> @@ -21,8 +21,6 @@ struct xe_guc_pc {
>  	u32 rp0_freq;
>  	/** @rpa_freq: HW RPa frequency - The Achievable one */
>  	u32 rpa_freq;
> -	/** @rpe_freq: HW RPe frequency - The Efficient one */
> -	u32 rpe_freq;
>  	/** @rpn_freq: HW RPN frequency - The Minimum one */
>  	u32 rpn_freq;
>  	/** @user_requested_min: Stash the minimum requested freq by user */
> -- 
> 2.43.0
> 

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

* Re: [PATCH] drm/xe/guc: Eliminate RPe caching for SLPC parameter handling
  2025-10-13 20:05 ` [PATCH] " Rodrigo Vivi
@ 2025-10-13 20:11   ` Anirban, Sk
  2025-10-14 19:34   ` Anirban, Sk
  1 sibling, 0 replies; 14+ messages in thread
From: Anirban, Sk @ 2025-10-13 20:11 UTC (permalink / raw)
  To: Rodrigo Vivi
  Cc: intel-xe, anshuman.gupta, badal.nilawar, riana.tauro,
	karthik.poosa, raag.jadav, soham.purkait, mallesh.koujalagi,
	vinay.belgaumkar

Hi,

On 14-10-2025 01:35, Rodrigo Vivi wrote:
> On Mon, Oct 13, 2025 at 12:12:15PM +0530, Sk Anirban wrote:
>> RPe is runtime-determined by PCODE and caching it caused stale values,
>> leading to incorrect GuC SLPC parameter settings.
>> Drop the cached rpe_freq field and query fresh values from hardware
>> on each use to ensure GuC SLPC parameters reflect current RPe.
>>
>> v2: Remove cached RPe frequency field (Rodrigo)
>>
>> Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/5166
> Is it passing cleanly the igt/tests/intel/xe_gt_freq ?
>
> Thanks,
> Rodrigo.
The CI did not run all the tests on this patchwork. Re-testing  WIP.

Thanks,
Anirban
>
>> Signed-off-by: Sk Anirban <sk.anirban@intel.com>
>> ---
>>   drivers/gpu/drm/xe/xe_guc_pc.c       | 36 +++++++++++++++-------------
>>   drivers/gpu/drm/xe/xe_guc_pc_types.h |  2 --
>>   2 files changed, 20 insertions(+), 18 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/xe/xe_guc_pc.c b/drivers/gpu/drm/xe/xe_guc_pc.c
>> index 3c0feb50a1e2..2d1d5121555e 100644
>> --- a/drivers/gpu/drm/xe/xe_guc_pc.c
>> +++ b/drivers/gpu/drm/xe/xe_guc_pc.c
>> @@ -330,7 +330,7 @@ static int pc_set_min_freq(struct xe_guc_pc *pc, u32 freq)
>>   	 * Our goal is to have the admin choices respected.
>>   	 */
>>   	pc_action_set_param(pc, SLPC_PARAM_IGNORE_EFFICIENT_FREQUENCY,
>> -			    freq < pc->rpe_freq);
>> +			    freq < xe_guc_pc_get_rpe_freq(pc));
>>   
>>   	return pc_action_set_param(pc,
>>   				   SLPC_PARAM_GLOBAL_MIN_GT_UNSLICE_FREQ_MHZ,
>> @@ -375,7 +375,7 @@ static void mtl_update_rpa_value(struct xe_guc_pc *pc)
>>   	pc->rpa_freq = decode_freq(REG_FIELD_GET(MTL_RPA_MASK, reg));
>>   }
>>   
>> -static void mtl_update_rpe_value(struct xe_guc_pc *pc)
>> +static u32 mtl_get_rpe_value(struct xe_guc_pc *pc)
>>   {
>>   	struct xe_gt *gt = pc_to_gt(pc);
>>   	u32 reg;
>> @@ -385,7 +385,7 @@ static void mtl_update_rpe_value(struct xe_guc_pc *pc)
>>   	else
>>   		reg = xe_mmio_read32(&gt->mmio, MTL_GT_RPE_FREQUENCY);
>>   
>> -	pc->rpe_freq = decode_freq(REG_FIELD_GET(MTL_RPE_MASK, reg));
>> +	return decode_freq(REG_FIELD_GET(MTL_RPE_MASK, reg));
>>   }
>>   
>>   static void tgl_update_rpa_value(struct xe_guc_pc *pc)
>> @@ -408,7 +408,7 @@ static void tgl_update_rpa_value(struct xe_guc_pc *pc)
>>   	}
>>   }
>>   
>> -static void tgl_update_rpe_value(struct xe_guc_pc *pc)
>> +static u32 tgl_get_rpe_value(struct xe_guc_pc *pc)
>>   {
>>   	struct xe_gt *gt = pc_to_gt(pc);
>>   	struct xe_device *xe = gt_to_xe(gt);
>> @@ -421,10 +421,10 @@ static void tgl_update_rpe_value(struct xe_guc_pc *pc)
>>   	 */
>>   	if (xe->info.platform == XE_PVC) {
>>   		reg = xe_mmio_read32(&gt->mmio, PVC_RP_STATE_CAP);
>> -		pc->rpe_freq = REG_FIELD_GET(RP1_MASK, reg) * GT_FREQUENCY_MULTIPLIER;
>> +		return REG_FIELD_GET(RP1_MASK, reg) * GT_FREQUENCY_MULTIPLIER;
>>   	} else {
>>   		reg = xe_mmio_read32(&gt->mmio, FREQ_INFO_REC);
>> -		pc->rpe_freq = REG_FIELD_GET(RPE_MASK, reg) * GT_FREQUENCY_MULTIPLIER;
>> +		return REG_FIELD_GET(RPE_MASK, reg) * GT_FREQUENCY_MULTIPLIER;
>>   	}
>>   }
>>   
>> @@ -433,20 +433,17 @@ static void pc_update_rp_values(struct xe_guc_pc *pc)
>>   	struct xe_gt *gt = pc_to_gt(pc);
>>   	struct xe_device *xe = gt_to_xe(gt);
>>   
>> -	if (GRAPHICS_VERx100(xe) >= 1270) {
>> +	if (GRAPHICS_VERx100(xe) >= 1270)
>>   		mtl_update_rpa_value(pc);
>> -		mtl_update_rpe_value(pc);
>> -	} else {
>> +	else
>>   		tgl_update_rpa_value(pc);
>> -		tgl_update_rpe_value(pc);
>> -	}
>>   
>>   	/*
>>   	 * RPe is decided at runtime by PCODE. In the rare case where that's
>>   	 * smaller than the fused min, we will trust the PCODE and use that
>>   	 * as our minimum one.
>>   	 */
>> -	pc->rpn_freq = min(pc->rpn_freq, pc->rpe_freq);
>> +	pc->rpn_freq = min(pc->rpn_freq, xe_guc_pc_get_rpe_freq(pc));
>>   }
>>   
>>   /**
>> @@ -560,9 +557,16 @@ u32 xe_guc_pc_get_rpa_freq(struct xe_guc_pc *pc)
>>    */
>>   u32 xe_guc_pc_get_rpe_freq(struct xe_guc_pc *pc)
>>   {
>> -	pc_update_rp_values(pc);
>> +	struct xe_gt *gt = pc_to_gt(pc);
>> +	struct xe_device *xe = gt_to_xe(gt);
>> +	u32 rpe_freq;
>> +
>> +	if (GRAPHICS_VERx100(xe) >= 1270)
>> +		rpe_freq = mtl_get_rpe_value(pc);
>> +	else
>> +		rpe_freq = tgl_get_rpe_value(pc);
>>   
>> -	return pc->rpe_freq;
>> +	return rpe_freq;
>>   }
>>   
>>   /**
>> @@ -1021,7 +1025,7 @@ static int pc_set_mert_freq_cap(struct xe_guc_pc *pc)
>>   	/*
>>   	 * Ensure min and max are bound by MERT_FREQ_CAP until driver loads.
>>   	 */
>> -	ret = pc_set_min_freq(pc, min(pc->rpe_freq, pc_max_freq_cap(pc)));
>> +	ret = pc_set_min_freq(pc, min(xe_guc_pc_get_rpe_freq(pc), pc_max_freq_cap(pc)));
>>   	if (!ret)
>>   		ret = pc_set_max_freq(pc, min(pc->rp0_freq, pc_max_freq_cap(pc)));
>>   
>> @@ -1339,7 +1343,7 @@ static void xe_guc_pc_fini_hw(void *arg)
>>   	XE_WARN_ON(xe_guc_pc_stop(pc));
>>   
>>   	/* Bind requested freq to mert_freq_cap before unload */
>> -	pc_set_cur_freq(pc, min(pc_max_freq_cap(pc), pc->rpe_freq));
>> +	pc_set_cur_freq(pc, min(pc_max_freq_cap(pc), xe_guc_pc_get_rpe_freq(pc)));
>>   
>>   	xe_force_wake_put(gt_to_fw(pc_to_gt(pc)), fw_ref);
>>   }
>> diff --git a/drivers/gpu/drm/xe/xe_guc_pc_types.h b/drivers/gpu/drm/xe/xe_guc_pc_types.h
>> index 5e4ea53fbee6..f27c05d81706 100644
>> --- a/drivers/gpu/drm/xe/xe_guc_pc_types.h
>> +++ b/drivers/gpu/drm/xe/xe_guc_pc_types.h
>> @@ -21,8 +21,6 @@ struct xe_guc_pc {
>>   	u32 rp0_freq;
>>   	/** @rpa_freq: HW RPa frequency - The Achievable one */
>>   	u32 rpa_freq;
>> -	/** @rpe_freq: HW RPe frequency - The Efficient one */
>> -	u32 rpe_freq;
>>   	/** @rpn_freq: HW RPN frequency - The Minimum one */
>>   	u32 rpn_freq;
>>   	/** @user_requested_min: Stash the minimum requested freq by user */
>> -- 
>> 2.43.0
>>


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

* ✓ CI.KUnit: success for drm/xe/guc: Eliminate RPe caching for SLPC parameter handling (rev2)
  2025-10-13  6:42 [PATCH] drm/xe/guc: Eliminate RPe caching for SLPC parameter handling Sk Anirban
                   ` (3 preceding siblings ...)
  2025-10-13 20:05 ` [PATCH] " Rodrigo Vivi
@ 2025-10-13 22:35 ` Patchwork
  2025-10-13 23:24 ` ✓ Xe.CI.BAT: " Patchwork
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-10-13 22:35 UTC (permalink / raw)
  To: Anirban, Sk; +Cc: intel-xe

== Series Details ==

Series: drm/xe/guc: Eliminate RPe caching for SLPC parameter handling (rev2)
URL   : https://patchwork.freedesktop.org/series/155809/
State : success

== Summary ==

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

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

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

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



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

* ✓ Xe.CI.BAT: success for drm/xe/guc: Eliminate RPe caching for SLPC parameter handling (rev2)
  2025-10-13  6:42 [PATCH] drm/xe/guc: Eliminate RPe caching for SLPC parameter handling Sk Anirban
                   ` (4 preceding siblings ...)
  2025-10-13 22:35 ` ✓ CI.KUnit: success for drm/xe/guc: Eliminate RPe caching for SLPC parameter handling (rev2) Patchwork
@ 2025-10-13 23:24 ` Patchwork
  2025-10-14  6:29 ` [PATCH] drm/xe/guc: Eliminate RPe caching for SLPC parameter handling Nilawar, Badal
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-10-13 23:24 UTC (permalink / raw)
  To: Anirban, Sk; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe/guc: Eliminate RPe caching for SLPC parameter handling (rev2)
URL   : https://patchwork.freedesktop.org/series/155809/
State : success

== Summary ==

CI Bug Log - changes from xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c_BAT -> xe-pw-155809v2_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (11 -> 11)
------------------------------

  No changes in participating hosts

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

  Here are the changes found in xe-pw-155809v2_BAT that come from known issues:

### IGT changes ###

  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [Intel XE#6287]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6287


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

  * Linux: xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c -> xe-pw-155809v2

  IGT_8582: 8582
  xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c: f33ccc63d84c30ee59454b6c4e9303ef36c41c0c
  xe-pw-155809v2: 155809v2

== Logs ==

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

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

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

* Re: [PATCH] drm/xe/guc: Eliminate RPe caching for SLPC parameter handling
  2025-10-13  6:42 [PATCH] drm/xe/guc: Eliminate RPe caching for SLPC parameter handling Sk Anirban
                   ` (5 preceding siblings ...)
  2025-10-13 23:24 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-10-14  6:29 ` Nilawar, Badal
  2025-10-14 19:37   ` Anirban, Sk
  2025-10-14  6:41 ` ✓ Xe.CI.Full: success for drm/xe/guc: Eliminate RPe caching for SLPC parameter handling (rev2) Patchwork
  2025-10-14 20:39 ` [PATCH] drm/xe/guc: Eliminate RPe caching for SLPC parameter handling Belgaumkar, Vinay
  8 siblings, 1 reply; 14+ messages in thread
From: Nilawar, Badal @ 2025-10-14  6:29 UTC (permalink / raw)
  To: Sk Anirban, intel-xe
  Cc: anshuman.gupta, riana.tauro, karthik.poosa, raag.jadav,
	soham.purkait, mallesh.koujalagi, vinay.belgaumkar, rodrigo.vivi


On 13-10-2025 12:12, Sk Anirban wrote:
> RPe is runtime-determined by PCODE and caching it caused stale values,
> leading to incorrect GuC SLPC parameter settings.
> Drop the cached rpe_freq field and query fresh values from hardware
> on each use to ensure GuC SLPC parameters reflect current RPe.
>
> v2: Remove cached RPe frequency field (Rodrigo)
>
> Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/5166
> Signed-off-by: Sk Anirban <sk.anirban@intel.com>
> ---
>   drivers/gpu/drm/xe/xe_guc_pc.c       | 36 +++++++++++++++-------------
>   drivers/gpu/drm/xe/xe_guc_pc_types.h |  2 --
>   2 files changed, 20 insertions(+), 18 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_guc_pc.c b/drivers/gpu/drm/xe/xe_guc_pc.c
> index 3c0feb50a1e2..2d1d5121555e 100644
> --- a/drivers/gpu/drm/xe/xe_guc_pc.c
> +++ b/drivers/gpu/drm/xe/xe_guc_pc.c
> @@ -330,7 +330,7 @@ static int pc_set_min_freq(struct xe_guc_pc *pc, u32 freq)
>   	 * Our goal is to have the admin choices respected.
>   	 */
>   	pc_action_set_param(pc, SLPC_PARAM_IGNORE_EFFICIENT_FREQUENCY,
> -			    freq < pc->rpe_freq);
> +			    freq < xe_guc_pc_get_rpe_freq(pc));
>   
>   	return pc_action_set_param(pc,
>   				   SLPC_PARAM_GLOBAL_MIN_GT_UNSLICE_FREQ_MHZ,
> @@ -375,7 +375,7 @@ static void mtl_update_rpa_value(struct xe_guc_pc *pc)
>   	pc->rpa_freq = decode_freq(REG_FIELD_GET(MTL_RPA_MASK, reg));
>   }
>   
> -static void mtl_update_rpe_value(struct xe_guc_pc *pc)
> +static u32 mtl_get_rpe_value(struct xe_guc_pc *pc)
>   {
>   	struct xe_gt *gt = pc_to_gt(pc);
>   	u32 reg;
> @@ -385,7 +385,7 @@ static void mtl_update_rpe_value(struct xe_guc_pc *pc)
>   	else
>   		reg = xe_mmio_read32(&gt->mmio, MTL_GT_RPE_FREQUENCY);
>   
> -	pc->rpe_freq = decode_freq(REG_FIELD_GET(MTL_RPE_MASK, reg));
> +	return decode_freq(REG_FIELD_GET(MTL_RPE_MASK, reg));
>   }
>   
>   static void tgl_update_rpa_value(struct xe_guc_pc *pc)
> @@ -408,7 +408,7 @@ static void tgl_update_rpa_value(struct xe_guc_pc *pc)
>   	}
>   }
>   
> -static void tgl_update_rpe_value(struct xe_guc_pc *pc)
> +static u32 tgl_get_rpe_value(struct xe_guc_pc *pc)
>   {
>   	struct xe_gt *gt = pc_to_gt(pc);
>   	struct xe_device *xe = gt_to_xe(gt);
> @@ -421,10 +421,10 @@ static void tgl_update_rpe_value(struct xe_guc_pc *pc)
>   	 */
>   	if (xe->info.platform == XE_PVC) {
>   		reg = xe_mmio_read32(&gt->mmio, PVC_RP_STATE_CAP);
> -		pc->rpe_freq = REG_FIELD_GET(RP1_MASK, reg) * GT_FREQUENCY_MULTIPLIER;
> +		return REG_FIELD_GET(RP1_MASK, reg) * GT_FREQUENCY_MULTIPLIER;
>   	} else {
>   		reg = xe_mmio_read32(&gt->mmio, FREQ_INFO_REC);
> -		pc->rpe_freq = REG_FIELD_GET(RPE_MASK, reg) * GT_FREQUENCY_MULTIPLIER;
> +		return REG_FIELD_GET(RPE_MASK, reg) * GT_FREQUENCY_MULTIPLIER;
>   	}
>   }
>   
> @@ -433,20 +433,17 @@ static void pc_update_rp_values(struct xe_guc_pc *pc)
>   	struct xe_gt *gt = pc_to_gt(pc);
>   	struct xe_device *xe = gt_to_xe(gt);
>   
> -	if (GRAPHICS_VERx100(xe) >= 1270) {
> +	if (GRAPHICS_VERx100(xe) >= 1270)
>   		mtl_update_rpa_value(pc);
> -		mtl_update_rpe_value(pc);
> -	} else {
> +	else
>   		tgl_update_rpa_value(pc);
> -		tgl_update_rpe_value(pc);
> -	}
>   
>   	/*
>   	 * RPe is decided at runtime by PCODE. In the rare case where that's
>   	 * smaller than the fused min, we will trust the PCODE and use that
>   	 * as our minimum one.
>   	 */
> -	pc->rpn_freq = min(pc->rpn_freq, pc->rpe_freq);
> +	pc->rpn_freq = min(pc->rpn_freq, xe_guc_pc_get_rpe_freq(pc));
>   }
>   
>   /**
> @@ -560,9 +557,16 @@ u32 xe_guc_pc_get_rpa_freq(struct xe_guc_pc *pc)
>    */
>   u32 xe_guc_pc_get_rpe_freq(struct xe_guc_pc *pc)
>   {
> -	pc_update_rp_values(pc);
> +	struct xe_gt *gt = pc_to_gt(pc);
> +	struct xe_device *xe = gt_to_xe(gt);
> +	u32 rpe_freq;
> +
> +	if (GRAPHICS_VERx100(xe) >= 1270)
> +		rpe_freq = mtl_get_rpe_value(pc);
> +	else
> +		rpe_freq = tgl_get_rpe_value(pc);
>   
> -	return pc->rpe_freq;
> +	return rpe_freq;
>   }
>   
>   /**
> @@ -1021,7 +1025,7 @@ static int pc_set_mert_freq_cap(struct xe_guc_pc *pc)
>   	/*
>   	 * Ensure min and max are bound by MERT_FREQ_CAP until driver loads.
>   	 */
> -	ret = pc_set_min_freq(pc, min(pc->rpe_freq, pc_max_freq_cap(pc)));
> +	ret = pc_set_min_freq(pc, min(xe_guc_pc_get_rpe_freq(pc), pc_max_freq_cap(pc)));
>   	if (!ret)
>   		ret = pc_set_max_freq(pc, min(pc->rp0_freq, pc_max_freq_cap(pc)));
>   
> @@ -1339,7 +1343,7 @@ static void xe_guc_pc_fini_hw(void *arg)
>   	XE_WARN_ON(xe_guc_pc_stop(pc));
>   
>   	/* Bind requested freq to mert_freq_cap before unload */
> -	pc_set_cur_freq(pc, min(pc_max_freq_cap(pc), pc->rpe_freq));
> +	pc_set_cur_freq(pc, min(pc_max_freq_cap(pc), xe_guc_pc_get_rpe_freq(pc)));
>   
>   	xe_force_wake_put(gt_to_fw(pc_to_gt(pc)), fw_ref);
>   }
> diff --git a/drivers/gpu/drm/xe/xe_guc_pc_types.h b/drivers/gpu/drm/xe/xe_guc_pc_types.h
> index 5e4ea53fbee6..f27c05d81706 100644
> --- a/drivers/gpu/drm/xe/xe_guc_pc_types.h
> +++ b/drivers/gpu/drm/xe/xe_guc_pc_types.h
> @@ -21,8 +21,6 @@ struct xe_guc_pc {
>   	u32 rp0_freq;
>   	/** @rpa_freq: HW RPa frequency - The Achievable one */
>   	u32 rpa_freq;

It might be worth considering avoiding the caching of rpe_freq as well.

Thanks,
Badal

> -	/** @rpe_freq: HW RPe frequency - The Efficient one */
> -	u32 rpe_freq;
>   	/** @rpn_freq: HW RPN frequency - The Minimum one */
>   	u32 rpn_freq;
>   	/** @user_requested_min: Stash the minimum requested freq by user */

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

* ✓ Xe.CI.Full: success for drm/xe/guc: Eliminate RPe caching for SLPC parameter handling (rev2)
  2025-10-13  6:42 [PATCH] drm/xe/guc: Eliminate RPe caching for SLPC parameter handling Sk Anirban
                   ` (6 preceding siblings ...)
  2025-10-14  6:29 ` [PATCH] drm/xe/guc: Eliminate RPe caching for SLPC parameter handling Nilawar, Badal
@ 2025-10-14  6:41 ` Patchwork
  2025-10-14 20:39 ` [PATCH] drm/xe/guc: Eliminate RPe caching for SLPC parameter handling Belgaumkar, Vinay
  8 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-10-14  6:41 UTC (permalink / raw)
  To: Anirban, Sk; +Cc: intel-xe

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

== Series Details ==

Series: drm/xe/guc: Eliminate RPe caching for SLPC parameter handling (rev2)
URL   : https://patchwork.freedesktop.org/series/155809/
State : success

== Summary ==

CI Bug Log - changes from xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c_FULL -> xe-pw-155809v2_FULL
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (4 -> 4)
------------------------------

  No changes in participating hosts

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

  Here are the changes found in xe-pw-155809v2_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1:
    - shard-lnl:          NOTRUN -> [FAIL][1] ([Intel XE#6054]) +3 other tests fail
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html

  * igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1:
    - shard-lnl:          [PASS][2] -> [FAIL][3] ([Intel XE#5993]) +3 other tests fail
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html

  * igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [FAIL][4] ([Intel XE#3884]) +1 other test fail
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-1/igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1.html

  * igt@kms_big_fb@4-tiled-addfb:
    - shard-adlp:         NOTRUN -> [SKIP][5] ([Intel XE#619])
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-8/igt@kms_big_fb@4-tiled-addfb.html

  * igt@kms_big_fb@linear-32bpp-rotate-90:
    - shard-adlp:         NOTRUN -> [SKIP][6] ([Intel XE#316]) +3 other tests skip
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-1/igt@kms_big_fb@linear-32bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
    - shard-adlp:         NOTRUN -> [DMESG-FAIL][7] ([Intel XE#4543]) +5 other tests dmesg-fail
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-9/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
    - shard-lnl:          NOTRUN -> [SKIP][8] ([Intel XE#1124])
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-lnl-5/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:
    - shard-adlp:         NOTRUN -> [SKIP][9] ([Intel XE#1124]) +8 other tests skip
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html

  * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
    - shard-lnl:          NOTRUN -> [SKIP][10] ([Intel XE#2191]) +1 other test skip
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-lnl-5/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html

  * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
    - shard-bmg:          [PASS][11] -> [SKIP][12] ([Intel XE#2314] / [Intel XE#2894])
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html

  * igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
    - shard-adlp:         NOTRUN -> [SKIP][13] ([Intel XE#2191])
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-9/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html

  * igt@kms_bw@linear-tiling-1-displays-2560x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][14] ([Intel XE#367])
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-bmg-1/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html

  * igt@kms_bw@linear-tiling-3-displays-2160x1440p:
    - shard-adlp:         NOTRUN -> [SKIP][15] ([Intel XE#367]) +1 other test skip
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-1/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][16] ([Intel XE#2669]) +3 other tests skip
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-lnl-5/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][17] ([Intel XE#787]) +41 other tests skip
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-8/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-1.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
    - shard-adlp:         NOTRUN -> [SKIP][18] ([Intel XE#2907]) +2 other tests skip
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][19] ([Intel XE#2887])
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-bmg-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-1:
    - shard-adlp:         NOTRUN -> [SKIP][20] ([Intel XE#455] / [Intel XE#787]) +27 other tests skip
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-1.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     [PASS][21] -> [INCOMPLETE][22] ([Intel XE#3862]) +1 other test incomplete
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
    - shard-dg2-set2:     [PASS][23] -> [INCOMPLETE][24] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345] / [Intel XE#6168])
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6:
    - shard-dg2-set2:     [PASS][25] -> [INCOMPLETE][26] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#6168])
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6.html
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
    - shard-dg2-set2:     [PASS][27] -> [INCOMPLETE][28] ([Intel XE#2705] / [Intel XE#4212] / [Intel XE#4345])
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-dp-4:
    - shard-dg2-set2:     NOTRUN -> [INCOMPLETE][29] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522] / [Intel XE#6014])
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4:
    - shard-dg2-set2:     [PASS][30] -> [INCOMPLETE][31] ([Intel XE#2705] / [Intel XE#4212])
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4.html
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2:
    - shard-bmg:          NOTRUN -> [SKIP][32] ([Intel XE#2652] / [Intel XE#787]) +7 other tests skip
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-bmg-8/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html

  * igt@kms_chamelium_color@ctm-green-to-red:
    - shard-lnl:          NOTRUN -> [SKIP][33] ([Intel XE#306])
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-lnl-5/igt@kms_chamelium_color@ctm-green-to-red.html

  * igt@kms_chamelium_color@ctm-negative:
    - shard-adlp:         NOTRUN -> [SKIP][34] ([Intel XE#306]) +1 other test skip
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-1/igt@kms_chamelium_color@ctm-negative.html

  * igt@kms_chamelium_frames@dp-crc-single:
    - shard-adlp:         NOTRUN -> [SKIP][35] ([Intel XE#373]) +6 other tests skip
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-8/igt@kms_chamelium_frames@dp-crc-single.html

  * igt@kms_chamelium_hpd@dp-hpd-after-hibernate:
    - shard-lnl:          NOTRUN -> [SKIP][36] ([Intel XE#373])
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-lnl-5/igt@kms_chamelium_hpd@dp-hpd-after-hibernate.html

  * igt@kms_content_protection@dp-mst-type-1:
    - shard-adlp:         NOTRUN -> [SKIP][37] ([Intel XE#307]) +1 other test skip
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-9/igt@kms_content_protection@dp-mst-type-1.html

  * igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][38] ([Intel XE#1178]) +3 other tests fail
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-bmg-8/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html

  * igt@kms_cursor_crc@cursor-offscreen-max-size:
    - shard-lnl:          NOTRUN -> [SKIP][39] ([Intel XE#1424])
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-lnl-5/igt@kms_cursor_crc@cursor-offscreen-max-size.html

  * igt@kms_cursor_crc@cursor-random-32x10:
    - shard-bmg:          NOTRUN -> [SKIP][40] ([Intel XE#2320])
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-bmg-1/igt@kms_cursor_crc@cursor-random-32x10.html

  * igt@kms_cursor_crc@cursor-sliding-512x170:
    - shard-adlp:         NOTRUN -> [SKIP][41] ([Intel XE#308])
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-8/igt@kms_cursor_crc@cursor-sliding-512x170.html

  * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
    - shard-lnl:          NOTRUN -> [SKIP][42] ([Intel XE#309])
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-lnl-5/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
    - shard-bmg:          [PASS][43] -> [SKIP][44] ([Intel XE#2291]) +2 other tests skip
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-bmg-3/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
    - shard-adlp:         NOTRUN -> [SKIP][45] ([Intel XE#309]) +3 other tests skip
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html

  * igt@kms_dp_link_training@uhbr-mst:
    - shard-adlp:         NOTRUN -> [SKIP][46] ([Intel XE#4356])
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-1/igt@kms_dp_link_training@uhbr-mst.html

  * igt@kms_feature_discovery@psr1:
    - shard-adlp:         NOTRUN -> [SKIP][47] ([Intel XE#1135])
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-1/igt@kms_feature_discovery@psr1.html

  * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
    - shard-adlp:         NOTRUN -> [SKIP][48] ([Intel XE#310]) +4 other tests skip
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-1/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html

  * igt@kms_flip@2x-flip-vs-dpms-on-nop:
    - shard-bmg:          [PASS][49] -> [SKIP][50] ([Intel XE#2316]) +8 other tests skip
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-bmg-2/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-bmg-4/igt@kms_flip@2x-flip-vs-dpms-on-nop.html

  * igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1:
    - shard-adlp:         [PASS][51] -> [DMESG-WARN][52] ([Intel XE#4543]) +3 other tests dmesg-warn
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-adlp-2/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-6/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html

  * igt@kms_flip@flip-vs-panning-vs-hang@d-hdmi-a1:
    - shard-adlp:         NOTRUN -> [TIMEOUT][53] ([Intel XE#4543]) +1 other test timeout
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-1/igt@kms_flip@flip-vs-panning-vs-hang@d-hdmi-a1.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-bmg:          [PASS][54] -> [INCOMPLETE][55] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-bmg-8/igt@kms_flip@flip-vs-suspend.html
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-bmg-5/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_flip@flip-vs-suspend@b-hdmi-a1:
    - shard-adlp:         NOTRUN -> [DMESG-WARN][56] ([Intel XE#4543]) +2 other tests dmesg-warn
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-8/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html

  * igt@kms_flip@flip-vs-suspend@d-dp4:
    - shard-dg2-set2:     [PASS][57] -> [INCOMPLETE][58] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-dg2-463/igt@kms_flip@flip-vs-suspend@d-dp4.html
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-dg2-433/igt@kms_flip@flip-vs-suspend@d-dp4.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
    - shard-adlp:         NOTRUN -> [SKIP][59] ([Intel XE#455]) +20 other tests skip
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode:
    - shard-adlp:         NOTRUN -> [DMESG-FAIL][60] ([Intel XE#4543] / [Intel XE#4921]) +3 other tests dmesg-fail
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
    - shard-adlp:         NOTRUN -> [SKIP][61] ([Intel XE#656]) +31 other tests skip
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-render:
    - shard-lnl:          NOTRUN -> [SKIP][62] ([Intel XE#656])
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-lnl-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff:
    - shard-bmg:          NOTRUN -> [SKIP][63] ([Intel XE#5390])
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear:
    - shard-adlp:         NOTRUN -> [SKIP][64] ([Intel XE#651]) +8 other tests skip
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-1/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt:
    - shard-adlp:         NOTRUN -> [SKIP][65] ([Intel XE#653]) +10 other tests skip
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_hdmi_inject@inject-audio:
    - shard-lnl:          NOTRUN -> [SKIP][66] ([Intel XE#1470] / [Intel XE#2853])
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-lnl-5/igt@kms_hdmi_inject@inject-audio.html

  * igt@kms_joiner@invalid-modeset-big-joiner:
    - shard-adlp:         NOTRUN -> [SKIP][67] ([Intel XE#346])
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-2/igt@kms_joiner@invalid-modeset-big-joiner.html

  * igt@kms_plane_alpha_blend@constant-alpha-min:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][68] ([Intel XE#2594])
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-bmg-2/igt@kms_plane_alpha_blend@constant-alpha-min.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25:
    - shard-lnl:          NOTRUN -> [SKIP][69] ([Intel XE#2763]) +3 other tests skip
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-lnl-5/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html

  * igt@kms_pm_backlight@brightness-with-dpms:
    - shard-adlp:         NOTRUN -> [SKIP][70] ([Intel XE#2938])
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-2/igt@kms_pm_backlight@brightness-with-dpms.html

  * igt@kms_pm_backlight@fade:
    - shard-bmg:          NOTRUN -> [SKIP][71] ([Intel XE#870])
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-bmg-1/igt@kms_pm_backlight@fade.html

  * igt@kms_pm_backlight@fade-with-suspend:
    - shard-adlp:         NOTRUN -> [SKIP][72] ([Intel XE#870])
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-1/igt@kms_pm_backlight@fade-with-suspend.html

  * igt@kms_pm_rpm@modeset-non-lpsp:
    - shard-adlp:         NOTRUN -> [SKIP][73] ([Intel XE#836])
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-2/igt@kms_pm_rpm@modeset-non-lpsp.html

  * igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
    - shard-adlp:         NOTRUN -> [SKIP][74] ([Intel XE#1406] / [Intel XE#1489]) +5 other tests skip
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-8/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
    - shard-lnl:          NOTRUN -> [SKIP][75] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608])
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-b-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][76] ([Intel XE#1406] / [Intel XE#4608]) +1 other test skip
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-b-edp-1.html

  * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
    - shard-bmg:          NOTRUN -> [SKIP][77] ([Intel XE#1406] / [Intel XE#1489]) +1 other test skip
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-bmg-1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_su@frontbuffer-xrgb8888:
    - shard-adlp:         NOTRUN -> [SKIP][78] ([Intel XE#1122] / [Intel XE#1406] / [Intel XE#5580])
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-9/igt@kms_psr2_su@frontbuffer-xrgb8888.html

  * igt@kms_psr@fbc-psr-primary-render:
    - shard-bmg:          NOTRUN -> [SKIP][79] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +1 other test skip
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-bmg-2/igt@kms_psr@fbc-psr-primary-render.html

  * igt@kms_psr@psr2-suspend:
    - shard-adlp:         NOTRUN -> [SKIP][80] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +10 other tests skip
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-9/igt@kms_psr@psr2-suspend.html

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-adlp:         NOTRUN -> [SKIP][81] ([Intel XE#1406] / [Intel XE#2939] / [Intel XE#5585])
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
    - shard-adlp:         NOTRUN -> [SKIP][82] ([Intel XE#1127])
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html

  * igt@kms_rotation_crc@sprite-rotation-90:
    - shard-adlp:         NOTRUN -> [SKIP][83] ([Intel XE#3414])
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-9/igt@kms_rotation_crc@sprite-rotation-90.html

  * igt@kms_setmode@clone-exclusive-crtc:
    - shard-bmg:          [PASS][84] -> [SKIP][85] ([Intel XE#1435])
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-bmg-8/igt@kms_setmode@clone-exclusive-crtc.html
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-lnl:          NOTRUN -> [SKIP][86] ([Intel XE#362])
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-lnl-5/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_tv_load_detect@load-detect:
    - shard-adlp:         NOTRUN -> [SKIP][87] ([Intel XE#330])
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-1/igt@kms_tv_load_detect@load-detect.html

  * igt@kms_vrr@lobf:
    - shard-adlp:         NOTRUN -> [SKIP][88] ([Intel XE#2168])
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-2/igt@kms_vrr@lobf.html

  * igt@xe_ccs@suspend-resume:
    - shard-adlp:         NOTRUN -> [SKIP][89] ([Intel XE#455] / [Intel XE#488] / [Intel XE#5607])
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-9/igt@xe_ccs@suspend-resume.html

  * igt@xe_compute@ccs-mode-basic:
    - shard-adlp:         NOTRUN -> [SKIP][90] ([Intel XE#1447] / [Intel XE#5617])
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-2/igt@xe_compute@ccs-mode-basic.html

  * igt@xe_copy_basic@mem-copy-linear-0xfd:
    - shard-adlp:         NOTRUN -> [SKIP][91] ([Intel XE#1123])
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-1/igt@xe_copy_basic@mem-copy-linear-0xfd.html

  * igt@xe_eu_stall@blocking-re-enable:
    - shard-adlp:         NOTRUN -> [SKIP][92] ([Intel XE#5626])
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-2/igt@xe_eu_stall@blocking-re-enable.html

  * igt@xe_eudebug_online@preempt-breakpoint:
    - shard-lnl:          NOTRUN -> [SKIP][93] ([Intel XE#4837]) +1 other test skip
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-lnl-5/igt@xe_eudebug_online@preempt-breakpoint.html

  * igt@xe_eudebug_online@single-step-one:
    - shard-adlp:         NOTRUN -> [SKIP][94] ([Intel XE#4837] / [Intel XE#5565]) +10 other tests skip
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-2/igt@xe_eudebug_online@single-step-one.html

  * igt@xe_evict@evict-beng-large-multi-vm:
    - shard-adlp:         NOTRUN -> [SKIP][95] ([Intel XE#261] / [Intel XE#5564]) +1 other test skip
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-1/igt@xe_evict@evict-beng-large-multi-vm.html

  * igt@xe_evict@evict-beng-mixed-many-threads-small:
    - shard-bmg:          [PASS][96] -> [INCOMPLETE][97] ([Intel XE#6321])
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-bmg-8/igt@xe_evict@evict-beng-mixed-many-threads-small.html
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-bmg-6/igt@xe_evict@evict-beng-mixed-many-threads-small.html

  * igt@xe_evict@evict-large-external-cm:
    - shard-lnl:          NOTRUN -> [SKIP][98] ([Intel XE#688]) +1 other test skip
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-lnl-5/igt@xe_evict@evict-large-external-cm.html

  * igt@xe_evict@evict-mixed-many-threads-small:
    - shard-adlp:         NOTRUN -> [SKIP][99] ([Intel XE#261]) +4 other tests skip
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-1/igt@xe_evict@evict-mixed-many-threads-small.html

  * igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind:
    - shard-adlp:         NOTRUN -> [SKIP][100] ([Intel XE#1392] / [Intel XE#5575]) +6 other tests skip
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-9/igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind.html

  * igt@xe_exec_fault_mode@many-execqueues-rebind:
    - shard-adlp:         NOTRUN -> [SKIP][101] ([Intel XE#288] / [Intel XE#5561]) +19 other tests skip
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-1/igt@xe_exec_fault_mode@many-execqueues-rebind.html

  * igt@xe_exec_system_allocator@once-mmap-huge:
    - shard-bmg:          NOTRUN -> [SKIP][102] ([Intel XE#4943])
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-bmg-1/igt@xe_exec_system_allocator@once-mmap-huge.html

  * igt@xe_exec_system_allocator@processes-evict-malloc:
    - shard-adlp:         NOTRUN -> [SKIP][103] ([Intel XE#4915]) +210 other tests skip
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-8/igt@xe_exec_system_allocator@processes-evict-malloc.html

  * igt@xe_live_ktest@xe_eudebug:
    - shard-adlp:         NOTRUN -> [SKIP][104] ([Intel XE#455] / [Intel XE#5712])
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-8/igt@xe_live_ktest@xe_eudebug.html

  * igt@xe_mmap@pci-membarrier-bad-object:
    - shard-adlp:         NOTRUN -> [SKIP][105] ([Intel XE#5100]) +1 other test skip
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-2/igt@xe_mmap@pci-membarrier-bad-object.html

  * igt@xe_oa@mmio-triggered-reports-read:
    - shard-adlp:         NOTRUN -> [SKIP][106] ([Intel XE#6032])
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-9/igt@xe_oa@mmio-triggered-reports-read.html

  * igt@xe_oa@syncs-syncobj-cfg:
    - shard-adlp:         NOTRUN -> [SKIP][107] ([Intel XE#3573]) +4 other tests skip
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-9/igt@xe_oa@syncs-syncobj-cfg.html

  * igt@xe_pat@pat-index-xe2:
    - shard-adlp:         NOTRUN -> [SKIP][108] ([Intel XE#977])
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-1/igt@xe_pat@pat-index-xe2.html

  * igt@xe_pm@s3-basic:
    - shard-lnl:          NOTRUN -> [SKIP][109] ([Intel XE#584])
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-lnl-5/igt@xe_pm@s3-basic.html

  * igt@xe_pm@s3-d3cold-basic-exec:
    - shard-adlp:         NOTRUN -> [SKIP][110] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-1/igt@xe_pm@s3-d3cold-basic-exec.html

  * igt@xe_pmu@fn-engine-activity-sched-if-idle:
    - shard-bmg:          [PASS][111] -> [DMESG-WARN][112] ([Intel XE#3876])
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-bmg-4/igt@xe_pmu@fn-engine-activity-sched-if-idle.html
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-bmg-6/igt@xe_pmu@fn-engine-activity-sched-if-idle.html

  * igt@xe_pxp@pxp-stale-queue-post-suspend:
    - shard-adlp:         NOTRUN -> [SKIP][113] ([Intel XE#4733] / [Intel XE#5594])
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-1/igt@xe_pxp@pxp-stale-queue-post-suspend.html

  * igt@xe_query@multigpu-query-oa-units:
    - shard-lnl:          NOTRUN -> [SKIP][114] ([Intel XE#944])
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-lnl-5/igt@xe_query@multigpu-query-oa-units.html

  * igt@xe_query@multigpu-query-uc-fw-version-huc:
    - shard-adlp:         NOTRUN -> [SKIP][115] ([Intel XE#944]) +2 other tests skip
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-9/igt@xe_query@multigpu-query-uc-fw-version-huc.html

  * igt@xe_render_copy@render-stress-0-copies:
    - shard-adlp:         NOTRUN -> [SKIP][116] ([Intel XE#4814] / [Intel XE#5614])
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-1/igt@xe_render_copy@render-stress-0-copies.html

  * igt@xe_sriov_scheduling@equal-throughput:
    - shard-adlp:         NOTRUN -> [DMESG-FAIL][117] ([Intel XE#3868] / [Intel XE#5213]) +1 other test dmesg-fail
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-1/igt@xe_sriov_scheduling@equal-throughput.html

  
#### Possible fixes ####

  * igt@core_hotunplug@hotrebind-lateclose:
    - shard-adlp:         [DMESG-WARN][118] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][119]
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-adlp-2/igt@core_hotunplug@hotrebind-lateclose.html
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-6/igt@core_hotunplug@hotrebind-lateclose.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4:
    - shard-dg2-set2:     [INCOMPLETE][120] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) -> [PASS][121]
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
    - shard-bmg:          [SKIP][122] ([Intel XE#2291]) -> [PASS][123] +4 other tests pass
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-bmg-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-bmg-3/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
    - shard-bmg:          [FAIL][124] ([Intel XE#1475]) -> [PASS][125]
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc:
    - shard-bmg:          [SKIP][126] ([Intel XE#1340]) -> [PASS][127]
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-bmg-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html

  * igt@kms_dp_aux_dev:
    - shard-bmg:          [SKIP][128] ([Intel XE#3009]) -> [PASS][129]
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-bmg-4/igt@kms_dp_aux_dev.html
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-bmg-3/igt@kms_dp_aux_dev.html

  * igt@kms_dp_link_training@non-uhbr-sst:
    - shard-bmg:          [SKIP][130] ([Intel XE#4354]) -> [PASS][131]
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-bmg-4/igt@kms_dp_link_training@non-uhbr-sst.html
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-bmg-5/igt@kms_dp_link_training@non-uhbr-sst.html

  * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
    - shard-bmg:          [SKIP][132] ([Intel XE#2316]) -> [PASS][133] +9 other tests pass
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-bmg-4/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html

  * igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a1:
    - shard-adlp:         [DMESG-WARN][134] ([Intel XE#4543]) -> [PASS][135] +1 other test pass
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-adlp-2/igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a1.html
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-6/igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a1.html

  * igt@kms_hdr@invalid-hdr:
    - shard-bmg:          [SKIP][136] ([Intel XE#1503]) -> [PASS][137] +1 other test pass
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-bmg-1/igt@kms_hdr@invalid-hdr.html
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-bmg-2/igt@kms_hdr@invalid-hdr.html

  * igt@kms_setmode@invalid-clone-single-crtc-stealing:
    - shard-bmg:          [SKIP][138] ([Intel XE#1435]) -> [PASS][139]
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-bmg-4/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-bmg-5/igt@kms_setmode@invalid-clone-single-crtc-stealing.html

  * igt@xe_exec_basic@twice-null-rebind:
    - shard-bmg:          [DMESG-WARN][140] ([Intel XE#3876]) -> [PASS][141]
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-bmg-6/igt@xe_exec_basic@twice-null-rebind.html
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-bmg-1/igt@xe_exec_basic@twice-null-rebind.html

  * igt@xe_exec_compute_mode@many-userptr-rebind:
    - shard-bmg:          [FAIL][142] ([Intel XE#5625]) -> [PASS][143]
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-bmg-6/igt@xe_exec_compute_mode@many-userptr-rebind.html
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-bmg-1/igt@xe_exec_compute_mode@many-userptr-rebind.html

  * igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-imm:
    - shard-bmg:          [FAIL][144] ([Intel XE#6050]) -> [PASS][145] +1 other test pass
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-bmg-6/igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-imm.html
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-bmg-1/igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-imm.html

  * igt@xe_exec_reset@cm-gt-reset:
    - shard-bmg:          [FAIL][146] ([Intel XE#6325]) -> [PASS][147]
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-bmg-6/igt@xe_exec_reset@cm-gt-reset.html
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-bmg-1/igt@xe_exec_reset@cm-gt-reset.html

  * igt@xe_exec_system_allocator@process-many-malloc-bo-unmap:
    - shard-bmg:          [FAIL][148] ([Intel XE#4937] / [Intel XE#5625]) -> [PASS][149] +29 other tests pass
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-bmg-6/igt@xe_exec_system_allocator@process-many-malloc-bo-unmap.html
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-bmg-1/igt@xe_exec_system_allocator@process-many-malloc-bo-unmap.html

  * igt@xe_exec_threads@threads-bal-shared-vm-basic:
    - shard-bmg:          [DMESG-FAIL][150] ([Intel XE#3876]) -> [PASS][151]
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-bmg-6/igt@xe_exec_threads@threads-bal-shared-vm-basic.html
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-bmg-1/igt@xe_exec_threads@threads-bal-shared-vm-basic.html

  * igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
    - shard-dg2-set2:     [DMESG-WARN][152] ([Intel XE#5893]) -> [PASS][153]
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-dg2-433/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-dg2-434/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html

  * igt@xe_gt_freq@freq_range_exec:
    - shard-bmg:          [TIMEOUT][154] ([Intel XE#3876]) -> [PASS][155] +1 other test pass
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-bmg-6/igt@xe_gt_freq@freq_range_exec.html
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-bmg-1/igt@xe_gt_freq@freq_range_exec.html

  
#### Warnings ####

  * igt@kms_content_protection@atomic:
    - shard-bmg:          [FAIL][156] ([Intel XE#1178]) -> [SKIP][157] ([Intel XE#2341])
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-bmg-3/igt@kms_content_protection@atomic.html
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-bmg-4/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@legacy:
    - shard-bmg:          [SKIP][158] ([Intel XE#2341]) -> [FAIL][159] ([Intel XE#1178]) +3 other tests fail
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-bmg-6/igt@kms_content_protection@legacy.html
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-bmg-1/igt@kms_content_protection@legacy.html

  * igt@kms_content_protection@uevent:
    - shard-bmg:          [FAIL][160] ([Intel XE#1188]) -> [SKIP][161] ([Intel XE#2341])
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-bmg-8/igt@kms_content_protection@uevent.html
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-bmg-6/igt@kms_content_protection@uevent.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          [SKIP][162] ([Intel XE#2311]) -> [SKIP][163] ([Intel XE#2312]) +19 other tests skip
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][164] ([Intel XE#2312]) -> [SKIP][165] ([Intel XE#2311]) +18 other tests skip
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
    - shard-bmg:          [SKIP][166] ([Intel XE#5390]) -> [SKIP][167] ([Intel XE#2312]) +8 other tests skip
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
    - shard-bmg:          [SKIP][168] ([Intel XE#2312]) -> [SKIP][169] ([Intel XE#5390]) +8 other tests skip
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
    - shard-bmg:          [SKIP][170] ([Intel XE#2313]) -> [SKIP][171] ([Intel XE#2312]) +19 other tests skip
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
    - shard-bmg:          [SKIP][172] ([Intel XE#2312]) -> [SKIP][173] ([Intel XE#2313]) +17 other tests skip
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html

  * igt@kms_plane_multiple@2x-tiling-y:
    - shard-bmg:          [SKIP][174] ([Intel XE#5021]) -> [SKIP][175] ([Intel XE#4596])
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-y.html
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-y.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-bmg:          [FAIL][176] ([Intel XE#1729]) -> [SKIP][177] ([Intel XE#2426])
   [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern.html
   [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern.html
    - shard-dg2-set2:     [SKIP][178] ([Intel XE#362]) -> [FAIL][179] ([Intel XE#1729])
   [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html
   [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern.html

  * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
    - shard-bmg:          [ABORT][180] ([Intel XE#5466] / [Intel XE#5530]) -> [ABORT][181] ([Intel XE#4917] / [Intel XE#5466] / [Intel XE#5530])
   [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-bmg-3/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
   [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-bmg-3/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html

  * igt@xe_module_load@load:
    - shard-adlp:         ([PASS][182], [PASS][183], [PASS][184], [PASS][185], [PASS][186], [PASS][187], [DMESG-WARN][188], [PASS][189], [SKIP][190], [PASS][191], [PASS][192], [PASS][193], [PASS][194], [PASS][195], [PASS][196], [PASS][197]) ([Intel XE#2953] / [Intel XE#378] / [Intel XE#4173] / [Intel XE#5612]) -> ([PASS][198], [PASS][199], [PASS][200], [SKIP][201], [PASS][202], [PASS][203], [PASS][204], [PASS][205], [PASS][206], [PASS][207], [PASS][208], [PASS][209], [PASS][210], [PASS][211], [PASS][212], [PASS][213]) ([Intel XE#378] / [Intel XE#5612])
   [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-adlp-9/igt@xe_module_load@load.html
   [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-adlp-6/igt@xe_module_load@load.html
   [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-adlp-1/igt@xe_module_load@load.html
   [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-adlp-2/igt@xe_module_load@load.html
   [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-adlp-1/igt@xe_module_load@load.html
   [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-adlp-6/igt@xe_module_load@load.html
   [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-adlp-6/igt@xe_module_load@load.html
   [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-adlp-9/igt@xe_module_load@load.html
   [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-adlp-2/igt@xe_module_load@load.html
   [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-adlp-8/igt@xe_module_load@load.html
   [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-adlp-8/igt@xe_module_load@load.html
   [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-adlp-8/igt@xe_module_load@load.html
   [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-adlp-9/igt@xe_module_load@load.html
   [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-adlp-2/igt@xe_module_load@load.html
   [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-adlp-1/igt@xe_module_load@load.html
   [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-adlp-2/igt@xe_module_load@load.html
   [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-2/igt@xe_module_load@load.html
   [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-2/igt@xe_module_load@load.html
   [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-2/igt@xe_module_load@load.html
   [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-1/igt@xe_module_load@load.html
   [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-6/igt@xe_module_load@load.html
   [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-1/igt@xe_module_load@load.html
   [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-1/igt@xe_module_load@load.html
   [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-1/igt@xe_module_load@load.html
   [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-6/igt@xe_module_load@load.html
   [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-6/igt@xe_module_load@load.html
   [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-9/igt@xe_module_load@load.html
   [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-9/igt@xe_module_load@load.html
   [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-8/igt@xe_module_load@load.html
   [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-8/igt@xe_module_load@load.html
   [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-8/igt@xe_module_load@load.html
   [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-adlp-9/igt@xe_module_load@load.html

  * igt@xe_pm@d3hot-i2c:
    - shard-bmg:          [TIMEOUT][214] ([Intel XE#3876] / [Intel XE#6162]) -> [SKIP][215] ([Intel XE#5742])
   [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c/shard-bmg-6/igt@xe_pm@d3hot-i2c.html
   [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155809v2/shard-bmg-1/igt@xe_pm@d3hot-i2c.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
  [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
  [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
  [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
  [Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
  [Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
  [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
  [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
  [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [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#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
  [Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
  [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
  [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
  [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
  [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
  [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
  [Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
  [Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
  [Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
  [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
  [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
  [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
  [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
  [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
  [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
  [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
  [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
  [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
  [Intel XE#3868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868
  [Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
  [Intel XE#3884]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3884
  [Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
  [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
  [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
  [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
  [Intel XE#4356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4356
  [Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
  [Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
  [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
  [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
  [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/488
  [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
  [Intel XE#4917]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4917
  [Intel XE#4921]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4921
  [Intel XE#4937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4937
  [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
  [Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
  [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
  [Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100
  [Intel XE#5191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5191
  [Intel XE#5213]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5213
  [Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
  [Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
  [Intel XE#5530]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5530
  [Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561
  [Intel XE#5564]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5564
  [Intel XE#5565]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5565
  [Intel XE#5575]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5575
  [Intel XE#5580]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5580
  [Intel XE#5585]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5585
  [Intel XE#5594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5594
  [Intel XE#5607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5607
  [Intel XE#5612]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5612
  [Intel XE#5614]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5614
  [Intel XE#5617]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5617
  [Intel XE#5624]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5624
  [Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
  [Intel XE#5626]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5626
  [Intel XE#5712]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5712
  [Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742
  [Intel XE#5786]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5786
  [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
  [Intel XE#5893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5893
  [Intel XE#5993]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5993
  [Intel XE#6014]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6014
  [Intel XE#6032]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6032
  [Intel XE#6050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6050
  [Intel XE#6054]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6054
  [Intel XE#6162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6162
  [Intel XE#6168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6168
  [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
  [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
  [Intel XE#6318]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6318
  [Intel XE#6320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6320
  [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
  [Intel XE#6325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6325
  [Intel XE#6326]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6326
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
  [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
  [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977


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

  * Linux: xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c -> xe-pw-155809v2

  IGT_8582: 8582
  xe-3910-f33ccc63d84c30ee59454b6c4e9303ef36c41c0c: f33ccc63d84c30ee59454b6c4e9303ef36c41c0c
  xe-pw-155809v2: 155809v2

== Logs ==

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

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

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

* Re: [PATCH] drm/xe/guc: Eliminate RPe caching for SLPC parameter handling
  2025-10-13 20:05 ` [PATCH] " Rodrigo Vivi
  2025-10-13 20:11   ` Anirban, Sk
@ 2025-10-14 19:34   ` Anirban, Sk
  1 sibling, 0 replies; 14+ messages in thread
From: Anirban, Sk @ 2025-10-14 19:34 UTC (permalink / raw)
  To: Rodrigo Vivi
  Cc: intel-xe, anshuman.gupta, badal.nilawar, riana.tauro,
	karthik.poosa, raag.jadav, soham.purkait, mallesh.koujalagi,
	vinay.belgaumkar

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

Hi,

On 14-10-2025 01:35, Rodrigo Vivi wrote:
> On Mon, Oct 13, 2025 at 12:12:15PM +0530, Sk Anirban wrote:
>> RPe is runtime-determined by PCODE and caching it caused stale values,
>> leading to incorrect GuC SLPC parameter settings.
>> Drop the cached rpe_freq field and query fresh values from hardware
>> on each use to ensure GuC SLPC parameters reflect current RPe.
>>
>> v2: Remove cached RPe frequency field (Rodrigo)
>>
>> Closes:https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/5166
> Is it passing cleanly the igt/tests/intel/xe_gt_freq ?
>
> Thanks,
> Rodrigo.

All the xe_pmu@gt-freq runs are successful as per the new CI testsuite.

Thanks,
Anirban
>    
>
>> Signed-off-by: Sk Anirban<sk.anirban@intel.com>
>> ---
>>   drivers/gpu/drm/xe/xe_guc_pc.c       | 36 +++++++++++++++-------------
>>   drivers/gpu/drm/xe/xe_guc_pc_types.h |  2 --
>>   2 files changed, 20 insertions(+), 18 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/xe/xe_guc_pc.c b/drivers/gpu/drm/xe/xe_guc_pc.c
>> index 3c0feb50a1e2..2d1d5121555e 100644
>> --- a/drivers/gpu/drm/xe/xe_guc_pc.c
>> +++ b/drivers/gpu/drm/xe/xe_guc_pc.c
>> @@ -330,7 +330,7 @@ static int pc_set_min_freq(struct xe_guc_pc *pc, u32 freq)
>>   	 * Our goal is to have the admin choices respected.
>>   	 */
>>   	pc_action_set_param(pc, SLPC_PARAM_IGNORE_EFFICIENT_FREQUENCY,
>> -			    freq < pc->rpe_freq);
>> +			    freq < xe_guc_pc_get_rpe_freq(pc));
>>   
>>   	return pc_action_set_param(pc,
>>   				   SLPC_PARAM_GLOBAL_MIN_GT_UNSLICE_FREQ_MHZ,
>> @@ -375,7 +375,7 @@ static void mtl_update_rpa_value(struct xe_guc_pc *pc)
>>   	pc->rpa_freq = decode_freq(REG_FIELD_GET(MTL_RPA_MASK, reg));
>>   }
>>   
>> -static void mtl_update_rpe_value(struct xe_guc_pc *pc)
>> +static u32 mtl_get_rpe_value(struct xe_guc_pc *pc)
>>   {
>>   	struct xe_gt *gt = pc_to_gt(pc);
>>   	u32 reg;
>> @@ -385,7 +385,7 @@ static void mtl_update_rpe_value(struct xe_guc_pc *pc)
>>   	else
>>   		reg = xe_mmio_read32(&gt->mmio, MTL_GT_RPE_FREQUENCY);
>>   
>> -	pc->rpe_freq = decode_freq(REG_FIELD_GET(MTL_RPE_MASK, reg));
>> +	return decode_freq(REG_FIELD_GET(MTL_RPE_MASK, reg));
>>   }
>>   
>>   static void tgl_update_rpa_value(struct xe_guc_pc *pc)
>> @@ -408,7 +408,7 @@ static void tgl_update_rpa_value(struct xe_guc_pc *pc)
>>   	}
>>   }
>>   
>> -static void tgl_update_rpe_value(struct xe_guc_pc *pc)
>> +static u32 tgl_get_rpe_value(struct xe_guc_pc *pc)
>>   {
>>   	struct xe_gt *gt = pc_to_gt(pc);
>>   	struct xe_device *xe = gt_to_xe(gt);
>> @@ -421,10 +421,10 @@ static void tgl_update_rpe_value(struct xe_guc_pc *pc)
>>   	 */
>>   	if (xe->info.platform == XE_PVC) {
>>   		reg = xe_mmio_read32(&gt->mmio, PVC_RP_STATE_CAP);
>> -		pc->rpe_freq = REG_FIELD_GET(RP1_MASK, reg) * GT_FREQUENCY_MULTIPLIER;
>> +		return REG_FIELD_GET(RP1_MASK, reg) * GT_FREQUENCY_MULTIPLIER;
>>   	} else {
>>   		reg = xe_mmio_read32(&gt->mmio, FREQ_INFO_REC);
>> -		pc->rpe_freq = REG_FIELD_GET(RPE_MASK, reg) * GT_FREQUENCY_MULTIPLIER;
>> +		return REG_FIELD_GET(RPE_MASK, reg) * GT_FREQUENCY_MULTIPLIER;
>>   	}
>>   }
>>   
>> @@ -433,20 +433,17 @@ static void pc_update_rp_values(struct xe_guc_pc *pc)
>>   	struct xe_gt *gt = pc_to_gt(pc);
>>   	struct xe_device *xe = gt_to_xe(gt);
>>   
>> -	if (GRAPHICS_VERx100(xe) >= 1270) {
>> +	if (GRAPHICS_VERx100(xe) >= 1270)
>>   		mtl_update_rpa_value(pc);
>> -		mtl_update_rpe_value(pc);
>> -	} else {
>> +	else
>>   		tgl_update_rpa_value(pc);
>> -		tgl_update_rpe_value(pc);
>> -	}
>>   
>>   	/*
>>   	 * RPe is decided at runtime by PCODE. In the rare case where that's
>>   	 * smaller than the fused min, we will trust the PCODE and use that
>>   	 * as our minimum one.
>>   	 */
>> -	pc->rpn_freq = min(pc->rpn_freq, pc->rpe_freq);
>> +	pc->rpn_freq = min(pc->rpn_freq, xe_guc_pc_get_rpe_freq(pc));
>>   }
>>   
>>   /**
>> @@ -560,9 +557,16 @@ u32 xe_guc_pc_get_rpa_freq(struct xe_guc_pc *pc)
>>    */
>>   u32 xe_guc_pc_get_rpe_freq(struct xe_guc_pc *pc)
>>   {
>> -	pc_update_rp_values(pc);
>> +	struct xe_gt *gt = pc_to_gt(pc);
>> +	struct xe_device *xe = gt_to_xe(gt);
>> +	u32 rpe_freq;
>> +
>> +	if (GRAPHICS_VERx100(xe) >= 1270)
>> +		rpe_freq = mtl_get_rpe_value(pc);
>> +	else
>> +		rpe_freq = tgl_get_rpe_value(pc);
>>   
>> -	return pc->rpe_freq;
>> +	return rpe_freq;
>>   }
>>   
>>   /**
>> @@ -1021,7 +1025,7 @@ static int pc_set_mert_freq_cap(struct xe_guc_pc *pc)
>>   	/*
>>   	 * Ensure min and max are bound by MERT_FREQ_CAP until driver loads.
>>   	 */
>> -	ret = pc_set_min_freq(pc, min(pc->rpe_freq, pc_max_freq_cap(pc)));
>> +	ret = pc_set_min_freq(pc, min(xe_guc_pc_get_rpe_freq(pc), pc_max_freq_cap(pc)));
>>   	if (!ret)
>>   		ret = pc_set_max_freq(pc, min(pc->rp0_freq, pc_max_freq_cap(pc)));
>>   
>> @@ -1339,7 +1343,7 @@ static void xe_guc_pc_fini_hw(void *arg)
>>   	XE_WARN_ON(xe_guc_pc_stop(pc));
>>   
>>   	/* Bind requested freq to mert_freq_cap before unload */
>> -	pc_set_cur_freq(pc, min(pc_max_freq_cap(pc), pc->rpe_freq));
>> +	pc_set_cur_freq(pc, min(pc_max_freq_cap(pc), xe_guc_pc_get_rpe_freq(pc)));
>>   
>>   	xe_force_wake_put(gt_to_fw(pc_to_gt(pc)), fw_ref);
>>   }
>> diff --git a/drivers/gpu/drm/xe/xe_guc_pc_types.h b/drivers/gpu/drm/xe/xe_guc_pc_types.h
>> index 5e4ea53fbee6..f27c05d81706 100644
>> --- a/drivers/gpu/drm/xe/xe_guc_pc_types.h
>> +++ b/drivers/gpu/drm/xe/xe_guc_pc_types.h
>> @@ -21,8 +21,6 @@ struct xe_guc_pc {
>>   	u32 rp0_freq;
>>   	/** @rpa_freq: HW RPa frequency - The Achievable one */
>>   	u32 rpa_freq;
>> -	/** @rpe_freq: HW RPe frequency - The Efficient one */
>> -	u32 rpe_freq;
>>   	/** @rpn_freq: HW RPN frequency - The Minimum one */
>>   	u32 rpn_freq;
>>   	/** @user_requested_min: Stash the minimum requested freq by user */
>> -- 
>> 2.43.0
>>

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

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

* Re: [PATCH] drm/xe/guc: Eliminate RPe caching for SLPC parameter handling
  2025-10-14  6:29 ` [PATCH] drm/xe/guc: Eliminate RPe caching for SLPC parameter handling Nilawar, Badal
@ 2025-10-14 19:37   ` Anirban, Sk
  0 siblings, 0 replies; 14+ messages in thread
From: Anirban, Sk @ 2025-10-14 19:37 UTC (permalink / raw)
  To: Nilawar, Badal, intel-xe
  Cc: anshuman.gupta, riana.tauro, karthik.poosa, raag.jadav,
	soham.purkait, mallesh.koujalagi, vinay.belgaumkar, rodrigo.vivi

Hi,

On 14-10-2025 11:59, Nilawar, Badal wrote:
>
> On 13-10-2025 12:12, Sk Anirban wrote:
>> RPe is runtime-determined by PCODE and caching it caused stale values,
>> leading to incorrect GuC SLPC parameter settings.
>> Drop the cached rpe_freq field and query fresh values from hardware
>> on each use to ensure GuC SLPC parameters reflect current RPe.
>>
>> v2: Remove cached RPe frequency field (Rodrigo)
>>
>> Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/5166
>> Signed-off-by: Sk Anirban <sk.anirban@intel.com>
>> ---
>>   drivers/gpu/drm/xe/xe_guc_pc.c       | 36 +++++++++++++++-------------
>>   drivers/gpu/drm/xe/xe_guc_pc_types.h |  2 --
>>   2 files changed, 20 insertions(+), 18 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/xe/xe_guc_pc.c 
>> b/drivers/gpu/drm/xe/xe_guc_pc.c
>> index 3c0feb50a1e2..2d1d5121555e 100644
>> --- a/drivers/gpu/drm/xe/xe_guc_pc.c
>> +++ b/drivers/gpu/drm/xe/xe_guc_pc.c
>> @@ -330,7 +330,7 @@ static int pc_set_min_freq(struct xe_guc_pc *pc, 
>> u32 freq)
>>        * Our goal is to have the admin choices respected.
>>        */
>>       pc_action_set_param(pc, SLPC_PARAM_IGNORE_EFFICIENT_FREQUENCY,
>> -                freq < pc->rpe_freq);
>> +                freq < xe_guc_pc_get_rpe_freq(pc));
>>         return pc_action_set_param(pc,
>>                      SLPC_PARAM_GLOBAL_MIN_GT_UNSLICE_FREQ_MHZ,
>> @@ -375,7 +375,7 @@ static void mtl_update_rpa_value(struct xe_guc_pc 
>> *pc)
>>       pc->rpa_freq = decode_freq(REG_FIELD_GET(MTL_RPA_MASK, reg));
>>   }
>>   -static void mtl_update_rpe_value(struct xe_guc_pc *pc)
>> +static u32 mtl_get_rpe_value(struct xe_guc_pc *pc)
>>   {
>>       struct xe_gt *gt = pc_to_gt(pc);
>>       u32 reg;
>> @@ -385,7 +385,7 @@ static void mtl_update_rpe_value(struct xe_guc_pc 
>> *pc)
>>       else
>>           reg = xe_mmio_read32(&gt->mmio, MTL_GT_RPE_FREQUENCY);
>>   -    pc->rpe_freq = decode_freq(REG_FIELD_GET(MTL_RPE_MASK, reg));
>> +    return decode_freq(REG_FIELD_GET(MTL_RPE_MASK, reg));
>>   }
>>     static void tgl_update_rpa_value(struct xe_guc_pc *pc)
>> @@ -408,7 +408,7 @@ static void tgl_update_rpa_value(struct xe_guc_pc 
>> *pc)
>>       }
>>   }
>>   -static void tgl_update_rpe_value(struct xe_guc_pc *pc)
>> +static u32 tgl_get_rpe_value(struct xe_guc_pc *pc)
>>   {
>>       struct xe_gt *gt = pc_to_gt(pc);
>>       struct xe_device *xe = gt_to_xe(gt);
>> @@ -421,10 +421,10 @@ static void tgl_update_rpe_value(struct 
>> xe_guc_pc *pc)
>>        */
>>       if (xe->info.platform == XE_PVC) {
>>           reg = xe_mmio_read32(&gt->mmio, PVC_RP_STATE_CAP);
>> -        pc->rpe_freq = REG_FIELD_GET(RP1_MASK, reg) * 
>> GT_FREQUENCY_MULTIPLIER;
>> +        return REG_FIELD_GET(RP1_MASK, reg) * GT_FREQUENCY_MULTIPLIER;
>>       } else {
>>           reg = xe_mmio_read32(&gt->mmio, FREQ_INFO_REC);
>> -        pc->rpe_freq = REG_FIELD_GET(RPE_MASK, reg) * 
>> GT_FREQUENCY_MULTIPLIER;
>> +        return REG_FIELD_GET(RPE_MASK, reg) * GT_FREQUENCY_MULTIPLIER;
>>       }
>>   }
>>   @@ -433,20 +433,17 @@ static void pc_update_rp_values(struct 
>> xe_guc_pc *pc)
>>       struct xe_gt *gt = pc_to_gt(pc);
>>       struct xe_device *xe = gt_to_xe(gt);
>>   -    if (GRAPHICS_VERx100(xe) >= 1270) {
>> +    if (GRAPHICS_VERx100(xe) >= 1270)
>>           mtl_update_rpa_value(pc);
>> -        mtl_update_rpe_value(pc);
>> -    } else {
>> +    else
>>           tgl_update_rpa_value(pc);
>> -        tgl_update_rpe_value(pc);
>> -    }
>>         /*
>>        * RPe is decided at runtime by PCODE. In the rare case where 
>> that's
>>        * smaller than the fused min, we will trust the PCODE and use 
>> that
>>        * as our minimum one.
>>        */
>> -    pc->rpn_freq = min(pc->rpn_freq, pc->rpe_freq);
>> +    pc->rpn_freq = min(pc->rpn_freq, xe_guc_pc_get_rpe_freq(pc));
>>   }
>>     /**
>> @@ -560,9 +557,16 @@ u32 xe_guc_pc_get_rpa_freq(struct xe_guc_pc *pc)
>>    */
>>   u32 xe_guc_pc_get_rpe_freq(struct xe_guc_pc *pc)
>>   {
>> -    pc_update_rp_values(pc);
>> +    struct xe_gt *gt = pc_to_gt(pc);
>> +    struct xe_device *xe = gt_to_xe(gt);
>> +    u32 rpe_freq;
>> +
>> +    if (GRAPHICS_VERx100(xe) >= 1270)
>> +        rpe_freq = mtl_get_rpe_value(pc);
>> +    else
>> +        rpe_freq = tgl_get_rpe_value(pc);
>>   -    return pc->rpe_freq;
>> +    return rpe_freq;
>>   }
>>     /**
>> @@ -1021,7 +1025,7 @@ static int pc_set_mert_freq_cap(struct 
>> xe_guc_pc *pc)
>>       /*
>>        * Ensure min and max are bound by MERT_FREQ_CAP until driver 
>> loads.
>>        */
>> -    ret = pc_set_min_freq(pc, min(pc->rpe_freq, pc_max_freq_cap(pc)));
>> +    ret = pc_set_min_freq(pc, min(xe_guc_pc_get_rpe_freq(pc), 
>> pc_max_freq_cap(pc)));
>>       if (!ret)
>>           ret = pc_set_max_freq(pc, min(pc->rp0_freq, 
>> pc_max_freq_cap(pc)));
>>   @@ -1339,7 +1343,7 @@ static void xe_guc_pc_fini_hw(void *arg)
>>       XE_WARN_ON(xe_guc_pc_stop(pc));
>>         /* Bind requested freq to mert_freq_cap before unload */
>> -    pc_set_cur_freq(pc, min(pc_max_freq_cap(pc), pc->rpe_freq));
>> +    pc_set_cur_freq(pc, min(pc_max_freq_cap(pc), 
>> xe_guc_pc_get_rpe_freq(pc)));
>>         xe_force_wake_put(gt_to_fw(pc_to_gt(pc)), fw_ref);
>>   }
>> diff --git a/drivers/gpu/drm/xe/xe_guc_pc_types.h 
>> b/drivers/gpu/drm/xe/xe_guc_pc_types.h
>> index 5e4ea53fbee6..f27c05d81706 100644
>> --- a/drivers/gpu/drm/xe/xe_guc_pc_types.h
>> +++ b/drivers/gpu/drm/xe/xe_guc_pc_types.h
>> @@ -21,8 +21,6 @@ struct xe_guc_pc {
>>       u32 rp0_freq;
>>       /** @rpa_freq: HW RPa frequency - The Achievable one */
>>       u32 rpa_freq;
>
> It might be worth considering avoiding the caching of rpe_freq as well.
>
> Thanks,
> Badal
I believe we're using pc -> rpa solely for storing and exposing purposes.
We're not using that parameter to set any other frequency, so this 
should be fine

Thanks,
Anirban
>
>> -    /** @rpe_freq: HW RPe frequency - The Efficient one */
>> -    u32 rpe_freq;
>>       /** @rpn_freq: HW RPN frequency - The Minimum one */
>>       u32 rpn_freq;
>>       /** @user_requested_min: Stash the minimum requested freq by 
>> user */


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

* Re: [PATCH] drm/xe/guc: Eliminate RPe caching for SLPC parameter handling
  2025-10-13  6:42 [PATCH] drm/xe/guc: Eliminate RPe caching for SLPC parameter handling Sk Anirban
                   ` (7 preceding siblings ...)
  2025-10-14  6:41 ` ✓ Xe.CI.Full: success for drm/xe/guc: Eliminate RPe caching for SLPC parameter handling (rev2) Patchwork
@ 2025-10-14 20:39 ` Belgaumkar, Vinay
  2025-10-16  8:46   ` Anirban, Sk
  8 siblings, 1 reply; 14+ messages in thread
From: Belgaumkar, Vinay @ 2025-10-14 20:39 UTC (permalink / raw)
  To: Sk Anirban, intel-xe
  Cc: anshuman.gupta, badal.nilawar, riana.tauro, karthik.poosa,
	raag.jadav, soham.purkait, mallesh.koujalagi, rodrigo.vivi

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


On 10/12/2025 11:42 PM, Sk Anirban wrote:
> RPe is runtime-determined by PCODE and caching it caused stale values,
> leading to incorrect GuC SLPC parameter settings.
> Drop the cached rpe_freq field and query fresh values from hardware
> on each use to ensure GuC SLPC parameters reflect current RPe.
>
> v2: Remove cached RPe frequency field (Rodrigo)
>
> Closes:https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/5166
> Signed-off-by: Sk Anirban<sk.anirban@intel.com>
> ---
>   drivers/gpu/drm/xe/xe_guc_pc.c       | 36 +++++++++++++++-------------
>   drivers/gpu/drm/xe/xe_guc_pc_types.h |  2 --
>   2 files changed, 20 insertions(+), 18 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_guc_pc.c b/drivers/gpu/drm/xe/xe_guc_pc.c
> index 3c0feb50a1e2..2d1d5121555e 100644
> --- a/drivers/gpu/drm/xe/xe_guc_pc.c
> +++ b/drivers/gpu/drm/xe/xe_guc_pc.c
> @@ -330,7 +330,7 @@ static int pc_set_min_freq(struct xe_guc_pc *pc, u32 freq)
>   	 * Our goal is to have the admin choices respected.
>   	 */
>   	pc_action_set_param(pc, SLPC_PARAM_IGNORE_EFFICIENT_FREQUENCY,
> -			    freq < pc->rpe_freq);
> +			    freq < xe_guc_pc_get_rpe_freq(pc));
>   
>   	return pc_action_set_param(pc,
>   				   SLPC_PARAM_GLOBAL_MIN_GT_UNSLICE_FREQ_MHZ,
> @@ -375,7 +375,7 @@ static void mtl_update_rpa_value(struct xe_guc_pc *pc)
>   	pc->rpa_freq = decode_freq(REG_FIELD_GET(MTL_RPA_MASK, reg));
>   }
>   
> -static void mtl_update_rpe_value(struct xe_guc_pc *pc)
> +static u32 mtl_get_rpe_value(struct xe_guc_pc *pc)
while we are here, can we rename these local functions to 
mtl_get_rpe_*freq*() and tgl_get_rpe_*freq*(), since both these 
functions return the decoded freq?
>   {
>   	struct xe_gt *gt = pc_to_gt(pc);
>   	u32 reg;
> @@ -385,7 +385,7 @@ static void mtl_update_rpe_value(struct xe_guc_pc *pc)
>   	else
>   		reg = xe_mmio_read32(&gt->mmio, MTL_GT_RPE_FREQUENCY);
>   
> -	pc->rpe_freq = decode_freq(REG_FIELD_GET(MTL_RPE_MASK, reg));
> +	return decode_freq(REG_FIELD_GET(MTL_RPE_MASK, reg));
>   }
>   
>   static void tgl_update_rpa_value(struct xe_guc_pc *pc)
> @@ -408,7 +408,7 @@ static void tgl_update_rpa_value(struct xe_guc_pc *pc)
>   	}
>   }
>   
> -static void tgl_update_rpe_value(struct xe_guc_pc *pc)
> +static u32 tgl_get_rpe_value(struct xe_guc_pc *pc)
>   {
>   	struct xe_gt *gt = pc_to_gt(pc);
>   	struct xe_device *xe = gt_to_xe(gt);
> @@ -421,10 +421,10 @@ static void tgl_update_rpe_value(struct xe_guc_pc *pc)
>   	 */
>   	if (xe->info.platform == XE_PVC) {
>   		reg = xe_mmio_read32(&gt->mmio, PVC_RP_STATE_CAP);
> -		pc->rpe_freq = REG_FIELD_GET(RP1_MASK, reg) * GT_FREQUENCY_MULTIPLIER;
> +		return REG_FIELD_GET(RP1_MASK, reg) * GT_FREQUENCY_MULTIPLIER;
>   	} else {
>   		reg = xe_mmio_read32(&gt->mmio, FREQ_INFO_REC);
> -		pc->rpe_freq = REG_FIELD_GET(RPE_MASK, reg) * GT_FREQUENCY_MULTIPLIER;
> +		return REG_FIELD_GET(RPE_MASK, reg) * GT_FREQUENCY_MULTIPLIER;
>   	}
>   }
>   
> @@ -433,20 +433,17 @@ static void pc_update_rp_values(struct xe_guc_pc *pc)
>   	struct xe_gt *gt = pc_to_gt(pc);
>   	struct xe_device *xe = gt_to_xe(gt);
>   
> -	if (GRAPHICS_VERx100(xe) >= 1270) {
> +	if (GRAPHICS_VERx100(xe) >= 1270)
>   		mtl_update_rpa_value(pc);
> -		mtl_update_rpe_value(pc);
> -	} else {
> +	else
>   		tgl_update_rpa_value(pc);
> -		tgl_update_rpe_value(pc);
> -	}
>   
>   	/*
>   	 * RPe is decided at runtime by PCODE. In the rare case where that's
>   	 * smaller than the fused min, we will trust the PCODE and use that
>   	 * as our minimum one.
>   	 */
> -	pc->rpn_freq = min(pc->rpn_freq, pc->rpe_freq);
> +	pc->rpn_freq = min(pc->rpn_freq, xe_guc_pc_get_rpe_freq(pc));
>   }
>   
>   /**
> @@ -560,9 +557,16 @@ u32 xe_guc_pc_get_rpa_freq(struct xe_guc_pc *pc)
>    */
>   u32 xe_guc_pc_get_rpe_freq(struct xe_guc_pc *pc)
>   {
> -	pc_update_rp_values(pc);
> +	struct xe_gt *gt = pc_to_gt(pc);
> +	struct xe_device *xe = gt_to_xe(gt);
> +	u32 rpe_freq;
> +
> +	if (GRAPHICS_VERx100(xe) >= 1270)
> +		rpe_freq = mtl_get_rpe_value(pc);

just return mtl_get_rpe_value(pc) instead of storing in a local var?

Other than that,

LGTM,

Reviewed-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com>

> +	else
> +		rpe_freq = tgl_get_rpe_value(pc);
>   
> -	return pc->rpe_freq;
> +	return rpe_freq;
>   }
>   
>   /**
> @@ -1021,7 +1025,7 @@ static int pc_set_mert_freq_cap(struct xe_guc_pc *pc)
>   	/*
>   	 * Ensure min and max are bound by MERT_FREQ_CAP until driver loads.
>   	 */
> -	ret = pc_set_min_freq(pc, min(pc->rpe_freq, pc_max_freq_cap(pc)));
> +	ret = pc_set_min_freq(pc, min(xe_guc_pc_get_rpe_freq(pc), pc_max_freq_cap(pc)));
>   	if (!ret)
>   		ret = pc_set_max_freq(pc, min(pc->rp0_freq, pc_max_freq_cap(pc)));
>   
> @@ -1339,7 +1343,7 @@ static void xe_guc_pc_fini_hw(void *arg)
>   	XE_WARN_ON(xe_guc_pc_stop(pc));
>   
>   	/* Bind requested freq to mert_freq_cap before unload */
> -	pc_set_cur_freq(pc, min(pc_max_freq_cap(pc), pc->rpe_freq));
> +	pc_set_cur_freq(pc, min(pc_max_freq_cap(pc), xe_guc_pc_get_rpe_freq(pc)));
>   
>   	xe_force_wake_put(gt_to_fw(pc_to_gt(pc)), fw_ref);
>   }
> diff --git a/drivers/gpu/drm/xe/xe_guc_pc_types.h b/drivers/gpu/drm/xe/xe_guc_pc_types.h
> index 5e4ea53fbee6..f27c05d81706 100644
> --- a/drivers/gpu/drm/xe/xe_guc_pc_types.h
> +++ b/drivers/gpu/drm/xe/xe_guc_pc_types.h
> @@ -21,8 +21,6 @@ struct xe_guc_pc {
>   	u32 rp0_freq;
>   	/** @rpa_freq: HW RPa frequency - The Achievable one */
>   	u32 rpa_freq;
> -	/** @rpe_freq: HW RPe frequency - The Efficient one */
> -	u32 rpe_freq;
>   	/** @rpn_freq: HW RPN frequency - The Minimum one */
>   	u32 rpn_freq;
>   	/** @user_requested_min: Stash the minimum requested freq by user */

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

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

* Re: [PATCH] drm/xe/guc: Eliminate RPe caching for SLPC parameter handling
  2025-10-14 20:39 ` [PATCH] drm/xe/guc: Eliminate RPe caching for SLPC parameter handling Belgaumkar, Vinay
@ 2025-10-16  8:46   ` Anirban, Sk
  0 siblings, 0 replies; 14+ messages in thread
From: Anirban, Sk @ 2025-10-16  8:46 UTC (permalink / raw)
  To: Belgaumkar, Vinay, intel-xe
  Cc: anshuman.gupta, badal.nilawar, riana.tauro, karthik.poosa,
	raag.jadav, soham.purkait, mallesh.koujalagi, rodrigo.vivi

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

Hi Vinay,

On 15-10-2025 02:09, Belgaumkar, Vinay wrote:
>
>
> On 10/12/2025 11:42 PM, Sk Anirban wrote:
>> RPe is runtime-determined by PCODE and caching it caused stale values,
>> leading to incorrect GuC SLPC parameter settings.
>> Drop the cached rpe_freq field and query fresh values from hardware
>> on each use to ensure GuC SLPC parameters reflect current RPe.
>>
>> v2: Remove cached RPe frequency field (Rodrigo)
>>
>> Closes:https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/5166
>> Signed-off-by: Sk Anirban<sk.anirban@intel.com>
>> ---
>>   drivers/gpu/drm/xe/xe_guc_pc.c       | 36 +++++++++++++++-------------
>>   drivers/gpu/drm/xe/xe_guc_pc_types.h |  2 --
>>   2 files changed, 20 insertions(+), 18 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/xe/xe_guc_pc.c b/drivers/gpu/drm/xe/xe_guc_pc.c
>> index 3c0feb50a1e2..2d1d5121555e 100644
>> --- a/drivers/gpu/drm/xe/xe_guc_pc.c
>> +++ b/drivers/gpu/drm/xe/xe_guc_pc.c
>> @@ -330,7 +330,7 @@ static int pc_set_min_freq(struct xe_guc_pc *pc, u32 freq)
>>   	 * Our goal is to have the admin choices respected.
>>   	 */
>>   	pc_action_set_param(pc, SLPC_PARAM_IGNORE_EFFICIENT_FREQUENCY,
>> -			    freq < pc->rpe_freq);
>> +			    freq < xe_guc_pc_get_rpe_freq(pc));
>>   
>>   	return pc_action_set_param(pc,
>>   				   SLPC_PARAM_GLOBAL_MIN_GT_UNSLICE_FREQ_MHZ,
>> @@ -375,7 +375,7 @@ static void mtl_update_rpa_value(struct xe_guc_pc *pc)
>>   	pc->rpa_freq = decode_freq(REG_FIELD_GET(MTL_RPA_MASK, reg));
>>   }
>>   
>> -static void mtl_update_rpe_value(struct xe_guc_pc *pc)
>> +static u32 mtl_get_rpe_value(struct xe_guc_pc *pc)
> while we are here, can we rename these local functions to 
> mtl_get_rpe_*freq*() and tgl_get_rpe_*freq*(), since both these 
> functions return the decoded freq? 
Yeah, we can do that.
>>   {
>>   	struct xe_gt *gt = pc_to_gt(pc);
>>   	u32 reg;
>> @@ -385,7 +385,7 @@ static void mtl_update_rpe_value(struct xe_guc_pc *pc)
>>   	else
>>   		reg = xe_mmio_read32(&gt->mmio, MTL_GT_RPE_FREQUENCY);
>>   
>> -	pc->rpe_freq = decode_freq(REG_FIELD_GET(MTL_RPE_MASK, reg));
>> +	return decode_freq(REG_FIELD_GET(MTL_RPE_MASK, reg));
>>   }
>>   
>>   static void tgl_update_rpa_value(struct xe_guc_pc *pc)
>> @@ -408,7 +408,7 @@ static void tgl_update_rpa_value(struct xe_guc_pc *pc)
>>   	}
>>   }
>>   
>> -static void tgl_update_rpe_value(struct xe_guc_pc *pc)
>> +static u32 tgl_get_rpe_value(struct xe_guc_pc *pc)
>>   {
>>   	struct xe_gt *gt = pc_to_gt(pc);
>>   	struct xe_device *xe = gt_to_xe(gt);
>> @@ -421,10 +421,10 @@ static void tgl_update_rpe_value(struct xe_guc_pc *pc)
>>   	 */
>>   	if (xe->info.platform == XE_PVC) {
>>   		reg = xe_mmio_read32(&gt->mmio, PVC_RP_STATE_CAP);
>> -		pc->rpe_freq = REG_FIELD_GET(RP1_MASK, reg) * GT_FREQUENCY_MULTIPLIER;
>> +		return REG_FIELD_GET(RP1_MASK, reg) * GT_FREQUENCY_MULTIPLIER;
>>   	} else {
>>   		reg = xe_mmio_read32(&gt->mmio, FREQ_INFO_REC);
>> -		pc->rpe_freq = REG_FIELD_GET(RPE_MASK, reg) * GT_FREQUENCY_MULTIPLIER;
>> +		return REG_FIELD_GET(RPE_MASK, reg) * GT_FREQUENCY_MULTIPLIER;
>>   	}
>>   }
>>   
>> @@ -433,20 +433,17 @@ static void pc_update_rp_values(struct xe_guc_pc *pc)
>>   	struct xe_gt *gt = pc_to_gt(pc);
>>   	struct xe_device *xe = gt_to_xe(gt);
>>   
>> -	if (GRAPHICS_VERx100(xe) >= 1270) {
>> +	if (GRAPHICS_VERx100(xe) >= 1270)
>>   		mtl_update_rpa_value(pc);
>> -		mtl_update_rpe_value(pc);
>> -	} else {
>> +	else
>>   		tgl_update_rpa_value(pc);
>> -		tgl_update_rpe_value(pc);
>> -	}
>>   
>>   	/*
>>   	 * RPe is decided at runtime by PCODE. In the rare case where that's
>>   	 * smaller than the fused min, we will trust the PCODE and use that
>>   	 * as our minimum one.
>>   	 */
>> -	pc->rpn_freq = min(pc->rpn_freq, pc->rpe_freq);
>> +	pc->rpn_freq = min(pc->rpn_freq, xe_guc_pc_get_rpe_freq(pc));
>>   }
>>   
>>   /**
>> @@ -560,9 +557,16 @@ u32 xe_guc_pc_get_rpa_freq(struct xe_guc_pc *pc)
>>    */
>>   u32 xe_guc_pc_get_rpe_freq(struct xe_guc_pc *pc)
>>   {
>> -	pc_update_rp_values(pc);
>> +	struct xe_gt *gt = pc_to_gt(pc);
>> +	struct xe_device *xe = gt_to_xe(gt);
>> +	u32 rpe_freq;
>> +
>> +	if (GRAPHICS_VERx100(xe) >= 1270)
>> +		rpe_freq = mtl_get_rpe_value(pc);
>
> just return mtl_get_rpe_value(pc) instead of storing in a local var?
>
Yeah, good idea, I will fix that in next revision.

Thanks,
Anirban
>
> Other than that,
>
> LGTM,
>
> Reviewed-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
>
>> +	else
>> +		rpe_freq = tgl_get_rpe_value(pc);
>>   
>> -	return pc->rpe_freq;
>> +	return rpe_freq;
>>   }
>>   
>>   /**
>> @@ -1021,7 +1025,7 @@ static int pc_set_mert_freq_cap(struct xe_guc_pc *pc)
>>   	/*
>>   	 * Ensure min and max are bound by MERT_FREQ_CAP until driver loads.
>>   	 */
>> -	ret = pc_set_min_freq(pc, min(pc->rpe_freq, pc_max_freq_cap(pc)));
>> +	ret = pc_set_min_freq(pc, min(xe_guc_pc_get_rpe_freq(pc), pc_max_freq_cap(pc)));
>>   	if (!ret)
>>   		ret = pc_set_max_freq(pc, min(pc->rp0_freq, pc_max_freq_cap(pc)));
>>   
>> @@ -1339,7 +1343,7 @@ static void xe_guc_pc_fini_hw(void *arg)
>>   	XE_WARN_ON(xe_guc_pc_stop(pc));
>>   
>>   	/* Bind requested freq to mert_freq_cap before unload */
>> -	pc_set_cur_freq(pc, min(pc_max_freq_cap(pc), pc->rpe_freq));
>> +	pc_set_cur_freq(pc, min(pc_max_freq_cap(pc), xe_guc_pc_get_rpe_freq(pc)));
>>   
>>   	xe_force_wake_put(gt_to_fw(pc_to_gt(pc)), fw_ref);
>>   }
>> diff --git a/drivers/gpu/drm/xe/xe_guc_pc_types.h b/drivers/gpu/drm/xe/xe_guc_pc_types.h
>> index 5e4ea53fbee6..f27c05d81706 100644
>> --- a/drivers/gpu/drm/xe/xe_guc_pc_types.h
>> +++ b/drivers/gpu/drm/xe/xe_guc_pc_types.h
>> @@ -21,8 +21,6 @@ struct xe_guc_pc {
>>   	u32 rp0_freq;
>>   	/** @rpa_freq: HW RPa frequency - The Achievable one */
>>   	u32 rpa_freq;
>> -	/** @rpe_freq: HW RPe frequency - The Efficient one */
>> -	u32 rpe_freq;
>>   	/** @rpn_freq: HW RPN frequency - The Minimum one */
>>   	u32 rpn_freq;
>>   	/** @user_requested_min: Stash the minimum requested freq by user */

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

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

end of thread, other threads:[~2025-10-16  8:46 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-13  6:42 [PATCH] drm/xe/guc: Eliminate RPe caching for SLPC parameter handling Sk Anirban
2025-10-13  7:12 ` ✓ CI.KUnit: success for " Patchwork
2025-10-13  7:55 ` ✓ Xe.CI.BAT: " Patchwork
2025-10-13  8:36 ` ✓ Xe.CI.Full: " Patchwork
2025-10-13 20:05 ` [PATCH] " Rodrigo Vivi
2025-10-13 20:11   ` Anirban, Sk
2025-10-14 19:34   ` Anirban, Sk
2025-10-13 22:35 ` ✓ CI.KUnit: success for drm/xe/guc: Eliminate RPe caching for SLPC parameter handling (rev2) Patchwork
2025-10-13 23:24 ` ✓ Xe.CI.BAT: " Patchwork
2025-10-14  6:29 ` [PATCH] drm/xe/guc: Eliminate RPe caching for SLPC parameter handling Nilawar, Badal
2025-10-14 19:37   ` Anirban, Sk
2025-10-14  6:41 ` ✓ Xe.CI.Full: success for drm/xe/guc: Eliminate RPe caching for SLPC parameter handling (rev2) Patchwork
2025-10-14 20:39 ` [PATCH] drm/xe/guc: Eliminate RPe caching for SLPC parameter handling Belgaumkar, Vinay
2025-10-16  8:46   ` Anirban, Sk

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