1 /*
2  * Copyright (c) 2016 Linaro Limited.
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #ifndef _SOC_POWER_H_
8 #define _SOC_POWER_H_
9 
10 #ifdef __cplusplus
11 extern "C" {
12 #endif
13 
14 /**
15  * @brief Setup various clocks and wakeup sources in the SoC.
16  *
17  * Configures the clocks and wakeup sources in the SoC.
18  */
19 void soc_power_init(void);
20 
21 #ifdef __cplusplus
22 }
23 #endif
24 
25 #endif /* _SOC_POWER_H_ */
26