From: Veerabadhran Gopalakrishnan Date: Mon, 12 Feb 2024 07:45:27 +0000 (+0530) Subject: drm/amdgpu/soc21: Added Video Capabilities for VCN 406 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=437591d2377ae3107e2ca0954cb1e9efcbf21e2b;p=linux.git drm/amdgpu/soc21: Added Video Capabilities for VCN 406 Updated Query Video codecs for VCN 406 Reviewed-by: Leo Liu Signed-off-by: Veerabadhran Gopalakrishnan Signed-off-by: Alex Deucher --- diff --git a/drivers/gpu/drm/amd/amdgpu/soc21.c b/drivers/gpu/drm/amd/amdgpu/soc21.c index 2c812701592b4..c663cf3a169d9 100644 --- a/drivers/gpu/drm/amd/amdgpu/soc21.c +++ b/drivers/gpu/drm/amd/amdgpu/soc21.c @@ -185,6 +185,12 @@ static int soc21_query_video_codecs(struct amdgpu_device *adev, bool encode, } } return 0; + case IP_VERSION(4, 0, 6): + if (encode) + *codecs = &vcn_4_0_0_video_codecs_encode_vcn0; + else + *codecs = &vcn_4_0_0_video_codecs_decode_vcn0; + return 0; default: return -EINVAL; }