aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu
diff options
context:
space:
mode:
authorAlex Deucher <alexander.deucher@amd.com>2018-03-27 18:05:19 -0400
committerAlex Deucher <alexander.deucher@amd.com>2018-05-15 14:43:14 -0400
commit1ab0c9a75f66293a8ea719cc96ae4141218eb0e4 (patch)
treed0ddf257f92c3febcee7f77b0e1bea4c50bd0169 /drivers/gpu
parent4dfe7d7b4e3ba16fc377a48a221bfe8172bc50e1 (diff)
drm/amdgpu/uvd7: add emit_reg_write_reg_wait ring callback
This adds support for writing and reading back using the helper since the engines doesn't have a oneshot packet. Reviewed-by: Huang Rui <ray.huang@amd.com> Reviewed-by: Christian König <christian.koenig@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu')
-rw-r--r--drivers/gpu/drm/amd/amdgpu/uvd_v7_0.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/uvd_v7_0.c b/drivers/gpu/drm/amd/amdgpu/uvd_v7_0.c
index eddc57f3b72a..280c0826e183 100644
--- a/drivers/gpu/drm/amd/amdgpu/uvd_v7_0.c
+++ b/drivers/gpu/drm/amd/amdgpu/uvd_v7_0.c
@@ -1702,6 +1702,7 @@ static const struct amdgpu_ring_funcs uvd_v7_0_enc_ring_vm_funcs = {
1702 .end_use = amdgpu_uvd_ring_end_use, 1702 .end_use = amdgpu_uvd_ring_end_use,
1703 .emit_wreg = uvd_v7_0_enc_ring_emit_wreg, 1703 .emit_wreg = uvd_v7_0_enc_ring_emit_wreg,
1704 .emit_reg_wait = uvd_v7_0_enc_ring_emit_reg_wait, 1704 .emit_reg_wait = uvd_v7_0_enc_ring_emit_reg_wait,
1705 .emit_reg_write_reg_wait = amdgpu_ring_emit_reg_write_reg_wait_helper,
1705}; 1706};
1706 1707
1707static void uvd_v7_0_set_ring_funcs(struct amdgpu_device *adev) 1708static void uvd_v7_0_set_ring_funcs(struct amdgpu_device *adev)