[PATCH] drm/amd/powerplay: Allow duplicate enteries in pptable.
Alex Deucher
alexdeucher at gmail.com
Tue May 2 14:00:26 UTC 2017
On Tue, May 2, 2017 at 2:41 AM, Rex Zhu <Rex.Zhu at amd.com> wrote:
> Change-Id: Iae711f1a33264c44a6819f78e345aba50456861f
> Signed-off-by: Rex Zhu <Rex.Zhu at amd.com>
Reviewed-by: Alex Deucher <alexander.deucher at amd.com>
> ---
> drivers/gpu/drm/amd/powerplay/hwmgr/vega10_hwmgr.c | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/gpu/drm/amd/powerplay/hwmgr/vega10_hwmgr.c b/drivers/gpu/drm/amd/powerplay/hwmgr/vega10_hwmgr.c
> index f72d5a7..b474129 100644
> --- a/drivers/gpu/drm/amd/powerplay/hwmgr/vega10_hwmgr.c
> +++ b/drivers/gpu/drm/amd/powerplay/hwmgr/vega10_hwmgr.c
> @@ -1137,7 +1137,7 @@ static void vega10_setup_default_single_dpm_table(struct pp_hwmgr *hwmgr,
> int i;
>
> for (i = 0; i < dep_table->count; i++) {
> - if (i == 0 || dpm_table->dpm_levels[dpm_table->count - 1].value !=
> + if (i == 0 || dpm_table->dpm_levels[dpm_table->count - 1].value <=
> dep_table->entries[i].clk) {
> dpm_table->dpm_levels[dpm_table->count].value =
> dep_table->entries[i].clk;
> @@ -1274,7 +1274,7 @@ static int vega10_setup_default_dpm_tables(struct pp_hwmgr *hwmgr)
> dpm_table = &(data->dpm_table.eclk_table);
> for (i = 0; i < dep_mm_table->count; i++) {
> if (i == 0 || dpm_table->dpm_levels
> - [dpm_table->count - 1].value !=
> + [dpm_table->count - 1].value <=
> dep_mm_table->entries[i].eclk) {
> dpm_table->dpm_levels[dpm_table->count].value =
> dep_mm_table->entries[i].eclk;
> @@ -1290,7 +1290,7 @@ static int vega10_setup_default_dpm_tables(struct pp_hwmgr *hwmgr)
> dpm_table = &(data->dpm_table.vclk_table);
> for (i = 0; i < dep_mm_table->count; i++) {
> if (i == 0 || dpm_table->dpm_levels
> - [dpm_table->count - 1].value !=
> + [dpm_table->count - 1].value <=
> dep_mm_table->entries[i].vclk) {
> dpm_table->dpm_levels[dpm_table->count].value =
> dep_mm_table->entries[i].vclk;
> @@ -1304,7 +1304,7 @@ static int vega10_setup_default_dpm_tables(struct pp_hwmgr *hwmgr)
> dpm_table = &(data->dpm_table.dclk_table);
> for (i = 0; i < dep_mm_table->count; i++) {
> if (i == 0 || dpm_table->dpm_levels
> - [dpm_table->count - 1].value !=
> + [dpm_table->count - 1].value <=
> dep_mm_table->entries[i].dclk) {
> dpm_table->dpm_levels[dpm_table->count].value =
> dep_mm_table->entries[i].dclk;
> --
> 1.9.1
>
> _______________________________________________
> amd-gfx mailing list
> amd-gfx at lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/amd-gfx
More information about the amd-gfx
mailing list