1 /*
2  * Copyright (C) 2015-2020 Alibaba Group Holding Limited
3  */
4 #ifndef __HAL_SLEEP_MCU_PD_H__
5 #define __HAL_SLEEP_MCU_PD_H__
6 
7 #ifdef __cplusplus
8 extern "C" {
9 #endif
10 
11 #include "plat_types.h"
12 
13 void hal_sleep_mcu_power_down(void);
14 
15 void hal_sleep_mcu_power_up(void);
16 
17 #ifdef __cplusplus
18 }
19 #endif
20 
21 #endif
22 
23