2 * Copyright 2019 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 #define SWSMU_CODE_LAYER_L1
25 #include <linux/firmware.h>
26 #include <linux/pci.h>
27 #include <linux/power_supply.h>
28 #include <linux/reboot.h>
31 #include "amdgpu_smu.h"
32 #include "smu_internal.h"
34 #include "arcturus_ppt.h"
35 #include "navi10_ppt.h"
36 #include "sienna_cichlid_ppt.h"
37 #include "renoir_ppt.h"
38 #include "vangogh_ppt.h"
39 #include "aldebaran_ppt.h"
40 #include "yellow_carp_ppt.h"
41 #include "cyan_skillfish_ppt.h"
42 #include "smu_v13_0_0_ppt.h"
43 #include "smu_v13_0_4_ppt.h"
44 #include "smu_v13_0_5_ppt.h"
45 #include "smu_v13_0_6_ppt.h"
46 #include "smu_v13_0_7_ppt.h"
47 #include "smu_v14_0_0_ppt.h"
48 #include "smu_v14_0_2_ppt.h"
52 * DO NOT use these for err/warn/info/debug messages.
53 * Use dev_err, dev_warn, dev_info and dev_dbg instead.
54 * They are more MGPU friendly.
61 static const struct amd_pm_funcs swsmu_pm_funcs;
62 static int smu_force_smuclk_levels(struct smu_context *smu,
63 enum smu_clk_type clk_type,
65 static int smu_handle_task(struct smu_context *smu,
66 enum amd_dpm_forced_level level,
67 enum amd_pp_task task_id);
68 static int smu_reset(struct smu_context *smu);
69 static int smu_set_fan_speed_pwm(void *handle, u32 speed);
70 static int smu_set_fan_control_mode(void *handle, u32 value);
71 static int smu_set_power_limit(void *handle, uint32_t limit);
72 static int smu_set_fan_speed_rpm(void *handle, uint32_t speed);
73 static int smu_set_gfx_cgpg(struct smu_context *smu, bool enabled);
74 static int smu_set_mp1_state(void *handle, enum pp_mp1_state mp1_state);
76 static int smu_sys_get_pp_feature_mask(void *handle,
79 struct smu_context *smu = handle;
81 if (!smu->pm_enabled || !smu->adev->pm.dpm_enabled)
84 return smu_get_pp_feature_mask(smu, buf);
87 static int smu_sys_set_pp_feature_mask(void *handle,
90 struct smu_context *smu = handle;
92 if (!smu->pm_enabled || !smu->adev->pm.dpm_enabled)
95 return smu_set_pp_feature_mask(smu, new_mask);
98 int smu_set_residency_gfxoff(struct smu_context *smu, bool value)
100 if (!smu->ppt_funcs->set_gfx_off_residency)
103 return smu_set_gfx_off_residency(smu, value);
106 int smu_get_residency_gfxoff(struct smu_context *smu, u32 *value)
108 if (!smu->ppt_funcs->get_gfx_off_residency)
111 return smu_get_gfx_off_residency(smu, value);
114 int smu_get_entrycount_gfxoff(struct smu_context *smu, u64 *value)
116 if (!smu->ppt_funcs->get_gfx_off_entrycount)
119 return smu_get_gfx_off_entrycount(smu, value);
122 int smu_get_status_gfxoff(struct smu_context *smu, uint32_t *value)
124 if (!smu->ppt_funcs->get_gfx_off_status)
127 *value = smu_get_gfx_off_status(smu);
132 int smu_set_soft_freq_range(struct smu_context *smu,
133 enum smu_clk_type clk_type,
139 if (smu->ppt_funcs->set_soft_freq_limited_range)
140 ret = smu->ppt_funcs->set_soft_freq_limited_range(smu,
148 int smu_get_dpm_freq_range(struct smu_context *smu,
149 enum smu_clk_type clk_type,
158 if (smu->ppt_funcs->get_dpm_ultimate_freq)
159 ret = smu->ppt_funcs->get_dpm_ultimate_freq(smu,
167 int smu_set_gfx_power_up_by_imu(struct smu_context *smu)
170 struct amdgpu_device *adev = smu->adev;
172 if (smu->ppt_funcs->set_gfx_power_up_by_imu) {
173 ret = smu->ppt_funcs->set_gfx_power_up_by_imu(smu);
175 dev_err(adev->dev, "Failed to enable gfx imu!\n");
180 static u32 smu_get_mclk(void *handle, bool low)
182 struct smu_context *smu = handle;
186 ret = smu_get_dpm_freq_range(smu, SMU_UCLK,
187 low ? &clk_freq : NULL,
188 !low ? &clk_freq : NULL);
191 return clk_freq * 100;
194 static u32 smu_get_sclk(void *handle, bool low)
196 struct smu_context *smu = handle;
200 ret = smu_get_dpm_freq_range(smu, SMU_GFXCLK,
201 low ? &clk_freq : NULL,
202 !low ? &clk_freq : NULL);
205 return clk_freq * 100;
208 static int smu_set_gfx_imu_enable(struct smu_context *smu)
210 struct amdgpu_device *adev = smu->adev;
212 if (adev->firmware.load_type != AMDGPU_FW_LOAD_PSP)
215 if (amdgpu_in_reset(smu->adev) || adev->in_s0ix)
218 return smu_set_gfx_power_up_by_imu(smu);
221 static bool is_vcn_enabled(struct amdgpu_device *adev)
225 for (i = 0; i < adev->num_ip_blocks; i++) {
226 if ((adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_VCN ||
227 adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_JPEG) &&
228 !adev->ip_blocks[i].status.valid)
235 static int smu_dpm_set_vcn_enable(struct smu_context *smu,
238 struct smu_power_context *smu_power = &smu->smu_power;
239 struct smu_power_gate *power_gate = &smu_power->power_gate;
243 * don't poweron vcn/jpeg when they are skipped.
245 if (!is_vcn_enabled(smu->adev))
248 if (!smu->ppt_funcs->dpm_set_vcn_enable)
251 if (atomic_read(&power_gate->vcn_gated) ^ enable)
254 ret = smu->ppt_funcs->dpm_set_vcn_enable(smu, enable);
256 atomic_set(&power_gate->vcn_gated, !enable);
261 static int smu_dpm_set_jpeg_enable(struct smu_context *smu,
264 struct smu_power_context *smu_power = &smu->smu_power;
265 struct smu_power_gate *power_gate = &smu_power->power_gate;
268 if (!is_vcn_enabled(smu->adev))
271 if (!smu->ppt_funcs->dpm_set_jpeg_enable)
274 if (atomic_read(&power_gate->jpeg_gated) ^ enable)
277 ret = smu->ppt_funcs->dpm_set_jpeg_enable(smu, enable);
279 atomic_set(&power_gate->jpeg_gated, !enable);
284 static int smu_dpm_set_vpe_enable(struct smu_context *smu,
287 struct smu_power_context *smu_power = &smu->smu_power;
288 struct smu_power_gate *power_gate = &smu_power->power_gate;
291 if (!smu->ppt_funcs->dpm_set_vpe_enable)
294 if (atomic_read(&power_gate->vpe_gated) ^ enable)
297 ret = smu->ppt_funcs->dpm_set_vpe_enable(smu, enable);
299 atomic_set(&power_gate->vpe_gated, !enable);
304 static int smu_dpm_set_umsch_mm_enable(struct smu_context *smu,
307 struct smu_power_context *smu_power = &smu->smu_power;
308 struct smu_power_gate *power_gate = &smu_power->power_gate;
311 if (!smu->adev->enable_umsch_mm)
314 if (!smu->ppt_funcs->dpm_set_umsch_mm_enable)
317 if (atomic_read(&power_gate->umsch_mm_gated) ^ enable)
320 ret = smu->ppt_funcs->dpm_set_umsch_mm_enable(smu, enable);
322 atomic_set(&power_gate->umsch_mm_gated, !enable);
328 * smu_dpm_set_power_gate - power gate/ungate the specific IP block
330 * @handle: smu_context pointer
331 * @block_type: the IP block to power gate/ungate
332 * @gate: to power gate if true, ungate otherwise
334 * This API uses no smu->mutex lock protection due to:
335 * 1. It is either called by other IP block(gfx/sdma/vcn/uvd/vce).
336 * This is guarded to be race condition free by the caller.
337 * 2. Or get called on user setting request of power_dpm_force_performance_level.
338 * Under this case, the smu->mutex lock protection is already enforced on
339 * the parent API smu_force_performance_level of the call path.
341 static int smu_dpm_set_power_gate(void *handle,
345 struct smu_context *smu = handle;
348 if (!smu->pm_enabled || !smu->adev->pm.dpm_enabled) {
349 dev_WARN(smu->adev->dev,
350 "SMU uninitialized but power %s requested for %u!\n",
351 gate ? "gate" : "ungate", block_type);
355 switch (block_type) {
357 * Some legacy code of amdgpu_vcn.c and vcn_v2*.c still uses
358 * AMD_IP_BLOCK_TYPE_UVD for VCN. So, here both of them are kept.
360 case AMD_IP_BLOCK_TYPE_UVD:
361 case AMD_IP_BLOCK_TYPE_VCN:
362 ret = smu_dpm_set_vcn_enable(smu, !gate);
364 dev_err(smu->adev->dev, "Failed to power %s VCN!\n",
365 gate ? "gate" : "ungate");
367 case AMD_IP_BLOCK_TYPE_GFX:
368 ret = smu_gfx_off_control(smu, gate);
370 dev_err(smu->adev->dev, "Failed to %s gfxoff!\n",
371 gate ? "enable" : "disable");
373 case AMD_IP_BLOCK_TYPE_SDMA:
374 ret = smu_powergate_sdma(smu, gate);
376 dev_err(smu->adev->dev, "Failed to power %s SDMA!\n",
377 gate ? "gate" : "ungate");
379 case AMD_IP_BLOCK_TYPE_JPEG:
380 ret = smu_dpm_set_jpeg_enable(smu, !gate);
382 dev_err(smu->adev->dev, "Failed to power %s JPEG!\n",
383 gate ? "gate" : "ungate");
385 case AMD_IP_BLOCK_TYPE_VPE:
386 ret = smu_dpm_set_vpe_enable(smu, !gate);
388 dev_err(smu->adev->dev, "Failed to power %s VPE!\n",
389 gate ? "gate" : "ungate");
392 dev_err(smu->adev->dev, "Unsupported block type!\n");
400 * smu_set_user_clk_dependencies - set user profile clock dependencies
402 * @smu: smu_context pointer
403 * @clk: enum smu_clk_type type
405 * Enable/Disable the clock dependency for the @clk type.
407 static void smu_set_user_clk_dependencies(struct smu_context *smu, enum smu_clk_type clk)
409 if (smu->adev->in_suspend)
412 if (clk == SMU_MCLK) {
413 smu->user_dpm_profile.clk_dependency = 0;
414 smu->user_dpm_profile.clk_dependency = BIT(SMU_FCLK) | BIT(SMU_SOCCLK);
415 } else if (clk == SMU_FCLK) {
416 /* MCLK takes precedence over FCLK */
417 if (smu->user_dpm_profile.clk_dependency == (BIT(SMU_FCLK) | BIT(SMU_SOCCLK)))
420 smu->user_dpm_profile.clk_dependency = 0;
421 smu->user_dpm_profile.clk_dependency = BIT(SMU_MCLK) | BIT(SMU_SOCCLK);
422 } else if (clk == SMU_SOCCLK) {
423 /* MCLK takes precedence over SOCCLK */
424 if (smu->user_dpm_profile.clk_dependency == (BIT(SMU_FCLK) | BIT(SMU_SOCCLK)))
427 smu->user_dpm_profile.clk_dependency = 0;
428 smu->user_dpm_profile.clk_dependency = BIT(SMU_MCLK) | BIT(SMU_FCLK);
430 /* Add clk dependencies here, if any */
435 * smu_restore_dpm_user_profile - reinstate user dpm profile
437 * @smu: smu_context pointer
439 * Restore the saved user power configurations include power limit,
440 * clock frequencies, fan control mode and fan speed.
442 static void smu_restore_dpm_user_profile(struct smu_context *smu)
444 struct smu_dpm_context *smu_dpm_ctx = &(smu->smu_dpm);
447 if (!smu->adev->in_suspend)
450 if (!smu->pm_enabled || !smu->adev->pm.dpm_enabled)
453 /* Enable restore flag */
454 smu->user_dpm_profile.flags |= SMU_DPM_USER_PROFILE_RESTORE;
456 /* set the user dpm power limit */
457 if (smu->user_dpm_profile.power_limit) {
458 ret = smu_set_power_limit(smu, smu->user_dpm_profile.power_limit);
460 dev_err(smu->adev->dev, "Failed to set power limit value\n");
463 /* set the user dpm clock configurations */
464 if (smu_dpm_ctx->dpm_level == AMD_DPM_FORCED_LEVEL_MANUAL) {
465 enum smu_clk_type clk_type;
467 for (clk_type = 0; clk_type < SMU_CLK_COUNT; clk_type++) {
469 * Iterate over smu clk type and force the saved user clk
470 * configs, skip if clock dependency is enabled
472 if (!(smu->user_dpm_profile.clk_dependency & BIT(clk_type)) &&
473 smu->user_dpm_profile.clk_mask[clk_type]) {
474 ret = smu_force_smuclk_levels(smu, clk_type,
475 smu->user_dpm_profile.clk_mask[clk_type]);
477 dev_err(smu->adev->dev,
478 "Failed to set clock type = %d\n", clk_type);
483 /* set the user dpm fan configurations */
484 if (smu->user_dpm_profile.fan_mode == AMD_FAN_CTRL_MANUAL ||
485 smu->user_dpm_profile.fan_mode == AMD_FAN_CTRL_NONE) {
486 ret = smu_set_fan_control_mode(smu, smu->user_dpm_profile.fan_mode);
487 if (ret != -EOPNOTSUPP) {
488 smu->user_dpm_profile.fan_speed_pwm = 0;
489 smu->user_dpm_profile.fan_speed_rpm = 0;
490 smu->user_dpm_profile.fan_mode = AMD_FAN_CTRL_AUTO;
491 dev_err(smu->adev->dev, "Failed to set manual fan control mode\n");
494 if (smu->user_dpm_profile.fan_speed_pwm) {
495 ret = smu_set_fan_speed_pwm(smu, smu->user_dpm_profile.fan_speed_pwm);
496 if (ret != -EOPNOTSUPP)
497 dev_err(smu->adev->dev, "Failed to set manual fan speed in pwm\n");
500 if (smu->user_dpm_profile.fan_speed_rpm) {
501 ret = smu_set_fan_speed_rpm(smu, smu->user_dpm_profile.fan_speed_rpm);
502 if (ret != -EOPNOTSUPP)
503 dev_err(smu->adev->dev, "Failed to set manual fan speed in rpm\n");
507 /* Restore user customized OD settings */
508 if (smu->user_dpm_profile.user_od) {
509 if (smu->ppt_funcs->restore_user_od_settings) {
510 ret = smu->ppt_funcs->restore_user_od_settings(smu);
512 dev_err(smu->adev->dev, "Failed to upload customized OD settings\n");
516 /* Disable restore flag */
517 smu->user_dpm_profile.flags &= ~SMU_DPM_USER_PROFILE_RESTORE;
520 static int smu_get_power_num_states(void *handle,
521 struct pp_states_info *state_info)
526 /* not support power state */
527 memset(state_info, 0, sizeof(struct pp_states_info));
528 state_info->nums = 1;
529 state_info->states[0] = POWER_STATE_TYPE_DEFAULT;
534 bool is_support_sw_smu(struct amdgpu_device *adev)
536 /* vega20 is 11.0.2, but it's supported via the powerplay code */
537 if (adev->asic_type == CHIP_VEGA20)
540 if (amdgpu_ip_version(adev, MP1_HWIP, 0) >= IP_VERSION(11, 0, 0))
546 bool is_support_cclk_dpm(struct amdgpu_device *adev)
548 struct smu_context *smu = adev->powerplay.pp_handle;
550 if (!smu_feature_is_enabled(smu, SMU_FEATURE_CCLK_DPM_BIT))
557 static int smu_sys_get_pp_table(void *handle,
560 struct smu_context *smu = handle;
561 struct smu_table_context *smu_table = &smu->smu_table;
563 if (!smu->pm_enabled || !smu->adev->pm.dpm_enabled)
566 if (!smu_table->power_play_table && !smu_table->hardcode_pptable)
569 if (smu_table->hardcode_pptable)
570 *table = smu_table->hardcode_pptable;
572 *table = smu_table->power_play_table;
574 return smu_table->power_play_table_size;
577 static int smu_sys_set_pp_table(void *handle,
581 struct smu_context *smu = handle;
582 struct smu_table_context *smu_table = &smu->smu_table;
583 ATOM_COMMON_TABLE_HEADER *header = (ATOM_COMMON_TABLE_HEADER *)buf;
586 if (!smu->pm_enabled || !smu->adev->pm.dpm_enabled)
589 if (header->usStructureSize != size) {
590 dev_err(smu->adev->dev, "pp table size not matched !\n");
594 if (!smu_table->hardcode_pptable) {
595 smu_table->hardcode_pptable = kzalloc(size, GFP_KERNEL);
596 if (!smu_table->hardcode_pptable)
600 memcpy(smu_table->hardcode_pptable, buf, size);
601 smu_table->power_play_table = smu_table->hardcode_pptable;
602 smu_table->power_play_table_size = size;
605 * Special hw_fini action(for Navi1x, the DPMs disablement will be
606 * skipped) may be needed for custom pptable uploading.
608 smu->uploading_custom_pp_table = true;
610 ret = smu_reset(smu);
612 dev_info(smu->adev->dev, "smu reset failed, ret = %d\n", ret);
614 smu->uploading_custom_pp_table = false;
619 static int smu_get_driver_allowed_feature_mask(struct smu_context *smu)
621 struct smu_feature *feature = &smu->smu_feature;
622 uint32_t allowed_feature_mask[SMU_FEATURE_MAX/32];
626 * With SCPM enabled, the allowed featuremasks setting(via
627 * PPSMC_MSG_SetAllowedFeaturesMaskLow/High) is not permitted.
628 * That means there is no way to let PMFW knows the settings below.
629 * Thus, we just assume all the features are allowed under
632 if (smu->adev->scpm_enabled) {
633 bitmap_fill(feature->allowed, SMU_FEATURE_MAX);
637 bitmap_zero(feature->allowed, SMU_FEATURE_MAX);
639 ret = smu_get_allowed_feature_mask(smu, allowed_feature_mask,
644 bitmap_or(feature->allowed, feature->allowed,
645 (unsigned long *)allowed_feature_mask,
646 feature->feature_num);
651 static int smu_set_funcs(struct amdgpu_device *adev)
653 struct smu_context *smu = adev->powerplay.pp_handle;
655 if (adev->pm.pp_feature & PP_OVERDRIVE_MASK)
656 smu->od_enabled = true;
658 switch (amdgpu_ip_version(adev, MP1_HWIP, 0)) {
659 case IP_VERSION(11, 0, 0):
660 case IP_VERSION(11, 0, 5):
661 case IP_VERSION(11, 0, 9):
662 navi10_set_ppt_funcs(smu);
664 case IP_VERSION(11, 0, 7):
665 case IP_VERSION(11, 0, 11):
666 case IP_VERSION(11, 0, 12):
667 case IP_VERSION(11, 0, 13):
668 sienna_cichlid_set_ppt_funcs(smu);
670 case IP_VERSION(12, 0, 0):
671 case IP_VERSION(12, 0, 1):
672 renoir_set_ppt_funcs(smu);
674 case IP_VERSION(11, 5, 0):
675 vangogh_set_ppt_funcs(smu);
677 case IP_VERSION(13, 0, 1):
678 case IP_VERSION(13, 0, 3):
679 case IP_VERSION(13, 0, 8):
680 yellow_carp_set_ppt_funcs(smu);
682 case IP_VERSION(13, 0, 4):
683 case IP_VERSION(13, 0, 11):
684 smu_v13_0_4_set_ppt_funcs(smu);
686 case IP_VERSION(13, 0, 5):
687 smu_v13_0_5_set_ppt_funcs(smu);
689 case IP_VERSION(11, 0, 8):
690 cyan_skillfish_set_ppt_funcs(smu);
692 case IP_VERSION(11, 0, 2):
693 adev->pm.pp_feature &= ~PP_GFXOFF_MASK;
694 arcturus_set_ppt_funcs(smu);
695 /* OD is not supported on Arcturus */
696 smu->od_enabled = false;
698 case IP_VERSION(13, 0, 2):
699 aldebaran_set_ppt_funcs(smu);
700 /* Enable pp_od_clk_voltage node */
701 smu->od_enabled = true;
703 case IP_VERSION(13, 0, 0):
704 case IP_VERSION(13, 0, 10):
705 smu_v13_0_0_set_ppt_funcs(smu);
707 case IP_VERSION(13, 0, 6):
708 smu_v13_0_6_set_ppt_funcs(smu);
709 /* Enable pp_od_clk_voltage node */
710 smu->od_enabled = true;
712 case IP_VERSION(13, 0, 7):
713 smu_v13_0_7_set_ppt_funcs(smu);
715 case IP_VERSION(14, 0, 0):
716 case IP_VERSION(14, 0, 1):
717 smu_v14_0_0_set_ppt_funcs(smu);
719 case IP_VERSION(14, 0, 2):
720 case IP_VERSION(14, 0, 3):
721 smu_v14_0_2_set_ppt_funcs(smu);
730 static int smu_early_init(void *handle)
732 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
733 struct smu_context *smu;
736 smu = kzalloc(sizeof(struct smu_context), GFP_KERNEL);
741 smu->pm_enabled = !!amdgpu_dpm;
743 smu->smu_baco.state = SMU_BACO_STATE_NONE;
744 smu->smu_baco.platform_support = false;
745 smu->smu_baco.maco_support = false;
746 smu->user_dpm_profile.fan_mode = -1;
748 mutex_init(&smu->message_lock);
750 adev->powerplay.pp_handle = smu;
751 adev->powerplay.pp_funcs = &swsmu_pm_funcs;
753 r = smu_set_funcs(adev);
756 return smu_init_microcode(smu);
759 static int smu_set_default_dpm_table(struct smu_context *smu)
761 struct amdgpu_device *adev = smu->adev;
762 struct smu_power_context *smu_power = &smu->smu_power;
763 struct smu_power_gate *power_gate = &smu_power->power_gate;
764 int vcn_gate, jpeg_gate;
767 if (!smu->ppt_funcs->set_default_dpm_table)
770 if (adev->pg_flags & AMD_PG_SUPPORT_VCN)
771 vcn_gate = atomic_read(&power_gate->vcn_gated);
772 if (adev->pg_flags & AMD_PG_SUPPORT_JPEG)
773 jpeg_gate = atomic_read(&power_gate->jpeg_gated);
775 if (adev->pg_flags & AMD_PG_SUPPORT_VCN) {
776 ret = smu_dpm_set_vcn_enable(smu, true);
781 if (adev->pg_flags & AMD_PG_SUPPORT_JPEG) {
782 ret = smu_dpm_set_jpeg_enable(smu, true);
787 ret = smu->ppt_funcs->set_default_dpm_table(smu);
789 dev_err(smu->adev->dev,
790 "Failed to setup default dpm clock tables!\n");
792 if (adev->pg_flags & AMD_PG_SUPPORT_JPEG)
793 smu_dpm_set_jpeg_enable(smu, !jpeg_gate);
795 if (adev->pg_flags & AMD_PG_SUPPORT_VCN)
796 smu_dpm_set_vcn_enable(smu, !vcn_gate);
801 static int smu_apply_default_config_table_settings(struct smu_context *smu)
803 struct amdgpu_device *adev = smu->adev;
806 ret = smu_get_default_config_table_settings(smu,
807 &adev->pm.config_table);
811 return smu_set_config_table(smu, &adev->pm.config_table);
814 static int smu_late_init(void *handle)
816 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
817 struct smu_context *smu = adev->powerplay.pp_handle;
820 smu_set_fine_grain_gfx_freq_parameters(smu);
822 if (!smu->pm_enabled)
825 ret = smu_post_init(smu);
827 dev_err(adev->dev, "Failed to post smu init!\n");
832 * Explicitly notify PMFW the power mode the system in. Since
833 * the PMFW may boot the ASIC with a different mode.
834 * For those supporting ACDC switch via gpio, PMFW will
835 * handle the switch automatically. Driver involvement
838 adev->pm.ac_power = power_supply_is_system_supplied() > 0;
841 if ((amdgpu_ip_version(adev, MP1_HWIP, 0) == IP_VERSION(13, 0, 1)) ||
842 (amdgpu_ip_version(adev, MP1_HWIP, 0) == IP_VERSION(13, 0, 3)))
845 if (!amdgpu_sriov_vf(adev) || smu->od_enabled) {
846 ret = smu_set_default_od_settings(smu);
848 dev_err(adev->dev, "Failed to setup default OD settings!\n");
853 ret = smu_populate_umd_state_clk(smu);
855 dev_err(adev->dev, "Failed to populate UMD state clocks!\n");
859 ret = smu_get_asic_power_limits(smu,
860 &smu->current_power_limit,
861 &smu->default_power_limit,
862 &smu->max_power_limit,
863 &smu->min_power_limit);
865 dev_err(adev->dev, "Failed to get asic power limits!\n");
869 if (!amdgpu_sriov_vf(adev))
870 smu_get_unique_id(smu);
872 smu_get_fan_parameters(smu);
875 smu->smu_dpm.dpm_level,
876 AMD_PP_TASK_COMPLETE_INIT);
878 ret = smu_apply_default_config_table_settings(smu);
879 if (ret && (ret != -EOPNOTSUPP)) {
880 dev_err(adev->dev, "Failed to apply default DriverSmuConfig settings!\n");
884 smu_restore_dpm_user_profile(smu);
889 static int smu_init_fb_allocations(struct smu_context *smu)
891 struct amdgpu_device *adev = smu->adev;
892 struct smu_table_context *smu_table = &smu->smu_table;
893 struct smu_table *tables = smu_table->tables;
894 struct smu_table *driver_table = &(smu_table->driver_table);
895 uint32_t max_table_size = 0;
898 /* VRAM allocation for tool table */
899 if (tables[SMU_TABLE_PMSTATUSLOG].size) {
900 ret = amdgpu_bo_create_kernel(adev,
901 tables[SMU_TABLE_PMSTATUSLOG].size,
902 tables[SMU_TABLE_PMSTATUSLOG].align,
903 tables[SMU_TABLE_PMSTATUSLOG].domain,
904 &tables[SMU_TABLE_PMSTATUSLOG].bo,
905 &tables[SMU_TABLE_PMSTATUSLOG].mc_address,
906 &tables[SMU_TABLE_PMSTATUSLOG].cpu_addr);
908 dev_err(adev->dev, "VRAM allocation for tool table failed!\n");
913 driver_table->domain = AMDGPU_GEM_DOMAIN_VRAM | AMDGPU_GEM_DOMAIN_GTT;
914 /* VRAM allocation for driver table */
915 for (i = 0; i < SMU_TABLE_COUNT; i++) {
916 if (tables[i].size == 0)
919 /* If one of the tables has VRAM domain restriction, keep it in
922 if ((tables[i].domain &
923 (AMDGPU_GEM_DOMAIN_VRAM | AMDGPU_GEM_DOMAIN_GTT)) ==
924 AMDGPU_GEM_DOMAIN_VRAM)
925 driver_table->domain = AMDGPU_GEM_DOMAIN_VRAM;
927 if (i == SMU_TABLE_PMSTATUSLOG)
930 if (max_table_size < tables[i].size)
931 max_table_size = tables[i].size;
934 driver_table->size = max_table_size;
935 driver_table->align = PAGE_SIZE;
937 ret = amdgpu_bo_create_kernel(adev,
940 driver_table->domain,
942 &driver_table->mc_address,
943 &driver_table->cpu_addr);
945 dev_err(adev->dev, "VRAM allocation for driver table failed!\n");
946 if (tables[SMU_TABLE_PMSTATUSLOG].mc_address)
947 amdgpu_bo_free_kernel(&tables[SMU_TABLE_PMSTATUSLOG].bo,
948 &tables[SMU_TABLE_PMSTATUSLOG].mc_address,
949 &tables[SMU_TABLE_PMSTATUSLOG].cpu_addr);
955 static int smu_fini_fb_allocations(struct smu_context *smu)
957 struct smu_table_context *smu_table = &smu->smu_table;
958 struct smu_table *tables = smu_table->tables;
959 struct smu_table *driver_table = &(smu_table->driver_table);
961 if (tables[SMU_TABLE_PMSTATUSLOG].mc_address)
962 amdgpu_bo_free_kernel(&tables[SMU_TABLE_PMSTATUSLOG].bo,
963 &tables[SMU_TABLE_PMSTATUSLOG].mc_address,
964 &tables[SMU_TABLE_PMSTATUSLOG].cpu_addr);
966 amdgpu_bo_free_kernel(&driver_table->bo,
967 &driver_table->mc_address,
968 &driver_table->cpu_addr);
974 * smu_alloc_memory_pool - allocate memory pool in the system memory
976 * @smu: amdgpu_device pointer
978 * This memory pool will be used for SMC use and msg SetSystemVirtualDramAddr
979 * and DramLogSetDramAddr can notify it changed.
981 * Returns 0 on success, error on failure.
983 static int smu_alloc_memory_pool(struct smu_context *smu)
985 struct amdgpu_device *adev = smu->adev;
986 struct smu_table_context *smu_table = &smu->smu_table;
987 struct smu_table *memory_pool = &smu_table->memory_pool;
988 uint64_t pool_size = smu->pool_size;
991 if (pool_size == SMU_MEMORY_POOL_SIZE_ZERO)
994 memory_pool->size = pool_size;
995 memory_pool->align = PAGE_SIZE;
996 memory_pool->domain = AMDGPU_GEM_DOMAIN_GTT;
999 case SMU_MEMORY_POOL_SIZE_256_MB:
1000 case SMU_MEMORY_POOL_SIZE_512_MB:
1001 case SMU_MEMORY_POOL_SIZE_1_GB:
1002 case SMU_MEMORY_POOL_SIZE_2_GB:
1003 ret = amdgpu_bo_create_kernel(adev,
1006 memory_pool->domain,
1008 &memory_pool->mc_address,
1009 &memory_pool->cpu_addr);
1011 dev_err(adev->dev, "VRAM allocation for dramlog failed!\n");
1020 static int smu_free_memory_pool(struct smu_context *smu)
1022 struct smu_table_context *smu_table = &smu->smu_table;
1023 struct smu_table *memory_pool = &smu_table->memory_pool;
1025 if (memory_pool->size == SMU_MEMORY_POOL_SIZE_ZERO)
1028 amdgpu_bo_free_kernel(&memory_pool->bo,
1029 &memory_pool->mc_address,
1030 &memory_pool->cpu_addr);
1032 memset(memory_pool, 0, sizeof(struct smu_table));
1037 static int smu_alloc_dummy_read_table(struct smu_context *smu)
1039 struct smu_table_context *smu_table = &smu->smu_table;
1040 struct smu_table *dummy_read_1_table =
1041 &smu_table->dummy_read_1_table;
1042 struct amdgpu_device *adev = smu->adev;
1045 if (!dummy_read_1_table->size)
1048 ret = amdgpu_bo_create_kernel(adev,
1049 dummy_read_1_table->size,
1050 dummy_read_1_table->align,
1051 dummy_read_1_table->domain,
1052 &dummy_read_1_table->bo,
1053 &dummy_read_1_table->mc_address,
1054 &dummy_read_1_table->cpu_addr);
1056 dev_err(adev->dev, "VRAM allocation for dummy read table failed!\n");
1061 static void smu_free_dummy_read_table(struct smu_context *smu)
1063 struct smu_table_context *smu_table = &smu->smu_table;
1064 struct smu_table *dummy_read_1_table =
1065 &smu_table->dummy_read_1_table;
1068 amdgpu_bo_free_kernel(&dummy_read_1_table->bo,
1069 &dummy_read_1_table->mc_address,
1070 &dummy_read_1_table->cpu_addr);
1072 memset(dummy_read_1_table, 0, sizeof(struct smu_table));
1075 static int smu_smc_table_sw_init(struct smu_context *smu)
1080 * Create smu_table structure, and init smc tables such as
1081 * TABLE_PPTABLE, TABLE_WATERMARKS, TABLE_SMU_METRICS, and etc.
1083 ret = smu_init_smc_tables(smu);
1085 dev_err(smu->adev->dev, "Failed to init smc tables!\n");
1090 * Create smu_power_context structure, and allocate smu_dpm_context and
1091 * context size to fill the smu_power_context data.
1093 ret = smu_init_power(smu);
1095 dev_err(smu->adev->dev, "Failed to init smu_init_power!\n");
1100 * allocate vram bos to store smc table contents.
1102 ret = smu_init_fb_allocations(smu);
1106 ret = smu_alloc_memory_pool(smu);
1110 ret = smu_alloc_dummy_read_table(smu);
1114 ret = smu_i2c_init(smu);
1121 static int smu_smc_table_sw_fini(struct smu_context *smu)
1127 smu_free_dummy_read_table(smu);
1129 ret = smu_free_memory_pool(smu);
1133 ret = smu_fini_fb_allocations(smu);
1137 ret = smu_fini_power(smu);
1139 dev_err(smu->adev->dev, "Failed to init smu_fini_power!\n");
1143 ret = smu_fini_smc_tables(smu);
1145 dev_err(smu->adev->dev, "Failed to smu_fini_smc_tables!\n");
1152 static void smu_throttling_logging_work_fn(struct work_struct *work)
1154 struct smu_context *smu = container_of(work, struct smu_context,
1155 throttling_logging_work);
1157 smu_log_thermal_throttling(smu);
1160 static void smu_interrupt_work_fn(struct work_struct *work)
1162 struct smu_context *smu = container_of(work, struct smu_context,
1165 if (smu->ppt_funcs && smu->ppt_funcs->interrupt_work)
1166 smu->ppt_funcs->interrupt_work(smu);
1169 static void smu_swctf_delayed_work_handler(struct work_struct *work)
1171 struct smu_context *smu =
1172 container_of(work, struct smu_context, swctf_delayed_work.work);
1173 struct smu_temperature_range *range =
1174 &smu->thermal_range;
1175 struct amdgpu_device *adev = smu->adev;
1176 uint32_t hotspot_tmp, size;
1179 * If the hotspot temperature is confirmed as below SW CTF setting point
1180 * after the delay enforced, nothing will be done.
1181 * Otherwise, a graceful shutdown will be performed to prevent further damage.
1183 if (range->software_shutdown_temp &&
1184 smu->ppt_funcs->read_sensor &&
1185 !smu->ppt_funcs->read_sensor(smu,
1186 AMDGPU_PP_SENSOR_HOTSPOT_TEMP,
1189 hotspot_tmp / 1000 < range->software_shutdown_temp)
1192 dev_emerg(adev->dev, "ERROR: GPU over temperature range(SW CTF) detected!\n");
1193 dev_emerg(adev->dev, "ERROR: System is going to shutdown due to GPU SW CTF!\n");
1194 orderly_poweroff(true);
1197 static void smu_init_xgmi_plpd_mode(struct smu_context *smu)
1199 if (amdgpu_ip_version(smu->adev, MP1_HWIP, 0) == IP_VERSION(11, 0, 2)) {
1200 smu->plpd_mode = XGMI_PLPD_DEFAULT;
1204 /* PMFW put PLPD into default policy after enabling the feature */
1205 if (smu_feature_is_enabled(smu,
1206 SMU_FEATURE_XGMI_PER_LINK_PWR_DWN_BIT))
1207 smu->plpd_mode = XGMI_PLPD_DEFAULT;
1209 smu->plpd_mode = XGMI_PLPD_NONE;
1212 static int smu_sw_init(void *handle)
1214 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
1215 struct smu_context *smu = adev->powerplay.pp_handle;
1218 smu->pool_size = adev->pm.smu_prv_buffer_size;
1219 smu->smu_feature.feature_num = SMU_FEATURE_MAX;
1220 bitmap_zero(smu->smu_feature.supported, SMU_FEATURE_MAX);
1221 bitmap_zero(smu->smu_feature.allowed, SMU_FEATURE_MAX);
1223 INIT_WORK(&smu->throttling_logging_work, smu_throttling_logging_work_fn);
1224 INIT_WORK(&smu->interrupt_work, smu_interrupt_work_fn);
1225 atomic64_set(&smu->throttle_int_counter, 0);
1226 smu->watermarks_bitmap = 0;
1227 smu->power_profile_mode = PP_SMC_POWER_PROFILE_BOOTUP_DEFAULT;
1228 smu->default_power_profile_mode = PP_SMC_POWER_PROFILE_BOOTUP_DEFAULT;
1230 atomic_set(&smu->smu_power.power_gate.vcn_gated, 1);
1231 atomic_set(&smu->smu_power.power_gate.jpeg_gated, 1);
1232 atomic_set(&smu->smu_power.power_gate.vpe_gated, 1);
1233 atomic_set(&smu->smu_power.power_gate.umsch_mm_gated, 1);
1235 smu->workload_mask = 1 << smu->workload_prority[PP_SMC_POWER_PROFILE_BOOTUP_DEFAULT];
1236 smu->workload_prority[PP_SMC_POWER_PROFILE_BOOTUP_DEFAULT] = 0;
1237 smu->workload_prority[PP_SMC_POWER_PROFILE_FULLSCREEN3D] = 1;
1238 smu->workload_prority[PP_SMC_POWER_PROFILE_POWERSAVING] = 2;
1239 smu->workload_prority[PP_SMC_POWER_PROFILE_VIDEO] = 3;
1240 smu->workload_prority[PP_SMC_POWER_PROFILE_VR] = 4;
1241 smu->workload_prority[PP_SMC_POWER_PROFILE_COMPUTE] = 5;
1242 smu->workload_prority[PP_SMC_POWER_PROFILE_CUSTOM] = 6;
1244 smu->workload_setting[0] = PP_SMC_POWER_PROFILE_BOOTUP_DEFAULT;
1245 smu->workload_setting[1] = PP_SMC_POWER_PROFILE_FULLSCREEN3D;
1246 smu->workload_setting[2] = PP_SMC_POWER_PROFILE_POWERSAVING;
1247 smu->workload_setting[3] = PP_SMC_POWER_PROFILE_VIDEO;
1248 smu->workload_setting[4] = PP_SMC_POWER_PROFILE_VR;
1249 smu->workload_setting[5] = PP_SMC_POWER_PROFILE_COMPUTE;
1250 smu->workload_setting[6] = PP_SMC_POWER_PROFILE_CUSTOM;
1251 smu->display_config = &adev->pm.pm_display_cfg;
1253 smu->smu_dpm.dpm_level = AMD_DPM_FORCED_LEVEL_AUTO;
1254 smu->smu_dpm.requested_dpm_level = AMD_DPM_FORCED_LEVEL_AUTO;
1256 INIT_DELAYED_WORK(&smu->swctf_delayed_work,
1257 smu_swctf_delayed_work_handler);
1259 ret = smu_smc_table_sw_init(smu);
1261 dev_err(adev->dev, "Failed to sw init smc table!\n");
1265 /* get boot_values from vbios to set revision, gfxclk, and etc. */
1266 ret = smu_get_vbios_bootup_values(smu);
1268 dev_err(adev->dev, "Failed to get VBIOS boot clock values!\n");
1272 ret = smu_init_pptable_microcode(smu);
1274 dev_err(adev->dev, "Failed to setup pptable firmware!\n");
1278 ret = smu_register_irq_handler(smu);
1280 dev_err(adev->dev, "Failed to register smc irq handler!\n");
1284 /* If there is no way to query fan control mode, fan control is not supported */
1285 if (!smu->ppt_funcs->get_fan_control_mode)
1286 smu->adev->pm.no_fan = true;
1291 static int smu_sw_fini(void *handle)
1293 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
1294 struct smu_context *smu = adev->powerplay.pp_handle;
1297 ret = smu_smc_table_sw_fini(smu);
1299 dev_err(adev->dev, "Failed to sw fini smc table!\n");
1303 smu_fini_microcode(smu);
1308 static int smu_get_thermal_temperature_range(struct smu_context *smu)
1310 struct amdgpu_device *adev = smu->adev;
1311 struct smu_temperature_range *range =
1312 &smu->thermal_range;
1315 if (!smu->ppt_funcs->get_thermal_temperature_range)
1318 ret = smu->ppt_funcs->get_thermal_temperature_range(smu, range);
1322 adev->pm.dpm.thermal.min_temp = range->min;
1323 adev->pm.dpm.thermal.max_temp = range->max;
1324 adev->pm.dpm.thermal.max_edge_emergency_temp = range->edge_emergency_max;
1325 adev->pm.dpm.thermal.min_hotspot_temp = range->hotspot_min;
1326 adev->pm.dpm.thermal.max_hotspot_crit_temp = range->hotspot_crit_max;
1327 adev->pm.dpm.thermal.max_hotspot_emergency_temp = range->hotspot_emergency_max;
1328 adev->pm.dpm.thermal.min_mem_temp = range->mem_min;
1329 adev->pm.dpm.thermal.max_mem_crit_temp = range->mem_crit_max;
1330 adev->pm.dpm.thermal.max_mem_emergency_temp = range->mem_emergency_max;
1336 * smu_wbrf_handle_exclusion_ranges - consume the wbrf exclusion ranges
1338 * @smu: smu_context pointer
1340 * Retrieve the wbrf exclusion ranges and send them to PMFW for proper handling.
1341 * Returns 0 on success, error on failure.
1343 static int smu_wbrf_handle_exclusion_ranges(struct smu_context *smu)
1345 struct wbrf_ranges_in_out wbrf_exclusion = {0};
1346 struct freq_band_range *wifi_bands = wbrf_exclusion.band_list;
1347 struct amdgpu_device *adev = smu->adev;
1348 uint32_t num_of_wbrf_ranges = MAX_NUM_OF_WBRF_RANGES;
1349 uint64_t start, end;
1352 ret = amd_wbrf_retrieve_freq_band(adev->dev, &wbrf_exclusion);
1354 dev_err(adev->dev, "Failed to retrieve exclusion ranges!\n");
1359 * The exclusion ranges array we got might be filled with holes and duplicate
1360 * entries. For example:
1361 * {(2400, 2500), (0, 0), (6882, 6962), (2400, 2500), (0, 0), (6117, 6189), (0, 0)...}
1362 * We need to do some sortups to eliminate those holes and duplicate entries.
1363 * Expected output: {(2400, 2500), (6117, 6189), (6882, 6962), (0, 0)...}
1365 for (i = 0; i < num_of_wbrf_ranges; i++) {
1366 start = wifi_bands[i].start;
1367 end = wifi_bands[i].end;
1369 /* get the last valid entry to fill the intermediate hole */
1370 if (!start && !end) {
1371 for (j = num_of_wbrf_ranges - 1; j > i; j--)
1372 if (wifi_bands[j].start && wifi_bands[j].end)
1375 /* no valid entry left */
1379 start = wifi_bands[i].start = wifi_bands[j].start;
1380 end = wifi_bands[i].end = wifi_bands[j].end;
1381 wifi_bands[j].start = 0;
1382 wifi_bands[j].end = 0;
1383 num_of_wbrf_ranges = j;
1386 /* eliminate duplicate entries */
1387 for (j = i + 1; j < num_of_wbrf_ranges; j++) {
1388 if ((wifi_bands[j].start == start) && (wifi_bands[j].end == end)) {
1389 wifi_bands[j].start = 0;
1390 wifi_bands[j].end = 0;
1395 /* Send the sorted wifi_bands to PMFW */
1396 ret = smu_set_wbrf_exclusion_ranges(smu, wifi_bands);
1397 /* Try to set the wifi_bands again */
1398 if (unlikely(ret == -EBUSY)) {
1400 ret = smu_set_wbrf_exclusion_ranges(smu, wifi_bands);
1407 * smu_wbrf_event_handler - handle notify events
1409 * @nb: notifier block
1410 * @action: event type
1413 * Calls relevant amdgpu function in response to wbrf event
1414 * notification from kernel.
1416 static int smu_wbrf_event_handler(struct notifier_block *nb,
1417 unsigned long action, void *_arg)
1419 struct smu_context *smu = container_of(nb, struct smu_context, wbrf_notifier);
1423 schedule_delayed_work(&smu->wbrf_delayed_work,
1424 msecs_to_jiffies(SMU_WBRF_EVENT_HANDLING_PACE));
1434 * smu_wbrf_delayed_work_handler - callback on delayed work timer expired
1436 * @work: struct work_struct pointer
1438 * Flood is over and driver will consume the latest exclusion ranges.
1440 static void smu_wbrf_delayed_work_handler(struct work_struct *work)
1442 struct smu_context *smu = container_of(work, struct smu_context, wbrf_delayed_work.work);
1444 smu_wbrf_handle_exclusion_ranges(smu);
1448 * smu_wbrf_support_check - check wbrf support
1450 * @smu: smu_context pointer
1452 * Verifies the ACPI interface whether wbrf is supported.
1454 static void smu_wbrf_support_check(struct smu_context *smu)
1456 struct amdgpu_device *adev = smu->adev;
1458 smu->wbrf_supported = smu_is_asic_wbrf_supported(smu) && amdgpu_wbrf &&
1459 acpi_amd_wbrf_supported_consumer(adev->dev);
1461 if (smu->wbrf_supported)
1462 dev_info(adev->dev, "RF interference mitigation is supported\n");
1466 * smu_wbrf_init - init driver wbrf support
1468 * @smu: smu_context pointer
1470 * Verifies the AMD ACPI interfaces and registers with the wbrf
1471 * notifier chain if wbrf feature is supported.
1472 * Returns 0 on success, error on failure.
1474 static int smu_wbrf_init(struct smu_context *smu)
1478 if (!smu->wbrf_supported)
1481 INIT_DELAYED_WORK(&smu->wbrf_delayed_work, smu_wbrf_delayed_work_handler);
1483 smu->wbrf_notifier.notifier_call = smu_wbrf_event_handler;
1484 ret = amd_wbrf_register_notifier(&smu->wbrf_notifier);
1489 * Some wifiband exclusion ranges may be already there
1490 * before our driver loaded. To make sure our driver
1491 * is awared of those exclusion ranges.
1493 schedule_delayed_work(&smu->wbrf_delayed_work,
1494 msecs_to_jiffies(SMU_WBRF_EVENT_HANDLING_PACE));
1500 * smu_wbrf_fini - tear down driver wbrf support
1502 * @smu: smu_context pointer
1504 * Unregisters with the wbrf notifier chain.
1506 static void smu_wbrf_fini(struct smu_context *smu)
1508 if (!smu->wbrf_supported)
1511 amd_wbrf_unregister_notifier(&smu->wbrf_notifier);
1513 cancel_delayed_work_sync(&smu->wbrf_delayed_work);
1516 static int smu_smc_hw_setup(struct smu_context *smu)
1518 struct smu_feature *feature = &smu->smu_feature;
1519 struct amdgpu_device *adev = smu->adev;
1520 uint8_t pcie_gen = 0, pcie_width = 0;
1521 uint64_t features_supported;
1524 switch (amdgpu_ip_version(adev, MP1_HWIP, 0)) {
1525 case IP_VERSION(11, 0, 7):
1526 case IP_VERSION(11, 0, 11):
1527 case IP_VERSION(11, 5, 0):
1528 case IP_VERSION(11, 0, 12):
1529 if (adev->in_suspend && smu_is_dpm_running(smu)) {
1530 dev_info(adev->dev, "dpm has been enabled\n");
1531 ret = smu_system_features_control(smu, true);
1533 dev_err(adev->dev, "Failed system features control!\n");
1541 ret = smu_init_display_count(smu, 0);
1543 dev_info(adev->dev, "Failed to pre-set display count as 0!\n");
1547 ret = smu_set_driver_table_location(smu);
1549 dev_err(adev->dev, "Failed to SetDriverDramAddr!\n");
1554 * Set PMSTATUSLOG table bo address with SetToolsDramAddr MSG for tools.
1556 ret = smu_set_tool_table_location(smu);
1558 dev_err(adev->dev, "Failed to SetToolsDramAddr!\n");
1563 * Use msg SetSystemVirtualDramAddr and DramLogSetDramAddr can notify
1566 ret = smu_notify_memory_pool_location(smu);
1568 dev_err(adev->dev, "Failed to SetDramLogDramAddr!\n");
1573 * It is assumed the pptable used before runpm is same as
1574 * the one used afterwards. Thus, we can reuse the stored
1575 * copy and do not need to resetup the pptable again.
1577 if (!adev->in_runpm) {
1578 ret = smu_setup_pptable(smu);
1580 dev_err(adev->dev, "Failed to setup pptable!\n");
1585 /* smu_dump_pptable(smu); */
1588 * With SCPM enabled, PSP is responsible for the PPTable transferring
1589 * (to SMU). Driver involvement is not needed and permitted.
1591 if (!adev->scpm_enabled) {
1593 * Copy pptable bo in the vram to smc with SMU MSGs such as
1594 * SetDriverDramAddr and TransferTableDram2Smu.
1596 ret = smu_write_pptable(smu);
1598 dev_err(adev->dev, "Failed to transfer pptable to SMC!\n");
1603 /* issue Run*Btc msg */
1604 ret = smu_run_btc(smu);
1608 /* Enable UclkShadow on wbrf supported */
1609 if (smu->wbrf_supported) {
1610 ret = smu_enable_uclk_shadow(smu, true);
1612 dev_err(adev->dev, "Failed to enable UclkShadow feature to support wbrf!\n");
1618 * With SCPM enabled, these actions(and relevant messages) are
1619 * not needed and permitted.
1621 if (!adev->scpm_enabled) {
1622 ret = smu_feature_set_allowed_mask(smu);
1624 dev_err(adev->dev, "Failed to set driver allowed features mask!\n");
1629 ret = smu_system_features_control(smu, true);
1631 dev_err(adev->dev, "Failed to enable requested dpm features!\n");
1635 smu_init_xgmi_plpd_mode(smu);
1637 ret = smu_feature_get_enabled_mask(smu, &features_supported);
1639 dev_err(adev->dev, "Failed to retrieve supported dpm features!\n");
1642 bitmap_copy(feature->supported,
1643 (unsigned long *)&features_supported,
1644 feature->feature_num);
1646 if (!smu_is_dpm_running(smu))
1647 dev_info(adev->dev, "dpm has been disabled\n");
1650 * Set initialized values (get from vbios) to dpm tables context such as
1651 * gfxclk, memclk, dcefclk, and etc. And enable the DPM feature for each
1654 ret = smu_set_default_dpm_table(smu);
1656 dev_err(adev->dev, "Failed to setup default dpm clock tables!\n");
1660 if (adev->pm.pcie_gen_mask & CAIL_PCIE_LINK_SPEED_SUPPORT_GEN4)
1662 else if (adev->pm.pcie_gen_mask & CAIL_PCIE_LINK_SPEED_SUPPORT_GEN3)
1664 else if (adev->pm.pcie_gen_mask & CAIL_PCIE_LINK_SPEED_SUPPORT_GEN2)
1666 else if (adev->pm.pcie_gen_mask & CAIL_PCIE_LINK_SPEED_SUPPORT_GEN1)
1669 /* Bit 31:16: LCLK DPM level. 0 is DPM0, and 1 is DPM1
1670 * Bit 15:8: PCIE GEN, 0 to 3 corresponds to GEN1 to GEN4
1671 * Bit 7:0: PCIE lane width, 1 to 7 corresponds is x1 to x32
1673 if (adev->pm.pcie_mlw_mask & CAIL_PCIE_LINK_WIDTH_SUPPORT_X16)
1675 else if (adev->pm.pcie_mlw_mask & CAIL_PCIE_LINK_WIDTH_SUPPORT_X12)
1677 else if (adev->pm.pcie_mlw_mask & CAIL_PCIE_LINK_WIDTH_SUPPORT_X8)
1679 else if (adev->pm.pcie_mlw_mask & CAIL_PCIE_LINK_WIDTH_SUPPORT_X4)
1681 else if (adev->pm.pcie_mlw_mask & CAIL_PCIE_LINK_WIDTH_SUPPORT_X2)
1683 else if (adev->pm.pcie_mlw_mask & CAIL_PCIE_LINK_WIDTH_SUPPORT_X1)
1685 ret = smu_update_pcie_parameters(smu, pcie_gen, pcie_width);
1687 dev_err(adev->dev, "Attempt to override pcie params failed!\n");
1691 ret = smu_get_thermal_temperature_range(smu);
1693 dev_err(adev->dev, "Failed to get thermal temperature ranges!\n");
1697 ret = smu_enable_thermal_alert(smu);
1699 dev_err(adev->dev, "Failed to enable thermal alert!\n");
1703 ret = smu_notify_display_change(smu);
1705 dev_err(adev->dev, "Failed to notify display change!\n");
1710 * Set min deep sleep dce fclk with bootup value from vbios via
1711 * SetMinDeepSleepDcefclk MSG.
1713 ret = smu_set_min_dcef_deep_sleep(smu,
1714 smu->smu_table.boot_values.dcefclk / 100);
1716 dev_err(adev->dev, "Error setting min deepsleep dcefclk\n");
1720 /* Init wbrf support. Properly setup the notifier */
1721 ret = smu_wbrf_init(smu);
1723 dev_err(adev->dev, "Error during wbrf init call\n");
1728 static int smu_start_smc_engine(struct smu_context *smu)
1730 struct amdgpu_device *adev = smu->adev;
1733 if (adev->firmware.load_type != AMDGPU_FW_LOAD_PSP) {
1734 if (amdgpu_ip_version(adev, MP1_HWIP, 0) < IP_VERSION(11, 0, 0)) {
1735 if (smu->ppt_funcs->load_microcode) {
1736 ret = smu->ppt_funcs->load_microcode(smu);
1743 if (smu->ppt_funcs->check_fw_status) {
1744 ret = smu->ppt_funcs->check_fw_status(smu);
1746 dev_err(adev->dev, "SMC is not ready\n");
1752 * Send msg GetDriverIfVersion to check if the return value is equal
1753 * with DRIVER_IF_VERSION of smc header.
1755 ret = smu_check_fw_version(smu);
1762 static int smu_hw_init(void *handle)
1765 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
1766 struct smu_context *smu = adev->powerplay.pp_handle;
1768 if (amdgpu_sriov_vf(adev) && !amdgpu_sriov_is_pp_one_vf(adev)) {
1769 smu->pm_enabled = false;
1773 ret = smu_start_smc_engine(smu);
1775 dev_err(adev->dev, "SMC engine is not correctly up!\n");
1780 * Check whether wbrf is supported. This needs to be done
1781 * before SMU setup starts since part of SMU configuration
1784 smu_wbrf_support_check(smu);
1787 ret = smu_set_gfx_imu_enable(smu);
1790 smu_dpm_set_vcn_enable(smu, true);
1791 smu_dpm_set_jpeg_enable(smu, true);
1792 smu_dpm_set_vpe_enable(smu, true);
1793 smu_dpm_set_umsch_mm_enable(smu, true);
1794 smu_set_gfx_cgpg(smu, true);
1797 if (!smu->pm_enabled)
1800 ret = smu_get_driver_allowed_feature_mask(smu);
1804 ret = smu_smc_hw_setup(smu);
1806 dev_err(adev->dev, "Failed to setup smc hw!\n");
1811 * Move maximum sustainable clock retrieving here considering
1812 * 1. It is not needed on resume(from S3).
1813 * 2. DAL settings come between .hw_init and .late_init of SMU.
1814 * And DAL needs to know the maximum sustainable clocks. Thus
1815 * it cannot be put in .late_init().
1817 ret = smu_init_max_sustainable_clocks(smu);
1819 dev_err(adev->dev, "Failed to init max sustainable clocks!\n");
1823 adev->pm.dpm_enabled = true;
1825 dev_info(adev->dev, "SMU is initialized successfully!\n");
1830 static int smu_disable_dpms(struct smu_context *smu)
1832 struct amdgpu_device *adev = smu->adev;
1834 bool use_baco = !smu->is_apu &&
1835 ((amdgpu_in_reset(adev) &&
1836 (amdgpu_asic_reset_method(adev) == AMD_RESET_METHOD_BACO)) ||
1837 ((adev->in_runpm || adev->in_s4) && amdgpu_asic_supports_baco(adev)));
1840 * For SMU 13.0.0 and 13.0.7, PMFW will handle the DPM features(disablement or others)
1841 * properly on suspend/reset/unload. Driver involvement may cause some unexpected issues.
1843 switch (amdgpu_ip_version(adev, MP1_HWIP, 0)) {
1844 case IP_VERSION(13, 0, 0):
1845 case IP_VERSION(13, 0, 7):
1846 case IP_VERSION(13, 0, 10):
1853 * For custom pptable uploading, skip the DPM features
1854 * disable process on Navi1x ASICs.
1855 * - As the gfx related features are under control of
1856 * RLC on those ASICs. RLC reinitialization will be
1857 * needed to reenable them. That will cost much more
1860 * - SMU firmware can handle the DPM reenablement
1863 if (smu->uploading_custom_pp_table) {
1864 switch (amdgpu_ip_version(adev, MP1_HWIP, 0)) {
1865 case IP_VERSION(11, 0, 0):
1866 case IP_VERSION(11, 0, 5):
1867 case IP_VERSION(11, 0, 9):
1868 case IP_VERSION(11, 0, 7):
1869 case IP_VERSION(11, 0, 11):
1870 case IP_VERSION(11, 5, 0):
1871 case IP_VERSION(11, 0, 12):
1872 case IP_VERSION(11, 0, 13):
1880 * For Sienna_Cichlid, PMFW will handle the features disablement properly
1881 * on BACO in. Driver involvement is unnecessary.
1884 switch (amdgpu_ip_version(adev, MP1_HWIP, 0)) {
1885 case IP_VERSION(11, 0, 7):
1886 case IP_VERSION(11, 0, 0):
1887 case IP_VERSION(11, 0, 5):
1888 case IP_VERSION(11, 0, 9):
1889 case IP_VERSION(13, 0, 7):
1897 * For SMU 13.0.4/11 and 14.0.0, PMFW will handle the features disablement properly
1898 * for gpu reset and S0i3 cases. Driver involvement is unnecessary.
1900 if (amdgpu_in_reset(adev) || adev->in_s0ix) {
1901 switch (amdgpu_ip_version(adev, MP1_HWIP, 0)) {
1902 case IP_VERSION(13, 0, 4):
1903 case IP_VERSION(13, 0, 11):
1904 case IP_VERSION(14, 0, 0):
1905 case IP_VERSION(14, 0, 1):
1913 * For gpu reset, runpm and hibernation through BACO,
1914 * BACO feature has to be kept enabled.
1916 if (use_baco && smu_feature_is_enabled(smu, SMU_FEATURE_BACO_BIT)) {
1917 ret = smu_disable_all_features_with_exception(smu,
1918 SMU_FEATURE_BACO_BIT);
1920 dev_err(adev->dev, "Failed to disable smu features except BACO.\n");
1922 /* DisableAllSmuFeatures message is not permitted with SCPM enabled */
1923 if (!adev->scpm_enabled) {
1924 ret = smu_system_features_control(smu, false);
1926 dev_err(adev->dev, "Failed to disable smu features.\n");
1930 /* Notify SMU RLC is going to be off, stop RLC and SMU interaction.
1931 * otherwise SMU will hang while interacting with RLC if RLC is halted
1932 * this is a WA for Vangogh asic which fix the SMU hang issue.
1934 ret = smu_notify_rlc_state(smu, false);
1936 dev_err(adev->dev, "Fail to notify rlc status!\n");
1940 if (amdgpu_ip_version(adev, GC_HWIP, 0) >= IP_VERSION(9, 4, 2) &&
1941 !((adev->flags & AMD_IS_APU) && adev->gfx.imu.funcs) &&
1942 !amdgpu_sriov_vf(adev) && adev->gfx.rlc.funcs->stop)
1943 adev->gfx.rlc.funcs->stop(adev);
1948 static int smu_smc_hw_cleanup(struct smu_context *smu)
1950 struct amdgpu_device *adev = smu->adev;
1955 cancel_work_sync(&smu->throttling_logging_work);
1956 cancel_work_sync(&smu->interrupt_work);
1958 ret = smu_disable_thermal_alert(smu);
1960 dev_err(adev->dev, "Fail to disable thermal alert!\n");
1964 cancel_delayed_work_sync(&smu->swctf_delayed_work);
1966 ret = smu_disable_dpms(smu);
1968 dev_err(adev->dev, "Fail to disable dpm features!\n");
1975 static int smu_reset_mp1_state(struct smu_context *smu)
1977 struct amdgpu_device *adev = smu->adev;
1980 if ((!adev->in_runpm) && (!adev->in_suspend) &&
1981 (!amdgpu_in_reset(adev)) && amdgpu_ip_version(adev, MP1_HWIP, 0) ==
1982 IP_VERSION(13, 0, 10) &&
1983 !amdgpu_device_has_display_hardware(adev))
1984 ret = smu_set_mp1_state(smu, PP_MP1_STATE_UNLOAD);
1989 static int smu_hw_fini(void *handle)
1991 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
1992 struct smu_context *smu = adev->powerplay.pp_handle;
1995 if (amdgpu_sriov_vf(adev) && !amdgpu_sriov_is_pp_one_vf(adev))
1998 smu_dpm_set_vcn_enable(smu, false);
1999 smu_dpm_set_jpeg_enable(smu, false);
2000 smu_dpm_set_vpe_enable(smu, false);
2001 smu_dpm_set_umsch_mm_enable(smu, false);
2003 adev->vcn.cur_state = AMD_PG_STATE_GATE;
2004 adev->jpeg.cur_state = AMD_PG_STATE_GATE;
2006 if (!smu->pm_enabled)
2009 adev->pm.dpm_enabled = false;
2011 ret = smu_smc_hw_cleanup(smu);
2015 ret = smu_reset_mp1_state(smu);
2022 static void smu_late_fini(void *handle)
2024 struct amdgpu_device *adev = handle;
2025 struct smu_context *smu = adev->powerplay.pp_handle;
2030 static int smu_reset(struct smu_context *smu)
2032 struct amdgpu_device *adev = smu->adev;
2035 ret = smu_hw_fini(adev);
2039 ret = smu_hw_init(adev);
2043 ret = smu_late_init(adev);
2050 static int smu_suspend(void *handle)
2052 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
2053 struct smu_context *smu = adev->powerplay.pp_handle;
2057 if (amdgpu_sriov_vf(adev) && !amdgpu_sriov_is_pp_one_vf(adev))
2060 if (!smu->pm_enabled)
2063 adev->pm.dpm_enabled = false;
2065 ret = smu_smc_hw_cleanup(smu);
2069 smu->watermarks_bitmap &= ~(WATERMARKS_LOADED);
2071 smu_set_gfx_cgpg(smu, false);
2074 * pwfw resets entrycount when device is suspended, so we save the
2075 * last value to be used when we resume to keep it consistent
2077 ret = smu_get_entrycount_gfxoff(smu, &count);
2079 adev->gfx.gfx_off_entrycount = count;
2084 static int smu_resume(void *handle)
2087 struct amdgpu_device *adev = (struct amdgpu_device *)handle;
2088 struct smu_context *smu = adev->powerplay.pp_handle;
2090 if (amdgpu_sriov_vf(adev)&& !amdgpu_sriov_is_pp_one_vf(adev))
2093 if (!smu->pm_enabled)
2096 dev_info(adev->dev, "SMU is resuming...\n");
2098 ret = smu_start_smc_engine(smu);
2100 dev_err(adev->dev, "SMC engine is not correctly up!\n");
2104 ret = smu_smc_hw_setup(smu);
2106 dev_err(adev->dev, "Failed to setup smc hw!\n");
2110 ret = smu_set_gfx_imu_enable(smu);
2114 smu_set_gfx_cgpg(smu, true);
2116 smu->disable_uclk_switch = 0;
2118 adev->pm.dpm_enabled = true;
2120 dev_info(adev->dev, "SMU is resumed successfully!\n");
2125 static int smu_display_configuration_change(void *handle,
2126 const struct amd_pp_display_configuration *display_config)
2128 struct smu_context *smu = handle;
2130 if (!smu->pm_enabled || !smu->adev->pm.dpm_enabled)
2133 if (!display_config)
2136 smu_set_min_dcef_deep_sleep(smu,
2137 display_config->min_dcef_deep_sleep_set_clk / 100);
2142 static int smu_set_clockgating_state(void *handle,
2143 enum amd_clockgating_state state)
2148 static int smu_set_powergating_state(void *handle,
2149 enum amd_powergating_state state)
2154 static int smu_enable_umd_pstate(void *handle,
2155 enum amd_dpm_forced_level *level)
2157 uint32_t profile_mode_mask = AMD_DPM_FORCED_LEVEL_PROFILE_STANDARD |
2158 AMD_DPM_FORCED_LEVEL_PROFILE_MIN_SCLK |
2159 AMD_DPM_FORCED_LEVEL_PROFILE_MIN_MCLK |
2160 AMD_DPM_FORCED_LEVEL_PROFILE_PEAK;
2162 struct smu_context *smu = (struct smu_context*)(handle);
2163 struct smu_dpm_context *smu_dpm_ctx = &(smu->smu_dpm);
2165 if (!smu->is_apu && !smu_dpm_ctx->dpm_context)
2168 if (!(smu_dpm_ctx->dpm_level & profile_mode_mask)) {
2169 /* enter umd pstate, save current level, disable gfx cg*/
2170 if (*level & profile_mode_mask) {
2171 smu_dpm_ctx->saved_dpm_level = smu_dpm_ctx->dpm_level;
2172 smu_gpo_control(smu, false);
2173 smu_gfx_ulv_control(smu, false);
2174 smu_deep_sleep_control(smu, false);
2175 amdgpu_asic_update_umd_stable_pstate(smu->adev, true);
2178 /* exit umd pstate, restore level, enable gfx cg*/
2179 if (!(*level & profile_mode_mask)) {
2180 if (*level == AMD_DPM_FORCED_LEVEL_PROFILE_EXIT)
2181 *level = smu_dpm_ctx->saved_dpm_level;
2182 amdgpu_asic_update_umd_stable_pstate(smu->adev, false);
2183 smu_deep_sleep_control(smu, true);
2184 smu_gfx_ulv_control(smu, true);
2185 smu_gpo_control(smu, true);
2192 static int smu_bump_power_profile_mode(struct smu_context *smu,
2194 uint32_t param_size)
2198 if (smu->ppt_funcs->set_power_profile_mode)
2199 ret = smu->ppt_funcs->set_power_profile_mode(smu, param, param_size);
2204 static int smu_adjust_power_state_dynamic(struct smu_context *smu,
2205 enum amd_dpm_forced_level level,
2206 bool skip_display_settings)
2211 struct smu_dpm_context *smu_dpm_ctx = &(smu->smu_dpm);
2213 if (!skip_display_settings) {
2214 ret = smu_display_config_changed(smu);
2216 dev_err(smu->adev->dev, "Failed to change display config!");
2221 ret = smu_apply_clocks_adjust_rules(smu);
2223 dev_err(smu->adev->dev, "Failed to apply clocks adjust rules!");
2227 if (!skip_display_settings) {
2228 ret = smu_notify_smc_display_config(smu);
2230 dev_err(smu->adev->dev, "Failed to notify smc display config!");
2235 if (smu_dpm_ctx->dpm_level != level) {
2236 ret = smu_asic_set_performance_level(smu, level);
2238 dev_err(smu->adev->dev, "Failed to set performance level!");
2242 /* update the saved copy */
2243 smu_dpm_ctx->dpm_level = level;
2246 if (smu_dpm_ctx->dpm_level != AMD_DPM_FORCED_LEVEL_MANUAL &&
2247 smu_dpm_ctx->dpm_level != AMD_DPM_FORCED_LEVEL_PERF_DETERMINISM) {
2248 index = fls(smu->workload_mask);
2249 index = index > 0 && index <= WORKLOAD_POLICY_MAX ? index - 1 : 0;
2250 workload = smu->workload_setting[index];
2252 if (smu->power_profile_mode != workload)
2253 smu_bump_power_profile_mode(smu, &workload, 0);
2259 static int smu_handle_task(struct smu_context *smu,
2260 enum amd_dpm_forced_level level,
2261 enum amd_pp_task task_id)
2265 if (!smu->pm_enabled || !smu->adev->pm.dpm_enabled)
2269 case AMD_PP_TASK_DISPLAY_CONFIG_CHANGE:
2270 ret = smu_pre_display_config_changed(smu);
2273 ret = smu_adjust_power_state_dynamic(smu, level, false);
2275 case AMD_PP_TASK_COMPLETE_INIT:
2276 case AMD_PP_TASK_READJUST_POWER_STATE:
2277 ret = smu_adjust_power_state_dynamic(smu, level, true);
2286 static int smu_handle_dpm_task(void *handle,
2287 enum amd_pp_task task_id,
2288 enum amd_pm_state_type *user_state)
2290 struct smu_context *smu = handle;
2291 struct smu_dpm_context *smu_dpm = &smu->smu_dpm;
2293 return smu_handle_task(smu, smu_dpm->dpm_level, task_id);
2297 static int smu_switch_power_profile(void *handle,
2298 enum PP_SMC_POWER_PROFILE type,
2301 struct smu_context *smu = handle;
2302 struct smu_dpm_context *smu_dpm_ctx = &(smu->smu_dpm);
2306 if (!smu->pm_enabled || !smu->adev->pm.dpm_enabled)
2309 if (!(type < PP_SMC_POWER_PROFILE_CUSTOM))
2313 smu->workload_mask &= ~(1 << smu->workload_prority[type]);
2314 index = fls(smu->workload_mask);
2315 index = index > 0 && index <= WORKLOAD_POLICY_MAX ? index - 1 : 0;
2316 workload = smu->workload_setting[index];
2318 smu->workload_mask |= (1 << smu->workload_prority[type]);
2319 index = fls(smu->workload_mask);
2320 index = index <= WORKLOAD_POLICY_MAX ? index - 1 : 0;
2321 workload = smu->workload_setting[index];
2324 if (smu_dpm_ctx->dpm_level != AMD_DPM_FORCED_LEVEL_MANUAL &&
2325 smu_dpm_ctx->dpm_level != AMD_DPM_FORCED_LEVEL_PERF_DETERMINISM)
2326 smu_bump_power_profile_mode(smu, &workload, 0);
2331 static enum amd_dpm_forced_level smu_get_performance_level(void *handle)
2333 struct smu_context *smu = handle;
2334 struct smu_dpm_context *smu_dpm_ctx = &(smu->smu_dpm);
2336 if (!smu->pm_enabled || !smu->adev->pm.dpm_enabled)
2339 if (!smu->is_apu && !smu_dpm_ctx->dpm_context)
2342 return smu_dpm_ctx->dpm_level;
2345 static int smu_force_performance_level(void *handle,
2346 enum amd_dpm_forced_level level)
2348 struct smu_context *smu = handle;
2349 struct smu_dpm_context *smu_dpm_ctx = &(smu->smu_dpm);
2352 if (!smu->pm_enabled || !smu->adev->pm.dpm_enabled)
2355 if (!smu->is_apu && !smu_dpm_ctx->dpm_context)
2358 ret = smu_enable_umd_pstate(smu, &level);
2362 ret = smu_handle_task(smu, level,
2363 AMD_PP_TASK_READJUST_POWER_STATE);
2365 /* reset user dpm clock state */
2366 if (!ret && smu_dpm_ctx->dpm_level != AMD_DPM_FORCED_LEVEL_MANUAL) {
2367 memset(smu->user_dpm_profile.clk_mask, 0, sizeof(smu->user_dpm_profile.clk_mask));
2368 smu->user_dpm_profile.clk_dependency = 0;
2374 static int smu_set_display_count(void *handle, uint32_t count)
2376 struct smu_context *smu = handle;
2378 if (!smu->pm_enabled || !smu->adev->pm.dpm_enabled)
2381 return smu_init_display_count(smu, count);
2384 static int smu_force_smuclk_levels(struct smu_context *smu,
2385 enum smu_clk_type clk_type,
2388 struct smu_dpm_context *smu_dpm_ctx = &(smu->smu_dpm);
2391 if (!smu->pm_enabled || !smu->adev->pm.dpm_enabled)
2394 if (smu_dpm_ctx->dpm_level != AMD_DPM_FORCED_LEVEL_MANUAL) {
2395 dev_dbg(smu->adev->dev, "force clock level is for dpm manual mode only.\n");
2399 if (smu->ppt_funcs && smu->ppt_funcs->force_clk_levels) {
2400 ret = smu->ppt_funcs->force_clk_levels(smu, clk_type, mask);
2401 if (!ret && !(smu->user_dpm_profile.flags & SMU_DPM_USER_PROFILE_RESTORE)) {
2402 smu->user_dpm_profile.clk_mask[clk_type] = mask;
2403 smu_set_user_clk_dependencies(smu, clk_type);
2410 static int smu_force_ppclk_levels(void *handle,
2411 enum pp_clock_type type,
2414 struct smu_context *smu = handle;
2415 enum smu_clk_type clk_type;
2419 clk_type = SMU_SCLK; break;
2421 clk_type = SMU_MCLK; break;
2423 clk_type = SMU_PCIE; break;
2425 clk_type = SMU_SOCCLK; break;
2427 clk_type = SMU_FCLK; break;
2429 clk_type = SMU_DCEFCLK; break;
2431 clk_type = SMU_VCLK; break;
2433 clk_type = SMU_VCLK1; break;
2435 clk_type = SMU_DCLK; break;
2437 clk_type = SMU_DCLK1; break;
2439 clk_type = SMU_OD_SCLK; break;
2441 clk_type = SMU_OD_MCLK; break;
2443 clk_type = SMU_OD_VDDC_CURVE; break;
2445 clk_type = SMU_OD_RANGE; break;
2450 return smu_force_smuclk_levels(smu, clk_type, mask);
2454 * On system suspending or resetting, the dpm_enabled
2455 * flag will be cleared. So that those SMU services which
2456 * are not supported will be gated.
2457 * However, the mp1 state setting should still be granted
2458 * even if the dpm_enabled cleared.
2460 static int smu_set_mp1_state(void *handle,
2461 enum pp_mp1_state mp1_state)
2463 struct smu_context *smu = handle;
2466 if (!smu->pm_enabled)
2469 if (smu->ppt_funcs &&
2470 smu->ppt_funcs->set_mp1_state)
2471 ret = smu->ppt_funcs->set_mp1_state(smu, mp1_state);
2476 static int smu_set_df_cstate(void *handle,
2477 enum pp_df_cstate state)
2479 struct smu_context *smu = handle;
2482 if (!smu->pm_enabled || !smu->adev->pm.dpm_enabled)
2485 if (!smu->ppt_funcs || !smu->ppt_funcs->set_df_cstate)
2488 ret = smu->ppt_funcs->set_df_cstate(smu, state);
2490 dev_err(smu->adev->dev, "[SetDfCstate] failed!\n");
2495 int smu_write_watermarks_table(struct smu_context *smu)
2497 if (!smu->pm_enabled || !smu->adev->pm.dpm_enabled)
2500 return smu_set_watermarks_table(smu, NULL);
2503 static int smu_set_watermarks_for_clock_ranges(void *handle,
2504 struct pp_smu_wm_range_sets *clock_ranges)
2506 struct smu_context *smu = handle;
2508 if (!smu->pm_enabled || !smu->adev->pm.dpm_enabled)
2511 if (smu->disable_watermark)
2514 return smu_set_watermarks_table(smu, clock_ranges);
2517 int smu_set_ac_dc(struct smu_context *smu)
2521 if (!smu->pm_enabled || !smu->adev->pm.dpm_enabled)
2524 /* controlled by firmware */
2525 if (smu->dc_controlled_by_gpio)
2528 ret = smu_set_power_source(smu,
2529 smu->adev->pm.ac_power ? SMU_POWER_SOURCE_AC :
2530 SMU_POWER_SOURCE_DC);
2532 dev_err(smu->adev->dev, "Failed to switch to %s mode!\n",
2533 smu->adev->pm.ac_power ? "AC" : "DC");
2538 const struct amd_ip_funcs smu_ip_funcs = {
2540 .early_init = smu_early_init,
2541 .late_init = smu_late_init,
2542 .sw_init = smu_sw_init,
2543 .sw_fini = smu_sw_fini,
2544 .hw_init = smu_hw_init,
2545 .hw_fini = smu_hw_fini,
2546 .late_fini = smu_late_fini,
2547 .suspend = smu_suspend,
2548 .resume = smu_resume,
2550 .check_soft_reset = NULL,
2551 .wait_for_idle = NULL,
2553 .set_clockgating_state = smu_set_clockgating_state,
2554 .set_powergating_state = smu_set_powergating_state,
2557 const struct amdgpu_ip_block_version smu_v11_0_ip_block = {
2558 .type = AMD_IP_BLOCK_TYPE_SMC,
2562 .funcs = &smu_ip_funcs,
2565 const struct amdgpu_ip_block_version smu_v12_0_ip_block = {
2566 .type = AMD_IP_BLOCK_TYPE_SMC,
2570 .funcs = &smu_ip_funcs,
2573 const struct amdgpu_ip_block_version smu_v13_0_ip_block = {
2574 .type = AMD_IP_BLOCK_TYPE_SMC,
2578 .funcs = &smu_ip_funcs,
2581 const struct amdgpu_ip_block_version smu_v14_0_ip_block = {
2582 .type = AMD_IP_BLOCK_TYPE_SMC,
2586 .funcs = &smu_ip_funcs,
2589 static int smu_load_microcode(void *handle)
2591 struct smu_context *smu = handle;
2592 struct amdgpu_device *adev = smu->adev;
2595 if (!smu->pm_enabled)
2598 /* This should be used for non PSP loading */
2599 if (adev->firmware.load_type == AMDGPU_FW_LOAD_PSP)
2602 if (smu->ppt_funcs->load_microcode) {
2603 ret = smu->ppt_funcs->load_microcode(smu);
2605 dev_err(adev->dev, "Load microcode failed\n");
2610 if (smu->ppt_funcs->check_fw_status) {
2611 ret = smu->ppt_funcs->check_fw_status(smu);
2613 dev_err(adev->dev, "SMC is not ready\n");
2621 static int smu_set_gfx_cgpg(struct smu_context *smu, bool enabled)
2625 if (smu->ppt_funcs->set_gfx_cgpg)
2626 ret = smu->ppt_funcs->set_gfx_cgpg(smu, enabled);
2631 static int smu_set_fan_speed_rpm(void *handle, uint32_t speed)
2633 struct smu_context *smu = handle;
2636 if (!smu->pm_enabled || !smu->adev->pm.dpm_enabled)
2639 if (!smu->ppt_funcs->set_fan_speed_rpm)
2642 if (speed == U32_MAX)
2645 ret = smu->ppt_funcs->set_fan_speed_rpm(smu, speed);
2646 if (!ret && !(smu->user_dpm_profile.flags & SMU_DPM_USER_PROFILE_RESTORE)) {
2647 smu->user_dpm_profile.flags |= SMU_CUSTOM_FAN_SPEED_RPM;
2648 smu->user_dpm_profile.fan_speed_rpm = speed;
2650 /* Override custom PWM setting as they cannot co-exist */
2651 smu->user_dpm_profile.flags &= ~SMU_CUSTOM_FAN_SPEED_PWM;
2652 smu->user_dpm_profile.fan_speed_pwm = 0;
2659 * smu_get_power_limit - Request one of the SMU Power Limits
2661 * @handle: pointer to smu context
2662 * @limit: requested limit is written back to this variable
2663 * @pp_limit_level: &pp_power_limit_level which limit of the power to return
2664 * @pp_power_type: &pp_power_type type of power
2665 * Return: 0 on success, <0 on error
2668 int smu_get_power_limit(void *handle,
2670 enum pp_power_limit_level pp_limit_level,
2671 enum pp_power_type pp_power_type)
2673 struct smu_context *smu = handle;
2674 struct amdgpu_device *adev = smu->adev;
2675 enum smu_ppt_limit_level limit_level;
2676 uint32_t limit_type;
2679 if (!smu->pm_enabled || !smu->adev->pm.dpm_enabled)
2682 switch (pp_power_type) {
2683 case PP_PWR_TYPE_SUSTAINED:
2684 limit_type = SMU_DEFAULT_PPT_LIMIT;
2686 case PP_PWR_TYPE_FAST:
2687 limit_type = SMU_FAST_PPT_LIMIT;
2693 switch (pp_limit_level) {
2694 case PP_PWR_LIMIT_CURRENT:
2695 limit_level = SMU_PPT_LIMIT_CURRENT;
2697 case PP_PWR_LIMIT_DEFAULT:
2698 limit_level = SMU_PPT_LIMIT_DEFAULT;
2700 case PP_PWR_LIMIT_MAX:
2701 limit_level = SMU_PPT_LIMIT_MAX;
2703 case PP_PWR_LIMIT_MIN:
2704 limit_level = SMU_PPT_LIMIT_MIN;
2710 if (limit_type != SMU_DEFAULT_PPT_LIMIT) {
2711 if (smu->ppt_funcs->get_ppt_limit)
2712 ret = smu->ppt_funcs->get_ppt_limit(smu, limit, limit_type, limit_level);
2714 switch (limit_level) {
2715 case SMU_PPT_LIMIT_CURRENT:
2716 switch (amdgpu_ip_version(adev, MP1_HWIP, 0)) {
2717 case IP_VERSION(13, 0, 2):
2718 case IP_VERSION(13, 0, 6):
2719 case IP_VERSION(11, 0, 7):
2720 case IP_VERSION(11, 0, 11):
2721 case IP_VERSION(11, 0, 12):
2722 case IP_VERSION(11, 0, 13):
2723 ret = smu_get_asic_power_limits(smu,
2724 &smu->current_power_limit,
2730 *limit = smu->current_power_limit;
2732 case SMU_PPT_LIMIT_DEFAULT:
2733 *limit = smu->default_power_limit;
2735 case SMU_PPT_LIMIT_MAX:
2736 *limit = smu->max_power_limit;
2738 case SMU_PPT_LIMIT_MIN:
2739 *limit = smu->min_power_limit;
2749 static int smu_set_power_limit(void *handle, uint32_t limit)
2751 struct smu_context *smu = handle;
2752 uint32_t limit_type = limit >> 24;
2755 if (!smu->pm_enabled || !smu->adev->pm.dpm_enabled)
2759 if (limit_type != SMU_DEFAULT_PPT_LIMIT)
2760 if (smu->ppt_funcs->set_power_limit)
2761 return smu->ppt_funcs->set_power_limit(smu, limit_type, limit);
2763 if ((limit > smu->max_power_limit) || (limit < smu->min_power_limit)) {
2764 dev_err(smu->adev->dev,
2765 "New power limit (%d) is out of range [%d,%d]\n",
2766 limit, smu->min_power_limit, smu->max_power_limit);
2771 limit = smu->current_power_limit;
2773 if (smu->ppt_funcs->set_power_limit) {
2774 ret = smu->ppt_funcs->set_power_limit(smu, limit_type, limit);
2775 if (!ret && !(smu->user_dpm_profile.flags & SMU_DPM_USER_PROFILE_RESTORE))
2776 smu->user_dpm_profile.power_limit = limit;
2782 static int smu_print_smuclk_levels(struct smu_context *smu, enum smu_clk_type clk_type, char *buf)
2786 if (!smu->pm_enabled || !smu->adev->pm.dpm_enabled)
2789 if (smu->ppt_funcs->print_clk_levels)
2790 ret = smu->ppt_funcs->print_clk_levels(smu, clk_type, buf);
2795 static enum smu_clk_type smu_convert_to_smuclk(enum pp_clock_type type)
2797 enum smu_clk_type clk_type;
2801 clk_type = SMU_SCLK; break;
2803 clk_type = SMU_MCLK; break;
2805 clk_type = SMU_PCIE; break;
2807 clk_type = SMU_SOCCLK; break;
2809 clk_type = SMU_FCLK; break;
2811 clk_type = SMU_DCEFCLK; break;
2813 clk_type = SMU_VCLK; break;
2815 clk_type = SMU_VCLK1; break;
2817 clk_type = SMU_DCLK; break;
2819 clk_type = SMU_DCLK1; break;
2821 clk_type = SMU_OD_SCLK; break;
2823 clk_type = SMU_OD_MCLK; break;
2825 clk_type = SMU_OD_VDDC_CURVE; break;
2827 clk_type = SMU_OD_RANGE; break;
2828 case OD_VDDGFX_OFFSET:
2829 clk_type = SMU_OD_VDDGFX_OFFSET; break;
2831 clk_type = SMU_OD_CCLK; break;
2833 clk_type = SMU_OD_FAN_CURVE; break;
2834 case OD_ACOUSTIC_LIMIT:
2835 clk_type = SMU_OD_ACOUSTIC_LIMIT; break;
2836 case OD_ACOUSTIC_TARGET:
2837 clk_type = SMU_OD_ACOUSTIC_TARGET; break;
2838 case OD_FAN_TARGET_TEMPERATURE:
2839 clk_type = SMU_OD_FAN_TARGET_TEMPERATURE; break;
2840 case OD_FAN_MINIMUM_PWM:
2841 clk_type = SMU_OD_FAN_MINIMUM_PWM; break;
2843 clk_type = SMU_CLK_COUNT; break;
2849 static int smu_print_ppclk_levels(void *handle,
2850 enum pp_clock_type type,
2853 struct smu_context *smu = handle;
2854 enum smu_clk_type clk_type;
2856 clk_type = smu_convert_to_smuclk(type);
2857 if (clk_type == SMU_CLK_COUNT)
2860 return smu_print_smuclk_levels(smu, clk_type, buf);
2863 static int smu_emit_ppclk_levels(void *handle, enum pp_clock_type type, char *buf, int *offset)
2865 struct smu_context *smu = handle;
2866 enum smu_clk_type clk_type;
2868 clk_type = smu_convert_to_smuclk(type);
2869 if (clk_type == SMU_CLK_COUNT)
2872 if (!smu->pm_enabled || !smu->adev->pm.dpm_enabled)
2875 if (!smu->ppt_funcs->emit_clk_levels)
2878 return smu->ppt_funcs->emit_clk_levels(smu, clk_type, buf, offset);
2882 static int smu_od_edit_dpm_table(void *handle,
2883 enum PP_OD_DPM_TABLE_COMMAND type,
2884 long *input, uint32_t size)
2886 struct smu_context *smu = handle;
2889 if (!smu->pm_enabled || !smu->adev->pm.dpm_enabled)
2892 if (smu->ppt_funcs->od_edit_dpm_table) {
2893 ret = smu->ppt_funcs->od_edit_dpm_table(smu, type, input, size);
2899 static int smu_read_sensor(void *handle,
2904 struct smu_context *smu = handle;
2905 struct smu_umd_pstate_table *pstate_table =
2908 uint32_t *size, size_val;
2910 if (!smu->pm_enabled || !smu->adev->pm.dpm_enabled)
2913 if (!data || !size_arg)
2916 size_val = *size_arg;
2919 if (smu->ppt_funcs->read_sensor)
2920 if (!smu->ppt_funcs->read_sensor(smu, sensor, data, size))
2924 case AMDGPU_PP_SENSOR_STABLE_PSTATE_SCLK:
2925 *((uint32_t *)data) = pstate_table->gfxclk_pstate.standard * 100;
2928 case AMDGPU_PP_SENSOR_STABLE_PSTATE_MCLK:
2929 *((uint32_t *)data) = pstate_table->uclk_pstate.standard * 100;
2932 case AMDGPU_PP_SENSOR_PEAK_PSTATE_SCLK:
2933 *((uint32_t *)data) = pstate_table->gfxclk_pstate.peak * 100;
2936 case AMDGPU_PP_SENSOR_PEAK_PSTATE_MCLK:
2937 *((uint32_t *)data) = pstate_table->uclk_pstate.peak * 100;
2940 case AMDGPU_PP_SENSOR_ENABLED_SMC_FEATURES_MASK:
2941 ret = smu_feature_get_enabled_mask(smu, (uint64_t *)data);
2944 case AMDGPU_PP_SENSOR_UVD_POWER:
2945 *(uint32_t *)data = smu_feature_is_enabled(smu, SMU_FEATURE_DPM_UVD_BIT) ? 1 : 0;
2948 case AMDGPU_PP_SENSOR_VCE_POWER:
2949 *(uint32_t *)data = smu_feature_is_enabled(smu, SMU_FEATURE_DPM_VCE_BIT) ? 1 : 0;
2952 case AMDGPU_PP_SENSOR_VCN_POWER_STATE:
2953 *(uint32_t *)data = atomic_read(&smu->smu_power.power_gate.vcn_gated) ? 0 : 1;
2956 case AMDGPU_PP_SENSOR_MIN_FAN_RPM:
2957 *(uint32_t *)data = 0;
2967 // assign uint32_t to int
2968 *size_arg = size_val;
2973 static int smu_get_apu_thermal_limit(void *handle, uint32_t *limit)
2975 int ret = -EOPNOTSUPP;
2976 struct smu_context *smu = handle;
2978 if (smu->ppt_funcs && smu->ppt_funcs->get_apu_thermal_limit)
2979 ret = smu->ppt_funcs->get_apu_thermal_limit(smu, limit);
2984 static int smu_set_apu_thermal_limit(void *handle, uint32_t limit)
2986 int ret = -EOPNOTSUPP;
2987 struct smu_context *smu = handle;
2989 if (smu->ppt_funcs && smu->ppt_funcs->set_apu_thermal_limit)
2990 ret = smu->ppt_funcs->set_apu_thermal_limit(smu, limit);
2995 static int smu_get_power_profile_mode(void *handle, char *buf)
2997 struct smu_context *smu = handle;
2999 if (!smu->pm_enabled || !smu->adev->pm.dpm_enabled ||
3000 !smu->ppt_funcs->get_power_profile_mode)
3005 return smu->ppt_funcs->get_power_profile_mode(smu, buf);
3008 static int smu_set_power_profile_mode(void *handle,
3010 uint32_t param_size)
3012 struct smu_context *smu = handle;
3014 if (!smu->pm_enabled || !smu->adev->pm.dpm_enabled ||
3015 !smu->ppt_funcs->set_power_profile_mode)
3018 return smu_bump_power_profile_mode(smu, param, param_size);
3021 static int smu_get_fan_control_mode(void *handle, u32 *fan_mode)
3023 struct smu_context *smu = handle;
3025 if (!smu->pm_enabled || !smu->adev->pm.dpm_enabled)
3028 if (!smu->ppt_funcs->get_fan_control_mode)
3034 *fan_mode = smu->ppt_funcs->get_fan_control_mode(smu);
3039 static int smu_set_fan_control_mode(void *handle, u32 value)
3041 struct smu_context *smu = handle;
3044 if (!smu->pm_enabled || !smu->adev->pm.dpm_enabled)
3047 if (!smu->ppt_funcs->set_fan_control_mode)
3050 if (value == U32_MAX)
3053 ret = smu->ppt_funcs->set_fan_control_mode(smu, value);
3057 if (!(smu->user_dpm_profile.flags & SMU_DPM_USER_PROFILE_RESTORE)) {
3058 smu->user_dpm_profile.fan_mode = value;
3060 /* reset user dpm fan speed */
3061 if (value != AMD_FAN_CTRL_MANUAL) {
3062 smu->user_dpm_profile.fan_speed_pwm = 0;
3063 smu->user_dpm_profile.fan_speed_rpm = 0;
3064 smu->user_dpm_profile.flags &= ~(SMU_CUSTOM_FAN_SPEED_RPM | SMU_CUSTOM_FAN_SPEED_PWM);
3072 static int smu_get_fan_speed_pwm(void *handle, u32 *speed)
3074 struct smu_context *smu = handle;
3077 if (!smu->pm_enabled || !smu->adev->pm.dpm_enabled)
3080 if (!smu->ppt_funcs->get_fan_speed_pwm)
3086 ret = smu->ppt_funcs->get_fan_speed_pwm(smu, speed);
3091 static int smu_set_fan_speed_pwm(void *handle, u32 speed)
3093 struct smu_context *smu = handle;
3096 if (!smu->pm_enabled || !smu->adev->pm.dpm_enabled)
3099 if (!smu->ppt_funcs->set_fan_speed_pwm)
3102 if (speed == U32_MAX)
3105 ret = smu->ppt_funcs->set_fan_speed_pwm(smu, speed);
3106 if (!ret && !(smu->user_dpm_profile.flags & SMU_DPM_USER_PROFILE_RESTORE)) {
3107 smu->user_dpm_profile.flags |= SMU_CUSTOM_FAN_SPEED_PWM;
3108 smu->user_dpm_profile.fan_speed_pwm = speed;
3110 /* Override custom RPM setting as they cannot co-exist */
3111 smu->user_dpm_profile.flags &= ~SMU_CUSTOM_FAN_SPEED_RPM;
3112 smu->user_dpm_profile.fan_speed_rpm = 0;
3118 static int smu_get_fan_speed_rpm(void *handle, uint32_t *speed)
3120 struct smu_context *smu = handle;
3123 if (!smu->pm_enabled || !smu->adev->pm.dpm_enabled)
3126 if (!smu->ppt_funcs->get_fan_speed_rpm)
3132 ret = smu->ppt_funcs->get_fan_speed_rpm(smu, speed);
3137 static int smu_set_deep_sleep_dcefclk(void *handle, uint32_t clk)
3139 struct smu_context *smu = handle;
3141 if (!smu->pm_enabled || !smu->adev->pm.dpm_enabled)
3144 return smu_set_min_dcef_deep_sleep(smu, clk);
3147 static int smu_get_clock_by_type_with_latency(void *handle,
3148 enum amd_pp_clock_type type,
3149 struct pp_clock_levels_with_latency *clocks)
3151 struct smu_context *smu = handle;
3152 enum smu_clk_type clk_type;
3155 if (!smu->pm_enabled || !smu->adev->pm.dpm_enabled)
3158 if (smu->ppt_funcs->get_clock_by_type_with_latency) {
3160 case amd_pp_sys_clock:
3161 clk_type = SMU_GFXCLK;
3163 case amd_pp_mem_clock:
3164 clk_type = SMU_MCLK;
3166 case amd_pp_dcef_clock:
3167 clk_type = SMU_DCEFCLK;
3169 case amd_pp_disp_clock:
3170 clk_type = SMU_DISPCLK;
3173 dev_err(smu->adev->dev, "Invalid clock type!\n");
3177 ret = smu->ppt_funcs->get_clock_by_type_with_latency(smu, clk_type, clocks);
3183 static int smu_display_clock_voltage_request(void *handle,
3184 struct pp_display_clock_request *clock_req)
3186 struct smu_context *smu = handle;
3189 if (!smu->pm_enabled || !smu->adev->pm.dpm_enabled)
3192 if (smu->ppt_funcs->display_clock_voltage_request)
3193 ret = smu->ppt_funcs->display_clock_voltage_request(smu, clock_req);
3199 static int smu_display_disable_memory_clock_switch(void *handle,
3200 bool disable_memory_clock_switch)
3202 struct smu_context *smu = handle;
3205 if (!smu->pm_enabled || !smu->adev->pm.dpm_enabled)
3208 if (smu->ppt_funcs->display_disable_memory_clock_switch)
3209 ret = smu->ppt_funcs->display_disable_memory_clock_switch(smu, disable_memory_clock_switch);
3214 static int smu_set_xgmi_pstate(void *handle,
3217 struct smu_context *smu = handle;
3220 if (!smu->pm_enabled || !smu->adev->pm.dpm_enabled)
3223 if (smu->ppt_funcs->set_xgmi_pstate)
3224 ret = smu->ppt_funcs->set_xgmi_pstate(smu, pstate);
3227 dev_err(smu->adev->dev, "Failed to set XGMI pstate!\n");
3232 static int smu_get_baco_capability(void *handle)
3234 struct smu_context *smu = handle;
3236 if (!smu->pm_enabled)
3239 if (!smu->ppt_funcs || !smu->ppt_funcs->get_bamaco_support)
3242 return smu->ppt_funcs->get_bamaco_support(smu);
3245 static int smu_baco_set_state(void *handle, int state)
3247 struct smu_context *smu = handle;
3250 if (!smu->pm_enabled)
3254 if (smu->ppt_funcs->baco_exit)
3255 ret = smu->ppt_funcs->baco_exit(smu);
3256 } else if (state == 1) {
3257 if (smu->ppt_funcs->baco_enter)
3258 ret = smu->ppt_funcs->baco_enter(smu);
3264 dev_err(smu->adev->dev, "Failed to %s BACO state!\n",
3265 (state)?"enter":"exit");
3270 bool smu_mode1_reset_is_support(struct smu_context *smu)
3274 if (!smu->pm_enabled)
3277 if (smu->ppt_funcs && smu->ppt_funcs->mode1_reset_is_support)
3278 ret = smu->ppt_funcs->mode1_reset_is_support(smu);
3283 bool smu_mode2_reset_is_support(struct smu_context *smu)
3287 if (!smu->pm_enabled)
3290 if (smu->ppt_funcs && smu->ppt_funcs->mode2_reset_is_support)
3291 ret = smu->ppt_funcs->mode2_reset_is_support(smu);
3296 int smu_mode1_reset(struct smu_context *smu)
3300 if (!smu->pm_enabled)
3303 if (smu->ppt_funcs->mode1_reset)
3304 ret = smu->ppt_funcs->mode1_reset(smu);
3309 static int smu_mode2_reset(void *handle)
3311 struct smu_context *smu = handle;
3314 if (!smu->pm_enabled)
3317 if (smu->ppt_funcs->mode2_reset)
3318 ret = smu->ppt_funcs->mode2_reset(smu);
3321 dev_err(smu->adev->dev, "Mode2 reset failed!\n");
3326 static int smu_enable_gfx_features(void *handle)
3328 struct smu_context *smu = handle;
3331 if (!smu->pm_enabled)
3334 if (smu->ppt_funcs->enable_gfx_features)
3335 ret = smu->ppt_funcs->enable_gfx_features(smu);
3338 dev_err(smu->adev->dev, "enable gfx features failed!\n");
3343 static int smu_get_max_sustainable_clocks_by_dc(void *handle,
3344 struct pp_smu_nv_clock_table *max_clocks)
3346 struct smu_context *smu = handle;
3349 if (!smu->pm_enabled || !smu->adev->pm.dpm_enabled)
3352 if (smu->ppt_funcs->get_max_sustainable_clocks_by_dc)
3353 ret = smu->ppt_funcs->get_max_sustainable_clocks_by_dc(smu, max_clocks);
3358 static int smu_get_uclk_dpm_states(void *handle,
3359 unsigned int *clock_values_in_khz,
3360 unsigned int *num_states)
3362 struct smu_context *smu = handle;
3365 if (!smu->pm_enabled || !smu->adev->pm.dpm_enabled)
3368 if (smu->ppt_funcs->get_uclk_dpm_states)
3369 ret = smu->ppt_funcs->get_uclk_dpm_states(smu, clock_values_in_khz, num_states);
3374 static enum amd_pm_state_type smu_get_current_power_state(void *handle)
3376 struct smu_context *smu = handle;
3377 enum amd_pm_state_type pm_state = POWER_STATE_TYPE_DEFAULT;
3379 if (!smu->pm_enabled || !smu->adev->pm.dpm_enabled)
3382 if (smu->ppt_funcs->get_current_power_state)
3383 pm_state = smu->ppt_funcs->get_current_power_state(smu);
3388 static int smu_get_dpm_clock_table(void *handle,
3389 struct dpm_clocks *clock_table)
3391 struct smu_context *smu = handle;
3394 if (!smu->pm_enabled || !smu->adev->pm.dpm_enabled)
3397 if (smu->ppt_funcs->get_dpm_clock_table)
3398 ret = smu->ppt_funcs->get_dpm_clock_table(smu, clock_table);
3403 static ssize_t smu_sys_get_gpu_metrics(void *handle, void **table)
3405 struct smu_context *smu = handle;
3407 if (!smu->pm_enabled || !smu->adev->pm.dpm_enabled)
3410 if (!smu->ppt_funcs->get_gpu_metrics)
3413 return smu->ppt_funcs->get_gpu_metrics(smu, table);
3416 static ssize_t smu_sys_get_pm_metrics(void *handle, void *pm_metrics,
3419 struct smu_context *smu = handle;
3421 if (!smu->pm_enabled || !smu->adev->pm.dpm_enabled)
3424 if (!smu->ppt_funcs->get_pm_metrics)
3427 return smu->ppt_funcs->get_pm_metrics(smu, pm_metrics, size);
3430 static int smu_enable_mgpu_fan_boost(void *handle)
3432 struct smu_context *smu = handle;
3435 if (!smu->pm_enabled || !smu->adev->pm.dpm_enabled)
3438 if (smu->ppt_funcs->enable_mgpu_fan_boost)
3439 ret = smu->ppt_funcs->enable_mgpu_fan_boost(smu);
3444 static int smu_gfx_state_change_set(void *handle,
3447 struct smu_context *smu = handle;
3450 if (smu->ppt_funcs->gfx_state_change_set)
3451 ret = smu->ppt_funcs->gfx_state_change_set(smu, state);
3456 int smu_handle_passthrough_sbr(struct smu_context *smu, bool enable)
3460 if (smu->ppt_funcs->smu_handle_passthrough_sbr)
3461 ret = smu->ppt_funcs->smu_handle_passthrough_sbr(smu, enable);
3466 int smu_get_ecc_info(struct smu_context *smu, void *umc_ecc)
3468 int ret = -EOPNOTSUPP;
3470 if (smu->ppt_funcs &&
3471 smu->ppt_funcs->get_ecc_info)
3472 ret = smu->ppt_funcs->get_ecc_info(smu, umc_ecc);
3478 static int smu_get_prv_buffer_details(void *handle, void **addr, size_t *size)
3480 struct smu_context *smu = handle;
3481 struct smu_table_context *smu_table = &smu->smu_table;
3482 struct smu_table *memory_pool = &smu_table->memory_pool;
3489 if (memory_pool->bo) {
3490 *addr = memory_pool->cpu_addr;
3491 *size = memory_pool->size;
3497 int smu_set_xgmi_plpd_mode(struct smu_context *smu,
3498 enum pp_xgmi_plpd_mode mode)
3500 int ret = -EOPNOTSUPP;
3502 if (!smu->pm_enabled || !smu->adev->pm.dpm_enabled)
3505 /* PLPD policy is not supported if it's NONE */
3506 if (smu->plpd_mode == XGMI_PLPD_NONE)
3509 if (smu->plpd_mode == mode)
3512 if (smu->ppt_funcs && smu->ppt_funcs->select_xgmi_plpd_policy)
3513 ret = smu->ppt_funcs->select_xgmi_plpd_policy(smu, mode);
3516 smu->plpd_mode = mode;
3521 static const struct amd_pm_funcs swsmu_pm_funcs = {
3522 /* export for sysfs */
3523 .set_fan_control_mode = smu_set_fan_control_mode,
3524 .get_fan_control_mode = smu_get_fan_control_mode,
3525 .set_fan_speed_pwm = smu_set_fan_speed_pwm,
3526 .get_fan_speed_pwm = smu_get_fan_speed_pwm,
3527 .force_clock_level = smu_force_ppclk_levels,
3528 .print_clock_levels = smu_print_ppclk_levels,
3529 .emit_clock_levels = smu_emit_ppclk_levels,
3530 .force_performance_level = smu_force_performance_level,
3531 .read_sensor = smu_read_sensor,
3532 .get_apu_thermal_limit = smu_get_apu_thermal_limit,
3533 .set_apu_thermal_limit = smu_set_apu_thermal_limit,
3534 .get_performance_level = smu_get_performance_level,
3535 .get_current_power_state = smu_get_current_power_state,
3536 .get_fan_speed_rpm = smu_get_fan_speed_rpm,
3537 .set_fan_speed_rpm = smu_set_fan_speed_rpm,
3538 .get_pp_num_states = smu_get_power_num_states,
3539 .get_pp_table = smu_sys_get_pp_table,
3540 .set_pp_table = smu_sys_set_pp_table,
3541 .switch_power_profile = smu_switch_power_profile,
3542 /* export to amdgpu */
3543 .dispatch_tasks = smu_handle_dpm_task,
3544 .load_firmware = smu_load_microcode,
3545 .set_powergating_by_smu = smu_dpm_set_power_gate,
3546 .set_power_limit = smu_set_power_limit,
3547 .get_power_limit = smu_get_power_limit,
3548 .get_power_profile_mode = smu_get_power_profile_mode,
3549 .set_power_profile_mode = smu_set_power_profile_mode,
3550 .odn_edit_dpm_table = smu_od_edit_dpm_table,
3551 .set_mp1_state = smu_set_mp1_state,
3552 .gfx_state_change_set = smu_gfx_state_change_set,
3554 .get_sclk = smu_get_sclk,
3555 .get_mclk = smu_get_mclk,
3556 .display_configuration_change = smu_display_configuration_change,
3557 .get_clock_by_type_with_latency = smu_get_clock_by_type_with_latency,
3558 .display_clock_voltage_request = smu_display_clock_voltage_request,
3559 .enable_mgpu_fan_boost = smu_enable_mgpu_fan_boost,
3560 .set_active_display_count = smu_set_display_count,
3561 .set_min_deep_sleep_dcefclk = smu_set_deep_sleep_dcefclk,
3562 .get_asic_baco_capability = smu_get_baco_capability,
3563 .set_asic_baco_state = smu_baco_set_state,
3564 .get_ppfeature_status = smu_sys_get_pp_feature_mask,
3565 .set_ppfeature_status = smu_sys_set_pp_feature_mask,
3566 .asic_reset_mode_2 = smu_mode2_reset,
3567 .asic_reset_enable_gfx_features = smu_enable_gfx_features,
3568 .set_df_cstate = smu_set_df_cstate,
3569 .set_xgmi_pstate = smu_set_xgmi_pstate,
3570 .get_gpu_metrics = smu_sys_get_gpu_metrics,
3571 .get_pm_metrics = smu_sys_get_pm_metrics,
3572 .set_watermarks_for_clock_ranges = smu_set_watermarks_for_clock_ranges,
3573 .display_disable_memory_clock_switch = smu_display_disable_memory_clock_switch,
3574 .get_max_sustainable_clocks_by_dc = smu_get_max_sustainable_clocks_by_dc,
3575 .get_uclk_dpm_states = smu_get_uclk_dpm_states,
3576 .get_dpm_clock_table = smu_get_dpm_clock_table,
3577 .get_smu_prv_buf_details = smu_get_prv_buffer_details,
3580 int smu_wait_for_event(struct smu_context *smu, enum smu_event_type event,
3585 if (smu->ppt_funcs->wait_for_event)
3586 ret = smu->ppt_funcs->wait_for_event(smu, event, event_arg);
3591 int smu_stb_collect_info(struct smu_context *smu, void *buf, uint32_t size)
3594 if (!smu->ppt_funcs->stb_collect_info || !smu->stb_context.enabled)
3597 /* Confirm the buffer allocated is of correct size */
3598 if (size != smu->stb_context.stb_buf_size)
3602 * No need to lock smu mutex as we access STB directly through MMIO
3603 * and not going through SMU messaging route (for now at least).
3604 * For registers access rely on implementation internal locking.
3606 return smu->ppt_funcs->stb_collect_info(smu, buf, size);
3609 #if defined(CONFIG_DEBUG_FS)
3611 static int smu_stb_debugfs_open(struct inode *inode, struct file *filp)
3613 struct amdgpu_device *adev = filp->f_inode->i_private;
3614 struct smu_context *smu = adev->powerplay.pp_handle;
3618 buf = kvmalloc_array(smu->stb_context.stb_buf_size, sizeof(*buf), GFP_KERNEL);
3622 r = smu_stb_collect_info(smu, buf, smu->stb_context.stb_buf_size);
3626 filp->private_data = buf;
3635 static ssize_t smu_stb_debugfs_read(struct file *filp, char __user *buf, size_t size,
3638 struct amdgpu_device *adev = filp->f_inode->i_private;
3639 struct smu_context *smu = adev->powerplay.pp_handle;
3642 if (!filp->private_data)
3645 return simple_read_from_buffer(buf,
3647 pos, filp->private_data,
3648 smu->stb_context.stb_buf_size);
3651 static int smu_stb_debugfs_release(struct inode *inode, struct file *filp)
3653 kvfree(filp->private_data);
3654 filp->private_data = NULL;
3660 * We have to define not only read method but also
3661 * open and release because .read takes up to PAGE_SIZE
3662 * data each time so and so is invoked multiple times.
3663 * We allocate the STB buffer in .open and release it
3666 static const struct file_operations smu_stb_debugfs_fops = {
3667 .owner = THIS_MODULE,
3668 .open = smu_stb_debugfs_open,
3669 .read = smu_stb_debugfs_read,
3670 .release = smu_stb_debugfs_release,
3671 .llseek = default_llseek,
3676 void amdgpu_smu_stb_debug_fs_init(struct amdgpu_device *adev)
3678 #if defined(CONFIG_DEBUG_FS)
3680 struct smu_context *smu = adev->powerplay.pp_handle;
3682 if (!smu || (!smu->stb_context.stb_buf_size))
3685 debugfs_create_file_size("amdgpu_smu_stb_dump",
3687 adev_to_drm(adev)->primary->debugfs_root,
3689 &smu_stb_debugfs_fops,
3690 smu->stb_context.stb_buf_size);
3694 int smu_send_hbm_bad_pages_num(struct smu_context *smu, uint32_t size)
3698 if (smu->ppt_funcs && smu->ppt_funcs->send_hbm_bad_pages_num)
3699 ret = smu->ppt_funcs->send_hbm_bad_pages_num(smu, size);
3704 int smu_send_hbm_bad_channel_flag(struct smu_context *smu, uint32_t size)
3708 if (smu->ppt_funcs && smu->ppt_funcs->send_hbm_bad_channel_flag)
3709 ret = smu->ppt_funcs->send_hbm_bad_channel_flag(smu, size);
3714 int smu_send_rma_reason(struct smu_context *smu)
3718 if (smu->ppt_funcs && smu->ppt_funcs->send_rma_reason)
3719 ret = smu->ppt_funcs->send_rma_reason(smu);