diff options
| author | Pratik Vishwakarma <Pratik.Vishwakarma@amd.com> | 2025-11-24 04:40:21 +0000 |
|---|---|---|
| committer | Alex Deucher <alexander.deucher@amd.com> | 2026-02-12 15:20:56 -0500 |
| commit | e98bb71e246cd18c9718aba70718e845b6d134e8 (patch) | |
| tree | f47ba6c3b9e40447795464259877ed30b50b57d1 /drivers/gpu/drm/amd/amdgpu | |
| parent | d76c66c6ad83994181967d7427385aab4c009ae0 (diff) | |
drm/amdgpu: Load TA ucode for PSP 15_0_0
TOC and TA both are required
Signed-off-by: Pratik Vishwakarma <Pratik.Vishwakarma@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu')
| -rw-r--r-- | drivers/gpu/drm/amd/amdgpu/psp_v15_0.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/psp_v15_0.c b/drivers/gpu/drm/amd/amdgpu/psp_v15_0.c index 3aca293e2f0c..723ddae17644 100644 --- a/drivers/gpu/drm/amd/amdgpu/psp_v15_0.c +++ b/drivers/gpu/drm/amd/amdgpu/psp_v15_0.c @@ -45,6 +45,10 @@ static int psp_v15_0_0_init_microcode(struct psp_context *psp) if (err) return err; + err = psp_init_ta_microcode(psp, ucode_prefix); + if (err) + return err; + return 0; } |
