drm/amdgpu: Load TA firmware for yellow carp
Add TA firmware to module firmware list for yellow carp and call psp_init_ta_microcode to parse the TA firmware for HDCP support. Cc: Aaron Liu <aaron.liu@amd.com> Acked-by: Huang Rui <ray.huang@amd.com> Signed-off-by: Nicholas Kazlauskas <nicholas.kazlauskas@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
committed by
Alex Deucher
parent
907b3436f1
commit
4b16196752
@ -33,6 +33,7 @@ MODULE_FIRMWARE("amdgpu/aldebaran_sos.bin");
|
|||||||
MODULE_FIRMWARE("amdgpu/aldebaran_ta.bin");
|
MODULE_FIRMWARE("amdgpu/aldebaran_ta.bin");
|
||||||
MODULE_FIRMWARE("amdgpu/yellow_carp_asd.bin");
|
MODULE_FIRMWARE("amdgpu/yellow_carp_asd.bin");
|
||||||
MODULE_FIRMWARE("amdgpu/yellow_carp_toc.bin");
|
MODULE_FIRMWARE("amdgpu/yellow_carp_toc.bin");
|
||||||
|
MODULE_FIRMWARE("amdgpu/yellow_carp_ta.bin");
|
||||||
|
|
||||||
static int psp_v13_0_init_microcode(struct psp_context *psp)
|
static int psp_v13_0_init_microcode(struct psp_context *psp)
|
||||||
{
|
{
|
||||||
@ -64,6 +65,9 @@ static int psp_v13_0_init_microcode(struct psp_context *psp)
|
|||||||
if (err)
|
if (err)
|
||||||
return err;
|
return err;
|
||||||
err = psp_init_toc_microcode(psp, chip_name);
|
err = psp_init_toc_microcode(psp, chip_name);
|
||||||
|
if (err)
|
||||||
|
return err;
|
||||||
|
err = psp_init_ta_microcode(psp, chip_name);
|
||||||
if (err)
|
if (err)
|
||||||
return err;
|
return err;
|
||||||
break;
|
break;
|
||||||
|
Reference in New Issue
Block a user