]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
drm/amdgpu: add helper function to query gecc status in boot config
authorHawking Zhang <Hawking.Zhang@amd.com>
Tue, 25 May 2021 15:57:14 +0000 (23:57 +0800)
committerAlex Deucher <alexander.deucher@amd.com>
Fri, 11 Jun 2021 20:05:46 +0000 (16:05 -0400)
Query GECC enablement status in boot config

Signed-off-by: Hawking Zhang <Hawking.Zhang@amd.com>
Reviewed-by: John Clements <john.clements@amd.com>
Reviewed-by: Lijo Lazar <lijo.lazar@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c

index e55cb3e3ecc21e8943cd8a4a7ce5ae3733ad84c6..14cd22679660986858892ea816f794346b8ef69a 100644 (file)
@@ -551,6 +551,29 @@ int psp_get_fw_attestation_records_addr(struct psp_context *psp,
        return ret;
 }
 
+static int psp_boot_config_get(struct amdgpu_device *adev, uint32_t *boot_cfg)
+{
+       struct psp_context *psp = &adev->psp;
+       struct psp_gfx_cmd_resp *cmd = psp->cmd;
+       int ret;
+
+       if (amdgpu_sriov_vf(adev))
+               return 0;
+
+       memset(cmd, 0, sizeof(struct psp_gfx_cmd_resp));
+
+       cmd->cmd_id = GFX_CMD_ID_BOOT_CFG;
+       cmd->cmd.boot_cfg.sub_cmd = BOOTCFG_CMD_GET;
+
+       ret = psp_cmd_submit_buf(psp, NULL, cmd, psp->fence_buf_mc_addr);
+       if (!ret) {
+               *boot_cfg =
+                       (cmd->resp.uresp.boot_cfg.boot_cfg & BOOT_CONFIG_GECC) ? 1 : 0;
+       }
+
+       return ret;
+}
+
 static int psp_boot_config_set(struct amdgpu_device *adev, uint32_t boot_cfg)
 {
        struct psp_context *psp = &adev->psp;