[PATCH] drm/amdgpu: Fix NULL pointer when ta is missing

Pan, Xinhui Xinhui.Pan at amd.com
Mon Mar 11 04:23:03 UTC 2019


Ta is optional, so check if ta firmware is loaded or not.

Signed-off-by: xinhui pan <xinhui.pan at amd.com>
---
drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c | 3 +++
1 file changed, 3 insertions(+)

diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c
index 7e3e1d588d74..0bd9df9fd289 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c
@@ -656,6 +656,9 @@ static int psp_ras_initialize(struct psp_context *psp)
{
             int ret;
+            if (!psp->adev->psp.ta_fw)
+                           return -ENOENT;
+
             if (!psp->ras.ras_initialized) {
                            ret = psp_ras_init_shared_buf(psp);
                            if (ret)
--
2.17.1

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.freedesktop.org/archives/amd-gfx/attachments/20190311/3c951a62/attachment.html>


More information about the amd-gfx mailing list