diff options
| author | Evan Quan <evan.quan@amd.com> | 2021-03-25 13:16:48 +0800 | 
|---|---|---|
| committer | Alex Deucher <alexander.deucher@amd.com> | 2021-04-09 16:46:51 -0400 | 
| commit | 2d64d23e9596b1815fa1b536b3ac096afac10bd5 (patch) | |
| tree | a73f9cefe79ca288433d19f4353bcb74d97c5fbf /drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c | |
| parent | d2b0b4832b90fabab282e85f2a6eff085af95a98 (diff) | |
drm/amd/pm: unify the interface for gfx state setting
No need to have special handling for swSMU supported ASICs.
Signed-off-by: Evan Quan <evan.quan@amd.com>
Reviewed-by: Lijo Lazar <lijo.lazar@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c')
| -rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c | 16 | 
1 files changed, 6 insertions, 10 deletions
| diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c index de540c209023..12e8b527776b 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c @@ -842,14 +842,10 @@ int amdgpu_gfx_get_num_kcq(struct amdgpu_device *adev)  void amdgpu_gfx_state_change_set(struct amdgpu_device *adev, enum gfx_change_state state)  { -	if (is_support_sw_smu(adev)) { -		smu_gfx_state_change_set(&adev->smu, state); -	} else { -		mutex_lock(&adev->pm.mutex); -		if (adev->powerplay.pp_funcs && -		    adev->powerplay.pp_funcs->gfx_state_change_set) -			((adev)->powerplay.pp_funcs->gfx_state_change_set( -				(adev)->powerplay.pp_handle, state)); -		mutex_unlock(&adev->pm.mutex); -	} +	mutex_lock(&adev->pm.mutex); +	if (adev->powerplay.pp_funcs && +	    adev->powerplay.pp_funcs->gfx_state_change_set) +		((adev)->powerplay.pp_funcs->gfx_state_change_set( +			(adev)->powerplay.pp_handle, state)); +	mutex_unlock(&adev->pm.mutex);  } | 
