[PATCH 2/2] drm/amdgpu/sdma5.2: enable ctxempty interrupt
Alex Deucher
alexdeucher at gmail.com
Tue Dec 1 23:18:16 UTC 2020
This is may be required for proper gfxoff operation with
SDMA workloads.
Signed-off-by: Alex Deucher <alexander.deucher at amd.com>
---
drivers/gpu/drm/amd/amdgpu/sdma_v5_2.c | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/drivers/gpu/drm/amd/amdgpu/sdma_v5_2.c b/drivers/gpu/drm/amd/amdgpu/sdma_v5_2.c
index ca8d93ebd7f9..3043569665c5 100644
--- a/drivers/gpu/drm/amd/amdgpu/sdma_v5_2.c
+++ b/drivers/gpu/drm/amd/amdgpu/sdma_v5_2.c
@@ -760,6 +760,15 @@ static int sdma_v5_2_gfx_resume(struct amdgpu_device *adev)
*/
static int sdma_v5_2_rlc_resume(struct amdgpu_device *adev)
{
+ int i;
+ u32 sdma_cntl;
+
+ for (i = 0; i < adev->sdma.num_instances; i++) {
+ sdma_cntl = RREG32(sdma_v5_2_get_reg_offset(adev, i, mmSDMA0_CNTL));
+ sdma_cntl = REG_SET_FIELD(sdma_cntl, SDMA0_CNTL, CTXEMPTY_INT_ENABLE, 1);
+ WREG32(sdma_v5_2_get_reg_offset(adev, i, mmSDMA0_CNTL), sdma_cntl);
+ }
+
return 0;
}
--
2.25.4
More information about the amd-gfx
mailing list