Commit 9c8c81fe authored by John Clements's avatar John Clements Committed by Alex Deucher

drm/amdgpu: disable XGMI TA unload for arcturus

in event of GPU reset, XGMI TA unload causes unrecoverable GPU hang
Acked-by: default avatarHawking Zhang <Hawking.Zhang@amd.com>
Signed-off-by: default avatarJohn Clements <john.clements@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent d8459d1b
...@@ -529,6 +529,11 @@ static int psp_xgmi_unload(struct psp_context *psp) ...@@ -529,6 +529,11 @@ static int psp_xgmi_unload(struct psp_context *psp)
{ {
int ret; int ret;
struct psp_gfx_cmd_resp *cmd; struct psp_gfx_cmd_resp *cmd;
struct amdgpu_device *adev = psp->adev;
/* XGMI TA unload currently is not supported on Arcturus */
if (adev->asic_type == CHIP_ARCTURUS)
return 0;
/* /*
* TODO: bypass the unloading in sriov for now * TODO: bypass the unloading in sriov for now
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment