drm/amd/display: Introduce pp-smu raven functions
DM powerplay calls for DCN10 allowing to bypass PPLib and call directly to the SMU functions. Signed-off-by: Mikita Lipski <mikita.lipski@amd.com> Reviewed-by: Tony Cheng <Tony.Cheng@amd.com> Acked-by: Harry Wentland <harry.wentland@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
30f0ea6d09
commit
92276a06f9
|
@ -34,6 +34,11 @@
|
||||||
#include "amdgpu_dm.h"
|
#include "amdgpu_dm.h"
|
||||||
#include "amdgpu_dm_irq.h"
|
#include "amdgpu_dm_irq.h"
|
||||||
#include "amdgpu_pm.h"
|
#include "amdgpu_pm.h"
|
||||||
|
#include "dm_pp_smu.h"
|
||||||
|
#include "../../powerplay/inc/hwmgr.h"
|
||||||
|
#include "../../powerplay/hwmgr/smu10_hwmgr.h"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
unsigned long long dm_get_elapse_time_in_ns(struct dc_context *ctx,
|
unsigned long long dm_get_elapse_time_in_ns(struct dc_context *ctx,
|
||||||
unsigned long long current_time_stamp,
|
unsigned long long current_time_stamp,
|
||||||
|
@ -469,9 +474,90 @@ bool dm_pp_get_static_clocks(
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void pp_rv_set_display_requirement(struct pp_smu *pp,
|
||||||
|
struct pp_smu_display_requirement_rv *req)
|
||||||
|
{
|
||||||
|
struct amdgpu_device *adev = pp->ctx->driver_context;
|
||||||
|
struct pp_hwmgr *hwmgr = adev->powerplay.pp_handle;
|
||||||
|
int ret = 0;
|
||||||
|
if (hwmgr->hwmgr_func->set_deep_sleep_dcefclk)
|
||||||
|
ret = hwmgr->hwmgr_func->set_deep_sleep_dcefclk(hwmgr, req->hard_min_dcefclk_khz/10);
|
||||||
|
if (hwmgr->hwmgr_func->set_active_display_count)
|
||||||
|
ret = hwmgr->hwmgr_func->set_active_display_count(hwmgr, req->display_count);
|
||||||
|
|
||||||
|
//store_cc6 is not yet implemented in SMU level
|
||||||
|
}
|
||||||
|
|
||||||
|
void pp_rv_set_wm_ranges(struct pp_smu *pp,
|
||||||
|
struct pp_smu_wm_range_sets *ranges)
|
||||||
|
{
|
||||||
|
struct amdgpu_device *adev = pp->ctx->driver_context;
|
||||||
|
struct pp_hwmgr *hwmgr = adev->powerplay.pp_handle;
|
||||||
|
struct pp_wm_sets_with_clock_ranges_soc15 ranges_soc15 = {0};
|
||||||
|
int i = 0;
|
||||||
|
|
||||||
|
if (!hwmgr->hwmgr_func->set_watermarks_for_clocks_ranges ||
|
||||||
|
!pp || !ranges)
|
||||||
|
return;
|
||||||
|
|
||||||
|
//not entirely sure if thats a correct assignment
|
||||||
|
ranges_soc15.num_wm_sets_dmif = ranges->num_reader_wm_sets;
|
||||||
|
ranges_soc15.num_wm_sets_mcif = ranges->num_writer_wm_sets;
|
||||||
|
|
||||||
|
for (i = 0; i < ranges_soc15.num_wm_sets_dmif; i++) {
|
||||||
|
if (ranges->reader_wm_sets[i].wm_inst > 3)
|
||||||
|
ranges_soc15.wm_sets_dmif[i].wm_set_id = DC_WM_SET_A;
|
||||||
|
else
|
||||||
|
ranges_soc15.wm_sets_dmif[i].wm_set_id =
|
||||||
|
ranges->reader_wm_sets[i].wm_inst;
|
||||||
|
ranges_soc15.wm_sets_dmif[i].wm_max_dcefclk_in_khz =
|
||||||
|
ranges->reader_wm_sets[i].max_drain_clk_khz;
|
||||||
|
ranges_soc15.wm_sets_dmif[i].wm_min_dcefclk_in_khz =
|
||||||
|
ranges->reader_wm_sets[i].min_drain_clk_khz;
|
||||||
|
ranges_soc15.wm_sets_dmif[i].wm_max_memclk_in_khz =
|
||||||
|
ranges->reader_wm_sets[i].max_fill_clk_khz;
|
||||||
|
ranges_soc15.wm_sets_dmif[i].wm_min_memclk_in_khz =
|
||||||
|
ranges->reader_wm_sets[i].min_fill_clk_khz;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (i = 0; i < ranges_soc15.num_wm_sets_mcif; i++) {
|
||||||
|
if (ranges->writer_wm_sets[i].wm_inst > 3)
|
||||||
|
ranges_soc15.wm_sets_dmif[i].wm_set_id = DC_WM_SET_A;
|
||||||
|
else
|
||||||
|
ranges_soc15.wm_sets_mcif[i].wm_set_id =
|
||||||
|
ranges->writer_wm_sets[i].wm_inst;
|
||||||
|
ranges_soc15.wm_sets_mcif[i].wm_max_socclk_in_khz =
|
||||||
|
ranges->writer_wm_sets[i].max_fill_clk_khz;
|
||||||
|
ranges_soc15.wm_sets_mcif[i].wm_min_socclk_in_khz =
|
||||||
|
ranges->writer_wm_sets[i].min_fill_clk_khz;
|
||||||
|
ranges_soc15.wm_sets_mcif[i].wm_max_memclk_in_khz =
|
||||||
|
ranges->writer_wm_sets[i].max_fill_clk_khz;
|
||||||
|
ranges_soc15.wm_sets_mcif[i].wm_min_memclk_in_khz =
|
||||||
|
ranges->writer_wm_sets[i].min_fill_clk_khz;
|
||||||
|
}
|
||||||
|
|
||||||
|
hwmgr->hwmgr_func->set_watermarks_for_clocks_ranges(hwmgr, &ranges_soc15);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void pp_rv_set_pme_wa_enable(struct pp_smu *pp)
|
||||||
|
{
|
||||||
|
struct amdgpu_device *adev = pp->ctx->driver_context;
|
||||||
|
struct pp_hwmgr *hwmgr = adev->powerplay.pp_handle;
|
||||||
|
|
||||||
|
if (hwmgr->hwmgr_func->smus_notify_pwe)
|
||||||
|
hwmgr->hwmgr_func->smus_notify_pwe(hwmgr);
|
||||||
|
}
|
||||||
|
|
||||||
void dm_pp_get_funcs_rv(
|
void dm_pp_get_funcs_rv(
|
||||||
struct dc_context *ctx,
|
struct dc_context *ctx,
|
||||||
struct pp_smu_funcs_rv *funcs)
|
struct pp_smu_funcs_rv *funcs)
|
||||||
{}
|
{
|
||||||
|
funcs->pp_smu.ctx = ctx;
|
||||||
|
funcs->set_display_requirement = pp_rv_set_display_requirement;
|
||||||
|
funcs->set_wm_ranges = pp_rv_set_wm_ranges;
|
||||||
|
funcs->set_pme_wa_enable = pp_rv_set_pme_wa_enable;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**** end of power component interfaces ****/
|
/**** end of power component interfaces ****/
|
||||||
|
|
|
@ -1358,8 +1358,8 @@ void dcn_bw_notify_pplib_of_wm_ranges(struct dc *dc)
|
||||||
/* SOCCLK does not affect anytihng but writeback for DCN so for now we dont
|
/* SOCCLK does not affect anytihng but writeback for DCN so for now we dont
|
||||||
* care what the value is, hence min to overdrive level
|
* care what the value is, hence min to overdrive level
|
||||||
*/
|
*/
|
||||||
ranges.num_reader_wm_sets = WM_COUNT;
|
ranges.num_reader_wm_sets = WM_SET_COUNT;
|
||||||
ranges.num_writer_wm_sets = WM_COUNT;
|
ranges.num_writer_wm_sets = WM_SET_COUNT;
|
||||||
ranges.reader_wm_sets[0].wm_inst = WM_A;
|
ranges.reader_wm_sets[0].wm_inst = WM_A;
|
||||||
ranges.reader_wm_sets[0].min_drain_clk_khz = min_dcfclk_khz;
|
ranges.reader_wm_sets[0].min_drain_clk_khz = min_dcfclk_khz;
|
||||||
ranges.reader_wm_sets[0].max_drain_clk_khz = max_dcfclk_khz;
|
ranges.reader_wm_sets[0].max_drain_clk_khz = max_dcfclk_khz;
|
||||||
|
|
|
@ -40,7 +40,7 @@ enum wm_set_id {
|
||||||
WM_B,
|
WM_B,
|
||||||
WM_C,
|
WM_C,
|
||||||
WM_D,
|
WM_D,
|
||||||
WM_COUNT,
|
WM_SET_COUNT,
|
||||||
};
|
};
|
||||||
|
|
||||||
struct pp_smu_wm_set_range {
|
struct pp_smu_wm_set_range {
|
||||||
|
@ -53,10 +53,10 @@ struct pp_smu_wm_set_range {
|
||||||
|
|
||||||
struct pp_smu_wm_range_sets {
|
struct pp_smu_wm_range_sets {
|
||||||
uint32_t num_reader_wm_sets;
|
uint32_t num_reader_wm_sets;
|
||||||
struct pp_smu_wm_set_range reader_wm_sets[WM_COUNT];
|
struct pp_smu_wm_set_range reader_wm_sets[WM_SET_COUNT];
|
||||||
|
|
||||||
uint32_t num_writer_wm_sets;
|
uint32_t num_writer_wm_sets;
|
||||||
struct pp_smu_wm_set_range writer_wm_sets[WM_COUNT];
|
struct pp_smu_wm_set_range writer_wm_sets[WM_SET_COUNT];
|
||||||
};
|
};
|
||||||
|
|
||||||
struct pp_smu_display_requirement_rv {
|
struct pp_smu_display_requirement_rv {
|
||||||
|
|
Loading…
Reference in New Issue