[PATCH] drm/amdgpu: add cancel_delayed_work_sync before power gate
Leo Liu
leo.liu at amd.com
Tue May 18 13:29:16 UTC 2021
Reviewed-by: Leo Liu <leo.liu at amd.com>
On 2021-05-17 4:42 p.m., James Zhu wrote:
> Add cancel_delayed_work_sync before set power gating state
> to avoid race condition issue when power gating.
>
> Signed-off-by: James Zhu <James.Zhu at amd.com>
> ---
> drivers/gpu/drm/amd/amdgpu/vcn_v3_0.c | 19 +++++++++++++------
> 1 file changed, 13 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/gpu/drm/amd/amdgpu/vcn_v3_0.c b/drivers/gpu/drm/amd/amdgpu/vcn_v3_0.c
> index 779e585..360dff2 100644
> --- a/drivers/gpu/drm/amd/amdgpu/vcn_v3_0.c
> +++ b/drivers/gpu/drm/amd/amdgpu/vcn_v3_0.c
> @@ -388,6 +388,19 @@ static int vcn_v3_0_hw_fini(void *handle)
> continue;
>
> ring = &adev->vcn.inst[i].ring_dec;
> + ring->sched.ready = false;
> +
> + for (j = 0; j < adev->vcn.num_enc_rings; ++j) {
> + ring = &adev->vcn.inst[i].ring_enc[j];
> + ring->sched.ready = false;
> + }
> + }
> +
> + cancel_delayed_work_sync(&adev->vcn.idle_work);
> +
> + for (i = 0; i < adev->vcn.num_vcn_inst; ++i) {
> + if (adev->vcn.harvest_config & (1 << i))
> + continue;
>
> if (!amdgpu_sriov_vf(adev)) {
> if ((adev->pg_flags & AMD_PG_SUPPORT_VCN_DPG) ||
> @@ -396,12 +409,6 @@ static int vcn_v3_0_hw_fini(void *handle)
> vcn_v3_0_set_powergating_state(adev, AMD_PG_STATE_GATE);
> }
> }
> - ring->sched.ready = false;
> -
> - for (j = 0; j < adev->vcn.num_enc_rings; ++j) {
> - ring = &adev->vcn.inst[i].ring_enc[j];
> - ring->sched.ready = false;
> - }
> }
>
> return 0;
More information about the amd-gfx
mailing list