OSDN Git Service

drm/amdgpu/powerplay: update Arcturus smu version in new place
authorLe Ma <le.ma@amd.com>
Fri, 9 Aug 2019 07:44:22 +0000 (15:44 +0800)
committerAlex Deucher <alexander.deucher@amd.com>
Mon, 12 Aug 2019 17:47:49 +0000 (12:47 -0500)
Follow patch below:
    drm/amd/powerplay: re-define smu interface version for smu v11

Signed-off-by: Le Ma <le.ma@amd.com>
Reviewed-by: Kevin Wang <kevin1.wang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/powerplay/arcturus_ppt.c
drivers/gpu/drm/amd/powerplay/inc/smu11_driver_if_arcturus.h
drivers/gpu/drm/amd/powerplay/inc/smu_v11_0.h
drivers/gpu/drm/amd/powerplay/smu_v11_0.c

index cff3777..e6fcbdf 100644 (file)
@@ -1918,6 +1918,5 @@ void arcturus_set_ppt_funcs(struct smu_context *smu)
        struct smu_table_context *smu_table = &smu->smu_table;
 
        smu->ppt_funcs = &arcturus_ppt_funcs;
-       smu->smc_if_version = SMU11_DRIVER_IF_VERSION;
        smu_table->table_count = TABLE_COUNT;
 }
index c7a7953..b99e98c 100644 (file)
@@ -27,7 +27,7 @@
 // *** IMPORTANT ***
 // SMU TEAM: Always increment the interface version if
 // 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
 
index ee8542d..acbb83d 100644 (file)
@@ -27,6 +27,7 @@
 
 #define SMU11_DRIVER_IF_VERSION_INV 0xFFFFFFFF
 #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_NV14 0x34
 
index 1090a83..8bbcf03 100644 (file)
@@ -278,6 +278,9 @@ static int smu_v11_0_check_fw_version(struct smu_context *smu)
        case CHIP_VEGA20:
                smu->smc_if_version = SMU11_DRIVER_IF_VERSION_VG20;
                break;
+       case CHIP_ARCTURUS:
+               smu->smc_if_version = SMU11_DRIVER_IF_VERSION_ARCT;
+               break;
        case CHIP_NAVI10:
                smu->smc_if_version = SMU11_DRIVER_IF_VERSION_NV10;
                break;