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 #ifndef _ASMLANGUAGE
11 
12 #include <fsl_port.h>
13 #include <fsl_common.h>
14 
15 #define PORT_MUX_GPIO kPORT_MuxAlt0 /* GPIO setting for the Port Mux Register */
16 
17 #ifdef __cplusplus
18 extern "C" {
19 #endif
20 
21 int flexspi_clock_set_freq(uint32_t clock_name, uint32_t rate);
22 void flexspi_clock_safe_config(void);
23 
24 #ifdef __cplusplus
25 }
26 #endif
27 
28 #endif /* !_ASMLANGUAGE */
29 
30 #endif /* _SOC__H_ */
31