diff options
author | Alex Deucher <[email protected]> | 2023-10-12 15:10:53 -0400 |
---|---|---|
committer | Alex Deucher <[email protected]> | 2023-10-19 18:26:50 -0400 |
commit | e40dd9c6b75d667daea3b320617d4b80495e8afe (patch) | |
tree | 16fa408a264dee3f9d5ff129cdcf0bd6314bd54d | |
parent | 27442758e9b4e083bef3f164a1739475c01f3202 (diff) |
drm/amdgpu/pm: update SMU 13.0.0 PMFW version check
Update the PMFW version check the the ROCm optimizations.
Reviewed-by: Hawking Zhang <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
-rw-r--r-- | drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0_0_ppt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0_0_ppt.c b/drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0_0_ppt.c index 9de8284ab9a9..60e81f015407 100644 --- a/drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0_0_ppt.c +++ b/drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0_0_ppt.c @@ -2562,7 +2562,7 @@ static int smu_v13_0_0_set_power_profile_mode(struct smu_context *smu, if (smu->power_profile_mode == PP_SMC_POWER_PROFILE_COMPUTE && (amdgpu_ip_version(smu->adev, MP1_HWIP, 0) == IP_VERSION(13, 0, 0)) && ((smu->adev->pm.fw_version == 0x004e6601) || - (smu->adev->pm.fw_version >= 0x004e7300))) { + (smu->adev->pm.fw_version >= 0x004e7400))) { workload_type = smu_cmn_to_asic_specific_index(smu, CMN2ASIC_MAPPING_WORKLOAD, PP_SMC_POWER_PROFILE_POWERSAVING); |