[PATCH] drm/amd/display: Fix pflip IRQ status after gpu reset.

Harry Wentland harry.wentland at amd.com
Thu Sep 13 15:28:28 UTC 2018


On 2018-09-12 04:51 PM, Andrey Grodzovsky wrote:
> Problem:
> After GPU reset pflip completion IRQ is disabled and hence
> any subsequent mode set or plane update leads to hang.
> 
> Fix:
> Unless acrtc->otg_inst is initialized to -1 during display
> block initializtion then durng resume from GPU reset
> amdgpu_irq_gpu_reset_resume_helper will override CRTC 0 pflip
> IRQ value with whatever value was on every other unused CRTC because
> dm_irq_state will do irq_source = dal_irq_type + acrtc->otg_inst
> where acrtc->otg_inst will be 0 for every unused CRTC.
> 
> Signed-off-by: Andrey Grodzovsky <andrey.grodzovsky at amd.com>

Reviewed-by: Harry Wentland <harry.wentland at amd.com>

Harry

> ---
>  drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
> index 5103eba..75c4b80 100644
> --- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
> +++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
> @@ -3351,6 +3351,7 @@ static int amdgpu_dm_crtc_init(struct amdgpu_display_manager *dm,
>  
>  	acrtc->crtc_id = crtc_index;
>  	acrtc->base.enabled = false;
> +	acrtc->otg_inst = -1;
>  
>  	dm->adev->mode_info.crtcs[crtc_index] = acrtc;
>  	drm_crtc_enable_color_mgmt(&acrtc->base, MAX_COLOR_LUT_ENTRIES,
> 


More information about the amd-gfx mailing list