1 /*
2  * Copyright 2024 NXP
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #ifndef _SOC__H_
8 #define _SOC__H_
9 
10 #include <zephyr/sys/util.h>
11 #include <fsl_port.h>
12 
13 #define UART0_CLK_SRC kCLOCK_CoreSysClk
14 
15 #define PORT_MUX_GPIO kPORT_MuxAsGpio /* GPIO setting for the Port Mux Register */
16 
17 #ifndef _ASMLANGUAGE
18 
19 #include <fsl_common.h>
20 
21 #endif /* !_ASMLANGUAGE */
22 
23 #endif /* _SOC__H_ */
24