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