aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/radeon/radeon_pm.c
diff options
context:
space:
mode:
authorAlex Deucher <alexander.deucher@amd.com>2015-02-18 00:59:45 -0500
committerAlex Deucher <alexander.deucher@amd.com>2015-02-25 16:06:06 -0500
commit951caa6acf7121f88a9e8e04ef75bd0ac323a033 (patch)
tree1e82d51da5c576daa8715d11d41ac3ff0438c58f /drivers/gpu/drm/radeon/radeon_pm.c
parentdrm/radeon: use drm_mode_vrefresh() rather than mode->vrefresh (diff)
downloadlinux-dev-951caa6acf7121f88a9e8e04ef75bd0ac323a033.tar.xz
linux-dev-951caa6acf7121f88a9e8e04ef75bd0ac323a033.zip
drm/radeon: disable mclk switching with 120hz+ monitors
These tend to be problematic even if the vblank period is long enough. This needs more investigation across a wider range of displays. Disable for now. bugs: https://bugs.freedesktop.org/show_bug.cgi?id=87796 https://bugs.freedesktop.org/show_bug.cgi?id=89198 Signed-off-by: Alex Deucher <alexander.deucher@amd.com> Cc: stable@vger.kernel.org
Diffstat (limited to 'drivers/gpu/drm/radeon/radeon_pm.c')
-rw-r--r--drivers/gpu/drm/radeon/radeon_pm.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/gpu/drm/radeon/radeon_pm.c b/drivers/gpu/drm/radeon/radeon_pm.c
index 9f758d39420d..33cf4108386d 100644
--- a/drivers/gpu/drm/radeon/radeon_pm.c
+++ b/drivers/gpu/drm/radeon/radeon_pm.c
@@ -852,6 +852,12 @@ static struct radeon_ps *radeon_dpm_pick_power_state(struct radeon_device *rdev,
single_display = false;
}
+ /* 120hz tends to be problematic even if they are under the
+ * vblank limit.
+ */
+ if (single_display && (r600_dpm_get_vrefresh(rdev) >= 120))
+ single_display = false;
+
/* certain older asics have a separare 3D performance state,
* so try that first if the user selected performance
*/