1 /*
2  * Copyright 2015 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  */
23 #include "pp_debug.h"
24 #include <linux/types.h>
25 #include <linux/kernel.h>
26 #include <linux/slab.h>
27 #include "atom-types.h"
28 #include "atombios.h"
29 #include "processpptables.h"
30 #include "cgs_common.h"
31 #include "smumgr.h"
32 #include "hwmgr.h"
33 #include "hardwaremanager.h"
34 #include "rv_ppsmc.h"
35 #include "smu10_hwmgr.h"
36 #include "power_state.h"
37 #include "soc15_common.h"
38 #include "smu10.h"
39 #include "asic_reg/pwr/pwr_10_0_offset.h"
40 #include "asic_reg/pwr/pwr_10_0_sh_mask.h"
41 
42 #define SMU10_MAX_DEEPSLEEP_DIVIDER_ID     5
43 #define SMU10_MINIMUM_ENGINE_CLOCK         800   /* 8Mhz, the low boundary of engine clock allowed on this chip */
44 #define SCLK_MIN_DIV_INTV_SHIFT         12
45 #define SMU10_DISPCLK_BYPASS_THRESHOLD     10000 /* 100Mhz */
46 #define SMC_RAM_END                     0x40000
47 
48 static const unsigned long SMU10_Magic = (unsigned long) PHM_Rv_Magic;
49 
50 
smu10_display_clock_voltage_request(struct pp_hwmgr * hwmgr,struct pp_display_clock_request * clock_req)51 static int smu10_display_clock_voltage_request(struct pp_hwmgr *hwmgr,
52 		struct pp_display_clock_request *clock_req)
53 {
54 	struct smu10_hwmgr *smu10_data = (struct smu10_hwmgr *)(hwmgr->backend);
55 	enum amd_pp_clock_type clk_type = clock_req->clock_type;
56 	uint32_t clk_freq = clock_req->clock_freq_in_khz / 1000;
57 	PPSMC_Msg        msg;
58 
59 	switch (clk_type) {
60 	case amd_pp_dcf_clock:
61 		if (clk_freq == smu10_data->dcf_actual_hard_min_freq)
62 			return 0;
63 		msg =  PPSMC_MSG_SetHardMinDcefclkByFreq;
64 		smu10_data->dcf_actual_hard_min_freq = clk_freq;
65 		break;
66 	case amd_pp_soc_clock:
67 		 msg = PPSMC_MSG_SetHardMinSocclkByFreq;
68 		break;
69 	case amd_pp_f_clock:
70 		if (clk_freq == smu10_data->f_actual_hard_min_freq)
71 			return 0;
72 		smu10_data->f_actual_hard_min_freq = clk_freq;
73 		msg = PPSMC_MSG_SetHardMinFclkByFreq;
74 		break;
75 	default:
76 		pr_info("[DisplayClockVoltageRequest]Invalid Clock Type!");
77 		return -EINVAL;
78 	}
79 	smum_send_msg_to_smc_with_parameter(hwmgr, msg, clk_freq, NULL);
80 
81 	return 0;
82 }
83 
cast_smu10_ps(struct pp_hw_power_state * hw_ps)84 static struct smu10_power_state *cast_smu10_ps(struct pp_hw_power_state *hw_ps)
85 {
86 	if (SMU10_Magic != hw_ps->magic)
87 		return NULL;
88 
89 	return (struct smu10_power_state *)hw_ps;
90 }
91 
cast_const_smu10_ps(const struct pp_hw_power_state * hw_ps)92 static const struct smu10_power_state *cast_const_smu10_ps(
93 				const struct pp_hw_power_state *hw_ps)
94 {
95 	if (SMU10_Magic != hw_ps->magic)
96 		return NULL;
97 
98 	return (struct smu10_power_state *)hw_ps;
99 }
100 
smu10_initialize_dpm_defaults(struct pp_hwmgr * hwmgr)101 static int smu10_initialize_dpm_defaults(struct pp_hwmgr *hwmgr)
102 {
103 	struct smu10_hwmgr *smu10_data = (struct smu10_hwmgr *)(hwmgr->backend);
104 
105 	smu10_data->dce_slow_sclk_threshold = 30000;
106 	smu10_data->thermal_auto_throttling_treshold = 0;
107 	smu10_data->is_nb_dpm_enabled = 1;
108 	smu10_data->dpm_flags = 1;
109 	smu10_data->need_min_deep_sleep_dcefclk = true;
110 	smu10_data->num_active_display = 0;
111 	smu10_data->deep_sleep_dcefclk = 0;
112 
113 	phm_cap_unset(hwmgr->platform_descriptor.platformCaps,
114 					PHM_PlatformCaps_SclkDeepSleep);
115 
116 	phm_cap_unset(hwmgr->platform_descriptor.platformCaps,
117 				PHM_PlatformCaps_SclkThrottleLowNotification);
118 
119 	phm_cap_set(hwmgr->platform_descriptor.platformCaps,
120 				PHM_PlatformCaps_PowerPlaySupport);
121 	return 0;
122 }
123 
smu10_construct_max_power_limits_table(struct pp_hwmgr * hwmgr,struct phm_clock_and_voltage_limits * table)124 static int smu10_construct_max_power_limits_table(struct pp_hwmgr *hwmgr,
125 			struct phm_clock_and_voltage_limits *table)
126 {
127 	return 0;
128 }
129 
smu10_init_dynamic_state_adjustment_rule_settings(struct pp_hwmgr * hwmgr)130 static int smu10_init_dynamic_state_adjustment_rule_settings(
131 							struct pp_hwmgr *hwmgr)
132 {
133 	int count = 8;
134 	struct phm_clock_voltage_dependency_table *table_clk_vlt;
135 
136 	table_clk_vlt = kzalloc(struct_size(table_clk_vlt, entries, count),
137 				GFP_KERNEL);
138 
139 	if (NULL == table_clk_vlt) {
140 		pr_err("Can not allocate memory!\n");
141 		return -ENOMEM;
142 	}
143 
144 	table_clk_vlt->count = count;
145 	table_clk_vlt->entries[0].clk = PP_DAL_POWERLEVEL_0;
146 	table_clk_vlt->entries[0].v = 0;
147 	table_clk_vlt->entries[1].clk = PP_DAL_POWERLEVEL_1;
148 	table_clk_vlt->entries[1].v = 1;
149 	table_clk_vlt->entries[2].clk = PP_DAL_POWERLEVEL_2;
150 	table_clk_vlt->entries[2].v = 2;
151 	table_clk_vlt->entries[3].clk = PP_DAL_POWERLEVEL_3;
152 	table_clk_vlt->entries[3].v = 3;
153 	table_clk_vlt->entries[4].clk = PP_DAL_POWERLEVEL_4;
154 	table_clk_vlt->entries[4].v = 4;
155 	table_clk_vlt->entries[5].clk = PP_DAL_POWERLEVEL_5;
156 	table_clk_vlt->entries[5].v = 5;
157 	table_clk_vlt->entries[6].clk = PP_DAL_POWERLEVEL_6;
158 	table_clk_vlt->entries[6].v = 6;
159 	table_clk_vlt->entries[7].clk = PP_DAL_POWERLEVEL_7;
160 	table_clk_vlt->entries[7].v = 7;
161 	hwmgr->dyn_state.vddc_dep_on_dal_pwrl = table_clk_vlt;
162 
163 	return 0;
164 }
165 
smu10_get_system_info_data(struct pp_hwmgr * hwmgr)166 static int smu10_get_system_info_data(struct pp_hwmgr *hwmgr)
167 {
168 	struct smu10_hwmgr *smu10_data = (struct smu10_hwmgr *)hwmgr->backend;
169 
170 	smu10_data->sys_info.htc_hyst_lmt = 5;
171 	smu10_data->sys_info.htc_tmp_lmt = 203;
172 
173 	if (smu10_data->thermal_auto_throttling_treshold == 0)
174 		 smu10_data->thermal_auto_throttling_treshold = 203;
175 
176 	smu10_construct_max_power_limits_table (hwmgr,
177 				    &hwmgr->dyn_state.max_clock_voltage_on_ac);
178 
179 	smu10_init_dynamic_state_adjustment_rule_settings(hwmgr);
180 
181 	return 0;
182 }
183 
smu10_construct_boot_state(struct pp_hwmgr * hwmgr)184 static int smu10_construct_boot_state(struct pp_hwmgr *hwmgr)
185 {
186 	return 0;
187 }
188 
smu10_set_clock_limit(struct pp_hwmgr * hwmgr,const void * input)189 static int smu10_set_clock_limit(struct pp_hwmgr *hwmgr, const void *input)
190 {
191 	struct PP_Clocks clocks = {0};
192 	struct pp_display_clock_request clock_req;
193 
194 	clocks.dcefClock = hwmgr->display_config->min_dcef_set_clk;
195 	clock_req.clock_type = amd_pp_dcf_clock;
196 	clock_req.clock_freq_in_khz = clocks.dcefClock * 10;
197 
198 	PP_ASSERT_WITH_CODE(!smu10_display_clock_voltage_request(hwmgr, &clock_req),
199 				"Attempt to set DCF Clock Failed!", return -EINVAL);
200 
201 	return 0;
202 }
203 
smu10_set_min_deep_sleep_dcefclk(struct pp_hwmgr * hwmgr,uint32_t clock)204 static int smu10_set_min_deep_sleep_dcefclk(struct pp_hwmgr *hwmgr, uint32_t clock)
205 {
206 	struct smu10_hwmgr *smu10_data = (struct smu10_hwmgr *)(hwmgr->backend);
207 
208 	if (clock && smu10_data->deep_sleep_dcefclk != clock) {
209 		smu10_data->deep_sleep_dcefclk = clock;
210 		smum_send_msg_to_smc_with_parameter(hwmgr,
211 					PPSMC_MSG_SetMinDeepSleepDcefclk,
212 					smu10_data->deep_sleep_dcefclk,
213 					NULL);
214 	}
215 	return 0;
216 }
217 
smu10_set_hard_min_dcefclk_by_freq(struct pp_hwmgr * hwmgr,uint32_t clock)218 static int smu10_set_hard_min_dcefclk_by_freq(struct pp_hwmgr *hwmgr, uint32_t clock)
219 {
220 	struct smu10_hwmgr *smu10_data = (struct smu10_hwmgr *)(hwmgr->backend);
221 
222 	if (clock && smu10_data->dcf_actual_hard_min_freq != clock) {
223 		smu10_data->dcf_actual_hard_min_freq = clock;
224 		smum_send_msg_to_smc_with_parameter(hwmgr,
225 					PPSMC_MSG_SetHardMinDcefclkByFreq,
226 					smu10_data->dcf_actual_hard_min_freq,
227 					NULL);
228 	}
229 	return 0;
230 }
231 
smu10_set_hard_min_fclk_by_freq(struct pp_hwmgr * hwmgr,uint32_t clock)232 static int smu10_set_hard_min_fclk_by_freq(struct pp_hwmgr *hwmgr, uint32_t clock)
233 {
234 	struct smu10_hwmgr *smu10_data = (struct smu10_hwmgr *)(hwmgr->backend);
235 
236 	if (clock && smu10_data->f_actual_hard_min_freq != clock) {
237 		smu10_data->f_actual_hard_min_freq = clock;
238 		smum_send_msg_to_smc_with_parameter(hwmgr,
239 					PPSMC_MSG_SetHardMinFclkByFreq,
240 					smu10_data->f_actual_hard_min_freq,
241 					NULL);
242 	}
243 	return 0;
244 }
245 
smu10_set_hard_min_gfxclk_by_freq(struct pp_hwmgr * hwmgr,uint32_t clock)246 static int smu10_set_hard_min_gfxclk_by_freq(struct pp_hwmgr *hwmgr, uint32_t clock)
247 {
248 	struct smu10_hwmgr *smu10_data = (struct smu10_hwmgr *)(hwmgr->backend);
249 
250 	if (clock && smu10_data->gfx_actual_soft_min_freq != clock) {
251 		smu10_data->gfx_actual_soft_min_freq = clock;
252 		smum_send_msg_to_smc_with_parameter(hwmgr,
253 					PPSMC_MSG_SetHardMinGfxClk,
254 					clock,
255 					NULL);
256 	}
257 	return 0;
258 }
259 
smu10_set_soft_max_gfxclk_by_freq(struct pp_hwmgr * hwmgr,uint32_t clock)260 static int smu10_set_soft_max_gfxclk_by_freq(struct pp_hwmgr *hwmgr, uint32_t clock)
261 {
262 	struct smu10_hwmgr *smu10_data = (struct smu10_hwmgr *)(hwmgr->backend);
263 
264 	if (clock && smu10_data->gfx_max_freq_limit != (clock * 100))  {
265 		smu10_data->gfx_max_freq_limit = clock * 100;
266 		smum_send_msg_to_smc_with_parameter(hwmgr,
267 					PPSMC_MSG_SetSoftMaxGfxClk,
268 					clock,
269 					NULL);
270 	}
271 	return 0;
272 }
273 
smu10_set_active_display_count(struct pp_hwmgr * hwmgr,uint32_t count)274 static int smu10_set_active_display_count(struct pp_hwmgr *hwmgr, uint32_t count)
275 {
276 	struct smu10_hwmgr *smu10_data = (struct smu10_hwmgr *)(hwmgr->backend);
277 
278 	if (smu10_data->num_active_display != count) {
279 		smu10_data->num_active_display = count;
280 		smum_send_msg_to_smc_with_parameter(hwmgr,
281 				PPSMC_MSG_SetDisplayCount,
282 				smu10_data->num_active_display,
283 				NULL);
284 	}
285 
286 	return 0;
287 }
288 
smu10_set_power_state_tasks(struct pp_hwmgr * hwmgr,const void * input)289 static int smu10_set_power_state_tasks(struct pp_hwmgr *hwmgr, const void *input)
290 {
291 	return smu10_set_clock_limit(hwmgr, input);
292 }
293 
smu10_init_power_gate_state(struct pp_hwmgr * hwmgr)294 static int smu10_init_power_gate_state(struct pp_hwmgr *hwmgr)
295 {
296 	struct smu10_hwmgr *smu10_data = (struct smu10_hwmgr *)(hwmgr->backend);
297 	struct amdgpu_device *adev = hwmgr->adev;
298 
299 	smu10_data->vcn_power_gated = true;
300 	smu10_data->isp_tileA_power_gated = true;
301 	smu10_data->isp_tileB_power_gated = true;
302 
303 	if (adev->pg_flags & AMD_PG_SUPPORT_GFX_PG)
304 		return smum_send_msg_to_smc_with_parameter(hwmgr,
305 							   PPSMC_MSG_SetGfxCGPG,
306 							   true,
307 							   NULL);
308 	else
309 		return 0;
310 }
311 
312 
smu10_setup_asic_task(struct pp_hwmgr * hwmgr)313 static int smu10_setup_asic_task(struct pp_hwmgr *hwmgr)
314 {
315 	return smu10_init_power_gate_state(hwmgr);
316 }
317 
smu10_reset_cc6_data(struct pp_hwmgr * hwmgr)318 static int smu10_reset_cc6_data(struct pp_hwmgr *hwmgr)
319 {
320 	struct smu10_hwmgr *smu10_data = (struct smu10_hwmgr *)(hwmgr->backend);
321 
322 	smu10_data->separation_time = 0;
323 	smu10_data->cc6_disable = false;
324 	smu10_data->pstate_disable = false;
325 	smu10_data->cc6_setting_changed = false;
326 
327 	return 0;
328 }
329 
smu10_power_off_asic(struct pp_hwmgr * hwmgr)330 static int smu10_power_off_asic(struct pp_hwmgr *hwmgr)
331 {
332 	return smu10_reset_cc6_data(hwmgr);
333 }
334 
smu10_is_gfx_on(struct pp_hwmgr * hwmgr)335 static bool smu10_is_gfx_on(struct pp_hwmgr *hwmgr)
336 {
337 	uint32_t reg;
338 	struct amdgpu_device *adev = hwmgr->adev;
339 
340 	reg = RREG32_SOC15(PWR, 0, mmPWR_MISC_CNTL_STATUS);
341 	if ((reg & PWR_MISC_CNTL_STATUS__PWR_GFXOFF_STATUS_MASK) ==
342 	    (0x2 << PWR_MISC_CNTL_STATUS__PWR_GFXOFF_STATUS__SHIFT))
343 		return true;
344 
345 	return false;
346 }
347 
smu10_disable_gfx_off(struct pp_hwmgr * hwmgr)348 static int smu10_disable_gfx_off(struct pp_hwmgr *hwmgr)
349 {
350 	struct amdgpu_device *adev = hwmgr->adev;
351 
352 	if (adev->pm.pp_feature & PP_GFXOFF_MASK) {
353 		smum_send_msg_to_smc(hwmgr, PPSMC_MSG_DisableGfxOff, NULL);
354 
355 		/* confirm gfx is back to "on" state */
356 		while (!smu10_is_gfx_on(hwmgr))
357 			msleep(1);
358 	}
359 
360 	return 0;
361 }
362 
smu10_disable_dpm_tasks(struct pp_hwmgr * hwmgr)363 static int smu10_disable_dpm_tasks(struct pp_hwmgr *hwmgr)
364 {
365 	return 0;
366 }
367 
smu10_enable_gfx_off(struct pp_hwmgr * hwmgr)368 static int smu10_enable_gfx_off(struct pp_hwmgr *hwmgr)
369 {
370 	struct amdgpu_device *adev = hwmgr->adev;
371 
372 	if (adev->pm.pp_feature & PP_GFXOFF_MASK)
373 		smum_send_msg_to_smc(hwmgr, PPSMC_MSG_EnableGfxOff, NULL);
374 
375 	return 0;
376 }
377 
smu10_populate_umdpstate_clocks(struct pp_hwmgr * hwmgr)378 static void smu10_populate_umdpstate_clocks(struct pp_hwmgr *hwmgr)
379 {
380 	hwmgr->pstate_sclk = SMU10_UMD_PSTATE_GFXCLK;
381 	hwmgr->pstate_mclk = SMU10_UMD_PSTATE_FCLK;
382 
383 	smum_send_msg_to_smc(hwmgr,
384 			     PPSMC_MSG_GetMaxGfxclkFrequency,
385 			     &hwmgr->pstate_sclk_peak);
386 	hwmgr->pstate_mclk_peak = SMU10_UMD_PSTATE_PEAK_FCLK;
387 }
388 
smu10_enable_dpm_tasks(struct pp_hwmgr * hwmgr)389 static int smu10_enable_dpm_tasks(struct pp_hwmgr *hwmgr)
390 {
391 	struct amdgpu_device *adev = hwmgr->adev;
392 	struct smu10_hwmgr *smu10_data = (struct smu10_hwmgr *)(hwmgr->backend);
393 	int ret = -EINVAL;
394 
395 	if (adev->in_suspend) {
396 		pr_info("restore the fine grain parameters\n");
397 
398 		ret = smum_send_msg_to_smc_with_parameter(hwmgr,
399 					PPSMC_MSG_SetHardMinGfxClk,
400 					smu10_data->gfx_actual_soft_min_freq,
401 					NULL);
402 		if (ret)
403 			return ret;
404 		ret = smum_send_msg_to_smc_with_parameter(hwmgr,
405 					PPSMC_MSG_SetSoftMaxGfxClk,
406 					smu10_data->gfx_actual_soft_max_freq,
407 					NULL);
408 		if (ret)
409 			return ret;
410 	}
411 
412 	smu10_populate_umdpstate_clocks(hwmgr);
413 
414 	return 0;
415 }
416 
smu10_gfx_off_control(struct pp_hwmgr * hwmgr,bool enable)417 static int smu10_gfx_off_control(struct pp_hwmgr *hwmgr, bool enable)
418 {
419 	if (enable)
420 		return smu10_enable_gfx_off(hwmgr);
421 	else
422 		return smu10_disable_gfx_off(hwmgr);
423 }
424 
smu10_apply_state_adjust_rules(struct pp_hwmgr * hwmgr,struct pp_power_state * prequest_ps,const struct pp_power_state * pcurrent_ps)425 static int smu10_apply_state_adjust_rules(struct pp_hwmgr *hwmgr,
426 				struct pp_power_state  *prequest_ps,
427 			const struct pp_power_state *pcurrent_ps)
428 {
429 	return 0;
430 }
431 
432 /* temporary hardcoded clock voltage breakdown tables */
433 static const DpmClock_t VddDcfClk[] = {
434 	{ 300, 2600},
435 	{ 600, 3200},
436 	{ 600, 3600},
437 };
438 
439 static const DpmClock_t VddSocClk[] = {
440 	{ 478, 2600},
441 	{ 722, 3200},
442 	{ 722, 3600},
443 };
444 
445 static const DpmClock_t VddFClk[] = {
446 	{ 400, 2600},
447 	{1200, 3200},
448 	{1200, 3600},
449 };
450 
451 static const DpmClock_t VddDispClk[] = {
452 	{ 435, 2600},
453 	{ 661, 3200},
454 	{1086, 3600},
455 };
456 
457 static const DpmClock_t VddDppClk[] = {
458 	{ 435, 2600},
459 	{ 661, 3200},
460 	{ 661, 3600},
461 };
462 
463 static const DpmClock_t VddPhyClk[] = {
464 	{ 540, 2600},
465 	{ 810, 3200},
466 	{ 810, 3600},
467 };
468 
smu10_get_clock_voltage_dependency_table(struct pp_hwmgr * hwmgr,struct smu10_voltage_dependency_table ** pptable,uint32_t num_entry,const DpmClock_t * pclk_dependency_table)469 static int smu10_get_clock_voltage_dependency_table(struct pp_hwmgr *hwmgr,
470 			struct smu10_voltage_dependency_table **pptable,
471 			uint32_t num_entry, const DpmClock_t *pclk_dependency_table)
472 {
473 	uint32_t i;
474 	struct smu10_voltage_dependency_table *ptable;
475 
476 	ptable = kzalloc(struct_size(ptable, entries, num_entry), GFP_KERNEL);
477 	if (NULL == ptable)
478 		return -ENOMEM;
479 
480 	ptable->count = num_entry;
481 
482 	for (i = 0; i < ptable->count; i++) {
483 		ptable->entries[i].clk         = pclk_dependency_table->Freq * 100;
484 		ptable->entries[i].vol         = pclk_dependency_table->Vol;
485 		pclk_dependency_table++;
486 	}
487 
488 	*pptable = ptable;
489 
490 	return 0;
491 }
492 
493 
smu10_populate_clock_table(struct pp_hwmgr * hwmgr)494 static int smu10_populate_clock_table(struct pp_hwmgr *hwmgr)
495 {
496 	uint32_t result;
497 
498 	struct smu10_hwmgr *smu10_data = (struct smu10_hwmgr *)(hwmgr->backend);
499 	DpmClocks_t  *table = &(smu10_data->clock_table);
500 	struct smu10_clock_voltage_information *pinfo = &(smu10_data->clock_vol_info);
501 
502 	result = smum_smc_table_manager(hwmgr, (uint8_t *)table, SMU10_CLOCKTABLE, true);
503 
504 	PP_ASSERT_WITH_CODE((0 == result),
505 			"Attempt to copy clock table from smc failed",
506 			return result);
507 
508 	if (0 == result && table->DcefClocks[0].Freq != 0) {
509 		smu10_get_clock_voltage_dependency_table(hwmgr, &pinfo->vdd_dep_on_dcefclk,
510 						NUM_DCEFCLK_DPM_LEVELS,
511 						&smu10_data->clock_table.DcefClocks[0]);
512 		smu10_get_clock_voltage_dependency_table(hwmgr, &pinfo->vdd_dep_on_socclk,
513 						NUM_SOCCLK_DPM_LEVELS,
514 						&smu10_data->clock_table.SocClocks[0]);
515 		smu10_get_clock_voltage_dependency_table(hwmgr, &pinfo->vdd_dep_on_fclk,
516 						NUM_FCLK_DPM_LEVELS,
517 						&smu10_data->clock_table.FClocks[0]);
518 		smu10_get_clock_voltage_dependency_table(hwmgr, &pinfo->vdd_dep_on_mclk,
519 						NUM_MEMCLK_DPM_LEVELS,
520 						&smu10_data->clock_table.MemClocks[0]);
521 	} else {
522 		smu10_get_clock_voltage_dependency_table(hwmgr, &pinfo->vdd_dep_on_dcefclk,
523 						ARRAY_SIZE(VddDcfClk),
524 						&VddDcfClk[0]);
525 		smu10_get_clock_voltage_dependency_table(hwmgr, &pinfo->vdd_dep_on_socclk,
526 						ARRAY_SIZE(VddSocClk),
527 						&VddSocClk[0]);
528 		smu10_get_clock_voltage_dependency_table(hwmgr, &pinfo->vdd_dep_on_fclk,
529 						ARRAY_SIZE(VddFClk),
530 						&VddFClk[0]);
531 	}
532 	smu10_get_clock_voltage_dependency_table(hwmgr, &pinfo->vdd_dep_on_dispclk,
533 					ARRAY_SIZE(VddDispClk),
534 					&VddDispClk[0]);
535 	smu10_get_clock_voltage_dependency_table(hwmgr, &pinfo->vdd_dep_on_dppclk,
536 					ARRAY_SIZE(VddDppClk), &VddDppClk[0]);
537 	smu10_get_clock_voltage_dependency_table(hwmgr, &pinfo->vdd_dep_on_phyclk,
538 					ARRAY_SIZE(VddPhyClk), &VddPhyClk[0]);
539 
540 	smum_send_msg_to_smc(hwmgr, PPSMC_MSG_GetMinGfxclkFrequency, &result);
541 	smu10_data->gfx_min_freq_limit = result / 10 * 1000;
542 
543 	smum_send_msg_to_smc(hwmgr, PPSMC_MSG_GetMaxGfxclkFrequency, &result);
544 	smu10_data->gfx_max_freq_limit = result / 10 * 1000;
545 
546 	return 0;
547 }
548 
smu10_hwmgr_backend_init(struct pp_hwmgr * hwmgr)549 static int smu10_hwmgr_backend_init(struct pp_hwmgr *hwmgr)
550 {
551 	int result = 0;
552 	struct smu10_hwmgr *data;
553 
554 	data = kzalloc(sizeof(struct smu10_hwmgr), GFP_KERNEL);
555 	if (data == NULL)
556 		return -ENOMEM;
557 
558 	hwmgr->backend = data;
559 
560 	result = smu10_initialize_dpm_defaults(hwmgr);
561 	if (result != 0) {
562 		pr_err("smu10_initialize_dpm_defaults failed\n");
563 		return result;
564 	}
565 
566 	smu10_populate_clock_table(hwmgr);
567 
568 	result = smu10_get_system_info_data(hwmgr);
569 	if (result != 0) {
570 		pr_err("smu10_get_system_info_data failed\n");
571 		return result;
572 	}
573 
574 	smu10_construct_boot_state(hwmgr);
575 
576 	hwmgr->platform_descriptor.hardwareActivityPerformanceLevels =
577 						SMU10_MAX_HARDWARE_POWERLEVELS;
578 
579 	hwmgr->platform_descriptor.hardwarePerformanceLevels =
580 						SMU10_MAX_HARDWARE_POWERLEVELS;
581 
582 	hwmgr->platform_descriptor.vbiosInterruptId = 0;
583 
584 	hwmgr->platform_descriptor.clockStep.engineClock = 500;
585 
586 	hwmgr->platform_descriptor.clockStep.memoryClock = 500;
587 
588 	hwmgr->platform_descriptor.minimumClocksReductionPercentage = 50;
589 
590 	/* enable the pp_od_clk_voltage sysfs file */
591 	hwmgr->od_enabled = 1;
592 	/* disabled fine grain tuning function by default */
593 	data->fine_grain_enabled = 0;
594 	return result;
595 }
596 
smu10_hwmgr_backend_fini(struct pp_hwmgr * hwmgr)597 static int smu10_hwmgr_backend_fini(struct pp_hwmgr *hwmgr)
598 {
599 	struct smu10_hwmgr *smu10_data = (struct smu10_hwmgr *)(hwmgr->backend);
600 	struct smu10_clock_voltage_information *pinfo = &(smu10_data->clock_vol_info);
601 
602 	kfree(pinfo->vdd_dep_on_dcefclk);
603 	pinfo->vdd_dep_on_dcefclk = NULL;
604 	kfree(pinfo->vdd_dep_on_socclk);
605 	pinfo->vdd_dep_on_socclk = NULL;
606 	kfree(pinfo->vdd_dep_on_fclk);
607 	pinfo->vdd_dep_on_fclk = NULL;
608 	kfree(pinfo->vdd_dep_on_dispclk);
609 	pinfo->vdd_dep_on_dispclk = NULL;
610 	kfree(pinfo->vdd_dep_on_dppclk);
611 	pinfo->vdd_dep_on_dppclk = NULL;
612 	kfree(pinfo->vdd_dep_on_phyclk);
613 	pinfo->vdd_dep_on_phyclk = NULL;
614 
615 	kfree(hwmgr->dyn_state.vddc_dep_on_dal_pwrl);
616 	hwmgr->dyn_state.vddc_dep_on_dal_pwrl = NULL;
617 
618 	kfree(hwmgr->backend);
619 	hwmgr->backend = NULL;
620 
621 	return 0;
622 }
623 
smu10_dpm_force_dpm_level(struct pp_hwmgr * hwmgr,enum amd_dpm_forced_level level)624 static int smu10_dpm_force_dpm_level(struct pp_hwmgr *hwmgr,
625 				enum amd_dpm_forced_level level)
626 {
627 	struct smu10_hwmgr *data = hwmgr->backend;
628 	uint32_t min_sclk = hwmgr->display_config->min_core_set_clock;
629 	uint32_t min_mclk = hwmgr->display_config->min_mem_set_clock/100;
630 	uint32_t index_fclk = data->clock_vol_info.vdd_dep_on_fclk->count - 1;
631 	uint32_t index_socclk = data->clock_vol_info.vdd_dep_on_socclk->count - 1;
632 	uint32_t fine_grain_min_freq = 0, fine_grain_max_freq = 0;
633 
634 	if (hwmgr->smu_version < 0x1E3700) {
635 		pr_info("smu firmware version too old, can not set dpm level\n");
636 		return 0;
637 	}
638 
639 	if (min_sclk < data->gfx_min_freq_limit)
640 		min_sclk = data->gfx_min_freq_limit;
641 
642 	min_sclk /= 100; /* transfer 10KHz to MHz */
643 	if (min_mclk < data->clock_table.FClocks[0].Freq)
644 		min_mclk = data->clock_table.FClocks[0].Freq;
645 
646 	switch (level) {
647 	case AMD_DPM_FORCED_LEVEL_HIGH:
648 	case AMD_DPM_FORCED_LEVEL_PROFILE_PEAK:
649 		data->fine_grain_enabled = 0;
650 
651 		smum_send_msg_to_smc(hwmgr, PPSMC_MSG_GetMinGfxclkFrequency, &fine_grain_min_freq);
652 		smum_send_msg_to_smc(hwmgr, PPSMC_MSG_GetMaxGfxclkFrequency, &fine_grain_max_freq);
653 
654 		data->gfx_actual_soft_min_freq = fine_grain_min_freq;
655 		data->gfx_actual_soft_max_freq = fine_grain_max_freq;
656 
657 		smum_send_msg_to_smc_with_parameter(hwmgr,
658 						PPSMC_MSG_SetHardMinGfxClk,
659 						data->gfx_max_freq_limit/100,
660 						NULL);
661 		smum_send_msg_to_smc_with_parameter(hwmgr,
662 						PPSMC_MSG_SetHardMinFclkByFreq,
663 						SMU10_UMD_PSTATE_PEAK_FCLK,
664 						NULL);
665 		smum_send_msg_to_smc_with_parameter(hwmgr,
666 						PPSMC_MSG_SetHardMinSocclkByFreq,
667 						SMU10_UMD_PSTATE_PEAK_SOCCLK,
668 						NULL);
669 		smum_send_msg_to_smc_with_parameter(hwmgr,
670 						PPSMC_MSG_SetHardMinVcn,
671 						SMU10_UMD_PSTATE_VCE,
672 						NULL);
673 
674 		smum_send_msg_to_smc_with_parameter(hwmgr,
675 						PPSMC_MSG_SetSoftMaxGfxClk,
676 						data->gfx_max_freq_limit/100,
677 						NULL);
678 		smum_send_msg_to_smc_with_parameter(hwmgr,
679 						PPSMC_MSG_SetSoftMaxFclkByFreq,
680 						SMU10_UMD_PSTATE_PEAK_FCLK,
681 						NULL);
682 		smum_send_msg_to_smc_with_parameter(hwmgr,
683 						PPSMC_MSG_SetSoftMaxSocclkByFreq,
684 						SMU10_UMD_PSTATE_PEAK_SOCCLK,
685 						NULL);
686 		smum_send_msg_to_smc_with_parameter(hwmgr,
687 						PPSMC_MSG_SetSoftMaxVcn,
688 						SMU10_UMD_PSTATE_VCE,
689 						NULL);
690 		break;
691 	case AMD_DPM_FORCED_LEVEL_PROFILE_MIN_SCLK:
692 		data->fine_grain_enabled = 0;
693 
694 		smum_send_msg_to_smc(hwmgr, PPSMC_MSG_GetMinGfxclkFrequency, &fine_grain_min_freq);
695 		smum_send_msg_to_smc(hwmgr, PPSMC_MSG_GetMaxGfxclkFrequency, &fine_grain_max_freq);
696 
697 		data->gfx_actual_soft_min_freq = fine_grain_min_freq;
698 		data->gfx_actual_soft_max_freq = fine_grain_max_freq;
699 
700 		smum_send_msg_to_smc_with_parameter(hwmgr,
701 						PPSMC_MSG_SetHardMinGfxClk,
702 						min_sclk,
703 						NULL);
704 		smum_send_msg_to_smc_with_parameter(hwmgr,
705 						PPSMC_MSG_SetSoftMaxGfxClk,
706 						min_sclk,
707 						NULL);
708 		break;
709 	case AMD_DPM_FORCED_LEVEL_PROFILE_MIN_MCLK:
710 		data->fine_grain_enabled = 0;
711 
712 		smum_send_msg_to_smc(hwmgr, PPSMC_MSG_GetMinGfxclkFrequency, &fine_grain_min_freq);
713 		smum_send_msg_to_smc(hwmgr, PPSMC_MSG_GetMaxGfxclkFrequency, &fine_grain_max_freq);
714 
715 		data->gfx_actual_soft_min_freq = fine_grain_min_freq;
716 		data->gfx_actual_soft_max_freq = fine_grain_max_freq;
717 
718 		smum_send_msg_to_smc_with_parameter(hwmgr,
719 						PPSMC_MSG_SetHardMinFclkByFreq,
720 						min_mclk,
721 						NULL);
722 		smum_send_msg_to_smc_with_parameter(hwmgr,
723 						PPSMC_MSG_SetSoftMaxFclkByFreq,
724 						min_mclk,
725 						NULL);
726 		break;
727 	case AMD_DPM_FORCED_LEVEL_PROFILE_STANDARD:
728 		data->fine_grain_enabled = 0;
729 
730 		smum_send_msg_to_smc(hwmgr, PPSMC_MSG_GetMinGfxclkFrequency, &fine_grain_min_freq);
731 		smum_send_msg_to_smc(hwmgr, PPSMC_MSG_GetMaxGfxclkFrequency, &fine_grain_max_freq);
732 
733 		data->gfx_actual_soft_min_freq = fine_grain_min_freq;
734 		data->gfx_actual_soft_max_freq = fine_grain_max_freq;
735 
736 		smum_send_msg_to_smc_with_parameter(hwmgr,
737 						PPSMC_MSG_SetHardMinGfxClk,
738 						SMU10_UMD_PSTATE_GFXCLK,
739 						NULL);
740 		smum_send_msg_to_smc_with_parameter(hwmgr,
741 						PPSMC_MSG_SetHardMinFclkByFreq,
742 						SMU10_UMD_PSTATE_FCLK,
743 						NULL);
744 		smum_send_msg_to_smc_with_parameter(hwmgr,
745 						PPSMC_MSG_SetHardMinSocclkByFreq,
746 						SMU10_UMD_PSTATE_SOCCLK,
747 						NULL);
748 		smum_send_msg_to_smc_with_parameter(hwmgr,
749 						PPSMC_MSG_SetHardMinVcn,
750 						SMU10_UMD_PSTATE_PROFILE_VCE,
751 						NULL);
752 
753 		smum_send_msg_to_smc_with_parameter(hwmgr,
754 						PPSMC_MSG_SetSoftMaxGfxClk,
755 						SMU10_UMD_PSTATE_GFXCLK,
756 						NULL);
757 		smum_send_msg_to_smc_with_parameter(hwmgr,
758 						PPSMC_MSG_SetSoftMaxFclkByFreq,
759 						SMU10_UMD_PSTATE_FCLK,
760 						NULL);
761 		smum_send_msg_to_smc_with_parameter(hwmgr,
762 						PPSMC_MSG_SetSoftMaxSocclkByFreq,
763 						SMU10_UMD_PSTATE_SOCCLK,
764 						NULL);
765 		smum_send_msg_to_smc_with_parameter(hwmgr,
766 						PPSMC_MSG_SetSoftMaxVcn,
767 						SMU10_UMD_PSTATE_PROFILE_VCE,
768 						NULL);
769 		break;
770 	case AMD_DPM_FORCED_LEVEL_AUTO:
771 		data->fine_grain_enabled = 0;
772 
773 		smum_send_msg_to_smc(hwmgr, PPSMC_MSG_GetMinGfxclkFrequency, &fine_grain_min_freq);
774 		smum_send_msg_to_smc(hwmgr, PPSMC_MSG_GetMaxGfxclkFrequency, &fine_grain_max_freq);
775 
776 		data->gfx_actual_soft_min_freq = fine_grain_min_freq;
777 		data->gfx_actual_soft_max_freq = fine_grain_max_freq;
778 
779 		smum_send_msg_to_smc_with_parameter(hwmgr,
780 						PPSMC_MSG_SetHardMinGfxClk,
781 						min_sclk,
782 						NULL);
783 		smum_send_msg_to_smc_with_parameter(hwmgr,
784 						PPSMC_MSG_SetHardMinFclkByFreq,
785 						hwmgr->display_config->num_display > 3 ?
786 						(data->clock_vol_info.vdd_dep_on_fclk->entries[0].clk / 100) :
787 						min_mclk,
788 						NULL);
789 
790 		smum_send_msg_to_smc_with_parameter(hwmgr,
791 						PPSMC_MSG_SetHardMinSocclkByFreq,
792 						data->clock_vol_info.vdd_dep_on_socclk->entries[0].clk / 100,
793 						NULL);
794 		smum_send_msg_to_smc_with_parameter(hwmgr,
795 						PPSMC_MSG_SetHardMinVcn,
796 						SMU10_UMD_PSTATE_MIN_VCE,
797 						NULL);
798 
799 		smum_send_msg_to_smc_with_parameter(hwmgr,
800 						PPSMC_MSG_SetSoftMaxGfxClk,
801 						data->gfx_max_freq_limit/100,
802 						NULL);
803 		smum_send_msg_to_smc_with_parameter(hwmgr,
804 						PPSMC_MSG_SetSoftMaxFclkByFreq,
805 						data->clock_vol_info.vdd_dep_on_fclk->entries[index_fclk].clk / 100,
806 						NULL);
807 		smum_send_msg_to_smc_with_parameter(hwmgr,
808 						PPSMC_MSG_SetSoftMaxSocclkByFreq,
809 						data->clock_vol_info.vdd_dep_on_socclk->entries[index_socclk].clk / 100,
810 						NULL);
811 		smum_send_msg_to_smc_with_parameter(hwmgr,
812 						PPSMC_MSG_SetSoftMaxVcn,
813 						SMU10_UMD_PSTATE_VCE,
814 						NULL);
815 		break;
816 	case AMD_DPM_FORCED_LEVEL_LOW:
817 		data->fine_grain_enabled = 0;
818 
819 		smum_send_msg_to_smc(hwmgr, PPSMC_MSG_GetMinGfxclkFrequency, &fine_grain_min_freq);
820 		smum_send_msg_to_smc(hwmgr, PPSMC_MSG_GetMaxGfxclkFrequency, &fine_grain_max_freq);
821 
822 		data->gfx_actual_soft_min_freq = fine_grain_min_freq;
823 		data->gfx_actual_soft_max_freq = fine_grain_max_freq;
824 
825 		smum_send_msg_to_smc_with_parameter(hwmgr,
826 						PPSMC_MSG_SetHardMinGfxClk,
827 						data->gfx_min_freq_limit/100,
828 						NULL);
829 		smum_send_msg_to_smc_with_parameter(hwmgr,
830 						PPSMC_MSG_SetSoftMaxGfxClk,
831 						data->gfx_min_freq_limit/100,
832 						NULL);
833 		smum_send_msg_to_smc_with_parameter(hwmgr,
834 						PPSMC_MSG_SetHardMinFclkByFreq,
835 						min_mclk,
836 						NULL);
837 		smum_send_msg_to_smc_with_parameter(hwmgr,
838 						PPSMC_MSG_SetSoftMaxFclkByFreq,
839 						min_mclk,
840 						NULL);
841 		break;
842 	case AMD_DPM_FORCED_LEVEL_MANUAL:
843 		data->fine_grain_enabled = 1;
844 		break;
845 	case AMD_DPM_FORCED_LEVEL_PROFILE_EXIT:
846 	default:
847 		break;
848 	}
849 	return 0;
850 }
851 
smu10_dpm_get_mclk(struct pp_hwmgr * hwmgr,bool low)852 static uint32_t smu10_dpm_get_mclk(struct pp_hwmgr *hwmgr, bool low)
853 {
854 	struct smu10_hwmgr *data;
855 
856 	if (hwmgr == NULL)
857 		return -EINVAL;
858 
859 	data = (struct smu10_hwmgr *)(hwmgr->backend);
860 
861 	if (low)
862 		return data->clock_vol_info.vdd_dep_on_fclk->entries[0].clk;
863 	else
864 		return data->clock_vol_info.vdd_dep_on_fclk->entries[
865 			data->clock_vol_info.vdd_dep_on_fclk->count - 1].clk;
866 }
867 
smu10_dpm_get_sclk(struct pp_hwmgr * hwmgr,bool low)868 static uint32_t smu10_dpm_get_sclk(struct pp_hwmgr *hwmgr, bool low)
869 {
870 	struct smu10_hwmgr *data;
871 
872 	if (hwmgr == NULL)
873 		return -EINVAL;
874 
875 	data = (struct smu10_hwmgr *)(hwmgr->backend);
876 
877 	if (low)
878 		return data->gfx_min_freq_limit;
879 	else
880 		return data->gfx_max_freq_limit;
881 }
882 
smu10_dpm_patch_boot_state(struct pp_hwmgr * hwmgr,struct pp_hw_power_state * hw_ps)883 static int smu10_dpm_patch_boot_state(struct pp_hwmgr *hwmgr,
884 					struct pp_hw_power_state *hw_ps)
885 {
886 	return 0;
887 }
888 
smu10_dpm_get_pp_table_entry_callback(struct pp_hwmgr * hwmgr,struct pp_hw_power_state * hw_ps,unsigned int index,const void * clock_info)889 static int smu10_dpm_get_pp_table_entry_callback(
890 						     struct pp_hwmgr *hwmgr,
891 					   struct pp_hw_power_state *hw_ps,
892 							  unsigned int index,
893 						     const void *clock_info)
894 {
895 	struct smu10_power_state *smu10_ps = cast_smu10_ps(hw_ps);
896 
897 	smu10_ps->levels[index].engine_clock = 0;
898 
899 	smu10_ps->levels[index].vddc_index = 0;
900 	smu10_ps->level = index + 1;
901 
902 	if (phm_cap_enabled(hwmgr->platform_descriptor.platformCaps, PHM_PlatformCaps_SclkDeepSleep)) {
903 		smu10_ps->levels[index].ds_divider_index = 5;
904 		smu10_ps->levels[index].ss_divider_index = 5;
905 	}
906 
907 	return 0;
908 }
909 
smu10_dpm_get_num_of_pp_table_entries(struct pp_hwmgr * hwmgr)910 static int smu10_dpm_get_num_of_pp_table_entries(struct pp_hwmgr *hwmgr)
911 {
912 	int result;
913 	unsigned long ret = 0;
914 
915 	result = pp_tables_get_num_of_entries(hwmgr, &ret);
916 
917 	return result ? 0 : ret;
918 }
919 
smu10_dpm_get_pp_table_entry(struct pp_hwmgr * hwmgr,unsigned long entry,struct pp_power_state * ps)920 static int smu10_dpm_get_pp_table_entry(struct pp_hwmgr *hwmgr,
921 		    unsigned long entry, struct pp_power_state *ps)
922 {
923 	int result;
924 	struct smu10_power_state *smu10_ps;
925 
926 	ps->hardware.magic = SMU10_Magic;
927 
928 	smu10_ps = cast_smu10_ps(&(ps->hardware));
929 
930 	result = pp_tables_get_entry(hwmgr, entry, ps,
931 			smu10_dpm_get_pp_table_entry_callback);
932 
933 	smu10_ps->uvd_clocks.vclk = ps->uvd_clocks.VCLK;
934 	smu10_ps->uvd_clocks.dclk = ps->uvd_clocks.DCLK;
935 
936 	return result;
937 }
938 
smu10_get_power_state_size(struct pp_hwmgr * hwmgr)939 static int smu10_get_power_state_size(struct pp_hwmgr *hwmgr)
940 {
941 	return sizeof(struct smu10_power_state);
942 }
943 
smu10_set_cpu_power_state(struct pp_hwmgr * hwmgr)944 static int smu10_set_cpu_power_state(struct pp_hwmgr *hwmgr)
945 {
946 	return 0;
947 }
948 
949 
smu10_store_cc6_data(struct pp_hwmgr * hwmgr,uint32_t separation_time,bool cc6_disable,bool pstate_disable,bool pstate_switch_disable)950 static int smu10_store_cc6_data(struct pp_hwmgr *hwmgr, uint32_t separation_time,
951 			bool cc6_disable, bool pstate_disable, bool pstate_switch_disable)
952 {
953 	struct smu10_hwmgr *data = (struct smu10_hwmgr *)(hwmgr->backend);
954 
955 	if (separation_time != data->separation_time ||
956 			cc6_disable != data->cc6_disable ||
957 			pstate_disable != data->pstate_disable) {
958 		data->separation_time = separation_time;
959 		data->cc6_disable = cc6_disable;
960 		data->pstate_disable = pstate_disable;
961 		data->cc6_setting_changed = true;
962 	}
963 	return 0;
964 }
965 
smu10_get_dal_power_level(struct pp_hwmgr * hwmgr,struct amd_pp_simple_clock_info * info)966 static int smu10_get_dal_power_level(struct pp_hwmgr *hwmgr,
967 		struct amd_pp_simple_clock_info *info)
968 {
969 	return -EINVAL;
970 }
971 
smu10_force_clock_level(struct pp_hwmgr * hwmgr,enum pp_clock_type type,uint32_t mask)972 static int smu10_force_clock_level(struct pp_hwmgr *hwmgr,
973 		enum pp_clock_type type, uint32_t mask)
974 {
975 	struct smu10_hwmgr *data = hwmgr->backend;
976 	struct smu10_voltage_dependency_table *mclk_table =
977 					data->clock_vol_info.vdd_dep_on_fclk;
978 	uint32_t low, high;
979 
980 	low = mask ? (ffs(mask) - 1) : 0;
981 	high = mask ? (fls(mask) - 1) : 0;
982 
983 	switch (type) {
984 	case PP_SCLK:
985 		if (low > 2 || high > 2) {
986 			pr_info("Currently sclk only support 3 levels on RV\n");
987 			return -EINVAL;
988 		}
989 
990 		smum_send_msg_to_smc_with_parameter(hwmgr,
991 						PPSMC_MSG_SetHardMinGfxClk,
992 						low == 2 ? data->gfx_max_freq_limit/100 :
993 						low == 1 ? SMU10_UMD_PSTATE_GFXCLK :
994 						data->gfx_min_freq_limit/100,
995 						NULL);
996 
997 		smum_send_msg_to_smc_with_parameter(hwmgr,
998 						PPSMC_MSG_SetSoftMaxGfxClk,
999 						high == 0 ? data->gfx_min_freq_limit/100 :
1000 						high == 1 ? SMU10_UMD_PSTATE_GFXCLK :
1001 						data->gfx_max_freq_limit/100,
1002 						NULL);
1003 		break;
1004 
1005 	case PP_MCLK:
1006 		if (low > mclk_table->count - 1 || high > mclk_table->count - 1)
1007 			return -EINVAL;
1008 
1009 		smum_send_msg_to_smc_with_parameter(hwmgr,
1010 						PPSMC_MSG_SetHardMinFclkByFreq,
1011 						mclk_table->entries[low].clk/100,
1012 						NULL);
1013 
1014 		smum_send_msg_to_smc_with_parameter(hwmgr,
1015 						PPSMC_MSG_SetSoftMaxFclkByFreq,
1016 						mclk_table->entries[high].clk/100,
1017 						NULL);
1018 		break;
1019 
1020 	case PP_PCIE:
1021 	default:
1022 		break;
1023 	}
1024 	return 0;
1025 }
1026 
smu10_print_clock_levels(struct pp_hwmgr * hwmgr,enum pp_clock_type type,char * buf)1027 static int smu10_print_clock_levels(struct pp_hwmgr *hwmgr,
1028 		enum pp_clock_type type, char *buf)
1029 {
1030 	struct smu10_hwmgr *data = (struct smu10_hwmgr *)(hwmgr->backend);
1031 	struct smu10_voltage_dependency_table *mclk_table =
1032 			data->clock_vol_info.vdd_dep_on_fclk;
1033 	uint32_t i, now, size = 0;
1034 	uint32_t min_freq, max_freq = 0;
1035 	uint32_t ret = 0;
1036 
1037 	switch (type) {
1038 	case PP_SCLK:
1039 		ret = smum_send_msg_to_smc(hwmgr, PPSMC_MSG_GetGfxclkFrequency, &now);
1040 		if (ret)
1041 			return ret;
1042 
1043 	/* driver only know min/max gfx_clk, Add level 1 for all other gfx clks */
1044 		if (now == data->gfx_max_freq_limit/100)
1045 			i = 2;
1046 		else if (now == data->gfx_min_freq_limit/100)
1047 			i = 0;
1048 		else
1049 			i = 1;
1050 
1051 		size += sprintf(buf + size, "0: %uMhz %s\n",
1052 					data->gfx_min_freq_limit/100,
1053 					i == 0 ? "*" : "");
1054 		size += sprintf(buf + size, "1: %uMhz %s\n",
1055 					i == 1 ? now : SMU10_UMD_PSTATE_GFXCLK,
1056 					i == 1 ? "*" : "");
1057 		size += sprintf(buf + size, "2: %uMhz %s\n",
1058 					data->gfx_max_freq_limit/100,
1059 					i == 2 ? "*" : "");
1060 		break;
1061 	case PP_MCLK:
1062 		ret = smum_send_msg_to_smc(hwmgr, PPSMC_MSG_GetFclkFrequency, &now);
1063 		if (ret)
1064 			return ret;
1065 
1066 		for (i = 0; i < mclk_table->count; i++)
1067 			size += sprintf(buf + size, "%d: %uMhz %s\n",
1068 					i,
1069 					mclk_table->entries[i].clk / 100,
1070 					((mclk_table->entries[i].clk / 100)
1071 					 == now) ? "*" : "");
1072 		break;
1073 	case OD_SCLK:
1074 		if (hwmgr->od_enabled) {
1075 			ret = smum_send_msg_to_smc(hwmgr, PPSMC_MSG_GetMinGfxclkFrequency, &min_freq);
1076 			if (ret)
1077 				return ret;
1078 			ret = smum_send_msg_to_smc(hwmgr, PPSMC_MSG_GetMaxGfxclkFrequency, &max_freq);
1079 			if (ret)
1080 				return ret;
1081 
1082 			size += sprintf(buf + size, "%s:\n", "OD_SCLK");
1083 			size += sprintf(buf + size, "0: %10uMhz\n",
1084 			(data->gfx_actual_soft_min_freq > 0) ? data->gfx_actual_soft_min_freq : min_freq);
1085 			size += sprintf(buf + size, "1: %10uMhz\n",
1086 			(data->gfx_actual_soft_max_freq > 0) ? data->gfx_actual_soft_max_freq : max_freq);
1087 		}
1088 		break;
1089 	case OD_RANGE:
1090 		if (hwmgr->od_enabled) {
1091 			ret = smum_send_msg_to_smc(hwmgr, PPSMC_MSG_GetMinGfxclkFrequency, &min_freq);
1092 			if (ret)
1093 				return ret;
1094 			ret = smum_send_msg_to_smc(hwmgr, PPSMC_MSG_GetMaxGfxclkFrequency, &max_freq);
1095 			if (ret)
1096 				return ret;
1097 
1098 			size += sprintf(buf + size, "%s:\n", "OD_RANGE");
1099 			size += sprintf(buf + size, "SCLK: %7uMHz %10uMHz\n",
1100 				min_freq, max_freq);
1101 		}
1102 		break;
1103 	default:
1104 		break;
1105 	}
1106 
1107 	return size;
1108 }
1109 
smu10_get_performance_level(struct pp_hwmgr * hwmgr,const struct pp_hw_power_state * state,PHM_PerformanceLevelDesignation designation,uint32_t index,PHM_PerformanceLevel * level)1110 static int smu10_get_performance_level(struct pp_hwmgr *hwmgr, const struct pp_hw_power_state *state,
1111 				PHM_PerformanceLevelDesignation designation, uint32_t index,
1112 				PHM_PerformanceLevel *level)
1113 {
1114 	struct smu10_hwmgr *data;
1115 
1116 	if (level == NULL || hwmgr == NULL || state == NULL)
1117 		return -EINVAL;
1118 
1119 	data = (struct smu10_hwmgr *)(hwmgr->backend);
1120 
1121 	if (index == 0) {
1122 		level->memory_clock = data->clock_vol_info.vdd_dep_on_fclk->entries[0].clk;
1123 		level->coreClock = data->gfx_min_freq_limit;
1124 	} else {
1125 		level->memory_clock = data->clock_vol_info.vdd_dep_on_fclk->entries[
1126 			data->clock_vol_info.vdd_dep_on_fclk->count - 1].clk;
1127 		level->coreClock = data->gfx_max_freq_limit;
1128 	}
1129 
1130 	level->nonLocalMemoryFreq = 0;
1131 	level->nonLocalMemoryWidth = 0;
1132 
1133 	return 0;
1134 }
1135 
smu10_get_current_shallow_sleep_clocks(struct pp_hwmgr * hwmgr,const struct pp_hw_power_state * state,struct pp_clock_info * clock_info)1136 static int smu10_get_current_shallow_sleep_clocks(struct pp_hwmgr *hwmgr,
1137 	const struct pp_hw_power_state *state, struct pp_clock_info *clock_info)
1138 {
1139 	const struct smu10_power_state *ps = cast_const_smu10_ps(state);
1140 
1141 	clock_info->min_eng_clk = ps->levels[0].engine_clock / (1 << (ps->levels[0].ss_divider_index));
1142 	clock_info->max_eng_clk = ps->levels[ps->level - 1].engine_clock / (1 << (ps->levels[ps->level - 1].ss_divider_index));
1143 
1144 	return 0;
1145 }
1146 
1147 #define MEM_FREQ_LOW_LATENCY        25000
1148 #define MEM_FREQ_HIGH_LATENCY       80000
1149 #define MEM_LATENCY_HIGH            245
1150 #define MEM_LATENCY_LOW             35
1151 #define MEM_LATENCY_ERR             0xFFFF
1152 
1153 
smu10_get_mem_latency(struct pp_hwmgr * hwmgr,uint32_t clock)1154 static uint32_t smu10_get_mem_latency(struct pp_hwmgr *hwmgr,
1155 		uint32_t clock)
1156 {
1157 	if (clock >= MEM_FREQ_LOW_LATENCY &&
1158 			clock < MEM_FREQ_HIGH_LATENCY)
1159 		return MEM_LATENCY_HIGH;
1160 	else if (clock >= MEM_FREQ_HIGH_LATENCY)
1161 		return MEM_LATENCY_LOW;
1162 	else
1163 		return MEM_LATENCY_ERR;
1164 }
1165 
smu10_get_clock_by_type_with_latency(struct pp_hwmgr * hwmgr,enum amd_pp_clock_type type,struct pp_clock_levels_with_latency * clocks)1166 static int smu10_get_clock_by_type_with_latency(struct pp_hwmgr *hwmgr,
1167 		enum amd_pp_clock_type type,
1168 		struct pp_clock_levels_with_latency *clocks)
1169 {
1170 	uint32_t i;
1171 	struct smu10_hwmgr *smu10_data = (struct smu10_hwmgr *)(hwmgr->backend);
1172 	struct smu10_clock_voltage_information *pinfo = &(smu10_data->clock_vol_info);
1173 	struct smu10_voltage_dependency_table *pclk_vol_table;
1174 	bool latency_required = false;
1175 
1176 	if (pinfo == NULL)
1177 		return -EINVAL;
1178 
1179 	switch (type) {
1180 	case amd_pp_mem_clock:
1181 		pclk_vol_table = pinfo->vdd_dep_on_mclk;
1182 		latency_required = true;
1183 		break;
1184 	case amd_pp_f_clock:
1185 		pclk_vol_table = pinfo->vdd_dep_on_fclk;
1186 		latency_required = true;
1187 		break;
1188 	case amd_pp_dcf_clock:
1189 		pclk_vol_table = pinfo->vdd_dep_on_dcefclk;
1190 		break;
1191 	case amd_pp_disp_clock:
1192 		pclk_vol_table = pinfo->vdd_dep_on_dispclk;
1193 		break;
1194 	case amd_pp_phy_clock:
1195 		pclk_vol_table = pinfo->vdd_dep_on_phyclk;
1196 		break;
1197 	case amd_pp_dpp_clock:
1198 		pclk_vol_table = pinfo->vdd_dep_on_dppclk;
1199 		break;
1200 	default:
1201 		return -EINVAL;
1202 	}
1203 
1204 	if (pclk_vol_table == NULL || pclk_vol_table->count == 0)
1205 		return -EINVAL;
1206 
1207 	clocks->num_levels = 0;
1208 	for (i = 0; i < pclk_vol_table->count; i++) {
1209 		if (pclk_vol_table->entries[i].clk) {
1210 			clocks->data[clocks->num_levels].clocks_in_khz =
1211 				pclk_vol_table->entries[i].clk * 10;
1212 			clocks->data[clocks->num_levels].latency_in_us = latency_required ?
1213 				smu10_get_mem_latency(hwmgr,
1214 						      pclk_vol_table->entries[i].clk) :
1215 				0;
1216 			clocks->num_levels++;
1217 		}
1218 	}
1219 
1220 	return 0;
1221 }
1222 
smu10_get_clock_by_type_with_voltage(struct pp_hwmgr * hwmgr,enum amd_pp_clock_type type,struct pp_clock_levels_with_voltage * clocks)1223 static int smu10_get_clock_by_type_with_voltage(struct pp_hwmgr *hwmgr,
1224 		enum amd_pp_clock_type type,
1225 		struct pp_clock_levels_with_voltage *clocks)
1226 {
1227 	uint32_t i;
1228 	struct smu10_hwmgr *smu10_data = (struct smu10_hwmgr *)(hwmgr->backend);
1229 	struct smu10_clock_voltage_information *pinfo = &(smu10_data->clock_vol_info);
1230 	struct smu10_voltage_dependency_table *pclk_vol_table = NULL;
1231 
1232 	if (pinfo == NULL)
1233 		return -EINVAL;
1234 
1235 	switch (type) {
1236 	case amd_pp_mem_clock:
1237 		pclk_vol_table = pinfo->vdd_dep_on_mclk;
1238 		break;
1239 	case amd_pp_f_clock:
1240 		pclk_vol_table = pinfo->vdd_dep_on_fclk;
1241 		break;
1242 	case amd_pp_dcf_clock:
1243 		pclk_vol_table = pinfo->vdd_dep_on_dcefclk;
1244 		break;
1245 	case amd_pp_soc_clock:
1246 		pclk_vol_table = pinfo->vdd_dep_on_socclk;
1247 		break;
1248 	case amd_pp_disp_clock:
1249 		pclk_vol_table = pinfo->vdd_dep_on_dispclk;
1250 		break;
1251 	case amd_pp_phy_clock:
1252 		pclk_vol_table = pinfo->vdd_dep_on_phyclk;
1253 		break;
1254 	default:
1255 		return -EINVAL;
1256 	}
1257 
1258 	if (pclk_vol_table == NULL || pclk_vol_table->count == 0)
1259 		return -EINVAL;
1260 
1261 	clocks->num_levels = 0;
1262 	for (i = 0; i < pclk_vol_table->count; i++) {
1263 		if (pclk_vol_table->entries[i].clk) {
1264 			clocks->data[clocks->num_levels].clocks_in_khz = pclk_vol_table->entries[i].clk  * 10;
1265 			clocks->data[clocks->num_levels].voltage_in_mv = pclk_vol_table->entries[i].vol;
1266 			clocks->num_levels++;
1267 		}
1268 	}
1269 
1270 	return 0;
1271 }
1272 
1273 
1274 
smu10_get_max_high_clocks(struct pp_hwmgr * hwmgr,struct amd_pp_simple_clock_info * clocks)1275 static int smu10_get_max_high_clocks(struct pp_hwmgr *hwmgr, struct amd_pp_simple_clock_info *clocks)
1276 {
1277 	clocks->engine_max_clock = 80000; /* driver can't get engine clock, temp hard code to 800MHz */
1278 	return 0;
1279 }
1280 
smu10_thermal_get_temperature(struct pp_hwmgr * hwmgr)1281 static int smu10_thermal_get_temperature(struct pp_hwmgr *hwmgr)
1282 {
1283 	struct amdgpu_device *adev = hwmgr->adev;
1284 	uint32_t reg_value = RREG32_SOC15(THM, 0, mmTHM_TCON_CUR_TMP);
1285 	int cur_temp =
1286 		(reg_value & THM_TCON_CUR_TMP__CUR_TEMP_MASK) >> THM_TCON_CUR_TMP__CUR_TEMP__SHIFT;
1287 
1288 	if (cur_temp & THM_TCON_CUR_TMP__CUR_TEMP_RANGE_SEL_MASK)
1289 		cur_temp = ((cur_temp / 8) - 49) * PP_TEMPERATURE_UNITS_PER_CENTIGRADES;
1290 	else
1291 		cur_temp = (cur_temp / 8) * PP_TEMPERATURE_UNITS_PER_CENTIGRADES;
1292 
1293 	return cur_temp;
1294 }
1295 
smu10_read_sensor(struct pp_hwmgr * hwmgr,int idx,void * value,int * size)1296 static int smu10_read_sensor(struct pp_hwmgr *hwmgr, int idx,
1297 			  void *value, int *size)
1298 {
1299 	struct smu10_hwmgr *smu10_data = (struct smu10_hwmgr *)(hwmgr->backend);
1300 	struct amdgpu_device *adev = hwmgr->adev;
1301 	uint32_t sclk, mclk, activity_percent;
1302 	bool has_gfx_busy;
1303 	int ret = 0;
1304 
1305 	/* GetGfxBusy support was added on RV SMU FW 30.85.00 and PCO 4.30.59 */
1306 	if ((adev->apu_flags & AMD_APU_IS_PICASSO) &&
1307 	    (hwmgr->smu_version >= 0x41e3b))
1308 		has_gfx_busy = true;
1309 	else if ((adev->apu_flags & AMD_APU_IS_RAVEN) &&
1310 		 (hwmgr->smu_version >= 0x1e5500))
1311 		has_gfx_busy = true;
1312 	else
1313 		has_gfx_busy = false;
1314 
1315 	switch (idx) {
1316 	case AMDGPU_PP_SENSOR_GFX_SCLK:
1317 		smum_send_msg_to_smc(hwmgr, PPSMC_MSG_GetGfxclkFrequency, &sclk);
1318 			/* in units of 10KHZ */
1319 		*((uint32_t *)value) = sclk * 100;
1320 		*size = 4;
1321 		break;
1322 	case AMDGPU_PP_SENSOR_GFX_MCLK:
1323 		smum_send_msg_to_smc(hwmgr, PPSMC_MSG_GetFclkFrequency, &mclk);
1324 			/* in units of 10KHZ */
1325 		*((uint32_t *)value) = mclk * 100;
1326 		*size = 4;
1327 		break;
1328 	case AMDGPU_PP_SENSOR_GPU_TEMP:
1329 		*((uint32_t *)value) = smu10_thermal_get_temperature(hwmgr);
1330 		break;
1331 	case AMDGPU_PP_SENSOR_VCN_POWER_STATE:
1332 		*(uint32_t *)value =  smu10_data->vcn_power_gated ? 0 : 1;
1333 		*size = 4;
1334 		break;
1335 	case AMDGPU_PP_SENSOR_GPU_LOAD:
1336 		if (!has_gfx_busy)
1337 			ret = -EOPNOTSUPP;
1338 		else {
1339 			ret = smum_send_msg_to_smc(hwmgr,
1340 						   PPSMC_MSG_GetGfxBusy,
1341 						   &activity_percent);
1342 			if (!ret)
1343 				*((uint32_t *)value) = min(activity_percent, (u32)100);
1344 			else
1345 				ret = -EIO;
1346 		}
1347 		break;
1348 	default:
1349 		ret = -EOPNOTSUPP;
1350 		break;
1351 	}
1352 
1353 	return ret;
1354 }
1355 
smu10_set_watermarks_for_clocks_ranges(struct pp_hwmgr * hwmgr,void * clock_ranges)1356 static int smu10_set_watermarks_for_clocks_ranges(struct pp_hwmgr *hwmgr,
1357 		void *clock_ranges)
1358 {
1359 	struct smu10_hwmgr *data = hwmgr->backend;
1360 	struct dm_pp_wm_sets_with_clock_ranges_soc15 *wm_with_clock_ranges = clock_ranges;
1361 	Watermarks_t *table = &(data->water_marks_table);
1362 	struct amdgpu_device *adev = hwmgr->adev;
1363 	int i;
1364 
1365 	smu_set_watermarks_for_clocks_ranges(table, wm_with_clock_ranges);
1366 
1367 	if (adev->apu_flags & AMD_APU_IS_RAVEN2) {
1368 		for (i = 0; i < NUM_WM_RANGES; i++)
1369 			table->WatermarkRow[WM_DCFCLK][i].WmType = (uint8_t)0;
1370 
1371 		for (i = 0; i < NUM_WM_RANGES; i++)
1372 			table->WatermarkRow[WM_SOCCLK][i].WmType = (uint8_t)0;
1373 	}
1374 
1375 	smum_smc_table_manager(hwmgr, (uint8_t *)table, (uint16_t)SMU10_WMTABLE, false);
1376 	data->water_marks_exist = true;
1377 	return 0;
1378 }
1379 
smu10_smus_notify_pwe(struct pp_hwmgr * hwmgr)1380 static int smu10_smus_notify_pwe(struct pp_hwmgr *hwmgr)
1381 {
1382 
1383 	return smum_send_msg_to_smc(hwmgr, PPSMC_MSG_SetRccPfcPmeRestoreRegister, NULL);
1384 }
1385 
smu10_powergate_mmhub(struct pp_hwmgr * hwmgr)1386 static int smu10_powergate_mmhub(struct pp_hwmgr *hwmgr)
1387 {
1388 	return smum_send_msg_to_smc(hwmgr, PPSMC_MSG_PowerGateMmHub, NULL);
1389 }
1390 
smu10_powergate_sdma(struct pp_hwmgr * hwmgr,bool gate)1391 static int smu10_powergate_sdma(struct pp_hwmgr *hwmgr, bool gate)
1392 {
1393 	if (gate)
1394 		return smum_send_msg_to_smc(hwmgr, PPSMC_MSG_PowerDownSdma, NULL);
1395 	else
1396 		return smum_send_msg_to_smc(hwmgr, PPSMC_MSG_PowerUpSdma, NULL);
1397 }
1398 
smu10_powergate_vcn(struct pp_hwmgr * hwmgr,bool bgate)1399 static void smu10_powergate_vcn(struct pp_hwmgr *hwmgr, bool bgate)
1400 {
1401 	struct smu10_hwmgr *smu10_data = (struct smu10_hwmgr *)(hwmgr->backend);
1402 
1403 	if (bgate) {
1404 		amdgpu_device_ip_set_powergating_state(hwmgr->adev,
1405 						AMD_IP_BLOCK_TYPE_VCN,
1406 						AMD_PG_STATE_GATE);
1407 		smum_send_msg_to_smc_with_parameter(hwmgr,
1408 					PPSMC_MSG_PowerDownVcn, 0, NULL);
1409 		smu10_data->vcn_power_gated = true;
1410 	} else {
1411 		smum_send_msg_to_smc_with_parameter(hwmgr,
1412 						PPSMC_MSG_PowerUpVcn, 0, NULL);
1413 		amdgpu_device_ip_set_powergating_state(hwmgr->adev,
1414 						AMD_IP_BLOCK_TYPE_VCN,
1415 						AMD_PG_STATE_UNGATE);
1416 		smu10_data->vcn_power_gated = false;
1417 	}
1418 }
1419 
conv_power_profile_to_pplib_workload(int power_profile)1420 static int conv_power_profile_to_pplib_workload(int power_profile)
1421 {
1422 	int pplib_workload = 0;
1423 
1424 	switch (power_profile) {
1425 	case PP_SMC_POWER_PROFILE_FULLSCREEN3D:
1426 		pplib_workload = WORKLOAD_PPLIB_FULL_SCREEN_3D_BIT;
1427 		break;
1428 	case PP_SMC_POWER_PROFILE_VIDEO:
1429 		pplib_workload = WORKLOAD_PPLIB_VIDEO_BIT;
1430 		break;
1431 	case PP_SMC_POWER_PROFILE_VR:
1432 		pplib_workload = WORKLOAD_PPLIB_VR_BIT;
1433 		break;
1434 	case PP_SMC_POWER_PROFILE_COMPUTE:
1435 		pplib_workload = WORKLOAD_PPLIB_COMPUTE_BIT;
1436 		break;
1437 	case PP_SMC_POWER_PROFILE_CUSTOM:
1438 		pplib_workload = WORKLOAD_PPLIB_CUSTOM_BIT;
1439 		break;
1440 	}
1441 
1442 	return pplib_workload;
1443 }
1444 
smu10_get_power_profile_mode(struct pp_hwmgr * hwmgr,char * buf)1445 static int smu10_get_power_profile_mode(struct pp_hwmgr *hwmgr, char *buf)
1446 {
1447 	uint32_t i, size = 0;
1448 	static const uint8_t
1449 		profile_mode_setting[6][4] = {{70, 60, 0, 0,},
1450 						{70, 60, 1, 3,},
1451 						{90, 60, 0, 0,},
1452 						{70, 60, 0, 0,},
1453 						{70, 90, 0, 0,},
1454 						{30, 60, 0, 6,},
1455 						};
1456 	static const char *title[6] = {"NUM",
1457 			"MODE_NAME",
1458 			"BUSY_SET_POINT",
1459 			"FPS",
1460 			"USE_RLC_BUSY",
1461 			"MIN_ACTIVE_LEVEL"};
1462 
1463 	if (!buf)
1464 		return -EINVAL;
1465 
1466 	phm_get_sysfs_buf(&buf, &size);
1467 
1468 	size += sysfs_emit_at(buf, size, "%s %16s %s %s %s %s\n", title[0],
1469 			title[1], title[2], title[3], title[4], title[5]);
1470 
1471 	for (i = 0; i <= PP_SMC_POWER_PROFILE_COMPUTE; i++)
1472 		size += sysfs_emit_at(buf, size, "%3d %14s%s: %14d %3d %10d %14d\n",
1473 			i, amdgpu_pp_profile_name[i], (i == hwmgr->power_profile_mode) ? "*" : " ",
1474 			profile_mode_setting[i][0], profile_mode_setting[i][1],
1475 			profile_mode_setting[i][2], profile_mode_setting[i][3]);
1476 
1477 	return size;
1478 }
1479 
smu10_is_raven1_refresh(struct pp_hwmgr * hwmgr)1480 static bool smu10_is_raven1_refresh(struct pp_hwmgr *hwmgr)
1481 {
1482 	struct amdgpu_device *adev = hwmgr->adev;
1483 	if ((adev->apu_flags & AMD_APU_IS_RAVEN) &&
1484 	    (hwmgr->smu_version >= 0x41e2b))
1485 		return true;
1486 	else
1487 		return false;
1488 }
1489 
smu10_set_power_profile_mode(struct pp_hwmgr * hwmgr,long * input,uint32_t size)1490 static int smu10_set_power_profile_mode(struct pp_hwmgr *hwmgr, long *input, uint32_t size)
1491 {
1492 	int workload_type = 0;
1493 	int result = 0;
1494 
1495 	if (input[size] > PP_SMC_POWER_PROFILE_COMPUTE) {
1496 		pr_err("Invalid power profile mode %ld\n", input[size]);
1497 		return -EINVAL;
1498 	}
1499 	if (hwmgr->power_profile_mode == input[size])
1500 		return 0;
1501 
1502 	/* conv PP_SMC_POWER_PROFILE* to WORKLOAD_PPLIB_*_BIT */
1503 	workload_type =
1504 		conv_power_profile_to_pplib_workload(input[size]);
1505 	if (workload_type &&
1506 	    smu10_is_raven1_refresh(hwmgr) &&
1507 	    !hwmgr->gfxoff_state_changed_by_workload) {
1508 		smu10_gfx_off_control(hwmgr, false);
1509 		hwmgr->gfxoff_state_changed_by_workload = true;
1510 	}
1511 	result = smum_send_msg_to_smc_with_parameter(hwmgr, PPSMC_MSG_ActiveProcessNotify,
1512 						1 << workload_type,
1513 						NULL);
1514 	if (!result)
1515 		hwmgr->power_profile_mode = input[size];
1516 	if (workload_type && hwmgr->gfxoff_state_changed_by_workload) {
1517 		smu10_gfx_off_control(hwmgr, true);
1518 		hwmgr->gfxoff_state_changed_by_workload = false;
1519 	}
1520 
1521 	return 0;
1522 }
1523 
smu10_asic_reset(struct pp_hwmgr * hwmgr,enum SMU_ASIC_RESET_MODE mode)1524 static int smu10_asic_reset(struct pp_hwmgr *hwmgr, enum SMU_ASIC_RESET_MODE mode)
1525 {
1526 	return smum_send_msg_to_smc_with_parameter(hwmgr,
1527 						   PPSMC_MSG_DeviceDriverReset,
1528 						   mode,
1529 						   NULL);
1530 }
1531 
smu10_set_fine_grain_clk_vol(struct pp_hwmgr * hwmgr,enum PP_OD_DPM_TABLE_COMMAND type,long * input,uint32_t size)1532 static int smu10_set_fine_grain_clk_vol(struct pp_hwmgr *hwmgr,
1533 					enum PP_OD_DPM_TABLE_COMMAND type,
1534 					long *input, uint32_t size)
1535 {
1536 	uint32_t min_freq, max_freq = 0;
1537 	struct smu10_hwmgr *smu10_data = (struct smu10_hwmgr *)(hwmgr->backend);
1538 	int ret = 0;
1539 
1540 	if (!hwmgr->od_enabled) {
1541 		pr_err("Fine grain not support\n");
1542 		return -EINVAL;
1543 	}
1544 
1545 	if (!smu10_data->fine_grain_enabled) {
1546 		pr_err("pp_od_clk_voltage is not accessible if power_dpm_force_performance_level is not in manual mode!\n");
1547 		return -EINVAL;
1548 	}
1549 
1550 	if (type == PP_OD_EDIT_SCLK_VDDC_TABLE) {
1551 		if (size != 2) {
1552 			pr_err("Input parameter number not correct\n");
1553 			return -EINVAL;
1554 		}
1555 
1556 		if (input[0] == 0) {
1557 			ret = smum_send_msg_to_smc(hwmgr, PPSMC_MSG_GetMinGfxclkFrequency, &min_freq);
1558 			if (ret)
1559 				return ret;
1560 
1561 			if (input[1] < min_freq) {
1562 				pr_err("Fine grain setting minimum sclk (%ld) MHz is less than the minimum allowed (%d) MHz\n",
1563 					input[1], min_freq);
1564 				return -EINVAL;
1565 			}
1566 			smu10_data->gfx_actual_soft_min_freq = input[1];
1567 		} else if (input[0] == 1) {
1568 			ret = smum_send_msg_to_smc(hwmgr, PPSMC_MSG_GetMaxGfxclkFrequency, &max_freq);
1569 			if (ret)
1570 				return ret;
1571 
1572 			if (input[1] > max_freq) {
1573 				pr_err("Fine grain setting maximum sclk (%ld) MHz is greater than the maximum allowed (%d) MHz\n",
1574 					input[1], max_freq);
1575 				return -EINVAL;
1576 			}
1577 			smu10_data->gfx_actual_soft_max_freq = input[1];
1578 		} else {
1579 			return -EINVAL;
1580 		}
1581 	} else if (type == PP_OD_RESTORE_DEFAULT_TABLE) {
1582 		if (size != 0) {
1583 			pr_err("Input parameter number not correct\n");
1584 			return -EINVAL;
1585 		}
1586 		ret = smum_send_msg_to_smc(hwmgr, PPSMC_MSG_GetMinGfxclkFrequency, &min_freq);
1587 		if (ret)
1588 			return ret;
1589 		smu10_data->gfx_actual_soft_min_freq = min_freq;
1590 
1591 		ret = smum_send_msg_to_smc(hwmgr, PPSMC_MSG_GetMaxGfxclkFrequency, &max_freq);
1592 		if (ret)
1593 			return ret;
1594 
1595 		smu10_data->gfx_actual_soft_max_freq = max_freq;
1596 	} else if (type == PP_OD_COMMIT_DPM_TABLE) {
1597 		if (size != 0) {
1598 			pr_err("Input parameter number not correct\n");
1599 			return -EINVAL;
1600 		}
1601 
1602 		if (smu10_data->gfx_actual_soft_min_freq > smu10_data->gfx_actual_soft_max_freq) {
1603 			pr_err("The setting minimum sclk (%d) MHz is greater than the setting maximum sclk (%d) MHz\n",
1604 					smu10_data->gfx_actual_soft_min_freq, smu10_data->gfx_actual_soft_max_freq);
1605 			return -EINVAL;
1606 		}
1607 
1608 		ret = smum_send_msg_to_smc_with_parameter(hwmgr,
1609 					PPSMC_MSG_SetHardMinGfxClk,
1610 					smu10_data->gfx_actual_soft_min_freq,
1611 					NULL);
1612 		if (ret)
1613 			return ret;
1614 
1615 		ret = smum_send_msg_to_smc_with_parameter(hwmgr,
1616 					PPSMC_MSG_SetSoftMaxGfxClk,
1617 					smu10_data->gfx_actual_soft_max_freq,
1618 					NULL);
1619 		if (ret)
1620 			return ret;
1621 	} else {
1622 		return -EINVAL;
1623 	}
1624 
1625 	return 0;
1626 }
1627 
smu10_gfx_state_change(struct pp_hwmgr * hwmgr,uint32_t state)1628 static int smu10_gfx_state_change(struct pp_hwmgr *hwmgr, uint32_t state)
1629 {
1630 	smum_send_msg_to_smc_with_parameter(hwmgr, PPSMC_MSG_GpuChangeState, state, NULL);
1631 
1632 	return 0;
1633 }
1634 
1635 static const struct pp_hwmgr_func smu10_hwmgr_funcs = {
1636 	.backend_init = smu10_hwmgr_backend_init,
1637 	.backend_fini = smu10_hwmgr_backend_fini,
1638 	.apply_state_adjust_rules = smu10_apply_state_adjust_rules,
1639 	.force_dpm_level = smu10_dpm_force_dpm_level,
1640 	.get_power_state_size = smu10_get_power_state_size,
1641 	.powerdown_uvd = NULL,
1642 	.powergate_uvd = smu10_powergate_vcn,
1643 	.powergate_vce = NULL,
1644 	.get_mclk = smu10_dpm_get_mclk,
1645 	.get_sclk = smu10_dpm_get_sclk,
1646 	.patch_boot_state = smu10_dpm_patch_boot_state,
1647 	.get_pp_table_entry = smu10_dpm_get_pp_table_entry,
1648 	.get_num_of_pp_table_entries = smu10_dpm_get_num_of_pp_table_entries,
1649 	.set_cpu_power_state = smu10_set_cpu_power_state,
1650 	.store_cc6_data = smu10_store_cc6_data,
1651 	.force_clock_level = smu10_force_clock_level,
1652 	.print_clock_levels = smu10_print_clock_levels,
1653 	.get_dal_power_level = smu10_get_dal_power_level,
1654 	.get_performance_level = smu10_get_performance_level,
1655 	.get_current_shallow_sleep_clocks = smu10_get_current_shallow_sleep_clocks,
1656 	.get_clock_by_type_with_latency = smu10_get_clock_by_type_with_latency,
1657 	.get_clock_by_type_with_voltage = smu10_get_clock_by_type_with_voltage,
1658 	.set_watermarks_for_clocks_ranges = smu10_set_watermarks_for_clocks_ranges,
1659 	.get_max_high_clocks = smu10_get_max_high_clocks,
1660 	.read_sensor = smu10_read_sensor,
1661 	.set_active_display_count = smu10_set_active_display_count,
1662 	.set_min_deep_sleep_dcefclk = smu10_set_min_deep_sleep_dcefclk,
1663 	.dynamic_state_management_enable = smu10_enable_dpm_tasks,
1664 	.power_off_asic = smu10_power_off_asic,
1665 	.asic_setup = smu10_setup_asic_task,
1666 	.power_state_set = smu10_set_power_state_tasks,
1667 	.dynamic_state_management_disable = smu10_disable_dpm_tasks,
1668 	.powergate_mmhub = smu10_powergate_mmhub,
1669 	.smus_notify_pwe = smu10_smus_notify_pwe,
1670 	.display_clock_voltage_request = smu10_display_clock_voltage_request,
1671 	.powergate_gfx = smu10_gfx_off_control,
1672 	.powergate_sdma = smu10_powergate_sdma,
1673 	.set_hard_min_dcefclk_by_freq = smu10_set_hard_min_dcefclk_by_freq,
1674 	.set_hard_min_fclk_by_freq = smu10_set_hard_min_fclk_by_freq,
1675 	.set_hard_min_gfxclk_by_freq = smu10_set_hard_min_gfxclk_by_freq,
1676 	.set_soft_max_gfxclk_by_freq = smu10_set_soft_max_gfxclk_by_freq,
1677 	.get_power_profile_mode = smu10_get_power_profile_mode,
1678 	.set_power_profile_mode = smu10_set_power_profile_mode,
1679 	.asic_reset = smu10_asic_reset,
1680 	.set_fine_grain_clk_vol = smu10_set_fine_grain_clk_vol,
1681 	.gfx_state_change = smu10_gfx_state_change,
1682 };
1683 
smu10_init_function_pointers(struct pp_hwmgr * hwmgr)1684 int smu10_init_function_pointers(struct pp_hwmgr *hwmgr)
1685 {
1686 	hwmgr->hwmgr_func = &smu10_hwmgr_funcs;
1687 	hwmgr->pptable_func = &pptable_funcs;
1688 	return 0;
1689 }
1690