drm/amdgpu: add AMDGPU_HW_IP_VCN_DEC to info query
Signed-off-by: Leo Liu <leo.liu@amd.com> Reviewed-by: Alex Deucher <alexander.deucher@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
@@ -319,6 +319,12 @@ static int amdgpu_info_ioctl(struct drm_device *dev, void *data, struct drm_file
|
|||||||
ib_start_alignment = AMDGPU_GPU_PAGE_SIZE;
|
ib_start_alignment = AMDGPU_GPU_PAGE_SIZE;
|
||||||
ib_size_alignment = 1;
|
ib_size_alignment = 1;
|
||||||
break;
|
break;
|
||||||
|
case AMDGPU_HW_IP_VCN_DEC:
|
||||||
|
type = AMD_IP_BLOCK_TYPE_VCN;
|
||||||
|
ring_mask = adev->vcn.ring_dec.ready ? 1 : 0;
|
||||||
|
ib_start_alignment = AMDGPU_GPU_PAGE_SIZE;
|
||||||
|
ib_size_alignment = 16;
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
@@ -361,6 +367,9 @@ static int amdgpu_info_ioctl(struct drm_device *dev, void *data, struct drm_file
|
|||||||
case AMDGPU_HW_IP_UVD_ENC:
|
case AMDGPU_HW_IP_UVD_ENC:
|
||||||
type = AMD_IP_BLOCK_TYPE_UVD;
|
type = AMD_IP_BLOCK_TYPE_UVD;
|
||||||
break;
|
break;
|
||||||
|
case AMDGPU_HW_IP_VCN_DEC:
|
||||||
|
type = AMD_IP_BLOCK_TYPE_VCN;
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user