drm/amdgpu: convert vcn/jpeg logical mask to physical mask
Changed from V1: Remove amdgpu_ras_logical_mask_to_physical_mask due to GET_MASK provides same feature. Support convert VCN/JPEG logical mask to physical mask. Signed-off-by: Stanley.Yang <Stanley.Yang@amd.com> Reviewed-by: Tao Zhou <tao.zhou1@amd.com> Reviewed-by: Hawking Zhang <Hawking.Zhang@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
e3959cb547
commit
3898c8fc42
|
@ -1691,6 +1691,10 @@ int psp_ras_trigger_error(struct psp_context *psp,
|
|||
case TA_RAS_BLOCK__SDMA:
|
||||
dev_mask = GET_MASK(SDMA0, instance_mask);
|
||||
break;
|
||||
case TA_RAS_BLOCK__VCN:
|
||||
case TA_RAS_BLOCK__JPEG:
|
||||
dev_mask = GET_MASK(VCN, instance_mask);
|
||||
break;
|
||||
default:
|
||||
dev_mask = instance_mask;
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue