kernel-brax3-ubuntu-touch/include/linux/soc/mediatek/mtk-lpm.h
erascape f319b992b1 kernel-5.15: Initial import brax3 UT kernel
* halium configs enabled

Signed-off-by: erascape <erascape@proton.me>
2025-09-23 15:17:10 +00:00

31 lines
857 B
C

/* SPDX-License-Identifier: GPL-2.0 */
/*
* Copyright (c) 2019 MediaTek Inc.
*/
#ifndef __MTK_LPM_H__
#define __MTK_LPM_H__
#include <linux/cpu_pm.h>
#include <linux/cpuidle.h>
#include <asm/cpuidle.h>
#define MTK_CPUIDLE_PM_NAME "mtk_cpuidle_pm"
struct mtk_cpuidle_op {
/*prompt to platform driver that cpu will enter idle state */
int (*cpuidle_prepare)(struct cpuidle_driver *drv, int index);
/*notify platform driver that cpu will leave idle state */
void (*cpuidle_resume)(struct cpuidle_driver *drv, int index);
};
/*
* Set cpuidle operator for lpm. If the operator have been set before the
* return value will be -EACCES. Must call mtk_lpm_drv_cpuidle_ops_clr()
* when the cpuidle operator need to set new cpuidle operator
*/
int mtk_lpm_drv_cpuidle_ops_set(struct mtk_cpuidle_op *op);
void mtk_lpm_drv_cpuidle_ops_clr(void);
#endif