drm/msm/hdmi: Enable HPD after HDMI IRQ is set up
[linux/fpc-iii.git] / drivers / gpu / drm / amd / powerplay / hwmgr / smu8_hwmgr.c
blobc9a15baf2c10fc004551af4f02b6b13efee2d2c6
1 /*
2 * Copyright 2015 Advanced Micro Devices, Inc.
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
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 "smu/smu_8_0_d.h"
32 #include "smu8_fusion.h"
33 #include "smu/smu_8_0_sh_mask.h"
34 #include "smumgr.h"
35 #include "hwmgr.h"
36 #include "hardwaremanager.h"
37 #include "cz_ppsmc.h"
38 #include "smu8_hwmgr.h"
39 #include "power_state.h"
40 #include "pp_thermal.h"
42 #define ixSMUSVI_NB_CURRENTVID 0xD8230044
43 #define CURRENT_NB_VID_MASK 0xff000000
44 #define CURRENT_NB_VID__SHIFT 24
45 #define ixSMUSVI_GFX_CURRENTVID 0xD8230048
46 #define CURRENT_GFX_VID_MASK 0xff000000
47 #define CURRENT_GFX_VID__SHIFT 24
49 static const unsigned long smu8_magic = (unsigned long) PHM_Cz_Magic;
51 static struct smu8_power_state *cast_smu8_power_state(struct pp_hw_power_state *hw_ps)
53 if (smu8_magic != hw_ps->magic)
54 return NULL;
56 return (struct smu8_power_state *)hw_ps;
59 static const struct smu8_power_state *cast_const_smu8_power_state(
60 const struct pp_hw_power_state *hw_ps)
62 if (smu8_magic != hw_ps->magic)
63 return NULL;
65 return (struct smu8_power_state *)hw_ps;
68 static uint32_t smu8_get_eclk_level(struct pp_hwmgr *hwmgr,
69 uint32_t clock, uint32_t msg)
71 int i = 0;
72 struct phm_vce_clock_voltage_dependency_table *ptable =
73 hwmgr->dyn_state.vce_clock_voltage_dependency_table;
75 switch (msg) {
76 case PPSMC_MSG_SetEclkSoftMin:
77 case PPSMC_MSG_SetEclkHardMin:
78 for (i = 0; i < (int)ptable->count; i++) {
79 if (clock <= ptable->entries[i].ecclk)
80 break;
82 break;
84 case PPSMC_MSG_SetEclkSoftMax:
85 case PPSMC_MSG_SetEclkHardMax:
86 for (i = ptable->count - 1; i >= 0; i--) {
87 if (clock >= ptable->entries[i].ecclk)
88 break;
90 break;
92 default:
93 break;
96 return i;
99 static uint32_t smu8_get_sclk_level(struct pp_hwmgr *hwmgr,
100 uint32_t clock, uint32_t msg)
102 int i = 0;
103 struct phm_clock_voltage_dependency_table *table =
104 hwmgr->dyn_state.vddc_dependency_on_sclk;
106 switch (msg) {
107 case PPSMC_MSG_SetSclkSoftMin:
108 case PPSMC_MSG_SetSclkHardMin:
109 for (i = 0; i < (int)table->count; i++) {
110 if (clock <= table->entries[i].clk)
111 break;
113 break;
115 case PPSMC_MSG_SetSclkSoftMax:
116 case PPSMC_MSG_SetSclkHardMax:
117 for (i = table->count - 1; i >= 0; i--) {
118 if (clock >= table->entries[i].clk)
119 break;
121 break;
123 default:
124 break;
126 return i;
129 static uint32_t smu8_get_uvd_level(struct pp_hwmgr *hwmgr,
130 uint32_t clock, uint32_t msg)
132 int i = 0;
133 struct phm_uvd_clock_voltage_dependency_table *ptable =
134 hwmgr->dyn_state.uvd_clock_voltage_dependency_table;
136 switch (msg) {
137 case PPSMC_MSG_SetUvdSoftMin:
138 case PPSMC_MSG_SetUvdHardMin:
139 for (i = 0; i < (int)ptable->count; i++) {
140 if (clock <= ptable->entries[i].vclk)
141 break;
143 break;
145 case PPSMC_MSG_SetUvdSoftMax:
146 case PPSMC_MSG_SetUvdHardMax:
147 for (i = ptable->count - 1; i >= 0; i--) {
148 if (clock >= ptable->entries[i].vclk)
149 break;
151 break;
153 default:
154 break;
157 return i;
160 static uint32_t smu8_get_max_sclk_level(struct pp_hwmgr *hwmgr)
162 struct smu8_hwmgr *data = hwmgr->backend;
164 if (data->max_sclk_level == 0) {
165 smum_send_msg_to_smc(hwmgr, PPSMC_MSG_GetMaxSclkLevel);
166 data->max_sclk_level = smum_get_argument(hwmgr) + 1;
169 return data->max_sclk_level;
172 static int smu8_initialize_dpm_defaults(struct pp_hwmgr *hwmgr)
174 struct smu8_hwmgr *data = hwmgr->backend;
175 struct amdgpu_device *adev = hwmgr->adev;
177 data->gfx_ramp_step = 256*25/100;
178 data->gfx_ramp_delay = 1; /* by default, we delay 1us */
180 data->mgcg_cgtt_local0 = 0x00000000;
181 data->mgcg_cgtt_local1 = 0x00000000;
182 data->clock_slow_down_freq = 25000;
183 data->skip_clock_slow_down = 1;
184 data->enable_nb_ps_policy = 1; /* disable until UNB is ready, Enabled */
185 data->voltage_drop_in_dce_power_gating = 0; /* disable until fully verified */
186 data->voting_rights_clients = 0x00C00033;
187 data->static_screen_threshold = 8;
188 data->ddi_power_gating_disabled = 0;
189 data->bapm_enabled = 1;
190 data->voltage_drop_threshold = 0;
191 data->gfx_power_gating_threshold = 500;
192 data->vce_slow_sclk_threshold = 20000;
193 data->dce_slow_sclk_threshold = 30000;
194 data->disable_driver_thermal_policy = 1;
195 data->disable_nb_ps3_in_battery = 0;
197 phm_cap_unset(hwmgr->platform_descriptor.platformCaps,
198 PHM_PlatformCaps_ABM);
200 phm_cap_set(hwmgr->platform_descriptor.platformCaps,
201 PHM_PlatformCaps_NonABMSupportInPPLib);
203 phm_cap_unset(hwmgr->platform_descriptor.platformCaps,
204 PHM_PlatformCaps_DynamicM3Arbiter);
206 data->override_dynamic_mgpg = 1;
208 phm_cap_set(hwmgr->platform_descriptor.platformCaps,
209 PHM_PlatformCaps_DynamicPatchPowerState);
211 data->thermal_auto_throttling_treshold = 0;
212 data->tdr_clock = 0;
213 data->disable_gfx_power_gating_in_uvd = 0;
215 phm_cap_set(hwmgr->platform_descriptor.platformCaps,
216 PHM_PlatformCaps_DynamicUVDState);
218 phm_cap_set(hwmgr->platform_descriptor.platformCaps,
219 PHM_PlatformCaps_UVDDPM);
220 phm_cap_set(hwmgr->platform_descriptor.platformCaps,
221 PHM_PlatformCaps_VCEDPM);
223 data->cc6_settings.cpu_cc6_disable = false;
224 data->cc6_settings.cpu_pstate_disable = false;
225 data->cc6_settings.nb_pstate_switch_disable = false;
226 data->cc6_settings.cpu_pstate_separation_time = 0;
228 phm_cap_set(hwmgr->platform_descriptor.platformCaps,
229 PHM_PlatformCaps_DisableVoltageIsland);
231 phm_cap_unset(hwmgr->platform_descriptor.platformCaps,
232 PHM_PlatformCaps_UVDPowerGating);
233 phm_cap_unset(hwmgr->platform_descriptor.platformCaps,
234 PHM_PlatformCaps_VCEPowerGating);
236 if (adev->pg_flags & AMD_PG_SUPPORT_UVD)
237 phm_cap_set(hwmgr->platform_descriptor.platformCaps,
238 PHM_PlatformCaps_UVDPowerGating);
239 if (adev->pg_flags & AMD_PG_SUPPORT_VCE)
240 phm_cap_set(hwmgr->platform_descriptor.platformCaps,
241 PHM_PlatformCaps_VCEPowerGating);
244 return 0;
247 /* convert form 8bit vid to real voltage in mV*4 */
248 static uint32_t smu8_convert_8Bit_index_to_voltage(
249 struct pp_hwmgr *hwmgr, uint16_t voltage)
251 return 6200 - (voltage * 25);
254 static int smu8_construct_max_power_limits_table(struct pp_hwmgr *hwmgr,
255 struct phm_clock_and_voltage_limits *table)
257 struct smu8_hwmgr *data = hwmgr->backend;
258 struct smu8_sys_info *sys_info = &data->sys_info;
259 struct phm_clock_voltage_dependency_table *dep_table =
260 hwmgr->dyn_state.vddc_dependency_on_sclk;
262 if (dep_table->count > 0) {
263 table->sclk = dep_table->entries[dep_table->count-1].clk;
264 table->vddc = smu8_convert_8Bit_index_to_voltage(hwmgr,
265 (uint16_t)dep_table->entries[dep_table->count-1].v);
267 table->mclk = sys_info->nbp_memory_clock[0];
268 return 0;
271 static int smu8_init_dynamic_state_adjustment_rule_settings(
272 struct pp_hwmgr *hwmgr,
273 ATOM_CLK_VOLT_CAPABILITY *disp_voltage_table)
275 uint32_t table_size =
276 sizeof(struct phm_clock_voltage_dependency_table) +
277 (7 * sizeof(struct phm_clock_voltage_dependency_record));
279 struct phm_clock_voltage_dependency_table *table_clk_vlt =
280 kzalloc(table_size, GFP_KERNEL);
282 if (NULL == table_clk_vlt) {
283 pr_err("Can not allocate memory!\n");
284 return -ENOMEM;
287 table_clk_vlt->count = 8;
288 table_clk_vlt->entries[0].clk = PP_DAL_POWERLEVEL_0;
289 table_clk_vlt->entries[0].v = 0;
290 table_clk_vlt->entries[1].clk = PP_DAL_POWERLEVEL_1;
291 table_clk_vlt->entries[1].v = 1;
292 table_clk_vlt->entries[2].clk = PP_DAL_POWERLEVEL_2;
293 table_clk_vlt->entries[2].v = 2;
294 table_clk_vlt->entries[3].clk = PP_DAL_POWERLEVEL_3;
295 table_clk_vlt->entries[3].v = 3;
296 table_clk_vlt->entries[4].clk = PP_DAL_POWERLEVEL_4;
297 table_clk_vlt->entries[4].v = 4;
298 table_clk_vlt->entries[5].clk = PP_DAL_POWERLEVEL_5;
299 table_clk_vlt->entries[5].v = 5;
300 table_clk_vlt->entries[6].clk = PP_DAL_POWERLEVEL_6;
301 table_clk_vlt->entries[6].v = 6;
302 table_clk_vlt->entries[7].clk = PP_DAL_POWERLEVEL_7;
303 table_clk_vlt->entries[7].v = 7;
304 hwmgr->dyn_state.vddc_dep_on_dal_pwrl = table_clk_vlt;
306 return 0;
309 static int smu8_get_system_info_data(struct pp_hwmgr *hwmgr)
311 struct smu8_hwmgr *data = hwmgr->backend;
312 ATOM_INTEGRATED_SYSTEM_INFO_V1_9 *info = NULL;
313 uint32_t i;
314 int result = 0;
315 uint8_t frev, crev;
316 uint16_t size;
318 info = (ATOM_INTEGRATED_SYSTEM_INFO_V1_9 *)smu_atom_get_data_table(hwmgr->adev,
319 GetIndexIntoMasterTable(DATA, IntegratedSystemInfo),
320 &size, &frev, &crev);
322 if (info == NULL) {
323 pr_err("Could not retrieve the Integrated System Info Table!\n");
324 return -EINVAL;
327 if (crev != 9) {
328 pr_err("Unsupported IGP table: %d %d\n", frev, crev);
329 return -EINVAL;
332 data->sys_info.bootup_uma_clock =
333 le32_to_cpu(info->ulBootUpUMAClock);
335 data->sys_info.bootup_engine_clock =
336 le32_to_cpu(info->ulBootUpEngineClock);
338 data->sys_info.dentist_vco_freq =
339 le32_to_cpu(info->ulDentistVCOFreq);
341 data->sys_info.system_config =
342 le32_to_cpu(info->ulSystemConfig);
344 data->sys_info.bootup_nb_voltage_index =
345 le16_to_cpu(info->usBootUpNBVoltage);
347 data->sys_info.htc_hyst_lmt =
348 (info->ucHtcHystLmt == 0) ? 5 : info->ucHtcHystLmt;
350 data->sys_info.htc_tmp_lmt =
351 (info->ucHtcTmpLmt == 0) ? 203 : info->ucHtcTmpLmt;
353 if (data->sys_info.htc_tmp_lmt <=
354 data->sys_info.htc_hyst_lmt) {
355 pr_err("The htcTmpLmt should be larger than htcHystLmt.\n");
356 return -EINVAL;
359 data->sys_info.nb_dpm_enable =
360 data->enable_nb_ps_policy &&
361 (le32_to_cpu(info->ulSystemConfig) >> 3 & 0x1);
363 for (i = 0; i < SMU8_NUM_NBPSTATES; i++) {
364 if (i < SMU8_NUM_NBPMEMORYCLOCK) {
365 data->sys_info.nbp_memory_clock[i] =
366 le32_to_cpu(info->ulNbpStateMemclkFreq[i]);
368 data->sys_info.nbp_n_clock[i] =
369 le32_to_cpu(info->ulNbpStateNClkFreq[i]);
372 for (i = 0; i < MAX_DISPLAY_CLOCK_LEVEL; i++) {
373 data->sys_info.display_clock[i] =
374 le32_to_cpu(info->sDispClkVoltageMapping[i].ulMaximumSupportedCLK);
377 /* Here use 4 levels, make sure not exceed */
378 for (i = 0; i < SMU8_NUM_NBPSTATES; i++) {
379 data->sys_info.nbp_voltage_index[i] =
380 le16_to_cpu(info->usNBPStateVoltage[i]);
383 if (!data->sys_info.nb_dpm_enable) {
384 for (i = 1; i < SMU8_NUM_NBPSTATES; i++) {
385 if (i < SMU8_NUM_NBPMEMORYCLOCK) {
386 data->sys_info.nbp_memory_clock[i] =
387 data->sys_info.nbp_memory_clock[0];
389 data->sys_info.nbp_n_clock[i] =
390 data->sys_info.nbp_n_clock[0];
391 data->sys_info.nbp_voltage_index[i] =
392 data->sys_info.nbp_voltage_index[0];
396 if (le32_to_cpu(info->ulGPUCapInfo) &
397 SYS_INFO_GPUCAPS__ENABEL_DFS_BYPASS) {
398 phm_cap_set(hwmgr->platform_descriptor.platformCaps,
399 PHM_PlatformCaps_EnableDFSBypass);
402 data->sys_info.uma_channel_number = info->ucUMAChannelNumber;
404 smu8_construct_max_power_limits_table (hwmgr,
405 &hwmgr->dyn_state.max_clock_voltage_on_ac);
407 smu8_init_dynamic_state_adjustment_rule_settings(hwmgr,
408 &info->sDISPCLK_Voltage[0]);
410 return result;
413 static int smu8_construct_boot_state(struct pp_hwmgr *hwmgr)
415 struct smu8_hwmgr *data = hwmgr->backend;
417 data->boot_power_level.engineClock =
418 data->sys_info.bootup_engine_clock;
420 data->boot_power_level.vddcIndex =
421 (uint8_t)data->sys_info.bootup_nb_voltage_index;
423 data->boot_power_level.dsDividerIndex = 0;
424 data->boot_power_level.ssDividerIndex = 0;
425 data->boot_power_level.allowGnbSlow = 1;
426 data->boot_power_level.forceNBPstate = 0;
427 data->boot_power_level.hysteresis_up = 0;
428 data->boot_power_level.numSIMDToPowerDown = 0;
429 data->boot_power_level.display_wm = 0;
430 data->boot_power_level.vce_wm = 0;
432 return 0;
435 static int smu8_upload_pptable_to_smu(struct pp_hwmgr *hwmgr)
437 struct SMU8_Fusion_ClkTable *clock_table;
438 int ret;
439 uint32_t i;
440 void *table = NULL;
441 pp_atomctrl_clock_dividers_kong dividers;
443 struct phm_clock_voltage_dependency_table *vddc_table =
444 hwmgr->dyn_state.vddc_dependency_on_sclk;
445 struct phm_clock_voltage_dependency_table *vdd_gfx_table =
446 hwmgr->dyn_state.vdd_gfx_dependency_on_sclk;
447 struct phm_acp_clock_voltage_dependency_table *acp_table =
448 hwmgr->dyn_state.acp_clock_voltage_dependency_table;
449 struct phm_uvd_clock_voltage_dependency_table *uvd_table =
450 hwmgr->dyn_state.uvd_clock_voltage_dependency_table;
451 struct phm_vce_clock_voltage_dependency_table *vce_table =
452 hwmgr->dyn_state.vce_clock_voltage_dependency_table;
454 if (!hwmgr->need_pp_table_upload)
455 return 0;
457 ret = smum_download_powerplay_table(hwmgr, &table);
459 PP_ASSERT_WITH_CODE((0 == ret && NULL != table),
460 "Fail to get clock table from SMU!", return -EINVAL;);
462 clock_table = (struct SMU8_Fusion_ClkTable *)table;
464 /* patch clock table */
465 PP_ASSERT_WITH_CODE((vddc_table->count <= SMU8_MAX_HARDWARE_POWERLEVELS),
466 "Dependency table entry exceeds max limit!", return -EINVAL;);
467 PP_ASSERT_WITH_CODE((vdd_gfx_table->count <= SMU8_MAX_HARDWARE_POWERLEVELS),
468 "Dependency table entry exceeds max limit!", return -EINVAL;);
469 PP_ASSERT_WITH_CODE((acp_table->count <= SMU8_MAX_HARDWARE_POWERLEVELS),
470 "Dependency table entry exceeds max limit!", return -EINVAL;);
471 PP_ASSERT_WITH_CODE((uvd_table->count <= SMU8_MAX_HARDWARE_POWERLEVELS),
472 "Dependency table entry exceeds max limit!", return -EINVAL;);
473 PP_ASSERT_WITH_CODE((vce_table->count <= SMU8_MAX_HARDWARE_POWERLEVELS),
474 "Dependency table entry exceeds max limit!", return -EINVAL;);
476 for (i = 0; i < SMU8_MAX_HARDWARE_POWERLEVELS; i++) {
478 /* vddc_sclk */
479 clock_table->SclkBreakdownTable.ClkLevel[i].GnbVid =
480 (i < vddc_table->count) ? (uint8_t)vddc_table->entries[i].v : 0;
481 clock_table->SclkBreakdownTable.ClkLevel[i].Frequency =
482 (i < vddc_table->count) ? vddc_table->entries[i].clk : 0;
484 atomctrl_get_engine_pll_dividers_kong(hwmgr,
485 clock_table->SclkBreakdownTable.ClkLevel[i].Frequency,
486 &dividers);
488 clock_table->SclkBreakdownTable.ClkLevel[i].DfsDid =
489 (uint8_t)dividers.pll_post_divider;
491 /* vddgfx_sclk */
492 clock_table->SclkBreakdownTable.ClkLevel[i].GfxVid =
493 (i < vdd_gfx_table->count) ? (uint8_t)vdd_gfx_table->entries[i].v : 0;
495 /* acp breakdown */
496 clock_table->AclkBreakdownTable.ClkLevel[i].GfxVid =
497 (i < acp_table->count) ? (uint8_t)acp_table->entries[i].v : 0;
498 clock_table->AclkBreakdownTable.ClkLevel[i].Frequency =
499 (i < acp_table->count) ? acp_table->entries[i].acpclk : 0;
501 atomctrl_get_engine_pll_dividers_kong(hwmgr,
502 clock_table->AclkBreakdownTable.ClkLevel[i].Frequency,
503 &dividers);
505 clock_table->AclkBreakdownTable.ClkLevel[i].DfsDid =
506 (uint8_t)dividers.pll_post_divider;
509 /* uvd breakdown */
510 clock_table->VclkBreakdownTable.ClkLevel[i].GfxVid =
511 (i < uvd_table->count) ? (uint8_t)uvd_table->entries[i].v : 0;
512 clock_table->VclkBreakdownTable.ClkLevel[i].Frequency =
513 (i < uvd_table->count) ? uvd_table->entries[i].vclk : 0;
515 atomctrl_get_engine_pll_dividers_kong(hwmgr,
516 clock_table->VclkBreakdownTable.ClkLevel[i].Frequency,
517 &dividers);
519 clock_table->VclkBreakdownTable.ClkLevel[i].DfsDid =
520 (uint8_t)dividers.pll_post_divider;
522 clock_table->DclkBreakdownTable.ClkLevel[i].GfxVid =
523 (i < uvd_table->count) ? (uint8_t)uvd_table->entries[i].v : 0;
524 clock_table->DclkBreakdownTable.ClkLevel[i].Frequency =
525 (i < uvd_table->count) ? uvd_table->entries[i].dclk : 0;
527 atomctrl_get_engine_pll_dividers_kong(hwmgr,
528 clock_table->DclkBreakdownTable.ClkLevel[i].Frequency,
529 &dividers);
531 clock_table->DclkBreakdownTable.ClkLevel[i].DfsDid =
532 (uint8_t)dividers.pll_post_divider;
534 /* vce breakdown */
535 clock_table->EclkBreakdownTable.ClkLevel[i].GfxVid =
536 (i < vce_table->count) ? (uint8_t)vce_table->entries[i].v : 0;
537 clock_table->EclkBreakdownTable.ClkLevel[i].Frequency =
538 (i < vce_table->count) ? vce_table->entries[i].ecclk : 0;
541 atomctrl_get_engine_pll_dividers_kong(hwmgr,
542 clock_table->EclkBreakdownTable.ClkLevel[i].Frequency,
543 &dividers);
545 clock_table->EclkBreakdownTable.ClkLevel[i].DfsDid =
546 (uint8_t)dividers.pll_post_divider;
549 ret = smum_upload_powerplay_table(hwmgr);
551 return ret;
554 static int smu8_init_sclk_limit(struct pp_hwmgr *hwmgr)
556 struct smu8_hwmgr *data = hwmgr->backend;
557 struct phm_clock_voltage_dependency_table *table =
558 hwmgr->dyn_state.vddc_dependency_on_sclk;
559 unsigned long clock = 0, level;
561 if (NULL == table || table->count <= 0)
562 return -EINVAL;
564 data->sclk_dpm.soft_min_clk = table->entries[0].clk;
565 data->sclk_dpm.hard_min_clk = table->entries[0].clk;
567 level = smu8_get_max_sclk_level(hwmgr) - 1;
569 if (level < table->count)
570 clock = table->entries[level].clk;
571 else
572 clock = table->entries[table->count - 1].clk;
574 data->sclk_dpm.soft_max_clk = clock;
575 data->sclk_dpm.hard_max_clk = clock;
577 return 0;
580 static int smu8_init_uvd_limit(struct pp_hwmgr *hwmgr)
582 struct smu8_hwmgr *data = hwmgr->backend;
583 struct phm_uvd_clock_voltage_dependency_table *table =
584 hwmgr->dyn_state.uvd_clock_voltage_dependency_table;
585 unsigned long clock = 0, level;
587 if (NULL == table || table->count <= 0)
588 return -EINVAL;
590 data->uvd_dpm.soft_min_clk = 0;
591 data->uvd_dpm.hard_min_clk = 0;
593 smum_send_msg_to_smc(hwmgr, PPSMC_MSG_GetMaxUvdLevel);
594 level = smum_get_argument(hwmgr);
596 if (level < table->count)
597 clock = table->entries[level].vclk;
598 else
599 clock = table->entries[table->count - 1].vclk;
601 data->uvd_dpm.soft_max_clk = clock;
602 data->uvd_dpm.hard_max_clk = clock;
604 return 0;
607 static int smu8_init_vce_limit(struct pp_hwmgr *hwmgr)
609 struct smu8_hwmgr *data = hwmgr->backend;
610 struct phm_vce_clock_voltage_dependency_table *table =
611 hwmgr->dyn_state.vce_clock_voltage_dependency_table;
612 unsigned long clock = 0, level;
614 if (NULL == table || table->count <= 0)
615 return -EINVAL;
617 data->vce_dpm.soft_min_clk = 0;
618 data->vce_dpm.hard_min_clk = 0;
620 smum_send_msg_to_smc(hwmgr, PPSMC_MSG_GetMaxEclkLevel);
621 level = smum_get_argument(hwmgr);
623 if (level < table->count)
624 clock = table->entries[level].ecclk;
625 else
626 clock = table->entries[table->count - 1].ecclk;
628 data->vce_dpm.soft_max_clk = clock;
629 data->vce_dpm.hard_max_clk = clock;
631 return 0;
634 static int smu8_init_acp_limit(struct pp_hwmgr *hwmgr)
636 struct smu8_hwmgr *data = hwmgr->backend;
637 struct phm_acp_clock_voltage_dependency_table *table =
638 hwmgr->dyn_state.acp_clock_voltage_dependency_table;
639 unsigned long clock = 0, level;
641 if (NULL == table || table->count <= 0)
642 return -EINVAL;
644 data->acp_dpm.soft_min_clk = 0;
645 data->acp_dpm.hard_min_clk = 0;
647 smum_send_msg_to_smc(hwmgr, PPSMC_MSG_GetMaxAclkLevel);
648 level = smum_get_argument(hwmgr);
650 if (level < table->count)
651 clock = table->entries[level].acpclk;
652 else
653 clock = table->entries[table->count - 1].acpclk;
655 data->acp_dpm.soft_max_clk = clock;
656 data->acp_dpm.hard_max_clk = clock;
657 return 0;
660 static void smu8_init_power_gate_state(struct pp_hwmgr *hwmgr)
662 struct smu8_hwmgr *data = hwmgr->backend;
664 data->uvd_power_gated = false;
665 data->vce_power_gated = false;
666 data->samu_power_gated = false;
667 data->acp_power_gated = false;
668 data->pgacpinit = true;
671 static void smu8_init_sclk_threshold(struct pp_hwmgr *hwmgr)
673 struct smu8_hwmgr *data = hwmgr->backend;
675 data->low_sclk_interrupt_threshold = 0;
678 static int smu8_update_sclk_limit(struct pp_hwmgr *hwmgr)
680 struct smu8_hwmgr *data = hwmgr->backend;
681 struct phm_clock_voltage_dependency_table *table =
682 hwmgr->dyn_state.vddc_dependency_on_sclk;
684 unsigned long clock = 0;
685 unsigned long level;
686 unsigned long stable_pstate_sclk;
687 unsigned long percentage;
689 data->sclk_dpm.soft_min_clk = table->entries[0].clk;
690 level = smu8_get_max_sclk_level(hwmgr) - 1;
692 if (level < table->count)
693 data->sclk_dpm.soft_max_clk = table->entries[level].clk;
694 else
695 data->sclk_dpm.soft_max_clk = table->entries[table->count - 1].clk;
697 clock = hwmgr->display_config->min_core_set_clock;
698 if (clock == 0)
699 pr_debug("min_core_set_clock not set\n");
701 if (data->sclk_dpm.hard_min_clk != clock) {
702 data->sclk_dpm.hard_min_clk = clock;
704 smum_send_msg_to_smc_with_parameter(hwmgr,
705 PPSMC_MSG_SetSclkHardMin,
706 smu8_get_sclk_level(hwmgr,
707 data->sclk_dpm.hard_min_clk,
708 PPSMC_MSG_SetSclkHardMin));
711 clock = data->sclk_dpm.soft_min_clk;
713 /* update minimum clocks for Stable P-State feature */
714 if (phm_cap_enabled(hwmgr->platform_descriptor.platformCaps,
715 PHM_PlatformCaps_StablePState)) {
716 percentage = 75;
717 /*Sclk - calculate sclk value based on percentage and find FLOOR sclk from VddcDependencyOnSCLK table */
718 stable_pstate_sclk = (hwmgr->dyn_state.max_clock_voltage_on_ac.mclk *
719 percentage) / 100;
721 if (clock < stable_pstate_sclk)
722 clock = stable_pstate_sclk;
725 if (data->sclk_dpm.soft_min_clk != clock) {
726 data->sclk_dpm.soft_min_clk = clock;
727 smum_send_msg_to_smc_with_parameter(hwmgr,
728 PPSMC_MSG_SetSclkSoftMin,
729 smu8_get_sclk_level(hwmgr,
730 data->sclk_dpm.soft_min_clk,
731 PPSMC_MSG_SetSclkSoftMin));
734 if (phm_cap_enabled(hwmgr->platform_descriptor.platformCaps,
735 PHM_PlatformCaps_StablePState) &&
736 data->sclk_dpm.soft_max_clk != clock) {
737 data->sclk_dpm.soft_max_clk = clock;
738 smum_send_msg_to_smc_with_parameter(hwmgr,
739 PPSMC_MSG_SetSclkSoftMax,
740 smu8_get_sclk_level(hwmgr,
741 data->sclk_dpm.soft_max_clk,
742 PPSMC_MSG_SetSclkSoftMax));
745 return 0;
748 static int smu8_set_deep_sleep_sclk_threshold(struct pp_hwmgr *hwmgr)
750 if (phm_cap_enabled(hwmgr->platform_descriptor.platformCaps,
751 PHM_PlatformCaps_SclkDeepSleep)) {
752 uint32_t clks = hwmgr->display_config->min_core_set_clock_in_sr;
753 if (clks == 0)
754 clks = SMU8_MIN_DEEP_SLEEP_SCLK;
756 PP_DBG_LOG("Setting Deep Sleep Clock: %d\n", clks);
758 smum_send_msg_to_smc_with_parameter(hwmgr,
759 PPSMC_MSG_SetMinDeepSleepSclk,
760 clks);
763 return 0;
766 static int smu8_set_watermark_threshold(struct pp_hwmgr *hwmgr)
768 struct smu8_hwmgr *data =
769 hwmgr->backend;
771 smum_send_msg_to_smc_with_parameter(hwmgr,
772 PPSMC_MSG_SetWatermarkFrequency,
773 data->sclk_dpm.soft_max_clk);
775 return 0;
778 static int smu8_nbdpm_pstate_enable_disable(struct pp_hwmgr *hwmgr, bool enable, bool lock)
780 struct smu8_hwmgr *hw_data = hwmgr->backend;
782 if (hw_data->is_nb_dpm_enabled) {
783 if (enable) {
784 PP_DBG_LOG("enable Low Memory PState.\n");
786 return smum_send_msg_to_smc_with_parameter(hwmgr,
787 PPSMC_MSG_EnableLowMemoryPstate,
788 (lock ? 1 : 0));
789 } else {
790 PP_DBG_LOG("disable Low Memory PState.\n");
792 return smum_send_msg_to_smc_with_parameter(hwmgr,
793 PPSMC_MSG_DisableLowMemoryPstate,
794 (lock ? 1 : 0));
798 return 0;
801 static int smu8_disable_nb_dpm(struct pp_hwmgr *hwmgr)
803 int ret = 0;
805 struct smu8_hwmgr *data = hwmgr->backend;
806 unsigned long dpm_features = 0;
808 if (data->is_nb_dpm_enabled) {
809 smu8_nbdpm_pstate_enable_disable(hwmgr, true, true);
810 dpm_features |= NB_DPM_MASK;
811 ret = smum_send_msg_to_smc_with_parameter(
812 hwmgr,
813 PPSMC_MSG_DisableAllSmuFeatures,
814 dpm_features);
815 if (ret == 0)
816 data->is_nb_dpm_enabled = false;
819 return ret;
822 static int smu8_enable_nb_dpm(struct pp_hwmgr *hwmgr)
824 int ret = 0;
826 struct smu8_hwmgr *data = hwmgr->backend;
827 unsigned long dpm_features = 0;
829 if (!data->is_nb_dpm_enabled) {
830 PP_DBG_LOG("enabling ALL SMU features.\n");
831 dpm_features |= NB_DPM_MASK;
832 ret = smum_send_msg_to_smc_with_parameter(
833 hwmgr,
834 PPSMC_MSG_EnableAllSmuFeatures,
835 dpm_features);
836 if (ret == 0)
837 data->is_nb_dpm_enabled = true;
840 return ret;
843 static int smu8_update_low_mem_pstate(struct pp_hwmgr *hwmgr, const void *input)
845 bool disable_switch;
846 bool enable_low_mem_state;
847 struct smu8_hwmgr *hw_data = hwmgr->backend;
848 const struct phm_set_power_state_input *states = (struct phm_set_power_state_input *)input;
849 const struct smu8_power_state *pnew_state = cast_const_smu8_power_state(states->pnew_state);
851 if (hw_data->sys_info.nb_dpm_enable) {
852 disable_switch = hw_data->cc6_settings.nb_pstate_switch_disable ? true : false;
853 enable_low_mem_state = hw_data->cc6_settings.nb_pstate_switch_disable ? false : true;
855 if (pnew_state->action == FORCE_HIGH)
856 smu8_nbdpm_pstate_enable_disable(hwmgr, false, disable_switch);
857 else if (pnew_state->action == CANCEL_FORCE_HIGH)
858 smu8_nbdpm_pstate_enable_disable(hwmgr, true, disable_switch);
859 else
860 smu8_nbdpm_pstate_enable_disable(hwmgr, enable_low_mem_state, disable_switch);
862 return 0;
865 static int smu8_set_power_state_tasks(struct pp_hwmgr *hwmgr, const void *input)
867 int ret = 0;
869 smu8_update_sclk_limit(hwmgr);
870 smu8_set_deep_sleep_sclk_threshold(hwmgr);
871 smu8_set_watermark_threshold(hwmgr);
872 ret = smu8_enable_nb_dpm(hwmgr);
873 if (ret)
874 return ret;
875 smu8_update_low_mem_pstate(hwmgr, input);
877 return 0;
881 static int smu8_setup_asic_task(struct pp_hwmgr *hwmgr)
883 int ret;
885 ret = smu8_upload_pptable_to_smu(hwmgr);
886 if (ret)
887 return ret;
888 ret = smu8_init_sclk_limit(hwmgr);
889 if (ret)
890 return ret;
891 ret = smu8_init_uvd_limit(hwmgr);
892 if (ret)
893 return ret;
894 ret = smu8_init_vce_limit(hwmgr);
895 if (ret)
896 return ret;
897 ret = smu8_init_acp_limit(hwmgr);
898 if (ret)
899 return ret;
901 smu8_init_power_gate_state(hwmgr);
902 smu8_init_sclk_threshold(hwmgr);
904 return 0;
907 static void smu8_power_up_display_clock_sys_pll(struct pp_hwmgr *hwmgr)
909 struct smu8_hwmgr *hw_data = hwmgr->backend;
911 hw_data->disp_clk_bypass_pending = false;
912 hw_data->disp_clk_bypass = false;
915 static void smu8_clear_nb_dpm_flag(struct pp_hwmgr *hwmgr)
917 struct smu8_hwmgr *hw_data = hwmgr->backend;
919 hw_data->is_nb_dpm_enabled = false;
922 static void smu8_reset_cc6_data(struct pp_hwmgr *hwmgr)
924 struct smu8_hwmgr *hw_data = hwmgr->backend;
926 hw_data->cc6_settings.cc6_setting_changed = false;
927 hw_data->cc6_settings.cpu_pstate_separation_time = 0;
928 hw_data->cc6_settings.cpu_cc6_disable = false;
929 hw_data->cc6_settings.cpu_pstate_disable = false;
932 static int smu8_power_off_asic(struct pp_hwmgr *hwmgr)
934 smu8_power_up_display_clock_sys_pll(hwmgr);
935 smu8_clear_nb_dpm_flag(hwmgr);
936 smu8_reset_cc6_data(hwmgr);
937 return 0;
940 static void smu8_program_voting_clients(struct pp_hwmgr *hwmgr)
942 cgs_write_ind_register(hwmgr->device, CGS_IND_REG__SMC,
943 ixCG_FREQ_TRAN_VOTING_0,
944 SMU8_VOTINGRIGHTSCLIENTS_DFLT0);
947 static void smu8_clear_voting_clients(struct pp_hwmgr *hwmgr)
949 cgs_write_ind_register(hwmgr->device, CGS_IND_REG__SMC,
950 ixCG_FREQ_TRAN_VOTING_0, 0);
953 static int smu8_start_dpm(struct pp_hwmgr *hwmgr)
955 struct smu8_hwmgr *data = hwmgr->backend;
957 data->dpm_flags |= DPMFlags_SCLK_Enabled;
959 return smum_send_msg_to_smc_with_parameter(hwmgr,
960 PPSMC_MSG_EnableAllSmuFeatures,
961 SCLK_DPM_MASK);
964 static int smu8_stop_dpm(struct pp_hwmgr *hwmgr)
966 int ret = 0;
967 struct smu8_hwmgr *data = hwmgr->backend;
968 unsigned long dpm_features = 0;
970 if (data->dpm_flags & DPMFlags_SCLK_Enabled) {
971 dpm_features |= SCLK_DPM_MASK;
972 data->dpm_flags &= ~DPMFlags_SCLK_Enabled;
973 ret = smum_send_msg_to_smc_with_parameter(hwmgr,
974 PPSMC_MSG_DisableAllSmuFeatures,
975 dpm_features);
977 return ret;
980 static int smu8_program_bootup_state(struct pp_hwmgr *hwmgr)
982 struct smu8_hwmgr *data = hwmgr->backend;
984 data->sclk_dpm.soft_min_clk = data->sys_info.bootup_engine_clock;
985 data->sclk_dpm.soft_max_clk = data->sys_info.bootup_engine_clock;
987 smum_send_msg_to_smc_with_parameter(hwmgr,
988 PPSMC_MSG_SetSclkSoftMin,
989 smu8_get_sclk_level(hwmgr,
990 data->sclk_dpm.soft_min_clk,
991 PPSMC_MSG_SetSclkSoftMin));
993 smum_send_msg_to_smc_with_parameter(hwmgr,
994 PPSMC_MSG_SetSclkSoftMax,
995 smu8_get_sclk_level(hwmgr,
996 data->sclk_dpm.soft_max_clk,
997 PPSMC_MSG_SetSclkSoftMax));
999 return 0;
1002 static void smu8_reset_acp_boot_level(struct pp_hwmgr *hwmgr)
1004 struct smu8_hwmgr *data = hwmgr->backend;
1006 data->acp_boot_level = 0xff;
1009 static int smu8_disable_dpm_tasks(struct pp_hwmgr *hwmgr)
1011 smu8_disable_nb_dpm(hwmgr);
1013 smu8_clear_voting_clients(hwmgr);
1014 if (smu8_stop_dpm(hwmgr))
1015 return -EINVAL;
1017 return 0;
1020 static int smu8_enable_dpm_tasks(struct pp_hwmgr *hwmgr)
1022 smu8_program_voting_clients(hwmgr);
1023 if (smu8_start_dpm(hwmgr))
1024 return -EINVAL;
1025 smu8_program_bootup_state(hwmgr);
1026 smu8_reset_acp_boot_level(hwmgr);
1028 return 0;
1031 static int smu8_apply_state_adjust_rules(struct pp_hwmgr *hwmgr,
1032 struct pp_power_state *prequest_ps,
1033 const struct pp_power_state *pcurrent_ps)
1035 struct smu8_power_state *smu8_ps =
1036 cast_smu8_power_state(&prequest_ps->hardware);
1038 const struct smu8_power_state *smu8_current_ps =
1039 cast_const_smu8_power_state(&pcurrent_ps->hardware);
1041 struct smu8_hwmgr *data = hwmgr->backend;
1042 struct PP_Clocks clocks = {0, 0, 0, 0};
1043 bool force_high;
1045 smu8_ps->need_dfs_bypass = true;
1047 data->battery_state = (PP_StateUILabel_Battery == prequest_ps->classification.ui_label);
1049 clocks.memoryClock = hwmgr->display_config->min_mem_set_clock != 0 ?
1050 hwmgr->display_config->min_mem_set_clock :
1051 data->sys_info.nbp_memory_clock[1];
1054 if (phm_cap_enabled(hwmgr->platform_descriptor.platformCaps, PHM_PlatformCaps_StablePState))
1055 clocks.memoryClock = hwmgr->dyn_state.max_clock_voltage_on_ac.mclk;
1057 force_high = (clocks.memoryClock > data->sys_info.nbp_memory_clock[SMU8_NUM_NBPMEMORYCLOCK - 1])
1058 || (hwmgr->display_config->num_display >= 3);
1060 smu8_ps->action = smu8_current_ps->action;
1062 if (hwmgr->request_dpm_level == AMD_DPM_FORCED_LEVEL_PROFILE_PEAK)
1063 smu8_nbdpm_pstate_enable_disable(hwmgr, false, false);
1064 else if (hwmgr->request_dpm_level == AMD_DPM_FORCED_LEVEL_PROFILE_STANDARD)
1065 smu8_nbdpm_pstate_enable_disable(hwmgr, false, true);
1066 else if (!force_high && (smu8_ps->action == FORCE_HIGH))
1067 smu8_ps->action = CANCEL_FORCE_HIGH;
1068 else if (force_high && (smu8_ps->action != FORCE_HIGH))
1069 smu8_ps->action = FORCE_HIGH;
1070 else
1071 smu8_ps->action = DO_NOTHING;
1073 return 0;
1076 static int smu8_hwmgr_backend_init(struct pp_hwmgr *hwmgr)
1078 int result = 0;
1079 struct smu8_hwmgr *data;
1081 data = kzalloc(sizeof(struct smu8_hwmgr), GFP_KERNEL);
1082 if (data == NULL)
1083 return -ENOMEM;
1085 hwmgr->backend = data;
1087 result = smu8_initialize_dpm_defaults(hwmgr);
1088 if (result != 0) {
1089 pr_err("smu8_initialize_dpm_defaults failed\n");
1090 return result;
1093 result = smu8_get_system_info_data(hwmgr);
1094 if (result != 0) {
1095 pr_err("smu8_get_system_info_data failed\n");
1096 return result;
1099 smu8_construct_boot_state(hwmgr);
1101 hwmgr->platform_descriptor.hardwareActivityPerformanceLevels = SMU8_MAX_HARDWARE_POWERLEVELS;
1103 return result;
1106 static int smu8_hwmgr_backend_fini(struct pp_hwmgr *hwmgr)
1108 if (hwmgr != NULL) {
1109 kfree(hwmgr->dyn_state.vddc_dep_on_dal_pwrl);
1110 hwmgr->dyn_state.vddc_dep_on_dal_pwrl = NULL;
1112 kfree(hwmgr->backend);
1113 hwmgr->backend = NULL;
1115 return 0;
1118 static int smu8_phm_force_dpm_highest(struct pp_hwmgr *hwmgr)
1120 struct smu8_hwmgr *data = hwmgr->backend;
1122 smum_send_msg_to_smc_with_parameter(hwmgr,
1123 PPSMC_MSG_SetSclkSoftMin,
1124 smu8_get_sclk_level(hwmgr,
1125 data->sclk_dpm.soft_max_clk,
1126 PPSMC_MSG_SetSclkSoftMin));
1128 smum_send_msg_to_smc_with_parameter(hwmgr,
1129 PPSMC_MSG_SetSclkSoftMax,
1130 smu8_get_sclk_level(hwmgr,
1131 data->sclk_dpm.soft_max_clk,
1132 PPSMC_MSG_SetSclkSoftMax));
1134 return 0;
1137 static int smu8_phm_unforce_dpm_levels(struct pp_hwmgr *hwmgr)
1139 struct smu8_hwmgr *data = hwmgr->backend;
1140 struct phm_clock_voltage_dependency_table *table =
1141 hwmgr->dyn_state.vddc_dependency_on_sclk;
1142 unsigned long clock = 0, level;
1144 if (NULL == table || table->count <= 0)
1145 return -EINVAL;
1147 data->sclk_dpm.soft_min_clk = table->entries[0].clk;
1148 data->sclk_dpm.hard_min_clk = table->entries[0].clk;
1149 hwmgr->pstate_sclk = table->entries[0].clk;
1150 hwmgr->pstate_mclk = 0;
1152 level = smu8_get_max_sclk_level(hwmgr) - 1;
1154 if (level < table->count)
1155 clock = table->entries[level].clk;
1156 else
1157 clock = table->entries[table->count - 1].clk;
1159 data->sclk_dpm.soft_max_clk = clock;
1160 data->sclk_dpm.hard_max_clk = clock;
1162 smum_send_msg_to_smc_with_parameter(hwmgr,
1163 PPSMC_MSG_SetSclkSoftMin,
1164 smu8_get_sclk_level(hwmgr,
1165 data->sclk_dpm.soft_min_clk,
1166 PPSMC_MSG_SetSclkSoftMin));
1168 smum_send_msg_to_smc_with_parameter(hwmgr,
1169 PPSMC_MSG_SetSclkSoftMax,
1170 smu8_get_sclk_level(hwmgr,
1171 data->sclk_dpm.soft_max_clk,
1172 PPSMC_MSG_SetSclkSoftMax));
1174 return 0;
1177 static int smu8_phm_force_dpm_lowest(struct pp_hwmgr *hwmgr)
1179 struct smu8_hwmgr *data = hwmgr->backend;
1181 smum_send_msg_to_smc_with_parameter(hwmgr,
1182 PPSMC_MSG_SetSclkSoftMax,
1183 smu8_get_sclk_level(hwmgr,
1184 data->sclk_dpm.soft_min_clk,
1185 PPSMC_MSG_SetSclkSoftMax));
1187 smum_send_msg_to_smc_with_parameter(hwmgr,
1188 PPSMC_MSG_SetSclkSoftMin,
1189 smu8_get_sclk_level(hwmgr,
1190 data->sclk_dpm.soft_min_clk,
1191 PPSMC_MSG_SetSclkSoftMin));
1193 return 0;
1196 static int smu8_dpm_force_dpm_level(struct pp_hwmgr *hwmgr,
1197 enum amd_dpm_forced_level level)
1199 int ret = 0;
1201 switch (level) {
1202 case AMD_DPM_FORCED_LEVEL_HIGH:
1203 case AMD_DPM_FORCED_LEVEL_PROFILE_PEAK:
1204 ret = smu8_phm_force_dpm_highest(hwmgr);
1205 break;
1206 case AMD_DPM_FORCED_LEVEL_LOW:
1207 case AMD_DPM_FORCED_LEVEL_PROFILE_MIN_SCLK:
1208 case AMD_DPM_FORCED_LEVEL_PROFILE_STANDARD:
1209 ret = smu8_phm_force_dpm_lowest(hwmgr);
1210 break;
1211 case AMD_DPM_FORCED_LEVEL_AUTO:
1212 ret = smu8_phm_unforce_dpm_levels(hwmgr);
1213 break;
1214 case AMD_DPM_FORCED_LEVEL_MANUAL:
1215 case AMD_DPM_FORCED_LEVEL_PROFILE_EXIT:
1216 default:
1217 break;
1220 return ret;
1223 static int smu8_dpm_powerdown_uvd(struct pp_hwmgr *hwmgr)
1225 if (PP_CAP(PHM_PlatformCaps_UVDPowerGating)) {
1226 smu8_nbdpm_pstate_enable_disable(hwmgr, true, true);
1227 return smum_send_msg_to_smc(hwmgr, PPSMC_MSG_UVDPowerOFF);
1229 return 0;
1232 static int smu8_dpm_powerup_uvd(struct pp_hwmgr *hwmgr)
1234 if (PP_CAP(PHM_PlatformCaps_UVDPowerGating)) {
1235 smu8_nbdpm_pstate_enable_disable(hwmgr, false, true);
1236 return smum_send_msg_to_smc_with_parameter(
1237 hwmgr,
1238 PPSMC_MSG_UVDPowerON,
1239 PP_CAP(PHM_PlatformCaps_UVDDynamicPowerGating) ? 1 : 0);
1242 return 0;
1245 static int smu8_dpm_update_vce_dpm(struct pp_hwmgr *hwmgr)
1247 struct smu8_hwmgr *data = hwmgr->backend;
1248 struct phm_vce_clock_voltage_dependency_table *ptable =
1249 hwmgr->dyn_state.vce_clock_voltage_dependency_table;
1251 /* Stable Pstate is enabled and we need to set the VCE DPM to highest level */
1252 if (PP_CAP(PHM_PlatformCaps_StablePState) ||
1253 hwmgr->en_umd_pstate) {
1254 data->vce_dpm.hard_min_clk =
1255 ptable->entries[ptable->count - 1].ecclk;
1257 smum_send_msg_to_smc_with_parameter(hwmgr,
1258 PPSMC_MSG_SetEclkHardMin,
1259 smu8_get_eclk_level(hwmgr,
1260 data->vce_dpm.hard_min_clk,
1261 PPSMC_MSG_SetEclkHardMin));
1262 } else {
1264 smum_send_msg_to_smc_with_parameter(hwmgr,
1265 PPSMC_MSG_SetEclkHardMin, 0);
1266 /* disable ECLK DPM 0. Otherwise VCE could hang if
1267 * switching SCLK from DPM 0 to 6/7 */
1268 smum_send_msg_to_smc_with_parameter(hwmgr,
1269 PPSMC_MSG_SetEclkSoftMin, 1);
1271 return 0;
1274 static int smu8_dpm_powerdown_vce(struct pp_hwmgr *hwmgr)
1276 if (PP_CAP(PHM_PlatformCaps_VCEPowerGating))
1277 return smum_send_msg_to_smc(hwmgr,
1278 PPSMC_MSG_VCEPowerOFF);
1279 return 0;
1282 static int smu8_dpm_powerup_vce(struct pp_hwmgr *hwmgr)
1284 if (PP_CAP(PHM_PlatformCaps_VCEPowerGating))
1285 return smum_send_msg_to_smc(hwmgr,
1286 PPSMC_MSG_VCEPowerON);
1287 return 0;
1290 static uint32_t smu8_dpm_get_mclk(struct pp_hwmgr *hwmgr, bool low)
1292 struct smu8_hwmgr *data = hwmgr->backend;
1294 return data->sys_info.bootup_uma_clock;
1297 static uint32_t smu8_dpm_get_sclk(struct pp_hwmgr *hwmgr, bool low)
1299 struct pp_power_state *ps;
1300 struct smu8_power_state *smu8_ps;
1302 if (hwmgr == NULL)
1303 return -EINVAL;
1305 ps = hwmgr->request_ps;
1307 if (ps == NULL)
1308 return -EINVAL;
1310 smu8_ps = cast_smu8_power_state(&ps->hardware);
1312 if (low)
1313 return smu8_ps->levels[0].engineClock;
1314 else
1315 return smu8_ps->levels[smu8_ps->level-1].engineClock;
1318 static int smu8_dpm_patch_boot_state(struct pp_hwmgr *hwmgr,
1319 struct pp_hw_power_state *hw_ps)
1321 struct smu8_hwmgr *data = hwmgr->backend;
1322 struct smu8_power_state *smu8_ps = cast_smu8_power_state(hw_ps);
1324 smu8_ps->level = 1;
1325 smu8_ps->nbps_flags = 0;
1326 smu8_ps->bapm_flags = 0;
1327 smu8_ps->levels[0] = data->boot_power_level;
1329 return 0;
1332 static int smu8_dpm_get_pp_table_entry_callback(
1333 struct pp_hwmgr *hwmgr,
1334 struct pp_hw_power_state *hw_ps,
1335 unsigned int index,
1336 const void *clock_info)
1338 struct smu8_power_state *smu8_ps = cast_smu8_power_state(hw_ps);
1340 const ATOM_PPLIB_CZ_CLOCK_INFO *smu8_clock_info = clock_info;
1342 struct phm_clock_voltage_dependency_table *table =
1343 hwmgr->dyn_state.vddc_dependency_on_sclk;
1344 uint8_t clock_info_index = smu8_clock_info->index;
1346 if (clock_info_index > (uint8_t)(hwmgr->platform_descriptor.hardwareActivityPerformanceLevels - 1))
1347 clock_info_index = (uint8_t)(hwmgr->platform_descriptor.hardwareActivityPerformanceLevels - 1);
1349 smu8_ps->levels[index].engineClock = table->entries[clock_info_index].clk;
1350 smu8_ps->levels[index].vddcIndex = (uint8_t)table->entries[clock_info_index].v;
1352 smu8_ps->level = index + 1;
1354 if (phm_cap_enabled(hwmgr->platform_descriptor.platformCaps, PHM_PlatformCaps_SclkDeepSleep)) {
1355 smu8_ps->levels[index].dsDividerIndex = 5;
1356 smu8_ps->levels[index].ssDividerIndex = 5;
1359 return 0;
1362 static int smu8_dpm_get_num_of_pp_table_entries(struct pp_hwmgr *hwmgr)
1364 int result;
1365 unsigned long ret = 0;
1367 result = pp_tables_get_num_of_entries(hwmgr, &ret);
1369 return result ? 0 : ret;
1372 static int smu8_dpm_get_pp_table_entry(struct pp_hwmgr *hwmgr,
1373 unsigned long entry, struct pp_power_state *ps)
1375 int result;
1376 struct smu8_power_state *smu8_ps;
1378 ps->hardware.magic = smu8_magic;
1380 smu8_ps = cast_smu8_power_state(&(ps->hardware));
1382 result = pp_tables_get_entry(hwmgr, entry, ps,
1383 smu8_dpm_get_pp_table_entry_callback);
1385 smu8_ps->uvd_clocks.vclk = ps->uvd_clocks.VCLK;
1386 smu8_ps->uvd_clocks.dclk = ps->uvd_clocks.DCLK;
1388 return result;
1391 static int smu8_get_power_state_size(struct pp_hwmgr *hwmgr)
1393 return sizeof(struct smu8_power_state);
1396 static void smu8_hw_print_display_cfg(
1397 const struct cc6_settings *cc6_settings)
1399 PP_DBG_LOG("New Display Configuration:\n");
1401 PP_DBG_LOG(" cpu_cc6_disable: %d\n",
1402 cc6_settings->cpu_cc6_disable);
1403 PP_DBG_LOG(" cpu_pstate_disable: %d\n",
1404 cc6_settings->cpu_pstate_disable);
1405 PP_DBG_LOG(" nb_pstate_switch_disable: %d\n",
1406 cc6_settings->nb_pstate_switch_disable);
1407 PP_DBG_LOG(" cpu_pstate_separation_time: %d\n\n",
1408 cc6_settings->cpu_pstate_separation_time);
1411 static int smu8_set_cpu_power_state(struct pp_hwmgr *hwmgr)
1413 struct smu8_hwmgr *hw_data = hwmgr->backend;
1414 uint32_t data = 0;
1416 if (hw_data->cc6_settings.cc6_setting_changed) {
1418 hw_data->cc6_settings.cc6_setting_changed = false;
1420 smu8_hw_print_display_cfg(&hw_data->cc6_settings);
1422 data |= (hw_data->cc6_settings.cpu_pstate_separation_time
1423 & PWRMGT_SEPARATION_TIME_MASK)
1424 << PWRMGT_SEPARATION_TIME_SHIFT;
1426 data |= (hw_data->cc6_settings.cpu_cc6_disable ? 0x1 : 0x0)
1427 << PWRMGT_DISABLE_CPU_CSTATES_SHIFT;
1429 data |= (hw_data->cc6_settings.cpu_pstate_disable ? 0x1 : 0x0)
1430 << PWRMGT_DISABLE_CPU_PSTATES_SHIFT;
1432 PP_DBG_LOG("SetDisplaySizePowerParams data: 0x%X\n",
1433 data);
1435 smum_send_msg_to_smc_with_parameter(hwmgr,
1436 PPSMC_MSG_SetDisplaySizePowerParams,
1437 data);
1440 return 0;
1444 static int smu8_store_cc6_data(struct pp_hwmgr *hwmgr, uint32_t separation_time,
1445 bool cc6_disable, bool pstate_disable, bool pstate_switch_disable)
1447 struct smu8_hwmgr *hw_data = hwmgr->backend;
1449 if (separation_time !=
1450 hw_data->cc6_settings.cpu_pstate_separation_time ||
1451 cc6_disable != hw_data->cc6_settings.cpu_cc6_disable ||
1452 pstate_disable != hw_data->cc6_settings.cpu_pstate_disable ||
1453 pstate_switch_disable != hw_data->cc6_settings.nb_pstate_switch_disable) {
1455 hw_data->cc6_settings.cc6_setting_changed = true;
1457 hw_data->cc6_settings.cpu_pstate_separation_time =
1458 separation_time;
1459 hw_data->cc6_settings.cpu_cc6_disable =
1460 cc6_disable;
1461 hw_data->cc6_settings.cpu_pstate_disable =
1462 pstate_disable;
1463 hw_data->cc6_settings.nb_pstate_switch_disable =
1464 pstate_switch_disable;
1468 return 0;
1471 static int smu8_get_dal_power_level(struct pp_hwmgr *hwmgr,
1472 struct amd_pp_simple_clock_info *info)
1474 uint32_t i;
1475 const struct phm_clock_voltage_dependency_table *table =
1476 hwmgr->dyn_state.vddc_dep_on_dal_pwrl;
1477 const struct phm_clock_and_voltage_limits *limits =
1478 &hwmgr->dyn_state.max_clock_voltage_on_ac;
1480 info->engine_max_clock = limits->sclk;
1481 info->memory_max_clock = limits->mclk;
1483 for (i = table->count - 1; i > 0; i--) {
1484 if (limits->vddc >= table->entries[i].v) {
1485 info->level = table->entries[i].clk;
1486 return 0;
1489 return -EINVAL;
1492 static int smu8_force_clock_level(struct pp_hwmgr *hwmgr,
1493 enum pp_clock_type type, uint32_t mask)
1495 switch (type) {
1496 case PP_SCLK:
1497 smum_send_msg_to_smc_with_parameter(hwmgr,
1498 PPSMC_MSG_SetSclkSoftMin,
1499 mask);
1500 smum_send_msg_to_smc_with_parameter(hwmgr,
1501 PPSMC_MSG_SetSclkSoftMax,
1502 mask);
1503 break;
1504 default:
1505 break;
1508 return 0;
1511 static int smu8_print_clock_levels(struct pp_hwmgr *hwmgr,
1512 enum pp_clock_type type, char *buf)
1514 struct smu8_hwmgr *data = hwmgr->backend;
1515 struct phm_clock_voltage_dependency_table *sclk_table =
1516 hwmgr->dyn_state.vddc_dependency_on_sclk;
1517 int i, now, size = 0;
1519 switch (type) {
1520 case PP_SCLK:
1521 now = PHM_GET_FIELD(cgs_read_ind_register(hwmgr->device,
1522 CGS_IND_REG__SMC,
1523 ixTARGET_AND_CURRENT_PROFILE_INDEX),
1524 TARGET_AND_CURRENT_PROFILE_INDEX,
1525 CURR_SCLK_INDEX);
1527 for (i = 0; i < sclk_table->count; i++)
1528 size += sprintf(buf + size, "%d: %uMhz %s\n",
1529 i, sclk_table->entries[i].clk / 100,
1530 (i == now) ? "*" : "");
1531 break;
1532 case PP_MCLK:
1533 now = PHM_GET_FIELD(cgs_read_ind_register(hwmgr->device,
1534 CGS_IND_REG__SMC,
1535 ixTARGET_AND_CURRENT_PROFILE_INDEX),
1536 TARGET_AND_CURRENT_PROFILE_INDEX,
1537 CURR_MCLK_INDEX);
1539 for (i = SMU8_NUM_NBPMEMORYCLOCK; i > 0; i--)
1540 size += sprintf(buf + size, "%d: %uMhz %s\n",
1541 SMU8_NUM_NBPMEMORYCLOCK-i, data->sys_info.nbp_memory_clock[i-1] / 100,
1542 (SMU8_NUM_NBPMEMORYCLOCK-i == now) ? "*" : "");
1543 break;
1544 default:
1545 break;
1547 return size;
1550 static int smu8_get_performance_level(struct pp_hwmgr *hwmgr, const struct pp_hw_power_state *state,
1551 PHM_PerformanceLevelDesignation designation, uint32_t index,
1552 PHM_PerformanceLevel *level)
1554 const struct smu8_power_state *ps;
1555 struct smu8_hwmgr *data;
1556 uint32_t level_index;
1557 uint32_t i;
1559 if (level == NULL || hwmgr == NULL || state == NULL)
1560 return -EINVAL;
1562 data = hwmgr->backend;
1563 ps = cast_const_smu8_power_state(state);
1565 level_index = index > ps->level - 1 ? ps->level - 1 : index;
1566 level->coreClock = ps->levels[level_index].engineClock;
1568 if (designation == PHM_PerformanceLevelDesignation_PowerContainment) {
1569 for (i = 1; i < ps->level; i++) {
1570 if (ps->levels[i].engineClock > data->dce_slow_sclk_threshold) {
1571 level->coreClock = ps->levels[i].engineClock;
1572 break;
1577 if (level_index == 0)
1578 level->memory_clock = data->sys_info.nbp_memory_clock[SMU8_NUM_NBPMEMORYCLOCK - 1];
1579 else
1580 level->memory_clock = data->sys_info.nbp_memory_clock[0];
1582 level->vddc = (smu8_convert_8Bit_index_to_voltage(hwmgr, ps->levels[level_index].vddcIndex) + 2) / 4;
1583 level->nonLocalMemoryFreq = 0;
1584 level->nonLocalMemoryWidth = 0;
1586 return 0;
1589 static int smu8_get_current_shallow_sleep_clocks(struct pp_hwmgr *hwmgr,
1590 const struct pp_hw_power_state *state, struct pp_clock_info *clock_info)
1592 const struct smu8_power_state *ps = cast_const_smu8_power_state(state);
1594 clock_info->min_eng_clk = ps->levels[0].engineClock / (1 << (ps->levels[0].ssDividerIndex));
1595 clock_info->max_eng_clk = ps->levels[ps->level - 1].engineClock / (1 << (ps->levels[ps->level - 1].ssDividerIndex));
1597 return 0;
1600 static int smu8_get_clock_by_type(struct pp_hwmgr *hwmgr, enum amd_pp_clock_type type,
1601 struct amd_pp_clocks *clocks)
1603 struct smu8_hwmgr *data = hwmgr->backend;
1604 int i;
1605 struct phm_clock_voltage_dependency_table *table;
1607 clocks->count = smu8_get_max_sclk_level(hwmgr);
1608 switch (type) {
1609 case amd_pp_disp_clock:
1610 for (i = 0; i < clocks->count; i++)
1611 clocks->clock[i] = data->sys_info.display_clock[i] * 10;
1612 break;
1613 case amd_pp_sys_clock:
1614 table = hwmgr->dyn_state.vddc_dependency_on_sclk;
1615 for (i = 0; i < clocks->count; i++)
1616 clocks->clock[i] = table->entries[i].clk * 10;
1617 break;
1618 case amd_pp_mem_clock:
1619 clocks->count = SMU8_NUM_NBPMEMORYCLOCK;
1620 for (i = 0; i < clocks->count; i++)
1621 clocks->clock[i] = data->sys_info.nbp_memory_clock[clocks->count - 1 - i] * 10;
1622 break;
1623 default:
1624 return -1;
1627 return 0;
1630 static int smu8_get_max_high_clocks(struct pp_hwmgr *hwmgr, struct amd_pp_simple_clock_info *clocks)
1632 struct phm_clock_voltage_dependency_table *table =
1633 hwmgr->dyn_state.vddc_dependency_on_sclk;
1634 unsigned long level;
1635 const struct phm_clock_and_voltage_limits *limits =
1636 &hwmgr->dyn_state.max_clock_voltage_on_ac;
1638 if ((NULL == table) || (table->count <= 0) || (clocks == NULL))
1639 return -EINVAL;
1641 level = smu8_get_max_sclk_level(hwmgr) - 1;
1643 if (level < table->count)
1644 clocks->engine_max_clock = table->entries[level].clk;
1645 else
1646 clocks->engine_max_clock = table->entries[table->count - 1].clk;
1648 clocks->memory_max_clock = limits->mclk;
1650 return 0;
1653 static int smu8_thermal_get_temperature(struct pp_hwmgr *hwmgr)
1655 int actual_temp = 0;
1656 uint32_t val = cgs_read_ind_register(hwmgr->device,
1657 CGS_IND_REG__SMC, ixTHM_TCON_CUR_TMP);
1658 uint32_t temp = PHM_GET_FIELD(val, THM_TCON_CUR_TMP, CUR_TEMP);
1660 if (PHM_GET_FIELD(val, THM_TCON_CUR_TMP, CUR_TEMP_RANGE_SEL))
1661 actual_temp = ((temp / 8) - 49) * PP_TEMPERATURE_UNITS_PER_CENTIGRADES;
1662 else
1663 actual_temp = (temp / 8) * PP_TEMPERATURE_UNITS_PER_CENTIGRADES;
1665 return actual_temp;
1668 static int smu8_read_sensor(struct pp_hwmgr *hwmgr, int idx,
1669 void *value, int *size)
1671 struct smu8_hwmgr *data = hwmgr->backend;
1673 struct phm_clock_voltage_dependency_table *table =
1674 hwmgr->dyn_state.vddc_dependency_on_sclk;
1676 struct phm_vce_clock_voltage_dependency_table *vce_table =
1677 hwmgr->dyn_state.vce_clock_voltage_dependency_table;
1679 struct phm_uvd_clock_voltage_dependency_table *uvd_table =
1680 hwmgr->dyn_state.uvd_clock_voltage_dependency_table;
1682 uint32_t sclk_index = PHM_GET_FIELD(cgs_read_ind_register(hwmgr->device, CGS_IND_REG__SMC, ixTARGET_AND_CURRENT_PROFILE_INDEX),
1683 TARGET_AND_CURRENT_PROFILE_INDEX, CURR_SCLK_INDEX);
1684 uint32_t uvd_index = PHM_GET_FIELD(cgs_read_ind_register(hwmgr->device, CGS_IND_REG__SMC, ixTARGET_AND_CURRENT_PROFILE_INDEX_2),
1685 TARGET_AND_CURRENT_PROFILE_INDEX_2, CURR_UVD_INDEX);
1686 uint32_t vce_index = PHM_GET_FIELD(cgs_read_ind_register(hwmgr->device, CGS_IND_REG__SMC, ixTARGET_AND_CURRENT_PROFILE_INDEX_2),
1687 TARGET_AND_CURRENT_PROFILE_INDEX_2, CURR_VCE_INDEX);
1689 uint32_t sclk, vclk, dclk, ecclk, tmp, activity_percent;
1690 uint16_t vddnb, vddgfx;
1691 int result;
1693 /* size must be at least 4 bytes for all sensors */
1694 if (*size < 4)
1695 return -EINVAL;
1696 *size = 4;
1698 switch (idx) {
1699 case AMDGPU_PP_SENSOR_GFX_SCLK:
1700 if (sclk_index < NUM_SCLK_LEVELS) {
1701 sclk = table->entries[sclk_index].clk;
1702 *((uint32_t *)value) = sclk;
1703 return 0;
1705 return -EINVAL;
1706 case AMDGPU_PP_SENSOR_VDDNB:
1707 tmp = (cgs_read_ind_register(hwmgr->device, CGS_IND_REG__SMC, ixSMUSVI_NB_CURRENTVID) &
1708 CURRENT_NB_VID_MASK) >> CURRENT_NB_VID__SHIFT;
1709 vddnb = smu8_convert_8Bit_index_to_voltage(hwmgr, tmp) / 4;
1710 *((uint32_t *)value) = vddnb;
1711 return 0;
1712 case AMDGPU_PP_SENSOR_VDDGFX:
1713 tmp = (cgs_read_ind_register(hwmgr->device, CGS_IND_REG__SMC, ixSMUSVI_GFX_CURRENTVID) &
1714 CURRENT_GFX_VID_MASK) >> CURRENT_GFX_VID__SHIFT;
1715 vddgfx = smu8_convert_8Bit_index_to_voltage(hwmgr, (u16)tmp) / 4;
1716 *((uint32_t *)value) = vddgfx;
1717 return 0;
1718 case AMDGPU_PP_SENSOR_UVD_VCLK:
1719 if (!data->uvd_power_gated) {
1720 if (uvd_index >= SMU8_MAX_HARDWARE_POWERLEVELS) {
1721 return -EINVAL;
1722 } else {
1723 vclk = uvd_table->entries[uvd_index].vclk;
1724 *((uint32_t *)value) = vclk;
1725 return 0;
1728 *((uint32_t *)value) = 0;
1729 return 0;
1730 case AMDGPU_PP_SENSOR_UVD_DCLK:
1731 if (!data->uvd_power_gated) {
1732 if (uvd_index >= SMU8_MAX_HARDWARE_POWERLEVELS) {
1733 return -EINVAL;
1734 } else {
1735 dclk = uvd_table->entries[uvd_index].dclk;
1736 *((uint32_t *)value) = dclk;
1737 return 0;
1740 *((uint32_t *)value) = 0;
1741 return 0;
1742 case AMDGPU_PP_SENSOR_VCE_ECCLK:
1743 if (!data->vce_power_gated) {
1744 if (vce_index >= SMU8_MAX_HARDWARE_POWERLEVELS) {
1745 return -EINVAL;
1746 } else {
1747 ecclk = vce_table->entries[vce_index].ecclk;
1748 *((uint32_t *)value) = ecclk;
1749 return 0;
1752 *((uint32_t *)value) = 0;
1753 return 0;
1754 case AMDGPU_PP_SENSOR_GPU_LOAD:
1755 result = smum_send_msg_to_smc(hwmgr, PPSMC_MSG_GetAverageGraphicsActivity);
1756 if (0 == result) {
1757 activity_percent = cgs_read_register(hwmgr->device, mmSMU_MP1_SRBM2P_ARG_0);
1758 activity_percent = activity_percent > 100 ? 100 : activity_percent;
1759 } else {
1760 activity_percent = 50;
1762 *((uint32_t *)value) = activity_percent;
1763 return 0;
1764 case AMDGPU_PP_SENSOR_UVD_POWER:
1765 *((uint32_t *)value) = data->uvd_power_gated ? 0 : 1;
1766 return 0;
1767 case AMDGPU_PP_SENSOR_VCE_POWER:
1768 *((uint32_t *)value) = data->vce_power_gated ? 0 : 1;
1769 return 0;
1770 case AMDGPU_PP_SENSOR_GPU_TEMP:
1771 *((uint32_t *)value) = smu8_thermal_get_temperature(hwmgr);
1772 return 0;
1773 default:
1774 return -EINVAL;
1778 static int smu8_notify_cac_buffer_info(struct pp_hwmgr *hwmgr,
1779 uint32_t virtual_addr_low,
1780 uint32_t virtual_addr_hi,
1781 uint32_t mc_addr_low,
1782 uint32_t mc_addr_hi,
1783 uint32_t size)
1785 smum_send_msg_to_smc_with_parameter(hwmgr,
1786 PPSMC_MSG_DramAddrHiVirtual,
1787 mc_addr_hi);
1788 smum_send_msg_to_smc_with_parameter(hwmgr,
1789 PPSMC_MSG_DramAddrLoVirtual,
1790 mc_addr_low);
1791 smum_send_msg_to_smc_with_parameter(hwmgr,
1792 PPSMC_MSG_DramAddrHiPhysical,
1793 virtual_addr_hi);
1794 smum_send_msg_to_smc_with_parameter(hwmgr,
1795 PPSMC_MSG_DramAddrLoPhysical,
1796 virtual_addr_low);
1798 smum_send_msg_to_smc_with_parameter(hwmgr,
1799 PPSMC_MSG_DramBufferSize,
1800 size);
1801 return 0;
1804 static int smu8_get_thermal_temperature_range(struct pp_hwmgr *hwmgr,
1805 struct PP_TemperatureRange *thermal_data)
1807 struct smu8_hwmgr *data = hwmgr->backend;
1809 memcpy(thermal_data, &SMU7ThermalPolicy[0], sizeof(struct PP_TemperatureRange));
1811 thermal_data->max = (data->thermal_auto_throttling_treshold +
1812 data->sys_info.htc_hyst_lmt) *
1813 PP_TEMPERATURE_UNITS_PER_CENTIGRADES;
1815 return 0;
1818 static int smu8_enable_disable_uvd_dpm(struct pp_hwmgr *hwmgr, bool enable)
1820 struct smu8_hwmgr *data = hwmgr->backend;
1821 uint32_t dpm_features = 0;
1823 if (enable &&
1824 phm_cap_enabled(hwmgr->platform_descriptor.platformCaps,
1825 PHM_PlatformCaps_UVDDPM)) {
1826 data->dpm_flags |= DPMFlags_UVD_Enabled;
1827 dpm_features |= UVD_DPM_MASK;
1828 smum_send_msg_to_smc_with_parameter(hwmgr,
1829 PPSMC_MSG_EnableAllSmuFeatures, dpm_features);
1830 } else {
1831 dpm_features |= UVD_DPM_MASK;
1832 data->dpm_flags &= ~DPMFlags_UVD_Enabled;
1833 smum_send_msg_to_smc_with_parameter(hwmgr,
1834 PPSMC_MSG_DisableAllSmuFeatures, dpm_features);
1836 return 0;
1839 int smu8_dpm_update_uvd_dpm(struct pp_hwmgr *hwmgr, bool bgate)
1841 struct smu8_hwmgr *data = hwmgr->backend;
1842 struct phm_uvd_clock_voltage_dependency_table *ptable =
1843 hwmgr->dyn_state.uvd_clock_voltage_dependency_table;
1845 if (!bgate) {
1846 /* Stable Pstate is enabled and we need to set the UVD DPM to highest level */
1847 if (PP_CAP(PHM_PlatformCaps_StablePState) ||
1848 hwmgr->en_umd_pstate) {
1849 data->uvd_dpm.hard_min_clk =
1850 ptable->entries[ptable->count - 1].vclk;
1852 smum_send_msg_to_smc_with_parameter(hwmgr,
1853 PPSMC_MSG_SetUvdHardMin,
1854 smu8_get_uvd_level(hwmgr,
1855 data->uvd_dpm.hard_min_clk,
1856 PPSMC_MSG_SetUvdHardMin));
1858 smu8_enable_disable_uvd_dpm(hwmgr, true);
1859 } else {
1860 smu8_enable_disable_uvd_dpm(hwmgr, true);
1862 } else {
1863 smu8_enable_disable_uvd_dpm(hwmgr, false);
1866 return 0;
1869 static int smu8_enable_disable_vce_dpm(struct pp_hwmgr *hwmgr, bool enable)
1871 struct smu8_hwmgr *data = hwmgr->backend;
1872 uint32_t dpm_features = 0;
1874 if (enable && phm_cap_enabled(
1875 hwmgr->platform_descriptor.platformCaps,
1876 PHM_PlatformCaps_VCEDPM)) {
1877 data->dpm_flags |= DPMFlags_VCE_Enabled;
1878 dpm_features |= VCE_DPM_MASK;
1879 smum_send_msg_to_smc_with_parameter(hwmgr,
1880 PPSMC_MSG_EnableAllSmuFeatures, dpm_features);
1881 } else {
1882 dpm_features |= VCE_DPM_MASK;
1883 data->dpm_flags &= ~DPMFlags_VCE_Enabled;
1884 smum_send_msg_to_smc_with_parameter(hwmgr,
1885 PPSMC_MSG_DisableAllSmuFeatures, dpm_features);
1888 return 0;
1892 static void smu8_dpm_powergate_uvd(struct pp_hwmgr *hwmgr, bool bgate)
1894 struct smu8_hwmgr *data = hwmgr->backend;
1896 data->uvd_power_gated = bgate;
1898 if (bgate) {
1899 amdgpu_device_ip_set_powergating_state(hwmgr->adev,
1900 AMD_IP_BLOCK_TYPE_UVD,
1901 AMD_PG_STATE_GATE);
1902 amdgpu_device_ip_set_clockgating_state(hwmgr->adev,
1903 AMD_IP_BLOCK_TYPE_UVD,
1904 AMD_CG_STATE_GATE);
1905 smu8_dpm_update_uvd_dpm(hwmgr, true);
1906 smu8_dpm_powerdown_uvd(hwmgr);
1907 } else {
1908 smu8_dpm_powerup_uvd(hwmgr);
1909 amdgpu_device_ip_set_clockgating_state(hwmgr->adev,
1910 AMD_IP_BLOCK_TYPE_UVD,
1911 AMD_CG_STATE_UNGATE);
1912 amdgpu_device_ip_set_powergating_state(hwmgr->adev,
1913 AMD_IP_BLOCK_TYPE_UVD,
1914 AMD_PG_STATE_UNGATE);
1915 smu8_dpm_update_uvd_dpm(hwmgr, false);
1920 static void smu8_dpm_powergate_vce(struct pp_hwmgr *hwmgr, bool bgate)
1922 struct smu8_hwmgr *data = hwmgr->backend;
1924 if (bgate) {
1925 amdgpu_device_ip_set_powergating_state(hwmgr->adev,
1926 AMD_IP_BLOCK_TYPE_VCE,
1927 AMD_PG_STATE_GATE);
1928 amdgpu_device_ip_set_clockgating_state(hwmgr->adev,
1929 AMD_IP_BLOCK_TYPE_VCE,
1930 AMD_CG_STATE_GATE);
1931 smu8_enable_disable_vce_dpm(hwmgr, false);
1932 smu8_dpm_powerdown_vce(hwmgr);
1933 data->vce_power_gated = true;
1934 } else {
1935 smu8_dpm_powerup_vce(hwmgr);
1936 data->vce_power_gated = false;
1937 amdgpu_device_ip_set_clockgating_state(hwmgr->adev,
1938 AMD_IP_BLOCK_TYPE_VCE,
1939 AMD_CG_STATE_UNGATE);
1940 amdgpu_device_ip_set_powergating_state(hwmgr->adev,
1941 AMD_IP_BLOCK_TYPE_VCE,
1942 AMD_PG_STATE_UNGATE);
1943 smu8_dpm_update_vce_dpm(hwmgr);
1944 smu8_enable_disable_vce_dpm(hwmgr, true);
1948 static const struct pp_hwmgr_func smu8_hwmgr_funcs = {
1949 .backend_init = smu8_hwmgr_backend_init,
1950 .backend_fini = smu8_hwmgr_backend_fini,
1951 .apply_state_adjust_rules = smu8_apply_state_adjust_rules,
1952 .force_dpm_level = smu8_dpm_force_dpm_level,
1953 .get_power_state_size = smu8_get_power_state_size,
1954 .powerdown_uvd = smu8_dpm_powerdown_uvd,
1955 .powergate_uvd = smu8_dpm_powergate_uvd,
1956 .powergate_vce = smu8_dpm_powergate_vce,
1957 .get_mclk = smu8_dpm_get_mclk,
1958 .get_sclk = smu8_dpm_get_sclk,
1959 .patch_boot_state = smu8_dpm_patch_boot_state,
1960 .get_pp_table_entry = smu8_dpm_get_pp_table_entry,
1961 .get_num_of_pp_table_entries = smu8_dpm_get_num_of_pp_table_entries,
1962 .set_cpu_power_state = smu8_set_cpu_power_state,
1963 .store_cc6_data = smu8_store_cc6_data,
1964 .force_clock_level = smu8_force_clock_level,
1965 .print_clock_levels = smu8_print_clock_levels,
1966 .get_dal_power_level = smu8_get_dal_power_level,
1967 .get_performance_level = smu8_get_performance_level,
1968 .get_current_shallow_sleep_clocks = smu8_get_current_shallow_sleep_clocks,
1969 .get_clock_by_type = smu8_get_clock_by_type,
1970 .get_max_high_clocks = smu8_get_max_high_clocks,
1971 .read_sensor = smu8_read_sensor,
1972 .power_off_asic = smu8_power_off_asic,
1973 .asic_setup = smu8_setup_asic_task,
1974 .dynamic_state_management_enable = smu8_enable_dpm_tasks,
1975 .power_state_set = smu8_set_power_state_tasks,
1976 .dynamic_state_management_disable = smu8_disable_dpm_tasks,
1977 .notify_cac_buffer_info = smu8_notify_cac_buffer_info,
1978 .get_thermal_temperature_range = smu8_get_thermal_temperature_range,
1981 int smu8_init_function_pointers(struct pp_hwmgr *hwmgr)
1983 hwmgr->hwmgr_func = &smu8_hwmgr_funcs;
1984 hwmgr->pptable_func = &pptable_funcs;
1985 return 0;