Commit e34640e2 authored by Le Ma's avatar Le Ma Committed by Alex Deucher

drm/amdgpu/powerplay: update Arcturus smu version in new place

Follow patch below:
    drm/amd/powerplay: re-define smu interface version for smu v11
Signed-off-by: default avatarLe Ma <le.ma@amd.com>
Reviewed-by: default avatarKevin Wang <kevin1.wang@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent a840159c
...@@ -1918,6 +1918,5 @@ void arcturus_set_ppt_funcs(struct smu_context *smu) ...@@ -1918,6 +1918,5 @@ void arcturus_set_ppt_funcs(struct smu_context *smu)
struct smu_table_context *smu_table = &smu->smu_table; struct smu_table_context *smu_table = &smu->smu_table;
smu->ppt_funcs = &arcturus_ppt_funcs; smu->ppt_funcs = &arcturus_ppt_funcs;
smu->smc_if_version = SMU11_DRIVER_IF_VERSION;
smu_table->table_count = TABLE_COUNT; smu_table->table_count = TABLE_COUNT;
} }
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
// *** IMPORTANT *** // *** IMPORTANT ***
// SMU TEAM: Always increment the interface version if // SMU TEAM: Always increment the interface version if
// any structure is changed in this file // any structure is changed in this file
#define SMU11_DRIVER_IF_VERSION 0x08 //#define SMU11_DRIVER_IF_VERSION 0x08
#define PPTABLE_ARCTURUS_SMU_VERSION 4 #define PPTABLE_ARCTURUS_SMU_VERSION 4
......
...@@ -27,6 +27,7 @@ ...@@ -27,6 +27,7 @@
#define SMU11_DRIVER_IF_VERSION_INV 0xFFFFFFFF #define SMU11_DRIVER_IF_VERSION_INV 0xFFFFFFFF
#define SMU11_DRIVER_IF_VERSION_VG20 0x13 #define SMU11_DRIVER_IF_VERSION_VG20 0x13
#define SMU11_DRIVER_IF_VERSION_ARCT 0x08
#define SMU11_DRIVER_IF_VERSION_NV10 0x33 #define SMU11_DRIVER_IF_VERSION_NV10 0x33
#define SMU11_DRIVER_IF_VERSION_NV14 0x34 #define SMU11_DRIVER_IF_VERSION_NV14 0x34
......
...@@ -278,6 +278,9 @@ static int smu_v11_0_check_fw_version(struct smu_context *smu) ...@@ -278,6 +278,9 @@ static int smu_v11_0_check_fw_version(struct smu_context *smu)
case CHIP_VEGA20: case CHIP_VEGA20:
smu->smc_if_version = SMU11_DRIVER_IF_VERSION_VG20; smu->smc_if_version = SMU11_DRIVER_IF_VERSION_VG20;
break; break;
case CHIP_ARCTURUS:
smu->smc_if_version = SMU11_DRIVER_IF_VERSION_ARCT;
break;
case CHIP_NAVI10: case CHIP_NAVI10:
smu->smc_if_version = SMU11_DRIVER_IF_VERSION_NV10; smu->smc_if_version = SMU11_DRIVER_IF_VERSION_NV10;
break; break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment