1 /*
2  * Copyright (c) 2024 Microchip Technology Inc.
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #ifndef __MEC5_SOC_H
8 #define __MEC5_SOC_H
9 
10 #define SYSCLK_DEFAULT_IOSC_HZ MHZ(96)
11 
12 #ifndef _ASMLANGUAGE
13 
14 #include "device_mec5.h"
15 
16 /* common SoC API */
17 #include "soc_dt.h"
18 #include "soc_espi_channels.h"
19 #include "soc_gpio.h"
20 #include "soc_pcr.h"
21 #include "soc_pins.h"
22 
23 #endif
24 
25 #endif
26