We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad2efae commit 0157e2aCopy full SHA for 0157e2a
drivers/gpu/drm/radeon/ci_dpm.c
@@ -776,6 +776,12 @@ bool ci_dpm_vblank_too_short(struct radeon_device *rdev)
776
u32 vblank_time = r600_dpm_get_vblank_time(rdev);
777
u32 switch_limit = pi->mem_gddr5 ? 450 : 300;
778
779
+ /* disable mclk switching if the refresh is >120Hz, even if the
780
+ * blanking period would allow it
781
+ */
782
+ if (r600_dpm_get_vrefresh(rdev) > 120)
783
+ return true;
784
+
785
/* disable mclk switching if the refresh is >120Hz, even if the
786
* blanking period would allow it
787
*/
0 commit comments