diff options
author | David Yu <David.Yu@amd.com> | 2022-04-22 10:43:41 -0400 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2022-04-22 14:51:51 -0400 |
commit | a2443ef0a8046ca98868224ee9bd6861c17e4995 (patch) | |
tree | 4fe78a2c8c910382116d7fae8e2a43271a2016a9 /drivers | |
parent | 114f088727314a30b62747bd6f8811dddf535cb6 (diff) | |
download | linux-stable-a2443ef0a8046ca98868224ee9bd6861c17e4995.tar.gz linux-stable-a2443ef0a8046ca98868224ee9bd6861c17e4995.tar.bz2 linux-stable-a2443ef0a8046ca98868224ee9bd6861c17e4995.zip |
drm/amdgpu: Ta fw needs to be loaded for SRIOV aldebaran
Load ta fw during psp_init_sriov_microcode to enable XGMI.
It is required to be loaded by both guest and host starting
from Arcturus. Cap fw needs to be loaded first.
Signed-off-by: David Yu <David.Yu@amd.com>
Reviewed-by: Shaoyun.liu <Shaoyun.liu@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c index f6527aa19238..0bd22ebcc3d1 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c @@ -276,6 +276,7 @@ static int psp_init_sriov_microcode(struct psp_context *psp) break; case IP_VERSION(13, 0, 2): ret = psp_init_cap_microcode(psp, "aldebaran"); + ret &= psp_init_ta_microcode(psp, "aldebaran"); break; default: BUG(); |