diff options
author | 2019-07-15 05:12:21 +0800 | |
---|---|---|
committer | 2019-08-02 10:30:41 -0500 | |
commit | 02938eed74a3d75c743c3b8a80c80ba130dd6674 (patch) | |
tree | e8fa440b4f37a67c0d196c36e40e344cf6e59879 | |
parent | drm/amdgpu: add CGTT_GS_NGG_CLK_CTRL register to gc header (diff) | |
download | linux-dev-02938eed74a3d75c743c3b8a80c80ba130dd6674.tar.xz linux-dev-02938eed74a3d75c743c3b8a80c80ba130dd6674.zip |
drm/amdgpu: correct smu rlc handshake enablement bit
Correct the enablement bit of SMU RLC handshake.
Signed-off-by: Jack Xiao <Jack.Xiao@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c b/drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c index db8c7fbc1b5f..ec71e2a7d7b7 100644 --- a/drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c +++ b/drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c @@ -1779,9 +1779,9 @@ static void gfx_v10_0_rlc_smu_handshake_cntl(struct amdgpu_device *adev, * hence no handshake between SMU & RLC * GFXOFF will be disabled */ - rlc_pg_cntl |= 0x80000; + rlc_pg_cntl |= 0x800000; } else - rlc_pg_cntl &= ~0x80000; + rlc_pg_cntl &= ~0x800000; WREG32_SOC15(GC, 0, mmRLC_PG_CNTL, rlc_pg_cntl); } |