drm/amd/powerplay: remove max DCEFCLK limitation

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>
This commit is contained in:
Evan Quan 2018-07-30 14:01:00 +08:00 committed by Alex Deucher
parent 16ed0ff275
commit efa7ac67a8

View File

@ -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;
}