drm/amd/pp: Implement load_firmware interface
authorRex Zhu <Rex.Zhu@amd.com>
Sat, 29 Sep 2018 12:28:14 +0000 (20:28 +0800)
committerAlex Deucher <alexander.deucher@amd.com>
Tue, 9 Oct 2018 22:08:10 +0000 (17:08 -0500)
with this interface, gfx/sdma can be initialized
before smu.

Reviewed-by: Evan Quan <evan.quan@amd.com>
Signed-off-by: Rex Zhu <Rex.Zhu@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/powerplay/amd_powerplay.c

index b2ebcb1..6bc8e9c 100644 (file)
@@ -270,8 +270,23 @@ const struct amdgpu_ip_block_version pp_smu_ip_block =
        .funcs = &pp_ip_funcs,
 };
 
+/* This interface only be supported On Vi,
+ * because only smu7/8 can help to load gfx/sdma fw,
+ * smu need to be enabled before load other ip's fw.
+ * so call start smu to load smu7 fw and other ip's fw
+ */
 static int pp_dpm_load_fw(void *handle)
 {
+       struct pp_hwmgr *hwmgr = handle;
+
+       if (!hwmgr || !hwmgr->smumgr_funcs || !hwmgr->smumgr_funcs->start_smu)
+               return -EINVAL;
+
+       if (hwmgr->smumgr_funcs->start_smu(hwmgr)) {
+               pr_err("fw load failed\n");
+               return -EINVAL;
+       }
+
        return 0;
 }