Ping on this series.

On Tue, Oct 14, 2025 at 5:56 PM Alex Deucher <[email protected]> wrote:
>
> These were not set so soft recovery was inadvertantly
> disabled.
>
> Fixes: 6ac55eab4fc4 ("drm/amdgpu: move reset support type checks into the 
> caller")
> Signed-off-by: Alex Deucher <[email protected]>
> ---
>  drivers/gpu/drm/amd/amdgpu/gfx_v6_0.c | 5 +++++
>  drivers/gpu/drm/amd/amdgpu/gfx_v7_0.c | 5 +++++
>  drivers/gpu/drm/amd/amdgpu/gfx_v8_0.c | 5 +++++
>  3 files changed, 15 insertions(+)
>
> diff --git a/drivers/gpu/drm/amd/amdgpu/gfx_v6_0.c 
> b/drivers/gpu/drm/amd/amdgpu/gfx_v6_0.c
> index 7693b79534267..80565392313f1 100644
> --- a/drivers/gpu/drm/amd/amdgpu/gfx_v6_0.c
> +++ b/drivers/gpu/drm/amd/amdgpu/gfx_v6_0.c
> @@ -3102,6 +3102,11 @@ static int gfx_v6_0_sw_init(struct amdgpu_ip_block 
> *ip_block)
>                         return r;
>         }
>
> +       adev->gfx.gfx_supported_reset =
> +               amdgpu_get_soft_full_reset_mask(&adev->gfx.gfx_ring[0]);
> +       adev->gfx.compute_supported_reset =
> +               amdgpu_get_soft_full_reset_mask(&adev->gfx.compute_ring[0]);
> +
>         return r;
>  }
>
> diff --git a/drivers/gpu/drm/amd/amdgpu/gfx_v7_0.c 
> b/drivers/gpu/drm/amd/amdgpu/gfx_v7_0.c
> index 5976ed55d9dbd..2b7aba22ecc19 100644
> --- a/drivers/gpu/drm/amd/amdgpu/gfx_v7_0.c
> +++ b/drivers/gpu/drm/amd/amdgpu/gfx_v7_0.c
> @@ -4399,6 +4399,11 @@ static int gfx_v7_0_sw_init(struct amdgpu_ip_block 
> *ip_block)
>
>         gfx_v7_0_gpu_early_init(adev);
>
> +       adev->gfx.gfx_supported_reset =
> +               amdgpu_get_soft_full_reset_mask(&adev->gfx.gfx_ring[0]);
> +       adev->gfx.compute_supported_reset =
> +               amdgpu_get_soft_full_reset_mask(&adev->gfx.compute_ring[0]);
> +
>         return r;
>  }
>
> diff --git a/drivers/gpu/drm/amd/amdgpu/gfx_v8_0.c 
> b/drivers/gpu/drm/amd/amdgpu/gfx_v8_0.c
> index 0856ff65288c0..8a81713d97aac 100644
> --- a/drivers/gpu/drm/amd/amdgpu/gfx_v8_0.c
> +++ b/drivers/gpu/drm/amd/amdgpu/gfx_v8_0.c
> @@ -2023,6 +2023,11 @@ static int gfx_v8_0_sw_init(struct amdgpu_ip_block 
> *ip_block)
>         if (r)
>                 return r;
>
> +       adev->gfx.gfx_supported_reset =
> +               amdgpu_get_soft_full_reset_mask(&adev->gfx.gfx_ring[0]);
> +       adev->gfx.compute_supported_reset =
> +               amdgpu_get_soft_full_reset_mask(&adev->gfx.compute_ring[0]);
> +
>         return 0;
>  }
>
> --
> 2.51.0
>

Reply via email to