mirror of
https://github.com/Ai-Thinker-Open/Ai-Thinker-Open_RTL8710BX_ALIOS_SDK.git
synced 2025-01-30 17:05:23 +00:00
310 lines
15 KiB
C
310 lines
15 KiB
C
|
/*
|
||
|
* Copyright 2017 NXP
|
||
|
*
|
||
|
* Redistribution and use in source and binary forms, with or without modification,
|
||
|
* are permitted provided that the following conditions are met:
|
||
|
*
|
||
|
* o Redistributions of source code must retain the above copyright notice, this list
|
||
|
* of conditions and the following disclaimer.
|
||
|
*
|
||
|
* o Redistributions in binary form must reproduce the above copyright notice, this
|
||
|
* list of conditions and the following disclaimer in the documentation and/or
|
||
|
* other materials provided with the distribution.
|
||
|
*
|
||
|
* o Neither the name of the copyright holder nor the names of its
|
||
|
* contributors may be used to endorse or promote products derived from this
|
||
|
* software without specific prior written permission.
|
||
|
*
|
||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
|
||
|
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
||
|
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||
|
*/
|
||
|
|
||
|
/*
|
||
|
* How to set up clock using clock driver functions:
|
||
|
*
|
||
|
* 1. Setup clock sources.
|
||
|
*
|
||
|
* 2. Setup voltage for the fastest of the clock outputs
|
||
|
*
|
||
|
* 3. Set up wait states of the flash.
|
||
|
*
|
||
|
* 4. Set up all dividers.
|
||
|
*
|
||
|
* 5. Set up all selectors to provide selected clocks.
|
||
|
*/
|
||
|
|
||
|
/* TEXT BELOW IS USED AS SETTING FOR TOOLS *************************************
|
||
|
!!GlobalInfo
|
||
|
product: Clocks v3.0
|
||
|
processor: LPC54102J512
|
||
|
package_id: LPC54102J512BD64
|
||
|
mcu_data: ksdk2_0
|
||
|
processor_version: 0.0.0
|
||
|
board: LPCXpresso54102
|
||
|
* BE CAREFUL MODIFYING THIS COMMENT - IT IS YAML SETTINGS FOR TOOLS **********/
|
||
|
|
||
|
#include "fsl_power.h"
|
||
|
#include "fsl_clock.h"
|
||
|
#include "clock_config.h"
|
||
|
|
||
|
/*******************************************************************************
|
||
|
* Definitions
|
||
|
******************************************************************************/
|
||
|
|
||
|
/*******************************************************************************
|
||
|
* Variables
|
||
|
******************************************************************************/
|
||
|
/* System clock frequency. */
|
||
|
extern uint32_t SystemCoreClock;
|
||
|
|
||
|
/*******************************************************************************
|
||
|
************************ BOARD_InitBootClocks function ************************
|
||
|
******************************************************************************/
|
||
|
void BOARD_InitBootClocks(void)
|
||
|
{
|
||
|
BOARD_BootClockPLL96M();
|
||
|
}
|
||
|
|
||
|
/*******************************************************************************
|
||
|
******************** Configuration BOARD_BootClockIRC12M **********************
|
||
|
******************************************************************************/
|
||
|
/* TEXT BELOW IS USED AS SETTING FOR TOOLS *************************************
|
||
|
!!Configuration
|
||
|
name: BOARD_BootClockIRC12M
|
||
|
outputs:
|
||
|
- {id: ASYNCAPB_clock.outFreq, value: 12 MHz}
|
||
|
- {id: System_clock.outFreq, value: 12 MHz}
|
||
|
- {id: TRACE_clock.outFreq, value: 12 MHz}
|
||
|
sources:
|
||
|
- {id: SYSCON.clk_in.outFreq, value: 4 MHz}
|
||
|
* BE CAREFUL MODIFYING THIS COMMENT - IT IS YAML SETTINGS FOR TOOLS **********/
|
||
|
|
||
|
/*******************************************************************************
|
||
|
* Variables for BOARD_BootClockIRC12M configuration
|
||
|
******************************************************************************/
|
||
|
/*******************************************************************************
|
||
|
* Code for BOARD_BootClockIRC12M configuration
|
||
|
******************************************************************************/
|
||
|
void BOARD_BootClockIRC12M(void)
|
||
|
{
|
||
|
/*!< Set up the clock sources */
|
||
|
/*!< Set up IRC */
|
||
|
POWER_DisablePD(kPDRUNCFG_PD_IRC_OSC); /*!< Ensure IRC OSC is on */
|
||
|
POWER_DisablePD(kPDRUNCFG_PD_IRC); /*!< Ensure IRC is on */
|
||
|
CLOCK_AttachClk(kIRC12M_to_MAIN_CLK); /*!< Switch to IRC 12MHz first to ensure we can change voltage without accidentally
|
||
|
being below the voltage for current speed */
|
||
|
POWER_SetVoltageForFreq(12000000U); /*!< Set voltage for the one of the fastest clock outputs: System clock output */
|
||
|
CLOCK_SetFLASHAccessCyclesForFreq(12000000U); /*!< Set FLASH wait states for core */
|
||
|
|
||
|
/*!< PLL is in power_down mode */
|
||
|
|
||
|
/*!< Set up dividers */
|
||
|
CLOCK_SetClkDiv(kCLOCK_DivAhbClk, 1U, false); /*!< Set AHBCLKDIV divider to value 1 */
|
||
|
|
||
|
/*!< Set up clock selectors - Attach clocks to the peripheries */
|
||
|
CLOCK_AttachClk(kIRC12M_to_MAIN_CLK); /*!< Switch MAIN_CLK to IRC12M */
|
||
|
|
||
|
/*< Set SystemCoreClock variable. */
|
||
|
SystemCoreClock = BOARD_BOOTCLOCKIRC12M_CORE_CLOCK;
|
||
|
}
|
||
|
|
||
|
/*******************************************************************************
|
||
|
******************** Configuration BOARD_BootClockPLL48M **********************
|
||
|
******************************************************************************/
|
||
|
/* TEXT BELOW IS USED AS SETTING FOR TOOLS *************************************
|
||
|
!!Configuration
|
||
|
name: BOARD_BootClockPLL48M
|
||
|
outputs:
|
||
|
- {id: ASYNCAPB_clock.outFreq, value: 48 MHz}
|
||
|
- {id: System_clock.outFreq, value: 48 MHz}
|
||
|
- {id: TRACE_clock.outFreq, value: 48 MHz}
|
||
|
settings:
|
||
|
- {id: PLL_Mode, value: Fractional}
|
||
|
- {id: SYSCON.MAINCLKSELB.sel, value: SYSCON.PLL_BYPASS}
|
||
|
- {id: SYSCON.M_MULT.scale, value: '49152', locked: true}
|
||
|
- {id: SYSCON.N_DIV.scale, value: '3', locked: true}
|
||
|
- {id: SYSCON.PDEC.scale, value: '2', locked: true}
|
||
|
- {id: SYSCON.PLL_BYPASS.sel, value: SYSCON.DIRECTO}
|
||
|
- {id: 'SYSCON::SYSPLLSSCTRL0[MDEC].bitField', value: '3'}
|
||
|
- {id: SYSCON_SYSPLLCTRL_BYPASSCCODIV2_CFG, value: Enabled}
|
||
|
* BE CAREFUL MODIFYING THIS COMMENT - IT IS YAML SETTINGS FOR TOOLS **********/
|
||
|
|
||
|
/*******************************************************************************
|
||
|
* Variables for BOARD_BootClockPLL48M configuration
|
||
|
******************************************************************************/
|
||
|
/*******************************************************************************
|
||
|
* Code for BOARD_BootClockPLL48M configuration
|
||
|
******************************************************************************/
|
||
|
void BOARD_BootClockPLL48M(void)
|
||
|
{
|
||
|
/*!< Set up the clock sources */
|
||
|
/*!< Set up IRC */
|
||
|
POWER_DisablePD(kPDRUNCFG_PD_IRC_OSC); /*!< Ensure IRC OSC is on */
|
||
|
POWER_DisablePD(kPDRUNCFG_PD_IRC); /*!< Ensure IRC is on */
|
||
|
CLOCK_AttachClk(kIRC12M_to_MAIN_CLK); /*!< Switch to IRC 12MHz first to ensure we can change voltage without accidentally
|
||
|
being below the voltage for current speed */
|
||
|
POWER_SetVoltageForFreq(48000000U); /*!< Set voltage for the one of the fastest clock outputs: System clock output */
|
||
|
CLOCK_SetFLASHAccessCyclesForFreq(48000000U); /*!< Set FLASH wait states for core */
|
||
|
|
||
|
/*!< Set up PLL */
|
||
|
POWER_DisablePD(kPDRUNCFG_PD_SYS_PLL); /*!< Ensure PLL is on */
|
||
|
const pll_setup_t pllSetup = {
|
||
|
.syspllctrl = SYSCON_SYSPLLCTRL_UPLIMOFF_MASK | SYSCON_SYSPLLCTRL_BYPASSCCODIV2_MASK,
|
||
|
.syspllndec = SYSCON_SYSPLLNDEC_NDEC(1U),
|
||
|
.syspllpdec = SYSCON_SYSPLLPDEC_PDEC(98U),
|
||
|
.syspllssctrl = {0x0U,(SYSCON_SYSPLLSSCTRL1_MD(49152U) | (uint32_t)(kSS_MF_512) | (uint32_t)(kSS_MR_K0) | (uint32_t)(kSS_MC_NOC))},
|
||
|
.pllRate = 48000000U,
|
||
|
.flags = PLL_SETUPFLAG_POWERUP
|
||
|
};
|
||
|
CLOCK_SetPLLFreq(&pllSetup); /*!< Configure PLL to the desired values */
|
||
|
|
||
|
/* PLL in Fractional/Spread spectrum mode */
|
||
|
/* SYSTICK is used for waiting for PLL stabilization */
|
||
|
|
||
|
/*!< Set up dividers */
|
||
|
CLOCK_SetClkDiv(kCLOCK_DivAhbClk, 1U, false); /*!< Set AHBCLKDIV divider to value 1 */
|
||
|
|
||
|
/*!< Set up clock selectors - Attach clocks to the peripheries */
|
||
|
CLOCK_AttachClk(kSYS_PLL_OUT_to_MAIN_CLK); /*!< Switch MAIN_CLK to SYS_PLL_OUT */
|
||
|
|
||
|
/*< Set SystemCoreClock variable. */
|
||
|
SystemCoreClock = BOARD_BOOTCLOCKPLL48M_CORE_CLOCK;
|
||
|
}
|
||
|
|
||
|
/*******************************************************************************
|
||
|
******************** Configuration BOARD_BootClockPLL96M **********************
|
||
|
******************************************************************************/
|
||
|
/* TEXT BELOW IS USED AS SETTING FOR TOOLS *************************************
|
||
|
!!Configuration
|
||
|
name: BOARD_BootClockPLL96M
|
||
|
called_from_default_init: true
|
||
|
outputs:
|
||
|
- {id: ASYNCAPB_clock.outFreq, value: 96 MHz}
|
||
|
- {id: System_clock.outFreq, value: 96 MHz}
|
||
|
- {id: TRACE_clock.outFreq, value: 96 MHz}
|
||
|
settings:
|
||
|
- {id: PLL_Mode, value: Fractional}
|
||
|
- {id: SYSCON.DIRECTO.sel, value: SYSCON.PLL}
|
||
|
- {id: SYSCON.MAINCLKSELB.sel, value: SYSCON.PLL_BYPASS}
|
||
|
- {id: SYSCON.M_MULT.scale, value: '49152', locked: true}
|
||
|
- {id: SYSCON.N_DIV.scale, value: '3', locked: true}
|
||
|
- {id: SYSCON.PDEC.scale, value: '2', locked: true}
|
||
|
- {id: SYSCON.PLL_BYPASS.sel, value: SYSCON.DIRECTO}
|
||
|
- {id: 'SYSCON::SYSPLLSSCTRL0[MDEC].bitField', value: '3'}
|
||
|
- {id: SYSCON_SYSPLLCTRL_BYPASSCCODIV2_CFG, value: Enabled}
|
||
|
* BE CAREFUL MODIFYING THIS COMMENT - IT IS YAML SETTINGS FOR TOOLS **********/
|
||
|
|
||
|
/*******************************************************************************
|
||
|
* Variables for BOARD_BootClockPLL96M configuration
|
||
|
******************************************************************************/
|
||
|
/*******************************************************************************
|
||
|
* Code for BOARD_BootClockPLL96M configuration
|
||
|
******************************************************************************/
|
||
|
void BOARD_BootClockPLL96M(void)
|
||
|
{
|
||
|
/*!< Set up the clock sources */
|
||
|
/*!< Set up IRC */
|
||
|
POWER_DisablePD(kPDRUNCFG_PD_IRC_OSC); /*!< Ensure IRC OSC is on */
|
||
|
POWER_DisablePD(kPDRUNCFG_PD_IRC); /*!< Ensure IRC is on */
|
||
|
CLOCK_AttachClk(kIRC12M_to_MAIN_CLK); /*!< Switch to IRC 12MHz first to ensure we can change voltage without accidentally
|
||
|
being below the voltage for current speed */
|
||
|
POWER_SetVoltageForFreq(96000000U); /*!< Set voltage for the one of the fastest clock outputs: System clock output */
|
||
|
CLOCK_SetFLASHAccessCyclesForFreq(96000000U); /*!< Set FLASH wait states for core */
|
||
|
|
||
|
/*!< Set up PLL */
|
||
|
POWER_DisablePD(kPDRUNCFG_PD_SYS_PLL); /*!< Ensure PLL is on */
|
||
|
const pll_setup_t pllSetup = {
|
||
|
.syspllctrl = SYSCON_SYSPLLCTRL_UPLIMOFF_MASK | SYSCON_SYSPLLCTRL_BYPASSCCODIV2_MASK | SYSCON_SYSPLLCTRL_DIRECTO_MASK,
|
||
|
.syspllndec = SYSCON_SYSPLLNDEC_NDEC(1U),
|
||
|
.syspllpdec = SYSCON_SYSPLLPDEC_PDEC(98U),
|
||
|
.syspllssctrl = {0x0U,(SYSCON_SYSPLLSSCTRL1_MD(49152U) | (uint32_t)(kSS_MF_512) | (uint32_t)(kSS_MR_K0) | (uint32_t)(kSS_MC_NOC))},
|
||
|
.pllRate = 96000000U,
|
||
|
.flags = PLL_SETUPFLAG_POWERUP
|
||
|
};
|
||
|
CLOCK_SetPLLFreq(&pllSetup); /*!< Configure PLL to the desired values */
|
||
|
|
||
|
/* PLL in Fractional/Spread spectrum mode */
|
||
|
/* SYSTICK is used for waiting for PLL stabilization */
|
||
|
|
||
|
/*!< Set up dividers */
|
||
|
CLOCK_SetClkDiv(kCLOCK_DivAhbClk, 1U, false); /*!< Set AHBCLKDIV divider to value 1 */
|
||
|
|
||
|
/*!< Set up clock selectors - Attach clocks to the peripheries */
|
||
|
CLOCK_AttachClk(kSYS_PLL_OUT_to_MAIN_CLK); /*!< Switch MAIN_CLK to SYS_PLL_OUT */
|
||
|
|
||
|
/*< Set SystemCoreClock variable. */
|
||
|
SystemCoreClock = BOARD_BOOTCLOCKPLL96M_CORE_CLOCK;
|
||
|
}
|
||
|
|
||
|
/*******************************************************************************
|
||
|
******************** Configuration BOARD_BootClockPLL100M *********************
|
||
|
******************************************************************************/
|
||
|
/* TEXT BELOW IS USED AS SETTING FOR TOOLS *************************************
|
||
|
!!Configuration
|
||
|
name: BOARD_BootClockPLL100M
|
||
|
outputs:
|
||
|
- {id: ASYNCAPB_clock.outFreq, value: 100 MHz}
|
||
|
- {id: System_clock.outFreq, value: 100 MHz}
|
||
|
- {id: TRACE_clock.outFreq, value: 100 MHz}
|
||
|
settings:
|
||
|
- {id: PLL_Mode, value: Fractional}
|
||
|
- {id: SYSCON.DIRECTO.sel, value: SYSCON.PLL}
|
||
|
- {id: SYSCON.MAINCLKSELB.sel, value: SYSCON.PLL_BYPASS}
|
||
|
- {id: SYSCON.M_MULT.scale, value: '102400', locked: true}
|
||
|
- {id: SYSCON.N_DIV.scale, value: '6', locked: true}
|
||
|
- {id: SYSCON.PDEC.scale, value: '2', locked: true}
|
||
|
- {id: SYSCON.PLL_BYPASS.sel, value: SYSCON.DIRECTO}
|
||
|
- {id: 'SYSCON::SYSPLLSSCTRL0[MDEC].bitField', value: '32597'}
|
||
|
* BE CAREFUL MODIFYING THIS COMMENT - IT IS YAML SETTINGS FOR TOOLS **********/
|
||
|
|
||
|
/*******************************************************************************
|
||
|
* Variables for BOARD_BootClockPLL100M configuration
|
||
|
******************************************************************************/
|
||
|
/*******************************************************************************
|
||
|
* Code for BOARD_BootClockPLL100M configuration
|
||
|
******************************************************************************/
|
||
|
void BOARD_BootClockPLL100M(void)
|
||
|
{
|
||
|
/*!< Set up the clock sources */
|
||
|
/*!< Set up IRC */
|
||
|
POWER_DisablePD(kPDRUNCFG_PD_IRC_OSC); /*!< Ensure IRC OSC is on */
|
||
|
POWER_DisablePD(kPDRUNCFG_PD_IRC); /*!< Ensure IRC is on */
|
||
|
CLOCK_AttachClk(kIRC12M_to_MAIN_CLK); /*!< Switch to IRC 12MHz first to ensure we can change voltage without accidentally
|
||
|
being below the voltage for current speed */
|
||
|
POWER_SetVoltageForFreq(100000000U); /*!< Set voltage for the one of the fastest clock outputs: System clock output */
|
||
|
CLOCK_SetFLASHAccessCyclesForFreq(100000000U); /*!< Set FLASH wait states for core */
|
||
|
|
||
|
/*!< Set up PLL */
|
||
|
POWER_DisablePD(kPDRUNCFG_PD_SYS_PLL); /*!< Ensure PLL is on */
|
||
|
const pll_setup_t pllSetup = {
|
||
|
.syspllctrl = SYSCON_SYSPLLCTRL_UPLIMOFF_MASK | SYSCON_SYSPLLCTRL_DIRECTO_MASK,
|
||
|
.syspllndec = SYSCON_SYSPLLNDEC_NDEC(11U),
|
||
|
.syspllpdec = SYSCON_SYSPLLPDEC_PDEC(98U),
|
||
|
.syspllssctrl = {0x0U,(SYSCON_SYSPLLSSCTRL1_MD(51200U) | (uint32_t)(kSS_MF_512) | (uint32_t)(kSS_MR_K0) | (uint32_t)(kSS_MC_NOC))},
|
||
|
.pllRate = 100000000U,
|
||
|
.flags = PLL_SETUPFLAG_POWERUP
|
||
|
};
|
||
|
CLOCK_SetPLLFreq(&pllSetup); /*!< Configure PLL to the desired values */
|
||
|
|
||
|
/* PLL in Fractional/Spread spectrum mode */
|
||
|
/* SYSTICK is used for waiting for PLL stabilization */
|
||
|
|
||
|
/*!< Set up dividers */
|
||
|
CLOCK_SetClkDiv(kCLOCK_DivAhbClk, 1U, false); /*!< Set AHBCLKDIV divider to value 1 */
|
||
|
|
||
|
/*!< Set up clock selectors - Attach clocks to the peripheries */
|
||
|
CLOCK_AttachClk(kSYS_PLL_OUT_to_MAIN_CLK); /*!< Switch MAIN_CLK to SYS_PLL_OUT */
|
||
|
|
||
|
/*< Set SystemCoreClock variable. */
|
||
|
SystemCoreClock = BOARD_BOOTCLOCKPLL100M_CORE_CLOCK;
|
||
|
}
|
||
|
|