| From: Alex Deucher <alexander.deucher@amd.com> |
| Date: Thu, 11 May 2017 13:14:14 -0400 |
| Subject: [PATCH] drm/radeon/ci: disable mclk switching for high refresh rates |
| (v2) |
| MIME-Version: 1.0 |
| Content-Type: text/plain; charset=UTF-8 |
| Content-Transfer-Encoding: 8bit |
| References: bnc#1060662 |
| Patch-mainline: v4.12.4 |
| Git-commit: ab03d9fe508f4e2914a8f4a9eef1b21051cacd0f |
| |
| commit ab03d9fe508f4e2914a8f4a9eef1b21051cacd0f upstream. |
| |
| Even if the vblank period would allow it, it still seems to |
| be problematic on some cards. |
| |
| v2: fix logic inversion (Nils) |
| |
| bug: https://bugs.freedesktop.org/show_bug.cgi?id=96868 |
| |
| Acked-by: Christian König <christian.koenig@amd.com> |
| Signed-off-by: Alex Deucher <alexander.deucher@amd.com> |
| Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
| Signed-off-by: Jiri Slaby <jslaby@suse.cz> |
| |
| drivers/gpu/drm/radeon/ci_dpm.c | 6 ++++++ |
| 1 file changed, 6 insertions(+) |
| |
| diff --git a/drivers/gpu/drm/radeon/ci_dpm.c b/drivers/gpu/drm/radeon/ci_dpm.c |
| index ea36dc4dd5d2..24810492d2c1 100644 |
| |
| |
| @@ -776,6 +776,12 @@ bool ci_dpm_vblank_too_short(struct radeon_device *rdev) |
| u32 vblank_time = r600_dpm_get_vblank_time(rdev); |
| u32 switch_limit = pi->mem_gddr5 ? 450 : 300; |
| |
| + /* disable mclk switching if the refresh is >120Hz, even if the |
| + * blanking period would allow it |
| + */ |
| + if (r600_dpm_get_vrefresh(rdev) > 120) |
| + return true; |
| + |
| /* disable mclk switching if the refresh is >120Hz, even if the |
| * blanking period would allow it |
| */ |
| -- |
| 2.14.2 |
| |