drm/amd/powerplay: add interface to get dal power level
This patch adds interface to get dal power level for display and in smu v11 didn't have this implementation. Signed-off-by: Huang Rui <ray.huang@amd.com> Reviewed-by: Kevin Wang <Kevin1.Wang@amd.com> Acked-by: Alex Deucher <alexander.deucher@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
04885368cb
commit
98a64c15e0
@ -287,6 +287,8 @@ struct smu_funcs
|
||||
int (*display_clock_voltage_request)(struct smu_context *smu, struct
|
||||
pp_display_clock_request
|
||||
*clock_req);
|
||||
int (*get_dal_power_level)(struct smu_context *smu,
|
||||
struct amd_pp_simple_clock_info *clocks);
|
||||
};
|
||||
|
||||
#define smu_init_microcode(smu) \
|
||||
@ -398,6 +400,8 @@ struct smu_funcs
|
||||
((smu)->ppt_funcs->get_clock_by_type_with_voltage ? (smu)->ppt_funcs->get_clock_by_type_with_voltage((smu), (type), (clocks)) : 0)
|
||||
#define smu_display_clock_voltage_request(smu, clock_req) \
|
||||
((smu)->funcs->display_clock_voltage_request ? (smu)->funcs->display_clock_voltage_request((smu), (clock_req)) : 0)
|
||||
#define smu_get_dal_power_level(smu, clocks) \
|
||||
((smu)->funcs->get_dal_power_level ? (smu)->funcs->get_dal_power_level((smu), (clocks)) : 0)
|
||||
|
||||
|
||||
extern int smu_get_atom_data_table(struct smu_context *smu, uint32_t table,
|
||||
|
Loading…
x
Reference in New Issue
Block a user