summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Wang <kevin1.wang@amd.com>2021-03-09 18:28:59 +0800
committerAlex Deucher <alexander.deucher@amd.com>2021-03-23 23:03:45 -0400
commit03597b47d69cf5ea88828f34e42d5eb0c17e23fd (patch)
tree81a44e89770a9329641ab39fb782cf9d79c82e3c
parentf258907fdd835e1aed6d666b00cdd0f186676b7c (diff)
downloadlinux-03597b47d69cf5ea88828f34e42d5eb0c17e23fd.tar.gz
linux-03597b47d69cf5ea88828f34e42d5eb0c17e23fd.tar.bz2
linux-03597b47d69cf5ea88828f34e42d5eb0c17e23fd.zip
Revert "drm/amdgpu: add psp RAP L0 check support"
This reverts commit d86fd724e59af96ae5ab6630f4f07a076e9b80cd. Disable PSP RAP L0 self test until to RAP feature ready. Signed-off-by: Kevin Wang <kevin1.wang@amd.com> Reviewed-by: Hawking Zhang <Hawking.Zhang@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
-rw-r--r--drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c
index d9856cae9a39..80a4dc51951e 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c
@@ -2365,7 +2365,6 @@ static int psp_hw_init(void *handle)
{
int ret;
struct amdgpu_device *adev = (struct amdgpu_device *)handle;
- enum ta_rap_status status = TA_RAP_STATUS__SUCCESS;
mutex_lock(&adev->firmware.mutex);
/*
@@ -2383,14 +2382,7 @@ static int psp_hw_init(void *handle)
}
mutex_unlock(&adev->firmware.mutex);
-
- ret = psp_rap_invoke(&adev->psp, TA_CMD_RAP__VALIDATE_L0, &status);
- if (ret || status != TA_RAP_STATUS__SUCCESS) {
- dev_err(adev->dev, "RAP: (%d) Failed to Invoke Validate L0, status %d\n",
- ret, status);
- }
-
- return ret;
+ return 0;
failed:
adev->firmware.load_type = AMDGPU_FW_LOAD_DIRECT;