| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159 |
- /*
- * Copyright 2017 NXP
- * All rights reserved.
- *
- * SPDX-License-Identifier: BSD-3-Clause
- */
-
- #ifndef _CLOCK_CONFIG_H_
- #define _CLOCK_CONFIG_H_
- #include "fsl_common.h"
- /*******************************************************************************
- * Definitions
- ******************************************************************************/
- /*******************************************************************************
- ************************ BOARD_InitBootClocks function ************************
- ******************************************************************************/
- #if defined(__cplusplus)
- extern "C" {
- #endif /* __cplusplus*/
- /*!
- * @brief This function executes default configuration of clocks.
- *
- */
- void BOARD_InitBootClocks(void);
- #if defined(__cplusplus)
- }
- #endif /* __cplusplus*/
- /*******************************************************************************
- ********************** Configuration BOARD_BootClockRUN ***********************
- ******************************************************************************/
- /*******************************************************************************
- * Definitions for BOARD_BootClockRUN configuration
- ******************************************************************************/
- #define BOARD_BOOTCLOCKRUN_CORE_CLOCK 48000000U /*!< Core clock frequency: 48000000Hz */
- /*! @brief SCG set for BOARD_BootClockRUN configuration.
- */
- extern const scg_sys_clk_config_t g_sysClkConfig_BOARD_BootClockRUN;
- /*! @brief System OSC set for BOARD_BootClockRUN configuration.
- */
- extern const scg_sosc_config_t g_scgSysOscConfig_BOARD_BootClockRUN;
- /*! @brief SIRC set for BOARD_BootClockRUN configuration.
- */
- extern const scg_sirc_config_t g_scgSircConfig_BOARD_BootClockRUN;
- /*! @brief FIRC set for BOARD_BootClockRUN configuration.
- */
- extern const scg_firc_config_t g_scgFircConfigBOARD_BootClockRUN;
- /*! @brief Low Power FLL set for BOARD_BootClockRUN configuration.
- */
- extern const scg_lpfll_config_t g_scgLpFllConfigBOARD_BootClockRUN;
- /*******************************************************************************
- * API for BOARD_BootClockRUN configuration
- ******************************************************************************/
- #if defined(__cplusplus)
- extern "C" {
- #endif /* __cplusplus*/
- /*!
- * @brief This function executes configuration of clocks.
- *
- */
- void BOARD_BootClockRUN(void);
- #if defined(__cplusplus)
- }
- #endif /* __cplusplus*/
- /*******************************************************************************
- ********************* Configuration BOARD_BootClockHSRUN **********************
- ******************************************************************************/
- /*******************************************************************************
- * Definitions for BOARD_BootClockHSRUN configuration
- ******************************************************************************/
- #define BOARD_BOOTCLOCKHSRUN_CORE_CLOCK 72000000U /*!< Core clock frequency: 72000000Hz */
- /*! @brief SCG set for BOARD_BootClockHSRUN configuration.
- */
- extern const scg_sys_clk_config_t g_sysClkConfig_BOARD_BootClockHSRUN;
- /*! @brief System OSC set for BOARD_BootClockHSRUN configuration.
- */
- extern const scg_sosc_config_t g_scgSysOscConfig_BOARD_BootClockHSRUN;
- /*! @brief SIRC set for BOARD_BootClockHSRUN configuration.
- */
- extern const scg_sirc_config_t g_scgSircConfig_BOARD_BootClockHSRUN;
- /*! @brief FIRC set for BOARD_BootClockHSRUN configuration.
- */
- extern const scg_firc_config_t g_scgFircConfigBOARD_BootClockHSRUN;
- /*! @brief Low Power FLL set for BOARD_BootClockHSRUN configuration.
- */
- extern const scg_lpfll_config_t g_scgLpFllConfigBOARD_BootClockHSRUN;
- /*******************************************************************************
- * API for BOARD_BootClockHSRUN configuration
- ******************************************************************************/
- #if defined(__cplusplus)
- extern "C" {
- #endif /* __cplusplus*/
- /*!
- * @brief This function executes configuration of clocks.
- *
- */
- void BOARD_BootClockHSRUN(void);
- #if defined(__cplusplus)
- }
- #endif /* __cplusplus*/
- /*******************************************************************************
- ********************* Configuration BOARD_BootClockVLPR ***********************
- ******************************************************************************/
- /*******************************************************************************
- * Definitions for BOARD_BootClockVLPR configuration
- ******************************************************************************/
- #define BOARD_BOOTCLOCKVLPR_CORE_CLOCK 4000000U /*!< Core clock frequency: 4000000Hz */
- /*! @brief SCG set for BOARD_BootClockVLPR configuration.
- */
- extern const scg_sys_clk_config_t g_sysClkConfig_BOARD_BootClockVLPR;
- /*! @brief System OSC set for BOARD_BootClockVLPR configuration.
- */
- extern const scg_sosc_config_t g_scgSysOscConfig_BOARD_BootClockVLPR;
- /*! @brief SIRC set for BOARD_BootClockVLPR configuration.
- */
- extern const scg_sirc_config_t g_scgSircConfig_BOARD_BootClockVLPR;
- /*! @brief FIRC set for BOARD_BootClockVLPR configuration.
- */
- extern const scg_firc_config_t g_scgFircConfigBOARD_BootClockVLPR;
- /*! @brief Low Power FLL set for BOARD_BootClockVLPR configuration.
- */
- extern const scg_lpfll_config_t g_scgLpFllConfigBOARD_BootClockVLPR;
- /*******************************************************************************
- * API for BOARD_BootClockVLPR configuration
- ******************************************************************************/
- #if defined(__cplusplus)
- extern "C" {
- #endif /* __cplusplus*/
- /*!
- * @brief This function executes configuration of clocks.
- *
- */
- void BOARD_BootClockVLPR(void);
- #if defined(__cplusplus)
- }
- #endif /* __cplusplus*/
- #endif /* _CLOCK_CONFIG_H_ */
|