From a3f949cd61e0ea1bc93c00241ea1d7d9e1fcb3e9 Mon Sep 17 00:00:00 2001 From: Vinay Belgaumkar Date: Tue, 3 Feb 2026 17:42:33 -0800 Subject: [PATCH] drm/xe: Use FORCEWAKE_GT in xe_guc_pc_fini_hw() No need to use FORCEWAKE_ALL since the registers being written are in GT domain. Cc: Michal Wajdeczko Signed-off-by: Vinay Belgaumkar Reviewed-by: Michal Wajdeczko Link: https://patch.msgid.link/20260204014234.2867763-3-vinay.belgaumkar@intel.com --- drivers/gpu/drm/xe/xe_guc_pc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/xe/xe_guc_pc.c b/drivers/gpu/drm/xe/xe_guc_pc.c index c8313e308f962..878eb273c3e63 100644 --- a/drivers/gpu/drm/xe/xe_guc_pc.c +++ b/drivers/gpu/drm/xe/xe_guc_pc.c @@ -1300,7 +1300,7 @@ static void xe_guc_pc_fini_hw(void *arg) if (xe_device_wedged(xe)) return; - CLASS(xe_force_wake, fw_ref)(gt_to_fw(pc_to_gt(pc)), XE_FORCEWAKE_ALL); + CLASS(xe_force_wake, fw_ref)(gt_to_fw(pc_to_gt(pc)), XE_FW_GT); XE_WARN_ON(xe_guc_pc_stop(pc)); /* Bind requested freq to mert_freq_cap before unload */ -- 2.47.3