Commit 8ac875db authored by tiancyin's avatar tiancyin Committed by Alex Deucher

drm/amdgpu: disable gfxoff on navi10

The gfxoff brings unstability, disable it by default
Reviewed-by: default avatarHawking Zhang <Hawking.Zhang@amd.com>
Signed-off-by: default avatartiancyin <tianci.yin@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 73c86d62
...@@ -447,9 +447,7 @@ static void gfx_v10_0_check_gfxoff_flag(struct amdgpu_device *adev) ...@@ -447,9 +447,7 @@ static void gfx_v10_0_check_gfxoff_flag(struct amdgpu_device *adev)
{ {
switch (adev->asic_type) { switch (adev->asic_type) {
case CHIP_NAVI10: case CHIP_NAVI10:
if ((adev->gfx.rlc_fw_version < 85) || adev->pm.pp_feature &= ~PP_GFXOFF_MASK;
(adev->pm.fw_version < 0x002A0C00))
adev->pm.pp_feature &= ~PP_GFXOFF_MASK;
break; break;
default: default:
break; break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment