Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

drm/amdgpu: Fix desktop freezed after gpu-reset

[Why]
After gpu-reset, sometimes the driver fails to enable vblank irq,
causing flip_done timed out and the desktop freezed.

During gpu-reset, we disable and enable vblank irq in dm_suspend() and
dm_resume(). Later on in amdgpu_irq_gpu_reset_resume_helper(), we check
irqs' refcount and decide to enable or disable the irqs again.

However, we have 2 sets of API for controling vblank irq, one is
dm_vblank_get/put() and another is amdgpu_irq_get/put(). Each API has
its own refcount and flag to store the state of vblank irq, and they
are not synchronized.

In drm we use the first API to control vblank irq but in
amdgpu_irq_gpu_reset_resume_helper() we use the second set of API.

The failure happens when vblank irq was enabled by dm_vblank_get()
before gpu-reset, we have vblank->enabled true. However, during
gpu-reset, in amdgpu_irq_gpu_reset_resume_helper() vblank irq's state
checked from amdgpu_irq_update() is DISABLED. So finally it disables
vblank irq again. After gpu-reset, if there is a cursor plane commit,
the driver will try to enable vblank irq by calling drm_vblank_enable(),
but the vblank->enabled is still true, so it fails to turn on vblank
irq and causes flip_done can't be completed in vblank irq handler and
desktop become freezed.

[How]
Combining the 2 vblank control APIs by letting drm's API finally calls
amdgpu_irq's API, so the irq's refcount and state of both APIs can be
synchronized. Also add a check to prevent refcount from being less then
0 in amdgpu_irq_put().

v2:
- Add warning in amdgpu_irq_enable() if the irq is already disabled.
- Call dc_interrupt_set() in dm_set_vblank() to avoid refcount change
if it is in gpu-reset.

v3:
- Improve commit message and code comments.

Signed-off-by: Alan Liu <HaoPing.Liu@amd.com>
Reviewed-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>

authored by

Alan Liu and committed by
Alex Deucher
1fa8d710 7f102a90

+17 -3
+3
drivers/gpu/drm/amd/amdgpu/amdgpu_irq.c
··· 596 596 if (!src->enabled_types || !src->funcs->set) 597 597 return -EINVAL; 598 598 599 + if (WARN_ON(!amdgpu_irq_enabled(adev, src, type))) 600 + return -EINVAL; 601 + 599 602 if (atomic_dec_and_test(&src->enabled_types[type])) 600 603 return amdgpu_irq_update(adev, src, type); 601 604
+14 -3
drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_crtc.c
··· 169 169 if (rc) 170 170 return rc; 171 171 172 - irq_source = IRQ_TYPE_VBLANK + acrtc->otg_inst; 172 + if (amdgpu_in_reset(adev)) { 173 + irq_source = IRQ_TYPE_VBLANK + acrtc->otg_inst; 174 + /* During gpu-reset we disable and then enable vblank irq, so 175 + * don't use amdgpu_irq_get/put() to avoid refcount change. 176 + */ 177 + if (!dc_interrupt_set(adev->dm.dc, irq_source, enable)) 178 + rc = -EBUSY; 179 + } else { 180 + rc = (enable) 181 + ? amdgpu_irq_get(adev, &adev->crtc_irq, acrtc->crtc_id) 182 + : amdgpu_irq_put(adev, &adev->crtc_irq, acrtc->crtc_id); 183 + } 173 184 174 - if (!dc_interrupt_set(adev->dm.dc, irq_source, enable)) 175 - return -EBUSY; 185 + if (rc) 186 + return rc; 176 187 177 188 skip: 178 189 if (amdgpu_in_reset(adev))