1 /*
2  * Copyright (c) 2020 Rafael Dias Menezes <rdmeneze@gmail.com>
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 /**
8  * @file
9  * @brief Board configuration macros for the efm32pg1b soc
10  *
11  */
12 
13 #ifndef _SOC__H_
14 #define _SOC__H_
15 
16 #include <zephyr/sys/util.h>
17 
18 #ifndef _ASMLANGUAGE
19 
20 #include <em_bus.h>
21 #include <em_common.h>
22 
23 
24 #include "soc_pinmap.h"
25 #include "../common/soc_gpio.h"
26 
27 #endif /* !_ASMLANGUAGE */
28 
29 #endif /* _SOC__H_ */
30