drm/amd/powerplay: move smu_feature_update_enable_state to up level
this function is not ip or asic related function, so move it to top level as public api in smu. Signed-off-by: Kevin Wang <kevin1.wang@amd.com> Reviewed-by: Evan Quan <evan.quan@amd.com> Reviewed-by: Kenneth Feng <kenneth.feng@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
@@ -509,6 +509,41 @@ int smu_feature_init_dpm(struct smu_context *smu)
|
|||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
int smu_feature_update_enable_state(struct smu_context *smu, uint64_t feature_mask, bool enabled)
|
||||||
|
{
|
||||||
|
uint32_t feature_low = 0, feature_high = 0;
|
||||||
|
int ret = 0;
|
||||||
|
|
||||||
|
if (!smu->pm_enabled)
|
||||||
|
return ret;
|
||||||
|
|
||||||
|
feature_low = (feature_mask >> 0 ) & 0xffffffff;
|
||||||
|
feature_high = (feature_mask >> 32) & 0xffffffff;
|
||||||
|
|
||||||
|
if (enabled) {
|
||||||
|
ret = smu_send_smc_msg_with_param(smu, SMU_MSG_EnableSmuFeaturesLow,
|
||||||
|
feature_low);
|
||||||
|
if (ret)
|
||||||
|
return ret;
|
||||||
|
ret = smu_send_smc_msg_with_param(smu, SMU_MSG_EnableSmuFeaturesHigh,
|
||||||
|
feature_high);
|
||||||
|
if (ret)
|
||||||
|
return ret;
|
||||||
|
|
||||||
|
} else {
|
||||||
|
ret = smu_send_smc_msg_with_param(smu, SMU_MSG_DisableSmuFeaturesLow,
|
||||||
|
feature_low);
|
||||||
|
if (ret)
|
||||||
|
return ret;
|
||||||
|
ret = smu_send_smc_msg_with_param(smu, SMU_MSG_DisableSmuFeaturesHigh,
|
||||||
|
feature_high);
|
||||||
|
if (ret)
|
||||||
|
return ret;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
int smu_feature_is_enabled(struct smu_context *smu, enum smu_feature_mask mask)
|
int smu_feature_is_enabled(struct smu_context *smu, enum smu_feature_mask mask)
|
||||||
{
|
{
|
||||||
@@ -534,6 +569,7 @@ int smu_feature_set_enabled(struct smu_context *smu, enum smu_feature_mask mask,
|
|||||||
{
|
{
|
||||||
struct smu_feature *feature = &smu->smu_feature;
|
struct smu_feature *feature = &smu->smu_feature;
|
||||||
int feature_id;
|
int feature_id;
|
||||||
|
uint64_t feature_mask = 0;
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
|
|
||||||
feature_id = smu_feature_get_index(smu, mask);
|
feature_id = smu_feature_get_index(smu, mask);
|
||||||
@@ -542,8 +578,10 @@ int smu_feature_set_enabled(struct smu_context *smu, enum smu_feature_mask mask,
|
|||||||
|
|
||||||
WARN_ON(feature_id > feature->feature_num);
|
WARN_ON(feature_id > feature->feature_num);
|
||||||
|
|
||||||
|
feature_mask = 1ULL << feature_id;
|
||||||
|
|
||||||
mutex_lock(&feature->mutex);
|
mutex_lock(&feature->mutex);
|
||||||
ret = smu_feature_update_enable_state(smu, feature_id, enable);
|
ret = smu_feature_update_enable_state(smu, feature_mask, enable);
|
||||||
if (ret)
|
if (ret)
|
||||||
goto failed;
|
goto failed;
|
||||||
|
|
||||||
|
@@ -479,7 +479,6 @@ struct smu_funcs
|
|||||||
int (*init_display_count)(struct smu_context *smu, uint32_t count);
|
int (*init_display_count)(struct smu_context *smu, uint32_t count);
|
||||||
int (*set_allowed_mask)(struct smu_context *smu);
|
int (*set_allowed_mask)(struct smu_context *smu);
|
||||||
int (*get_enabled_mask)(struct smu_context *smu, uint32_t *feature_mask, uint32_t num);
|
int (*get_enabled_mask)(struct smu_context *smu, uint32_t *feature_mask, uint32_t num);
|
||||||
int (*update_feature_enable_state)(struct smu_context *smu, uint32_t feature_id, bool enabled);
|
|
||||||
int (*notify_display_change)(struct smu_context *smu);
|
int (*notify_display_change)(struct smu_context *smu);
|
||||||
int (*get_power_limit)(struct smu_context *smu, uint32_t *limit, bool def);
|
int (*get_power_limit)(struct smu_context *smu, uint32_t *limit, bool def);
|
||||||
int (*set_power_limit)(struct smu_context *smu, uint32_t n);
|
int (*set_power_limit)(struct smu_context *smu, uint32_t n);
|
||||||
@@ -595,8 +594,6 @@ struct smu_funcs
|
|||||||
((smu)->funcs->get_enabled_mask? (smu)->funcs->get_enabled_mask((smu), (mask), (num)) : 0)
|
((smu)->funcs->get_enabled_mask? (smu)->funcs->get_enabled_mask((smu), (mask), (num)) : 0)
|
||||||
#define smu_is_dpm_running(smu) \
|
#define smu_is_dpm_running(smu) \
|
||||||
((smu)->ppt_funcs->is_dpm_running ? (smu)->ppt_funcs->is_dpm_running((smu)) : 0)
|
((smu)->ppt_funcs->is_dpm_running ? (smu)->ppt_funcs->is_dpm_running((smu)) : 0)
|
||||||
#define smu_feature_update_enable_state(smu, feature_id, enabled) \
|
|
||||||
((smu)->funcs->update_feature_enable_state? (smu)->funcs->update_feature_enable_state((smu), (feature_id), (enabled)) : 0)
|
|
||||||
#define smu_notify_display_change(smu) \
|
#define smu_notify_display_change(smu) \
|
||||||
((smu)->funcs->notify_display_change? (smu)->funcs->notify_display_change((smu)) : 0)
|
((smu)->funcs->notify_display_change? (smu)->funcs->notify_display_change((smu)) : 0)
|
||||||
#define smu_store_powerplay_table(smu) \
|
#define smu_store_powerplay_table(smu) \
|
||||||
@@ -804,6 +801,7 @@ enum amd_dpm_forced_level smu_get_performance_level(struct smu_context *smu);
|
|||||||
int smu_force_performance_level(struct smu_context *smu, enum amd_dpm_forced_level level);
|
int smu_force_performance_level(struct smu_context *smu, enum amd_dpm_forced_level level);
|
||||||
int smu_set_display_count(struct smu_context *smu, uint32_t count);
|
int smu_set_display_count(struct smu_context *smu, uint32_t count);
|
||||||
bool smu_clk_dpm_is_enabled(struct smu_context *smu, enum smu_clk_type clk_type);
|
bool smu_clk_dpm_is_enabled(struct smu_context *smu, enum smu_clk_type clk_type);
|
||||||
|
int smu_feature_update_enable_state(struct smu_context *smu, uint64_t feature_mask, bool enabled);
|
||||||
const char *smu_get_message_name(struct smu_context *smu, enum smu_message_type type);
|
const char *smu_get_message_name(struct smu_context *smu, enum smu_message_type type);
|
||||||
const char *smu_get_feature_name(struct smu_context *smu, enum smu_feature_mask feature);
|
const char *smu_get_feature_name(struct smu_context *smu, enum smu_feature_mask feature);
|
||||||
|
|
||||||
|
@@ -798,44 +798,6 @@ static int smu_v11_0_init_display_count(struct smu_context *smu, uint32_t count)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int smu_v11_0_update_feature_enable_state(struct smu_context *smu, uint32_t feature_id, bool enabled)
|
|
||||||
{
|
|
||||||
uint32_t feature_low = 0, feature_high = 0;
|
|
||||||
int ret = 0;
|
|
||||||
|
|
||||||
if (!smu->pm_enabled)
|
|
||||||
return ret;
|
|
||||||
if (feature_id >= 0 && feature_id < 31)
|
|
||||||
feature_low = (1 << feature_id);
|
|
||||||
else if (feature_id > 31 && feature_id < 63)
|
|
||||||
feature_high = (1 << feature_id);
|
|
||||||
else
|
|
||||||
return -EINVAL;
|
|
||||||
|
|
||||||
if (enabled) {
|
|
||||||
ret = smu_send_smc_msg_with_param(smu, SMU_MSG_EnableSmuFeaturesLow,
|
|
||||||
feature_low);
|
|
||||||
if (ret)
|
|
||||||
return ret;
|
|
||||||
ret = smu_send_smc_msg_with_param(smu, SMU_MSG_EnableSmuFeaturesHigh,
|
|
||||||
feature_high);
|
|
||||||
if (ret)
|
|
||||||
return ret;
|
|
||||||
|
|
||||||
} else {
|
|
||||||
ret = smu_send_smc_msg_with_param(smu, SMU_MSG_DisableSmuFeaturesLow,
|
|
||||||
feature_low);
|
|
||||||
if (ret)
|
|
||||||
return ret;
|
|
||||||
ret = smu_send_smc_msg_with_param(smu, SMU_MSG_DisableSmuFeaturesHigh,
|
|
||||||
feature_high);
|
|
||||||
if (ret)
|
|
||||||
return ret;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
static int smu_v11_0_set_allowed_mask(struct smu_context *smu)
|
static int smu_v11_0_set_allowed_mask(struct smu_context *smu)
|
||||||
{
|
{
|
||||||
@@ -1783,7 +1745,6 @@ static const struct smu_funcs smu_v11_0_funcs = {
|
|||||||
.set_allowed_mask = smu_v11_0_set_allowed_mask,
|
.set_allowed_mask = smu_v11_0_set_allowed_mask,
|
||||||
.get_enabled_mask = smu_v11_0_get_enabled_mask,
|
.get_enabled_mask = smu_v11_0_get_enabled_mask,
|
||||||
.system_features_control = smu_v11_0_system_features_control,
|
.system_features_control = smu_v11_0_system_features_control,
|
||||||
.update_feature_enable_state = smu_v11_0_update_feature_enable_state,
|
|
||||||
.notify_display_change = smu_v11_0_notify_display_change,
|
.notify_display_change = smu_v11_0_notify_display_change,
|
||||||
.get_power_limit = smu_v11_0_get_power_limit,
|
.get_power_limit = smu_v11_0_get_power_limit,
|
||||||
.set_power_limit = smu_v11_0_set_power_limit,
|
.set_power_limit = smu_v11_0_set_power_limit,
|
||||||
|
Reference in New Issue
Block a user