2015-12-03 05:46:21 +07:00
|
|
|
/*
|
|
|
|
* Copyright 2015 Advanced Micro Devices, Inc.
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
|
|
|
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
|
|
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
|
|
* OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*
|
|
|
|
*/
|
2016-12-26 13:05:30 +07:00
|
|
|
#include "pp_debug.h"
|
2015-12-03 05:46:21 +07:00
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/gfp.h>
|
2015-07-21 16:43:02 +07:00
|
|
|
#include <linux/slab.h>
|
2018-03-22 18:32:45 +07:00
|
|
|
#include <linux/firmware.h>
|
2015-12-03 05:46:21 +07:00
|
|
|
#include "amd_shared.h"
|
|
|
|
#include "amd_powerplay.h"
|
2015-08-28 11:56:43 +07:00
|
|
|
#include "power_state.h"
|
2018-02-26 18:58:49 +07:00
|
|
|
#include "amdgpu.h"
|
2018-02-27 13:09:40 +07:00
|
|
|
#include "hwmgr.h"
|
2015-12-03 05:46:21 +07:00
|
|
|
|
2017-09-25 17:51:50 +07:00
|
|
|
|
2018-03-12 18:52:23 +07:00
|
|
|
static const struct amd_pm_funcs pp_dpm_funcs;
|
2015-07-21 20:18:15 +07:00
|
|
|
|
2018-02-26 18:58:49 +07:00
|
|
|
static int amd_powerplay_create(struct amdgpu_device *adev)
|
2017-09-25 19:46:37 +07:00
|
|
|
{
|
2018-03-12 18:52:23 +07:00
|
|
|
struct pp_hwmgr *hwmgr;
|
2017-09-25 19:46:37 +07:00
|
|
|
|
2018-02-26 18:58:49 +07:00
|
|
|
if (adev == NULL)
|
2017-09-25 19:46:37 +07:00
|
|
|
return -EINVAL;
|
|
|
|
|
2018-03-12 18:52:23 +07:00
|
|
|
hwmgr = kzalloc(sizeof(struct pp_hwmgr), GFP_KERNEL);
|
|
|
|
if (hwmgr == NULL)
|
2017-09-25 19:46:37 +07:00
|
|
|
return -ENOMEM;
|
|
|
|
|
2018-03-12 18:52:23 +07:00
|
|
|
hwmgr->adev = adev;
|
2018-03-22 14:46:47 +07:00
|
|
|
hwmgr->not_vf = !amdgpu_sriov_vf(adev);
|
|
|
|
hwmgr->pm_en = (amdgpu_dpm && hwmgr->not_vf) ? true : false;
|
2018-03-12 18:52:23 +07:00
|
|
|
hwmgr->device = amdgpu_cgs_create_device(adev);
|
|
|
|
mutex_init(&hwmgr->smu_lock);
|
|
|
|
hwmgr->chip_family = adev->family;
|
|
|
|
hwmgr->chip_id = adev->asic_type;
|
2018-02-27 20:53:00 +07:00
|
|
|
hwmgr->feature_mask = adev->powerplay.pp_feature;
|
2018-03-27 12:32:02 +07:00
|
|
|
hwmgr->display_config = &adev->pm.pm_display_cfg;
|
2018-03-12 18:52:23 +07:00
|
|
|
adev->powerplay.pp_handle = hwmgr;
|
|
|
|
adev->powerplay.pp_funcs = &pp_dpm_funcs;
|
2017-09-25 19:46:37 +07:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-02-26 18:58:49 +07:00
|
|
|
|
2018-03-22 13:52:35 +07:00
|
|
|
static void amd_powerplay_destroy(struct amdgpu_device *adev)
|
2017-09-25 19:46:37 +07:00
|
|
|
{
|
2018-03-12 18:52:23 +07:00
|
|
|
struct pp_hwmgr *hwmgr = adev->powerplay.pp_handle;
|
2017-09-25 19:46:37 +07:00
|
|
|
|
2018-03-12 18:52:23 +07:00
|
|
|
kfree(hwmgr->hardcode_pp_table);
|
|
|
|
hwmgr->hardcode_pp_table = NULL;
|
2017-11-01 04:35:28 +07:00
|
|
|
|
2018-03-12 18:52:23 +07:00
|
|
|
kfree(hwmgr);
|
|
|
|
hwmgr = NULL;
|
2017-09-25 19:46:37 +07:00
|
|
|
}
|
|
|
|
|
2016-12-28 18:43:23 +07:00
|
|
|
static int pp_early_init(void *handle)
|
|
|
|
{
|
|
|
|
int ret;
|
2018-03-12 18:52:23 +07:00
|
|
|
struct amdgpu_device *adev = handle;
|
2017-09-25 19:46:37 +07:00
|
|
|
|
2018-02-26 18:58:49 +07:00
|
|
|
ret = amd_powerplay_create(adev);
|
2017-09-25 19:46:37 +07:00
|
|
|
|
2018-02-26 18:58:49 +07:00
|
|
|
if (ret != 0)
|
|
|
|
return ret;
|
|
|
|
|
2018-03-12 18:52:23 +07:00
|
|
|
ret = hwmgr_early_init(adev->powerplay.pp_handle);
|
2016-01-21 00:15:09 +07:00
|
|
|
if (ret)
|
2017-09-27 00:28:27 +07:00
|
|
|
return -EINVAL;
|
2016-12-28 18:43:23 +07:00
|
|
|
|
2016-05-09 16:29:41 +07:00
|
|
|
return 0;
|
2015-12-03 05:46:21 +07:00
|
|
|
}
|
|
|
|
|
2016-12-28 18:43:23 +07:00
|
|
|
static int pp_sw_init(void *handle)
|
2015-12-03 05:46:21 +07:00
|
|
|
{
|
2018-03-12 18:52:23 +07:00
|
|
|
struct amdgpu_device *adev = handle;
|
|
|
|
struct pp_hwmgr *hwmgr = adev->powerplay.pp_handle;
|
2015-07-21 20:18:15 +07:00
|
|
|
int ret = 0;
|
|
|
|
|
2018-03-22 13:52:35 +07:00
|
|
|
ret = hwmgr_sw_init(hwmgr);
|
2016-03-30 10:35:50 +07:00
|
|
|
|
2018-03-22 13:52:35 +07:00
|
|
|
pr_debug("powerplay sw init %s\n", ret ? "failed" : "successfully");
|
2018-03-12 18:52:23 +07:00
|
|
|
|
2016-12-28 18:43:23 +07:00
|
|
|
return ret;
|
|
|
|
}
|
2015-07-21 20:18:15 +07:00
|
|
|
|
2016-12-28 18:43:23 +07:00
|
|
|
static int pp_sw_fini(void *handle)
|
|
|
|
{
|
2018-03-12 18:52:23 +07:00
|
|
|
struct amdgpu_device *adev = handle;
|
|
|
|
struct pp_hwmgr *hwmgr = adev->powerplay.pp_handle;
|
2016-12-28 18:43:23 +07:00
|
|
|
|
2018-03-22 13:52:35 +07:00
|
|
|
hwmgr_sw_fini(hwmgr);
|
2018-03-12 18:53:01 +07:00
|
|
|
|
2018-09-29 13:52:31 +07:00
|
|
|
release_firmware(adev->pm.fw);
|
|
|
|
adev->pm.fw = NULL;
|
2018-03-12 18:53:01 +07:00
|
|
|
|
2018-03-12 18:52:23 +07:00
|
|
|
return 0;
|
2015-12-03 05:46:21 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
static int pp_hw_init(void *handle)
|
|
|
|
{
|
2015-07-21 16:43:02 +07:00
|
|
|
int ret = 0;
|
2018-03-12 18:52:23 +07:00
|
|
|
struct amdgpu_device *adev = handle;
|
|
|
|
struct pp_hwmgr *hwmgr = adev->powerplay.pp_handle;
|
2015-07-21 16:43:02 +07:00
|
|
|
|
2018-03-22 13:52:35 +07:00
|
|
|
ret = hwmgr_hw_init(hwmgr);
|
2015-07-21 16:43:02 +07:00
|
|
|
|
2018-03-22 13:52:35 +07:00
|
|
|
if (ret)
|
|
|
|
pr_err("powerplay hw init failed\n");
|
2015-07-21 16:43:02 +07:00
|
|
|
|
2017-09-29 12:57:54 +07:00
|
|
|
return ret;
|
2015-12-03 05:46:21 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
static int pp_hw_fini(void *handle)
|
|
|
|
{
|
2018-03-12 18:52:23 +07:00
|
|
|
struct amdgpu_device *adev = handle;
|
|
|
|
struct pp_hwmgr *hwmgr = adev->powerplay.pp_handle;
|
2015-07-21 16:43:02 +07:00
|
|
|
|
2018-03-22 13:52:35 +07:00
|
|
|
hwmgr_hw_fini(hwmgr);
|
2017-09-01 12:46:20 +07:00
|
|
|
|
2015-12-03 05:46:21 +07:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-04-13 15:13:41 +07:00
|
|
|
static void pp_reserve_vram_for_smu(struct amdgpu_device *adev)
|
|
|
|
{
|
|
|
|
int r = -EINVAL;
|
|
|
|
void *cpu_ptr = NULL;
|
|
|
|
uint64_t gpu_addr;
|
|
|
|
struct pp_hwmgr *hwmgr = adev->powerplay.pp_handle;
|
|
|
|
|
|
|
|
if (amdgpu_bo_create_kernel(adev, adev->pm.smu_prv_buffer_size,
|
|
|
|
PAGE_SIZE, AMDGPU_GEM_DOMAIN_GTT,
|
|
|
|
&adev->pm.smu_prv_buffer,
|
|
|
|
&gpu_addr,
|
|
|
|
&cpu_ptr)) {
|
|
|
|
DRM_ERROR("amdgpu: failed to create smu prv buffer\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (hwmgr->hwmgr_func->notify_cac_buffer_info)
|
|
|
|
r = hwmgr->hwmgr_func->notify_cac_buffer_info(hwmgr,
|
|
|
|
lower_32_bits((unsigned long)cpu_ptr),
|
|
|
|
upper_32_bits((unsigned long)cpu_ptr),
|
|
|
|
lower_32_bits(gpu_addr),
|
|
|
|
upper_32_bits(gpu_addr),
|
|
|
|
adev->pm.smu_prv_buffer_size);
|
|
|
|
|
|
|
|
if (r) {
|
|
|
|
amdgpu_bo_free_kernel(&adev->pm.smu_prv_buffer, NULL, NULL);
|
|
|
|
adev->pm.smu_prv_buffer = NULL;
|
|
|
|
DRM_ERROR("amdgpu: failed to notify SMU buffer address\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-25 17:51:50 +07:00
|
|
|
static int pp_late_init(void *handle)
|
|
|
|
{
|
2018-03-12 18:52:23 +07:00
|
|
|
struct amdgpu_device *adev = handle;
|
|
|
|
struct pp_hwmgr *hwmgr = adev->powerplay.pp_handle;
|
|
|
|
|
2018-03-22 14:12:59 +07:00
|
|
|
if (hwmgr && hwmgr->pm_en) {
|
|
|
|
mutex_lock(&hwmgr->smu_lock);
|
|
|
|
hwmgr_handle_task(hwmgr,
|
2017-12-29 13:46:13 +07:00
|
|
|
AMD_PP_TASK_COMPLETE_INIT, NULL);
|
2018-03-22 14:12:59 +07:00
|
|
|
mutex_unlock(&hwmgr->smu_lock);
|
|
|
|
}
|
2018-04-13 15:13:41 +07:00
|
|
|
if (adev->pm.smu_prv_buffer_size != 0)
|
|
|
|
pp_reserve_vram_for_smu(adev);
|
2018-03-13 17:32:39 +07:00
|
|
|
|
2017-09-25 17:51:50 +07:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-09-25 19:46:37 +07:00
|
|
|
static void pp_late_fini(void *handle)
|
|
|
|
{
|
2018-03-12 18:53:01 +07:00
|
|
|
struct amdgpu_device *adev = handle;
|
|
|
|
|
2018-04-13 15:13:41 +07:00
|
|
|
if (adev->pm.smu_prv_buffer)
|
|
|
|
amdgpu_bo_free_kernel(&adev->pm.smu_prv_buffer, NULL, NULL);
|
2018-03-12 18:53:01 +07:00
|
|
|
amd_powerplay_destroy(adev);
|
2017-09-25 19:46:37 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-12-03 05:46:21 +07:00
|
|
|
static bool pp_is_idle(void *handle)
|
|
|
|
{
|
2016-07-12 07:17:52 +07:00
|
|
|
return false;
|
2015-12-03 05:46:21 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
static int pp_wait_for_idle(void *handle)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int pp_sw_reset(void *handle)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int pp_set_powergating_state(void *handle,
|
|
|
|
enum amd_powergating_state state)
|
|
|
|
{
|
2018-06-14 12:07:19 +07:00
|
|
|
return 0;
|
2015-12-03 05:46:21 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
static int pp_suspend(void *handle)
|
|
|
|
{
|
2018-03-12 18:52:23 +07:00
|
|
|
struct amdgpu_device *adev = handle;
|
|
|
|
struct pp_hwmgr *hwmgr = adev->powerplay.pp_handle;
|
2015-08-28 11:56:43 +07:00
|
|
|
|
2018-03-22 13:52:35 +07:00
|
|
|
return hwmgr_suspend(hwmgr);
|
2015-12-03 05:46:21 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
static int pp_resume(void *handle)
|
|
|
|
{
|
2018-03-12 18:52:23 +07:00
|
|
|
struct amdgpu_device *adev = handle;
|
|
|
|
struct pp_hwmgr *hwmgr = adev->powerplay.pp_handle;
|
2016-12-28 18:43:23 +07:00
|
|
|
|
2018-03-22 13:52:35 +07:00
|
|
|
return hwmgr_resume(hwmgr);
|
2015-12-03 05:46:21 +07:00
|
|
|
}
|
|
|
|
|
2018-03-20 03:48:54 +07:00
|
|
|
static int pp_set_clockgating_state(void *handle,
|
|
|
|
enum amd_clockgating_state state)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-03-12 18:52:23 +07:00
|
|
|
static const struct amd_ip_funcs pp_ip_funcs = {
|
2016-05-05 01:28:35 +07:00
|
|
|
.name = "powerplay",
|
2015-12-03 05:46:21 +07:00
|
|
|
.early_init = pp_early_init,
|
2017-09-25 17:51:50 +07:00
|
|
|
.late_init = pp_late_init,
|
2015-12-03 05:46:21 +07:00
|
|
|
.sw_init = pp_sw_init,
|
|
|
|
.sw_fini = pp_sw_fini,
|
|
|
|
.hw_init = pp_hw_init,
|
|
|
|
.hw_fini = pp_hw_fini,
|
2017-09-25 19:46:37 +07:00
|
|
|
.late_fini = pp_late_fini,
|
2015-12-03 05:46:21 +07:00
|
|
|
.suspend = pp_suspend,
|
|
|
|
.resume = pp_resume,
|
|
|
|
.is_idle = pp_is_idle,
|
|
|
|
.wait_for_idle = pp_wait_for_idle,
|
|
|
|
.soft_reset = pp_sw_reset,
|
2018-03-20 03:48:54 +07:00
|
|
|
.set_clockgating_state = pp_set_clockgating_state,
|
2015-12-03 05:46:21 +07:00
|
|
|
.set_powergating_state = pp_set_powergating_state,
|
|
|
|
};
|
|
|
|
|
2018-03-12 18:52:23 +07:00
|
|
|
const struct amdgpu_ip_block_version pp_smu_ip_block =
|
|
|
|
{
|
|
|
|
.type = AMD_IP_BLOCK_TYPE_SMC,
|
|
|
|
.major = 1,
|
|
|
|
.minor = 0,
|
|
|
|
.rev = 0,
|
|
|
|
.funcs = &pp_ip_funcs,
|
|
|
|
};
|
|
|
|
|
2018-09-29 19:28:14 +07:00
|
|
|
/* This interface only be supported On Vi,
|
|
|
|
* because only smu7/8 can help to load gfx/sdma fw,
|
|
|
|
* smu need to be enabled before load other ip's fw.
|
|
|
|
* so call start smu to load smu7 fw and other ip's fw
|
|
|
|
*/
|
2015-12-03 05:46:21 +07:00
|
|
|
static int pp_dpm_load_fw(void *handle)
|
|
|
|
{
|
2018-09-29 19:28:14 +07:00
|
|
|
struct pp_hwmgr *hwmgr = handle;
|
|
|
|
|
|
|
|
if (!hwmgr || !hwmgr->smumgr_funcs || !hwmgr->smumgr_funcs->start_smu)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
if (hwmgr->smumgr_funcs->start_smu(hwmgr)) {
|
|
|
|
pr_err("fw load failed\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2015-12-03 05:46:21 +07:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int pp_dpm_fw_loading_complete(void *handle)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-09-26 12:39:38 +07:00
|
|
|
static int pp_set_clockgating_by_smu(void *handle, uint32_t msg_id)
|
|
|
|
{
|
2018-03-12 18:52:23 +07:00
|
|
|
struct pp_hwmgr *hwmgr = handle;
|
2017-09-26 12:39:38 +07:00
|
|
|
|
2018-03-22 13:52:35 +07:00
|
|
|
if (!hwmgr || !hwmgr->pm_en)
|
|
|
|
return -EINVAL;
|
2017-09-26 12:39:38 +07:00
|
|
|
|
|
|
|
if (hwmgr->hwmgr_func->update_clock_gatings == NULL) {
|
2018-11-15 20:40:29 +07:00
|
|
|
pr_info_ratelimited("%s was not implemented.\n", __func__);
|
2017-09-26 12:39:38 +07:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return hwmgr->hwmgr_func->update_clock_gatings(hwmgr, &msg_id);
|
|
|
|
}
|
|
|
|
|
2017-08-29 15:08:56 +07:00
|
|
|
static void pp_dpm_en_umd_pstate(struct pp_hwmgr *hwmgr,
|
|
|
|
enum amd_dpm_forced_level *level)
|
|
|
|
{
|
|
|
|
uint32_t profile_mode_mask = AMD_DPM_FORCED_LEVEL_PROFILE_STANDARD |
|
|
|
|
AMD_DPM_FORCED_LEVEL_PROFILE_MIN_SCLK |
|
|
|
|
AMD_DPM_FORCED_LEVEL_PROFILE_MIN_MCLK |
|
|
|
|
AMD_DPM_FORCED_LEVEL_PROFILE_PEAK;
|
|
|
|
|
|
|
|
if (!(hwmgr->dpm_level & profile_mode_mask)) {
|
|
|
|
/* enter umd pstate, save current level, disable gfx cg*/
|
|
|
|
if (*level & profile_mode_mask) {
|
|
|
|
hwmgr->saved_dpm_level = hwmgr->dpm_level;
|
|
|
|
hwmgr->en_umd_pstate = true;
|
2018-03-29 01:42:45 +07:00
|
|
|
amdgpu_device_ip_set_clockgating_state(hwmgr->adev,
|
2017-08-29 15:08:56 +07:00
|
|
|
AMD_IP_BLOCK_TYPE_GFX,
|
|
|
|
AMD_CG_STATE_UNGATE);
|
2018-03-29 01:42:45 +07:00
|
|
|
amdgpu_device_ip_set_powergating_state(hwmgr->adev,
|
2017-08-29 15:08:56 +07:00
|
|
|
AMD_IP_BLOCK_TYPE_GFX,
|
|
|
|
AMD_PG_STATE_UNGATE);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* exit umd pstate, restore level, enable gfx cg*/
|
|
|
|
if (!(*level & profile_mode_mask)) {
|
|
|
|
if (*level == AMD_DPM_FORCED_LEVEL_PROFILE_EXIT)
|
|
|
|
*level = hwmgr->saved_dpm_level;
|
|
|
|
hwmgr->en_umd_pstate = false;
|
2018-03-29 01:42:45 +07:00
|
|
|
amdgpu_device_ip_set_clockgating_state(hwmgr->adev,
|
2017-08-29 15:08:56 +07:00
|
|
|
AMD_IP_BLOCK_TYPE_GFX,
|
|
|
|
AMD_CG_STATE_GATE);
|
2018-03-29 01:42:45 +07:00
|
|
|
amdgpu_device_ip_set_powergating_state(hwmgr->adev,
|
2017-08-29 15:08:56 +07:00
|
|
|
AMD_IP_BLOCK_TYPE_GFX,
|
|
|
|
AMD_PG_STATE_GATE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-03 05:46:21 +07:00
|
|
|
static int pp_dpm_force_performance_level(void *handle,
|
|
|
|
enum amd_dpm_forced_level level)
|
|
|
|
{
|
2018-03-12 18:52:23 +07:00
|
|
|
struct pp_hwmgr *hwmgr = handle;
|
2015-08-28 11:56:43 +07:00
|
|
|
|
2018-03-22 13:52:35 +07:00
|
|
|
if (!hwmgr || !hwmgr->pm_en)
|
|
|
|
return -EINVAL;
|
2015-08-28 11:56:43 +07:00
|
|
|
|
2017-08-29 15:08:56 +07:00
|
|
|
if (level == hwmgr->dpm_level)
|
|
|
|
return 0;
|
|
|
|
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_lock(&hwmgr->smu_lock);
|
2017-08-29 15:08:56 +07:00
|
|
|
pp_dpm_en_umd_pstate(hwmgr, &level);
|
|
|
|
hwmgr->request_dpm_level = level;
|
2018-03-12 18:52:23 +07:00
|
|
|
hwmgr_handle_task(hwmgr, AMD_PP_TASK_READJUST_POWER_STATE, NULL);
|
|
|
|
mutex_unlock(&hwmgr->smu_lock);
|
2017-12-18 18:48:00 +07:00
|
|
|
|
2015-12-03 05:46:21 +07:00
|
|
|
return 0;
|
|
|
|
}
|
2015-08-28 11:56:43 +07:00
|
|
|
|
2015-12-03 05:46:21 +07:00
|
|
|
static enum amd_dpm_forced_level pp_dpm_get_performance_level(
|
|
|
|
void *handle)
|
|
|
|
{
|
2018-03-12 18:52:23 +07:00
|
|
|
struct pp_hwmgr *hwmgr = handle;
|
2017-02-20 16:07:36 +07:00
|
|
|
enum amd_dpm_forced_level level;
|
2015-08-28 11:56:43 +07:00
|
|
|
|
2018-03-22 13:52:35 +07:00
|
|
|
if (!hwmgr || !hwmgr->pm_en)
|
|
|
|
return -EINVAL;
|
2015-08-28 11:56:43 +07:00
|
|
|
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_lock(&hwmgr->smu_lock);
|
2017-02-20 16:07:36 +07:00
|
|
|
level = hwmgr->dpm_level;
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_unlock(&hwmgr->smu_lock);
|
2017-02-20 16:07:36 +07:00
|
|
|
return level;
|
2015-12-03 05:46:21 +07:00
|
|
|
}
|
2015-08-28 11:56:43 +07:00
|
|
|
|
2017-09-06 15:08:03 +07:00
|
|
|
static uint32_t pp_dpm_get_sclk(void *handle, bool low)
|
2015-12-03 05:46:21 +07:00
|
|
|
{
|
2018-03-12 18:52:23 +07:00
|
|
|
struct pp_hwmgr *hwmgr = handle;
|
2017-09-06 15:08:03 +07:00
|
|
|
uint32_t clk = 0;
|
2015-08-28 11:56:43 +07:00
|
|
|
|
2018-03-22 13:52:35 +07:00
|
|
|
if (!hwmgr || !hwmgr->pm_en)
|
|
|
|
return 0;
|
2015-08-28 11:56:43 +07:00
|
|
|
|
2016-03-30 10:35:50 +07:00
|
|
|
if (hwmgr->hwmgr_func->get_sclk == NULL) {
|
2018-11-15 20:40:29 +07:00
|
|
|
pr_info_ratelimited("%s was not implemented.\n", __func__);
|
2016-03-30 10:35:50 +07:00
|
|
|
return 0;
|
|
|
|
}
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_lock(&hwmgr->smu_lock);
|
2017-09-06 15:08:03 +07:00
|
|
|
clk = hwmgr->hwmgr_func->get_sclk(hwmgr, low);
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_unlock(&hwmgr->smu_lock);
|
2017-09-06 15:08:03 +07:00
|
|
|
return clk;
|
2015-12-03 05:46:21 +07:00
|
|
|
}
|
2015-08-28 11:56:43 +07:00
|
|
|
|
2017-09-06 15:08:03 +07:00
|
|
|
static uint32_t pp_dpm_get_mclk(void *handle, bool low)
|
2015-12-03 05:46:21 +07:00
|
|
|
{
|
2018-03-12 18:52:23 +07:00
|
|
|
struct pp_hwmgr *hwmgr = handle;
|
2017-09-06 15:08:03 +07:00
|
|
|
uint32_t clk = 0;
|
2015-08-28 11:56:43 +07:00
|
|
|
|
2018-03-22 13:52:35 +07:00
|
|
|
if (!hwmgr || !hwmgr->pm_en)
|
|
|
|
return 0;
|
2015-08-28 11:56:43 +07:00
|
|
|
|
2016-03-30 10:35:50 +07:00
|
|
|
if (hwmgr->hwmgr_func->get_mclk == NULL) {
|
2018-11-15 20:40:29 +07:00
|
|
|
pr_info_ratelimited("%s was not implemented.\n", __func__);
|
2016-03-30 10:35:50 +07:00
|
|
|
return 0;
|
|
|
|
}
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_lock(&hwmgr->smu_lock);
|
2017-09-06 15:08:03 +07:00
|
|
|
clk = hwmgr->hwmgr_func->get_mclk(hwmgr, low);
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_unlock(&hwmgr->smu_lock);
|
2017-09-06 15:08:03 +07:00
|
|
|
return clk;
|
2015-12-03 05:46:21 +07:00
|
|
|
}
|
2015-08-28 11:56:43 +07:00
|
|
|
|
2017-09-06 15:08:03 +07:00
|
|
|
static void pp_dpm_powergate_vce(void *handle, bool gate)
|
2015-12-03 05:46:21 +07:00
|
|
|
{
|
2018-03-12 18:52:23 +07:00
|
|
|
struct pp_hwmgr *hwmgr = handle;
|
2015-08-28 11:56:43 +07:00
|
|
|
|
2018-03-22 13:52:35 +07:00
|
|
|
if (!hwmgr || !hwmgr->pm_en)
|
2017-09-06 15:08:03 +07:00
|
|
|
return;
|
2015-08-28 11:56:43 +07:00
|
|
|
|
2016-03-30 10:35:50 +07:00
|
|
|
if (hwmgr->hwmgr_func->powergate_vce == NULL) {
|
2018-11-15 20:40:29 +07:00
|
|
|
pr_info_ratelimited("%s was not implemented.\n", __func__);
|
2017-09-06 15:08:03 +07:00
|
|
|
return;
|
2016-03-30 10:35:50 +07:00
|
|
|
}
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_lock(&hwmgr->smu_lock);
|
2017-09-06 15:08:03 +07:00
|
|
|
hwmgr->hwmgr_func->powergate_vce(hwmgr, gate);
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_unlock(&hwmgr->smu_lock);
|
2015-12-03 05:46:21 +07:00
|
|
|
}
|
2015-08-28 11:56:43 +07:00
|
|
|
|
2017-09-06 15:08:03 +07:00
|
|
|
static void pp_dpm_powergate_uvd(void *handle, bool gate)
|
2015-12-03 05:46:21 +07:00
|
|
|
{
|
2018-03-12 18:52:23 +07:00
|
|
|
struct pp_hwmgr *hwmgr = handle;
|
2015-08-28 11:56:43 +07:00
|
|
|
|
2018-03-22 13:52:35 +07:00
|
|
|
if (!hwmgr || !hwmgr->pm_en)
|
2017-09-06 15:08:03 +07:00
|
|
|
return;
|
2015-08-28 11:56:43 +07:00
|
|
|
|
2016-03-30 10:35:50 +07:00
|
|
|
if (hwmgr->hwmgr_func->powergate_uvd == NULL) {
|
2018-11-15 20:40:29 +07:00
|
|
|
pr_info_ratelimited("%s was not implemented.\n", __func__);
|
2017-09-06 15:08:03 +07:00
|
|
|
return;
|
2016-03-30 10:35:50 +07:00
|
|
|
}
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_lock(&hwmgr->smu_lock);
|
2017-09-06 15:08:03 +07:00
|
|
|
hwmgr->hwmgr_func->powergate_uvd(hwmgr, gate);
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_unlock(&hwmgr->smu_lock);
|
2015-08-28 11:56:43 +07:00
|
|
|
}
|
|
|
|
|
2017-09-01 12:46:20 +07:00
|
|
|
static int pp_dpm_dispatch_tasks(void *handle, enum amd_pp_task task_id,
|
2017-12-29 13:46:13 +07:00
|
|
|
enum amd_pm_state_type *user_state)
|
2015-12-03 05:46:21 +07:00
|
|
|
{
|
2015-08-28 11:56:43 +07:00
|
|
|
int ret = 0;
|
2018-03-12 18:52:23 +07:00
|
|
|
struct pp_hwmgr *hwmgr = handle;
|
2015-08-28 11:56:43 +07:00
|
|
|
|
2018-03-22 13:52:35 +07:00
|
|
|
if (!hwmgr || !hwmgr->pm_en)
|
|
|
|
return -EINVAL;
|
2015-08-28 11:56:43 +07:00
|
|
|
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_lock(&hwmgr->smu_lock);
|
|
|
|
ret = hwmgr_handle_task(hwmgr, task_id, user_state);
|
|
|
|
mutex_unlock(&hwmgr->smu_lock);
|
2017-09-01 12:46:20 +07:00
|
|
|
|
2015-08-28 11:56:43 +07:00
|
|
|
return ret;
|
2015-12-03 05:46:21 +07:00
|
|
|
}
|
2015-08-28 11:56:43 +07:00
|
|
|
|
2016-09-30 16:58:42 +07:00
|
|
|
static enum amd_pm_state_type pp_dpm_get_current_power_state(void *handle)
|
2015-12-03 05:46:21 +07:00
|
|
|
{
|
2018-03-12 18:52:23 +07:00
|
|
|
struct pp_hwmgr *hwmgr = handle;
|
2015-08-28 11:56:43 +07:00
|
|
|
struct pp_power_state *state;
|
2017-02-20 16:07:36 +07:00
|
|
|
enum amd_pm_state_type pm_type;
|
2015-08-28 11:56:43 +07:00
|
|
|
|
2018-03-22 13:52:35 +07:00
|
|
|
if (!hwmgr || !hwmgr->pm_en || !hwmgr->current_ps)
|
2015-08-28 11:56:43 +07:00
|
|
|
return -EINVAL;
|
|
|
|
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_lock(&hwmgr->smu_lock);
|
2017-02-20 16:07:36 +07:00
|
|
|
|
2015-08-28 11:56:43 +07:00
|
|
|
state = hwmgr->current_ps;
|
|
|
|
|
|
|
|
switch (state->classification.ui_label) {
|
|
|
|
case PP_StateUILabel_Battery:
|
2017-02-20 16:07:36 +07:00
|
|
|
pm_type = POWER_STATE_TYPE_BATTERY;
|
2017-04-04 01:41:47 +07:00
|
|
|
break;
|
2015-08-28 11:56:43 +07:00
|
|
|
case PP_StateUILabel_Balanced:
|
2017-02-20 16:07:36 +07:00
|
|
|
pm_type = POWER_STATE_TYPE_BALANCED;
|
2017-04-04 01:41:47 +07:00
|
|
|
break;
|
2015-08-28 11:56:43 +07:00
|
|
|
case PP_StateUILabel_Performance:
|
2017-02-20 16:07:36 +07:00
|
|
|
pm_type = POWER_STATE_TYPE_PERFORMANCE;
|
2017-04-04 01:41:47 +07:00
|
|
|
break;
|
2015-08-28 11:56:43 +07:00
|
|
|
default:
|
drm/amd/powerplay: add some sysfs interfaces for powerplay.
The new sysfs interfaces:
pp_num_states: Read-only, return the number of all pp states, 0 if powerplay is not available.
pp_cur_state: Read-only, return the index number of current pp state.
pp_force_state: Read-write, to write a power state index will switch to selected state forcedly and
enable forced state mode, disable forced state mode. such as "echo >...".
pp_table: Read-write, binary output, to be used to read or write the dpm table, the maximum
file size is 4KB of page size.
pp_dpm_sclk: Read-write, reading will return a dpm levels list, to write an index number will force
powerplay to set the corresponding dpm level.
pp_dpm_mclk: same as sclk.
pp_dpm_pcie: same as sclk.
And add new setting "manual" to the existing interface power_dpm_force_performance_level.
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Eric Huang <JinHuiEric.Huang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
2015-12-12 04:24:34 +07:00
|
|
|
if (state->classification.flags & PP_StateClassificationFlag_Boot)
|
2017-02-20 16:07:36 +07:00
|
|
|
pm_type = POWER_STATE_TYPE_INTERNAL_BOOT;
|
drm/amd/powerplay: add some sysfs interfaces for powerplay.
The new sysfs interfaces:
pp_num_states: Read-only, return the number of all pp states, 0 if powerplay is not available.
pp_cur_state: Read-only, return the index number of current pp state.
pp_force_state: Read-write, to write a power state index will switch to selected state forcedly and
enable forced state mode, disable forced state mode. such as "echo >...".
pp_table: Read-write, binary output, to be used to read or write the dpm table, the maximum
file size is 4KB of page size.
pp_dpm_sclk: Read-write, reading will return a dpm levels list, to write an index number will force
powerplay to set the corresponding dpm level.
pp_dpm_mclk: same as sclk.
pp_dpm_pcie: same as sclk.
And add new setting "manual" to the existing interface power_dpm_force_performance_level.
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Eric Huang <JinHuiEric.Huang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
2015-12-12 04:24:34 +07:00
|
|
|
else
|
2017-02-20 16:07:36 +07:00
|
|
|
pm_type = POWER_STATE_TYPE_DEFAULT;
|
2017-04-04 01:41:47 +07:00
|
|
|
break;
|
2015-08-28 11:56:43 +07:00
|
|
|
}
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_unlock(&hwmgr->smu_lock);
|
2017-02-20 16:07:36 +07:00
|
|
|
|
|
|
|
return pm_type;
|
2015-12-03 05:46:21 +07:00
|
|
|
}
|
2015-08-28 11:56:43 +07:00
|
|
|
|
2017-09-06 15:08:03 +07:00
|
|
|
static void pp_dpm_set_fan_control_mode(void *handle, uint32_t mode)
|
2015-10-16 10:48:21 +07:00
|
|
|
{
|
2018-03-12 18:52:23 +07:00
|
|
|
struct pp_hwmgr *hwmgr = handle;
|
2015-10-16 10:48:21 +07:00
|
|
|
|
2018-03-22 13:52:35 +07:00
|
|
|
if (!hwmgr || !hwmgr->pm_en)
|
2017-09-06 15:08:03 +07:00
|
|
|
return;
|
2015-10-16 10:48:21 +07:00
|
|
|
|
2016-03-30 10:35:50 +07:00
|
|
|
if (hwmgr->hwmgr_func->set_fan_control_mode == NULL) {
|
2018-11-15 20:40:29 +07:00
|
|
|
pr_info_ratelimited("%s was not implemented.\n", __func__);
|
2017-09-06 15:08:03 +07:00
|
|
|
return;
|
2016-03-30 10:35:50 +07:00
|
|
|
}
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_lock(&hwmgr->smu_lock);
|
2017-09-06 15:08:03 +07:00
|
|
|
hwmgr->hwmgr_func->set_fan_control_mode(hwmgr, mode);
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_unlock(&hwmgr->smu_lock);
|
2015-10-16 10:48:21 +07:00
|
|
|
}
|
|
|
|
|
2017-09-06 15:08:03 +07:00
|
|
|
static uint32_t pp_dpm_get_fan_control_mode(void *handle)
|
2015-10-16 10:48:21 +07:00
|
|
|
{
|
2018-03-12 18:52:23 +07:00
|
|
|
struct pp_hwmgr *hwmgr = handle;
|
2017-09-06 15:08:03 +07:00
|
|
|
uint32_t mode = 0;
|
2015-10-16 10:48:21 +07:00
|
|
|
|
2018-03-22 13:52:35 +07:00
|
|
|
if (!hwmgr || !hwmgr->pm_en)
|
|
|
|
return 0;
|
2015-10-16 10:48:21 +07:00
|
|
|
|
2016-03-30 10:35:50 +07:00
|
|
|
if (hwmgr->hwmgr_func->get_fan_control_mode == NULL) {
|
2018-11-15 20:40:29 +07:00
|
|
|
pr_info_ratelimited("%s was not implemented.\n", __func__);
|
2016-03-30 10:35:50 +07:00
|
|
|
return 0;
|
|
|
|
}
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_lock(&hwmgr->smu_lock);
|
2017-09-06 15:08:03 +07:00
|
|
|
mode = hwmgr->hwmgr_func->get_fan_control_mode(hwmgr);
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_unlock(&hwmgr->smu_lock);
|
2017-09-06 15:08:03 +07:00
|
|
|
return mode;
|
2015-10-16 10:48:21 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
static int pp_dpm_set_fan_speed_percent(void *handle, uint32_t percent)
|
|
|
|
{
|
2018-03-12 18:52:23 +07:00
|
|
|
struct pp_hwmgr *hwmgr = handle;
|
2016-12-28 18:43:23 +07:00
|
|
|
int ret = 0;
|
2015-10-16 10:48:21 +07:00
|
|
|
|
2018-03-22 13:52:35 +07:00
|
|
|
if (!hwmgr || !hwmgr->pm_en)
|
|
|
|
return -EINVAL;
|
2015-10-16 10:48:21 +07:00
|
|
|
|
2016-03-30 10:35:50 +07:00
|
|
|
if (hwmgr->hwmgr_func->set_fan_speed_percent == NULL) {
|
2018-11-15 20:40:29 +07:00
|
|
|
pr_info_ratelimited("%s was not implemented.\n", __func__);
|
2016-03-30 10:35:50 +07:00
|
|
|
return 0;
|
|
|
|
}
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_lock(&hwmgr->smu_lock);
|
2017-02-20 16:07:36 +07:00
|
|
|
ret = hwmgr->hwmgr_func->set_fan_speed_percent(hwmgr, percent);
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_unlock(&hwmgr->smu_lock);
|
2017-02-20 16:07:36 +07:00
|
|
|
return ret;
|
2015-10-16 10:48:21 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
static int pp_dpm_get_fan_speed_percent(void *handle, uint32_t *speed)
|
|
|
|
{
|
2018-03-12 18:52:23 +07:00
|
|
|
struct pp_hwmgr *hwmgr = handle;
|
2016-12-28 18:43:23 +07:00
|
|
|
int ret = 0;
|
2015-10-16 10:48:21 +07:00
|
|
|
|
2018-03-22 13:52:35 +07:00
|
|
|
if (!hwmgr || !hwmgr->pm_en)
|
|
|
|
return -EINVAL;
|
2015-10-16 10:48:21 +07:00
|
|
|
|
2016-03-30 10:35:50 +07:00
|
|
|
if (hwmgr->hwmgr_func->get_fan_speed_percent == NULL) {
|
2018-11-15 20:40:29 +07:00
|
|
|
pr_info_ratelimited("%s was not implemented.\n", __func__);
|
2016-03-30 10:35:50 +07:00
|
|
|
return 0;
|
|
|
|
}
|
2015-10-16 10:48:21 +07:00
|
|
|
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_lock(&hwmgr->smu_lock);
|
2017-02-20 16:07:36 +07:00
|
|
|
ret = hwmgr->hwmgr_func->get_fan_speed_percent(hwmgr, speed);
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_unlock(&hwmgr->smu_lock);
|
2017-02-20 16:07:36 +07:00
|
|
|
return ret;
|
2015-10-16 10:48:21 +07:00
|
|
|
}
|
|
|
|
|
2016-10-30 03:28:58 +07:00
|
|
|
static int pp_dpm_get_fan_speed_rpm(void *handle, uint32_t *rpm)
|
|
|
|
{
|
2018-03-12 18:52:23 +07:00
|
|
|
struct pp_hwmgr *hwmgr = handle;
|
2016-12-28 18:43:23 +07:00
|
|
|
int ret = 0;
|
2016-10-30 03:28:58 +07:00
|
|
|
|
2018-03-22 13:52:35 +07:00
|
|
|
if (!hwmgr || !hwmgr->pm_en)
|
|
|
|
return -EINVAL;
|
2016-10-30 03:28:58 +07:00
|
|
|
|
|
|
|
if (hwmgr->hwmgr_func->get_fan_speed_rpm == NULL)
|
|
|
|
return -EINVAL;
|
|
|
|
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_lock(&hwmgr->smu_lock);
|
2017-02-20 16:07:36 +07:00
|
|
|
ret = hwmgr->hwmgr_func->get_fan_speed_rpm(hwmgr, rpm);
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_unlock(&hwmgr->smu_lock);
|
2017-02-20 16:07:36 +07:00
|
|
|
return ret;
|
2016-10-30 03:28:58 +07:00
|
|
|
}
|
|
|
|
|
2018-09-20 13:30:55 +07:00
|
|
|
static int pp_dpm_set_fan_speed_rpm(void *handle, uint32_t rpm)
|
|
|
|
{
|
|
|
|
struct pp_hwmgr *hwmgr = handle;
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
if (!hwmgr || !hwmgr->pm_en)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
if (hwmgr->hwmgr_func->set_fan_speed_rpm == NULL) {
|
2018-11-15 20:40:29 +07:00
|
|
|
pr_info_ratelimited("%s was not implemented.\n", __func__);
|
2018-09-20 13:30:55 +07:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
mutex_lock(&hwmgr->smu_lock);
|
|
|
|
ret = hwmgr->hwmgr_func->set_fan_speed_rpm(hwmgr, rpm);
|
|
|
|
mutex_unlock(&hwmgr->smu_lock);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
drm/amd/powerplay: add some sysfs interfaces for powerplay.
The new sysfs interfaces:
pp_num_states: Read-only, return the number of all pp states, 0 if powerplay is not available.
pp_cur_state: Read-only, return the index number of current pp state.
pp_force_state: Read-write, to write a power state index will switch to selected state forcedly and
enable forced state mode, disable forced state mode. such as "echo >...".
pp_table: Read-write, binary output, to be used to read or write the dpm table, the maximum
file size is 4KB of page size.
pp_dpm_sclk: Read-write, reading will return a dpm levels list, to write an index number will force
powerplay to set the corresponding dpm level.
pp_dpm_mclk: same as sclk.
pp_dpm_pcie: same as sclk.
And add new setting "manual" to the existing interface power_dpm_force_performance_level.
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Eric Huang <JinHuiEric.Huang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
2015-12-12 04:24:34 +07:00
|
|
|
static int pp_dpm_get_pp_num_states(void *handle,
|
|
|
|
struct pp_states_info *data)
|
|
|
|
{
|
2018-03-12 18:52:23 +07:00
|
|
|
struct pp_hwmgr *hwmgr = handle;
|
drm/amd/powerplay: add some sysfs interfaces for powerplay.
The new sysfs interfaces:
pp_num_states: Read-only, return the number of all pp states, 0 if powerplay is not available.
pp_cur_state: Read-only, return the index number of current pp state.
pp_force_state: Read-write, to write a power state index will switch to selected state forcedly and
enable forced state mode, disable forced state mode. such as "echo >...".
pp_table: Read-write, binary output, to be used to read or write the dpm table, the maximum
file size is 4KB of page size.
pp_dpm_sclk: Read-write, reading will return a dpm levels list, to write an index number will force
powerplay to set the corresponding dpm level.
pp_dpm_mclk: same as sclk.
pp_dpm_pcie: same as sclk.
And add new setting "manual" to the existing interface power_dpm_force_performance_level.
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Eric Huang <JinHuiEric.Huang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
2015-12-12 04:24:34 +07:00
|
|
|
int i;
|
|
|
|
|
2017-12-28 13:37:58 +07:00
|
|
|
memset(data, 0, sizeof(*data));
|
|
|
|
|
2018-03-22 13:52:35 +07:00
|
|
|
if (!hwmgr || !hwmgr->pm_en ||!hwmgr->ps)
|
drm/amd/powerplay: add some sysfs interfaces for powerplay.
The new sysfs interfaces:
pp_num_states: Read-only, return the number of all pp states, 0 if powerplay is not available.
pp_cur_state: Read-only, return the index number of current pp state.
pp_force_state: Read-write, to write a power state index will switch to selected state forcedly and
enable forced state mode, disable forced state mode. such as "echo >...".
pp_table: Read-write, binary output, to be used to read or write the dpm table, the maximum
file size is 4KB of page size.
pp_dpm_sclk: Read-write, reading will return a dpm levels list, to write an index number will force
powerplay to set the corresponding dpm level.
pp_dpm_mclk: same as sclk.
pp_dpm_pcie: same as sclk.
And add new setting "manual" to the existing interface power_dpm_force_performance_level.
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Eric Huang <JinHuiEric.Huang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
2015-12-12 04:24:34 +07:00
|
|
|
return -EINVAL;
|
|
|
|
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_lock(&hwmgr->smu_lock);
|
2017-02-20 16:07:36 +07:00
|
|
|
|
drm/amd/powerplay: add some sysfs interfaces for powerplay.
The new sysfs interfaces:
pp_num_states: Read-only, return the number of all pp states, 0 if powerplay is not available.
pp_cur_state: Read-only, return the index number of current pp state.
pp_force_state: Read-write, to write a power state index will switch to selected state forcedly and
enable forced state mode, disable forced state mode. such as "echo >...".
pp_table: Read-write, binary output, to be used to read or write the dpm table, the maximum
file size is 4KB of page size.
pp_dpm_sclk: Read-write, reading will return a dpm levels list, to write an index number will force
powerplay to set the corresponding dpm level.
pp_dpm_mclk: same as sclk.
pp_dpm_pcie: same as sclk.
And add new setting "manual" to the existing interface power_dpm_force_performance_level.
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Eric Huang <JinHuiEric.Huang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
2015-12-12 04:24:34 +07:00
|
|
|
data->nums = hwmgr->num_ps;
|
|
|
|
|
|
|
|
for (i = 0; i < hwmgr->num_ps; i++) {
|
|
|
|
struct pp_power_state *state = (struct pp_power_state *)
|
|
|
|
((unsigned long)hwmgr->ps + i * hwmgr->ps_size);
|
|
|
|
switch (state->classification.ui_label) {
|
|
|
|
case PP_StateUILabel_Battery:
|
|
|
|
data->states[i] = POWER_STATE_TYPE_BATTERY;
|
|
|
|
break;
|
|
|
|
case PP_StateUILabel_Balanced:
|
|
|
|
data->states[i] = POWER_STATE_TYPE_BALANCED;
|
|
|
|
break;
|
|
|
|
case PP_StateUILabel_Performance:
|
|
|
|
data->states[i] = POWER_STATE_TYPE_PERFORMANCE;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
if (state->classification.flags & PP_StateClassificationFlag_Boot)
|
|
|
|
data->states[i] = POWER_STATE_TYPE_INTERNAL_BOOT;
|
|
|
|
else
|
|
|
|
data->states[i] = POWER_STATE_TYPE_DEFAULT;
|
|
|
|
}
|
|
|
|
}
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_unlock(&hwmgr->smu_lock);
|
drm/amd/powerplay: add some sysfs interfaces for powerplay.
The new sysfs interfaces:
pp_num_states: Read-only, return the number of all pp states, 0 if powerplay is not available.
pp_cur_state: Read-only, return the index number of current pp state.
pp_force_state: Read-write, to write a power state index will switch to selected state forcedly and
enable forced state mode, disable forced state mode. such as "echo >...".
pp_table: Read-write, binary output, to be used to read or write the dpm table, the maximum
file size is 4KB of page size.
pp_dpm_sclk: Read-write, reading will return a dpm levels list, to write an index number will force
powerplay to set the corresponding dpm level.
pp_dpm_mclk: same as sclk.
pp_dpm_pcie: same as sclk.
And add new setting "manual" to the existing interface power_dpm_force_performance_level.
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Eric Huang <JinHuiEric.Huang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
2015-12-12 04:24:34 +07:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int pp_dpm_get_pp_table(void *handle, char **table)
|
|
|
|
{
|
2018-03-12 18:52:23 +07:00
|
|
|
struct pp_hwmgr *hwmgr = handle;
|
2017-02-20 16:07:36 +07:00
|
|
|
int size = 0;
|
drm/amd/powerplay: add some sysfs interfaces for powerplay.
The new sysfs interfaces:
pp_num_states: Read-only, return the number of all pp states, 0 if powerplay is not available.
pp_cur_state: Read-only, return the index number of current pp state.
pp_force_state: Read-write, to write a power state index will switch to selected state forcedly and
enable forced state mode, disable forced state mode. such as "echo >...".
pp_table: Read-write, binary output, to be used to read or write the dpm table, the maximum
file size is 4KB of page size.
pp_dpm_sclk: Read-write, reading will return a dpm levels list, to write an index number will force
powerplay to set the corresponding dpm level.
pp_dpm_mclk: same as sclk.
pp_dpm_pcie: same as sclk.
And add new setting "manual" to the existing interface power_dpm_force_performance_level.
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Eric Huang <JinHuiEric.Huang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
2015-12-12 04:24:34 +07:00
|
|
|
|
2018-03-22 13:52:35 +07:00
|
|
|
if (!hwmgr || !hwmgr->pm_en ||!hwmgr->soft_pp_table)
|
2016-06-02 04:08:07 +07:00
|
|
|
return -EINVAL;
|
|
|
|
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_lock(&hwmgr->smu_lock);
|
2016-06-02 04:08:07 +07:00
|
|
|
*table = (char *)hwmgr->soft_pp_table;
|
2017-02-20 16:07:36 +07:00
|
|
|
size = hwmgr->soft_pp_table_size;
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_unlock(&hwmgr->smu_lock);
|
2017-02-20 16:07:36 +07:00
|
|
|
return size;
|
drm/amd/powerplay: add some sysfs interfaces for powerplay.
The new sysfs interfaces:
pp_num_states: Read-only, return the number of all pp states, 0 if powerplay is not available.
pp_cur_state: Read-only, return the index number of current pp state.
pp_force_state: Read-write, to write a power state index will switch to selected state forcedly and
enable forced state mode, disable forced state mode. such as "echo >...".
pp_table: Read-write, binary output, to be used to read or write the dpm table, the maximum
file size is 4KB of page size.
pp_dpm_sclk: Read-write, reading will return a dpm levels list, to write an index number will force
powerplay to set the corresponding dpm level.
pp_dpm_mclk: same as sclk.
pp_dpm_pcie: same as sclk.
And add new setting "manual" to the existing interface power_dpm_force_performance_level.
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Eric Huang <JinHuiEric.Huang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
2015-12-12 04:24:34 +07:00
|
|
|
}
|
|
|
|
|
2017-10-26 10:55:23 +07:00
|
|
|
static int amd_powerplay_reset(void *handle)
|
|
|
|
{
|
2018-03-12 18:52:23 +07:00
|
|
|
struct pp_hwmgr *hwmgr = handle;
|
2017-10-26 10:55:23 +07:00
|
|
|
int ret;
|
|
|
|
|
2018-03-21 10:04:21 +07:00
|
|
|
ret = hwmgr_hw_fini(hwmgr);
|
2017-10-26 10:55:23 +07:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2018-03-12 18:52:23 +07:00
|
|
|
ret = hwmgr_hw_init(hwmgr);
|
2017-10-26 10:55:23 +07:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2018-03-12 18:52:23 +07:00
|
|
|
return hwmgr_handle_task(hwmgr, AMD_PP_TASK_COMPLETE_INIT, NULL);
|
2017-10-26 10:55:23 +07:00
|
|
|
}
|
|
|
|
|
drm/amd/powerplay: add some sysfs interfaces for powerplay.
The new sysfs interfaces:
pp_num_states: Read-only, return the number of all pp states, 0 if powerplay is not available.
pp_cur_state: Read-only, return the index number of current pp state.
pp_force_state: Read-write, to write a power state index will switch to selected state forcedly and
enable forced state mode, disable forced state mode. such as "echo >...".
pp_table: Read-write, binary output, to be used to read or write the dpm table, the maximum
file size is 4KB of page size.
pp_dpm_sclk: Read-write, reading will return a dpm levels list, to write an index number will force
powerplay to set the corresponding dpm level.
pp_dpm_mclk: same as sclk.
pp_dpm_pcie: same as sclk.
And add new setting "manual" to the existing interface power_dpm_force_performance_level.
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Eric Huang <JinHuiEric.Huang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
2015-12-12 04:24:34 +07:00
|
|
|
static int pp_dpm_set_pp_table(void *handle, const char *buf, size_t size)
|
|
|
|
{
|
2018-03-12 18:52:23 +07:00
|
|
|
struct pp_hwmgr *hwmgr = handle;
|
2018-03-22 14:12:59 +07:00
|
|
|
int ret = -ENOMEM;
|
drm/amd/powerplay: add some sysfs interfaces for powerplay.
The new sysfs interfaces:
pp_num_states: Read-only, return the number of all pp states, 0 if powerplay is not available.
pp_cur_state: Read-only, return the index number of current pp state.
pp_force_state: Read-write, to write a power state index will switch to selected state forcedly and
enable forced state mode, disable forced state mode. such as "echo >...".
pp_table: Read-write, binary output, to be used to read or write the dpm table, the maximum
file size is 4KB of page size.
pp_dpm_sclk: Read-write, reading will return a dpm levels list, to write an index number will force
powerplay to set the corresponding dpm level.
pp_dpm_mclk: same as sclk.
pp_dpm_pcie: same as sclk.
And add new setting "manual" to the existing interface power_dpm_force_performance_level.
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Eric Huang <JinHuiEric.Huang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
2015-12-12 04:24:34 +07:00
|
|
|
|
2018-03-22 13:52:35 +07:00
|
|
|
if (!hwmgr || !hwmgr->pm_en)
|
|
|
|
return -EINVAL;
|
drm/amd/powerplay: add some sysfs interfaces for powerplay.
The new sysfs interfaces:
pp_num_states: Read-only, return the number of all pp states, 0 if powerplay is not available.
pp_cur_state: Read-only, return the index number of current pp state.
pp_force_state: Read-write, to write a power state index will switch to selected state forcedly and
enable forced state mode, disable forced state mode. such as "echo >...".
pp_table: Read-write, binary output, to be used to read or write the dpm table, the maximum
file size is 4KB of page size.
pp_dpm_sclk: Read-write, reading will return a dpm levels list, to write an index number will force
powerplay to set the corresponding dpm level.
pp_dpm_mclk: same as sclk.
pp_dpm_pcie: same as sclk.
And add new setting "manual" to the existing interface power_dpm_force_performance_level.
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Eric Huang <JinHuiEric.Huang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
2015-12-12 04:24:34 +07:00
|
|
|
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_lock(&hwmgr->smu_lock);
|
2016-06-02 04:08:07 +07:00
|
|
|
if (!hwmgr->hardcode_pp_table) {
|
2016-09-04 09:36:19 +07:00
|
|
|
hwmgr->hardcode_pp_table = kmemdup(hwmgr->soft_pp_table,
|
|
|
|
hwmgr->soft_pp_table_size,
|
|
|
|
GFP_KERNEL);
|
2018-03-22 14:12:59 +07:00
|
|
|
if (!hwmgr->hardcode_pp_table)
|
|
|
|
goto err;
|
2016-03-30 10:35:50 +07:00
|
|
|
}
|
drm/amd/powerplay: add some sysfs interfaces for powerplay.
The new sysfs interfaces:
pp_num_states: Read-only, return the number of all pp states, 0 if powerplay is not available.
pp_cur_state: Read-only, return the index number of current pp state.
pp_force_state: Read-write, to write a power state index will switch to selected state forcedly and
enable forced state mode, disable forced state mode. such as "echo >...".
pp_table: Read-write, binary output, to be used to read or write the dpm table, the maximum
file size is 4KB of page size.
pp_dpm_sclk: Read-write, reading will return a dpm levels list, to write an index number will force
powerplay to set the corresponding dpm level.
pp_dpm_mclk: same as sclk.
pp_dpm_pcie: same as sclk.
And add new setting "manual" to the existing interface power_dpm_force_performance_level.
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Eric Huang <JinHuiEric.Huang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
2015-12-12 04:24:34 +07:00
|
|
|
|
2016-06-02 04:08:07 +07:00
|
|
|
memcpy(hwmgr->hardcode_pp_table, buf, size);
|
|
|
|
|
|
|
|
hwmgr->soft_pp_table = hwmgr->hardcode_pp_table;
|
|
|
|
|
2017-03-02 03:49:31 +07:00
|
|
|
ret = amd_powerplay_reset(handle);
|
|
|
|
if (ret)
|
2018-03-22 14:12:59 +07:00
|
|
|
goto err;
|
2017-03-02 03:49:31 +07:00
|
|
|
|
|
|
|
if (hwmgr->hwmgr_func->avfs_control) {
|
|
|
|
ret = hwmgr->hwmgr_func->avfs_control(hwmgr, false);
|
|
|
|
if (ret)
|
2018-03-22 14:12:59 +07:00
|
|
|
goto err;
|
2017-03-02 03:49:31 +07:00
|
|
|
}
|
2018-03-22 14:12:59 +07:00
|
|
|
mutex_unlock(&hwmgr->smu_lock);
|
2017-03-02 03:49:31 +07:00
|
|
|
return 0;
|
2018-03-22 14:12:59 +07:00
|
|
|
err:
|
|
|
|
mutex_unlock(&hwmgr->smu_lock);
|
|
|
|
return ret;
|
drm/amd/powerplay: add some sysfs interfaces for powerplay.
The new sysfs interfaces:
pp_num_states: Read-only, return the number of all pp states, 0 if powerplay is not available.
pp_cur_state: Read-only, return the index number of current pp state.
pp_force_state: Read-write, to write a power state index will switch to selected state forcedly and
enable forced state mode, disable forced state mode. such as "echo >...".
pp_table: Read-write, binary output, to be used to read or write the dpm table, the maximum
file size is 4KB of page size.
pp_dpm_sclk: Read-write, reading will return a dpm levels list, to write an index number will force
powerplay to set the corresponding dpm level.
pp_dpm_mclk: same as sclk.
pp_dpm_pcie: same as sclk.
And add new setting "manual" to the existing interface power_dpm_force_performance_level.
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Eric Huang <JinHuiEric.Huang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
2015-12-12 04:24:34 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
static int pp_dpm_force_clock_level(void *handle,
|
2016-04-13 01:57:23 +07:00
|
|
|
enum pp_clock_type type, uint32_t mask)
|
drm/amd/powerplay: add some sysfs interfaces for powerplay.
The new sysfs interfaces:
pp_num_states: Read-only, return the number of all pp states, 0 if powerplay is not available.
pp_cur_state: Read-only, return the index number of current pp state.
pp_force_state: Read-write, to write a power state index will switch to selected state forcedly and
enable forced state mode, disable forced state mode. such as "echo >...".
pp_table: Read-write, binary output, to be used to read or write the dpm table, the maximum
file size is 4KB of page size.
pp_dpm_sclk: Read-write, reading will return a dpm levels list, to write an index number will force
powerplay to set the corresponding dpm level.
pp_dpm_mclk: same as sclk.
pp_dpm_pcie: same as sclk.
And add new setting "manual" to the existing interface power_dpm_force_performance_level.
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Eric Huang <JinHuiEric.Huang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
2015-12-12 04:24:34 +07:00
|
|
|
{
|
2018-03-12 18:52:23 +07:00
|
|
|
struct pp_hwmgr *hwmgr = handle;
|
2016-12-28 18:43:23 +07:00
|
|
|
int ret = 0;
|
drm/amd/powerplay: add some sysfs interfaces for powerplay.
The new sysfs interfaces:
pp_num_states: Read-only, return the number of all pp states, 0 if powerplay is not available.
pp_cur_state: Read-only, return the index number of current pp state.
pp_force_state: Read-write, to write a power state index will switch to selected state forcedly and
enable forced state mode, disable forced state mode. such as "echo >...".
pp_table: Read-write, binary output, to be used to read or write the dpm table, the maximum
file size is 4KB of page size.
pp_dpm_sclk: Read-write, reading will return a dpm levels list, to write an index number will force
powerplay to set the corresponding dpm level.
pp_dpm_mclk: same as sclk.
pp_dpm_pcie: same as sclk.
And add new setting "manual" to the existing interface power_dpm_force_performance_level.
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Eric Huang <JinHuiEric.Huang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
2015-12-12 04:24:34 +07:00
|
|
|
|
2018-03-22 13:52:35 +07:00
|
|
|
if (!hwmgr || !hwmgr->pm_en)
|
|
|
|
return -EINVAL;
|
drm/amd/powerplay: add some sysfs interfaces for powerplay.
The new sysfs interfaces:
pp_num_states: Read-only, return the number of all pp states, 0 if powerplay is not available.
pp_cur_state: Read-only, return the index number of current pp state.
pp_force_state: Read-write, to write a power state index will switch to selected state forcedly and
enable forced state mode, disable forced state mode. such as "echo >...".
pp_table: Read-write, binary output, to be used to read or write the dpm table, the maximum
file size is 4KB of page size.
pp_dpm_sclk: Read-write, reading will return a dpm levels list, to write an index number will force
powerplay to set the corresponding dpm level.
pp_dpm_mclk: same as sclk.
pp_dpm_pcie: same as sclk.
And add new setting "manual" to the existing interface power_dpm_force_performance_level.
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Eric Huang <JinHuiEric.Huang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
2015-12-12 04:24:34 +07:00
|
|
|
|
2016-03-30 10:35:50 +07:00
|
|
|
if (hwmgr->hwmgr_func->force_clock_level == NULL) {
|
2018-11-15 20:40:29 +07:00
|
|
|
pr_info_ratelimited("%s was not implemented.\n", __func__);
|
2016-03-30 10:35:50 +07:00
|
|
|
return 0;
|
|
|
|
}
|
2018-10-17 15:36:02 +07:00
|
|
|
|
|
|
|
if (hwmgr->dpm_level != AMD_DPM_FORCED_LEVEL_MANUAL) {
|
|
|
|
pr_info("force clock level is for dpm manual mode only.\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_lock(&hwmgr->smu_lock);
|
2018-10-17 15:36:02 +07:00
|
|
|
ret = hwmgr->hwmgr_func->force_clock_level(hwmgr, type, mask);
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_unlock(&hwmgr->smu_lock);
|
2017-02-20 16:07:36 +07:00
|
|
|
return ret;
|
drm/amd/powerplay: add some sysfs interfaces for powerplay.
The new sysfs interfaces:
pp_num_states: Read-only, return the number of all pp states, 0 if powerplay is not available.
pp_cur_state: Read-only, return the index number of current pp state.
pp_force_state: Read-write, to write a power state index will switch to selected state forcedly and
enable forced state mode, disable forced state mode. such as "echo >...".
pp_table: Read-write, binary output, to be used to read or write the dpm table, the maximum
file size is 4KB of page size.
pp_dpm_sclk: Read-write, reading will return a dpm levels list, to write an index number will force
powerplay to set the corresponding dpm level.
pp_dpm_mclk: same as sclk.
pp_dpm_pcie: same as sclk.
And add new setting "manual" to the existing interface power_dpm_force_performance_level.
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Eric Huang <JinHuiEric.Huang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
2015-12-12 04:24:34 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
static int pp_dpm_print_clock_levels(void *handle,
|
|
|
|
enum pp_clock_type type, char *buf)
|
|
|
|
{
|
2018-03-12 18:52:23 +07:00
|
|
|
struct pp_hwmgr *hwmgr = handle;
|
2016-12-28 18:43:23 +07:00
|
|
|
int ret = 0;
|
drm/amd/powerplay: add some sysfs interfaces for powerplay.
The new sysfs interfaces:
pp_num_states: Read-only, return the number of all pp states, 0 if powerplay is not available.
pp_cur_state: Read-only, return the index number of current pp state.
pp_force_state: Read-write, to write a power state index will switch to selected state forcedly and
enable forced state mode, disable forced state mode. such as "echo >...".
pp_table: Read-write, binary output, to be used to read or write the dpm table, the maximum
file size is 4KB of page size.
pp_dpm_sclk: Read-write, reading will return a dpm levels list, to write an index number will force
powerplay to set the corresponding dpm level.
pp_dpm_mclk: same as sclk.
pp_dpm_pcie: same as sclk.
And add new setting "manual" to the existing interface power_dpm_force_performance_level.
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Eric Huang <JinHuiEric.Huang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
2015-12-12 04:24:34 +07:00
|
|
|
|
2018-03-22 13:52:35 +07:00
|
|
|
if (!hwmgr || !hwmgr->pm_en)
|
|
|
|
return -EINVAL;
|
drm/amd/powerplay: add some sysfs interfaces for powerplay.
The new sysfs interfaces:
pp_num_states: Read-only, return the number of all pp states, 0 if powerplay is not available.
pp_cur_state: Read-only, return the index number of current pp state.
pp_force_state: Read-write, to write a power state index will switch to selected state forcedly and
enable forced state mode, disable forced state mode. such as "echo >...".
pp_table: Read-write, binary output, to be used to read or write the dpm table, the maximum
file size is 4KB of page size.
pp_dpm_sclk: Read-write, reading will return a dpm levels list, to write an index number will force
powerplay to set the corresponding dpm level.
pp_dpm_mclk: same as sclk.
pp_dpm_pcie: same as sclk.
And add new setting "manual" to the existing interface power_dpm_force_performance_level.
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Eric Huang <JinHuiEric.Huang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
2015-12-12 04:24:34 +07:00
|
|
|
|
2016-03-30 10:35:50 +07:00
|
|
|
if (hwmgr->hwmgr_func->print_clock_levels == NULL) {
|
2018-11-15 20:40:29 +07:00
|
|
|
pr_info_ratelimited("%s was not implemented.\n", __func__);
|
2016-03-30 10:35:50 +07:00
|
|
|
return 0;
|
|
|
|
}
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_lock(&hwmgr->smu_lock);
|
2017-02-20 16:07:36 +07:00
|
|
|
ret = hwmgr->hwmgr_func->print_clock_levels(hwmgr, type, buf);
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_unlock(&hwmgr->smu_lock);
|
2017-02-20 16:07:36 +07:00
|
|
|
return ret;
|
drm/amd/powerplay: add some sysfs interfaces for powerplay.
The new sysfs interfaces:
pp_num_states: Read-only, return the number of all pp states, 0 if powerplay is not available.
pp_cur_state: Read-only, return the index number of current pp state.
pp_force_state: Read-write, to write a power state index will switch to selected state forcedly and
enable forced state mode, disable forced state mode. such as "echo >...".
pp_table: Read-write, binary output, to be used to read or write the dpm table, the maximum
file size is 4KB of page size.
pp_dpm_sclk: Read-write, reading will return a dpm levels list, to write an index number will force
powerplay to set the corresponding dpm level.
pp_dpm_mclk: same as sclk.
pp_dpm_pcie: same as sclk.
And add new setting "manual" to the existing interface power_dpm_force_performance_level.
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Eric Huang <JinHuiEric.Huang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
2015-12-12 04:24:34 +07:00
|
|
|
}
|
|
|
|
|
2016-05-13 01:51:21 +07:00
|
|
|
static int pp_dpm_get_sclk_od(void *handle)
|
|
|
|
{
|
2018-03-12 18:52:23 +07:00
|
|
|
struct pp_hwmgr *hwmgr = handle;
|
2016-12-28 18:43:23 +07:00
|
|
|
int ret = 0;
|
2016-05-13 01:51:21 +07:00
|
|
|
|
2018-03-22 13:52:35 +07:00
|
|
|
if (!hwmgr || !hwmgr->pm_en)
|
|
|
|
return -EINVAL;
|
2016-05-13 01:51:21 +07:00
|
|
|
|
|
|
|
if (hwmgr->hwmgr_func->get_sclk_od == NULL) {
|
2018-11-15 20:40:29 +07:00
|
|
|
pr_info_ratelimited("%s was not implemented.\n", __func__);
|
2016-05-13 01:51:21 +07:00
|
|
|
return 0;
|
|
|
|
}
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_lock(&hwmgr->smu_lock);
|
2017-02-20 16:07:36 +07:00
|
|
|
ret = hwmgr->hwmgr_func->get_sclk_od(hwmgr);
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_unlock(&hwmgr->smu_lock);
|
2017-02-20 16:07:36 +07:00
|
|
|
return ret;
|
2016-05-13 01:51:21 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
static int pp_dpm_set_sclk_od(void *handle, uint32_t value)
|
|
|
|
{
|
2018-03-12 18:52:23 +07:00
|
|
|
struct pp_hwmgr *hwmgr = handle;
|
2016-12-28 18:43:23 +07:00
|
|
|
int ret = 0;
|
2016-05-13 01:51:21 +07:00
|
|
|
|
2018-03-22 13:52:35 +07:00
|
|
|
if (!hwmgr || !hwmgr->pm_en)
|
|
|
|
return -EINVAL;
|
2016-05-13 01:51:21 +07:00
|
|
|
|
|
|
|
if (hwmgr->hwmgr_func->set_sclk_od == NULL) {
|
2018-11-15 20:40:29 +07:00
|
|
|
pr_info_ratelimited("%s was not implemented.\n", __func__);
|
2016-05-13 01:51:21 +07:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_lock(&hwmgr->smu_lock);
|
2017-02-20 16:07:36 +07:00
|
|
|
ret = hwmgr->hwmgr_func->set_sclk_od(hwmgr, value);
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_unlock(&hwmgr->smu_lock);
|
2017-02-20 16:07:36 +07:00
|
|
|
return ret;
|
2016-05-13 01:51:21 +07:00
|
|
|
}
|
|
|
|
|
2016-05-25 02:11:17 +07:00
|
|
|
static int pp_dpm_get_mclk_od(void *handle)
|
|
|
|
{
|
2018-03-12 18:52:23 +07:00
|
|
|
struct pp_hwmgr *hwmgr = handle;
|
2016-12-28 18:43:23 +07:00
|
|
|
int ret = 0;
|
2016-05-25 02:11:17 +07:00
|
|
|
|
2018-03-22 13:52:35 +07:00
|
|
|
if (!hwmgr || !hwmgr->pm_en)
|
|
|
|
return -EINVAL;
|
2016-05-25 02:11:17 +07:00
|
|
|
|
|
|
|
if (hwmgr->hwmgr_func->get_mclk_od == NULL) {
|
2018-11-15 20:40:29 +07:00
|
|
|
pr_info_ratelimited("%s was not implemented.\n", __func__);
|
2016-05-25 02:11:17 +07:00
|
|
|
return 0;
|
|
|
|
}
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_lock(&hwmgr->smu_lock);
|
2017-02-20 16:07:36 +07:00
|
|
|
ret = hwmgr->hwmgr_func->get_mclk_od(hwmgr);
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_unlock(&hwmgr->smu_lock);
|
2017-02-20 16:07:36 +07:00
|
|
|
return ret;
|
2016-05-25 02:11:17 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
static int pp_dpm_set_mclk_od(void *handle, uint32_t value)
|
|
|
|
{
|
2018-03-12 18:52:23 +07:00
|
|
|
struct pp_hwmgr *hwmgr = handle;
|
2016-12-28 18:43:23 +07:00
|
|
|
int ret = 0;
|
2016-05-25 02:11:17 +07:00
|
|
|
|
2018-03-22 13:52:35 +07:00
|
|
|
if (!hwmgr || !hwmgr->pm_en)
|
|
|
|
return -EINVAL;
|
2016-05-25 02:11:17 +07:00
|
|
|
|
|
|
|
if (hwmgr->hwmgr_func->set_mclk_od == NULL) {
|
2018-11-15 20:40:29 +07:00
|
|
|
pr_info_ratelimited("%s was not implemented.\n", __func__);
|
2016-05-25 02:11:17 +07:00
|
|
|
return 0;
|
|
|
|
}
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_lock(&hwmgr->smu_lock);
|
2017-02-20 16:07:36 +07:00
|
|
|
ret = hwmgr->hwmgr_func->set_mclk_od(hwmgr, value);
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_unlock(&hwmgr->smu_lock);
|
2017-02-20 16:07:36 +07:00
|
|
|
return ret;
|
2016-05-25 02:11:17 +07:00
|
|
|
}
|
|
|
|
|
2017-02-10 02:29:01 +07:00
|
|
|
static int pp_dpm_read_sensor(void *handle, int idx,
|
|
|
|
void *value, int *size)
|
2016-09-15 21:07:34 +07:00
|
|
|
{
|
2018-03-12 18:52:23 +07:00
|
|
|
struct pp_hwmgr *hwmgr = handle;
|
2016-12-28 18:43:23 +07:00
|
|
|
int ret = 0;
|
2016-09-15 21:07:34 +07:00
|
|
|
|
2018-03-22 13:52:35 +07:00
|
|
|
if (!hwmgr || !hwmgr->pm_en || !value)
|
2018-01-08 12:59:05 +07:00
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
switch (idx) {
|
|
|
|
case AMDGPU_PP_SENSOR_STABLE_PSTATE_SCLK:
|
|
|
|
*((uint32_t *)value) = hwmgr->pstate_sclk;
|
|
|
|
return 0;
|
|
|
|
case AMDGPU_PP_SENSOR_STABLE_PSTATE_MCLK:
|
|
|
|
*((uint32_t *)value) = hwmgr->pstate_mclk;
|
2016-09-15 21:07:34 +07:00
|
|
|
return 0;
|
2018-09-30 12:19:00 +07:00
|
|
|
case AMDGPU_PP_SENSOR_MIN_FAN_RPM:
|
|
|
|
*((uint32_t *)value) = hwmgr->thermal_controller.fanInfo.ulMinRPM;
|
|
|
|
return 0;
|
|
|
|
case AMDGPU_PP_SENSOR_MAX_FAN_RPM:
|
|
|
|
*((uint32_t *)value) = hwmgr->thermal_controller.fanInfo.ulMaxRPM;
|
|
|
|
return 0;
|
2018-01-08 12:59:05 +07:00
|
|
|
default:
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_lock(&hwmgr->smu_lock);
|
2018-01-08 12:59:05 +07:00
|
|
|
ret = hwmgr->hwmgr_func->read_sensor(hwmgr, idx, value, size);
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_unlock(&hwmgr->smu_lock);
|
2018-01-08 12:59:05 +07:00
|
|
|
return ret;
|
2016-09-15 21:07:34 +07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-08 00:52:43 +07:00
|
|
|
static struct amd_vce_state*
|
|
|
|
pp_dpm_get_vce_clock_state(void *handle, unsigned idx)
|
|
|
|
{
|
2018-03-12 18:52:23 +07:00
|
|
|
struct pp_hwmgr *hwmgr = handle;
|
2016-10-08 00:52:43 +07:00
|
|
|
|
2018-03-22 13:52:35 +07:00
|
|
|
if (!hwmgr || !hwmgr->pm_en)
|
2016-12-28 18:43:23 +07:00
|
|
|
return NULL;
|
|
|
|
|
2018-03-22 13:52:35 +07:00
|
|
|
if (idx < hwmgr->num_vce_state_tables)
|
2016-12-28 18:43:23 +07:00
|
|
|
return &hwmgr->vce_states[idx];
|
2016-10-08 00:52:43 +07:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-01-10 17:48:06 +07:00
|
|
|
static int pp_get_power_profile_mode(void *handle, char *buf)
|
|
|
|
{
|
2018-03-12 18:52:23 +07:00
|
|
|
struct pp_hwmgr *hwmgr = handle;
|
2018-01-10 17:48:06 +07:00
|
|
|
|
2018-03-22 13:52:35 +07:00
|
|
|
if (!hwmgr || !hwmgr->pm_en || !buf)
|
2018-01-10 17:48:06 +07:00
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
if (hwmgr->hwmgr_func->get_power_profile_mode == NULL) {
|
2018-11-15 20:40:29 +07:00
|
|
|
pr_info_ratelimited("%s was not implemented.\n", __func__);
|
2018-01-10 17:48:06 +07:00
|
|
|
return snprintf(buf, PAGE_SIZE, "\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
return hwmgr->hwmgr_func->get_power_profile_mode(hwmgr, buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int pp_set_power_profile_mode(void *handle, long *input, uint32_t size)
|
|
|
|
{
|
2018-03-12 18:52:23 +07:00
|
|
|
struct pp_hwmgr *hwmgr = handle;
|
2018-01-30 11:55:54 +07:00
|
|
|
int ret = -EINVAL;
|
2018-01-10 17:48:06 +07:00
|
|
|
|
2018-03-22 13:52:35 +07:00
|
|
|
if (!hwmgr || !hwmgr->pm_en)
|
|
|
|
return ret;
|
2018-01-10 17:48:06 +07:00
|
|
|
|
|
|
|
if (hwmgr->hwmgr_func->set_power_profile_mode == NULL) {
|
2018-11-15 20:40:29 +07:00
|
|
|
pr_info_ratelimited("%s was not implemented.\n", __func__);
|
2018-03-22 13:52:35 +07:00
|
|
|
return ret;
|
2018-01-10 17:48:06 +07:00
|
|
|
}
|
2018-10-10 14:24:59 +07:00
|
|
|
|
|
|
|
if (hwmgr->dpm_level != AMD_DPM_FORCED_LEVEL_MANUAL) {
|
|
|
|
pr_info("power profile setting is for manual dpm mode only.\n");
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_lock(&hwmgr->smu_lock);
|
2018-10-10 14:24:59 +07:00
|
|
|
ret = hwmgr->hwmgr_func->set_power_profile_mode(hwmgr, input, size);
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_unlock(&hwmgr->smu_lock);
|
2018-01-30 11:55:54 +07:00
|
|
|
return ret;
|
2018-01-10 17:48:06 +07:00
|
|
|
}
|
|
|
|
|
2018-01-16 17:35:15 +07:00
|
|
|
static int pp_odn_edit_dpm_table(void *handle, uint32_t type, long *input, uint32_t size)
|
|
|
|
{
|
2018-03-12 18:52:23 +07:00
|
|
|
struct pp_hwmgr *hwmgr = handle;
|
2018-01-16 17:35:15 +07:00
|
|
|
|
2018-03-22 13:52:35 +07:00
|
|
|
if (!hwmgr || !hwmgr->pm_en)
|
2018-01-16 17:35:15 +07:00
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
if (hwmgr->hwmgr_func->odn_edit_dpm_table == NULL) {
|
2018-11-15 20:40:29 +07:00
|
|
|
pr_info_ratelimited("%s was not implemented.\n", __func__);
|
2018-01-16 17:35:15 +07:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return hwmgr->hwmgr_func->odn_edit_dpm_table(hwmgr, type, input, size);
|
|
|
|
}
|
|
|
|
|
2016-09-13 03:17:44 +07:00
|
|
|
static int pp_dpm_switch_power_profile(void *handle,
|
2018-03-02 19:09:11 +07:00
|
|
|
enum PP_SMC_POWER_PROFILE type, bool en)
|
2016-09-13 03:17:44 +07:00
|
|
|
{
|
2018-03-12 18:52:23 +07:00
|
|
|
struct pp_hwmgr *hwmgr = handle;
|
2018-03-02 19:09:11 +07:00
|
|
|
long workload;
|
|
|
|
uint32_t index;
|
2016-09-13 03:17:44 +07:00
|
|
|
|
2018-03-22 13:52:35 +07:00
|
|
|
if (!hwmgr || !hwmgr->pm_en)
|
2016-09-13 03:17:44 +07:00
|
|
|
return -EINVAL;
|
|
|
|
|
2018-03-02 19:09:11 +07:00
|
|
|
if (hwmgr->hwmgr_func->set_power_profile_mode == NULL) {
|
2018-11-15 20:40:29 +07:00
|
|
|
pr_info_ratelimited("%s was not implemented.\n", __func__);
|
2018-03-02 19:09:11 +07:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(type < PP_SMC_POWER_PROFILE_CUSTOM))
|
|
|
|
return -EINVAL;
|
|
|
|
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_lock(&hwmgr->smu_lock);
|
2018-03-02 19:09:11 +07:00
|
|
|
|
|
|
|
if (!en) {
|
|
|
|
hwmgr->workload_mask &= ~(1 << hwmgr->workload_prority[type]);
|
|
|
|
index = fls(hwmgr->workload_mask);
|
|
|
|
index = index > 0 && index <= Workload_Policy_Max ? index - 1 : 0;
|
|
|
|
workload = hwmgr->workload_setting[index];
|
|
|
|
} else {
|
|
|
|
hwmgr->workload_mask |= (1 << hwmgr->workload_prority[type]);
|
|
|
|
index = fls(hwmgr->workload_mask);
|
|
|
|
index = index <= Workload_Policy_Max ? index - 1 : 0;
|
|
|
|
workload = hwmgr->workload_setting[index];
|
2016-09-13 03:17:44 +07:00
|
|
|
}
|
|
|
|
|
2018-03-02 19:09:11 +07:00
|
|
|
if (hwmgr->dpm_level != AMD_DPM_FORCED_LEVEL_MANUAL)
|
|
|
|
hwmgr->hwmgr_func->set_power_profile_mode(hwmgr, &workload, 0);
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_unlock(&hwmgr->smu_lock);
|
2018-03-02 19:09:11 +07:00
|
|
|
|
2016-09-13 03:17:44 +07:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-01-29 17:04:18 +07:00
|
|
|
static int pp_set_power_limit(void *handle, uint32_t limit)
|
|
|
|
{
|
2018-03-12 18:52:23 +07:00
|
|
|
struct pp_hwmgr *hwmgr = handle;
|
2018-10-19 02:57:45 +07:00
|
|
|
uint32_t max_power_limit;
|
2018-01-29 17:04:18 +07:00
|
|
|
|
2018-03-22 13:52:35 +07:00
|
|
|
if (!hwmgr || !hwmgr->pm_en)
|
|
|
|
return -EINVAL;
|
2018-01-29 17:04:18 +07:00
|
|
|
|
|
|
|
if (hwmgr->hwmgr_func->set_power_limit == NULL) {
|
2018-11-15 20:40:29 +07:00
|
|
|
pr_info_ratelimited("%s was not implemented.\n", __func__);
|
2018-01-29 17:04:18 +07:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (limit == 0)
|
|
|
|
limit = hwmgr->default_power_limit;
|
|
|
|
|
2018-10-19 02:57:45 +07:00
|
|
|
max_power_limit = hwmgr->default_power_limit;
|
|
|
|
if (hwmgr->od_enabled) {
|
|
|
|
max_power_limit *= (100 + hwmgr->platform_descriptor.TDPODLimit);
|
|
|
|
max_power_limit /= 100;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (limit > max_power_limit)
|
2018-01-29 17:04:18 +07:00
|
|
|
return -EINVAL;
|
|
|
|
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_lock(&hwmgr->smu_lock);
|
2018-01-29 17:04:18 +07:00
|
|
|
hwmgr->hwmgr_func->set_power_limit(hwmgr, limit);
|
|
|
|
hwmgr->power_limit = limit;
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_unlock(&hwmgr->smu_lock);
|
2018-03-22 13:52:35 +07:00
|
|
|
return 0;
|
2018-01-29 17:04:18 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
static int pp_get_power_limit(void *handle, uint32_t *limit, bool default_limit)
|
|
|
|
{
|
2018-03-12 18:52:23 +07:00
|
|
|
struct pp_hwmgr *hwmgr = handle;
|
2018-01-29 17:04:18 +07:00
|
|
|
|
2018-03-22 13:52:35 +07:00
|
|
|
if (!hwmgr || !hwmgr->pm_en ||!limit)
|
2018-01-29 17:04:18 +07:00
|
|
|
return -EINVAL;
|
|
|
|
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_lock(&hwmgr->smu_lock);
|
2018-01-29 17:04:18 +07:00
|
|
|
|
2018-10-19 02:57:45 +07:00
|
|
|
if (default_limit) {
|
2018-01-29 17:04:18 +07:00
|
|
|
*limit = hwmgr->default_power_limit;
|
2018-10-19 02:57:45 +07:00
|
|
|
if (hwmgr->od_enabled) {
|
|
|
|
*limit *= (100 + hwmgr->platform_descriptor.TDPODLimit);
|
|
|
|
*limit /= 100;
|
|
|
|
}
|
|
|
|
}
|
2018-01-29 17:04:18 +07:00
|
|
|
else
|
|
|
|
*limit = hwmgr->power_limit;
|
|
|
|
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_unlock(&hwmgr->smu_lock);
|
2018-01-29 17:04:18 +07:00
|
|
|
|
2018-03-22 13:52:35 +07:00
|
|
|
return 0;
|
2018-01-29 17:04:18 +07:00
|
|
|
}
|
|
|
|
|
2017-10-26 10:55:23 +07:00
|
|
|
static int pp_display_configuration_change(void *handle,
|
2015-12-14 22:51:39 +07:00
|
|
|
const struct amd_pp_display_configuration *display_config)
|
2015-11-19 12:35:30 +07:00
|
|
|
{
|
2018-03-12 18:52:23 +07:00
|
|
|
struct pp_hwmgr *hwmgr = handle;
|
2015-11-19 12:35:30 +07:00
|
|
|
|
2018-03-22 13:52:35 +07:00
|
|
|
if (!hwmgr || !hwmgr->pm_en)
|
|
|
|
return -EINVAL;
|
2015-11-19 12:35:30 +07:00
|
|
|
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_lock(&hwmgr->smu_lock);
|
2015-11-19 12:35:30 +07:00
|
|
|
phm_store_dal_configuration_data(hwmgr, display_config);
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_unlock(&hwmgr->smu_lock);
|
2015-11-19 12:35:30 +07:00
|
|
|
return 0;
|
|
|
|
}
|
2015-12-01 04:39:53 +07:00
|
|
|
|
2017-10-26 10:55:23 +07:00
|
|
|
static int pp_get_display_power_level(void *handle,
|
2015-12-10 15:49:50 +07:00
|
|
|
struct amd_pp_simple_clock_info *output)
|
2015-12-01 04:39:53 +07:00
|
|
|
{
|
2018-03-12 18:52:23 +07:00
|
|
|
struct pp_hwmgr *hwmgr = handle;
|
2016-12-28 18:43:23 +07:00
|
|
|
int ret = 0;
|
2015-12-01 04:39:53 +07:00
|
|
|
|
2018-03-22 13:52:35 +07:00
|
|
|
if (!hwmgr || !hwmgr->pm_en ||!output)
|
2016-12-28 18:43:23 +07:00
|
|
|
return -EINVAL;
|
2016-10-27 14:29:57 +07:00
|
|
|
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_lock(&hwmgr->smu_lock);
|
2017-02-20 16:07:36 +07:00
|
|
|
ret = phm_get_dal_power_level(hwmgr, output);
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_unlock(&hwmgr->smu_lock);
|
2017-02-20 16:07:36 +07:00
|
|
|
return ret;
|
2015-12-01 04:39:53 +07:00
|
|
|
}
|
2015-12-07 17:44:23 +07:00
|
|
|
|
2017-10-26 10:55:23 +07:00
|
|
|
static int pp_get_current_clocks(void *handle,
|
2015-12-14 22:51:39 +07:00
|
|
|
struct amd_pp_clock_info *clocks)
|
2015-12-07 17:44:23 +07:00
|
|
|
{
|
2018-07-17 17:31:50 +07:00
|
|
|
struct amd_pp_simple_clock_info simple_clocks = { 0 };
|
2015-12-07 17:44:23 +07:00
|
|
|
struct pp_clock_info hw_clocks;
|
2018-03-12 18:52:23 +07:00
|
|
|
struct pp_hwmgr *hwmgr = handle;
|
2016-12-28 18:43:23 +07:00
|
|
|
int ret = 0;
|
2015-12-07 17:44:23 +07:00
|
|
|
|
2018-03-22 13:52:35 +07:00
|
|
|
if (!hwmgr || !hwmgr->pm_en)
|
|
|
|
return -EINVAL;
|
2015-12-07 17:44:23 +07:00
|
|
|
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_lock(&hwmgr->smu_lock);
|
2017-02-20 16:07:36 +07:00
|
|
|
|
2015-12-07 17:44:23 +07:00
|
|
|
phm_get_dal_power_level(hwmgr, &simple_clocks);
|
|
|
|
|
2017-02-20 16:07:36 +07:00
|
|
|
if (phm_cap_enabled(hwmgr->platform_descriptor.platformCaps,
|
|
|
|
PHM_PlatformCaps_PowerContainment))
|
|
|
|
ret = phm_get_clock_info(hwmgr, &hwmgr->current_ps->hardware,
|
|
|
|
&hw_clocks, PHM_PerformanceLevelDesignation_PowerContainment);
|
|
|
|
else
|
|
|
|
ret = phm_get_clock_info(hwmgr, &hwmgr->current_ps->hardware,
|
|
|
|
&hw_clocks, PHM_PerformanceLevelDesignation_Activity);
|
|
|
|
|
2017-09-29 13:36:15 +07:00
|
|
|
if (ret) {
|
2017-02-20 16:07:36 +07:00
|
|
|
pr_info("Error in phm_get_clock_info \n");
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_unlock(&hwmgr->smu_lock);
|
2017-02-20 16:07:36 +07:00
|
|
|
return -EINVAL;
|
2015-12-07 17:44:23 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
clocks->min_engine_clock = hw_clocks.min_eng_clk;
|
|
|
|
clocks->max_engine_clock = hw_clocks.max_eng_clk;
|
|
|
|
clocks->min_memory_clock = hw_clocks.min_mem_clk;
|
|
|
|
clocks->max_memory_clock = hw_clocks.max_mem_clk;
|
|
|
|
clocks->min_bus_bandwidth = hw_clocks.min_bus_bandwidth;
|
|
|
|
clocks->max_bus_bandwidth = hw_clocks.max_bus_bandwidth;
|
|
|
|
|
|
|
|
clocks->max_engine_clock_in_sr = hw_clocks.max_eng_clk;
|
|
|
|
clocks->min_engine_clock_in_sr = hw_clocks.min_eng_clk;
|
|
|
|
|
2018-07-17 17:31:50 +07:00
|
|
|
if (simple_clocks.level == 0)
|
|
|
|
clocks->max_clocks_state = PP_DAL_POWERLEVEL_7;
|
|
|
|
else
|
|
|
|
clocks->max_clocks_state = simple_clocks.level;
|
2015-12-07 17:44:23 +07:00
|
|
|
|
|
|
|
if (0 == phm_get_current_shallow_sleep_clocks(hwmgr, &hwmgr->current_ps->hardware, &hw_clocks)) {
|
|
|
|
clocks->max_engine_clock_in_sr = hw_clocks.max_eng_clk;
|
|
|
|
clocks->min_engine_clock_in_sr = hw_clocks.min_eng_clk;
|
|
|
|
}
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_unlock(&hwmgr->smu_lock);
|
2015-12-07 17:44:23 +07:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-10-26 10:55:23 +07:00
|
|
|
static int pp_get_clock_by_type(void *handle, enum amd_pp_clock_type type, struct amd_pp_clocks *clocks)
|
2015-12-07 17:44:23 +07:00
|
|
|
{
|
2018-03-12 18:52:23 +07:00
|
|
|
struct pp_hwmgr *hwmgr = handle;
|
2016-12-28 18:43:23 +07:00
|
|
|
int ret = 0;
|
2015-12-07 17:44:23 +07:00
|
|
|
|
2018-03-22 13:52:35 +07:00
|
|
|
if (!hwmgr || !hwmgr->pm_en)
|
|
|
|
return -EINVAL;
|
2016-12-28 18:43:23 +07:00
|
|
|
|
2015-12-29 12:56:03 +07:00
|
|
|
if (clocks == NULL)
|
2015-12-07 17:44:23 +07:00
|
|
|
return -EINVAL;
|
|
|
|
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_lock(&hwmgr->smu_lock);
|
2017-02-20 16:07:36 +07:00
|
|
|
ret = phm_get_clock_by_type(hwmgr, type, clocks);
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_unlock(&hwmgr->smu_lock);
|
2017-02-20 16:07:36 +07:00
|
|
|
return ret;
|
2015-12-07 17:44:23 +07:00
|
|
|
}
|
|
|
|
|
2017-10-26 10:55:23 +07:00
|
|
|
static int pp_get_clock_by_type_with_latency(void *handle,
|
2017-03-07 01:13:48 +07:00
|
|
|
enum amd_pp_clock_type type,
|
|
|
|
struct pp_clock_levels_with_latency *clocks)
|
|
|
|
{
|
2018-03-12 18:52:23 +07:00
|
|
|
struct pp_hwmgr *hwmgr = handle;
|
2017-03-07 01:13:48 +07:00
|
|
|
int ret = 0;
|
|
|
|
|
2018-03-22 13:52:35 +07:00
|
|
|
if (!hwmgr || !hwmgr->pm_en ||!clocks)
|
2017-03-07 01:13:48 +07:00
|
|
|
return -EINVAL;
|
|
|
|
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_lock(&hwmgr->smu_lock);
|
2017-03-07 01:13:48 +07:00
|
|
|
ret = phm_get_clock_by_type_with_latency(hwmgr, type, clocks);
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_unlock(&hwmgr->smu_lock);
|
2017-03-07 01:13:48 +07:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2017-10-26 10:55:23 +07:00
|
|
|
static int pp_get_clock_by_type_with_voltage(void *handle,
|
2017-03-07 01:13:48 +07:00
|
|
|
enum amd_pp_clock_type type,
|
|
|
|
struct pp_clock_levels_with_voltage *clocks)
|
|
|
|
{
|
2018-03-12 18:52:23 +07:00
|
|
|
struct pp_hwmgr *hwmgr = handle;
|
2017-03-07 01:13:48 +07:00
|
|
|
int ret = 0;
|
|
|
|
|
2018-03-22 13:52:35 +07:00
|
|
|
if (!hwmgr || !hwmgr->pm_en ||!clocks)
|
2017-03-07 01:13:48 +07:00
|
|
|
return -EINVAL;
|
|
|
|
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_lock(&hwmgr->smu_lock);
|
2017-03-07 01:13:48 +07:00
|
|
|
|
|
|
|
ret = phm_get_clock_by_type_with_voltage(hwmgr, type, clocks);
|
|
|
|
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_unlock(&hwmgr->smu_lock);
|
2017-03-07 01:13:48 +07:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2017-10-26 10:55:23 +07:00
|
|
|
static int pp_set_watermarks_for_clocks_ranges(void *handle,
|
2018-06-22 17:26:52 +07:00
|
|
|
void *clock_ranges)
|
2017-03-07 01:13:48 +07:00
|
|
|
{
|
2018-03-12 18:52:23 +07:00
|
|
|
struct pp_hwmgr *hwmgr = handle;
|
2017-03-07 01:13:48 +07:00
|
|
|
int ret = 0;
|
|
|
|
|
2018-06-22 17:26:52 +07:00
|
|
|
if (!hwmgr || !hwmgr->pm_en || !clock_ranges)
|
2017-03-07 01:13:48 +07:00
|
|
|
return -EINVAL;
|
|
|
|
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_lock(&hwmgr->smu_lock);
|
2017-03-07 01:13:48 +07:00
|
|
|
ret = phm_set_watermarks_for_clocks_ranges(hwmgr,
|
2018-06-22 17:26:52 +07:00
|
|
|
clock_ranges);
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_unlock(&hwmgr->smu_lock);
|
2017-03-07 01:13:48 +07:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2017-10-26 10:55:23 +07:00
|
|
|
static int pp_display_clock_voltage_request(void *handle,
|
2017-03-07 01:13:48 +07:00
|
|
|
struct pp_display_clock_request *clock)
|
|
|
|
{
|
2018-03-12 18:52:23 +07:00
|
|
|
struct pp_hwmgr *hwmgr = handle;
|
2017-03-07 01:13:48 +07:00
|
|
|
int ret = 0;
|
|
|
|
|
2018-03-22 13:52:35 +07:00
|
|
|
if (!hwmgr || !hwmgr->pm_en ||!clock)
|
2017-03-07 01:13:48 +07:00
|
|
|
return -EINVAL;
|
|
|
|
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_lock(&hwmgr->smu_lock);
|
2017-03-07 01:13:48 +07:00
|
|
|
ret = phm_display_clock_voltage_request(hwmgr, clock);
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_unlock(&hwmgr->smu_lock);
|
2017-03-07 01:13:48 +07:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2017-10-26 10:55:23 +07:00
|
|
|
static int pp_get_display_mode_validation_clocks(void *handle,
|
2015-12-14 22:51:39 +07:00
|
|
|
struct amd_pp_simple_clock_info *clocks)
|
2015-12-07 17:44:23 +07:00
|
|
|
{
|
2018-03-12 18:52:23 +07:00
|
|
|
struct pp_hwmgr *hwmgr = handle;
|
2016-12-28 18:43:23 +07:00
|
|
|
int ret = 0;
|
2015-12-07 17:44:23 +07:00
|
|
|
|
2018-03-22 13:52:35 +07:00
|
|
|
if (!hwmgr || !hwmgr->pm_en ||!clocks)
|
2016-12-28 18:43:23 +07:00
|
|
|
return -EINVAL;
|
2016-10-27 14:29:57 +07:00
|
|
|
|
2018-07-17 17:31:50 +07:00
|
|
|
clocks->level = PP_DAL_POWERLEVEL_7;
|
|
|
|
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_lock(&hwmgr->smu_lock);
|
2017-02-20 16:07:36 +07:00
|
|
|
|
2015-12-07 17:44:23 +07:00
|
|
|
if (phm_cap_enabled(hwmgr->platform_descriptor.platformCaps, PHM_PlatformCaps_DynamicPatchPowerState))
|
2016-12-28 18:43:23 +07:00
|
|
|
ret = phm_get_max_high_clocks(hwmgr, clocks);
|
2015-12-07 17:44:23 +07:00
|
|
|
|
2018-03-12 18:52:23 +07:00
|
|
|
mutex_unlock(&hwmgr->smu_lock);
|
2016-12-28 18:43:23 +07:00
|
|
|
return ret;
|
2015-12-07 17:44:23 +07:00
|
|
|
}
|
|
|
|
|
2018-06-05 09:07:53 +07:00
|
|
|
static int pp_dpm_powergate_mmhub(void *handle)
|
2018-02-07 02:38:38 +07:00
|
|
|
{
|
2018-03-12 18:52:23 +07:00
|
|
|
struct pp_hwmgr *hwmgr = handle;
|
2018-02-07 02:38:38 +07:00
|
|
|
|
2018-03-22 13:52:35 +07:00
|
|
|
if (!hwmgr || !hwmgr->pm_en)
|
|
|
|
return -EINVAL;
|
2018-02-07 02:38:38 +07:00
|
|
|
|
2018-06-05 09:07:53 +07:00
|
|
|
if (hwmgr->hwmgr_func->powergate_mmhub == NULL) {
|
2018-11-15 20:40:29 +07:00
|
|
|
pr_info_ratelimited("%s was not implemented.\n", __func__);
|
2018-02-07 02:38:38 +07:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-06-05 09:07:53 +07:00
|
|
|
return hwmgr->hwmgr_func->powergate_mmhub(hwmgr);
|
2018-02-07 02:38:38 +07:00
|
|
|
}
|
|
|
|
|
2018-06-14 12:07:19 +07:00
|
|
|
static int pp_dpm_powergate_gfx(void *handle, bool gate)
|
|
|
|
{
|
|
|
|
struct pp_hwmgr *hwmgr = handle;
|
|
|
|
|
|
|
|
if (!hwmgr || !hwmgr->pm_en)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (hwmgr->hwmgr_func->powergate_gfx == NULL) {
|
2018-11-15 20:40:29 +07:00
|
|
|
pr_info_ratelimited("%s was not implemented.\n", __func__);
|
2018-06-14 12:07:19 +07:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return hwmgr->hwmgr_func->powergate_gfx(hwmgr, gate);
|
|
|
|
}
|
|
|
|
|
2018-07-19 12:49:07 +07:00
|
|
|
static void pp_dpm_powergate_acp(void *handle, bool gate)
|
|
|
|
{
|
|
|
|
struct pp_hwmgr *hwmgr = handle;
|
|
|
|
|
|
|
|
if (!hwmgr || !hwmgr->pm_en)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (hwmgr->hwmgr_func->powergate_acp == NULL) {
|
2018-11-15 20:40:29 +07:00
|
|
|
pr_info_ratelimited("%s was not implemented.\n", __func__);
|
2018-07-19 12:49:07 +07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
hwmgr->hwmgr_func->powergate_acp(hwmgr, gate);
|
|
|
|
}
|
|
|
|
|
2018-09-25 18:45:46 +07:00
|
|
|
static void pp_dpm_powergate_sdma(void *handle, bool gate)
|
|
|
|
{
|
|
|
|
struct pp_hwmgr *hwmgr = handle;
|
|
|
|
|
|
|
|
if (!hwmgr)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (hwmgr->hwmgr_func->powergate_sdma == NULL) {
|
2018-11-15 20:40:29 +07:00
|
|
|
pr_info_ratelimited("%s was not implemented.\n", __func__);
|
2018-09-25 18:45:46 +07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
hwmgr->hwmgr_func->powergate_sdma(hwmgr, gate);
|
|
|
|
}
|
|
|
|
|
2018-06-05 12:06:11 +07:00
|
|
|
static int pp_set_powergating_by_smu(void *handle,
|
|
|
|
uint32_t block_type, bool gate)
|
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
switch (block_type) {
|
|
|
|
case AMD_IP_BLOCK_TYPE_UVD:
|
|
|
|
case AMD_IP_BLOCK_TYPE_VCN:
|
|
|
|
pp_dpm_powergate_uvd(handle, gate);
|
|
|
|
break;
|
|
|
|
case AMD_IP_BLOCK_TYPE_VCE:
|
|
|
|
pp_dpm_powergate_vce(handle, gate);
|
|
|
|
break;
|
|
|
|
case AMD_IP_BLOCK_TYPE_GMC:
|
|
|
|
pp_dpm_powergate_mmhub(handle);
|
|
|
|
break;
|
|
|
|
case AMD_IP_BLOCK_TYPE_GFX:
|
2018-06-14 12:07:19 +07:00
|
|
|
ret = pp_dpm_powergate_gfx(handle, gate);
|
2018-06-05 12:06:11 +07:00
|
|
|
break;
|
2018-07-19 12:49:07 +07:00
|
|
|
case AMD_IP_BLOCK_TYPE_ACP:
|
|
|
|
pp_dpm_powergate_acp(handle, gate);
|
|
|
|
break;
|
2018-09-25 18:45:46 +07:00
|
|
|
case AMD_IP_BLOCK_TYPE_SDMA:
|
|
|
|
pp_dpm_powergate_sdma(handle, gate);
|
|
|
|
break;
|
2018-06-05 12:06:11 +07:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2018-06-22 13:12:59 +07:00
|
|
|
static int pp_notify_smu_enable_pwe(void *handle)
|
|
|
|
{
|
|
|
|
struct pp_hwmgr *hwmgr = handle;
|
|
|
|
|
|
|
|
if (!hwmgr || !hwmgr->pm_en)
|
2018-07-11 00:11:08 +07:00
|
|
|
return -EINVAL;
|
2018-06-22 13:12:59 +07:00
|
|
|
|
|
|
|
if (hwmgr->hwmgr_func->smus_notify_pwe == NULL) {
|
2018-11-15 20:40:29 +07:00
|
|
|
pr_info_ratelimited("%s was not implemented.\n", __func__);
|
2018-06-22 13:12:59 +07:00
|
|
|
return -EINVAL;;
|
|
|
|
}
|
|
|
|
|
|
|
|
mutex_lock(&hwmgr->smu_lock);
|
|
|
|
hwmgr->hwmgr_func->smus_notify_pwe(hwmgr);
|
|
|
|
mutex_unlock(&hwmgr->smu_lock);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-09-27 12:43:16 +07:00
|
|
|
static int pp_enable_mgpu_fan_boost(void *handle)
|
|
|
|
{
|
|
|
|
struct pp_hwmgr *hwmgr = handle;
|
|
|
|
|
2018-10-31 13:15:04 +07:00
|
|
|
if (!hwmgr)
|
2018-09-27 12:43:16 +07:00
|
|
|
return -EINVAL;
|
|
|
|
|
2018-10-31 13:15:04 +07:00
|
|
|
if (!hwmgr->pm_en ||
|
|
|
|
hwmgr->hwmgr_func->enable_mgpu_fan_boost == NULL)
|
2018-09-27 12:43:16 +07:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
mutex_lock(&hwmgr->smu_lock);
|
|
|
|
hwmgr->hwmgr_func->enable_mgpu_fan_boost(hwmgr);
|
|
|
|
mutex_unlock(&hwmgr->smu_lock);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-03-12 18:52:23 +07:00
|
|
|
static const struct amd_pm_funcs pp_dpm_funcs = {
|
2017-10-26 10:55:23 +07:00
|
|
|
.load_firmware = pp_dpm_load_fw,
|
|
|
|
.wait_for_fw_loading_complete = pp_dpm_fw_loading_complete,
|
|
|
|
.force_performance_level = pp_dpm_force_performance_level,
|
|
|
|
.get_performance_level = pp_dpm_get_performance_level,
|
|
|
|
.get_current_power_state = pp_dpm_get_current_power_state,
|
|
|
|
.dispatch_tasks = pp_dpm_dispatch_tasks,
|
|
|
|
.set_fan_control_mode = pp_dpm_set_fan_control_mode,
|
|
|
|
.get_fan_control_mode = pp_dpm_get_fan_control_mode,
|
|
|
|
.set_fan_speed_percent = pp_dpm_set_fan_speed_percent,
|
|
|
|
.get_fan_speed_percent = pp_dpm_get_fan_speed_percent,
|
|
|
|
.get_fan_speed_rpm = pp_dpm_get_fan_speed_rpm,
|
2018-09-20 13:30:55 +07:00
|
|
|
.set_fan_speed_rpm = pp_dpm_set_fan_speed_rpm,
|
2017-10-26 10:55:23 +07:00
|
|
|
.get_pp_num_states = pp_dpm_get_pp_num_states,
|
|
|
|
.get_pp_table = pp_dpm_get_pp_table,
|
|
|
|
.set_pp_table = pp_dpm_set_pp_table,
|
|
|
|
.force_clock_level = pp_dpm_force_clock_level,
|
|
|
|
.print_clock_levels = pp_dpm_print_clock_levels,
|
|
|
|
.get_sclk_od = pp_dpm_get_sclk_od,
|
|
|
|
.set_sclk_od = pp_dpm_set_sclk_od,
|
|
|
|
.get_mclk_od = pp_dpm_get_mclk_od,
|
|
|
|
.set_mclk_od = pp_dpm_set_mclk_od,
|
|
|
|
.read_sensor = pp_dpm_read_sensor,
|
|
|
|
.get_vce_clock_state = pp_dpm_get_vce_clock_state,
|
|
|
|
.switch_power_profile = pp_dpm_switch_power_profile,
|
|
|
|
.set_clockgating_by_smu = pp_set_clockgating_by_smu,
|
2018-06-05 12:06:11 +07:00
|
|
|
.set_powergating_by_smu = pp_set_powergating_by_smu,
|
2018-01-10 17:48:06 +07:00
|
|
|
.get_power_profile_mode = pp_get_power_profile_mode,
|
|
|
|
.set_power_profile_mode = pp_set_power_profile_mode,
|
2018-01-16 17:35:15 +07:00
|
|
|
.odn_edit_dpm_table = pp_odn_edit_dpm_table,
|
2018-01-29 17:04:18 +07:00
|
|
|
.set_power_limit = pp_set_power_limit,
|
|
|
|
.get_power_limit = pp_get_power_limit,
|
2017-10-26 10:55:23 +07:00
|
|
|
/* export to DC */
|
|
|
|
.get_sclk = pp_dpm_get_sclk,
|
|
|
|
.get_mclk = pp_dpm_get_mclk,
|
|
|
|
.display_configuration_change = pp_display_configuration_change,
|
|
|
|
.get_display_power_level = pp_get_display_power_level,
|
|
|
|
.get_current_clocks = pp_get_current_clocks,
|
|
|
|
.get_clock_by_type = pp_get_clock_by_type,
|
|
|
|
.get_clock_by_type_with_latency = pp_get_clock_by_type_with_latency,
|
|
|
|
.get_clock_by_type_with_voltage = pp_get_clock_by_type_with_voltage,
|
|
|
|
.set_watermarks_for_clocks_ranges = pp_set_watermarks_for_clocks_ranges,
|
|
|
|
.display_clock_voltage_request = pp_display_clock_voltage_request,
|
|
|
|
.get_display_mode_validation_clocks = pp_get_display_mode_validation_clocks,
|
2018-06-22 13:12:59 +07:00
|
|
|
.notify_smu_enable_pwe = pp_notify_smu_enable_pwe,
|
2018-09-27 12:43:16 +07:00
|
|
|
.enable_mgpu_fan_boost = pp_enable_mgpu_fan_boost,
|
2017-10-26 10:55:23 +07:00
|
|
|
};
|