6db4831e98
Android 14
70 lines
1.5 KiB
C
70 lines
1.5 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (c) 2020 MediaTek Inc.
|
|
*/
|
|
|
|
#ifndef __MMDVFS_PLAT_H__
|
|
#define __MMDVFS_PLAT_H__
|
|
|
|
#include "mmdvfs_pmqos.h"
|
|
|
|
#define MAX_PORT_COUNT 32
|
|
struct mm_larb_request {
|
|
struct list_head larb_list; /* To search master setting of larb */
|
|
bool larb_list_init;
|
|
u32 port_count;
|
|
u32 ratio[MAX_PORT_COUNT];
|
|
s32 total_bw_data;
|
|
s32 total_hrt_data;
|
|
s32 total_mix_limit;
|
|
s32 total_occupied;
|
|
u32 comm_port;
|
|
u32 channel;
|
|
bool is_max_ostd;
|
|
};
|
|
|
|
void mmdvfs_update_qos_sram(struct mm_larb_request larb_req[], u32 larb_update);
|
|
|
|
void mmdvfs_update_limit_config(enum mmdvfs_limit_source source,
|
|
u32 source_value, u32 *limit_value, u32 *limit_level);
|
|
|
|
bool mmdvfs_log_larb_mmp(s32 common_port_id, s32 larb_id);
|
|
|
|
#define DEFAULT_BW_UPDATE(bw_value) ((bw_value) * 1 / 2)
|
|
#define DEFAULT_LIMIT_UPDATE(bw_value) ((bw_value) * 7 / 10)
|
|
#define VENC_BW_UPDATE(bw_value) ((bw_value) * 7 / 10)
|
|
static inline u32 get_comp_value(u32 bw_value, u32 comp_type, bool is_bw)
|
|
{
|
|
if (comp_type == BW_COMP_DEFAULT) {
|
|
if (is_bw)
|
|
return DEFAULT_BW_UPDATE(bw_value);
|
|
else
|
|
return DEFAULT_LIMIT_UPDATE(bw_value);
|
|
} else if (comp_type == BW_COMP_VENC) {
|
|
if (is_bw)
|
|
return VENC_BW_UPDATE(bw_value);
|
|
else
|
|
return bw_value;
|
|
}
|
|
|
|
return bw_value;
|
|
}
|
|
|
|
u32 mmdvfs_get_ccu_smi_common_port(u32 master_id);
|
|
|
|
s32 get_ccu_hrt_bw(struct mm_larb_request larb_req[]);
|
|
|
|
s32 get_md_hrt_bw(void);
|
|
|
|
s32 emi_occ_ratio(void);
|
|
|
|
s32 emi_occ_ui_only(void);
|
|
|
|
s32 cam_occ_ratio(void);
|
|
|
|
s32 disp_occ_ratio(void);
|
|
|
|
s32 dram_write_weight(s32 val);
|
|
#endif /* __MMDVFS_PLAT_H__ */
|
|
|