Skip to content

Commit

Permalink
drm/amd/powerplay: remove max DCEFCLK limitation
Browse files Browse the repository at this point in the history
The latest SMU fw removes the limitation that required
UCLK >= DCEFCLK.

Signed-off-by: Evan Quan <evan.quan@amd.com>
Acked-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
  • Loading branch information
Evan Quan authored and Alex Deucher committed Aug 27, 2018
1 parent 16ed0ff commit efa7ac6
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions drivers/gpu/drm/amd/powerplay/hwmgr/vega20_hwmgr.c
Original file line number Diff line number Diff line change
Expand Up @@ -1356,9 +1356,6 @@ static int vega20_init_max_sustainable_clocks(struct pp_hwmgr *hwmgr)
if (max_sustainable_clocks->soc_clock < max_sustainable_clocks->uclock)
max_sustainable_clocks->uclock = max_sustainable_clocks->soc_clock;

if (max_sustainable_clocks->uclock < max_sustainable_clocks->dcef_clock)
max_sustainable_clocks->dcef_clock = max_sustainable_clocks->uclock;

return 0;
}

Expand Down

0 comments on commit efa7ac6

Please sign in to comment.