diff options
author | Tao Zhou <[email protected]> | 2021-10-15 14:29:38 +0800 |
---|---|---|
committer | Alex Deucher <[email protected]> | 2021-10-19 17:14:33 -0400 |
commit | c72942c167c1329f0aaa348e764f52e0aac09459 (patch) | |
tree | cf412ce6e6b95fb54ef9bf89f65b57306a1adb1f | |
parent | 5aeeac6fa38fca450faed9770f75b1470c0e2073 (diff) |
drm/amdgpu: load PSP RL in resume path
Some registers' access will fail without PSP RL after resume.
Signed-off-by: Tao Zhou <[email protected]>
Reviewed-by: Hawking Zhang <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c index 2bfe0682e0e6..88274c254c76 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c @@ -2623,6 +2623,12 @@ static int psp_resume(void *handle) goto failed; } + ret = psp_rl_load(adev); + if (ret) { + dev_err(adev->dev, "PSP load RL failed!\n"); + goto failed; + } + if (adev->gmc.xgmi.num_physical_nodes > 1) { ret = psp_xgmi_initialize(psp, false, true); /* Warning the XGMI seesion initialize failure |