drm/amdgpu: not set bypass mode for uvd5.0/uvd6.0
Signed-off-by: Rex Zhu <Rex.Zhu@amd.com> Reviewed-by: Alex Deucher <alexander.deucher@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
3ee73ed854
commit
0401eb403d
@ -724,19 +724,6 @@ static void uvd_v5_0_set_hw_clock_gating(struct amdgpu_device *adev)
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static void uvd_v5_0_set_bypass_mode(struct amdgpu_device *adev, bool enable)
|
|
||||||
{
|
|
||||||
u32 tmp = RREG32_SMC(ixGCK_DFS_BYPASS_CNTL);
|
|
||||||
|
|
||||||
if (enable)
|
|
||||||
tmp |= (GCK_DFS_BYPASS_CNTL__BYPASSDCLK_MASK |
|
|
||||||
GCK_DFS_BYPASS_CNTL__BYPASSVCLK_MASK);
|
|
||||||
else
|
|
||||||
tmp &= ~(GCK_DFS_BYPASS_CNTL__BYPASSDCLK_MASK |
|
|
||||||
GCK_DFS_BYPASS_CNTL__BYPASSVCLK_MASK);
|
|
||||||
|
|
||||||
WREG32_SMC(ixGCK_DFS_BYPASS_CNTL, tmp);
|
|
||||||
}
|
|
||||||
|
|
||||||
static int uvd_v5_0_set_clockgating_state(void *handle,
|
static int uvd_v5_0_set_clockgating_state(void *handle,
|
||||||
enum amd_clockgating_state state)
|
enum amd_clockgating_state state)
|
||||||
@ -745,8 +732,6 @@ static int uvd_v5_0_set_clockgating_state(void *handle,
|
|||||||
bool enable = (state == AMD_CG_STATE_GATE) ? true : false;
|
bool enable = (state == AMD_CG_STATE_GATE) ? true : false;
|
||||||
static int curstate = -1;
|
static int curstate = -1;
|
||||||
|
|
||||||
uvd_v5_0_set_bypass_mode(adev, enable);
|
|
||||||
|
|
||||||
if (!(adev->cg_flags & AMD_CG_SUPPORT_UVD_MGCG))
|
if (!(adev->cg_flags & AMD_CG_SUPPORT_UVD_MGCG))
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
|
@ -151,6 +151,8 @@ static int uvd_v6_0_hw_init(void *handle)
|
|||||||
uint32_t tmp;
|
uint32_t tmp;
|
||||||
int r;
|
int r;
|
||||||
|
|
||||||
|
amdgpu_asic_set_uvd_clocks(adev, 10000, 10000);
|
||||||
|
|
||||||
r = uvd_v6_0_start(adev);
|
r = uvd_v6_0_start(adev);
|
||||||
if (r)
|
if (r)
|
||||||
goto done;
|
goto done;
|
||||||
@ -935,28 +937,12 @@ static void uvd_v6_0_set_hw_clock_gating(struct amdgpu_device *adev)
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static void uvd_v6_0_set_bypass_mode(struct amdgpu_device *adev, bool enable)
|
|
||||||
{
|
|
||||||
u32 tmp = RREG32_SMC(ixGCK_DFS_BYPASS_CNTL);
|
|
||||||
|
|
||||||
if (enable)
|
|
||||||
tmp |= (GCK_DFS_BYPASS_CNTL__BYPASSDCLK_MASK |
|
|
||||||
GCK_DFS_BYPASS_CNTL__BYPASSVCLK_MASK);
|
|
||||||
else
|
|
||||||
tmp &= ~(GCK_DFS_BYPASS_CNTL__BYPASSDCLK_MASK |
|
|
||||||
GCK_DFS_BYPASS_CNTL__BYPASSVCLK_MASK);
|
|
||||||
|
|
||||||
WREG32_SMC(ixGCK_DFS_BYPASS_CNTL, tmp);
|
|
||||||
}
|
|
||||||
|
|
||||||
static int uvd_v6_0_set_clockgating_state(void *handle,
|
static int uvd_v6_0_set_clockgating_state(void *handle,
|
||||||
enum amd_clockgating_state state)
|
enum amd_clockgating_state state)
|
||||||
{
|
{
|
||||||
struct amdgpu_device *adev = (struct amdgpu_device *)handle;
|
struct amdgpu_device *adev = (struct amdgpu_device *)handle;
|
||||||
bool enable = (state == AMD_CG_STATE_GATE) ? true : false;
|
bool enable = (state == AMD_CG_STATE_GATE) ? true : false;
|
||||||
|
|
||||||
uvd_v6_0_set_bypass_mode(adev, enable);
|
|
||||||
|
|
||||||
if (!(adev->cg_flags & AMD_CG_SUPPORT_UVD_MGCG))
|
if (!(adev->cg_flags & AMD_CG_SUPPORT_UVD_MGCG))
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user