1 /*
2  * Copyright (c) 2019 SEAL AG
3  * Copyright 2023 NXP
4  *
5  * SPDX-License-Identifier: Apache-2.0
6  */
7 
8 #ifndef _SOC__H_
9 #define _SOC__H_
10 
11 #include <zephyr/sys/util.h>
12 #include <fsl_port.h>
13 
14 #ifdef __cplusplus
15 extern "C" {
16 #endif
17 
18 #ifndef _ASMLANGUAGE
19 
20 #include <fsl_common.h>
21 
22 
23 #endif /* !_ASMLANGUAGE */
24 
25 #ifdef __cplusplus
26 }
27 #endif
28 
29 /* address bases */
30 #define PERIPH_ADDR_BASE_WDOG 0x40052000 /* Watchdog Timer module */
31 
32 #define PORT_MUX_GPIO kPORT_MuxAsGpio /* GPIO setting for the Port Mux Register */
33 
34 #endif /* _SOC__H_ */
35