[Mesa-dev] [PATCH] amd/common: check DRM version 3.27 for JPEG decode

Alex Deucher alexdeucher at gmail.com
Tue Oct 23 17:07:51 UTC 2018


On Tue, Oct 23, 2018 at 1:06 PM Liu, Leo <Leo.Liu at amd.com> wrote:
>
> JPEG was added after DRM version 3.26
>
> Signed-off-by: Leo Liu <leo.liu at amd.com>
> Fixes: 4558758c51749(amd/common: add vcn jpeg ip info query)
> Cc: Boyuan Zhang <boyuan.zhang at amd.com>
> Cc: Alex Smith <asmith at feralinteractive.com>

Reviewed-by: Alex Deucher <alexander.deucher at amd.com>

> ---
>  src/amd/common/ac_gpu_info.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/src/amd/common/ac_gpu_info.c b/src/amd/common/ac_gpu_info.c
> index ed08b500c63..2c70fb2c721 100644
> --- a/src/amd/common/ac_gpu_info.c
> +++ b/src/amd/common/ac_gpu_info.c
> @@ -186,7 +186,7 @@ bool ac_query_gpu_info(int fd, amdgpu_device_handle dev,
>                 }
>         }
>
> -       if (info->drm_major == 3 && info->drm_minor >= 17) {
> +       if (info->drm_major == 3 && info->drm_minor >= 27) {
>                 r = amdgpu_query_hw_ip_info(dev, AMDGPU_HW_IP_VCN_JPEG, 0, &vcn_jpeg);
>                 if (r) {
>                         fprintf(stderr, "amdgpu: amdgpu_query_hw_ip_info(vcn_jpeg) failed.\n");
> --
> 2.17.1
>
> _______________________________________________
> mesa-dev mailing list
> mesa-dev at lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/mesa-dev


More information about the mesa-dev mailing list