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