diff options
author | 2015-09-30 13:28:49 +0800 | |
---|---|---|
committer | 2015-12-21 16:42:22 -0500 | |
commit | b1132013ce4c8263e1692841223ff022cf8bf18f (patch) | |
tree | a0b44a8e55190e41bc478b8a0032b8ba815eccb6 | |
parent | drm/amdgpu/powerplay: add some definition for other ip block to update cg pg. (diff) | |
download | wireguard-linux-b1132013ce4c8263e1692841223ff022cf8bf18f.tar.xz wireguard-linux-b1132013ce4c8263e1692841223ff022cf8bf18f.zip |
drm/amd/powerplay: add new function point in hwmgr_func for CG/PG.
Add callbacks interface for clock and powergating.
Signed-off-by: Rex Zhu <Rex.Zhu@amd.com>
Reviewed-by: Jammy Zhou <Jammy.Zhou@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
-rw-r--r-- | drivers/gpu/drm/amd/powerplay/inc/hwmgr.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/powerplay/inc/hwmgr.h b/drivers/gpu/drm/amd/powerplay/inc/hwmgr.h index 2370a72a99cd..f90a8b61e8af 100644 --- a/drivers/gpu/drm/amd/powerplay/inc/hwmgr.h +++ b/drivers/gpu/drm/amd/powerplay/inc/hwmgr.h @@ -288,6 +288,9 @@ struct pp_hwmgr_func { int (*enable_clock_power_gating)(struct pp_hwmgr *hwmgr); int (*notify_smc_display_config_after_ps_adjustment)(struct pp_hwmgr *hwmgr); int (*display_config_changed)(struct pp_hwmgr *hwmgr); + int (*disable_clock_power_gating)(struct pp_hwmgr *hwmgr); + int (*update_clock_gatings)(struct pp_hwmgr *hwmgr, + const uint32_t *msg_id); }; struct pp_table_func { |