1 /*
2  * @ : Copyright (c) 2021 Phytium Information Technology, Inc.
3  *
4  * SPDX-License-Identifier: Apache-2.0.
5  *
6  * @Date: 2021-04-21 10:43:59
7  * @LastEditTime: 2021-04-21 10:44:00
8  * @Description:  Description of file
9  * @Modify History:
10  * * * Ver   Who        Date         Changes
11  * * ----- ------     --------    --------------------------------------
12  */
13 
14 #ifndef FT_PSCI_H
15 #define FT_PSCI_H
16 
17 #ifdef __cplusplus
18 extern "C"
19 {
20 #endif
21 
22 #include "ft_types.h"
23 
24     void FPsci_CpuOn(s32 CpuIdMask, u32 BootAddr);
25     void FPsci_Reset(void);
26 
27 #ifdef __cplusplus
28 }
29 #endif
30 
31 #endif // !
32