[AMD Official Use Only - General] Reviewed-by: Zhigang Luo <[email protected]>
-----Original Message----- From: Dhume, Samir <[email protected]> Sent: Wednesday, August 16, 2023 9:20 PM To: [email protected] Cc: Luo, Zhigang <[email protected]>; Liu, Leo <[email protected]>; Deucher, Alexander <[email protected]>; Dhume, Samir <[email protected]> Subject: [PATCH] drm/amdgpu/jpeg - skip change of power-gating state for sriov Signed-off-by: Samir Dhume <[email protected]> --- drivers/gpu/drm/amd/amdgpu/jpeg_v4_0_3.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/amd/amdgpu/jpeg_v4_0_3.c b/drivers/gpu/drm/amd/amdgpu/jpeg_v4_0_3.c index 15612915bb6c..1de79d660285 100644 --- a/drivers/gpu/drm/amd/amdgpu/jpeg_v4_0_3.c +++ b/drivers/gpu/drm/amd/amdgpu/jpeg_v4_0_3.c @@ -360,8 +360,10 @@ static int jpeg_v4_0_3_hw_fini(void *handle) cancel_delayed_work_sync(&adev->jpeg.idle_work); - if (adev->jpeg.cur_state != AMD_PG_STATE_GATE) - ret = jpeg_v4_0_3_set_powergating_state(adev, AMD_PG_STATE_GATE); + if (!amdgpu_sriov_vf(adev)) { + if (adev->jpeg.cur_state != AMD_PG_STATE_GATE) + ret = jpeg_v4_0_3_set_powergating_state(adev, AMD_PG_STATE_GATE); + } return ret; } -- 2.34.1
