drm/amd/powerplay: move bootup value before read pptable from vbios

In navi10, we need read the pp_table_id from bootup value, then decide whether
use load the soft pptable.

Signed-off-by: Huang Rui <ray.huang@amd.com>
Reviewed-by: Hawking Zhang <Hawking.Zhang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
Huang Rui 2019-01-31 21:11:11 +08:00 committed by Alex Deucher
parent 3152865035
commit 4009b9b589
1 changed files with 3 additions and 3 deletions

View File

@ -628,12 +628,12 @@ static int smu_smc_table_hw_init(struct smu_context *smu,
return ret;
if (initialize) {
ret = smu_read_pptable_from_vbios(smu);
/* get boot_values from vbios to set revision, gfxclk, and etc. */
ret = smu_get_vbios_bootup_values(smu);
if (ret)
return ret;
/* get boot_values from vbios to set revision, gfxclk, and etc. */
ret = smu_get_vbios_bootup_values(smu);
ret = smu_read_pptable_from_vbios(smu);
if (ret)
return ret;