summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAsad Kamal <asad.kamal@amd.com>2025-12-02 05:54:59 +0300
committerAlex Deucher <alexander.deucher@amd.com>2026-03-11 20:58:08 +0300
commitd49f8adcbcaaeef1c4081d93fd9c35b018ab0652 (patch)
treea82958bc9f9f3c8aee4ff35c01db6731142d5509
parenteb737fb303dd73ceb0f646fc2e696595e576056f (diff)
downloadlinux-d49f8adcbcaaeef1c4081d93fd9c35b018ab0652.tar.xz
drm/amd/amdgpu: Disable reset on init for soc_v1_0
Return false from soc_v1_0_reset_on_init as psp is loaded with ifwi and sol register will be non zero on first load itself Signed-off-by: Asad Kamal <asad.kamal@amd.com> Reviewed-by: Lijo Lazar <lijo.lazar@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
-rw-r--r--drivers/gpu/drm/amd/amdgpu/soc_v1_0.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/soc_v1_0.c b/drivers/gpu/drm/amd/amdgpu/soc_v1_0.c
index bd7043729e6a..43209eae81bb 100644
--- a/drivers/gpu/drm/amd/amdgpu/soc_v1_0.c
+++ b/drivers/gpu/drm/amd/amdgpu/soc_v1_0.c
@@ -214,17 +214,6 @@ static bool soc_v1_0_need_full_reset(struct amdgpu_device *adev)
static bool soc_v1_0_need_reset_on_init(struct amdgpu_device *adev)
{
- u32 sol_reg;
-
- if (adev->flags & AMD_IS_APU)
- return false;
-
- /* Check sOS sign of life register to confirm sys driver and sOS
- * are already been loaded.
- */
- sol_reg = RREG32_SOC15(MP0, 0, regMPASP_SMN_C2PMSG_81);
- if (sol_reg)
- return true;
return false;
}