1 /* 2 * Copyright 2024 NXP 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 #ifndef _FSL_CLOCK_H_ 8 #define _FSL_CLOCK_H_ 9 10 /* Definition for delay API in clock driver, users can redefine it to the real application. */ 11 #ifndef SDK_DEVICE_MAXIMUM_CPU_CLOCK_FREQUENCY 12 #define SDK_DEVICE_MAXIMUM_CPU_CLOCK_FREQUENCY \ 13 (800000000UL) /* When using Overdrive Voltage, the maximum frequency of cm7 is 800 MHz */ 14 #endif 15 16 #endif 17