2 * Copyright 2014 Advanced Micro Devices, Inc.
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
24 #include <drm/amdgpu_drm.h>
27 #include "atombios_encoders.h"
28 #include "amdgpu_pll.h"
29 #include <asm/div64.h>
30 #include <linux/gcd.h>
33 * amdgpu_pll_reduce_ratio - fractional number reduction
37 * @nom_min: minimum value for nominator
38 * @den_min: minimum value for denominator
40 * Find the greatest common divisor and apply it on both nominator and
41 * denominator, but make nominator and denominator are at least as large
42 * as their minimum values.
44 static void amdgpu_pll_reduce_ratio(unsigned *nom, unsigned *den,
45 unsigned nom_min, unsigned den_min)
49 /* reduce the numbers to a simpler ratio */
50 tmp = gcd(*nom, *den);
54 /* make sure nominator is large enough */
56 tmp = DIV_ROUND_UP(nom_min, *nom);
61 /* make sure the denominator is large enough */
63 tmp = DIV_ROUND_UP(den_min, *den);
70 * amdgpu_pll_get_fb_ref_div - feedback and ref divider calculation
72 * @adev: amdgpu_device pointer
75 * @post_div: post divider
76 * @fb_div_max: feedback divider maximum
77 * @ref_div_max: reference divider maximum
78 * @fb_div: resulting feedback divider
79 * @ref_div: resulting reference divider
81 * Calculate feedback and reference divider for a given post divider. Makes
82 * sure we stay within the limits.
84 static void amdgpu_pll_get_fb_ref_div(struct amdgpu_device *adev, unsigned int nom,
85 unsigned int den, unsigned int post_div,
86 unsigned int fb_div_max, unsigned int ref_div_max,
87 unsigned int *fb_div, unsigned int *ref_div)
90 /* limit reference * post divider to a maximum */
91 if (adev->family == AMDGPU_FAMILY_SI)
92 ref_div_max = min(100 / post_div, ref_div_max);
94 ref_div_max = min(128 / post_div, ref_div_max);
96 /* get matching reference and feedback divider */
97 *ref_div = min(max(DIV_ROUND_CLOSEST(den, post_div), 1u), ref_div_max);
98 *fb_div = DIV_ROUND_CLOSEST(nom * *ref_div * post_div, den);
100 /* limit fb divider to its maximum */
101 if (*fb_div > fb_div_max) {
102 *ref_div = DIV_ROUND_CLOSEST(*ref_div * fb_div_max, *fb_div);
103 *fb_div = fb_div_max;
108 * amdgpu_pll_compute - compute PLL paramaters
110 * @adev: amdgpu_device pointer
111 * @pll: information about the PLL
112 * @freq: requested frequency
113 * @dot_clock_p: resulting pixel clock
114 * @fb_div_p: resulting feedback divider
115 * @frac_fb_div_p: fractional part of the feedback divider
116 * @ref_div_p: resulting reference divider
117 * @post_div_p: resulting reference divider
119 * Try to calculate the PLL parameters to generate the given frequency:
120 * dot_clock = (ref_freq * feedback_div) / (ref_div * post_div)
122 void amdgpu_pll_compute(struct amdgpu_device *adev,
123 struct amdgpu_pll *pll,
131 unsigned target_clock = pll->flags & AMDGPU_PLL_USE_FRAC_FB_DIV ?
134 unsigned fb_div_min, fb_div_max, fb_div;
135 unsigned post_div_min, post_div_max, post_div;
136 unsigned ref_div_min, ref_div_max, ref_div;
137 unsigned post_div_best, diff_best;
140 /* determine allowed feedback divider range */
141 fb_div_min = pll->min_feedback_div;
142 fb_div_max = pll->max_feedback_div;
144 if (pll->flags & AMDGPU_PLL_USE_FRAC_FB_DIV) {
149 /* determine allowed ref divider range */
150 if (pll->flags & AMDGPU_PLL_USE_REF_DIV)
151 ref_div_min = pll->reference_div;
153 ref_div_min = pll->min_ref_div;
155 if (pll->flags & AMDGPU_PLL_USE_FRAC_FB_DIV &&
156 pll->flags & AMDGPU_PLL_USE_REF_DIV)
157 ref_div_max = pll->reference_div;
159 ref_div_max = pll->max_ref_div;
161 /* determine allowed post divider range */
162 if (pll->flags & AMDGPU_PLL_USE_POST_DIV) {
163 post_div_min = pll->post_div;
164 post_div_max = pll->post_div;
166 unsigned vco_min, vco_max;
168 if (pll->flags & AMDGPU_PLL_IS_LCD) {
169 vco_min = pll->lcd_pll_out_min;
170 vco_max = pll->lcd_pll_out_max;
172 vco_min = pll->pll_out_min;
173 vco_max = pll->pll_out_max;
176 if (pll->flags & AMDGPU_PLL_USE_FRAC_FB_DIV) {
181 post_div_min = vco_min / target_clock;
182 if ((target_clock * post_div_min) < vco_min)
184 if (post_div_min < pll->min_post_div)
185 post_div_min = pll->min_post_div;
187 post_div_max = vco_max / target_clock;
188 if ((target_clock * post_div_max) > vco_max)
190 if (post_div_max > pll->max_post_div)
191 post_div_max = pll->max_post_div;
194 /* represent the searched ratio as fractional number */
196 den = pll->reference_freq;
198 /* reduce the numbers to a simpler ratio */
199 amdgpu_pll_reduce_ratio(&nom, &den, fb_div_min, post_div_min);
201 /* now search for a post divider */
202 if (pll->flags & AMDGPU_PLL_PREFER_MINM_OVER_MAXP)
203 post_div_best = post_div_min;
205 post_div_best = post_div_max;
208 for (post_div = post_div_min; post_div <= post_div_max; ++post_div) {
210 amdgpu_pll_get_fb_ref_div(adev, nom, den, post_div, fb_div_max,
211 ref_div_max, &fb_div, &ref_div);
212 diff = abs(target_clock - (pll->reference_freq * fb_div) /
213 (ref_div * post_div));
215 if (diff < diff_best || (diff == diff_best &&
216 !(pll->flags & AMDGPU_PLL_PREFER_MINM_OVER_MAXP))) {
218 post_div_best = post_div;
222 post_div = post_div_best;
224 /* get the feedback and reference divider for the optimal value */
225 amdgpu_pll_get_fb_ref_div(adev, nom, den, post_div, fb_div_max, ref_div_max,
228 /* reduce the numbers to a simpler ratio once more */
229 /* this also makes sure that the reference divider is large enough */
230 amdgpu_pll_reduce_ratio(&fb_div, &ref_div, fb_div_min, ref_div_min);
232 /* avoid high jitter with small fractional dividers */
233 if (pll->flags & AMDGPU_PLL_USE_FRAC_FB_DIV && (fb_div % 10)) {
234 fb_div_min = max(fb_div_min, (9 - (fb_div % 10)) * 20 + 60);
235 if (fb_div < fb_div_min) {
236 unsigned tmp = DIV_ROUND_UP(fb_div_min, fb_div);
242 /* and finally save the result */
243 if (pll->flags & AMDGPU_PLL_USE_FRAC_FB_DIV) {
244 *fb_div_p = fb_div / 10;
245 *frac_fb_div_p = fb_div % 10;
251 *dot_clock_p = ((pll->reference_freq * *fb_div_p * 10) +
252 (pll->reference_freq * *frac_fb_div_p)) /
253 (ref_div * post_div * 10);
254 *ref_div_p = ref_div;
255 *post_div_p = post_div;
257 DRM_DEBUG_KMS("%d - %d, pll dividers - fb: %d.%d ref: %d, post %d\n",
258 freq, *dot_clock_p * 10, *fb_div_p, *frac_fb_div_p,
263 * amdgpu_pll_get_use_mask - look up a mask of which pplls are in use
267 * Returns the mask of which PPLLs (Pixel PLLs) are in use.
269 u32 amdgpu_pll_get_use_mask(struct drm_crtc *crtc)
271 struct drm_device *dev = crtc->dev;
272 struct drm_crtc *test_crtc;
273 struct amdgpu_crtc *test_amdgpu_crtc;
276 list_for_each_entry(test_crtc, &dev->mode_config.crtc_list, head) {
277 if (crtc == test_crtc)
280 test_amdgpu_crtc = to_amdgpu_crtc(test_crtc);
281 if (test_amdgpu_crtc->pll_id != ATOM_PPLL_INVALID)
282 pll_in_use |= (1 << test_amdgpu_crtc->pll_id);
288 * amdgpu_pll_get_shared_dp_ppll - return the PPLL used by another crtc for DP
292 * Returns the PPLL (Pixel PLL) used by another crtc/encoder which is
293 * also in DP mode. For DP, a single PPLL can be used for all DP
296 int amdgpu_pll_get_shared_dp_ppll(struct drm_crtc *crtc)
298 struct drm_device *dev = crtc->dev;
299 struct drm_crtc *test_crtc;
300 struct amdgpu_crtc *test_amdgpu_crtc;
302 list_for_each_entry(test_crtc, &dev->mode_config.crtc_list, head) {
303 if (crtc == test_crtc)
305 test_amdgpu_crtc = to_amdgpu_crtc(test_crtc);
306 if (test_amdgpu_crtc->encoder &&
307 ENCODER_MODE_IS_DP(amdgpu_atombios_encoder_get_encoder_mode(test_amdgpu_crtc->encoder))) {
308 /* for DP use the same PLL for all */
309 if (test_amdgpu_crtc->pll_id != ATOM_PPLL_INVALID)
310 return test_amdgpu_crtc->pll_id;
313 return ATOM_PPLL_INVALID;
317 * amdgpu_pll_get_shared_nondp_ppll - return the PPLL used by another non-DP crtc
321 * Returns the PPLL (Pixel PLL) used by another non-DP crtc/encoder which can
322 * be shared (i.e., same clock).
324 int amdgpu_pll_get_shared_nondp_ppll(struct drm_crtc *crtc)
326 struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc);
327 struct drm_device *dev = crtc->dev;
328 struct drm_crtc *test_crtc;
329 struct amdgpu_crtc *test_amdgpu_crtc;
330 u32 adjusted_clock, test_adjusted_clock;
332 adjusted_clock = amdgpu_crtc->adjusted_clock;
334 if (adjusted_clock == 0)
335 return ATOM_PPLL_INVALID;
337 list_for_each_entry(test_crtc, &dev->mode_config.crtc_list, head) {
338 if (crtc == test_crtc)
340 test_amdgpu_crtc = to_amdgpu_crtc(test_crtc);
341 if (test_amdgpu_crtc->encoder &&
342 !ENCODER_MODE_IS_DP(amdgpu_atombios_encoder_get_encoder_mode(test_amdgpu_crtc->encoder))) {
343 /* check if we are already driving this connector with another crtc */
344 if (test_amdgpu_crtc->connector == amdgpu_crtc->connector) {
345 /* if we are, return that pll */
346 if (test_amdgpu_crtc->pll_id != ATOM_PPLL_INVALID)
347 return test_amdgpu_crtc->pll_id;
349 /* for non-DP check the clock */
350 test_adjusted_clock = test_amdgpu_crtc->adjusted_clock;
351 if ((crtc->mode.clock == test_crtc->mode.clock) &&
352 (adjusted_clock == test_adjusted_clock) &&
353 (amdgpu_crtc->ss_enabled == test_amdgpu_crtc->ss_enabled) &&
354 (test_amdgpu_crtc->pll_id != ATOM_PPLL_INVALID))
355 return test_amdgpu_crtc->pll_id;
358 return ATOM_PPLL_INVALID;