1 /* SPDX-License-Identifier: MIT */ 2 /* 3 * Copyright © 2022 Intel Corporation 4 */ 5 6 #ifndef _XE_GUC_PC_H_ 7 #define _XE_GUC_PC_H_ 8 9 #include <linux/types.h> 10 11 struct xe_guc_pc; 12 enum slpc_gucrc_mode; 13 14 int xe_guc_pc_init(struct xe_guc_pc *pc); 15 int xe_guc_pc_start(struct xe_guc_pc *pc); 16 int xe_guc_pc_stop(struct xe_guc_pc *pc); 17 int xe_guc_pc_gucrc_disable(struct xe_guc_pc *pc); 18 int xe_guc_pc_override_gucrc_mode(struct xe_guc_pc *pc, enum slpc_gucrc_mode mode); 19 int xe_guc_pc_unset_gucrc_mode(struct xe_guc_pc *pc); 20 21 u32 xe_guc_pc_get_act_freq(struct xe_guc_pc *pc); 22 int xe_guc_pc_get_cur_freq(struct xe_guc_pc *pc, u32 *freq); 23 u32 xe_guc_pc_get_rp0_freq(struct xe_guc_pc *pc); 24 u32 xe_guc_pc_get_rpe_freq(struct xe_guc_pc *pc); 25 u32 xe_guc_pc_get_rpn_freq(struct xe_guc_pc *pc); 26 int xe_guc_pc_get_min_freq(struct xe_guc_pc *pc, u32 *freq); 27 int xe_guc_pc_set_min_freq(struct xe_guc_pc *pc, u32 freq); 28 int xe_guc_pc_get_max_freq(struct xe_guc_pc *pc, u32 *freq); 29 int xe_guc_pc_set_max_freq(struct xe_guc_pc *pc, u32 freq); 30 31 enum xe_gt_idle_state xe_guc_pc_c_status(struct xe_guc_pc *pc); 32 u64 xe_guc_pc_rc6_residency(struct xe_guc_pc *pc); 33 u64 xe_guc_pc_mc6_residency(struct xe_guc_pc *pc); 34 void xe_guc_pc_init_early(struct xe_guc_pc *pc); 35 int xe_guc_pc_restore_stashed_freq(struct xe_guc_pc *pc); 36 void xe_guc_pc_raise_unslice(struct xe_guc_pc *pc); 37 38 #endif /* _XE_GUC_PC_H_ */ 39