Prepare for coming lock protection for SMU message issuing.

Change-Id: Ia4a07898410a661d8603474ec253859278f00d3c
Signed-off-by: Evan Quan <evan.q...@amd.com>
---
 .../gpu/drm/amd/powerplay/hwmgr/smu8_hwmgr.c  |  2 +-
 .../drm/amd/powerplay/smumgr/smu8_smumgr.c    | 30 +++++++++----------
 2 files changed, 16 insertions(+), 16 deletions(-)

diff --git a/drivers/gpu/drm/amd/powerplay/hwmgr/smu8_hwmgr.c 
b/drivers/gpu/drm/amd/powerplay/hwmgr/smu8_hwmgr.c
index 019d6a206492..2e8061eccc43 100644
--- a/drivers/gpu/drm/amd/powerplay/hwmgr/smu8_hwmgr.c
+++ b/drivers/gpu/drm/amd/powerplay/hwmgr/smu8_hwmgr.c
@@ -1755,7 +1755,7 @@ static int smu8_read_sensor(struct pp_hwmgr *hwmgr, int 
idx,
        case AMDGPU_PP_SENSOR_GPU_LOAD:
                result = smum_send_msg_to_smc(hwmgr, 
PPSMC_MSG_GetAverageGraphicsActivity);
                if (0 == result) {
-                       activity_percent = cgs_read_register(hwmgr->device, 
mmSMU_MP1_SRBM2P_ARG_0);
+                       activity_percent = smum_get_argument(hwmgr);
                        activity_percent = activity_percent > 100 ? 100 : 
activity_percent;
                } else {
                        activity_percent = 50;
diff --git a/drivers/gpu/drm/amd/powerplay/smumgr/smu8_smumgr.c 
b/drivers/gpu/drm/amd/powerplay/smumgr/smu8_smumgr.c
index 7dca04a89217..294e48e900dc 100644
--- a/drivers/gpu/drm/amd/powerplay/smumgr/smu8_smumgr.c
+++ b/drivers/gpu/drm/amd/powerplay/smumgr/smu8_smumgr.c
@@ -610,18 +610,18 @@ static int smu8_download_pptable_settings(struct pp_hwmgr 
*hwmgr, void **table)
 
        *table = (struct SMU8_Fusion_ClkTable 
*)smu8_smu->scratch_buffer[i].kaddr;
 
-       smu8_send_msg_to_smc_with_parameter(hwmgr,
+       smum_send_msg_to_smc_with_parameter(hwmgr,
                                PPSMC_MSG_SetClkTableAddrHi,
                                
upper_32_bits(smu8_smu->scratch_buffer[i].mc_addr));
 
-       smu8_send_msg_to_smc_with_parameter(hwmgr,
+       smum_send_msg_to_smc_with_parameter(hwmgr,
                                PPSMC_MSG_SetClkTableAddrLo,
                                
lower_32_bits(smu8_smu->scratch_buffer[i].mc_addr));
 
-       smu8_send_msg_to_smc_with_parameter(hwmgr, PPSMC_MSG_ExecuteJob,
+       smum_send_msg_to_smc_with_parameter(hwmgr, PPSMC_MSG_ExecuteJob,
                                smu8_smu->toc_entry_clock_table);
 
-       smu8_send_msg_to_smc(hwmgr, PPSMC_MSG_ClkTableXferToDram);
+       smum_send_msg_to_smc(hwmgr, PPSMC_MSG_ClkTableXferToDram);
 
        return 0;
 }
@@ -637,18 +637,18 @@ static int smu8_upload_pptable_settings(struct pp_hwmgr 
*hwmgr)
                        break;
        }
 
-       smu8_send_msg_to_smc_with_parameter(hwmgr,
+       smum_send_msg_to_smc_with_parameter(hwmgr,
                                PPSMC_MSG_SetClkTableAddrHi,
                                
upper_32_bits(smu8_smu->scratch_buffer[i].mc_addr));
 
-       smu8_send_msg_to_smc_with_parameter(hwmgr,
+       smum_send_msg_to_smc_with_parameter(hwmgr,
                                PPSMC_MSG_SetClkTableAddrLo,
                                
lower_32_bits(smu8_smu->scratch_buffer[i].mc_addr));
 
-       smu8_send_msg_to_smc_with_parameter(hwmgr, PPSMC_MSG_ExecuteJob,
+       smum_send_msg_to_smc_with_parameter(hwmgr, PPSMC_MSG_ExecuteJob,
                                smu8_smu->toc_entry_clock_table);
 
-       smu8_send_msg_to_smc(hwmgr, PPSMC_MSG_ClkTableXferToSmu);
+       smum_send_msg_to_smc(hwmgr, PPSMC_MSG_ClkTableXferToSmu);
 
        return 0;
 }
@@ -671,23 +671,23 @@ static int smu8_request_smu_load_fw(struct pp_hwmgr 
*hwmgr)
 
        smu8_write_smc_sram_dword(hwmgr, smc_address, 0, smc_address+4);
 
-       smu8_send_msg_to_smc_with_parameter(hwmgr,
+       smum_send_msg_to_smc_with_parameter(hwmgr,
                                        PPSMC_MSG_DriverDramAddrHi,
                                        
upper_32_bits(smu8_smu->toc_buffer.mc_addr));
 
-       smu8_send_msg_to_smc_with_parameter(hwmgr,
+       smum_send_msg_to_smc_with_parameter(hwmgr,
                                        PPSMC_MSG_DriverDramAddrLo,
                                        
lower_32_bits(smu8_smu->toc_buffer.mc_addr));
 
-       smu8_send_msg_to_smc(hwmgr, PPSMC_MSG_InitJobs);
+       smum_send_msg_to_smc(hwmgr, PPSMC_MSG_InitJobs);
 
-       smu8_send_msg_to_smc_with_parameter(hwmgr,
+       smum_send_msg_to_smc_with_parameter(hwmgr,
                                        PPSMC_MSG_ExecuteJob,
                                        smu8_smu->toc_entry_aram);
-       smu8_send_msg_to_smc_with_parameter(hwmgr, PPSMC_MSG_ExecuteJob,
+       smum_send_msg_to_smc_with_parameter(hwmgr, PPSMC_MSG_ExecuteJob,
                                smu8_smu->toc_entry_power_profiling_index);
 
-       smu8_send_msg_to_smc_with_parameter(hwmgr,
+       smum_send_msg_to_smc_with_parameter(hwmgr,
                                        PPSMC_MSG_ExecuteJob,
                                        smu8_smu->toc_entry_initialize_index);
 
@@ -862,7 +862,7 @@ static bool smu8_dpm_check_smu_features(struct pp_hwmgr 
*hwmgr,
        int result;
        unsigned long features;
 
-       result = smu8_send_msg_to_smc_with_parameter(hwmgr, 
PPSMC_MSG_GetFeatureStatus, 0);
+       result = smum_send_msg_to_smc_with_parameter(hwmgr, 
PPSMC_MSG_GetFeatureStatus, 0);
        if (result == 0) {
                features = smum_get_argument(hwmgr);
                if (features & check_feature)
-- 
2.26.0

_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

Reply via email to