drm/amdgpu: register the psp v10 function pointers at psp sw_init
authorHuang Rui <ray.huang@amd.com>
Fri, 16 Dec 2016 02:08:48 +0000 (10:08 +0800)
committerAlex Deucher <alexander.deucher@amd.com>
Wed, 24 May 2017 21:41:20 +0000 (17:41 -0400)
Add the psp 10.0 callbacks for PSP.

Signed-off-by: Huang Rui <ray.huang@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Acked-by: Chunming Zhou <david1.zhou@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c

index dfdf4fd..4285f37 100644 (file)
@@ -30,6 +30,7 @@
 #include "amdgpu_ucode.h"
 #include "soc15_common.h"
 #include "psp_v3_1.h"
+#include "psp_v10_0.h"
 
 static void psp_set_funcs(struct amdgpu_device *adev);
 
@@ -61,6 +62,12 @@ static int psp_sw_init(void *handle)
                psp->compare_sram_data = psp_v3_1_compare_sram_data;
                psp->smu_reload_quirk = psp_v3_1_smu_reload_quirk;
                break;
+       case CHIP_RAVEN:
+               psp->prep_cmd_buf = psp_v10_0_prep_cmd_buf;
+               psp->ring_init = psp_v10_0_ring_init;
+               psp->cmd_submit = psp_v10_0_cmd_submit;
+               psp->compare_sram_data = psp_v10_0_compare_sram_data;
+               break;
        default:
                return -EINVAL;
        }