1 2 /* SPDX-License-Identifier: BSD-3-Clause */ 3 /* 4 * Copyright (c) 2020-2021 Rockchip Electronics Co., Ltd. 5 */ 6 7 #include "hal_conf.h" 8 9 #ifdef HAL_PMU_MODULE_ENABLED 10 11 /** @addtogroup RK_HAL_Driver 12 * @{ 13 */ 14 15 /** @addtogroup PD 16 * @{ 17 */ 18 19 #ifndef _HAL_PD_H_ 20 #define _HAL_PD_H_ 21 22 #include "hal_def.h" 23 24 /***************************** MACRO Definition ******************************/ 25 26 /***************************** Structure Definition **************************/ 27 28 /***************************** Function Declare ******************************/ 29 /** @defgroup PD_Public_Function_Declare Public Function Declare 30 * @{ 31 */ 32 33 HAL_Status HAL_PD_On(ePD_Id pd); 34 HAL_Status HAL_PD_Off(ePD_Id pd); 35 36 /** @} */ 37 38 #endif 39 40 /** @} */ 41 42 /** @} */ 43 44 #endif /* HAL_PMU_MODULE_ENABLED */ 45