1 /* 2 * Copyright (c) 2019 Intel Corporation 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #ifndef __MEC_SOC_H 8 #define __MEC_SOC_H 9 10 #define SYSCLK_DEFAULT_IOSC_HZ MHZ(48) 11 12 #ifndef _ASMLANGUAGE 13 14 #include "MEC1501hsz.h" 15 #include "regaccess.h" 16 17 /* common SoC API */ 18 #include "../common/soc_dt.h" 19 #include "../common/soc_gpio.h" 20 #include "../common/soc_pcr.h" 21 #include "../common/soc_pins.h" 22 #include "../common/soc_espi_channels.h" 23 #include "soc_espi_saf_v1.h" 24 25 /* common peripheral register defines */ 26 #include "../common/reg/mec_gpio.h" 27 28 #endif 29 30 #endif 31