1 /* 2 * Copyright (c) 2020 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 15 #include <reg/reg_access.h> 16 #include <reg/reg_def.h> 17 #include <soc_dt.h> 18 #include <soc_clock.h> 19 #include <soc_pins.h> 20 #include <soc_power.h> 21 22 #endif /* _NUVOTON_NPCX_SOC_H_ */ 23