Commit efa019ee authored by Alex Deucher's avatar Alex Deucher Committed by Jiri Slaby

drm/radeon: disable mclk dpm on R7 260X

commit 57700ad1 upstream.

Setting higher mclks seems to cause stability issues
on some R7 260X boards.  Disable it for now for stability
until we find a proper fix.

bug:
https://bugs.freedesktop.org/show_bug.cgi?id=75992Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
Signed-off-by: default avatarJiri Slaby <jslaby@suse.cz>
parent 6d7ed020
......@@ -5098,6 +5098,10 @@ int ci_dpm_init(struct radeon_device *rdev)
pi->mclk_dpm_key_disabled = 0;
pi->pcie_dpm_key_disabled = 0;
/* mclk dpm is unstable on some R7 260X cards */
if (rdev->pdev->device == 0x6658)
pi->mclk_dpm_key_disabled = 1;
pi->caps_sclk_ds = true;
pi->mclk_strobe_mode_threshold = 40000;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment