diff options
author | Hawking Zhang <[email protected]> | 2020-08-21 22:09:06 +0800 |
---|---|---|
committer | Alex Deucher <[email protected]> | 2021-03-23 22:54:15 -0400 |
commit | fbaa30d87fd8e5515adc4c5d502dc4aebbbd7670 (patch) | |
tree | 5c1df6b5e7d4c97a39702b0bec210e5323be229b | |
parent | 5be50a8fd80f559a7ddd4b41bc6626b0b53333fb (diff) |
drm/amdgpu: initialize ta firmware for aldebaran
only xgmi ta is supported at this stage
Signed-off-by: Hawking Zhang <[email protected]>
Reviewed-by: Kevin Wang <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/psp_v13_0.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/psp_v13_0.c b/drivers/gpu/drm/amd/amdgpu/psp_v13_0.c index 4beee092acf1..fcdce46445d6 100644 --- a/drivers/gpu/drm/amd/amdgpu/psp_v13_0.c +++ b/drivers/gpu/drm/amd/amdgpu/psp_v13_0.c @@ -30,6 +30,7 @@ #include "mp/mp_13_0_2_sh_mask.h" MODULE_FIRMWARE("amdgpu/aldebaran_sos.bin"); +MODULE_FIRMWARE("amdgpu/aldebaran_ta.bin"); static int psp_v13_0_init_microcode(struct psp_context *psp) { @@ -46,6 +47,10 @@ static int psp_v13_0_init_microcode(struct psp_context *psp) } err = psp_init_sos_microcode(psp, chip_name); + if (err) + return err; + + err = psp_init_ta_microcode(&adev->psp, chip_name); return err; } |