1 /*
2  * Copyright (c) 2014-2015 Wind River Systems, Inc.
3  * Copyright (c) Thomas Burdick <thomas.burdick@gmail.com>
4  * Copyright 2023 NXP
5  *
6  * SPDX-License-Identifier: Apache-2.0
7  */
8 
9 /**
10  * @file
11  * @brief Board configuration macros for the fsl_frdm_k22f platform
12  *
13  * This header file is used to specify and describe board-level aspects for the
14  * 'fsl_frdm_k22f' platform.
15  */
16 
17 #ifndef _SOC__H_
18 #define _SOC__H_
19 
20 #include <zephyr/sys/util.h>
21 #include <fsl_port.h>
22 
23 #ifdef __cplusplus
24 extern "C" {
25 #endif
26 
27 /* address bases */
28 
29 #define PERIPH_ADDR_BASE_WDOG 0x40052000 /* Watchdog Timer module */
30 
31 #define PORT_MUX_GPIO kPORT_MuxAsGpio /* GPIO setting for the Port Mux Register */
32 
33 #ifndef _ASMLANGUAGE
34 
35 #include <fsl_common.h>
36 
37 #endif /* !_ASMLANGUAGE */
38 
39 #ifdef __cplusplus
40 }
41 #endif
42 
43 #endif /* _SOC__H_ */
44