diff options
author | Tom St Denis | 2017-08-31 14:59:00 +0200 |
---|---|---|
committer | Alex Deucher | 2017-08-31 21:01:00 +0200 |
commit | 0e5293d07b92dfc1ada2d4a6c9057c1ee8179399 (patch) | |
tree | 79b5e838aabf3b2fcf7efbe8a5f019f4e3419bd8 | |
parent | drm/amd/amdgpu: Tidy up gfx_v9_0_ngg_en() (diff) | |
download | kernel-qcow2-linux-0e5293d07b92dfc1ada2d4a6c9057c1ee8179399.tar.gz kernel-qcow2-linux-0e5293d07b92dfc1ada2d4a6c9057c1ee8179399.tar.xz kernel-qcow2-linux-0e5293d07b92dfc1ada2d4a6c9057c1ee8179399.zip |
drm/amd/amdgpu: Tidy up gfx_v9_0_enable_save_restore_machine()
Signed-off-by: Tom St Denis <tom.stdenis@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_v9_0.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c b/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c index 44885ffaadb7..0d6a1b4075e9 100644 --- a/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c +++ b/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c @@ -1764,11 +1764,7 @@ static int gfx_v9_0_init_rlc_save_restore_list(struct amdgpu_device *adev) static void gfx_v9_0_enable_save_restore_machine(struct amdgpu_device *adev) { - u32 tmp = 0; - - tmp = RREG32(SOC15_REG_OFFSET(GC, 0, mmRLC_SRM_CNTL)); - tmp |= RLC_SRM_CNTL__SRM_ENABLE_MASK; - WREG32(SOC15_REG_OFFSET(GC, 0, mmRLC_SRM_CNTL), tmp); + WREG32_FIELD15(GC, 0, RLC_SRM_CNTL, SRM_ENABLE, 1); } static void pwr_10_0_gfxip_control_over_cgpg(struct amdgpu_device *adev, |