1 /*
2  * Copyright (c) 2021 Nuvoton Technology Corporation.
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #ifndef _NUVOTON_NPCX_SOC_H_
8 #define _NUVOTON_NPCX_SOC_H_
9 
10 /* CMSIS required definitions */
11 #define __FPU_PRESENT  CONFIG_CPU_HAS_FPU
12 #define __MPU_PRESENT  CONFIG_CPU_HAS_ARM_MPU
13 
14 /* Add include for DTS generated information */
15 #include <devicetree.h>
16 
17 #include <reg/reg_access.h>
18 #include <reg/reg_def.h>
19 #include <soc_dt.h>
20 #include <soc_clock.h>
21 #include <soc_pins.h>
22 #include <soc_power.h>
23 
24 #endif /* _NUVOTON_NPCX_SOC_H_ */
25