1 /*
2  * Copyright (c) 2019 Interay Solutions B.V.
3  * Copyright (c) 2019 Oane Kingma
4  *
5  * SPDX-License-Identifier: Apache-2.0
6  */
7 
8 /**
9  * @file
10  * @brief Board configuration macros for the efm32gg soc
11  *
12  */
13 
14 #ifndef _SOC__H_
15 #define _SOC__H_
16 
17 #include <zephyr/sys/util.h>
18 
19 #ifdef __cplusplus
20 extern "C" {
21 #endif
22 
23 #ifndef _ASMLANGUAGE
24 
25 #include <em_bus.h>
26 #include <em_common.h>
27 
28 
29 #include "soc_pinmap.h"
30 #include "../common/soc_gpio.h"
31 
32 #endif /* !_ASMLANGUAGE */
33 
34 #ifdef __cplusplus
35 }
36 #endif
37 
38 #endif /* _SOC__H_ */
39