drm/amdgpu: add ras fini for nbio
authorTao Zhou <tao.zhou1@amd.com>
Wed, 18 Sep 2019 09:30:50 +0000 (17:30 +0800)
committerAlex Deucher <alexander.deucher@amd.com>
Thu, 3 Oct 2019 14:11:02 +0000 (09:11 -0500)
add a common nbio ras fini implementation to cleanup nbio ras framework

Signed-off-by: Tao Zhou <tao.zhou1@amd.com>
Reviewed-by: Guchun Chen <guchun.chen@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/amdgpu_nbio.c
drivers/gpu/drm/amd/amdgpu/amdgpu_nbio.h
drivers/gpu/drm/amd/amdgpu/soc15.c

index 65373ad..7d5c3a9 100644 (file)
@@ -68,3 +68,17 @@ free:
        adev->nbio.ras_if = NULL;
        return r;
 }
+
+void amdgpu_nbio_ras_fini(struct amdgpu_device *adev)
+{
+       if (amdgpu_ras_is_supported(adev, AMDGPU_RAS_BLOCK__PCIE_BIF) &&
+                       adev->nbio.ras_if) {
+               struct ras_common_if *ras_if = adev->nbio.ras_if;
+               struct ras_ih_if ih_info = {
+                       .cb = NULL,
+               };
+
+               amdgpu_ras_late_fini(adev, ras_if, &ih_info);
+               kfree(ras_if);
+       }
+}
index 9e26b81..1f26a17 100644 (file)
@@ -95,5 +95,5 @@ struct amdgpu_nbio {
 };
 
 int amdgpu_nbio_ras_late_init(struct amdgpu_device *adev);
-
+void amdgpu_nbio_ras_fini(struct amdgpu_device *adev);
 #endif
index b14fc15..e9ebf46 100644 (file)
@@ -1248,6 +1248,7 @@ static int soc15_common_sw_fini(void *handle)
 {
        struct amdgpu_device *adev = (struct amdgpu_device *)handle;
 
+       amdgpu_nbio_ras_fini(adev);
        adev->df_funcs->sw_fini(adev);
        return 0;
 }