aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c
diff options
context:
space:
mode:
authorAlex Deucher <alexander.deucher@amd.com>2022-02-14 15:44:19 -0500
committerAlex Deucher <alexander.deucher@amd.com>2022-02-16 17:30:02 -0500
commitdfcc3e8c24cc1fcdf9e14ef98803e295b5e4f721 (patch)
tree3168a2571eec615743f47100ea5a2c48733c4cb5 /drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c
parentdrm/amd/display: For vblank_disable_immediate, check PSR is really used (diff)
downloadlinux-dev-dfcc3e8c24cc1fcdf9e14ef98803e295b5e4f721.tar.xz
linux-dev-dfcc3e8c24cc1fcdf9e14ef98803e295b5e4f721.zip
drm/amdgpu: make cyan skillfish support code more consistent
Since this is an existing asic, adjust the code to follow the same logic as previously so the driver state is consistent. No functional change intended. Acked-by: Huang Rui <ray.huang@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c')
-rw-r--r--drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c
index 9bc9155cbf06..f2806959736a 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c
@@ -137,8 +137,7 @@ static int psp_early_init(void *handle)
psp->autoload_supported = true;
break;
case IP_VERSION(11, 0, 8):
- if (adev->apu_flags & AMD_APU_IS_CYAN_SKILLFISH2 ||
- adev->ip_versions[GC_HWIP][0] == IP_VERSION(10, 1, 4)) {
+ if (adev->apu_flags & AMD_APU_IS_CYAN_SKILLFISH2) {
psp_v11_0_8_set_psp_funcs(psp);
psp->autoload_supported = false;
}