mirror of
https://github.com/torvalds/linux.git
synced 2026-05-25 07:33:19 +02:00
drm/xe/guc_pc: Use scope-based cleanup
Use scope-based cleanup for forcewake and runtime PM in the GuC PC code. This allows us to eliminate to goto-based cleanup and simplifies some other functions. Reviewed-by: Gustavo Sousa <gustavo.sousa@intel.com> Link: https://patch.msgid.link/20251118164338.3572146-35-matthew.d.roper@intel.com Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
This commit is contained in:
parent
3947e482b5
commit
e9bc4162bf
|
|
@ -499,21 +499,17 @@ u32 xe_guc_pc_get_cur_freq_fw(struct xe_guc_pc *pc)
|
|||
int xe_guc_pc_get_cur_freq(struct xe_guc_pc *pc, u32 *freq)
|
||||
{
|
||||
struct xe_gt *gt = pc_to_gt(pc);
|
||||
unsigned int fw_ref;
|
||||
|
||||
/*
|
||||
* GuC SLPC plays with cur freq request when GuCRC is enabled
|
||||
* Block RC6 for a more reliable read.
|
||||
*/
|
||||
fw_ref = xe_force_wake_get(gt_to_fw(gt), XE_FW_GT);
|
||||
if (!xe_force_wake_ref_has_domain(fw_ref, XE_FW_GT)) {
|
||||
xe_force_wake_put(gt_to_fw(gt), fw_ref);
|
||||
CLASS(xe_force_wake, fw_ref)(gt_to_fw(gt), XE_FW_GT);
|
||||
if (!xe_force_wake_ref_has_domain(fw_ref.domains, XE_FW_GT))
|
||||
return -ETIMEDOUT;
|
||||
}
|
||||
|
||||
*freq = get_cur_freq(gt);
|
||||
|
||||
xe_force_wake_put(gt_to_fw(gt), fw_ref);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
@ -1087,13 +1083,8 @@ int xe_guc_pc_gucrc_disable(struct xe_guc_pc *pc)
|
|||
*/
|
||||
int xe_guc_pc_override_gucrc_mode(struct xe_guc_pc *pc, enum slpc_gucrc_mode mode)
|
||||
{
|
||||
int ret;
|
||||
|
||||
xe_pm_runtime_get(pc_to_xe(pc));
|
||||
ret = pc_action_set_param(pc, SLPC_PARAM_PWRGATE_RC_MODE, mode);
|
||||
xe_pm_runtime_put(pc_to_xe(pc));
|
||||
|
||||
return ret;
|
||||
guard(xe_pm_runtime)(pc_to_xe(pc));
|
||||
return pc_action_set_param(pc, SLPC_PARAM_PWRGATE_RC_MODE, mode);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -1104,13 +1095,8 @@ int xe_guc_pc_override_gucrc_mode(struct xe_guc_pc *pc, enum slpc_gucrc_mode mod
|
|||
*/
|
||||
int xe_guc_pc_unset_gucrc_mode(struct xe_guc_pc *pc)
|
||||
{
|
||||
int ret;
|
||||
|
||||
xe_pm_runtime_get(pc_to_xe(pc));
|
||||
ret = pc_action_unset_param(pc, SLPC_PARAM_PWRGATE_RC_MODE);
|
||||
xe_pm_runtime_put(pc_to_xe(pc));
|
||||
|
||||
return ret;
|
||||
guard(xe_pm_runtime)(pc_to_xe(pc));
|
||||
return pc_action_unset_param(pc, SLPC_PARAM_PWRGATE_RC_MODE);
|
||||
}
|
||||
|
||||
static void pc_init_pcode_freq(struct xe_guc_pc *pc)
|
||||
|
|
@ -1198,7 +1184,7 @@ int xe_guc_pc_set_power_profile(struct xe_guc_pc *pc, const char *buf)
|
|||
return -EINVAL;
|
||||
|
||||
guard(mutex)(&pc->freq_lock);
|
||||
xe_pm_runtime_get_noresume(pc_to_xe(pc));
|
||||
guard(xe_pm_runtime_noresume)(pc_to_xe(pc));
|
||||
|
||||
ret = pc_action_set_param(pc,
|
||||
SLPC_PARAM_POWER_PROFILE,
|
||||
|
|
@ -1209,8 +1195,6 @@ int xe_guc_pc_set_power_profile(struct xe_guc_pc *pc, const char *buf)
|
|||
else
|
||||
pc->power_profile = val;
|
||||
|
||||
xe_pm_runtime_put(pc_to_xe(pc));
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
|
@ -1223,17 +1207,14 @@ int xe_guc_pc_start(struct xe_guc_pc *pc)
|
|||
struct xe_device *xe = pc_to_xe(pc);
|
||||
struct xe_gt *gt = pc_to_gt(pc);
|
||||
u32 size = PAGE_ALIGN(sizeof(struct slpc_shared_data));
|
||||
unsigned int fw_ref;
|
||||
ktime_t earlier;
|
||||
int ret;
|
||||
|
||||
xe_gt_assert(gt, xe_device_uc_enabled(xe));
|
||||
|
||||
fw_ref = xe_force_wake_get(gt_to_fw(gt), XE_FW_GT);
|
||||
if (!xe_force_wake_ref_has_domain(fw_ref, XE_FW_GT)) {
|
||||
xe_force_wake_put(gt_to_fw(gt), fw_ref);
|
||||
CLASS(xe_force_wake, fw_ref)(gt_to_fw(gt), XE_FW_GT);
|
||||
if (!xe_force_wake_ref_has_domain(fw_ref.domains, XE_FW_GT))
|
||||
return -ETIMEDOUT;
|
||||
}
|
||||
|
||||
if (xe->info.skip_guc_pc) {
|
||||
if (xe->info.platform != XE_PVC)
|
||||
|
|
@ -1241,9 +1222,7 @@ int xe_guc_pc_start(struct xe_guc_pc *pc)
|
|||
|
||||
/* Request max possible since dynamic freq mgmt is not enabled */
|
||||
pc_set_cur_freq(pc, UINT_MAX);
|
||||
|
||||
ret = 0;
|
||||
goto out;
|
||||
return 0;
|
||||
}
|
||||
|
||||
xe_map_memset(xe, &pc->bo->vmap, 0, 0, size);
|
||||
|
|
@ -1252,7 +1231,7 @@ int xe_guc_pc_start(struct xe_guc_pc *pc)
|
|||
earlier = ktime_get();
|
||||
ret = pc_action_reset(pc);
|
||||
if (ret)
|
||||
goto out;
|
||||
return ret;
|
||||
|
||||
if (wait_for_pc_state(pc, SLPC_GLOBAL_STATE_RUNNING,
|
||||
SLPC_RESET_TIMEOUT_MS)) {
|
||||
|
|
@ -1263,8 +1242,7 @@ int xe_guc_pc_start(struct xe_guc_pc *pc)
|
|||
if (wait_for_pc_state(pc, SLPC_GLOBAL_STATE_RUNNING,
|
||||
SLPC_RESET_EXTENDED_TIMEOUT_MS)) {
|
||||
xe_gt_err(gt, "GuC PC Start failed: Dynamic GT frequency control and GT sleep states are now disabled.\n");
|
||||
ret = -EIO;
|
||||
goto out;
|
||||
return -EIO;
|
||||
}
|
||||
|
||||
xe_gt_warn(gt, "GuC PC excessive start time: %lldms",
|
||||
|
|
@ -1273,21 +1251,20 @@ int xe_guc_pc_start(struct xe_guc_pc *pc)
|
|||
|
||||
ret = pc_init_freqs(pc);
|
||||
if (ret)
|
||||
goto out;
|
||||
return ret;
|
||||
|
||||
ret = pc_set_mert_freq_cap(pc);
|
||||
if (ret)
|
||||
goto out;
|
||||
return ret;
|
||||
|
||||
if (xe->info.platform == XE_PVC) {
|
||||
xe_guc_pc_gucrc_disable(pc);
|
||||
ret = 0;
|
||||
goto out;
|
||||
return 0;
|
||||
}
|
||||
|
||||
ret = pc_action_setup_gucrc(pc, GUCRC_FIRMWARE_CONTROL);
|
||||
if (ret)
|
||||
goto out;
|
||||
return ret;
|
||||
|
||||
/* Enable SLPC Optimized Strategy for compute */
|
||||
ret = pc_action_set_strategy(pc, SLPC_OPTIMIZED_STRATEGY_COMPUTE);
|
||||
|
|
@ -1297,8 +1274,6 @@ int xe_guc_pc_start(struct xe_guc_pc *pc)
|
|||
if (unlikely(ret))
|
||||
xe_gt_err(gt, "Failed to set SLPC power profile: %pe\n", ERR_PTR(ret));
|
||||
|
||||
out:
|
||||
xe_force_wake_put(gt_to_fw(gt), fw_ref);
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
|
@ -1330,19 +1305,16 @@ static void xe_guc_pc_fini_hw(void *arg)
|
|||
{
|
||||
struct xe_guc_pc *pc = arg;
|
||||
struct xe_device *xe = pc_to_xe(pc);
|
||||
unsigned int fw_ref;
|
||||
|
||||
if (xe_device_wedged(xe))
|
||||
return;
|
||||
|
||||
fw_ref = xe_force_wake_get(gt_to_fw(pc_to_gt(pc)), XE_FORCEWAKE_ALL);
|
||||
CLASS(xe_force_wake, fw_ref)(gt_to_fw(pc_to_gt(pc)), XE_FORCEWAKE_ALL);
|
||||
xe_guc_pc_gucrc_disable(pc);
|
||||
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), xe_guc_pc_get_rpe_freq(pc)));
|
||||
|
||||
xe_force_wake_put(gt_to_fw(pc_to_gt(pc)), fw_ref);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user