1 /*
2 * Copyright 2012-16 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 "dce_clocks.h"
27 #include "dm_services.h"
28 #include "reg_helper.h"
29 #include "fixed31_32.h"
30 #include "bios_parser_interface.h"
31 #include "dc.h"
32 #include "dmcu.h"
33 #if defined(CONFIG_DRM_AMD_DC_DCN1_0)
34 #include "dcn_calcs.h"
35 #endif
36 #include "core_types.h"
37 #include "dc_types.h"
38 #include "dal_asic_id.h"
39
40 #define TO_DCE_CLOCKS(clocks)\
41 container_of(clocks, struct dce_dccg, base)
42
43 #define REG(reg) \
44 (clk_dce->regs->reg)
45
46 #undef FN
47 #define FN(reg_name, field_name) \
48 clk_dce->clk_shift->field_name, clk_dce->clk_mask->field_name
49
50 #define CTX \
51 clk_dce->base.ctx
52 #define DC_LOGGER \
53 clk->ctx->logger
54
55 /* Max clock values for each state indexed by "enum clocks_state": */
56 static const struct state_dependent_clocks dce80_max_clks_by_state[] = {
57 /* ClocksStateInvalid - should not be used */
58 { .display_clk_khz = 0, .pixel_clk_khz = 0 },
59 /* ClocksStateUltraLow - not expected to be used for DCE 8.0 */
60 { .display_clk_khz = 0, .pixel_clk_khz = 0 },
61 /* ClocksStateLow */
62 { .display_clk_khz = 352000, .pixel_clk_khz = 330000},
63 /* ClocksStateNominal */
64 { .display_clk_khz = 600000, .pixel_clk_khz = 400000 },
65 /* ClocksStatePerformance */
66 { .display_clk_khz = 600000, .pixel_clk_khz = 400000 } };
67
68 static const struct state_dependent_clocks dce110_max_clks_by_state[] = {
69 /*ClocksStateInvalid - should not be used*/
70 { .display_clk_khz = 0, .pixel_clk_khz = 0 },
71 /*ClocksStateUltraLow - currently by HW design team not supposed to be used*/
72 { .display_clk_khz = 352000, .pixel_clk_khz = 330000 },
73 /*ClocksStateLow*/
74 { .display_clk_khz = 352000, .pixel_clk_khz = 330000 },
75 /*ClocksStateNominal*/
76 { .display_clk_khz = 467000, .pixel_clk_khz = 400000 },
77 /*ClocksStatePerformance*/
78 { .display_clk_khz = 643000, .pixel_clk_khz = 400000 } };
79
80 static const struct state_dependent_clocks dce112_max_clks_by_state[] = {
81 /*ClocksStateInvalid - should not be used*/
82 { .display_clk_khz = 0, .pixel_clk_khz = 0 },
83 /*ClocksStateUltraLow - currently by HW design team not supposed to be used*/
84 { .display_clk_khz = 389189, .pixel_clk_khz = 346672 },
85 /*ClocksStateLow*/
86 { .display_clk_khz = 459000, .pixel_clk_khz = 400000 },
87 /*ClocksStateNominal*/
88 { .display_clk_khz = 667000, .pixel_clk_khz = 600000 },
89 /*ClocksStatePerformance*/
90 { .display_clk_khz = 1132000, .pixel_clk_khz = 600000 } };
91
92 static const struct state_dependent_clocks dce120_max_clks_by_state[] = {
93 /*ClocksStateInvalid - should not be used*/
94 { .display_clk_khz = 0, .pixel_clk_khz = 0 },
95 /*ClocksStateUltraLow - currently by HW design team not supposed to be used*/
96 { .display_clk_khz = 0, .pixel_clk_khz = 0 },
97 /*ClocksStateLow*/
98 { .display_clk_khz = 460000, .pixel_clk_khz = 400000 },
99 /*ClocksStateNominal*/
100 { .display_clk_khz = 670000, .pixel_clk_khz = 600000 },
101 /*ClocksStatePerformance*/
102 { .display_clk_khz = 1133000, .pixel_clk_khz = 600000 } };
103
104 /* Starting DID for each range */
105 enum dentist_base_divider_id {
106 DENTIST_BASE_DID_1 = 0x08,
107 DENTIST_BASE_DID_2 = 0x40,
108 DENTIST_BASE_DID_3 = 0x60,
109 DENTIST_BASE_DID_4 = 0x7e,
110 DENTIST_MAX_DID = 0x7f
111 };
112
113 /* Starting point and step size for each divider range.*/
114 enum dentist_divider_range {
115 DENTIST_DIVIDER_RANGE_1_START = 8, /* 2.00 */
116 DENTIST_DIVIDER_RANGE_1_STEP = 1, /* 0.25 */
117 DENTIST_DIVIDER_RANGE_2_START = 64, /* 16.00 */
118 DENTIST_DIVIDER_RANGE_2_STEP = 2, /* 0.50 */
119 DENTIST_DIVIDER_RANGE_3_START = 128, /* 32.00 */
120 DENTIST_DIVIDER_RANGE_3_STEP = 4, /* 1.00 */
121 DENTIST_DIVIDER_RANGE_4_START = 248, /* 62.00 */
122 DENTIST_DIVIDER_RANGE_4_STEP = 264, /* 66.00 */
123 DENTIST_DIVIDER_RANGE_SCALE_FACTOR = 4
124 };
125
dentist_get_divider_from_did(int did)126 static int dentist_get_divider_from_did(int did)
127 {
128 if (did < DENTIST_BASE_DID_1)
129 did = DENTIST_BASE_DID_1;
130 if (did > DENTIST_MAX_DID)
131 did = DENTIST_MAX_DID;
132
133 if (did < DENTIST_BASE_DID_2) {
134 return DENTIST_DIVIDER_RANGE_1_START + DENTIST_DIVIDER_RANGE_1_STEP
135 * (did - DENTIST_BASE_DID_1);
136 } else if (did < DENTIST_BASE_DID_3) {
137 return DENTIST_DIVIDER_RANGE_2_START + DENTIST_DIVIDER_RANGE_2_STEP
138 * (did - DENTIST_BASE_DID_2);
139 } else if (did < DENTIST_BASE_DID_4) {
140 return DENTIST_DIVIDER_RANGE_3_START + DENTIST_DIVIDER_RANGE_3_STEP
141 * (did - DENTIST_BASE_DID_3);
142 } else {
143 return DENTIST_DIVIDER_RANGE_4_START + DENTIST_DIVIDER_RANGE_4_STEP
144 * (did - DENTIST_BASE_DID_4);
145 }
146 }
147
148 /* SW will adjust DP REF Clock average value for all purposes
149 * (DP DTO / DP Audio DTO and DP GTC)
150 if clock is spread for all cases:
151 -if SS enabled on DP Ref clock and HW de-spreading enabled with SW
152 calculations for DS_INCR/DS_MODULO (this is planned to be default case)
153 -if SS enabled on DP Ref clock and HW de-spreading enabled with HW
154 calculations (not planned to be used, but average clock should still
155 be valid)
156 -if SS enabled on DP Ref clock and HW de-spreading disabled
157 (should not be case with CIK) then SW should program all rates
158 generated according to average value (case as with previous ASICs)
159 */
dccg_adjust_dp_ref_freq_for_ss(struct dce_dccg * clk_dce,int dp_ref_clk_khz)160 static int dccg_adjust_dp_ref_freq_for_ss(struct dce_dccg *clk_dce, int dp_ref_clk_khz)
161 {
162 if (clk_dce->ss_on_dprefclk && clk_dce->dprefclk_ss_divider != 0) {
163 struct fixed31_32 ss_percentage = dc_fixpt_div_int(
164 dc_fixpt_from_fraction(clk_dce->dprefclk_ss_percentage,
165 clk_dce->dprefclk_ss_divider), 200);
166 struct fixed31_32 adj_dp_ref_clk_khz;
167
168 ss_percentage = dc_fixpt_sub(dc_fixpt_one, ss_percentage);
169 adj_dp_ref_clk_khz = dc_fixpt_mul_int(ss_percentage, dp_ref_clk_khz);
170 dp_ref_clk_khz = dc_fixpt_floor(adj_dp_ref_clk_khz);
171 }
172 return dp_ref_clk_khz;
173 }
174
dce_get_dp_ref_freq_khz(struct dccg * clk)175 static int dce_get_dp_ref_freq_khz(struct dccg *clk)
176 {
177 struct dce_dccg *clk_dce = TO_DCE_CLOCKS(clk);
178 int dprefclk_wdivider;
179 int dprefclk_src_sel;
180 int dp_ref_clk_khz = 600000;
181 int target_div;
182
183 /* ASSERT DP Reference Clock source is from DFS*/
184 REG_GET(DPREFCLK_CNTL, DPREFCLK_SRC_SEL, &dprefclk_src_sel);
185 ASSERT(dprefclk_src_sel == 0);
186
187 /* Read the mmDENTIST_DISPCLK_CNTL to get the currently
188 * programmed DID DENTIST_DPREFCLK_WDIVIDER*/
189 REG_GET(DENTIST_DISPCLK_CNTL, DENTIST_DPREFCLK_WDIVIDER, &dprefclk_wdivider);
190
191 /* Convert DENTIST_DPREFCLK_WDIVIDERto actual divider*/
192 target_div = dentist_get_divider_from_did(dprefclk_wdivider);
193
194 /* Calculate the current DFS clock, in kHz.*/
195 dp_ref_clk_khz = (DENTIST_DIVIDER_RANGE_SCALE_FACTOR
196 * clk_dce->dentist_vco_freq_khz) / target_div;
197
198 return dccg_adjust_dp_ref_freq_for_ss(clk_dce, dp_ref_clk_khz);
199 }
200
dce12_get_dp_ref_freq_khz(struct dccg * clk)201 static int dce12_get_dp_ref_freq_khz(struct dccg *clk)
202 {
203 struct dce_dccg *clk_dce = TO_DCE_CLOCKS(clk);
204
205 return dccg_adjust_dp_ref_freq_for_ss(clk_dce, 600000);
206 }
207
dce_get_required_clocks_state(struct dccg * clk,struct dc_clocks * req_clocks)208 static enum dm_pp_clocks_state dce_get_required_clocks_state(
209 struct dccg *clk,
210 struct dc_clocks *req_clocks)
211 {
212 struct dce_dccg *clk_dce = TO_DCE_CLOCKS(clk);
213 int i;
214 enum dm_pp_clocks_state low_req_clk;
215
216 /* Iterate from highest supported to lowest valid state, and update
217 * lowest RequiredState with the lowest state that satisfies
218 * all required clocks
219 */
220 for (i = clk->max_clks_state; i >= DM_PP_CLOCKS_STATE_ULTRA_LOW; i--)
221 if (req_clocks->dispclk_khz >
222 clk_dce->max_clks_by_state[i].display_clk_khz
223 || req_clocks->phyclk_khz >
224 clk_dce->max_clks_by_state[i].pixel_clk_khz)
225 break;
226
227 low_req_clk = i + 1;
228 if (low_req_clk > clk->max_clks_state) {
229 /* set max clock state for high phyclock, invalid on exceeding display clock */
230 if (clk_dce->max_clks_by_state[clk->max_clks_state].display_clk_khz
231 < req_clocks->dispclk_khz)
232 low_req_clk = DM_PP_CLOCKS_STATE_INVALID;
233 else
234 low_req_clk = clk->max_clks_state;
235 }
236
237 return low_req_clk;
238 }
239
dce_set_clock(struct dccg * clk,int requested_clk_khz)240 static int dce_set_clock(
241 struct dccg *clk,
242 int requested_clk_khz)
243 {
244 struct dce_dccg *clk_dce = TO_DCE_CLOCKS(clk);
245 struct bp_pixel_clock_parameters pxl_clk_params = { 0 };
246 struct dc_bios *bp = clk->ctx->dc_bios;
247 int actual_clock = requested_clk_khz;
248
249 /* Make sure requested clock isn't lower than minimum threshold*/
250 if (requested_clk_khz > 0)
251 requested_clk_khz = max(requested_clk_khz,
252 clk_dce->dentist_vco_freq_khz / 64);
253
254 /* Prepare to program display clock*/
255 pxl_clk_params.target_pixel_clock = requested_clk_khz;
256 pxl_clk_params.pll_id = CLOCK_SOURCE_ID_DFS;
257
258 bp->funcs->program_display_engine_pll(bp, &pxl_clk_params);
259
260 if (clk_dce->dfs_bypass_enabled) {
261
262 /* Cache the fixed display clock*/
263 clk_dce->dfs_bypass_disp_clk =
264 pxl_clk_params.dfs_bypass_display_clock;
265 actual_clock = pxl_clk_params.dfs_bypass_display_clock;
266 }
267
268 /* from power down, we need mark the clock state as ClocksStateNominal
269 * from HWReset, so when resume we will call pplib voltage regulator.*/
270 if (requested_clk_khz == 0)
271 clk->cur_min_clks_state = DM_PP_CLOCKS_STATE_NOMINAL;
272 return actual_clock;
273 }
274
dce_psr_set_clock(struct dccg * clk,int requested_clk_khz)275 static int dce_psr_set_clock(
276 struct dccg *clk,
277 int requested_clk_khz)
278 {
279 struct dce_dccg *clk_dce = TO_DCE_CLOCKS(clk);
280 struct dc_context *ctx = clk_dce->base.ctx;
281 struct dc *core_dc = ctx->dc;
282 struct dmcu *dmcu = core_dc->res_pool->dmcu;
283 int actual_clk_khz = requested_clk_khz;
284
285 actual_clk_khz = dce_set_clock(clk, requested_clk_khz);
286
287 dmcu->funcs->set_psr_wait_loop(dmcu, actual_clk_khz / 1000 / 7);
288 return actual_clk_khz;
289 }
290
dce112_set_clock(struct dccg * clk,int requested_clk_khz)291 static int dce112_set_clock(
292 struct dccg *clk,
293 int requested_clk_khz)
294 {
295 struct dce_dccg *clk_dce = TO_DCE_CLOCKS(clk);
296 struct bp_set_dce_clock_parameters dce_clk_params;
297 struct dc_bios *bp = clk->ctx->dc_bios;
298 struct dc *core_dc = clk->ctx->dc;
299 struct dmcu *dmcu = core_dc->res_pool->dmcu;
300 int actual_clock = requested_clk_khz;
301 /* Prepare to program display clock*/
302 memset(&dce_clk_params, 0, sizeof(dce_clk_params));
303
304 /* Make sure requested clock isn't lower than minimum threshold*/
305 if (requested_clk_khz > 0)
306 requested_clk_khz = max(requested_clk_khz,
307 clk_dce->dentist_vco_freq_khz / 62);
308
309 dce_clk_params.target_clock_frequency = requested_clk_khz;
310 dce_clk_params.pll_id = CLOCK_SOURCE_ID_DFS;
311 dce_clk_params.clock_type = DCECLOCK_TYPE_DISPLAY_CLOCK;
312
313 bp->funcs->set_dce_clock(bp, &dce_clk_params);
314 actual_clock = dce_clk_params.target_clock_frequency;
315
316 /* from power down, we need mark the clock state as ClocksStateNominal
317 * from HWReset, so when resume we will call pplib voltage regulator.*/
318 if (requested_clk_khz == 0)
319 clk->cur_min_clks_state = DM_PP_CLOCKS_STATE_NOMINAL;
320
321 /*Program DP ref Clock*/
322 /*VBIOS will determine DPREFCLK frequency, so we don't set it*/
323 dce_clk_params.target_clock_frequency = 0;
324 dce_clk_params.clock_type = DCECLOCK_TYPE_DPREFCLK;
325 if (!ASICREV_IS_VEGA20_P(clk->ctx->asic_id.hw_internal_rev))
326 dce_clk_params.flags.USE_GENLOCK_AS_SOURCE_FOR_DPREFCLK =
327 (dce_clk_params.pll_id ==
328 CLOCK_SOURCE_COMBO_DISPLAY_PLL0);
329 else
330 dce_clk_params.flags.USE_GENLOCK_AS_SOURCE_FOR_DPREFCLK = false;
331
332 bp->funcs->set_dce_clock(bp, &dce_clk_params);
333
334 if (!IS_FPGA_MAXIMUS_DC(core_dc->ctx->dce_environment)) {
335 if (clk_dce->dfs_bypass_disp_clk != actual_clock)
336 dmcu->funcs->set_psr_wait_loop(dmcu,
337 actual_clock / 1000 / 7);
338 }
339
340 clk_dce->dfs_bypass_disp_clk = actual_clock;
341 return actual_clock;
342 }
343
dce_clock_read_integrated_info(struct dce_dccg * clk_dce)344 static void dce_clock_read_integrated_info(struct dce_dccg *clk_dce)
345 {
346 struct dc_debug_options *debug = &clk_dce->base.ctx->dc->debug;
347 struct dc_bios *bp = clk_dce->base.ctx->dc_bios;
348 struct integrated_info info = { { { 0 } } };
349 struct dc_firmware_info fw_info = { { 0 } };
350 int i;
351
352 if (bp->integrated_info)
353 info = *bp->integrated_info;
354
355 clk_dce->dentist_vco_freq_khz = info.dentist_vco_freq;
356 if (clk_dce->dentist_vco_freq_khz == 0) {
357 bp->funcs->get_firmware_info(bp, &fw_info);
358 clk_dce->dentist_vco_freq_khz =
359 fw_info.smu_gpu_pll_output_freq;
360 if (clk_dce->dentist_vco_freq_khz == 0)
361 clk_dce->dentist_vco_freq_khz = 3600000;
362 }
363
364 /*update the maximum display clock for each power state*/
365 for (i = 0; i < NUMBER_OF_DISP_CLK_VOLTAGE; ++i) {
366 enum dm_pp_clocks_state clk_state = DM_PP_CLOCKS_STATE_INVALID;
367
368 switch (i) {
369 case 0:
370 clk_state = DM_PP_CLOCKS_STATE_ULTRA_LOW;
371 break;
372
373 case 1:
374 clk_state = DM_PP_CLOCKS_STATE_LOW;
375 break;
376
377 case 2:
378 clk_state = DM_PP_CLOCKS_STATE_NOMINAL;
379 break;
380
381 case 3:
382 clk_state = DM_PP_CLOCKS_STATE_PERFORMANCE;
383 break;
384
385 default:
386 clk_state = DM_PP_CLOCKS_STATE_INVALID;
387 break;
388 }
389
390 /*Do not allow bad VBIOS/SBIOS to override with invalid values,
391 * check for > 100MHz*/
392 if (info.disp_clk_voltage[i].max_supported_clk >= 100000)
393 clk_dce->max_clks_by_state[clk_state].display_clk_khz =
394 info.disp_clk_voltage[i].max_supported_clk;
395 }
396
397 if (!debug->disable_dfs_bypass && bp->integrated_info)
398 if (bp->integrated_info->gpu_cap_info & DFS_BYPASS_ENABLE)
399 clk_dce->dfs_bypass_enabled = true;
400 }
401
dce_clock_read_ss_info(struct dce_dccg * clk_dce)402 static void dce_clock_read_ss_info(struct dce_dccg *clk_dce)
403 {
404 struct dc_bios *bp = clk_dce->base.ctx->dc_bios;
405 int ss_info_num = bp->funcs->get_ss_entry_number(
406 bp, AS_SIGNAL_TYPE_GPU_PLL);
407
408 if (ss_info_num) {
409 struct spread_spectrum_info info = { { 0 } };
410 enum bp_result result = bp->funcs->get_spread_spectrum_info(
411 bp, AS_SIGNAL_TYPE_GPU_PLL, 0, &info);
412
413 /* Based on VBIOS, VBIOS will keep entry for GPU PLL SS
414 * even if SS not enabled and in that case
415 * SSInfo.spreadSpectrumPercentage !=0 would be sign
416 * that SS is enabled
417 */
418 if (result == BP_RESULT_OK &&
419 info.spread_spectrum_percentage != 0) {
420 clk_dce->ss_on_dprefclk = true;
421 clk_dce->dprefclk_ss_divider = info.spread_percentage_divider;
422
423 if (info.type.CENTER_MODE == 0) {
424 /* TODO: Currently for DP Reference clock we
425 * need only SS percentage for
426 * downspread */
427 clk_dce->dprefclk_ss_percentage =
428 info.spread_spectrum_percentage;
429 }
430
431 return;
432 }
433
434 result = bp->funcs->get_spread_spectrum_info(
435 bp, AS_SIGNAL_TYPE_DISPLAY_PORT, 0, &info);
436
437 /* Based on VBIOS, VBIOS will keep entry for DPREFCLK SS
438 * even if SS not enabled and in that case
439 * SSInfo.spreadSpectrumPercentage !=0 would be sign
440 * that SS is enabled
441 */
442 if (result == BP_RESULT_OK &&
443 info.spread_spectrum_percentage != 0) {
444 clk_dce->ss_on_dprefclk = true;
445 clk_dce->dprefclk_ss_divider = info.spread_percentage_divider;
446
447 if (info.type.CENTER_MODE == 0) {
448 /* Currently for DP Reference clock we
449 * need only SS percentage for
450 * downspread */
451 clk_dce->dprefclk_ss_percentage =
452 info.spread_spectrum_percentage;
453 }
454 }
455 }
456 }
457
should_set_clock(bool safe_to_lower,int calc_clk,int cur_clk)458 static inline bool should_set_clock(bool safe_to_lower, int calc_clk, int cur_clk)
459 {
460 return ((safe_to_lower && calc_clk < cur_clk) || calc_clk > cur_clk);
461 }
462
dce12_update_clocks(struct dccg * dccg,struct dc_clocks * new_clocks,bool safe_to_lower)463 static void dce12_update_clocks(struct dccg *dccg,
464 struct dc_clocks *new_clocks,
465 bool safe_to_lower)
466 {
467 struct dm_pp_clock_for_voltage_req clock_voltage_req = {0};
468
469 if (should_set_clock(safe_to_lower, new_clocks->dispclk_khz, dccg->clks.dispclk_khz)) {
470 clock_voltage_req.clk_type = DM_PP_CLOCK_TYPE_DISPLAY_CLK;
471 clock_voltage_req.clocks_in_khz = new_clocks->dispclk_khz;
472 new_clocks->dispclk_khz = dccg->funcs->set_dispclk(dccg, new_clocks->dispclk_khz);
473 dccg->clks.dispclk_khz = new_clocks->dispclk_khz;
474
475 dm_pp_apply_clock_for_voltage_request(dccg->ctx, &clock_voltage_req);
476 }
477
478 if (should_set_clock(safe_to_lower, new_clocks->phyclk_khz, dccg->clks.phyclk_khz)) {
479 clock_voltage_req.clk_type = DM_PP_CLOCK_TYPE_DISPLAYPHYCLK;
480 clock_voltage_req.clocks_in_khz = new_clocks->phyclk_khz;
481 dccg->clks.phyclk_khz = new_clocks->phyclk_khz;
482
483 dm_pp_apply_clock_for_voltage_request(dccg->ctx, &clock_voltage_req);
484 }
485 }
486
487 #ifdef CONFIG_DRM_AMD_DC_DCN1_0
dcn1_determine_dppclk_threshold(struct dccg * dccg,struct dc_clocks * new_clocks)488 static int dcn1_determine_dppclk_threshold(struct dccg *dccg, struct dc_clocks *new_clocks)
489 {
490 bool request_dpp_div = new_clocks->dispclk_khz > new_clocks->dppclk_khz;
491 bool dispclk_increase = new_clocks->dispclk_khz > dccg->clks.dispclk_khz;
492 int disp_clk_threshold = new_clocks->max_supported_dppclk_khz;
493 bool cur_dpp_div = dccg->clks.dispclk_khz > dccg->clks.dppclk_khz;
494
495 /* increase clock, looking for div is 0 for current, request div is 1*/
496 if (dispclk_increase) {
497 /* already divided by 2, no need to reach target clk with 2 steps*/
498 if (cur_dpp_div)
499 return new_clocks->dispclk_khz;
500
501 /* request disp clk is lower than maximum supported dpp clk,
502 * no need to reach target clk with two steps.
503 */
504 if (new_clocks->dispclk_khz <= disp_clk_threshold)
505 return new_clocks->dispclk_khz;
506
507 /* target dpp clk not request divided by 2, still within threshold */
508 if (!request_dpp_div)
509 return new_clocks->dispclk_khz;
510
511 } else {
512 /* decrease clock, looking for current dppclk divided by 2,
513 * request dppclk not divided by 2.
514 */
515
516 /* current dpp clk not divided by 2, no need to ramp*/
517 if (!cur_dpp_div)
518 return new_clocks->dispclk_khz;
519
520 /* current disp clk is lower than current maximum dpp clk,
521 * no need to ramp
522 */
523 if (dccg->clks.dispclk_khz <= disp_clk_threshold)
524 return new_clocks->dispclk_khz;
525
526 /* request dpp clk need to be divided by 2 */
527 if (request_dpp_div)
528 return new_clocks->dispclk_khz;
529 }
530
531 return disp_clk_threshold;
532 }
533
dcn1_ramp_up_dispclk_with_dpp(struct dccg * dccg,struct dc_clocks * new_clocks)534 static void dcn1_ramp_up_dispclk_with_dpp(struct dccg *dccg, struct dc_clocks *new_clocks)
535 {
536 struct dc *dc = dccg->ctx->dc;
537 int dispclk_to_dpp_threshold = dcn1_determine_dppclk_threshold(dccg, new_clocks);
538 bool request_dpp_div = new_clocks->dispclk_khz > new_clocks->dppclk_khz;
539 int i;
540
541 /* set disp clk to dpp clk threshold */
542 dccg->funcs->set_dispclk(dccg, dispclk_to_dpp_threshold);
543
544 /* update request dpp clk division option */
545 for (i = 0; i < dc->res_pool->pipe_count; i++) {
546 struct pipe_ctx *pipe_ctx = &dc->current_state->res_ctx.pipe_ctx[i];
547
548 if (!pipe_ctx->plane_state)
549 continue;
550
551 pipe_ctx->plane_res.dpp->funcs->dpp_dppclk_control(
552 pipe_ctx->plane_res.dpp,
553 request_dpp_div,
554 true);
555 }
556
557 /* If target clk not same as dppclk threshold, set to target clock */
558 if (dispclk_to_dpp_threshold != new_clocks->dispclk_khz)
559 dccg->funcs->set_dispclk(dccg, new_clocks->dispclk_khz);
560
561 dccg->clks.dispclk_khz = new_clocks->dispclk_khz;
562 dccg->clks.dppclk_khz = new_clocks->dppclk_khz;
563 dccg->clks.max_supported_dppclk_khz = new_clocks->max_supported_dppclk_khz;
564 }
565
dcn1_update_clocks(struct dccg * dccg,struct dc_clocks * new_clocks,bool safe_to_lower)566 static void dcn1_update_clocks(struct dccg *dccg,
567 struct dc_clocks *new_clocks,
568 bool safe_to_lower)
569 {
570 struct dc *dc = dccg->ctx->dc;
571 struct pp_smu_display_requirement_rv *smu_req_cur =
572 &dc->res_pool->pp_smu_req;
573 struct pp_smu_display_requirement_rv smu_req = *smu_req_cur;
574 struct pp_smu_funcs_rv *pp_smu = dc->res_pool->pp_smu;
575 struct dm_pp_clock_for_voltage_req clock_voltage_req = {0};
576 bool send_request_to_increase = false;
577 bool send_request_to_lower = false;
578
579 if (new_clocks->phyclk_khz)
580 smu_req.display_count = 1;
581 else
582 smu_req.display_count = 0;
583
584 if (new_clocks->dispclk_khz > dccg->clks.dispclk_khz
585 || new_clocks->phyclk_khz > dccg->clks.phyclk_khz
586 || new_clocks->fclk_khz > dccg->clks.fclk_khz
587 || new_clocks->dcfclk_khz > dccg->clks.dcfclk_khz)
588 send_request_to_increase = true;
589
590 if (should_set_clock(safe_to_lower, new_clocks->phyclk_khz, dccg->clks.phyclk_khz)) {
591 dccg->clks.phyclk_khz = new_clocks->phyclk_khz;
592
593 send_request_to_lower = true;
594 }
595
596 if (should_set_clock(safe_to_lower, new_clocks->fclk_khz, dccg->clks.fclk_khz)) {
597 dccg->clks.fclk_khz = new_clocks->fclk_khz;
598 clock_voltage_req.clk_type = DM_PP_CLOCK_TYPE_FCLK;
599 clock_voltage_req.clocks_in_khz = new_clocks->fclk_khz;
600 smu_req.hard_min_fclk_khz = new_clocks->fclk_khz;
601
602 dm_pp_apply_clock_for_voltage_request(dccg->ctx, &clock_voltage_req);
603 send_request_to_lower = true;
604 }
605
606 if (should_set_clock(safe_to_lower, new_clocks->dcfclk_khz, dccg->clks.dcfclk_khz)) {
607 dccg->clks.dcfclk_khz = new_clocks->dcfclk_khz;
608 smu_req.hard_min_dcefclk_khz = new_clocks->dcfclk_khz;
609
610 send_request_to_lower = true;
611 }
612
613 if (should_set_clock(safe_to_lower,
614 new_clocks->dcfclk_deep_sleep_khz, dccg->clks.dcfclk_deep_sleep_khz)) {
615 dccg->clks.dcfclk_deep_sleep_khz = new_clocks->dcfclk_deep_sleep_khz;
616 smu_req.min_deep_sleep_dcefclk_mhz = new_clocks->dcfclk_deep_sleep_khz;
617
618 send_request_to_lower = true;
619 }
620
621 /* make sure dcf clk is before dpp clk to
622 * make sure we have enough voltage to run dpp clk
623 */
624 if (send_request_to_increase) {
625 /*use dcfclk to request voltage*/
626 clock_voltage_req.clk_type = DM_PP_CLOCK_TYPE_DCFCLK;
627 clock_voltage_req.clocks_in_khz = dcn_find_dcfclk_suits_all(dc, new_clocks);
628 dm_pp_apply_clock_for_voltage_request(dccg->ctx, &clock_voltage_req);
629 if (pp_smu->set_display_requirement)
630 pp_smu->set_display_requirement(&pp_smu->pp_smu, &smu_req);
631 }
632
633 /* dcn1 dppclk is tied to dispclk */
634 /* program dispclk on = as a w/a for sleep resume clock ramping issues */
635 if (should_set_clock(safe_to_lower, new_clocks->dispclk_khz, dccg->clks.dispclk_khz)
636 || new_clocks->dispclk_khz == dccg->clks.dispclk_khz) {
637 dcn1_ramp_up_dispclk_with_dpp(dccg, new_clocks);
638 dccg->clks.dispclk_khz = new_clocks->dispclk_khz;
639
640 send_request_to_lower = true;
641 }
642
643 if (!send_request_to_increase && send_request_to_lower) {
644 /*use dcfclk to request voltage*/
645 clock_voltage_req.clk_type = DM_PP_CLOCK_TYPE_DCFCLK;
646 clock_voltage_req.clocks_in_khz = dcn_find_dcfclk_suits_all(dc, new_clocks);
647 dm_pp_apply_clock_for_voltage_request(dccg->ctx, &clock_voltage_req);
648 if (pp_smu->set_display_requirement)
649 pp_smu->set_display_requirement(&pp_smu->pp_smu, &smu_req);
650 }
651
652
653 *smu_req_cur = smu_req;
654 }
655 #endif
656
dce_update_clocks(struct dccg * dccg,struct dc_clocks * new_clocks,bool safe_to_lower)657 static void dce_update_clocks(struct dccg *dccg,
658 struct dc_clocks *new_clocks,
659 bool safe_to_lower)
660 {
661 struct dm_pp_power_level_change_request level_change_req;
662
663 level_change_req.power_level = dce_get_required_clocks_state(dccg, new_clocks);
664 /* get max clock state from PPLIB */
665 if ((level_change_req.power_level < dccg->cur_min_clks_state && safe_to_lower)
666 || level_change_req.power_level > dccg->cur_min_clks_state) {
667 if (dm_pp_apply_power_level_change_request(dccg->ctx, &level_change_req))
668 dccg->cur_min_clks_state = level_change_req.power_level;
669 }
670
671 if (should_set_clock(safe_to_lower, new_clocks->dispclk_khz, dccg->clks.dispclk_khz)) {
672 new_clocks->dispclk_khz = dccg->funcs->set_dispclk(dccg, new_clocks->dispclk_khz);
673 dccg->clks.dispclk_khz = new_clocks->dispclk_khz;
674 }
675 }
676
677 #ifdef CONFIG_DRM_AMD_DC_DCN1_0
678 static const struct display_clock_funcs dcn1_funcs = {
679 .get_dp_ref_clk_frequency = dce12_get_dp_ref_freq_khz,
680 .set_dispclk = dce112_set_clock,
681 .update_clocks = dcn1_update_clocks
682 };
683 #endif
684
685 static const struct display_clock_funcs dce120_funcs = {
686 .get_dp_ref_clk_frequency = dce12_get_dp_ref_freq_khz,
687 .set_dispclk = dce112_set_clock,
688 .update_clocks = dce12_update_clocks
689 };
690
691 static const struct display_clock_funcs dce112_funcs = {
692 .get_dp_ref_clk_frequency = dce_get_dp_ref_freq_khz,
693 .set_dispclk = dce112_set_clock,
694 .update_clocks = dce_update_clocks
695 };
696
697 static const struct display_clock_funcs dce110_funcs = {
698 .get_dp_ref_clk_frequency = dce_get_dp_ref_freq_khz,
699 .set_dispclk = dce_psr_set_clock,
700 .update_clocks = dce_update_clocks
701 };
702
703 static const struct display_clock_funcs dce_funcs = {
704 .get_dp_ref_clk_frequency = dce_get_dp_ref_freq_khz,
705 .set_dispclk = dce_set_clock,
706 .update_clocks = dce_update_clocks
707 };
708
dce_dccg_construct(struct dce_dccg * clk_dce,struct dc_context * ctx,const struct dccg_registers * regs,const struct dccg_shift * clk_shift,const struct dccg_mask * clk_mask)709 static void dce_dccg_construct(
710 struct dce_dccg *clk_dce,
711 struct dc_context *ctx,
712 const struct dccg_registers *regs,
713 const struct dccg_shift *clk_shift,
714 const struct dccg_mask *clk_mask)
715 {
716 struct dccg *base = &clk_dce->base;
717
718 base->ctx = ctx;
719 base->funcs = &dce_funcs;
720
721 clk_dce->regs = regs;
722 clk_dce->clk_shift = clk_shift;
723 clk_dce->clk_mask = clk_mask;
724
725 clk_dce->dfs_bypass_disp_clk = 0;
726
727 clk_dce->dprefclk_ss_percentage = 0;
728 clk_dce->dprefclk_ss_divider = 1000;
729 clk_dce->ss_on_dprefclk = false;
730
731 base->max_clks_state = DM_PP_CLOCKS_STATE_NOMINAL;
732 base->cur_min_clks_state = DM_PP_CLOCKS_STATE_INVALID;
733
734 dce_clock_read_integrated_info(clk_dce);
735 dce_clock_read_ss_info(clk_dce);
736 }
737
dce_dccg_create(struct dc_context * ctx,const struct dccg_registers * regs,const struct dccg_shift * clk_shift,const struct dccg_mask * clk_mask)738 struct dccg *dce_dccg_create(
739 struct dc_context *ctx,
740 const struct dccg_registers *regs,
741 const struct dccg_shift *clk_shift,
742 const struct dccg_mask *clk_mask)
743 {
744 struct dce_dccg *clk_dce = kzalloc(sizeof(*clk_dce), GFP_KERNEL);
745
746 if (clk_dce == NULL) {
747 BREAK_TO_DEBUGGER();
748 return NULL;
749 }
750
751 memcpy(clk_dce->max_clks_by_state,
752 dce80_max_clks_by_state,
753 sizeof(dce80_max_clks_by_state));
754
755 dce_dccg_construct(
756 clk_dce, ctx, regs, clk_shift, clk_mask);
757
758 return &clk_dce->base;
759 }
760
dce110_dccg_create(struct dc_context * ctx,const struct dccg_registers * regs,const struct dccg_shift * clk_shift,const struct dccg_mask * clk_mask)761 struct dccg *dce110_dccg_create(
762 struct dc_context *ctx,
763 const struct dccg_registers *regs,
764 const struct dccg_shift *clk_shift,
765 const struct dccg_mask *clk_mask)
766 {
767 struct dce_dccg *clk_dce = kzalloc(sizeof(*clk_dce), GFP_KERNEL);
768
769 if (clk_dce == NULL) {
770 BREAK_TO_DEBUGGER();
771 return NULL;
772 }
773
774 memcpy(clk_dce->max_clks_by_state,
775 dce110_max_clks_by_state,
776 sizeof(dce110_max_clks_by_state));
777
778 dce_dccg_construct(
779 clk_dce, ctx, regs, clk_shift, clk_mask);
780
781 clk_dce->base.funcs = &dce110_funcs;
782
783 return &clk_dce->base;
784 }
785
dce112_dccg_create(struct dc_context * ctx,const struct dccg_registers * regs,const struct dccg_shift * clk_shift,const struct dccg_mask * clk_mask)786 struct dccg *dce112_dccg_create(
787 struct dc_context *ctx,
788 const struct dccg_registers *regs,
789 const struct dccg_shift *clk_shift,
790 const struct dccg_mask *clk_mask)
791 {
792 struct dce_dccg *clk_dce = kzalloc(sizeof(*clk_dce), GFP_KERNEL);
793
794 if (clk_dce == NULL) {
795 BREAK_TO_DEBUGGER();
796 return NULL;
797 }
798
799 memcpy(clk_dce->max_clks_by_state,
800 dce112_max_clks_by_state,
801 sizeof(dce112_max_clks_by_state));
802
803 dce_dccg_construct(
804 clk_dce, ctx, regs, clk_shift, clk_mask);
805
806 clk_dce->base.funcs = &dce112_funcs;
807
808 return &clk_dce->base;
809 }
810
dce120_dccg_create(struct dc_context * ctx)811 struct dccg *dce120_dccg_create(struct dc_context *ctx)
812 {
813 struct dce_dccg *clk_dce = kzalloc(sizeof(*clk_dce), GFP_KERNEL);
814
815 if (clk_dce == NULL) {
816 BREAK_TO_DEBUGGER();
817 return NULL;
818 }
819
820 memcpy(clk_dce->max_clks_by_state,
821 dce120_max_clks_by_state,
822 sizeof(dce120_max_clks_by_state));
823
824 dce_dccg_construct(
825 clk_dce, ctx, NULL, NULL, NULL);
826
827 clk_dce->base.funcs = &dce120_funcs;
828
829 return &clk_dce->base;
830 }
831
832 #ifdef CONFIG_DRM_AMD_DC_DCN1_0
dcn1_dccg_create(struct dc_context * ctx)833 struct dccg *dcn1_dccg_create(struct dc_context *ctx)
834 {
835 struct dc_debug_options *debug = &ctx->dc->debug;
836 struct dc_bios *bp = ctx->dc_bios;
837 struct dc_firmware_info fw_info = { { 0 } };
838 struct dce_dccg *clk_dce = kzalloc(sizeof(*clk_dce), GFP_KERNEL);
839
840 if (clk_dce == NULL) {
841 BREAK_TO_DEBUGGER();
842 return NULL;
843 }
844
845 clk_dce->base.ctx = ctx;
846 clk_dce->base.funcs = &dcn1_funcs;
847
848 clk_dce->dfs_bypass_disp_clk = 0;
849
850 clk_dce->dprefclk_ss_percentage = 0;
851 clk_dce->dprefclk_ss_divider = 1000;
852 clk_dce->ss_on_dprefclk = false;
853
854 if (bp->integrated_info)
855 clk_dce->dentist_vco_freq_khz = bp->integrated_info->dentist_vco_freq;
856 if (clk_dce->dentist_vco_freq_khz == 0) {
857 bp->funcs->get_firmware_info(bp, &fw_info);
858 clk_dce->dentist_vco_freq_khz = fw_info.smu_gpu_pll_output_freq;
859 if (clk_dce->dentist_vco_freq_khz == 0)
860 clk_dce->dentist_vco_freq_khz = 3600000;
861 }
862
863 if (!debug->disable_dfs_bypass && bp->integrated_info)
864 if (bp->integrated_info->gpu_cap_info & DFS_BYPASS_ENABLE)
865 clk_dce->dfs_bypass_enabled = true;
866
867 dce_clock_read_ss_info(clk_dce);
868
869 return &clk_dce->base;
870 }
871 #endif
872
dce_dccg_destroy(struct dccg ** dccg)873 void dce_dccg_destroy(struct dccg **dccg)
874 {
875 struct dce_dccg *clk_dce = TO_DCE_CLOCKS(*dccg);
876
877 kfree(clk_dce);
878 *dccg = NULL;
879 }
880