Loading...
1/*
2 * Copyright 2012-15 Advanced Micro Devices, Inc.
3 *
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:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
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.
21 *
22 * Authors: AMD
23 *
24 */
25
26#include "dm_services.h"
27
28
29#include "dc_types.h"
30#include "core_types.h"
31
32#include "include/grph_object_id.h"
33#include "include/logger_interface.h"
34
35#include "dce_clock_source.h"
36#include "clk_mgr.h"
37
38#include "reg_helper.h"
39
40#define REG(reg)\
41 (clk_src->regs->reg)
42
43#define CTX \
44 clk_src->base.ctx
45
46#define DC_LOGGER_INIT()
47
48#undef FN
49#define FN(reg_name, field_name) \
50 clk_src->cs_shift->field_name, clk_src->cs_mask->field_name
51
52#define FRACT_FB_DIVIDER_DEC_POINTS_MAX_NUM 6
53#define CALC_PLL_CLK_SRC_ERR_TOLERANCE 1
54#define MAX_PLL_CALC_ERROR 0xFFFFFFFF
55
56#define NUM_ELEMENTS(a) (sizeof(a) / sizeof((a)[0]))
57
58static const struct spread_spectrum_data *get_ss_data_entry(
59 struct dce110_clk_src *clk_src,
60 enum signal_type signal,
61 uint32_t pix_clk_khz)
62{
63
64 uint32_t entrys_num;
65 uint32_t i;
66 struct spread_spectrum_data *ss_parm = NULL;
67 struct spread_spectrum_data *ret = NULL;
68
69 switch (signal) {
70 case SIGNAL_TYPE_DVI_SINGLE_LINK:
71 case SIGNAL_TYPE_DVI_DUAL_LINK:
72 ss_parm = clk_src->dvi_ss_params;
73 entrys_num = clk_src->dvi_ss_params_cnt;
74 break;
75
76 case SIGNAL_TYPE_HDMI_TYPE_A:
77 ss_parm = clk_src->hdmi_ss_params;
78 entrys_num = clk_src->hdmi_ss_params_cnt;
79 break;
80
81 case SIGNAL_TYPE_LVDS:
82 ss_parm = clk_src->lvds_ss_params;
83 entrys_num = clk_src->lvds_ss_params_cnt;
84 break;
85
86 case SIGNAL_TYPE_DISPLAY_PORT:
87 case SIGNAL_TYPE_DISPLAY_PORT_MST:
88 case SIGNAL_TYPE_EDP:
89 case SIGNAL_TYPE_VIRTUAL:
90 ss_parm = clk_src->dp_ss_params;
91 entrys_num = clk_src->dp_ss_params_cnt;
92 break;
93
94 default:
95 ss_parm = NULL;
96 entrys_num = 0;
97 break;
98 }
99
100 if (ss_parm == NULL)
101 return ret;
102
103 for (i = 0; i < entrys_num; ++i, ++ss_parm) {
104 if (ss_parm->freq_range_khz >= pix_clk_khz) {
105 ret = ss_parm;
106 break;
107 }
108 }
109
110 return ret;
111}
112
113/**
114 * calculate_fb_and_fractional_fb_divider - Calculates feedback and fractional
115 * feedback dividers values
116 *
117 * @calc_pll_cs: Pointer to clock source information
118 * @target_pix_clk_100hz: Desired frequency in 100 Hz
119 * @ref_divider: Reference divider (already known)
120 * @post_divider: Post Divider (already known)
121 * @feedback_divider_param: Pointer where to store
122 * calculated feedback divider value
123 * @fract_feedback_divider_param: Pointer where to store
124 * calculated fract feedback divider value
125 *
126 * return:
127 * It fills the locations pointed by feedback_divider_param
128 * and fract_feedback_divider_param
129 * It returns - true if feedback divider not 0
130 * - false should never happen)
131 */
132static bool calculate_fb_and_fractional_fb_divider(
133 struct calc_pll_clock_source *calc_pll_cs,
134 uint32_t target_pix_clk_100hz,
135 uint32_t ref_divider,
136 uint32_t post_divider,
137 uint32_t *feedback_divider_param,
138 uint32_t *fract_feedback_divider_param)
139{
140 uint64_t feedback_divider;
141
142 feedback_divider =
143 (uint64_t)target_pix_clk_100hz * ref_divider * post_divider;
144 feedback_divider *= 10;
145 /* additional factor, since we divide by 10 afterwards */
146 feedback_divider *= (uint64_t)(calc_pll_cs->fract_fb_divider_factor);
147 feedback_divider = div_u64(feedback_divider, calc_pll_cs->ref_freq_khz * 10ull);
148
149/*Round to the number of precision
150 * The following code replace the old code (ullfeedbackDivider + 5)/10
151 * for example if the difference between the number
152 * of fractional feedback decimal point and the fractional FB Divider precision
153 * is 2 then the equation becomes (ullfeedbackDivider + 5*100) / (10*100))*/
154
155 feedback_divider += 5ULL *
156 calc_pll_cs->fract_fb_divider_precision_factor;
157 feedback_divider =
158 div_u64(feedback_divider,
159 calc_pll_cs->fract_fb_divider_precision_factor * 10);
160 feedback_divider *= (uint64_t)
161 (calc_pll_cs->fract_fb_divider_precision_factor);
162
163 *feedback_divider_param =
164 div_u64_rem(
165 feedback_divider,
166 calc_pll_cs->fract_fb_divider_factor,
167 fract_feedback_divider_param);
168
169 if (*feedback_divider_param != 0)
170 return true;
171 return false;
172}
173
174/**
175 * calc_fb_divider_checking_tolerance - Calculates Feedback and
176 * Fractional Feedback divider values
177 * for passed Reference and Post divider,
178 * checking for tolerance.
179 * @calc_pll_cs: Pointer to clock source information
180 * @pll_settings: Pointer to PLL settings
181 * @ref_divider: Reference divider (already known)
182 * @post_divider: Post Divider (already known)
183 * @tolerance: Tolerance for Calculated Pixel Clock to be within
184 *
185 * return:
186 * It fills the PLLSettings structure with PLL Dividers values
187 * if calculated values are within required tolerance
188 * It returns - true if error is within tolerance
189 * - false if error is not within tolerance
190 */
191static bool calc_fb_divider_checking_tolerance(
192 struct calc_pll_clock_source *calc_pll_cs,
193 struct pll_settings *pll_settings,
194 uint32_t ref_divider,
195 uint32_t post_divider,
196 uint32_t tolerance)
197{
198 uint32_t feedback_divider;
199 uint32_t fract_feedback_divider;
200 uint32_t actual_calculated_clock_100hz;
201 uint32_t abs_err;
202 uint64_t actual_calc_clk_100hz;
203
204 calculate_fb_and_fractional_fb_divider(
205 calc_pll_cs,
206 pll_settings->adjusted_pix_clk_100hz,
207 ref_divider,
208 post_divider,
209 &feedback_divider,
210 &fract_feedback_divider);
211
212 /*Actual calculated value*/
213 actual_calc_clk_100hz = (uint64_t)feedback_divider *
214 calc_pll_cs->fract_fb_divider_factor +
215 fract_feedback_divider;
216 actual_calc_clk_100hz *= calc_pll_cs->ref_freq_khz * 10;
217 actual_calc_clk_100hz =
218 div_u64(actual_calc_clk_100hz,
219 ref_divider * post_divider *
220 calc_pll_cs->fract_fb_divider_factor);
221
222 actual_calculated_clock_100hz = (uint32_t)(actual_calc_clk_100hz);
223
224 abs_err = (actual_calculated_clock_100hz >
225 pll_settings->adjusted_pix_clk_100hz)
226 ? actual_calculated_clock_100hz -
227 pll_settings->adjusted_pix_clk_100hz
228 : pll_settings->adjusted_pix_clk_100hz -
229 actual_calculated_clock_100hz;
230
231 if (abs_err <= tolerance) {
232 /*found good values*/
233 pll_settings->reference_freq = calc_pll_cs->ref_freq_khz;
234 pll_settings->reference_divider = ref_divider;
235 pll_settings->feedback_divider = feedback_divider;
236 pll_settings->fract_feedback_divider = fract_feedback_divider;
237 pll_settings->pix_clk_post_divider = post_divider;
238 pll_settings->calculated_pix_clk_100hz =
239 actual_calculated_clock_100hz;
240 pll_settings->vco_freq =
241 div_u64((u64)actual_calculated_clock_100hz * post_divider, 10);
242 return true;
243 }
244 return false;
245}
246
247static bool calc_pll_dividers_in_range(
248 struct calc_pll_clock_source *calc_pll_cs,
249 struct pll_settings *pll_settings,
250 uint32_t min_ref_divider,
251 uint32_t max_ref_divider,
252 uint32_t min_post_divider,
253 uint32_t max_post_divider,
254 uint32_t err_tolerance)
255{
256 uint32_t ref_divider;
257 uint32_t post_divider;
258 uint32_t tolerance;
259
260/* This is err_tolerance / 10000 = 0.0025 - acceptable error of 0.25%
261 * This is errorTolerance / 10000 = 0.0001 - acceptable error of 0.01%*/
262 tolerance = (pll_settings->adjusted_pix_clk_100hz * err_tolerance) /
263 100000;
264 if (tolerance < CALC_PLL_CLK_SRC_ERR_TOLERANCE)
265 tolerance = CALC_PLL_CLK_SRC_ERR_TOLERANCE;
266
267 for (
268 post_divider = max_post_divider;
269 post_divider >= min_post_divider;
270 --post_divider) {
271 for (
272 ref_divider = min_ref_divider;
273 ref_divider <= max_ref_divider;
274 ++ref_divider) {
275 if (calc_fb_divider_checking_tolerance(
276 calc_pll_cs,
277 pll_settings,
278 ref_divider,
279 post_divider,
280 tolerance)) {
281 return true;
282 }
283 }
284 }
285
286 return false;
287}
288
289static uint32_t calculate_pixel_clock_pll_dividers(
290 struct calc_pll_clock_source *calc_pll_cs,
291 struct pll_settings *pll_settings)
292{
293 uint32_t err_tolerance;
294 uint32_t min_post_divider;
295 uint32_t max_post_divider;
296 uint32_t min_ref_divider;
297 uint32_t max_ref_divider;
298
299 if (pll_settings->adjusted_pix_clk_100hz == 0) {
300 DC_LOG_ERROR(
301 "%s Bad requested pixel clock", __func__);
302 return MAX_PLL_CALC_ERROR;
303 }
304
305/* 1) Find Post divider ranges */
306 if (pll_settings->pix_clk_post_divider) {
307 min_post_divider = pll_settings->pix_clk_post_divider;
308 max_post_divider = pll_settings->pix_clk_post_divider;
309 } else {
310 min_post_divider = calc_pll_cs->min_pix_clock_pll_post_divider;
311 if (min_post_divider * pll_settings->adjusted_pix_clk_100hz <
312 calc_pll_cs->min_vco_khz * 10) {
313 min_post_divider = calc_pll_cs->min_vco_khz * 10 /
314 pll_settings->adjusted_pix_clk_100hz;
315 if ((min_post_divider *
316 pll_settings->adjusted_pix_clk_100hz) <
317 calc_pll_cs->min_vco_khz * 10)
318 min_post_divider++;
319 }
320
321 max_post_divider = calc_pll_cs->max_pix_clock_pll_post_divider;
322 if (max_post_divider * pll_settings->adjusted_pix_clk_100hz
323 > calc_pll_cs->max_vco_khz * 10)
324 max_post_divider = calc_pll_cs->max_vco_khz * 10 /
325 pll_settings->adjusted_pix_clk_100hz;
326 }
327
328/* 2) Find Reference divider ranges
329 * When SS is enabled, or for Display Port even without SS,
330 * pll_settings->referenceDivider is not zero.
331 * So calculate PPLL FB and fractional FB divider
332 * using the passed reference divider*/
333
334 if (pll_settings->reference_divider) {
335 min_ref_divider = pll_settings->reference_divider;
336 max_ref_divider = pll_settings->reference_divider;
337 } else {
338 min_ref_divider = ((calc_pll_cs->ref_freq_khz
339 / calc_pll_cs->max_pll_input_freq_khz)
340 > calc_pll_cs->min_pll_ref_divider)
341 ? calc_pll_cs->ref_freq_khz
342 / calc_pll_cs->max_pll_input_freq_khz
343 : calc_pll_cs->min_pll_ref_divider;
344
345 max_ref_divider = ((calc_pll_cs->ref_freq_khz
346 / calc_pll_cs->min_pll_input_freq_khz)
347 < calc_pll_cs->max_pll_ref_divider)
348 ? calc_pll_cs->ref_freq_khz /
349 calc_pll_cs->min_pll_input_freq_khz
350 : calc_pll_cs->max_pll_ref_divider;
351 }
352
353/* If some parameters are invalid we could have scenario when "min">"max"
354 * which produced endless loop later.
355 * We should investigate why we get the wrong parameters.
356 * But to follow the similar logic when "adjustedPixelClock" is set to be 0
357 * it is better to return here than cause system hang/watchdog timeout later.
358 * ## SVS Wed 15 Jul 2009 */
359
360 if (min_post_divider > max_post_divider) {
361 DC_LOG_ERROR(
362 "%s Post divider range is invalid", __func__);
363 return MAX_PLL_CALC_ERROR;
364 }
365
366 if (min_ref_divider > max_ref_divider) {
367 DC_LOG_ERROR(
368 "%s Reference divider range is invalid", __func__);
369 return MAX_PLL_CALC_ERROR;
370 }
371
372/* 3) Try to find PLL dividers given ranges
373 * starting with minimal error tolerance.
374 * Increase error tolerance until PLL dividers found*/
375 err_tolerance = MAX_PLL_CALC_ERROR;
376
377 while (!calc_pll_dividers_in_range(
378 calc_pll_cs,
379 pll_settings,
380 min_ref_divider,
381 max_ref_divider,
382 min_post_divider,
383 max_post_divider,
384 err_tolerance))
385 err_tolerance += (err_tolerance > 10)
386 ? (err_tolerance / 10)
387 : 1;
388
389 return err_tolerance;
390}
391
392static bool pll_adjust_pix_clk(
393 struct dce110_clk_src *clk_src,
394 struct pixel_clk_params *pix_clk_params,
395 struct pll_settings *pll_settings)
396{
397 uint32_t actual_pix_clk_100hz = 0;
398 uint32_t requested_clk_100hz = 0;
399 struct bp_adjust_pixel_clock_parameters bp_adjust_pixel_clock_params = {
400 0 };
401 enum bp_result bp_result;
402 switch (pix_clk_params->signal_type) {
403 case SIGNAL_TYPE_HDMI_TYPE_A: {
404 requested_clk_100hz = pix_clk_params->requested_pix_clk_100hz;
405 if (pix_clk_params->pixel_encoding != PIXEL_ENCODING_YCBCR422) {
406 switch (pix_clk_params->color_depth) {
407 case COLOR_DEPTH_101010:
408 requested_clk_100hz = (requested_clk_100hz * 5) >> 2;
409 break; /* x1.25*/
410 case COLOR_DEPTH_121212:
411 requested_clk_100hz = (requested_clk_100hz * 6) >> 2;
412 break; /* x1.5*/
413 case COLOR_DEPTH_161616:
414 requested_clk_100hz = requested_clk_100hz * 2;
415 break; /* x2.0*/
416 default:
417 break;
418 }
419 }
420 actual_pix_clk_100hz = requested_clk_100hz;
421 }
422 break;
423
424 case SIGNAL_TYPE_DISPLAY_PORT:
425 case SIGNAL_TYPE_DISPLAY_PORT_MST:
426 case SIGNAL_TYPE_EDP:
427 requested_clk_100hz = pix_clk_params->requested_sym_clk * 10;
428 actual_pix_clk_100hz = pix_clk_params->requested_pix_clk_100hz;
429 break;
430
431 default:
432 requested_clk_100hz = pix_clk_params->requested_pix_clk_100hz;
433 actual_pix_clk_100hz = pix_clk_params->requested_pix_clk_100hz;
434 break;
435 }
436
437 bp_adjust_pixel_clock_params.pixel_clock = requested_clk_100hz / 10;
438 bp_adjust_pixel_clock_params.
439 encoder_object_id = pix_clk_params->encoder_object_id;
440 bp_adjust_pixel_clock_params.signal_type = pix_clk_params->signal_type;
441 bp_adjust_pixel_clock_params.
442 ss_enable = pix_clk_params->flags.ENABLE_SS;
443 bp_result = clk_src->bios->funcs->adjust_pixel_clock(
444 clk_src->bios, &bp_adjust_pixel_clock_params);
445 if (bp_result == BP_RESULT_OK) {
446 pll_settings->actual_pix_clk_100hz = actual_pix_clk_100hz;
447 pll_settings->adjusted_pix_clk_100hz =
448 bp_adjust_pixel_clock_params.adjusted_pixel_clock * 10;
449 pll_settings->reference_divider =
450 bp_adjust_pixel_clock_params.reference_divider;
451 pll_settings->pix_clk_post_divider =
452 bp_adjust_pixel_clock_params.pixel_clock_post_divider;
453
454 return true;
455 }
456
457 return false;
458}
459
460/*
461 * Calculate PLL Dividers for given Clock Value.
462 * First will call VBIOS Adjust Exec table to check if requested Pixel clock
463 * will be Adjusted based on usage.
464 * Then it will calculate PLL Dividers for this Adjusted clock using preferred
465 * method (Maximum VCO frequency).
466 *
467 * \return
468 * Calculation error in units of 0.01%
469 */
470
471static uint32_t dce110_get_pix_clk_dividers_helper (
472 struct dce110_clk_src *clk_src,
473 struct pll_settings *pll_settings,
474 struct pixel_clk_params *pix_clk_params)
475{
476 uint32_t field = 0;
477 uint32_t pll_calc_error = MAX_PLL_CALC_ERROR;
478 DC_LOGGER_INIT();
479 /* Check if reference clock is external (not pcie/xtalin)
480 * HW Dce80 spec:
481 * 00 - PCIE_REFCLK, 01 - XTALIN, 02 - GENERICA, 03 - GENERICB
482 * 04 - HSYNCA, 05 - GENLK_CLK, 06 - PCIE_REFCLK, 07 - DVOCLK0 */
483 REG_GET(PLL_CNTL, PLL_REF_DIV_SRC, &field);
484 pll_settings->use_external_clk = (field > 1);
485
486 /* VBIOS by default enables DP SS (spread on IDCLK) for DCE 8.0 always
487 * (we do not care any more from SI for some older DP Sink which
488 * does not report SS support, no known issues) */
489 if ((pix_clk_params->flags.ENABLE_SS) ||
490 (dc_is_dp_signal(pix_clk_params->signal_type))) {
491
492 const struct spread_spectrum_data *ss_data = get_ss_data_entry(
493 clk_src,
494 pix_clk_params->signal_type,
495 pll_settings->adjusted_pix_clk_100hz / 10);
496
497 if (NULL != ss_data)
498 pll_settings->ss_percentage = ss_data->percentage;
499 }
500
501 /* Check VBIOS AdjustPixelClock Exec table */
502 if (!pll_adjust_pix_clk(clk_src, pix_clk_params, pll_settings)) {
503 /* Should never happen, ASSERT and fill up values to be able
504 * to continue. */
505 DC_LOG_ERROR(
506 "%s: Failed to adjust pixel clock!!", __func__);
507 pll_settings->actual_pix_clk_100hz =
508 pix_clk_params->requested_pix_clk_100hz;
509 pll_settings->adjusted_pix_clk_100hz =
510 pix_clk_params->requested_pix_clk_100hz;
511
512 if (dc_is_dp_signal(pix_clk_params->signal_type))
513 pll_settings->adjusted_pix_clk_100hz = 1000000;
514 }
515
516 /* Calculate Dividers */
517 if (pix_clk_params->signal_type == SIGNAL_TYPE_HDMI_TYPE_A)
518 /*Calculate Dividers by HDMI object, no SS case or SS case */
519 pll_calc_error =
520 calculate_pixel_clock_pll_dividers(
521 &clk_src->calc_pll_hdmi,
522 pll_settings);
523 else
524 /*Calculate Dividers by default object, no SS case or SS case */
525 pll_calc_error =
526 calculate_pixel_clock_pll_dividers(
527 &clk_src->calc_pll,
528 pll_settings);
529
530 return pll_calc_error;
531}
532
533static void dce112_get_pix_clk_dividers_helper (
534 struct dce110_clk_src *clk_src,
535 struct pll_settings *pll_settings,
536 struct pixel_clk_params *pix_clk_params)
537{
538 uint32_t actual_pixel_clock_100hz;
539
540 actual_pixel_clock_100hz = pix_clk_params->requested_pix_clk_100hz;
541 /* Calculate Dividers */
542 if (pix_clk_params->signal_type == SIGNAL_TYPE_HDMI_TYPE_A) {
543 switch (pix_clk_params->color_depth) {
544 case COLOR_DEPTH_101010:
545 actual_pixel_clock_100hz = (actual_pixel_clock_100hz * 5) >> 2;
546 actual_pixel_clock_100hz -= actual_pixel_clock_100hz % 10;
547 break;
548 case COLOR_DEPTH_121212:
549 actual_pixel_clock_100hz = (actual_pixel_clock_100hz * 6) >> 2;
550 actual_pixel_clock_100hz -= actual_pixel_clock_100hz % 10;
551 break;
552 case COLOR_DEPTH_161616:
553 actual_pixel_clock_100hz = actual_pixel_clock_100hz * 2;
554 break;
555 default:
556 break;
557 }
558 }
559 pll_settings->actual_pix_clk_100hz = actual_pixel_clock_100hz;
560 pll_settings->adjusted_pix_clk_100hz = actual_pixel_clock_100hz;
561 pll_settings->calculated_pix_clk_100hz = pix_clk_params->requested_pix_clk_100hz;
562}
563
564static uint32_t dce110_get_pix_clk_dividers(
565 struct clock_source *cs,
566 struct pixel_clk_params *pix_clk_params,
567 struct pll_settings *pll_settings)
568{
569 struct dce110_clk_src *clk_src = TO_DCE110_CLK_SRC(cs);
570 uint32_t pll_calc_error = MAX_PLL_CALC_ERROR;
571 DC_LOGGER_INIT();
572
573 if (pix_clk_params == NULL || pll_settings == NULL
574 || pix_clk_params->requested_pix_clk_100hz == 0) {
575 DC_LOG_ERROR(
576 "%s: Invalid parameters!!\n", __func__);
577 return pll_calc_error;
578 }
579
580 memset(pll_settings, 0, sizeof(*pll_settings));
581
582 if (cs->id == CLOCK_SOURCE_ID_DP_DTO ||
583 cs->id == CLOCK_SOURCE_ID_EXTERNAL) {
584 pll_settings->adjusted_pix_clk_100hz = clk_src->ext_clk_khz * 10;
585 pll_settings->calculated_pix_clk_100hz = clk_src->ext_clk_khz * 10;
586 pll_settings->actual_pix_clk_100hz =
587 pix_clk_params->requested_pix_clk_100hz;
588 return 0;
589 }
590
591 pll_calc_error = dce110_get_pix_clk_dividers_helper(clk_src,
592 pll_settings, pix_clk_params);
593
594 return pll_calc_error;
595}
596
597static uint32_t dce112_get_pix_clk_dividers(
598 struct clock_source *cs,
599 struct pixel_clk_params *pix_clk_params,
600 struct pll_settings *pll_settings)
601{
602 struct dce110_clk_src *clk_src = TO_DCE110_CLK_SRC(cs);
603 DC_LOGGER_INIT();
604
605 if (pix_clk_params == NULL || pll_settings == NULL
606 || pix_clk_params->requested_pix_clk_100hz == 0) {
607 DC_LOG_ERROR(
608 "%s: Invalid parameters!!\n", __func__);
609 return -1;
610 }
611
612 memset(pll_settings, 0, sizeof(*pll_settings));
613
614 if (cs->id == CLOCK_SOURCE_ID_DP_DTO ||
615 cs->id == CLOCK_SOURCE_ID_EXTERNAL) {
616 pll_settings->adjusted_pix_clk_100hz = clk_src->ext_clk_khz * 10;
617 pll_settings->calculated_pix_clk_100hz = clk_src->ext_clk_khz * 10;
618 pll_settings->actual_pix_clk_100hz =
619 pix_clk_params->requested_pix_clk_100hz;
620 return -1;
621 }
622
623 dce112_get_pix_clk_dividers_helper(clk_src,
624 pll_settings, pix_clk_params);
625
626 return 0;
627}
628
629static bool disable_spread_spectrum(struct dce110_clk_src *clk_src)
630{
631 enum bp_result result;
632 struct bp_spread_spectrum_parameters bp_ss_params = {0};
633
634 bp_ss_params.pll_id = clk_src->base.id;
635
636 /*Call ASICControl to process ATOMBIOS Exec table*/
637 result = clk_src->bios->funcs->enable_spread_spectrum_on_ppll(
638 clk_src->bios,
639 &bp_ss_params,
640 false);
641
642 return result == BP_RESULT_OK;
643}
644
645static bool calculate_ss(
646 const struct pll_settings *pll_settings,
647 const struct spread_spectrum_data *ss_data,
648 struct delta_sigma_data *ds_data)
649{
650 struct fixed31_32 fb_div;
651 struct fixed31_32 ss_amount;
652 struct fixed31_32 ss_nslip_amount;
653 struct fixed31_32 ss_ds_frac_amount;
654 struct fixed31_32 ss_step_size;
655 struct fixed31_32 modulation_time;
656
657 if (ds_data == NULL)
658 return false;
659 if (ss_data == NULL)
660 return false;
661 if (ss_data->percentage == 0)
662 return false;
663 if (pll_settings == NULL)
664 return false;
665
666 memset(ds_data, 0, sizeof(struct delta_sigma_data));
667
668 /* compute SS_AMOUNT_FBDIV & SS_AMOUNT_NFRAC_SLIP & SS_AMOUNT_DSFRAC*/
669 /* 6 decimal point support in fractional feedback divider */
670 fb_div = dc_fixpt_from_fraction(
671 pll_settings->fract_feedback_divider, 1000000);
672 fb_div = dc_fixpt_add_int(fb_div, pll_settings->feedback_divider);
673
674 ds_data->ds_frac_amount = 0;
675 /*spreadSpectrumPercentage is in the unit of .01%,
676 * so have to divided by 100 * 100*/
677 ss_amount = dc_fixpt_mul(
678 fb_div, dc_fixpt_from_fraction(ss_data->percentage,
679 100 * ss_data->percentage_divider));
680 ds_data->feedback_amount = dc_fixpt_floor(ss_amount);
681
682 ss_nslip_amount = dc_fixpt_sub(ss_amount,
683 dc_fixpt_from_int(ds_data->feedback_amount));
684 ss_nslip_amount = dc_fixpt_mul_int(ss_nslip_amount, 10);
685 ds_data->nfrac_amount = dc_fixpt_floor(ss_nslip_amount);
686
687 ss_ds_frac_amount = dc_fixpt_sub(ss_nslip_amount,
688 dc_fixpt_from_int(ds_data->nfrac_amount));
689 ss_ds_frac_amount = dc_fixpt_mul_int(ss_ds_frac_amount, 65536);
690 ds_data->ds_frac_amount = dc_fixpt_floor(ss_ds_frac_amount);
691
692 /* compute SS_STEP_SIZE_DSFRAC */
693 modulation_time = dc_fixpt_from_fraction(
694 pll_settings->reference_freq * 1000,
695 pll_settings->reference_divider * ss_data->modulation_freq_hz);
696
697 if (ss_data->flags.CENTER_SPREAD)
698 modulation_time = dc_fixpt_div_int(modulation_time, 4);
699 else
700 modulation_time = dc_fixpt_div_int(modulation_time, 2);
701
702 ss_step_size = dc_fixpt_div(ss_amount, modulation_time);
703 /* SS_STEP_SIZE_DSFRAC_DEC = Int(SS_STEP_SIZE * 2 ^ 16 * 10)*/
704 ss_step_size = dc_fixpt_mul_int(ss_step_size, 65536 * 10);
705 ds_data->ds_frac_size = dc_fixpt_floor(ss_step_size);
706
707 return true;
708}
709
710static bool enable_spread_spectrum(
711 struct dce110_clk_src *clk_src,
712 enum signal_type signal, struct pll_settings *pll_settings)
713{
714 struct bp_spread_spectrum_parameters bp_params = {0};
715 struct delta_sigma_data d_s_data;
716 const struct spread_spectrum_data *ss_data = NULL;
717
718 ss_data = get_ss_data_entry(
719 clk_src,
720 signal,
721 pll_settings->calculated_pix_clk_100hz / 10);
722
723/* Pixel clock PLL has been programmed to generate desired pixel clock,
724 * now enable SS on pixel clock */
725/* TODO is it OK to return true not doing anything ??*/
726 if (ss_data != NULL && pll_settings->ss_percentage != 0) {
727 if (calculate_ss(pll_settings, ss_data, &d_s_data)) {
728 bp_params.ds.feedback_amount =
729 d_s_data.feedback_amount;
730 bp_params.ds.nfrac_amount =
731 d_s_data.nfrac_amount;
732 bp_params.ds.ds_frac_size = d_s_data.ds_frac_size;
733 bp_params.ds_frac_amount =
734 d_s_data.ds_frac_amount;
735 bp_params.flags.DS_TYPE = 1;
736 bp_params.pll_id = clk_src->base.id;
737 bp_params.percentage = ss_data->percentage;
738 if (ss_data->flags.CENTER_SPREAD)
739 bp_params.flags.CENTER_SPREAD = 1;
740 if (ss_data->flags.EXTERNAL_SS)
741 bp_params.flags.EXTERNAL_SS = 1;
742
743 if (BP_RESULT_OK !=
744 clk_src->bios->funcs->
745 enable_spread_spectrum_on_ppll(
746 clk_src->bios,
747 &bp_params,
748 true))
749 return false;
750 } else
751 return false;
752 }
753 return true;
754}
755
756static void dce110_program_pixel_clk_resync(
757 struct dce110_clk_src *clk_src,
758 enum signal_type signal_type,
759 enum dc_color_depth colordepth)
760{
761 REG_UPDATE(RESYNC_CNTL,
762 DCCG_DEEP_COLOR_CNTL1, 0);
763 /*
764 24 bit mode: TMDS clock = 1.0 x pixel clock (1:1)
765 30 bit mode: TMDS clock = 1.25 x pixel clock (5:4)
766 36 bit mode: TMDS clock = 1.5 x pixel clock (3:2)
767 48 bit mode: TMDS clock = 2 x pixel clock (2:1)
768 */
769 if (signal_type != SIGNAL_TYPE_HDMI_TYPE_A)
770 return;
771
772 switch (colordepth) {
773 case COLOR_DEPTH_888:
774 REG_UPDATE(RESYNC_CNTL,
775 DCCG_DEEP_COLOR_CNTL1, 0);
776 break;
777 case COLOR_DEPTH_101010:
778 REG_UPDATE(RESYNC_CNTL,
779 DCCG_DEEP_COLOR_CNTL1, 1);
780 break;
781 case COLOR_DEPTH_121212:
782 REG_UPDATE(RESYNC_CNTL,
783 DCCG_DEEP_COLOR_CNTL1, 2);
784 break;
785 case COLOR_DEPTH_161616:
786 REG_UPDATE(RESYNC_CNTL,
787 DCCG_DEEP_COLOR_CNTL1, 3);
788 break;
789 default:
790 break;
791 }
792}
793
794static void dce112_program_pixel_clk_resync(
795 struct dce110_clk_src *clk_src,
796 enum signal_type signal_type,
797 enum dc_color_depth colordepth,
798 bool enable_ycbcr420)
799{
800 uint32_t deep_color_cntl = 0;
801 uint32_t double_rate_enable = 0;
802
803 /*
804 24 bit mode: TMDS clock = 1.0 x pixel clock (1:1)
805 30 bit mode: TMDS clock = 1.25 x pixel clock (5:4)
806 36 bit mode: TMDS clock = 1.5 x pixel clock (3:2)
807 48 bit mode: TMDS clock = 2 x pixel clock (2:1)
808 */
809 if (signal_type == SIGNAL_TYPE_HDMI_TYPE_A) {
810 double_rate_enable = enable_ycbcr420 ? 1 : 0;
811
812 switch (colordepth) {
813 case COLOR_DEPTH_888:
814 deep_color_cntl = 0;
815 break;
816 case COLOR_DEPTH_101010:
817 deep_color_cntl = 1;
818 break;
819 case COLOR_DEPTH_121212:
820 deep_color_cntl = 2;
821 break;
822 case COLOR_DEPTH_161616:
823 deep_color_cntl = 3;
824 break;
825 default:
826 break;
827 }
828 }
829
830 if (clk_src->cs_mask->PHYPLLA_PIXCLK_DOUBLE_RATE_ENABLE)
831 REG_UPDATE_2(PIXCLK_RESYNC_CNTL,
832 PHYPLLA_DCCG_DEEP_COLOR_CNTL, deep_color_cntl,
833 PHYPLLA_PIXCLK_DOUBLE_RATE_ENABLE, double_rate_enable);
834 else
835 REG_UPDATE(PIXCLK_RESYNC_CNTL,
836 PHYPLLA_DCCG_DEEP_COLOR_CNTL, deep_color_cntl);
837
838}
839
840static bool dce110_program_pix_clk(
841 struct clock_source *clock_source,
842 struct pixel_clk_params *pix_clk_params,
843 enum dp_link_encoding encoding,
844 struct pll_settings *pll_settings)
845{
846 struct dce110_clk_src *clk_src = TO_DCE110_CLK_SRC(clock_source);
847 struct bp_pixel_clock_parameters bp_pc_params = {0};
848
849 /* First disable SS
850 * ATOMBIOS will enable by default SS on PLL for DP,
851 * do not disable it here
852 */
853 if (clock_source->id != CLOCK_SOURCE_ID_EXTERNAL &&
854 !dc_is_dp_signal(pix_clk_params->signal_type) &&
855 clock_source->ctx->dce_version <= DCE_VERSION_11_0)
856 disable_spread_spectrum(clk_src);
857
858 /*ATOMBIOS expects pixel rate adjusted by deep color ratio)*/
859 bp_pc_params.controller_id = pix_clk_params->controller_id;
860 bp_pc_params.pll_id = clock_source->id;
861 bp_pc_params.target_pixel_clock_100hz = pll_settings->actual_pix_clk_100hz;
862 bp_pc_params.encoder_object_id = pix_clk_params->encoder_object_id;
863 bp_pc_params.signal_type = pix_clk_params->signal_type;
864
865 bp_pc_params.reference_divider = pll_settings->reference_divider;
866 bp_pc_params.feedback_divider = pll_settings->feedback_divider;
867 bp_pc_params.fractional_feedback_divider =
868 pll_settings->fract_feedback_divider;
869 bp_pc_params.pixel_clock_post_divider =
870 pll_settings->pix_clk_post_divider;
871 bp_pc_params.flags.SET_EXTERNAL_REF_DIV_SRC =
872 pll_settings->use_external_clk;
873
874 switch (pix_clk_params->color_depth) {
875 case COLOR_DEPTH_101010:
876 bp_pc_params.color_depth = TRANSMITTER_COLOR_DEPTH_30;
877 break;
878 case COLOR_DEPTH_121212:
879 bp_pc_params.color_depth = TRANSMITTER_COLOR_DEPTH_36;
880 break;
881 case COLOR_DEPTH_161616:
882 bp_pc_params.color_depth = TRANSMITTER_COLOR_DEPTH_48;
883 break;
884 default:
885 break;
886 }
887
888 if (clk_src->bios->funcs->set_pixel_clock(
889 clk_src->bios, &bp_pc_params) != BP_RESULT_OK)
890 return false;
891 /* Enable SS
892 * ATOMBIOS will enable by default SS for DP on PLL ( DP ID clock),
893 * based on HW display PLL team, SS control settings should be programmed
894 * during PLL Reset, but they do not have effect
895 * until SS_EN is asserted.*/
896 if (clock_source->id != CLOCK_SOURCE_ID_EXTERNAL
897 && !dc_is_dp_signal(pix_clk_params->signal_type)) {
898
899 if (pix_clk_params->flags.ENABLE_SS)
900 if (!enable_spread_spectrum(clk_src,
901 pix_clk_params->signal_type,
902 pll_settings))
903 return false;
904
905 /* Resync deep color DTO */
906 dce110_program_pixel_clk_resync(clk_src,
907 pix_clk_params->signal_type,
908 pix_clk_params->color_depth);
909 }
910
911 return true;
912}
913
914static bool dce112_program_pix_clk(
915 struct clock_source *clock_source,
916 struct pixel_clk_params *pix_clk_params,
917 enum dp_link_encoding encoding,
918 struct pll_settings *pll_settings)
919{
920 struct dce110_clk_src *clk_src = TO_DCE110_CLK_SRC(clock_source);
921 struct bp_pixel_clock_parameters bp_pc_params = {0};
922
923 if (IS_FPGA_MAXIMUS_DC(clock_source->ctx->dce_environment)) {
924 unsigned int inst = pix_clk_params->controller_id - CONTROLLER_ID_D0;
925 unsigned dp_dto_ref_100hz = 7000000;
926 unsigned clock_100hz = pll_settings->actual_pix_clk_100hz;
927
928 /* Set DTO values: phase = target clock, modulo = reference clock */
929 REG_WRITE(PHASE[inst], clock_100hz);
930 REG_WRITE(MODULO[inst], dp_dto_ref_100hz);
931
932 /* Enable DTO */
933 REG_UPDATE(PIXEL_RATE_CNTL[inst], DP_DTO0_ENABLE, 1);
934 return true;
935 }
936 /* First disable SS
937 * ATOMBIOS will enable by default SS on PLL for DP,
938 * do not disable it here
939 */
940 if (clock_source->id != CLOCK_SOURCE_ID_EXTERNAL &&
941 !dc_is_dp_signal(pix_clk_params->signal_type) &&
942 clock_source->ctx->dce_version <= DCE_VERSION_11_0)
943 disable_spread_spectrum(clk_src);
944
945 /*ATOMBIOS expects pixel rate adjusted by deep color ratio)*/
946 bp_pc_params.controller_id = pix_clk_params->controller_id;
947 bp_pc_params.pll_id = clock_source->id;
948 bp_pc_params.target_pixel_clock_100hz = pll_settings->actual_pix_clk_100hz;
949 bp_pc_params.encoder_object_id = pix_clk_params->encoder_object_id;
950 bp_pc_params.signal_type = pix_clk_params->signal_type;
951
952 if (clock_source->id != CLOCK_SOURCE_ID_DP_DTO) {
953 bp_pc_params.flags.SET_GENLOCK_REF_DIV_SRC =
954 pll_settings->use_external_clk;
955 bp_pc_params.flags.SET_XTALIN_REF_SRC =
956 !pll_settings->use_external_clk;
957 if (pix_clk_params->flags.SUPPORT_YCBCR420) {
958 bp_pc_params.flags.SUPPORT_YUV_420 = 1;
959 }
960 }
961 if (clk_src->bios->funcs->set_pixel_clock(
962 clk_src->bios, &bp_pc_params) != BP_RESULT_OK)
963 return false;
964 /* Resync deep color DTO */
965 if (clock_source->id != CLOCK_SOURCE_ID_DP_DTO)
966 dce112_program_pixel_clk_resync(clk_src,
967 pix_clk_params->signal_type,
968 pix_clk_params->color_depth,
969 pix_clk_params->flags.SUPPORT_YCBCR420);
970
971 return true;
972}
973
974static bool dcn31_program_pix_clk(
975 struct clock_source *clock_source,
976 struct pixel_clk_params *pix_clk_params,
977 enum dp_link_encoding encoding,
978 struct pll_settings *pll_settings)
979{
980 struct dce110_clk_src *clk_src = TO_DCE110_CLK_SRC(clock_source);
981 unsigned int inst = pix_clk_params->controller_id - CONTROLLER_ID_D0;
982 unsigned int dp_dto_ref_khz = clock_source->ctx->dc->clk_mgr->dprefclk_khz;
983 const struct pixel_rate_range_table_entry *e =
984 look_up_in_video_optimized_rate_tlb(pix_clk_params->requested_pix_clk_100hz / 10);
985 struct bp_pixel_clock_parameters bp_pc_params = {0};
986 enum transmitter_color_depth bp_pc_colour_depth = TRANSMITTER_COLOR_DEPTH_24;
987 // For these signal types Driver to program DP_DTO without calling VBIOS Command table
988 if (dc_is_dp_signal(pix_clk_params->signal_type) || dc_is_virtual_signal(pix_clk_params->signal_type)) {
989 if (e) {
990 /* Set DTO values: phase = target clock, modulo = reference clock*/
991 REG_WRITE(PHASE[inst], e->target_pixel_rate_khz * e->mult_factor);
992 REG_WRITE(MODULO[inst], dp_dto_ref_khz * e->div_factor);
993 } else {
994 /* Set DTO values: phase = target clock, modulo = reference clock*/
995 REG_WRITE(PHASE[inst], pll_settings->actual_pix_clk_100hz * 100);
996 REG_WRITE(MODULO[inst], dp_dto_ref_khz * 1000);
997 }
998#if defined(CONFIG_DRM_AMD_DC_DCN)
999 /* Enable DTO */
1000 if (clk_src->cs_mask->PIPE0_DTO_SRC_SEL)
1001 if (encoding == DP_128b_132b_ENCODING)
1002 REG_UPDATE_2(PIXEL_RATE_CNTL[inst],
1003 DP_DTO0_ENABLE, 1,
1004 PIPE0_DTO_SRC_SEL, 2);
1005 else
1006 REG_UPDATE_2(PIXEL_RATE_CNTL[inst],
1007 DP_DTO0_ENABLE, 1,
1008 PIPE0_DTO_SRC_SEL, 1);
1009 else
1010 REG_UPDATE(PIXEL_RATE_CNTL[inst],
1011 DP_DTO0_ENABLE, 1);
1012#else
1013 REG_UPDATE(PIXEL_RATE_CNTL[inst], DP_DTO0_ENABLE, 1);
1014#endif
1015 } else {
1016 if (IS_FPGA_MAXIMUS_DC(clock_source->ctx->dce_environment)) {
1017 unsigned int inst = pix_clk_params->controller_id - CONTROLLER_ID_D0;
1018 unsigned dp_dto_ref_100hz = 7000000;
1019 unsigned clock_100hz = pll_settings->actual_pix_clk_100hz;
1020
1021 /* Set DTO values: phase = target clock, modulo = reference clock */
1022 REG_WRITE(PHASE[inst], clock_100hz);
1023 REG_WRITE(MODULO[inst], dp_dto_ref_100hz);
1024
1025 /* Enable DTO */
1026 #if defined(CONFIG_DRM_AMD_DC_DCN)
1027 if (clk_src->cs_mask->PIPE0_DTO_SRC_SEL)
1028 REG_UPDATE_2(PIXEL_RATE_CNTL[inst],
1029 DP_DTO0_ENABLE, 1,
1030 PIPE0_DTO_SRC_SEL, 1);
1031 else
1032 REG_UPDATE(PIXEL_RATE_CNTL[inst],
1033 DP_DTO0_ENABLE, 1);
1034 #else
1035 REG_UPDATE(PIXEL_RATE_CNTL[inst], DP_DTO0_ENABLE, 1);
1036 #endif
1037 return true;
1038 }
1039
1040#if defined(CONFIG_DRM_AMD_DC_DCN)
1041 if (clk_src->cs_mask->PIPE0_DTO_SRC_SEL)
1042 REG_UPDATE(PIXEL_RATE_CNTL[inst],
1043 PIPE0_DTO_SRC_SEL, 0);
1044#endif
1045
1046 /*ATOMBIOS expects pixel rate adjusted by deep color ratio)*/
1047 bp_pc_params.controller_id = pix_clk_params->controller_id;
1048 bp_pc_params.pll_id = clock_source->id;
1049 bp_pc_params.target_pixel_clock_100hz = pll_settings->actual_pix_clk_100hz;
1050 bp_pc_params.encoder_object_id = pix_clk_params->encoder_object_id;
1051 bp_pc_params.signal_type = pix_clk_params->signal_type;
1052
1053 // Make sure we send the correct color depth to DMUB for HDMI
1054 if (pix_clk_params->signal_type == SIGNAL_TYPE_HDMI_TYPE_A) {
1055 switch (pix_clk_params->color_depth) {
1056 case COLOR_DEPTH_888:
1057 bp_pc_colour_depth = TRANSMITTER_COLOR_DEPTH_24;
1058 break;
1059 case COLOR_DEPTH_101010:
1060 bp_pc_colour_depth = TRANSMITTER_COLOR_DEPTH_30;
1061 break;
1062 case COLOR_DEPTH_121212:
1063 bp_pc_colour_depth = TRANSMITTER_COLOR_DEPTH_36;
1064 break;
1065 case COLOR_DEPTH_161616:
1066 bp_pc_colour_depth = TRANSMITTER_COLOR_DEPTH_48;
1067 break;
1068 default:
1069 bp_pc_colour_depth = TRANSMITTER_COLOR_DEPTH_24;
1070 break;
1071 }
1072 bp_pc_params.color_depth = bp_pc_colour_depth;
1073 }
1074
1075 if (clock_source->id != CLOCK_SOURCE_ID_DP_DTO) {
1076 bp_pc_params.flags.SET_GENLOCK_REF_DIV_SRC =
1077 pll_settings->use_external_clk;
1078 bp_pc_params.flags.SET_XTALIN_REF_SRC =
1079 !pll_settings->use_external_clk;
1080 if (pix_clk_params->flags.SUPPORT_YCBCR420) {
1081 bp_pc_params.flags.SUPPORT_YUV_420 = 1;
1082 }
1083 }
1084 if (clk_src->bios->funcs->set_pixel_clock(
1085 clk_src->bios, &bp_pc_params) != BP_RESULT_OK)
1086 return false;
1087 /* Resync deep color DTO */
1088 if (clock_source->id != CLOCK_SOURCE_ID_DP_DTO)
1089 dce112_program_pixel_clk_resync(clk_src,
1090 pix_clk_params->signal_type,
1091 pix_clk_params->color_depth,
1092 pix_clk_params->flags.SUPPORT_YCBCR420);
1093 }
1094
1095 return true;
1096}
1097
1098static bool dce110_clock_source_power_down(
1099 struct clock_source *clk_src)
1100{
1101 struct dce110_clk_src *dce110_clk_src = TO_DCE110_CLK_SRC(clk_src);
1102 enum bp_result bp_result;
1103 struct bp_pixel_clock_parameters bp_pixel_clock_params = {0};
1104
1105 if (clk_src->dp_clk_src)
1106 return true;
1107
1108 /* If Pixel Clock is 0 it means Power Down Pll*/
1109 bp_pixel_clock_params.controller_id = CONTROLLER_ID_UNDEFINED;
1110 bp_pixel_clock_params.pll_id = clk_src->id;
1111 bp_pixel_clock_params.flags.FORCE_PROGRAMMING_OF_PLL = 1;
1112
1113 /*Call ASICControl to process ATOMBIOS Exec table*/
1114 bp_result = dce110_clk_src->bios->funcs->set_pixel_clock(
1115 dce110_clk_src->bios,
1116 &bp_pixel_clock_params);
1117
1118 return bp_result == BP_RESULT_OK;
1119}
1120
1121static bool get_pixel_clk_frequency_100hz(
1122 const struct clock_source *clock_source,
1123 unsigned int inst,
1124 unsigned int *pixel_clk_khz)
1125{
1126 struct dce110_clk_src *clk_src = TO_DCE110_CLK_SRC(clock_source);
1127 unsigned int clock_hz = 0;
1128 unsigned int modulo_hz = 0;
1129
1130 if (clock_source->id == CLOCK_SOURCE_ID_DP_DTO) {
1131 clock_hz = REG_READ(PHASE[inst]);
1132
1133 if (clock_source->ctx->dc->hwss.enable_vblanks_synchronization &&
1134 clock_source->ctx->dc->config.vblank_alignment_max_frame_time_diff > 0) {
1135 /* NOTE: In case VBLANK syncronization is enabled, MODULO may
1136 * not be programmed equal to DPREFCLK
1137 */
1138 modulo_hz = REG_READ(MODULO[inst]);
1139 if (modulo_hz)
1140 *pixel_clk_khz = div_u64((uint64_t)clock_hz*
1141 clock_source->ctx->dc->clk_mgr->dprefclk_khz*10,
1142 modulo_hz);
1143 else
1144 *pixel_clk_khz = 0;
1145 } else {
1146 /* NOTE: There is agreement with VBIOS here that MODULO is
1147 * programmed equal to DPREFCLK, in which case PHASE will be
1148 * equivalent to pixel clock.
1149 */
1150 *pixel_clk_khz = clock_hz / 100;
1151 }
1152 return true;
1153 }
1154
1155 return false;
1156}
1157
1158/* this table is use to find *1.001 and /1.001 pixel rates from non-precise pixel rate */
1159const struct pixel_rate_range_table_entry video_optimized_pixel_rates[] = {
1160 // /1.001 rates
1161 {25170, 25180, 25200, 1000, 1001}, //25.2MHz -> 25.17
1162 {59340, 59350, 59400, 1000, 1001}, //59.4Mhz -> 59.340
1163 {74170, 74180, 74250, 1000, 1001}, //74.25Mhz -> 74.1758
1164 {125870, 125880, 126000, 1000, 1001}, //126Mhz -> 125.87
1165 {148350, 148360, 148500, 1000, 1001}, //148.5Mhz -> 148.3516
1166 {167830, 167840, 168000, 1000, 1001}, //168Mhz -> 167.83
1167 {222520, 222530, 222750, 1000, 1001}, //222.75Mhz -> 222.527
1168 {257140, 257150, 257400, 1000, 1001}, //257.4Mhz -> 257.1429
1169 {296700, 296710, 297000, 1000, 1001}, //297Mhz -> 296.7033
1170 {342850, 342860, 343200, 1000, 1001}, //343.2Mhz -> 342.857
1171 {395600, 395610, 396000, 1000, 1001}, //396Mhz -> 395.6
1172 {409090, 409100, 409500, 1000, 1001}, //409.5Mhz -> 409.091
1173 {445050, 445060, 445500, 1000, 1001}, //445.5Mhz -> 445.055
1174 {467530, 467540, 468000, 1000, 1001}, //468Mhz -> 467.5325
1175 {519230, 519240, 519750, 1000, 1001}, //519.75Mhz -> 519.231
1176 {525970, 525980, 526500, 1000, 1001}, //526.5Mhz -> 525.974
1177 {545450, 545460, 546000, 1000, 1001}, //546Mhz -> 545.455
1178 {593400, 593410, 594000, 1000, 1001}, //594Mhz -> 593.4066
1179 {623370, 623380, 624000, 1000, 1001}, //624Mhz -> 623.377
1180 {692300, 692310, 693000, 1000, 1001}, //693Mhz -> 692.308
1181 {701290, 701300, 702000, 1000, 1001}, //702Mhz -> 701.2987
1182 {791200, 791210, 792000, 1000, 1001}, //792Mhz -> 791.209
1183 {890100, 890110, 891000, 1000, 1001}, //891Mhz -> 890.1099
1184 {1186810, 1186820, 1188000, 1000, 1001},//1188Mhz -> 1186.8131
1185
1186 // *1.001 rates
1187 {27020, 27030, 27000, 1001, 1000}, //27Mhz
1188 {54050, 54060, 54000, 1001, 1000}, //54Mhz
1189 {108100, 108110, 108000, 1001, 1000},//108Mhz
1190};
1191
1192const struct pixel_rate_range_table_entry *look_up_in_video_optimized_rate_tlb(
1193 unsigned int pixel_rate_khz)
1194{
1195 int i;
1196
1197 for (i = 0; i < NUM_ELEMENTS(video_optimized_pixel_rates); i++) {
1198 const struct pixel_rate_range_table_entry *e = &video_optimized_pixel_rates[i];
1199
1200 if (e->range_min_khz <= pixel_rate_khz && pixel_rate_khz <= e->range_max_khz) {
1201 return e;
1202 }
1203 }
1204
1205 return NULL;
1206}
1207
1208static bool dcn20_program_pix_clk(
1209 struct clock_source *clock_source,
1210 struct pixel_clk_params *pix_clk_params,
1211 enum dp_link_encoding encoding,
1212 struct pll_settings *pll_settings)
1213{
1214 struct dce110_clk_src *clk_src = TO_DCE110_CLK_SRC(clock_source);
1215 unsigned int inst = pix_clk_params->controller_id - CONTROLLER_ID_D0;
1216
1217 dce112_program_pix_clk(clock_source, pix_clk_params, encoding, pll_settings);
1218
1219 if (clock_source->ctx->dc->hwss.enable_vblanks_synchronization &&
1220 clock_source->ctx->dc->config.vblank_alignment_max_frame_time_diff > 0) {
1221 /* NOTE: In case VBLANK syncronization is enabled,
1222 * we need to set modulo to default DPREFCLK first
1223 * dce112_program_pix_clk does not set default DPREFCLK
1224 */
1225 REG_WRITE(MODULO[inst],
1226 clock_source->ctx->dc->clk_mgr->dprefclk_khz*1000);
1227 }
1228 return true;
1229}
1230
1231static bool dcn20_override_dp_pix_clk(
1232 struct clock_source *clock_source,
1233 unsigned int inst,
1234 unsigned int pixel_clk,
1235 unsigned int ref_clk)
1236{
1237 struct dce110_clk_src *clk_src = TO_DCE110_CLK_SRC(clock_source);
1238
1239 REG_UPDATE(PIXEL_RATE_CNTL[inst], DP_DTO0_ENABLE, 0);
1240 REG_WRITE(PHASE[inst], pixel_clk);
1241 REG_WRITE(MODULO[inst], ref_clk);
1242 REG_UPDATE(PIXEL_RATE_CNTL[inst], DP_DTO0_ENABLE, 1);
1243 return true;
1244}
1245
1246static const struct clock_source_funcs dcn20_clk_src_funcs = {
1247 .cs_power_down = dce110_clock_source_power_down,
1248 .program_pix_clk = dcn20_program_pix_clk,
1249 .get_pix_clk_dividers = dce112_get_pix_clk_dividers,
1250 .get_pixel_clk_frequency_100hz = get_pixel_clk_frequency_100hz,
1251 .override_dp_pix_clk = dcn20_override_dp_pix_clk
1252};
1253
1254static bool dcn3_program_pix_clk(
1255 struct clock_source *clock_source,
1256 struct pixel_clk_params *pix_clk_params,
1257 enum dp_link_encoding encoding,
1258 struct pll_settings *pll_settings)
1259{
1260 struct dce110_clk_src *clk_src = TO_DCE110_CLK_SRC(clock_source);
1261 unsigned int inst = pix_clk_params->controller_id - CONTROLLER_ID_D0;
1262 unsigned int dp_dto_ref_khz = clock_source->ctx->dc->clk_mgr->dprefclk_khz;
1263 const struct pixel_rate_range_table_entry *e =
1264 look_up_in_video_optimized_rate_tlb(pix_clk_params->requested_pix_clk_100hz / 10);
1265
1266 // For these signal types Driver to program DP_DTO without calling VBIOS Command table
1267 if (dc_is_dp_signal(pix_clk_params->signal_type)) {
1268 if (e) {
1269 /* Set DTO values: phase = target clock, modulo = reference clock*/
1270 REG_WRITE(PHASE[inst], e->target_pixel_rate_khz * e->mult_factor);
1271 REG_WRITE(MODULO[inst], dp_dto_ref_khz * e->div_factor);
1272 } else {
1273 /* Set DTO values: phase = target clock, modulo = reference clock*/
1274 REG_WRITE(PHASE[inst], pll_settings->actual_pix_clk_100hz * 100);
1275 REG_WRITE(MODULO[inst], dp_dto_ref_khz * 1000);
1276 }
1277 REG_UPDATE(PIXEL_RATE_CNTL[inst], DP_DTO0_ENABLE, 1);
1278 } else
1279 // For other signal types(HDMI_TYPE_A, DVI) Driver still to call VBIOS Command table
1280 dce112_program_pix_clk(clock_source, pix_clk_params, encoding, pll_settings);
1281
1282 return true;
1283}
1284
1285static uint32_t dcn3_get_pix_clk_dividers(
1286 struct clock_source *cs,
1287 struct pixel_clk_params *pix_clk_params,
1288 struct pll_settings *pll_settings)
1289{
1290 unsigned long long actual_pix_clk_100Hz = pix_clk_params ? pix_clk_params->requested_pix_clk_100hz : 0;
1291
1292 DC_LOGGER_INIT();
1293
1294 if (pix_clk_params == NULL || pll_settings == NULL
1295 || pix_clk_params->requested_pix_clk_100hz == 0) {
1296 DC_LOG_ERROR(
1297 "%s: Invalid parameters!!\n", __func__);
1298 return -1;
1299 }
1300
1301 memset(pll_settings, 0, sizeof(*pll_settings));
1302 /* Adjust for HDMI Type A deep color */
1303 if (pix_clk_params->signal_type == SIGNAL_TYPE_HDMI_TYPE_A) {
1304 switch (pix_clk_params->color_depth) {
1305 case COLOR_DEPTH_101010:
1306 actual_pix_clk_100Hz = (actual_pix_clk_100Hz * 5) >> 2;
1307 break;
1308 case COLOR_DEPTH_121212:
1309 actual_pix_clk_100Hz = (actual_pix_clk_100Hz * 6) >> 2;
1310 break;
1311 case COLOR_DEPTH_161616:
1312 actual_pix_clk_100Hz = actual_pix_clk_100Hz * 2;
1313 break;
1314 default:
1315 break;
1316 }
1317 }
1318 pll_settings->actual_pix_clk_100hz = (unsigned int) actual_pix_clk_100Hz;
1319 pll_settings->adjusted_pix_clk_100hz = (unsigned int) actual_pix_clk_100Hz;
1320 pll_settings->calculated_pix_clk_100hz = (unsigned int) actual_pix_clk_100Hz;
1321
1322 return 0;
1323}
1324
1325static const struct clock_source_funcs dcn3_clk_src_funcs = {
1326 .cs_power_down = dce110_clock_source_power_down,
1327 .program_pix_clk = dcn3_program_pix_clk,
1328 .get_pix_clk_dividers = dcn3_get_pix_clk_dividers,
1329 .get_pixel_clk_frequency_100hz = get_pixel_clk_frequency_100hz
1330};
1331
1332static const struct clock_source_funcs dcn31_clk_src_funcs = {
1333 .cs_power_down = dce110_clock_source_power_down,
1334 .program_pix_clk = dcn31_program_pix_clk,
1335 .get_pix_clk_dividers = dcn3_get_pix_clk_dividers,
1336 .get_pixel_clk_frequency_100hz = get_pixel_clk_frequency_100hz
1337};
1338
1339/*****************************************/
1340/* Constructor */
1341/*****************************************/
1342
1343static const struct clock_source_funcs dce112_clk_src_funcs = {
1344 .cs_power_down = dce110_clock_source_power_down,
1345 .program_pix_clk = dce112_program_pix_clk,
1346 .get_pix_clk_dividers = dce112_get_pix_clk_dividers,
1347 .get_pixel_clk_frequency_100hz = get_pixel_clk_frequency_100hz
1348};
1349static const struct clock_source_funcs dce110_clk_src_funcs = {
1350 .cs_power_down = dce110_clock_source_power_down,
1351 .program_pix_clk = dce110_program_pix_clk,
1352 .get_pix_clk_dividers = dce110_get_pix_clk_dividers,
1353 .get_pixel_clk_frequency_100hz = get_pixel_clk_frequency_100hz
1354};
1355
1356
1357static void get_ss_info_from_atombios(
1358 struct dce110_clk_src *clk_src,
1359 enum as_signal_type as_signal,
1360 struct spread_spectrum_data *spread_spectrum_data[],
1361 uint32_t *ss_entries_num)
1362{
1363 enum bp_result bp_result = BP_RESULT_FAILURE;
1364 struct spread_spectrum_info *ss_info;
1365 struct spread_spectrum_data *ss_data;
1366 struct spread_spectrum_info *ss_info_cur;
1367 struct spread_spectrum_data *ss_data_cur;
1368 uint32_t i;
1369 DC_LOGGER_INIT();
1370 if (ss_entries_num == NULL) {
1371 DC_LOG_SYNC(
1372 "Invalid entry !!!\n");
1373 return;
1374 }
1375 if (spread_spectrum_data == NULL) {
1376 DC_LOG_SYNC(
1377 "Invalid array pointer!!!\n");
1378 return;
1379 }
1380
1381 spread_spectrum_data[0] = NULL;
1382 *ss_entries_num = 0;
1383
1384 *ss_entries_num = clk_src->bios->funcs->get_ss_entry_number(
1385 clk_src->bios,
1386 as_signal);
1387
1388 if (*ss_entries_num == 0)
1389 return;
1390
1391 ss_info = kcalloc(*ss_entries_num,
1392 sizeof(struct spread_spectrum_info),
1393 GFP_KERNEL);
1394 ss_info_cur = ss_info;
1395 if (ss_info == NULL)
1396 return;
1397
1398 ss_data = kcalloc(*ss_entries_num,
1399 sizeof(struct spread_spectrum_data),
1400 GFP_KERNEL);
1401 if (ss_data == NULL)
1402 goto out_free_info;
1403
1404 for (i = 0, ss_info_cur = ss_info;
1405 i < (*ss_entries_num);
1406 ++i, ++ss_info_cur) {
1407
1408 bp_result = clk_src->bios->funcs->get_spread_spectrum_info(
1409 clk_src->bios,
1410 as_signal,
1411 i,
1412 ss_info_cur);
1413
1414 if (bp_result != BP_RESULT_OK)
1415 goto out_free_data;
1416 }
1417
1418 for (i = 0, ss_info_cur = ss_info, ss_data_cur = ss_data;
1419 i < (*ss_entries_num);
1420 ++i, ++ss_info_cur, ++ss_data_cur) {
1421
1422 if (ss_info_cur->type.STEP_AND_DELAY_INFO != false) {
1423 DC_LOG_SYNC(
1424 "Invalid ATOMBIOS SS Table!!!\n");
1425 goto out_free_data;
1426 }
1427
1428 /* for HDMI check SS percentage,
1429 * if it is > 6 (0.06%), the ATOMBIOS table info is invalid*/
1430 if (as_signal == AS_SIGNAL_TYPE_HDMI
1431 && ss_info_cur->spread_spectrum_percentage > 6){
1432 /* invalid input, do nothing */
1433 DC_LOG_SYNC(
1434 "Invalid SS percentage ");
1435 DC_LOG_SYNC(
1436 "for HDMI in ATOMBIOS info Table!!!\n");
1437 continue;
1438 }
1439 if (ss_info_cur->spread_percentage_divider == 1000) {
1440 /* Keep previous precision from ATOMBIOS for these
1441 * in case new precision set by ATOMBIOS for these
1442 * (otherwise all code in DCE specific classes
1443 * for all previous ASICs would need
1444 * to be updated for SS calculations,
1445 * Audio SS compensation and DP DTO SS compensation
1446 * which assumes fixed SS percentage Divider = 100)*/
1447 ss_info_cur->spread_spectrum_percentage /= 10;
1448 ss_info_cur->spread_percentage_divider = 100;
1449 }
1450
1451 ss_data_cur->freq_range_khz = ss_info_cur->target_clock_range;
1452 ss_data_cur->percentage =
1453 ss_info_cur->spread_spectrum_percentage;
1454 ss_data_cur->percentage_divider =
1455 ss_info_cur->spread_percentage_divider;
1456 ss_data_cur->modulation_freq_hz =
1457 ss_info_cur->spread_spectrum_range;
1458
1459 if (ss_info_cur->type.CENTER_MODE)
1460 ss_data_cur->flags.CENTER_SPREAD = 1;
1461
1462 if (ss_info_cur->type.EXTERNAL)
1463 ss_data_cur->flags.EXTERNAL_SS = 1;
1464
1465 }
1466
1467 *spread_spectrum_data = ss_data;
1468 kfree(ss_info);
1469 return;
1470
1471out_free_data:
1472 kfree(ss_data);
1473 *ss_entries_num = 0;
1474out_free_info:
1475 kfree(ss_info);
1476}
1477
1478static void ss_info_from_atombios_create(
1479 struct dce110_clk_src *clk_src)
1480{
1481 get_ss_info_from_atombios(
1482 clk_src,
1483 AS_SIGNAL_TYPE_DISPLAY_PORT,
1484 &clk_src->dp_ss_params,
1485 &clk_src->dp_ss_params_cnt);
1486 get_ss_info_from_atombios(
1487 clk_src,
1488 AS_SIGNAL_TYPE_HDMI,
1489 &clk_src->hdmi_ss_params,
1490 &clk_src->hdmi_ss_params_cnt);
1491 get_ss_info_from_atombios(
1492 clk_src,
1493 AS_SIGNAL_TYPE_DVI,
1494 &clk_src->dvi_ss_params,
1495 &clk_src->dvi_ss_params_cnt);
1496 get_ss_info_from_atombios(
1497 clk_src,
1498 AS_SIGNAL_TYPE_LVDS,
1499 &clk_src->lvds_ss_params,
1500 &clk_src->lvds_ss_params_cnt);
1501}
1502
1503static bool calc_pll_max_vco_construct(
1504 struct calc_pll_clock_source *calc_pll_cs,
1505 struct calc_pll_clock_source_init_data *init_data)
1506{
1507 uint32_t i;
1508 struct dc_firmware_info *fw_info;
1509 if (calc_pll_cs == NULL ||
1510 init_data == NULL ||
1511 init_data->bp == NULL)
1512 return false;
1513
1514 if (!init_data->bp->fw_info_valid)
1515 return false;
1516
1517 fw_info = &init_data->bp->fw_info;
1518 calc_pll_cs->ctx = init_data->ctx;
1519 calc_pll_cs->ref_freq_khz = fw_info->pll_info.crystal_frequency;
1520 calc_pll_cs->min_vco_khz =
1521 fw_info->pll_info.min_output_pxl_clk_pll_frequency;
1522 calc_pll_cs->max_vco_khz =
1523 fw_info->pll_info.max_output_pxl_clk_pll_frequency;
1524
1525 if (init_data->max_override_input_pxl_clk_pll_freq_khz != 0)
1526 calc_pll_cs->max_pll_input_freq_khz =
1527 init_data->max_override_input_pxl_clk_pll_freq_khz;
1528 else
1529 calc_pll_cs->max_pll_input_freq_khz =
1530 fw_info->pll_info.max_input_pxl_clk_pll_frequency;
1531
1532 if (init_data->min_override_input_pxl_clk_pll_freq_khz != 0)
1533 calc_pll_cs->min_pll_input_freq_khz =
1534 init_data->min_override_input_pxl_clk_pll_freq_khz;
1535 else
1536 calc_pll_cs->min_pll_input_freq_khz =
1537 fw_info->pll_info.min_input_pxl_clk_pll_frequency;
1538
1539 calc_pll_cs->min_pix_clock_pll_post_divider =
1540 init_data->min_pix_clk_pll_post_divider;
1541 calc_pll_cs->max_pix_clock_pll_post_divider =
1542 init_data->max_pix_clk_pll_post_divider;
1543 calc_pll_cs->min_pll_ref_divider =
1544 init_data->min_pll_ref_divider;
1545 calc_pll_cs->max_pll_ref_divider =
1546 init_data->max_pll_ref_divider;
1547
1548 if (init_data->num_fract_fb_divider_decimal_point == 0 ||
1549 init_data->num_fract_fb_divider_decimal_point_precision >
1550 init_data->num_fract_fb_divider_decimal_point) {
1551 DC_LOG_ERROR(
1552 "The dec point num or precision is incorrect!");
1553 return false;
1554 }
1555 if (init_data->num_fract_fb_divider_decimal_point_precision == 0) {
1556 DC_LOG_ERROR(
1557 "Incorrect fract feedback divider precision num!");
1558 return false;
1559 }
1560
1561 calc_pll_cs->fract_fb_divider_decimal_points_num =
1562 init_data->num_fract_fb_divider_decimal_point;
1563 calc_pll_cs->fract_fb_divider_precision =
1564 init_data->num_fract_fb_divider_decimal_point_precision;
1565 calc_pll_cs->fract_fb_divider_factor = 1;
1566 for (i = 0; i < calc_pll_cs->fract_fb_divider_decimal_points_num; ++i)
1567 calc_pll_cs->fract_fb_divider_factor *= 10;
1568
1569 calc_pll_cs->fract_fb_divider_precision_factor = 1;
1570 for (
1571 i = 0;
1572 i < (calc_pll_cs->fract_fb_divider_decimal_points_num -
1573 calc_pll_cs->fract_fb_divider_precision);
1574 ++i)
1575 calc_pll_cs->fract_fb_divider_precision_factor *= 10;
1576
1577 return true;
1578}
1579
1580bool dce110_clk_src_construct(
1581 struct dce110_clk_src *clk_src,
1582 struct dc_context *ctx,
1583 struct dc_bios *bios,
1584 enum clock_source_id id,
1585 const struct dce110_clk_src_regs *regs,
1586 const struct dce110_clk_src_shift *cs_shift,
1587 const struct dce110_clk_src_mask *cs_mask)
1588{
1589 struct calc_pll_clock_source_init_data calc_pll_cs_init_data_hdmi;
1590 struct calc_pll_clock_source_init_data calc_pll_cs_init_data;
1591
1592 clk_src->base.ctx = ctx;
1593 clk_src->bios = bios;
1594 clk_src->base.id = id;
1595 clk_src->base.funcs = &dce110_clk_src_funcs;
1596
1597 clk_src->regs = regs;
1598 clk_src->cs_shift = cs_shift;
1599 clk_src->cs_mask = cs_mask;
1600
1601 if (!clk_src->bios->fw_info_valid) {
1602 ASSERT_CRITICAL(false);
1603 goto unexpected_failure;
1604 }
1605
1606 clk_src->ext_clk_khz = clk_src->bios->fw_info.external_clock_source_frequency_for_dp;
1607
1608 /* structure normally used with PLL ranges from ATOMBIOS; DS on by default */
1609 calc_pll_cs_init_data.bp = bios;
1610 calc_pll_cs_init_data.min_pix_clk_pll_post_divider = 1;
1611 calc_pll_cs_init_data.max_pix_clk_pll_post_divider =
1612 clk_src->cs_mask->PLL_POST_DIV_PIXCLK;
1613 calc_pll_cs_init_data.min_pll_ref_divider = 1;
1614 calc_pll_cs_init_data.max_pll_ref_divider = clk_src->cs_mask->PLL_REF_DIV;
1615 /* when 0 use minInputPxlClkPLLFrequencyInKHz from firmwareInfo*/
1616 calc_pll_cs_init_data.min_override_input_pxl_clk_pll_freq_khz = 0;
1617 /* when 0 use maxInputPxlClkPLLFrequencyInKHz from firmwareInfo*/
1618 calc_pll_cs_init_data.max_override_input_pxl_clk_pll_freq_khz = 0;
1619 /*numberOfFractFBDividerDecimalPoints*/
1620 calc_pll_cs_init_data.num_fract_fb_divider_decimal_point =
1621 FRACT_FB_DIVIDER_DEC_POINTS_MAX_NUM;
1622 /*number of decimal point to round off for fractional feedback divider value*/
1623 calc_pll_cs_init_data.num_fract_fb_divider_decimal_point_precision =
1624 FRACT_FB_DIVIDER_DEC_POINTS_MAX_NUM;
1625 calc_pll_cs_init_data.ctx = ctx;
1626
1627 /*structure for HDMI, no SS or SS% <= 0.06% for 27 MHz Ref clock */
1628 calc_pll_cs_init_data_hdmi.bp = bios;
1629 calc_pll_cs_init_data_hdmi.min_pix_clk_pll_post_divider = 1;
1630 calc_pll_cs_init_data_hdmi.max_pix_clk_pll_post_divider =
1631 clk_src->cs_mask->PLL_POST_DIV_PIXCLK;
1632 calc_pll_cs_init_data_hdmi.min_pll_ref_divider = 1;
1633 calc_pll_cs_init_data_hdmi.max_pll_ref_divider = clk_src->cs_mask->PLL_REF_DIV;
1634 /* when 0 use minInputPxlClkPLLFrequencyInKHz from firmwareInfo*/
1635 calc_pll_cs_init_data_hdmi.min_override_input_pxl_clk_pll_freq_khz = 13500;
1636 /* when 0 use maxInputPxlClkPLLFrequencyInKHz from firmwareInfo*/
1637 calc_pll_cs_init_data_hdmi.max_override_input_pxl_clk_pll_freq_khz = 27000;
1638 /*numberOfFractFBDividerDecimalPoints*/
1639 calc_pll_cs_init_data_hdmi.num_fract_fb_divider_decimal_point =
1640 FRACT_FB_DIVIDER_DEC_POINTS_MAX_NUM;
1641 /*number of decimal point to round off for fractional feedback divider value*/
1642 calc_pll_cs_init_data_hdmi.num_fract_fb_divider_decimal_point_precision =
1643 FRACT_FB_DIVIDER_DEC_POINTS_MAX_NUM;
1644 calc_pll_cs_init_data_hdmi.ctx = ctx;
1645
1646 clk_src->ref_freq_khz = clk_src->bios->fw_info.pll_info.crystal_frequency;
1647
1648 if (clk_src->base.id == CLOCK_SOURCE_ID_EXTERNAL)
1649 return true;
1650
1651 /* PLL only from here on */
1652 ss_info_from_atombios_create(clk_src);
1653
1654 if (!calc_pll_max_vco_construct(
1655 &clk_src->calc_pll,
1656 &calc_pll_cs_init_data)) {
1657 ASSERT_CRITICAL(false);
1658 goto unexpected_failure;
1659 }
1660
1661
1662 calc_pll_cs_init_data_hdmi.
1663 min_override_input_pxl_clk_pll_freq_khz = clk_src->ref_freq_khz/2;
1664 calc_pll_cs_init_data_hdmi.
1665 max_override_input_pxl_clk_pll_freq_khz = clk_src->ref_freq_khz;
1666
1667
1668 if (!calc_pll_max_vco_construct(
1669 &clk_src->calc_pll_hdmi, &calc_pll_cs_init_data_hdmi)) {
1670 ASSERT_CRITICAL(false);
1671 goto unexpected_failure;
1672 }
1673
1674 return true;
1675
1676unexpected_failure:
1677 return false;
1678}
1679
1680bool dce112_clk_src_construct(
1681 struct dce110_clk_src *clk_src,
1682 struct dc_context *ctx,
1683 struct dc_bios *bios,
1684 enum clock_source_id id,
1685 const struct dce110_clk_src_regs *regs,
1686 const struct dce110_clk_src_shift *cs_shift,
1687 const struct dce110_clk_src_mask *cs_mask)
1688{
1689 clk_src->base.ctx = ctx;
1690 clk_src->bios = bios;
1691 clk_src->base.id = id;
1692 clk_src->base.funcs = &dce112_clk_src_funcs;
1693
1694 clk_src->regs = regs;
1695 clk_src->cs_shift = cs_shift;
1696 clk_src->cs_mask = cs_mask;
1697
1698 if (!clk_src->bios->fw_info_valid) {
1699 ASSERT_CRITICAL(false);
1700 return false;
1701 }
1702
1703 clk_src->ext_clk_khz = clk_src->bios->fw_info.external_clock_source_frequency_for_dp;
1704
1705 return true;
1706}
1707
1708bool dcn20_clk_src_construct(
1709 struct dce110_clk_src *clk_src,
1710 struct dc_context *ctx,
1711 struct dc_bios *bios,
1712 enum clock_source_id id,
1713 const struct dce110_clk_src_regs *regs,
1714 const struct dce110_clk_src_shift *cs_shift,
1715 const struct dce110_clk_src_mask *cs_mask)
1716{
1717 bool ret = dce112_clk_src_construct(clk_src, ctx, bios, id, regs, cs_shift, cs_mask);
1718
1719 clk_src->base.funcs = &dcn20_clk_src_funcs;
1720
1721 return ret;
1722}
1723
1724bool dcn3_clk_src_construct(
1725 struct dce110_clk_src *clk_src,
1726 struct dc_context *ctx,
1727 struct dc_bios *bios,
1728 enum clock_source_id id,
1729 const struct dce110_clk_src_regs *regs,
1730 const struct dce110_clk_src_shift *cs_shift,
1731 const struct dce110_clk_src_mask *cs_mask)
1732{
1733 bool ret = dce112_clk_src_construct(clk_src, ctx, bios, id, regs, cs_shift, cs_mask);
1734
1735 clk_src->base.funcs = &dcn3_clk_src_funcs;
1736
1737 return ret;
1738}
1739
1740bool dcn31_clk_src_construct(
1741 struct dce110_clk_src *clk_src,
1742 struct dc_context *ctx,
1743 struct dc_bios *bios,
1744 enum clock_source_id id,
1745 const struct dce110_clk_src_regs *regs,
1746 const struct dce110_clk_src_shift *cs_shift,
1747 const struct dce110_clk_src_mask *cs_mask)
1748{
1749 bool ret = dce112_clk_src_construct(clk_src, ctx, bios, id, regs, cs_shift, cs_mask);
1750
1751 clk_src->base.funcs = &dcn31_clk_src_funcs;
1752
1753 return ret;
1754}
1755
1756bool dcn301_clk_src_construct(
1757 struct dce110_clk_src *clk_src,
1758 struct dc_context *ctx,
1759 struct dc_bios *bios,
1760 enum clock_source_id id,
1761 const struct dce110_clk_src_regs *regs,
1762 const struct dce110_clk_src_shift *cs_shift,
1763 const struct dce110_clk_src_mask *cs_mask)
1764{
1765 bool ret = dce112_clk_src_construct(clk_src, ctx, bios, id, regs, cs_shift, cs_mask);
1766
1767 clk_src->base.funcs = &dcn3_clk_src_funcs;
1768
1769 return ret;
1770}
1/*
2 * Copyright 2012-15 Advanced Micro Devices, Inc.
3 *
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:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
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.
21 *
22 * Authors: AMD
23 *
24 */
25
26#include "dm_services.h"
27
28
29#include "dc_types.h"
30#include "core_types.h"
31
32#include "include/grph_object_id.h"
33#include "include/logger_interface.h"
34
35#include "dce_clock_source.h"
36#include "clk_mgr.h"
37#include "dccg.h"
38
39#include "reg_helper.h"
40
41#define REG(reg)\
42 (clk_src->regs->reg)
43
44#define CTX \
45 clk_src->base.ctx
46
47#define DC_LOGGER \
48 calc_pll_cs->ctx->logger
49#define DC_LOGGER_INIT() \
50 struct calc_pll_clock_source *calc_pll_cs = &clk_src->calc_pll
51
52#undef FN
53#define FN(reg_name, field_name) \
54 clk_src->cs_shift->field_name, clk_src->cs_mask->field_name
55
56#define FRACT_FB_DIVIDER_DEC_POINTS_MAX_NUM 6
57#define CALC_PLL_CLK_SRC_ERR_TOLERANCE 1
58#define MAX_PLL_CALC_ERROR 0xFFFFFFFF
59
60#define NUM_ELEMENTS(a) (sizeof(a) / sizeof((a)[0]))
61
62static const struct spread_spectrum_data *get_ss_data_entry(
63 struct dce110_clk_src *clk_src,
64 enum signal_type signal,
65 uint32_t pix_clk_khz)
66{
67
68 uint32_t entrys_num;
69 uint32_t i;
70 struct spread_spectrum_data *ss_parm = NULL;
71 struct spread_spectrum_data *ret = NULL;
72
73 switch (signal) {
74 case SIGNAL_TYPE_DVI_SINGLE_LINK:
75 case SIGNAL_TYPE_DVI_DUAL_LINK:
76 ss_parm = clk_src->dvi_ss_params;
77 entrys_num = clk_src->dvi_ss_params_cnt;
78 break;
79
80 case SIGNAL_TYPE_HDMI_TYPE_A:
81 ss_parm = clk_src->hdmi_ss_params;
82 entrys_num = clk_src->hdmi_ss_params_cnt;
83 break;
84
85 case SIGNAL_TYPE_LVDS:
86 ss_parm = clk_src->lvds_ss_params;
87 entrys_num = clk_src->lvds_ss_params_cnt;
88 break;
89
90 case SIGNAL_TYPE_DISPLAY_PORT:
91 case SIGNAL_TYPE_DISPLAY_PORT_MST:
92 case SIGNAL_TYPE_EDP:
93 case SIGNAL_TYPE_VIRTUAL:
94 ss_parm = clk_src->dp_ss_params;
95 entrys_num = clk_src->dp_ss_params_cnt;
96 break;
97
98 default:
99 ss_parm = NULL;
100 entrys_num = 0;
101 break;
102 }
103
104 if (ss_parm == NULL)
105 return ret;
106
107 for (i = 0; i < entrys_num; ++i, ++ss_parm) {
108 if (ss_parm->freq_range_khz >= pix_clk_khz) {
109 ret = ss_parm;
110 break;
111 }
112 }
113
114 return ret;
115}
116
117/**
118 * calculate_fb_and_fractional_fb_divider - Calculates feedback and fractional
119 * feedback dividers values
120 *
121 * @calc_pll_cs: Pointer to clock source information
122 * @target_pix_clk_100hz: Desired frequency in 100 Hz
123 * @ref_divider: Reference divider (already known)
124 * @post_divider: Post Divider (already known)
125 * @feedback_divider_param: Pointer where to store
126 * calculated feedback divider value
127 * @fract_feedback_divider_param: Pointer where to store
128 * calculated fract feedback divider value
129 *
130 * return:
131 * It fills the locations pointed by feedback_divider_param
132 * and fract_feedback_divider_param
133 * It returns - true if feedback divider not 0
134 * - false should never happen)
135 */
136static bool calculate_fb_and_fractional_fb_divider(
137 struct calc_pll_clock_source *calc_pll_cs,
138 uint32_t target_pix_clk_100hz,
139 uint32_t ref_divider,
140 uint32_t post_divider,
141 uint32_t *feedback_divider_param,
142 uint32_t *fract_feedback_divider_param)
143{
144 uint64_t feedback_divider;
145
146 feedback_divider =
147 (uint64_t)target_pix_clk_100hz * ref_divider * post_divider;
148 feedback_divider *= 10;
149 /* additional factor, since we divide by 10 afterwards */
150 feedback_divider *= (uint64_t)(calc_pll_cs->fract_fb_divider_factor);
151 feedback_divider = div_u64(feedback_divider, calc_pll_cs->ref_freq_khz * 10ull);
152
153/*Round to the number of precision
154 * The following code replace the old code (ullfeedbackDivider + 5)/10
155 * for example if the difference between the number
156 * of fractional feedback decimal point and the fractional FB Divider precision
157 * is 2 then the equation becomes (ullfeedbackDivider + 5*100) / (10*100))*/
158
159 feedback_divider += 5ULL *
160 calc_pll_cs->fract_fb_divider_precision_factor;
161 feedback_divider =
162 div_u64(feedback_divider,
163 calc_pll_cs->fract_fb_divider_precision_factor * 10);
164 feedback_divider *= (uint64_t)
165 (calc_pll_cs->fract_fb_divider_precision_factor);
166
167 *feedback_divider_param =
168 div_u64_rem(
169 feedback_divider,
170 calc_pll_cs->fract_fb_divider_factor,
171 fract_feedback_divider_param);
172
173 if (*feedback_divider_param != 0)
174 return true;
175 return false;
176}
177
178/**
179 * calc_fb_divider_checking_tolerance - Calculates Feedback and
180 * Fractional Feedback divider values
181 * for passed Reference and Post divider,
182 * checking for tolerance.
183 * @calc_pll_cs: Pointer to clock source information
184 * @pll_settings: Pointer to PLL settings
185 * @ref_divider: Reference divider (already known)
186 * @post_divider: Post Divider (already known)
187 * @tolerance: Tolerance for Calculated Pixel Clock to be within
188 *
189 * return:
190 * It fills the PLLSettings structure with PLL Dividers values
191 * if calculated values are within required tolerance
192 * It returns - true if error is within tolerance
193 * - false if error is not within tolerance
194 */
195static bool calc_fb_divider_checking_tolerance(
196 struct calc_pll_clock_source *calc_pll_cs,
197 struct pll_settings *pll_settings,
198 uint32_t ref_divider,
199 uint32_t post_divider,
200 uint32_t tolerance)
201{
202 uint32_t feedback_divider;
203 uint32_t fract_feedback_divider;
204 uint32_t actual_calculated_clock_100hz;
205 uint32_t abs_err;
206 uint64_t actual_calc_clk_100hz;
207
208 calculate_fb_and_fractional_fb_divider(
209 calc_pll_cs,
210 pll_settings->adjusted_pix_clk_100hz,
211 ref_divider,
212 post_divider,
213 &feedback_divider,
214 &fract_feedback_divider);
215
216 /*Actual calculated value*/
217 actual_calc_clk_100hz = (uint64_t)feedback_divider *
218 calc_pll_cs->fract_fb_divider_factor +
219 fract_feedback_divider;
220 actual_calc_clk_100hz *= calc_pll_cs->ref_freq_khz * 10;
221 actual_calc_clk_100hz =
222 div_u64(actual_calc_clk_100hz,
223 ref_divider * post_divider *
224 calc_pll_cs->fract_fb_divider_factor);
225
226 actual_calculated_clock_100hz = (uint32_t)(actual_calc_clk_100hz);
227
228 abs_err = (actual_calculated_clock_100hz >
229 pll_settings->adjusted_pix_clk_100hz)
230 ? actual_calculated_clock_100hz -
231 pll_settings->adjusted_pix_clk_100hz
232 : pll_settings->adjusted_pix_clk_100hz -
233 actual_calculated_clock_100hz;
234
235 if (abs_err <= tolerance) {
236 /*found good values*/
237 pll_settings->reference_freq = calc_pll_cs->ref_freq_khz;
238 pll_settings->reference_divider = ref_divider;
239 pll_settings->feedback_divider = feedback_divider;
240 pll_settings->fract_feedback_divider = fract_feedback_divider;
241 pll_settings->pix_clk_post_divider = post_divider;
242 pll_settings->calculated_pix_clk_100hz =
243 actual_calculated_clock_100hz;
244 pll_settings->vco_freq =
245 div_u64((u64)actual_calculated_clock_100hz * post_divider, 10);
246 return true;
247 }
248 return false;
249}
250
251static bool calc_pll_dividers_in_range(
252 struct calc_pll_clock_source *calc_pll_cs,
253 struct pll_settings *pll_settings,
254 uint32_t min_ref_divider,
255 uint32_t max_ref_divider,
256 uint32_t min_post_divider,
257 uint32_t max_post_divider,
258 uint32_t err_tolerance)
259{
260 uint32_t ref_divider;
261 uint32_t post_divider;
262 uint32_t tolerance;
263
264/* This is err_tolerance / 10000 = 0.0025 - acceptable error of 0.25%
265 * This is errorTolerance / 10000 = 0.0001 - acceptable error of 0.01%*/
266 tolerance = (pll_settings->adjusted_pix_clk_100hz * err_tolerance) /
267 100000;
268 if (tolerance < CALC_PLL_CLK_SRC_ERR_TOLERANCE)
269 tolerance = CALC_PLL_CLK_SRC_ERR_TOLERANCE;
270
271 for (
272 post_divider = max_post_divider;
273 post_divider >= min_post_divider;
274 --post_divider) {
275 for (
276 ref_divider = min_ref_divider;
277 ref_divider <= max_ref_divider;
278 ++ref_divider) {
279 if (calc_fb_divider_checking_tolerance(
280 calc_pll_cs,
281 pll_settings,
282 ref_divider,
283 post_divider,
284 tolerance)) {
285 return true;
286 }
287 }
288 }
289
290 return false;
291}
292
293static uint32_t calculate_pixel_clock_pll_dividers(
294 struct calc_pll_clock_source *calc_pll_cs,
295 struct pll_settings *pll_settings)
296{
297 uint32_t err_tolerance;
298 uint32_t min_post_divider;
299 uint32_t max_post_divider;
300 uint32_t min_ref_divider;
301 uint32_t max_ref_divider;
302
303 if (pll_settings->adjusted_pix_clk_100hz == 0) {
304 DC_LOG_ERROR(
305 "%s Bad requested pixel clock", __func__);
306 return MAX_PLL_CALC_ERROR;
307 }
308
309/* 1) Find Post divider ranges */
310 if (pll_settings->pix_clk_post_divider) {
311 min_post_divider = pll_settings->pix_clk_post_divider;
312 max_post_divider = pll_settings->pix_clk_post_divider;
313 } else {
314 min_post_divider = calc_pll_cs->min_pix_clock_pll_post_divider;
315 if (min_post_divider * pll_settings->adjusted_pix_clk_100hz <
316 calc_pll_cs->min_vco_khz * 10) {
317 min_post_divider = calc_pll_cs->min_vco_khz * 10 /
318 pll_settings->adjusted_pix_clk_100hz;
319 if ((min_post_divider *
320 pll_settings->adjusted_pix_clk_100hz) <
321 calc_pll_cs->min_vco_khz * 10)
322 min_post_divider++;
323 }
324
325 max_post_divider = calc_pll_cs->max_pix_clock_pll_post_divider;
326 if (max_post_divider * pll_settings->adjusted_pix_clk_100hz
327 > calc_pll_cs->max_vco_khz * 10)
328 max_post_divider = calc_pll_cs->max_vco_khz * 10 /
329 pll_settings->adjusted_pix_clk_100hz;
330 }
331
332/* 2) Find Reference divider ranges
333 * When SS is enabled, or for Display Port even without SS,
334 * pll_settings->referenceDivider is not zero.
335 * So calculate PPLL FB and fractional FB divider
336 * using the passed reference divider*/
337
338 if (pll_settings->reference_divider) {
339 min_ref_divider = pll_settings->reference_divider;
340 max_ref_divider = pll_settings->reference_divider;
341 } else {
342 min_ref_divider = ((calc_pll_cs->ref_freq_khz
343 / calc_pll_cs->max_pll_input_freq_khz)
344 > calc_pll_cs->min_pll_ref_divider)
345 ? calc_pll_cs->ref_freq_khz
346 / calc_pll_cs->max_pll_input_freq_khz
347 : calc_pll_cs->min_pll_ref_divider;
348
349 max_ref_divider = ((calc_pll_cs->ref_freq_khz
350 / calc_pll_cs->min_pll_input_freq_khz)
351 < calc_pll_cs->max_pll_ref_divider)
352 ? calc_pll_cs->ref_freq_khz /
353 calc_pll_cs->min_pll_input_freq_khz
354 : calc_pll_cs->max_pll_ref_divider;
355 }
356
357/* If some parameters are invalid we could have scenario when "min">"max"
358 * which produced endless loop later.
359 * We should investigate why we get the wrong parameters.
360 * But to follow the similar logic when "adjustedPixelClock" is set to be 0
361 * it is better to return here than cause system hang/watchdog timeout later.
362 * ## SVS Wed 15 Jul 2009 */
363
364 if (min_post_divider > max_post_divider) {
365 DC_LOG_ERROR(
366 "%s Post divider range is invalid", __func__);
367 return MAX_PLL_CALC_ERROR;
368 }
369
370 if (min_ref_divider > max_ref_divider) {
371 DC_LOG_ERROR(
372 "%s Reference divider range is invalid", __func__);
373 return MAX_PLL_CALC_ERROR;
374 }
375
376/* 3) Try to find PLL dividers given ranges
377 * starting with minimal error tolerance.
378 * Increase error tolerance until PLL dividers found*/
379 err_tolerance = MAX_PLL_CALC_ERROR;
380
381 while (!calc_pll_dividers_in_range(
382 calc_pll_cs,
383 pll_settings,
384 min_ref_divider,
385 max_ref_divider,
386 min_post_divider,
387 max_post_divider,
388 err_tolerance))
389 err_tolerance += (err_tolerance > 10)
390 ? (err_tolerance / 10)
391 : 1;
392
393 return err_tolerance;
394}
395
396static bool pll_adjust_pix_clk(
397 struct dce110_clk_src *clk_src,
398 struct pixel_clk_params *pix_clk_params,
399 struct pll_settings *pll_settings)
400{
401 uint32_t actual_pix_clk_100hz = 0;
402 uint32_t requested_clk_100hz = 0;
403 struct bp_adjust_pixel_clock_parameters bp_adjust_pixel_clock_params = {
404 0 };
405 enum bp_result bp_result;
406 switch (pix_clk_params->signal_type) {
407 case SIGNAL_TYPE_HDMI_TYPE_A: {
408 requested_clk_100hz = pix_clk_params->requested_pix_clk_100hz;
409 if (pix_clk_params->pixel_encoding != PIXEL_ENCODING_YCBCR422) {
410 switch (pix_clk_params->color_depth) {
411 case COLOR_DEPTH_101010:
412 requested_clk_100hz = (requested_clk_100hz * 5) >> 2;
413 break; /* x1.25*/
414 case COLOR_DEPTH_121212:
415 requested_clk_100hz = (requested_clk_100hz * 6) >> 2;
416 break; /* x1.5*/
417 case COLOR_DEPTH_161616:
418 requested_clk_100hz = requested_clk_100hz * 2;
419 break; /* x2.0*/
420 default:
421 break;
422 }
423 }
424 actual_pix_clk_100hz = requested_clk_100hz;
425 }
426 break;
427
428 case SIGNAL_TYPE_DISPLAY_PORT:
429 case SIGNAL_TYPE_DISPLAY_PORT_MST:
430 case SIGNAL_TYPE_EDP:
431 requested_clk_100hz = pix_clk_params->requested_sym_clk * 10;
432 actual_pix_clk_100hz = pix_clk_params->requested_pix_clk_100hz;
433 break;
434
435 default:
436 requested_clk_100hz = pix_clk_params->requested_pix_clk_100hz;
437 actual_pix_clk_100hz = pix_clk_params->requested_pix_clk_100hz;
438 break;
439 }
440
441 bp_adjust_pixel_clock_params.pixel_clock = requested_clk_100hz / 10;
442 bp_adjust_pixel_clock_params.
443 encoder_object_id = pix_clk_params->encoder_object_id;
444 bp_adjust_pixel_clock_params.signal_type = pix_clk_params->signal_type;
445 bp_adjust_pixel_clock_params.
446 ss_enable = pix_clk_params->flags.ENABLE_SS;
447 bp_result = clk_src->bios->funcs->adjust_pixel_clock(
448 clk_src->bios, &bp_adjust_pixel_clock_params);
449 if (bp_result == BP_RESULT_OK) {
450 pll_settings->actual_pix_clk_100hz = actual_pix_clk_100hz;
451 pll_settings->adjusted_pix_clk_100hz =
452 bp_adjust_pixel_clock_params.adjusted_pixel_clock * 10;
453 pll_settings->reference_divider =
454 bp_adjust_pixel_clock_params.reference_divider;
455 pll_settings->pix_clk_post_divider =
456 bp_adjust_pixel_clock_params.pixel_clock_post_divider;
457
458 return true;
459 }
460
461 return false;
462}
463
464/*
465 * Calculate PLL Dividers for given Clock Value.
466 * First will call VBIOS Adjust Exec table to check if requested Pixel clock
467 * will be Adjusted based on usage.
468 * Then it will calculate PLL Dividers for this Adjusted clock using preferred
469 * method (Maximum VCO frequency).
470 *
471 * \return
472 * Calculation error in units of 0.01%
473 */
474
475static uint32_t dce110_get_pix_clk_dividers_helper (
476 struct dce110_clk_src *clk_src,
477 struct pll_settings *pll_settings,
478 struct pixel_clk_params *pix_clk_params)
479{
480 uint32_t field = 0;
481 uint32_t pll_calc_error = MAX_PLL_CALC_ERROR;
482 DC_LOGGER_INIT();
483 /* Check if reference clock is external (not pcie/xtalin)
484 * HW Dce80 spec:
485 * 00 - PCIE_REFCLK, 01 - XTALIN, 02 - GENERICA, 03 - GENERICB
486 * 04 - HSYNCA, 05 - GENLK_CLK, 06 - PCIE_REFCLK, 07 - DVOCLK0 */
487 REG_GET(PLL_CNTL, PLL_REF_DIV_SRC, &field);
488 pll_settings->use_external_clk = (field > 1);
489
490 /* VBIOS by default enables DP SS (spread on IDCLK) for DCE 8.0 always
491 * (we do not care any more from SI for some older DP Sink which
492 * does not report SS support, no known issues) */
493 if ((pix_clk_params->flags.ENABLE_SS) ||
494 (dc_is_dp_signal(pix_clk_params->signal_type))) {
495
496 const struct spread_spectrum_data *ss_data = get_ss_data_entry(
497 clk_src,
498 pix_clk_params->signal_type,
499 pll_settings->adjusted_pix_clk_100hz / 10);
500
501 if (NULL != ss_data)
502 pll_settings->ss_percentage = ss_data->percentage;
503 }
504
505 /* Check VBIOS AdjustPixelClock Exec table */
506 if (!pll_adjust_pix_clk(clk_src, pix_clk_params, pll_settings)) {
507 /* Should never happen, ASSERT and fill up values to be able
508 * to continue. */
509 DC_LOG_ERROR(
510 "%s: Failed to adjust pixel clock!!", __func__);
511 pll_settings->actual_pix_clk_100hz =
512 pix_clk_params->requested_pix_clk_100hz;
513 pll_settings->adjusted_pix_clk_100hz =
514 pix_clk_params->requested_pix_clk_100hz;
515
516 if (dc_is_dp_signal(pix_clk_params->signal_type))
517 pll_settings->adjusted_pix_clk_100hz = 1000000;
518 }
519
520 /* Calculate Dividers */
521 if (pix_clk_params->signal_type == SIGNAL_TYPE_HDMI_TYPE_A)
522 /*Calculate Dividers by HDMI object, no SS case or SS case */
523 pll_calc_error =
524 calculate_pixel_clock_pll_dividers(
525 &clk_src->calc_pll_hdmi,
526 pll_settings);
527 else
528 /*Calculate Dividers by default object, no SS case or SS case */
529 pll_calc_error =
530 calculate_pixel_clock_pll_dividers(
531 &clk_src->calc_pll,
532 pll_settings);
533
534 return pll_calc_error;
535}
536
537static void dce112_get_pix_clk_dividers_helper (
538 struct dce110_clk_src *clk_src,
539 struct pll_settings *pll_settings,
540 struct pixel_clk_params *pix_clk_params)
541{
542 uint32_t actual_pixel_clock_100hz;
543
544 actual_pixel_clock_100hz = pix_clk_params->requested_pix_clk_100hz;
545 /* Calculate Dividers */
546 if (pix_clk_params->signal_type == SIGNAL_TYPE_HDMI_TYPE_A) {
547 switch (pix_clk_params->color_depth) {
548 case COLOR_DEPTH_101010:
549 actual_pixel_clock_100hz = (actual_pixel_clock_100hz * 5) >> 2;
550 actual_pixel_clock_100hz -= actual_pixel_clock_100hz % 10;
551 break;
552 case COLOR_DEPTH_121212:
553 actual_pixel_clock_100hz = (actual_pixel_clock_100hz * 6) >> 2;
554 actual_pixel_clock_100hz -= actual_pixel_clock_100hz % 10;
555 break;
556 case COLOR_DEPTH_161616:
557 actual_pixel_clock_100hz = actual_pixel_clock_100hz * 2;
558 break;
559 default:
560 break;
561 }
562 }
563 pll_settings->actual_pix_clk_100hz = actual_pixel_clock_100hz;
564 pll_settings->adjusted_pix_clk_100hz = actual_pixel_clock_100hz;
565 pll_settings->calculated_pix_clk_100hz = pix_clk_params->requested_pix_clk_100hz;
566}
567
568static uint32_t dce110_get_pix_clk_dividers(
569 struct clock_source *cs,
570 struct pixel_clk_params *pix_clk_params,
571 struct pll_settings *pll_settings)
572{
573 struct dce110_clk_src *clk_src = TO_DCE110_CLK_SRC(cs);
574 uint32_t pll_calc_error = MAX_PLL_CALC_ERROR;
575 DC_LOGGER_INIT();
576
577 if (pix_clk_params == NULL || pll_settings == NULL
578 || pix_clk_params->requested_pix_clk_100hz == 0) {
579 DC_LOG_ERROR(
580 "%s: Invalid parameters!!\n", __func__);
581 return pll_calc_error;
582 }
583
584 memset(pll_settings, 0, sizeof(*pll_settings));
585
586 if (cs->id == CLOCK_SOURCE_ID_DP_DTO ||
587 cs->id == CLOCK_SOURCE_ID_EXTERNAL) {
588 pll_settings->adjusted_pix_clk_100hz = clk_src->ext_clk_khz * 10;
589 pll_settings->calculated_pix_clk_100hz = clk_src->ext_clk_khz * 10;
590 pll_settings->actual_pix_clk_100hz =
591 pix_clk_params->requested_pix_clk_100hz;
592 return 0;
593 }
594
595 pll_calc_error = dce110_get_pix_clk_dividers_helper(clk_src,
596 pll_settings, pix_clk_params);
597
598 return pll_calc_error;
599}
600
601static uint32_t dce112_get_pix_clk_dividers(
602 struct clock_source *cs,
603 struct pixel_clk_params *pix_clk_params,
604 struct pll_settings *pll_settings)
605{
606 struct dce110_clk_src *clk_src = TO_DCE110_CLK_SRC(cs);
607 DC_LOGGER_INIT();
608
609 if (pix_clk_params == NULL || pll_settings == NULL
610 || pix_clk_params->requested_pix_clk_100hz == 0) {
611 DC_LOG_ERROR(
612 "%s: Invalid parameters!!\n", __func__);
613 return -1;
614 }
615
616 memset(pll_settings, 0, sizeof(*pll_settings));
617
618 if (cs->id == CLOCK_SOURCE_ID_DP_DTO ||
619 cs->id == CLOCK_SOURCE_ID_EXTERNAL) {
620 pll_settings->adjusted_pix_clk_100hz = clk_src->ext_clk_khz * 10;
621 pll_settings->calculated_pix_clk_100hz = clk_src->ext_clk_khz * 10;
622 pll_settings->actual_pix_clk_100hz =
623 pix_clk_params->requested_pix_clk_100hz;
624 return -1;
625 }
626
627 dce112_get_pix_clk_dividers_helper(clk_src,
628 pll_settings, pix_clk_params);
629
630 return 0;
631}
632
633static bool disable_spread_spectrum(struct dce110_clk_src *clk_src)
634{
635 enum bp_result result;
636 struct bp_spread_spectrum_parameters bp_ss_params = {0};
637
638 bp_ss_params.pll_id = clk_src->base.id;
639
640 /*Call ASICControl to process ATOMBIOS Exec table*/
641 result = clk_src->bios->funcs->enable_spread_spectrum_on_ppll(
642 clk_src->bios,
643 &bp_ss_params,
644 false);
645
646 return result == BP_RESULT_OK;
647}
648
649static bool calculate_ss(
650 const struct pll_settings *pll_settings,
651 const struct spread_spectrum_data *ss_data,
652 struct delta_sigma_data *ds_data)
653{
654 struct fixed31_32 fb_div;
655 struct fixed31_32 ss_amount;
656 struct fixed31_32 ss_nslip_amount;
657 struct fixed31_32 ss_ds_frac_amount;
658 struct fixed31_32 ss_step_size;
659 struct fixed31_32 modulation_time;
660
661 if (ds_data == NULL)
662 return false;
663 if (ss_data == NULL)
664 return false;
665 if (ss_data->percentage == 0)
666 return false;
667 if (pll_settings == NULL)
668 return false;
669
670 memset(ds_data, 0, sizeof(struct delta_sigma_data));
671
672 /* compute SS_AMOUNT_FBDIV & SS_AMOUNT_NFRAC_SLIP & SS_AMOUNT_DSFRAC*/
673 /* 6 decimal point support in fractional feedback divider */
674 fb_div = dc_fixpt_from_fraction(
675 pll_settings->fract_feedback_divider, 1000000);
676 fb_div = dc_fixpt_add_int(fb_div, pll_settings->feedback_divider);
677
678 ds_data->ds_frac_amount = 0;
679 /*spreadSpectrumPercentage is in the unit of .01%,
680 * so have to divided by 100 * 100*/
681 ss_amount = dc_fixpt_mul(
682 fb_div, dc_fixpt_from_fraction(ss_data->percentage,
683 100 * ss_data->percentage_divider));
684 ds_data->feedback_amount = dc_fixpt_floor(ss_amount);
685
686 ss_nslip_amount = dc_fixpt_sub(ss_amount,
687 dc_fixpt_from_int(ds_data->feedback_amount));
688 ss_nslip_amount = dc_fixpt_mul_int(ss_nslip_amount, 10);
689 ds_data->nfrac_amount = dc_fixpt_floor(ss_nslip_amount);
690
691 ss_ds_frac_amount = dc_fixpt_sub(ss_nslip_amount,
692 dc_fixpt_from_int(ds_data->nfrac_amount));
693 ss_ds_frac_amount = dc_fixpt_mul_int(ss_ds_frac_amount, 65536);
694 ds_data->ds_frac_amount = dc_fixpt_floor(ss_ds_frac_amount);
695
696 /* compute SS_STEP_SIZE_DSFRAC */
697 modulation_time = dc_fixpt_from_fraction(
698 pll_settings->reference_freq * 1000,
699 pll_settings->reference_divider * ss_data->modulation_freq_hz);
700
701 if (ss_data->flags.CENTER_SPREAD)
702 modulation_time = dc_fixpt_div_int(modulation_time, 4);
703 else
704 modulation_time = dc_fixpt_div_int(modulation_time, 2);
705
706 ss_step_size = dc_fixpt_div(ss_amount, modulation_time);
707 /* SS_STEP_SIZE_DSFRAC_DEC = Int(SS_STEP_SIZE * 2 ^ 16 * 10)*/
708 ss_step_size = dc_fixpt_mul_int(ss_step_size, 65536 * 10);
709 ds_data->ds_frac_size = dc_fixpt_floor(ss_step_size);
710
711 return true;
712}
713
714static bool enable_spread_spectrum(
715 struct dce110_clk_src *clk_src,
716 enum signal_type signal, struct pll_settings *pll_settings)
717{
718 struct bp_spread_spectrum_parameters bp_params = {0};
719 struct delta_sigma_data d_s_data;
720 const struct spread_spectrum_data *ss_data = NULL;
721
722 ss_data = get_ss_data_entry(
723 clk_src,
724 signal,
725 pll_settings->calculated_pix_clk_100hz / 10);
726
727/* Pixel clock PLL has been programmed to generate desired pixel clock,
728 * now enable SS on pixel clock */
729/* TODO is it OK to return true not doing anything ??*/
730 if (ss_data != NULL && pll_settings->ss_percentage != 0) {
731 if (calculate_ss(pll_settings, ss_data, &d_s_data)) {
732 bp_params.ds.feedback_amount =
733 d_s_data.feedback_amount;
734 bp_params.ds.nfrac_amount =
735 d_s_data.nfrac_amount;
736 bp_params.ds.ds_frac_size = d_s_data.ds_frac_size;
737 bp_params.ds_frac_amount =
738 d_s_data.ds_frac_amount;
739 bp_params.flags.DS_TYPE = 1;
740 bp_params.pll_id = clk_src->base.id;
741 bp_params.percentage = ss_data->percentage;
742 if (ss_data->flags.CENTER_SPREAD)
743 bp_params.flags.CENTER_SPREAD = 1;
744 if (ss_data->flags.EXTERNAL_SS)
745 bp_params.flags.EXTERNAL_SS = 1;
746
747 if (BP_RESULT_OK !=
748 clk_src->bios->funcs->
749 enable_spread_spectrum_on_ppll(
750 clk_src->bios,
751 &bp_params,
752 true))
753 return false;
754 } else
755 return false;
756 }
757 return true;
758}
759
760static void dce110_program_pixel_clk_resync(
761 struct dce110_clk_src *clk_src,
762 enum signal_type signal_type,
763 enum dc_color_depth colordepth)
764{
765 REG_UPDATE(RESYNC_CNTL,
766 DCCG_DEEP_COLOR_CNTL1, 0);
767 /*
768 24 bit mode: TMDS clock = 1.0 x pixel clock (1:1)
769 30 bit mode: TMDS clock = 1.25 x pixel clock (5:4)
770 36 bit mode: TMDS clock = 1.5 x pixel clock (3:2)
771 48 bit mode: TMDS clock = 2 x pixel clock (2:1)
772 */
773 if (signal_type != SIGNAL_TYPE_HDMI_TYPE_A)
774 return;
775
776 switch (colordepth) {
777 case COLOR_DEPTH_888:
778 REG_UPDATE(RESYNC_CNTL,
779 DCCG_DEEP_COLOR_CNTL1, 0);
780 break;
781 case COLOR_DEPTH_101010:
782 REG_UPDATE(RESYNC_CNTL,
783 DCCG_DEEP_COLOR_CNTL1, 1);
784 break;
785 case COLOR_DEPTH_121212:
786 REG_UPDATE(RESYNC_CNTL,
787 DCCG_DEEP_COLOR_CNTL1, 2);
788 break;
789 case COLOR_DEPTH_161616:
790 REG_UPDATE(RESYNC_CNTL,
791 DCCG_DEEP_COLOR_CNTL1, 3);
792 break;
793 default:
794 break;
795 }
796}
797
798static void dce112_program_pixel_clk_resync(
799 struct dce110_clk_src *clk_src,
800 enum signal_type signal_type,
801 enum dc_color_depth colordepth,
802 bool enable_ycbcr420)
803{
804 uint32_t deep_color_cntl = 0;
805 uint32_t double_rate_enable = 0;
806
807 /*
808 24 bit mode: TMDS clock = 1.0 x pixel clock (1:1)
809 30 bit mode: TMDS clock = 1.25 x pixel clock (5:4)
810 36 bit mode: TMDS clock = 1.5 x pixel clock (3:2)
811 48 bit mode: TMDS clock = 2 x pixel clock (2:1)
812 */
813 if (signal_type == SIGNAL_TYPE_HDMI_TYPE_A) {
814 double_rate_enable = enable_ycbcr420 ? 1 : 0;
815
816 switch (colordepth) {
817 case COLOR_DEPTH_888:
818 deep_color_cntl = 0;
819 break;
820 case COLOR_DEPTH_101010:
821 deep_color_cntl = 1;
822 break;
823 case COLOR_DEPTH_121212:
824 deep_color_cntl = 2;
825 break;
826 case COLOR_DEPTH_161616:
827 deep_color_cntl = 3;
828 break;
829 default:
830 break;
831 }
832 }
833
834 if (clk_src->cs_mask->PHYPLLA_PIXCLK_DOUBLE_RATE_ENABLE)
835 REG_UPDATE_2(PIXCLK_RESYNC_CNTL,
836 PHYPLLA_DCCG_DEEP_COLOR_CNTL, deep_color_cntl,
837 PHYPLLA_PIXCLK_DOUBLE_RATE_ENABLE, double_rate_enable);
838 else
839 REG_UPDATE(PIXCLK_RESYNC_CNTL,
840 PHYPLLA_DCCG_DEEP_COLOR_CNTL, deep_color_cntl);
841
842}
843
844static bool dce110_program_pix_clk(
845 struct clock_source *clock_source,
846 struct pixel_clk_params *pix_clk_params,
847 enum dp_link_encoding encoding,
848 struct pll_settings *pll_settings)
849{
850 struct dce110_clk_src *clk_src = TO_DCE110_CLK_SRC(clock_source);
851 struct bp_pixel_clock_parameters bp_pc_params = {0};
852
853 /* First disable SS
854 * ATOMBIOS will enable by default SS on PLL for DP,
855 * do not disable it here
856 */
857 if (clock_source->id != CLOCK_SOURCE_ID_EXTERNAL &&
858 !dc_is_dp_signal(pix_clk_params->signal_type) &&
859 clock_source->ctx->dce_version <= DCE_VERSION_11_0)
860 disable_spread_spectrum(clk_src);
861
862 /*ATOMBIOS expects pixel rate adjusted by deep color ratio)*/
863 bp_pc_params.controller_id = pix_clk_params->controller_id;
864 bp_pc_params.pll_id = clock_source->id;
865 bp_pc_params.target_pixel_clock_100hz = pll_settings->actual_pix_clk_100hz;
866 bp_pc_params.encoder_object_id = pix_clk_params->encoder_object_id;
867 bp_pc_params.signal_type = pix_clk_params->signal_type;
868
869 bp_pc_params.reference_divider = pll_settings->reference_divider;
870 bp_pc_params.feedback_divider = pll_settings->feedback_divider;
871 bp_pc_params.fractional_feedback_divider =
872 pll_settings->fract_feedback_divider;
873 bp_pc_params.pixel_clock_post_divider =
874 pll_settings->pix_clk_post_divider;
875 bp_pc_params.flags.SET_EXTERNAL_REF_DIV_SRC =
876 pll_settings->use_external_clk;
877
878 switch (pix_clk_params->color_depth) {
879 case COLOR_DEPTH_101010:
880 bp_pc_params.color_depth = TRANSMITTER_COLOR_DEPTH_30;
881 break;
882 case COLOR_DEPTH_121212:
883 bp_pc_params.color_depth = TRANSMITTER_COLOR_DEPTH_36;
884 break;
885 case COLOR_DEPTH_161616:
886 bp_pc_params.color_depth = TRANSMITTER_COLOR_DEPTH_48;
887 break;
888 default:
889 break;
890 }
891
892 if (clk_src->bios->funcs->set_pixel_clock(
893 clk_src->bios, &bp_pc_params) != BP_RESULT_OK)
894 return false;
895 /* Enable SS
896 * ATOMBIOS will enable by default SS for DP on PLL ( DP ID clock),
897 * based on HW display PLL team, SS control settings should be programmed
898 * during PLL Reset, but they do not have effect
899 * until SS_EN is asserted.*/
900 if (clock_source->id != CLOCK_SOURCE_ID_EXTERNAL
901 && !dc_is_dp_signal(pix_clk_params->signal_type)) {
902
903 if (pix_clk_params->flags.ENABLE_SS)
904 if (!enable_spread_spectrum(clk_src,
905 pix_clk_params->signal_type,
906 pll_settings))
907 return false;
908
909 /* Resync deep color DTO */
910 dce110_program_pixel_clk_resync(clk_src,
911 pix_clk_params->signal_type,
912 pix_clk_params->color_depth);
913 }
914
915 return true;
916}
917
918static bool dce112_program_pix_clk(
919 struct clock_source *clock_source,
920 struct pixel_clk_params *pix_clk_params,
921 enum dp_link_encoding encoding,
922 struct pll_settings *pll_settings)
923{
924 struct dce110_clk_src *clk_src = TO_DCE110_CLK_SRC(clock_source);
925 struct bp_pixel_clock_parameters bp_pc_params = {0};
926
927 /* First disable SS
928 * ATOMBIOS will enable by default SS on PLL for DP,
929 * do not disable it here
930 */
931 if (clock_source->id != CLOCK_SOURCE_ID_EXTERNAL &&
932 !dc_is_dp_signal(pix_clk_params->signal_type) &&
933 clock_source->ctx->dce_version <= DCE_VERSION_11_0)
934 disable_spread_spectrum(clk_src);
935
936 /*ATOMBIOS expects pixel rate adjusted by deep color ratio)*/
937 bp_pc_params.controller_id = pix_clk_params->controller_id;
938 bp_pc_params.pll_id = clock_source->id;
939 bp_pc_params.target_pixel_clock_100hz = pll_settings->actual_pix_clk_100hz;
940 bp_pc_params.encoder_object_id = pix_clk_params->encoder_object_id;
941 bp_pc_params.signal_type = pix_clk_params->signal_type;
942
943 if (clock_source->id != CLOCK_SOURCE_ID_DP_DTO) {
944 bp_pc_params.flags.SET_GENLOCK_REF_DIV_SRC =
945 pll_settings->use_external_clk;
946 bp_pc_params.flags.SET_XTALIN_REF_SRC =
947 !pll_settings->use_external_clk;
948 if (pix_clk_params->flags.SUPPORT_YCBCR420) {
949 bp_pc_params.flags.SUPPORT_YUV_420 = 1;
950 }
951 }
952 if (clk_src->bios->funcs->set_pixel_clock(
953 clk_src->bios, &bp_pc_params) != BP_RESULT_OK)
954 return false;
955 /* Resync deep color DTO */
956 if (clock_source->id != CLOCK_SOURCE_ID_DP_DTO)
957 dce112_program_pixel_clk_resync(clk_src,
958 pix_clk_params->signal_type,
959 pix_clk_params->color_depth,
960 pix_clk_params->flags.SUPPORT_YCBCR420);
961
962 return true;
963}
964
965static bool dcn31_program_pix_clk(
966 struct clock_source *clock_source,
967 struct pixel_clk_params *pix_clk_params,
968 enum dp_link_encoding encoding,
969 struct pll_settings *pll_settings)
970{
971 struct dce110_clk_src *clk_src = TO_DCE110_CLK_SRC(clock_source);
972 unsigned int inst = pix_clk_params->controller_id - CONTROLLER_ID_D0;
973 unsigned int dp_dto_ref_khz = clock_source->ctx->dc->clk_mgr->dprefclk_khz;
974 const struct pixel_rate_range_table_entry *e =
975 look_up_in_video_optimized_rate_tlb(pix_clk_params->requested_pix_clk_100hz / 10);
976 struct bp_pixel_clock_parameters bp_pc_params = {0};
977 enum transmitter_color_depth bp_pc_colour_depth = TRANSMITTER_COLOR_DEPTH_24;
978
979 if (clock_source->ctx->dc->clk_mgr->dp_dto_source_clock_in_khz != 0)
980 dp_dto_ref_khz = clock_source->ctx->dc->clk_mgr->dp_dto_source_clock_in_khz;
981 // For these signal types Driver to program DP_DTO without calling VBIOS Command table
982 if (dc_is_dp_signal(pix_clk_params->signal_type) || dc_is_virtual_signal(pix_clk_params->signal_type)) {
983 if (e) {
984 /* Set DTO values: phase = target clock, modulo = reference clock*/
985 REG_WRITE(PHASE[inst], e->target_pixel_rate_khz * e->mult_factor);
986 REG_WRITE(MODULO[inst], dp_dto_ref_khz * e->div_factor);
987 } else {
988 /* Set DTO values: phase = target clock, modulo = reference clock*/
989 REG_WRITE(PHASE[inst], pll_settings->actual_pix_clk_100hz * 100);
990 REG_WRITE(MODULO[inst], dp_dto_ref_khz * 1000);
991 }
992 /* Enable DTO */
993 if (clk_src->cs_mask->PIPE0_DTO_SRC_SEL)
994 if (encoding == DP_128b_132b_ENCODING)
995 REG_UPDATE_2(PIXEL_RATE_CNTL[inst],
996 DP_DTO0_ENABLE, 1,
997 PIPE0_DTO_SRC_SEL, 2);
998 else
999 REG_UPDATE_2(PIXEL_RATE_CNTL[inst],
1000 DP_DTO0_ENABLE, 1,
1001 PIPE0_DTO_SRC_SEL, 1);
1002 else
1003 REG_UPDATE(PIXEL_RATE_CNTL[inst],
1004 DP_DTO0_ENABLE, 1);
1005 } else {
1006
1007 if (clk_src->cs_mask->PIPE0_DTO_SRC_SEL)
1008 REG_UPDATE(PIXEL_RATE_CNTL[inst],
1009 PIPE0_DTO_SRC_SEL, 0);
1010
1011 /*ATOMBIOS expects pixel rate adjusted by deep color ratio)*/
1012 bp_pc_params.controller_id = pix_clk_params->controller_id;
1013 bp_pc_params.pll_id = clock_source->id;
1014 bp_pc_params.target_pixel_clock_100hz = pll_settings->actual_pix_clk_100hz;
1015 bp_pc_params.encoder_object_id = pix_clk_params->encoder_object_id;
1016 bp_pc_params.signal_type = pix_clk_params->signal_type;
1017
1018 // Make sure we send the correct color depth to DMUB for HDMI
1019 if (pix_clk_params->signal_type == SIGNAL_TYPE_HDMI_TYPE_A) {
1020 switch (pix_clk_params->color_depth) {
1021 case COLOR_DEPTH_888:
1022 bp_pc_colour_depth = TRANSMITTER_COLOR_DEPTH_24;
1023 break;
1024 case COLOR_DEPTH_101010:
1025 bp_pc_colour_depth = TRANSMITTER_COLOR_DEPTH_30;
1026 break;
1027 case COLOR_DEPTH_121212:
1028 bp_pc_colour_depth = TRANSMITTER_COLOR_DEPTH_36;
1029 break;
1030 case COLOR_DEPTH_161616:
1031 bp_pc_colour_depth = TRANSMITTER_COLOR_DEPTH_48;
1032 break;
1033 default:
1034 bp_pc_colour_depth = TRANSMITTER_COLOR_DEPTH_24;
1035 break;
1036 }
1037 bp_pc_params.color_depth = bp_pc_colour_depth;
1038 }
1039
1040 if (clock_source->id != CLOCK_SOURCE_ID_DP_DTO) {
1041 bp_pc_params.flags.SET_GENLOCK_REF_DIV_SRC =
1042 pll_settings->use_external_clk;
1043 bp_pc_params.flags.SET_XTALIN_REF_SRC =
1044 !pll_settings->use_external_clk;
1045 if (pix_clk_params->flags.SUPPORT_YCBCR420) {
1046 bp_pc_params.flags.SUPPORT_YUV_420 = 1;
1047 }
1048 }
1049 if (clk_src->bios->funcs->set_pixel_clock(
1050 clk_src->bios, &bp_pc_params) != BP_RESULT_OK)
1051 return false;
1052 /* Resync deep color DTO */
1053 if (clock_source->id != CLOCK_SOURCE_ID_DP_DTO)
1054 dce112_program_pixel_clk_resync(clk_src,
1055 pix_clk_params->signal_type,
1056 pix_clk_params->color_depth,
1057 pix_clk_params->flags.SUPPORT_YCBCR420);
1058 }
1059
1060 return true;
1061}
1062
1063static bool dce110_clock_source_power_down(
1064 struct clock_source *clk_src)
1065{
1066 struct dce110_clk_src *dce110_clk_src = TO_DCE110_CLK_SRC(clk_src);
1067 enum bp_result bp_result;
1068 struct bp_pixel_clock_parameters bp_pixel_clock_params = {0};
1069
1070 if (clk_src->dp_clk_src)
1071 return true;
1072
1073 /* If Pixel Clock is 0 it means Power Down Pll*/
1074 bp_pixel_clock_params.controller_id = CONTROLLER_ID_UNDEFINED;
1075 bp_pixel_clock_params.pll_id = clk_src->id;
1076 bp_pixel_clock_params.flags.FORCE_PROGRAMMING_OF_PLL = 1;
1077
1078 /*Call ASICControl to process ATOMBIOS Exec table*/
1079 bp_result = dce110_clk_src->bios->funcs->set_pixel_clock(
1080 dce110_clk_src->bios,
1081 &bp_pixel_clock_params);
1082
1083 return bp_result == BP_RESULT_OK;
1084}
1085
1086static bool get_pixel_clk_frequency_100hz(
1087 const struct clock_source *clock_source,
1088 unsigned int inst,
1089 unsigned int *pixel_clk_khz)
1090{
1091 struct dce110_clk_src *clk_src = TO_DCE110_CLK_SRC(clock_source);
1092 unsigned int clock_hz = 0;
1093 unsigned int modulo_hz = 0;
1094 unsigned int dp_dto_ref_khz = clock_source->ctx->dc->clk_mgr->dprefclk_khz;
1095
1096 if (clock_source->ctx->dc->clk_mgr->dp_dto_source_clock_in_khz != 0)
1097 dp_dto_ref_khz = clock_source->ctx->dc->clk_mgr->dp_dto_source_clock_in_khz;
1098
1099 if (clock_source->id == CLOCK_SOURCE_ID_DP_DTO) {
1100 clock_hz = REG_READ(PHASE[inst]);
1101
1102 if (clock_source->ctx->dc->hwss.enable_vblanks_synchronization &&
1103 clock_source->ctx->dc->config.vblank_alignment_max_frame_time_diff > 0) {
1104 /* NOTE: In case VBLANK syncronization is enabled, MODULO may
1105 * not be programmed equal to DPREFCLK
1106 */
1107 modulo_hz = REG_READ(MODULO[inst]);
1108 if (modulo_hz)
1109 *pixel_clk_khz = div_u64((uint64_t)clock_hz*
1110 dp_dto_ref_khz*10,
1111 modulo_hz);
1112 else
1113 *pixel_clk_khz = 0;
1114 } else {
1115 /* NOTE: There is agreement with VBIOS here that MODULO is
1116 * programmed equal to DPREFCLK, in which case PHASE will be
1117 * equivalent to pixel clock.
1118 */
1119 *pixel_clk_khz = clock_hz / 100;
1120 }
1121 return true;
1122 }
1123
1124 return false;
1125}
1126
1127/* this table is use to find *1.001 and /1.001 pixel rates from non-precise pixel rate */
1128const struct pixel_rate_range_table_entry video_optimized_pixel_rates[] = {
1129 // /1.001 rates
1130 {25170, 25180, 25200, 1000, 1001}, //25.2MHz -> 25.17
1131 {59340, 59350, 59400, 1000, 1001}, //59.4Mhz -> 59.340
1132 {74170, 74180, 74250, 1000, 1001}, //74.25Mhz -> 74.1758
1133 {89910, 90000, 90000, 1000, 1001}, //90Mhz -> 89.91
1134 {125870, 125880, 126000, 1000, 1001}, //126Mhz -> 125.87
1135 {148350, 148360, 148500, 1000, 1001}, //148.5Mhz -> 148.3516
1136 {167830, 167840, 168000, 1000, 1001}, //168Mhz -> 167.83
1137 {222520, 222530, 222750, 1000, 1001}, //222.75Mhz -> 222.527
1138 {257140, 257150, 257400, 1000, 1001}, //257.4Mhz -> 257.1429
1139 {296700, 296710, 297000, 1000, 1001}, //297Mhz -> 296.7033
1140 {342850, 342860, 343200, 1000, 1001}, //343.2Mhz -> 342.857
1141 {395600, 395610, 396000, 1000, 1001}, //396Mhz -> 395.6
1142 {409090, 409100, 409500, 1000, 1001}, //409.5Mhz -> 409.091
1143 {445050, 445060, 445500, 1000, 1001}, //445.5Mhz -> 445.055
1144 {467530, 467540, 468000, 1000, 1001}, //468Mhz -> 467.5325
1145 {519230, 519240, 519750, 1000, 1001}, //519.75Mhz -> 519.231
1146 {525970, 525980, 526500, 1000, 1001}, //526.5Mhz -> 525.974
1147 {545450, 545460, 546000, 1000, 1001}, //546Mhz -> 545.455
1148 {593400, 593410, 594000, 1000, 1001}, //594Mhz -> 593.4066
1149 {623370, 623380, 624000, 1000, 1001}, //624Mhz -> 623.377
1150 {692300, 692310, 693000, 1000, 1001}, //693Mhz -> 692.308
1151 {701290, 701300, 702000, 1000, 1001}, //702Mhz -> 701.2987
1152 {791200, 791210, 792000, 1000, 1001}, //792Mhz -> 791.209
1153 {890100, 890110, 891000, 1000, 1001}, //891Mhz -> 890.1099
1154 {1186810, 1186820, 1188000, 1000, 1001},//1188Mhz -> 1186.8131
1155
1156 // *1.001 rates
1157 {27020, 27030, 27000, 1001, 1000}, //27Mhz
1158 {54050, 54060, 54000, 1001, 1000}, //54Mhz
1159 {108100, 108110, 108000, 1001, 1000},//108Mhz
1160};
1161
1162const struct pixel_rate_range_table_entry *look_up_in_video_optimized_rate_tlb(
1163 unsigned int pixel_rate_khz)
1164{
1165 int i;
1166
1167 for (i = 0; i < NUM_ELEMENTS(video_optimized_pixel_rates); i++) {
1168 const struct pixel_rate_range_table_entry *e = &video_optimized_pixel_rates[i];
1169
1170 if (e->range_min_khz <= pixel_rate_khz && pixel_rate_khz <= e->range_max_khz) {
1171 return e;
1172 }
1173 }
1174
1175 return NULL;
1176}
1177
1178static bool dcn20_program_pix_clk(
1179 struct clock_source *clock_source,
1180 struct pixel_clk_params *pix_clk_params,
1181 enum dp_link_encoding encoding,
1182 struct pll_settings *pll_settings)
1183{
1184 struct dce110_clk_src *clk_src = TO_DCE110_CLK_SRC(clock_source);
1185 unsigned int inst = pix_clk_params->controller_id - CONTROLLER_ID_D0;
1186
1187 dce112_program_pix_clk(clock_source, pix_clk_params, encoding, pll_settings);
1188
1189 if (clock_source->ctx->dc->hwss.enable_vblanks_synchronization &&
1190 clock_source->ctx->dc->config.vblank_alignment_max_frame_time_diff > 0) {
1191 /* NOTE: In case VBLANK syncronization is enabled,
1192 * we need to set modulo to default DPREFCLK first
1193 * dce112_program_pix_clk does not set default DPREFCLK
1194 */
1195 REG_WRITE(MODULO[inst],
1196 clock_source->ctx->dc->clk_mgr->dprefclk_khz*1000);
1197 }
1198 return true;
1199}
1200
1201static bool dcn20_override_dp_pix_clk(
1202 struct clock_source *clock_source,
1203 unsigned int inst,
1204 unsigned int pixel_clk,
1205 unsigned int ref_clk)
1206{
1207 struct dce110_clk_src *clk_src = TO_DCE110_CLK_SRC(clock_source);
1208
1209 REG_UPDATE(PIXEL_RATE_CNTL[inst], DP_DTO0_ENABLE, 0);
1210 REG_WRITE(PHASE[inst], pixel_clk);
1211 REG_WRITE(MODULO[inst], ref_clk);
1212 REG_UPDATE(PIXEL_RATE_CNTL[inst], DP_DTO0_ENABLE, 1);
1213 return true;
1214}
1215
1216static const struct clock_source_funcs dcn20_clk_src_funcs = {
1217 .cs_power_down = dce110_clock_source_power_down,
1218 .program_pix_clk = dcn20_program_pix_clk,
1219 .get_pix_clk_dividers = dce112_get_pix_clk_dividers,
1220 .get_pixel_clk_frequency_100hz = get_pixel_clk_frequency_100hz,
1221 .override_dp_pix_clk = dcn20_override_dp_pix_clk
1222};
1223
1224static bool dcn3_program_pix_clk(
1225 struct clock_source *clock_source,
1226 struct pixel_clk_params *pix_clk_params,
1227 enum dp_link_encoding encoding,
1228 struct pll_settings *pll_settings)
1229{
1230 struct dce110_clk_src *clk_src = TO_DCE110_CLK_SRC(clock_source);
1231 unsigned int inst = pix_clk_params->controller_id - CONTROLLER_ID_D0;
1232 unsigned int dp_dto_ref_khz = clock_source->ctx->dc->clk_mgr->dprefclk_khz;
1233 const struct pixel_rate_range_table_entry *e =
1234 look_up_in_video_optimized_rate_tlb(pix_clk_params->requested_pix_clk_100hz / 10);
1235
1236 // For these signal types Driver to program DP_DTO without calling VBIOS Command table
1237 if (dc_is_dp_signal(pix_clk_params->signal_type)) {
1238 if (e) {
1239 /* Set DTO values: phase = target clock, modulo = reference clock*/
1240 REG_WRITE(PHASE[inst], e->target_pixel_rate_khz * e->mult_factor);
1241 REG_WRITE(MODULO[inst], dp_dto_ref_khz * e->div_factor);
1242 } else {
1243 /* Set DTO values: phase = target clock, modulo = reference clock*/
1244 REG_WRITE(PHASE[inst], pll_settings->actual_pix_clk_100hz * 100);
1245 REG_WRITE(MODULO[inst], dp_dto_ref_khz * 1000);
1246 }
1247 /* Enable DTO */
1248 if (clk_src->cs_mask->PIPE0_DTO_SRC_SEL)
1249 REG_UPDATE_2(PIXEL_RATE_CNTL[inst],
1250 DP_DTO0_ENABLE, 1,
1251 PIPE0_DTO_SRC_SEL, 1);
1252 else
1253 REG_UPDATE(PIXEL_RATE_CNTL[inst],
1254 DP_DTO0_ENABLE, 1);
1255 } else
1256 // For other signal types(HDMI_TYPE_A, DVI) Driver still to call VBIOS Command table
1257 dce112_program_pix_clk(clock_source, pix_clk_params, encoding, pll_settings);
1258
1259 return true;
1260}
1261
1262static uint32_t dcn3_get_pix_clk_dividers(
1263 struct clock_source *cs,
1264 struct pixel_clk_params *pix_clk_params,
1265 struct pll_settings *pll_settings)
1266{
1267 unsigned long long actual_pix_clk_100Hz = pix_clk_params ? pix_clk_params->requested_pix_clk_100hz : 0;
1268 struct dce110_clk_src *clk_src = TO_DCE110_CLK_SRC(cs);
1269
1270 DC_LOGGER_INIT();
1271
1272 if (pix_clk_params == NULL || pll_settings == NULL
1273 || pix_clk_params->requested_pix_clk_100hz == 0) {
1274 DC_LOG_ERROR(
1275 "%s: Invalid parameters!!\n", __func__);
1276 return -1;
1277 }
1278
1279 memset(pll_settings, 0, sizeof(*pll_settings));
1280 /* Adjust for HDMI Type A deep color */
1281 if (pix_clk_params->signal_type == SIGNAL_TYPE_HDMI_TYPE_A) {
1282 switch (pix_clk_params->color_depth) {
1283 case COLOR_DEPTH_101010:
1284 actual_pix_clk_100Hz = (actual_pix_clk_100Hz * 5) >> 2;
1285 break;
1286 case COLOR_DEPTH_121212:
1287 actual_pix_clk_100Hz = (actual_pix_clk_100Hz * 6) >> 2;
1288 break;
1289 case COLOR_DEPTH_161616:
1290 actual_pix_clk_100Hz = actual_pix_clk_100Hz * 2;
1291 break;
1292 default:
1293 break;
1294 }
1295 }
1296 pll_settings->actual_pix_clk_100hz = (unsigned int) actual_pix_clk_100Hz;
1297 pll_settings->adjusted_pix_clk_100hz = (unsigned int) actual_pix_clk_100Hz;
1298 pll_settings->calculated_pix_clk_100hz = (unsigned int) actual_pix_clk_100Hz;
1299
1300 return 0;
1301}
1302
1303static const struct clock_source_funcs dcn3_clk_src_funcs = {
1304 .cs_power_down = dce110_clock_source_power_down,
1305 .program_pix_clk = dcn3_program_pix_clk,
1306 .get_pix_clk_dividers = dcn3_get_pix_clk_dividers,
1307 .get_pixel_clk_frequency_100hz = get_pixel_clk_frequency_100hz
1308};
1309
1310static const struct clock_source_funcs dcn31_clk_src_funcs = {
1311 .cs_power_down = dce110_clock_source_power_down,
1312 .program_pix_clk = dcn31_program_pix_clk,
1313 .get_pix_clk_dividers = dcn3_get_pix_clk_dividers,
1314 .get_pixel_clk_frequency_100hz = get_pixel_clk_frequency_100hz
1315};
1316
1317/*****************************************/
1318/* Constructor */
1319/*****************************************/
1320
1321static const struct clock_source_funcs dce112_clk_src_funcs = {
1322 .cs_power_down = dce110_clock_source_power_down,
1323 .program_pix_clk = dce112_program_pix_clk,
1324 .get_pix_clk_dividers = dce112_get_pix_clk_dividers,
1325 .get_pixel_clk_frequency_100hz = get_pixel_clk_frequency_100hz
1326};
1327static const struct clock_source_funcs dce110_clk_src_funcs = {
1328 .cs_power_down = dce110_clock_source_power_down,
1329 .program_pix_clk = dce110_program_pix_clk,
1330 .get_pix_clk_dividers = dce110_get_pix_clk_dividers,
1331 .get_pixel_clk_frequency_100hz = get_pixel_clk_frequency_100hz
1332};
1333
1334
1335static void get_ss_info_from_atombios(
1336 struct dce110_clk_src *clk_src,
1337 enum as_signal_type as_signal,
1338 struct spread_spectrum_data *spread_spectrum_data[],
1339 uint32_t *ss_entries_num)
1340{
1341 enum bp_result bp_result = BP_RESULT_FAILURE;
1342 struct spread_spectrum_info *ss_info;
1343 struct spread_spectrum_data *ss_data;
1344 struct spread_spectrum_info *ss_info_cur;
1345 struct spread_spectrum_data *ss_data_cur;
1346 uint32_t i;
1347 DC_LOGGER_INIT();
1348 if (ss_entries_num == NULL) {
1349 DC_LOG_SYNC(
1350 "Invalid entry !!!\n");
1351 return;
1352 }
1353 if (spread_spectrum_data == NULL) {
1354 DC_LOG_SYNC(
1355 "Invalid array pointer!!!\n");
1356 return;
1357 }
1358
1359 spread_spectrum_data[0] = NULL;
1360 *ss_entries_num = 0;
1361
1362 *ss_entries_num = clk_src->bios->funcs->get_ss_entry_number(
1363 clk_src->bios,
1364 as_signal);
1365
1366 if (*ss_entries_num == 0)
1367 return;
1368
1369 ss_info = kcalloc(*ss_entries_num,
1370 sizeof(struct spread_spectrum_info),
1371 GFP_KERNEL);
1372 ss_info_cur = ss_info;
1373 if (ss_info == NULL)
1374 return;
1375
1376 ss_data = kcalloc(*ss_entries_num,
1377 sizeof(struct spread_spectrum_data),
1378 GFP_KERNEL);
1379 if (ss_data == NULL)
1380 goto out_free_info;
1381
1382 for (i = 0, ss_info_cur = ss_info;
1383 i < (*ss_entries_num);
1384 ++i, ++ss_info_cur) {
1385
1386 bp_result = clk_src->bios->funcs->get_spread_spectrum_info(
1387 clk_src->bios,
1388 as_signal,
1389 i,
1390 ss_info_cur);
1391
1392 if (bp_result != BP_RESULT_OK)
1393 goto out_free_data;
1394 }
1395
1396 for (i = 0, ss_info_cur = ss_info, ss_data_cur = ss_data;
1397 i < (*ss_entries_num);
1398 ++i, ++ss_info_cur, ++ss_data_cur) {
1399
1400 if (ss_info_cur->type.STEP_AND_DELAY_INFO != false) {
1401 DC_LOG_SYNC(
1402 "Invalid ATOMBIOS SS Table!!!\n");
1403 goto out_free_data;
1404 }
1405
1406 /* for HDMI check SS percentage,
1407 * if it is > 6 (0.06%), the ATOMBIOS table info is invalid*/
1408 if (as_signal == AS_SIGNAL_TYPE_HDMI
1409 && ss_info_cur->spread_spectrum_percentage > 6){
1410 /* invalid input, do nothing */
1411 DC_LOG_SYNC(
1412 "Invalid SS percentage ");
1413 DC_LOG_SYNC(
1414 "for HDMI in ATOMBIOS info Table!!!\n");
1415 continue;
1416 }
1417 if (ss_info_cur->spread_percentage_divider == 1000) {
1418 /* Keep previous precision from ATOMBIOS for these
1419 * in case new precision set by ATOMBIOS for these
1420 * (otherwise all code in DCE specific classes
1421 * for all previous ASICs would need
1422 * to be updated for SS calculations,
1423 * Audio SS compensation and DP DTO SS compensation
1424 * which assumes fixed SS percentage Divider = 100)*/
1425 ss_info_cur->spread_spectrum_percentage /= 10;
1426 ss_info_cur->spread_percentage_divider = 100;
1427 }
1428
1429 ss_data_cur->freq_range_khz = ss_info_cur->target_clock_range;
1430 ss_data_cur->percentage =
1431 ss_info_cur->spread_spectrum_percentage;
1432 ss_data_cur->percentage_divider =
1433 ss_info_cur->spread_percentage_divider;
1434 ss_data_cur->modulation_freq_hz =
1435 ss_info_cur->spread_spectrum_range;
1436
1437 if (ss_info_cur->type.CENTER_MODE)
1438 ss_data_cur->flags.CENTER_SPREAD = 1;
1439
1440 if (ss_info_cur->type.EXTERNAL)
1441 ss_data_cur->flags.EXTERNAL_SS = 1;
1442
1443 }
1444
1445 *spread_spectrum_data = ss_data;
1446 kfree(ss_info);
1447 return;
1448
1449out_free_data:
1450 kfree(ss_data);
1451 *ss_entries_num = 0;
1452out_free_info:
1453 kfree(ss_info);
1454}
1455
1456static void ss_info_from_atombios_create(
1457 struct dce110_clk_src *clk_src)
1458{
1459 get_ss_info_from_atombios(
1460 clk_src,
1461 AS_SIGNAL_TYPE_DISPLAY_PORT,
1462 &clk_src->dp_ss_params,
1463 &clk_src->dp_ss_params_cnt);
1464 get_ss_info_from_atombios(
1465 clk_src,
1466 AS_SIGNAL_TYPE_HDMI,
1467 &clk_src->hdmi_ss_params,
1468 &clk_src->hdmi_ss_params_cnt);
1469 get_ss_info_from_atombios(
1470 clk_src,
1471 AS_SIGNAL_TYPE_DVI,
1472 &clk_src->dvi_ss_params,
1473 &clk_src->dvi_ss_params_cnt);
1474 get_ss_info_from_atombios(
1475 clk_src,
1476 AS_SIGNAL_TYPE_LVDS,
1477 &clk_src->lvds_ss_params,
1478 &clk_src->lvds_ss_params_cnt);
1479}
1480
1481static bool calc_pll_max_vco_construct(
1482 struct calc_pll_clock_source *calc_pll_cs,
1483 struct calc_pll_clock_source_init_data *init_data)
1484{
1485 uint32_t i;
1486 struct dc_firmware_info *fw_info;
1487 if (calc_pll_cs == NULL ||
1488 init_data == NULL ||
1489 init_data->bp == NULL)
1490 return false;
1491
1492 if (!init_data->bp->fw_info_valid)
1493 return false;
1494
1495 fw_info = &init_data->bp->fw_info;
1496 calc_pll_cs->ctx = init_data->ctx;
1497 calc_pll_cs->ref_freq_khz = fw_info->pll_info.crystal_frequency;
1498 calc_pll_cs->min_vco_khz =
1499 fw_info->pll_info.min_output_pxl_clk_pll_frequency;
1500 calc_pll_cs->max_vco_khz =
1501 fw_info->pll_info.max_output_pxl_clk_pll_frequency;
1502
1503 if (init_data->max_override_input_pxl_clk_pll_freq_khz != 0)
1504 calc_pll_cs->max_pll_input_freq_khz =
1505 init_data->max_override_input_pxl_clk_pll_freq_khz;
1506 else
1507 calc_pll_cs->max_pll_input_freq_khz =
1508 fw_info->pll_info.max_input_pxl_clk_pll_frequency;
1509
1510 if (init_data->min_override_input_pxl_clk_pll_freq_khz != 0)
1511 calc_pll_cs->min_pll_input_freq_khz =
1512 init_data->min_override_input_pxl_clk_pll_freq_khz;
1513 else
1514 calc_pll_cs->min_pll_input_freq_khz =
1515 fw_info->pll_info.min_input_pxl_clk_pll_frequency;
1516
1517 calc_pll_cs->min_pix_clock_pll_post_divider =
1518 init_data->min_pix_clk_pll_post_divider;
1519 calc_pll_cs->max_pix_clock_pll_post_divider =
1520 init_data->max_pix_clk_pll_post_divider;
1521 calc_pll_cs->min_pll_ref_divider =
1522 init_data->min_pll_ref_divider;
1523 calc_pll_cs->max_pll_ref_divider =
1524 init_data->max_pll_ref_divider;
1525
1526 if (init_data->num_fract_fb_divider_decimal_point == 0 ||
1527 init_data->num_fract_fb_divider_decimal_point_precision >
1528 init_data->num_fract_fb_divider_decimal_point) {
1529 DC_LOG_ERROR(
1530 "The dec point num or precision is incorrect!");
1531 return false;
1532 }
1533 if (init_data->num_fract_fb_divider_decimal_point_precision == 0) {
1534 DC_LOG_ERROR(
1535 "Incorrect fract feedback divider precision num!");
1536 return false;
1537 }
1538
1539 calc_pll_cs->fract_fb_divider_decimal_points_num =
1540 init_data->num_fract_fb_divider_decimal_point;
1541 calc_pll_cs->fract_fb_divider_precision =
1542 init_data->num_fract_fb_divider_decimal_point_precision;
1543 calc_pll_cs->fract_fb_divider_factor = 1;
1544 for (i = 0; i < calc_pll_cs->fract_fb_divider_decimal_points_num; ++i)
1545 calc_pll_cs->fract_fb_divider_factor *= 10;
1546
1547 calc_pll_cs->fract_fb_divider_precision_factor = 1;
1548 for (
1549 i = 0;
1550 i < (calc_pll_cs->fract_fb_divider_decimal_points_num -
1551 calc_pll_cs->fract_fb_divider_precision);
1552 ++i)
1553 calc_pll_cs->fract_fb_divider_precision_factor *= 10;
1554
1555 return true;
1556}
1557
1558bool dce110_clk_src_construct(
1559 struct dce110_clk_src *clk_src,
1560 struct dc_context *ctx,
1561 struct dc_bios *bios,
1562 enum clock_source_id id,
1563 const struct dce110_clk_src_regs *regs,
1564 const struct dce110_clk_src_shift *cs_shift,
1565 const struct dce110_clk_src_mask *cs_mask)
1566{
1567 struct calc_pll_clock_source_init_data calc_pll_cs_init_data_hdmi;
1568 struct calc_pll_clock_source_init_data calc_pll_cs_init_data;
1569
1570 clk_src->base.ctx = ctx;
1571 clk_src->bios = bios;
1572 clk_src->base.id = id;
1573 clk_src->base.funcs = &dce110_clk_src_funcs;
1574
1575 clk_src->regs = regs;
1576 clk_src->cs_shift = cs_shift;
1577 clk_src->cs_mask = cs_mask;
1578
1579 if (!clk_src->bios->fw_info_valid) {
1580 ASSERT_CRITICAL(false);
1581 goto unexpected_failure;
1582 }
1583
1584 clk_src->ext_clk_khz = clk_src->bios->fw_info.external_clock_source_frequency_for_dp;
1585
1586 /* structure normally used with PLL ranges from ATOMBIOS; DS on by default */
1587 calc_pll_cs_init_data.bp = bios;
1588 calc_pll_cs_init_data.min_pix_clk_pll_post_divider = 1;
1589 calc_pll_cs_init_data.max_pix_clk_pll_post_divider =
1590 clk_src->cs_mask->PLL_POST_DIV_PIXCLK;
1591 calc_pll_cs_init_data.min_pll_ref_divider = 1;
1592 calc_pll_cs_init_data.max_pll_ref_divider = clk_src->cs_mask->PLL_REF_DIV;
1593 /* when 0 use minInputPxlClkPLLFrequencyInKHz from firmwareInfo*/
1594 calc_pll_cs_init_data.min_override_input_pxl_clk_pll_freq_khz = 0;
1595 /* when 0 use maxInputPxlClkPLLFrequencyInKHz from firmwareInfo*/
1596 calc_pll_cs_init_data.max_override_input_pxl_clk_pll_freq_khz = 0;
1597 /*numberOfFractFBDividerDecimalPoints*/
1598 calc_pll_cs_init_data.num_fract_fb_divider_decimal_point =
1599 FRACT_FB_DIVIDER_DEC_POINTS_MAX_NUM;
1600 /*number of decimal point to round off for fractional feedback divider value*/
1601 calc_pll_cs_init_data.num_fract_fb_divider_decimal_point_precision =
1602 FRACT_FB_DIVIDER_DEC_POINTS_MAX_NUM;
1603 calc_pll_cs_init_data.ctx = ctx;
1604
1605 /*structure for HDMI, no SS or SS% <= 0.06% for 27 MHz Ref clock */
1606 calc_pll_cs_init_data_hdmi.bp = bios;
1607 calc_pll_cs_init_data_hdmi.min_pix_clk_pll_post_divider = 1;
1608 calc_pll_cs_init_data_hdmi.max_pix_clk_pll_post_divider =
1609 clk_src->cs_mask->PLL_POST_DIV_PIXCLK;
1610 calc_pll_cs_init_data_hdmi.min_pll_ref_divider = 1;
1611 calc_pll_cs_init_data_hdmi.max_pll_ref_divider = clk_src->cs_mask->PLL_REF_DIV;
1612 /* when 0 use minInputPxlClkPLLFrequencyInKHz from firmwareInfo*/
1613 calc_pll_cs_init_data_hdmi.min_override_input_pxl_clk_pll_freq_khz = 13500;
1614 /* when 0 use maxInputPxlClkPLLFrequencyInKHz from firmwareInfo*/
1615 calc_pll_cs_init_data_hdmi.max_override_input_pxl_clk_pll_freq_khz = 27000;
1616 /*numberOfFractFBDividerDecimalPoints*/
1617 calc_pll_cs_init_data_hdmi.num_fract_fb_divider_decimal_point =
1618 FRACT_FB_DIVIDER_DEC_POINTS_MAX_NUM;
1619 /*number of decimal point to round off for fractional feedback divider value*/
1620 calc_pll_cs_init_data_hdmi.num_fract_fb_divider_decimal_point_precision =
1621 FRACT_FB_DIVIDER_DEC_POINTS_MAX_NUM;
1622 calc_pll_cs_init_data_hdmi.ctx = ctx;
1623
1624 clk_src->ref_freq_khz = clk_src->bios->fw_info.pll_info.crystal_frequency;
1625
1626 if (clk_src->base.id == CLOCK_SOURCE_ID_EXTERNAL)
1627 return true;
1628
1629 /* PLL only from here on */
1630 ss_info_from_atombios_create(clk_src);
1631
1632 if (!calc_pll_max_vco_construct(
1633 &clk_src->calc_pll,
1634 &calc_pll_cs_init_data)) {
1635 ASSERT_CRITICAL(false);
1636 goto unexpected_failure;
1637 }
1638
1639
1640 calc_pll_cs_init_data_hdmi.
1641 min_override_input_pxl_clk_pll_freq_khz = clk_src->ref_freq_khz/2;
1642 calc_pll_cs_init_data_hdmi.
1643 max_override_input_pxl_clk_pll_freq_khz = clk_src->ref_freq_khz;
1644
1645
1646 if (!calc_pll_max_vco_construct(
1647 &clk_src->calc_pll_hdmi, &calc_pll_cs_init_data_hdmi)) {
1648 ASSERT_CRITICAL(false);
1649 goto unexpected_failure;
1650 }
1651
1652 return true;
1653
1654unexpected_failure:
1655 return false;
1656}
1657
1658bool dce112_clk_src_construct(
1659 struct dce110_clk_src *clk_src,
1660 struct dc_context *ctx,
1661 struct dc_bios *bios,
1662 enum clock_source_id id,
1663 const struct dce110_clk_src_regs *regs,
1664 const struct dce110_clk_src_shift *cs_shift,
1665 const struct dce110_clk_src_mask *cs_mask)
1666{
1667 clk_src->base.ctx = ctx;
1668 clk_src->bios = bios;
1669 clk_src->base.id = id;
1670 clk_src->base.funcs = &dce112_clk_src_funcs;
1671
1672 clk_src->regs = regs;
1673 clk_src->cs_shift = cs_shift;
1674 clk_src->cs_mask = cs_mask;
1675
1676 if (!clk_src->bios->fw_info_valid) {
1677 ASSERT_CRITICAL(false);
1678 return false;
1679 }
1680
1681 clk_src->ext_clk_khz = clk_src->bios->fw_info.external_clock_source_frequency_for_dp;
1682
1683 return true;
1684}
1685
1686bool dcn20_clk_src_construct(
1687 struct dce110_clk_src *clk_src,
1688 struct dc_context *ctx,
1689 struct dc_bios *bios,
1690 enum clock_source_id id,
1691 const struct dce110_clk_src_regs *regs,
1692 const struct dce110_clk_src_shift *cs_shift,
1693 const struct dce110_clk_src_mask *cs_mask)
1694{
1695 bool ret = dce112_clk_src_construct(clk_src, ctx, bios, id, regs, cs_shift, cs_mask);
1696
1697 clk_src->base.funcs = &dcn20_clk_src_funcs;
1698
1699 return ret;
1700}
1701
1702bool dcn3_clk_src_construct(
1703 struct dce110_clk_src *clk_src,
1704 struct dc_context *ctx,
1705 struct dc_bios *bios,
1706 enum clock_source_id id,
1707 const struct dce110_clk_src_regs *regs,
1708 const struct dce110_clk_src_shift *cs_shift,
1709 const struct dce110_clk_src_mask *cs_mask)
1710{
1711 bool ret = dce112_clk_src_construct(clk_src, ctx, bios, id, regs, cs_shift, cs_mask);
1712
1713 clk_src->base.funcs = &dcn3_clk_src_funcs;
1714
1715 return ret;
1716}
1717
1718bool dcn31_clk_src_construct(
1719 struct dce110_clk_src *clk_src,
1720 struct dc_context *ctx,
1721 struct dc_bios *bios,
1722 enum clock_source_id id,
1723 const struct dce110_clk_src_regs *regs,
1724 const struct dce110_clk_src_shift *cs_shift,
1725 const struct dce110_clk_src_mask *cs_mask)
1726{
1727 bool ret = dce112_clk_src_construct(clk_src, ctx, bios, id, regs, cs_shift, cs_mask);
1728
1729 clk_src->base.funcs = &dcn31_clk_src_funcs;
1730
1731 return ret;
1732}
1733
1734bool dcn301_clk_src_construct(
1735 struct dce110_clk_src *clk_src,
1736 struct dc_context *ctx,
1737 struct dc_bios *bios,
1738 enum clock_source_id id,
1739 const struct dce110_clk_src_regs *regs,
1740 const struct dce110_clk_src_shift *cs_shift,
1741 const struct dce110_clk_src_mask *cs_mask)
1742{
1743 bool ret = dce112_clk_src_construct(clk_src, ctx, bios, id, regs, cs_shift, cs_mask);
1744
1745 clk_src->base.funcs = &dcn3_clk_src_funcs;
1746
1747 return ret;
1748}