Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5fb9cc4d authored by Christian König's avatar Christian König
Browse files

drm/radeon: apply more strict limits for PLL params v2



Letting post and refernce divider get to big is bad for signal stability.

v2: increase the limit to 210

Signed-off-by: default avatarChristian König <christian.koenig@amd.com>
parent 6abc6d5c
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -937,6 +937,9 @@ void radeon_compute_pll_avivo(struct radeon_pll *pll,
	}
	post_div = post_div_best;

	/* limit reference * post divider to a maximum */
	ref_div_max = min(210 / post_div, ref_div_max);

	/* get matching reference and feedback divider */
	ref_div = max(den / post_div, 1u);
	fb_div = nom;