Commit 02938eed authored by Jack Xiao's avatar Jack Xiao Committed by Alex Deucher

drm/amdgpu: correct smu rlc handshake enablement bit

Correct the enablement bit of SMU RLC handshake.
Signed-off-by: default avatarJack Xiao <Jack.Xiao@amd.com>
Reviewed-by: default avatarAlex Deucher <alexander.deucher@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 87190edc
...@@ -1779,9 +1779,9 @@ static void gfx_v10_0_rlc_smu_handshake_cntl(struct amdgpu_device *adev, ...@@ -1779,9 +1779,9 @@ static void gfx_v10_0_rlc_smu_handshake_cntl(struct amdgpu_device *adev,
* hence no handshake between SMU & RLC * hence no handshake between SMU & RLC
* GFXOFF will be disabled * GFXOFF will be disabled
*/ */
rlc_pg_cntl |= 0x80000; rlc_pg_cntl |= 0x800000;
} else } else
rlc_pg_cntl &= ~0x80000; rlc_pg_cntl &= ~0x800000;
WREG32_SOC15(GC, 0, mmRLC_PG_CNTL, rlc_pg_cntl); WREG32_SOC15(GC, 0, mmRLC_PG_CNTL, rlc_pg_cntl);
} }
......
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