We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e356d32 commit ed5a448Copy full SHA for ed5a448
drivers/gpu/drm/amd/amdgpu/psp_v14_0.c
@@ -32,7 +32,9 @@
32
#include "mp/mp_14_0_2_sh_mask.h"
33
34
MODULE_FIRMWARE("amdgpu/psp_14_0_2_sos.bin");
35
+MODULE_FIRMWARE("amdgpu/psp_14_0_2_ta.bin");
36
MODULE_FIRMWARE("amdgpu/psp_14_0_3_sos.bin");
37
+MODULE_FIRMWARE("amdgpu/psp_14_0_3_ta.bin");
38
39
/* For large FW files the time to complete can be very long */
40
#define USBC_PD_POLLING_LIMIT_S 240
@@ -64,6 +66,9 @@ static int psp_v14_0_init_microcode(struct psp_context *psp)
64
66
case IP_VERSION(14, 0, 2):
65
67
case IP_VERSION(14, 0, 3):
68
err = psp_init_sos_microcode(psp, ucode_prefix);
69
+ if (err)
70
+ return err;
71
+ err = psp_init_ta_microcode(psp, ucode_prefix);
72
if (err)
73
return err;
74
break;
0 commit comments