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 12 #ifndef _ASMLANGUAGE 13 14 #include <fsl_common.h> 15 16 /* Add include for DTS generated information */ 17 #include <zephyr/devicetree.h> 18 19 #ifdef __cplusplus 20 extern "C" { 21 #endif 22 23 #ifdef CONFIG_MEMC_MCUX_FLEXSPI 24 uint32_t flexspi_clock_set_freq(uint32_t clock_name, uint32_t rate); 25 #endif 26 27 #ifdef __cplusplus 28 } 29 #endif 30 31 #endif /* !_ASMLANGUAGE */ 32 33 #endif /* _SOC__H_ */ 34