Commit 7c63694e authored by Hawking Zhang's avatar Hawking Zhang Committed by Alex Deucher
Browse files

drm/amdgpu: init/fini hdp v4_0 ras



invoke hdp v4_0 ras init in gmc late_init phase
while ras fini in gmc sw_fini phase

Signed-off-by: default avatarHawking Zhang <Hawking.Zhang@amd.com>
Reviewed-by: default avatarJohn Clements <John.Clements@amd.com>
Reviewed-by: default avatarDennis Li <Dennis.Li@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 6f12507f
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
@@ -455,6 +455,13 @@ int amdgpu_gmc_ras_late_init(struct amdgpu_device *adev)
			return r;
	}

	if (adev->hdp.ras_funcs &&
	    adev->hdp.ras_funcs->ras_late_init) {
		r = adev->hdp.ras_funcs->ras_late_init(adev);
		if (r)
			return r;
	}

	return 0;
}

@@ -471,6 +478,10 @@ void amdgpu_gmc_ras_fini(struct amdgpu_device *adev)
	if (adev->gmc.xgmi.ras_funcs &&
	    adev->gmc.xgmi.ras_funcs->ras_fini)
		adev->gmc.xgmi.ras_funcs->ras_fini(adev);

	if (adev->hdp.ras_funcs &&
	    adev->hdp.ras_funcs->ras_fini)
		adev->hdp.ras_funcs->ras_fini(adev);
}

	/*