mirror of
https://gitee.com/bianbu-linux/linux-6.6
synced 2025-04-26 14:17:26 -04:00
drm/amdgpu: move mes self test after drm sched re-started
mes self test rely on vm mapping, move it after drm sched re-started so that vm mapping can work during gpu reset. Signed-off-by: Jack Xiao <Jack.Xiao@amd.com> Acked-and-tested-by: Evan Quan <evan.quan@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
0da0def770
commit
ed67f7292b
3 changed files with 7 additions and 2 deletions
|
@ -5299,6 +5299,9 @@ skip_hw_reset:
|
|||
drm_sched_start(&ring->sched, !tmp_adev->asic_reset_res);
|
||||
}
|
||||
|
||||
if (adev->enable_mes)
|
||||
amdgpu_mes_self_test(tmp_adev);
|
||||
|
||||
if (!drm_drv_uses_atomic_modeset(adev_to_drm(tmp_adev)) && !job_signaled) {
|
||||
drm_helper_resume_force_mode(adev_to_drm(tmp_adev));
|
||||
}
|
||||
|
|
|
@ -1233,7 +1233,8 @@ static int mes_v10_0_late_init(void *handle)
|
|||
{
|
||||
struct amdgpu_device *adev = (struct amdgpu_device *)handle;
|
||||
|
||||
amdgpu_mes_self_test(adev);
|
||||
if (!amdgpu_in_reset(adev))
|
||||
amdgpu_mes_self_test(adev);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
|
@ -1280,7 +1280,8 @@ static int mes_v11_0_late_init(void *handle)
|
|||
{
|
||||
struct amdgpu_device *adev = (struct amdgpu_device *)handle;
|
||||
|
||||
amdgpu_mes_self_test(adev);
|
||||
if (!amdgpu_in_reset(adev))
|
||||
amdgpu_mes_self_test(adev);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue