drm/amd/powerplay: add two interfaces to set_active_display_count and store_cc6_data
This patch adds two interfaces to set_active_display_count and store_cc6_data, they won't be used for smu11, and just be the placeholders for future asic on display to smu interface. Signed-off-by: Huang Rui <ray.huang@amd.com> Reviewed-by: Evan Quan <evan.quan@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
e73cf10811
commit
44dd54ee40
|
@ -264,6 +264,10 @@ struct smu_funcs
|
|||
int (*read_sensor)(struct smu_context *smu, enum amd_pp_sensors sensor,
|
||||
void *data, uint32_t *size);
|
||||
int (*set_deep_sleep_dcefclk)(struct smu_context *smu, uint32_t clk);
|
||||
int (*set_active_display_count)(struct smu_context *smu, uint32_t count);
|
||||
int (*store_cc6_data)(struct smu_context *smu, uint32_t separation_time,
|
||||
bool cc6_disable, bool pstate_disable,
|
||||
bool pstate_switch_disable);
|
||||
};
|
||||
|
||||
#define smu_init_microcode(smu) \
|
||||
|
@ -361,6 +365,10 @@ struct smu_funcs
|
|||
((smu)->ppt_funcs? ((smu)->ppt_funcs->get_unallowed_feature_mask? (smu)->ppt_funcs->get_unallowed_feature_mask((smu), (feature_mask), (num)) : 0) : 0)
|
||||
#define smu_set_deep_sleep_dcefclk(smu, clk) \
|
||||
((smu)->funcs->set_deep_sleep_dcefclk ? (smu)->funcs->set_deep_sleep_dcefclk((smu), (clk)) : 0)
|
||||
#define smu_set_active_display_count(smu, count) \
|
||||
((smu)->funcs->set_active_display_count ? (smu)->funcs->set_active_display_count((smu), (count)) : 0)
|
||||
#define smu_store_cc6_data(smu, st, cc6_dis, pst_dis, pst_sw_dis) \
|
||||
((smu)->funcs->store_cc6_data ? (smu)->funcs->store_cc6_data((smu), (st), (cc6_dis), (pst_dis), (pst_sw_dis)) : 0)
|
||||
|
||||
extern int smu_get_atom_data_table(struct smu_context *smu, uint32_t table,
|
||||
uint16_t *size, uint8_t *frev, uint8_t *crev,
|
||||
|
|
Loading…
Reference in New Issue