You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
654 lines
16 KiB
654 lines
16 KiB
/** @defgroup rcc_file RCC peripheral API
|
|
|
|
@ingroup peripheral_apis
|
|
|
|
@brief <b>libopencm3 GD32F1x0 Reset and Clock Control</b>
|
|
|
|
@version 1.0.0
|
|
|
|
@author @htmlonly © @endhtmlonly 2009
|
|
Federico Ruiz-Ugalde \<memeruiz at gmail dot com\>
|
|
@author @htmlonly © @endhtmlonly 2009 Uwe Hermann <uwe@hermann-uwe.de>
|
|
@author @htmlonly © @endhtmlonly 2010 Thomas Otto <tommi@viadmin.org>
|
|
|
|
@date 18 August 2012
|
|
|
|
This library supports the Reset and Clock Control System in the GD32F1x0
|
|
series of ARM Cortex Microcontrollers by GigaDevice.
|
|
|
|
@note Full support for F170 and F190 devices is not yet provided.
|
|
|
|
Clock settings and resets for many peripherals are given here rather than in
|
|
the corresponding peripheral library.
|
|
|
|
The library also provides a number of common configurations for the processor
|
|
system clock. Not all possible configurations are included.
|
|
|
|
LGPL License Terms @ref lgpl_license
|
|
*/
|
|
/*
|
|
* This file is part of the libopencm3 project.
|
|
*
|
|
* Copyright (C) 2019 Icenowy Zheng <icenowy@aosc.io>
|
|
* Copyright (C) 2009 Federico Ruiz-Ugalde <memeruiz at gmail dot com>
|
|
* Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
|
|
* Copyright (C) 2010 Thomas Otto <tommi@viadmin.org>
|
|
*
|
|
* This library is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/**@{*/
|
|
|
|
#include <libopencm3/cm3/assert.h>
|
|
#include <libopencm3/gd32/rcc.h>
|
|
#include <libopencm3/gd32/flash.h>
|
|
|
|
/** Set the default clock frequencies */
|
|
uint32_t rcc_apb1_frequency = 8000000;
|
|
uint32_t rcc_apb2_frequency = 8000000;
|
|
uint32_t rcc_ahb_frequency = 8000000;
|
|
|
|
const struct rcc_clock_scale rcc_hsi_configs[] = {
|
|
{ /* 48MHz */
|
|
.pllmul = RCC_CFGR_PLLMUL_PLL_CLK_MUL12,
|
|
.hpre = RCC_CFGR_HPRE_NODIV,
|
|
.ppre1 = RCC_CFGR_PPRE_DIV2,
|
|
.ppre2 = RCC_CFGR_PPRE_NODIV,
|
|
.adcpre = RCC_CFGR_ADCPRE_DIV8,
|
|
.use_hse = false,
|
|
.ahb_frequency = 48000000,
|
|
.apb1_frequency = 24000000,
|
|
.apb2_frequency = 48000000,
|
|
},
|
|
{ /* 64MHz */
|
|
.pllmul = RCC_CFGR_PLLMUL_PLL_CLK_MUL16,
|
|
.hpre = RCC_CFGR_HPRE_NODIV,
|
|
.ppre1 = RCC_CFGR_PPRE_DIV2,
|
|
.ppre2 = RCC_CFGR_PPRE_NODIV,
|
|
.adcpre = RCC_CFGR_ADCPRE_DIV8,
|
|
.use_hse = false,
|
|
.ahb_frequency = 64000000,
|
|
.apb1_frequency = 32000000,
|
|
.apb2_frequency = 64000000,
|
|
}
|
|
};
|
|
|
|
const struct rcc_clock_scale rcc_hse8_configs[] = {
|
|
{ /* 72MHz */
|
|
.pllmul = RCC_CFGR_PLLMUL_PLL_CLK_MUL9,
|
|
.hpre = RCC_CFGR_HPRE_NODIV,
|
|
.ppre1 = RCC_CFGR_PPRE_DIV2,
|
|
.ppre2 = RCC_CFGR_PPRE_NODIV,
|
|
.adcpre = RCC_CFGR_ADCPRE_DIV8,
|
|
.usbpre = RCC_CFGR_USBPRE_PLL_CLK_DIV1_5,
|
|
.use_hse = true,
|
|
.pll_hse_prediv = RCC_CFGR2_PREDIV_NODIV,
|
|
.ahb_frequency = 72000000,
|
|
.apb1_frequency = 36000000,
|
|
.apb2_frequency = 72000000,
|
|
},
|
|
};
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
/** @brief RCC Clear the Oscillator Ready Interrupt Flag
|
|
|
|
Clear the interrupt flag that was set when a clock oscillator became ready to
|
|
use.
|
|
|
|
@param[in] osc Oscillator ID
|
|
*/
|
|
|
|
void rcc_osc_ready_int_clear(enum rcc_osc osc)
|
|
{
|
|
switch (osc) {
|
|
case RCC_PLL:
|
|
RCC_CIR |= RCC_CIR_PLLRDYC;
|
|
break;
|
|
case RCC_HSE:
|
|
RCC_CIR |= RCC_CIR_HSERDYC;
|
|
break;
|
|
case RCC_HSI:
|
|
RCC_CIR |= RCC_CIR_HSIRDYC;
|
|
break;
|
|
case RCC_LSE:
|
|
RCC_CIR |= RCC_CIR_LSERDYC;
|
|
break;
|
|
case RCC_LSI:
|
|
RCC_CIR |= RCC_CIR_LSIRDYC;
|
|
break;
|
|
}
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
/** @brief RCC Enable the Oscillator Ready Interrupt
|
|
|
|
@param[in] osc Oscillator ID
|
|
*/
|
|
|
|
void rcc_osc_ready_int_enable(enum rcc_osc osc)
|
|
{
|
|
switch (osc) {
|
|
case RCC_PLL:
|
|
RCC_CIR |= RCC_CIR_PLLRDYIE;
|
|
break;
|
|
case RCC_HSE:
|
|
RCC_CIR |= RCC_CIR_HSERDYIE;
|
|
break;
|
|
case RCC_HSI:
|
|
RCC_CIR |= RCC_CIR_HSIRDYIE;
|
|
break;
|
|
case RCC_LSE:
|
|
RCC_CIR |= RCC_CIR_LSERDYIE;
|
|
break;
|
|
case RCC_LSI:
|
|
RCC_CIR |= RCC_CIR_LSIRDYIE;
|
|
break;
|
|
}
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
/** @brief RCC Disable the Oscillator Ready Interrupt
|
|
|
|
@param[in] osc Oscillator ID
|
|
*/
|
|
|
|
void rcc_osc_ready_int_disable(enum rcc_osc osc)
|
|
{
|
|
switch (osc) {
|
|
case RCC_PLL:
|
|
RCC_CIR &= ~RCC_CIR_PLLRDYIE;
|
|
break;
|
|
case RCC_HSE:
|
|
RCC_CIR &= ~RCC_CIR_HSERDYIE;
|
|
break;
|
|
case RCC_HSI:
|
|
RCC_CIR &= ~RCC_CIR_HSIRDYIE;
|
|
break;
|
|
case RCC_LSE:
|
|
RCC_CIR &= ~RCC_CIR_LSERDYIE;
|
|
break;
|
|
case RCC_LSI:
|
|
RCC_CIR &= ~RCC_CIR_LSIRDYIE;
|
|
break;
|
|
}
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
/** @brief RCC Read the Oscillator Ready Interrupt Flag
|
|
|
|
@param[in] osc Oscillator ID
|
|
@returns int. Boolean value for flag set.
|
|
*/
|
|
|
|
int rcc_osc_ready_int_flag(enum rcc_osc osc)
|
|
{
|
|
switch (osc) {
|
|
case RCC_PLL:
|
|
return ((RCC_CIR & RCC_CIR_PLLRDYF) != 0);
|
|
break;
|
|
case RCC_HSE:
|
|
return ((RCC_CIR & RCC_CIR_HSERDYF) != 0);
|
|
break;
|
|
case RCC_HSI:
|
|
return ((RCC_CIR & RCC_CIR_HSIRDYF) != 0);
|
|
break;
|
|
case RCC_LSE:
|
|
return ((RCC_CIR & RCC_CIR_LSERDYF) != 0);
|
|
break;
|
|
case RCC_LSI:
|
|
return ((RCC_CIR & RCC_CIR_LSIRDYF) != 0);
|
|
break;
|
|
}
|
|
|
|
cm3_assert_not_reached();
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
/** @brief RCC Clear the Clock Security System Interrupt Flag
|
|
|
|
*/
|
|
|
|
void rcc_css_int_clear(void)
|
|
{
|
|
RCC_CIR |= RCC_CIR_CSSC;
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
/** @brief RCC Read the Clock Security System Interrupt Flag
|
|
|
|
@returns int. Boolean value for flag set.
|
|
*/
|
|
|
|
int rcc_css_int_flag(void)
|
|
{
|
|
return ((RCC_CIR & RCC_CIR_CSSF) != 0);
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
/** @brief RCC Wait for Oscillator Ready.
|
|
|
|
@param[in] osc Oscillator ID
|
|
*/
|
|
|
|
void rcc_wait_for_osc_ready(enum rcc_osc osc)
|
|
{
|
|
switch (osc) {
|
|
case RCC_PLL:
|
|
while ((RCC_CR & RCC_CR_PLLRDY) == 0);
|
|
break;
|
|
case RCC_HSE:
|
|
while ((RCC_CR & RCC_CR_HSERDY) == 0);
|
|
break;
|
|
case RCC_HSI:
|
|
while ((RCC_CR & RCC_CR_HSIRDY) == 0);
|
|
break;
|
|
case RCC_LSE:
|
|
while ((RCC_BDCR & RCC_BDCR_LSERDY) == 0);
|
|
break;
|
|
case RCC_LSI:
|
|
while ((RCC_CSR & RCC_CSR_LSIRDY) == 0);
|
|
break;
|
|
}
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
/** @brief RCC Turn on an Oscillator.
|
|
|
|
Enable an oscillator and power on. Each oscillator requires an amount of time
|
|
to settle to a usable state. Refer to datasheets for time delay information. A
|
|
status flag is available to indicate when the oscillator becomes ready (see
|
|
@ref rcc_osc_ready_int_flag and @ref rcc_wait_for_osc_ready).
|
|
|
|
@note The LSE clock is in the backup domain and cannot be enabled until the
|
|
backup domain write protection has been removed (see @ref
|
|
pwr_disable_backup_domain_write_protect).
|
|
|
|
@param[in] osc Oscillator ID
|
|
*/
|
|
|
|
void rcc_osc_on(enum rcc_osc osc)
|
|
{
|
|
switch (osc) {
|
|
case RCC_PLL:
|
|
RCC_CR |= RCC_CR_PLLON;
|
|
break;
|
|
case RCC_HSE:
|
|
RCC_CR |= RCC_CR_HSEON;
|
|
break;
|
|
case RCC_HSI:
|
|
RCC_CR |= RCC_CR_HSION;
|
|
break;
|
|
case RCC_LSE:
|
|
RCC_BDCR |= RCC_BDCR_LSEON;
|
|
break;
|
|
case RCC_LSI:
|
|
RCC_CSR |= RCC_CSR_LSION;
|
|
break;
|
|
}
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
/** @brief RCC Turn off an Oscillator.
|
|
|
|
Disable an oscillator and power off.
|
|
|
|
@note An oscillator cannot be turned off if it is selected as the system clock.
|
|
@note The LSE clock is in the backup domain and cannot be disabled until the
|
|
backup domain write protection has been removed (see
|
|
@ref pwr_disable_backup_domain_write_protect) or the backup domain has been
|
|
(see reset @ref rcc_backupdomain_reset).
|
|
|
|
@param[in] osc Oscillator ID
|
|
*/
|
|
|
|
void rcc_osc_off(enum rcc_osc osc)
|
|
{
|
|
switch (osc) {
|
|
case RCC_PLL:
|
|
RCC_CR &= ~RCC_CR_PLLON;
|
|
break;
|
|
case RCC_HSE:
|
|
RCC_CR &= ~RCC_CR_HSEON;
|
|
break;
|
|
case RCC_HSI:
|
|
RCC_CR &= ~RCC_CR_HSION;
|
|
break;
|
|
case RCC_LSE:
|
|
RCC_BDCR &= ~RCC_BDCR_LSEON;
|
|
break;
|
|
case RCC_LSI:
|
|
RCC_CSR &= ~RCC_CSR_LSION;
|
|
break;
|
|
}
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
/** @brief RCC Enable the Clock Security System.
|
|
|
|
*/
|
|
|
|
void rcc_css_enable(void)
|
|
{
|
|
RCC_CR |= RCC_CR_CSSON;
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
/** @brief RCC Disable the Clock Security System.
|
|
|
|
*/
|
|
|
|
void rcc_css_disable(void)
|
|
{
|
|
RCC_CR &= ~RCC_CR_CSSON;
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
/** @brief RCC Set the Source for the System Clock.
|
|
|
|
@param[in] clk System Clock Selection @ref rcc_cfgr_scs
|
|
*/
|
|
|
|
void rcc_set_sysclk_source(uint32_t clk)
|
|
{
|
|
RCC_CFGR = (RCC_CFGR & ~RCC_CFGR_SW) |
|
|
(clk << RCC_CFGR_SW_SHIFT);
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
/** @brief RCC Set the PLL Multiplication Factor.
|
|
|
|
@note This only has effect when the PLL is disabled.
|
|
|
|
@param[in] mul PLL multiplication factor @ref rcc_cfgr_pmf
|
|
*/
|
|
|
|
void rcc_set_pll_multiplication_factor(uint32_t mul)
|
|
{
|
|
RCC_CFGR = (RCC_CFGR & ~RCC_CFGR_PLLMUL_0_3 & ~RCC_CFGR_PLLMUL_4) |
|
|
((mul & 0xf) << RCC_CFGR_PLLMUL_0_3_SHIFT) |
|
|
((!!(mul & 0x10)) << RCC_CFGR_PLLMUL_4_SHIFT);
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
/** @brief RCC Set the PLL Clock Source.
|
|
|
|
@note This only has effect when the PLL is disabled.
|
|
|
|
@param[in] pllsrc PLL clock source @ref rcc_cfgr_pcs
|
|
*/
|
|
|
|
void rcc_set_pll_source(uint32_t pllsrc)
|
|
{
|
|
RCC_CFGR = (RCC_CFGR & ~RCC_CFGR_PLLSRC) |
|
|
(pllsrc << 16);
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
/** @brief RCC Set the HSE Frequency Divider used as PLL Clock Source.
|
|
|
|
@note This only has effect when the PLL is disabled.
|
|
|
|
@param[in] pllxtpre HSE division factor @ref rcc_cfgr_hsepre
|
|
*/
|
|
|
|
void rcc_set_pllxtpre(uint32_t pllxtpre)
|
|
{
|
|
RCC_CFGR = (RCC_CFGR & ~RCC_CFGR_PLLXTPRE) |
|
|
(pllxtpre << 17);
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
/** @brief RCC RTC Clock Enabled Flag
|
|
|
|
@returns uint32_t. Nonzero if the RTC Clock is enabled.
|
|
*/
|
|
|
|
uint32_t rcc_rtc_clock_enabled_flag(void)
|
|
{
|
|
return RCC_BDCR & RCC_BDCR_RTCEN;
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
/** @brief RCC Enable the RTC clock
|
|
|
|
*/
|
|
|
|
void rcc_enable_rtc_clock(void)
|
|
{
|
|
RCC_BDCR |= RCC_BDCR_RTCEN;
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
/** @brief RCC Set the Source for the RTC clock
|
|
|
|
@param[in] clock_source RTC clock source. Only HSE/128, LSE and LSI.
|
|
*/
|
|
|
|
void rcc_set_rtc_clock_source(enum rcc_osc clock_source)
|
|
{
|
|
uint32_t reg32;
|
|
|
|
switch (clock_source) {
|
|
case RCC_LSE:
|
|
/* Turn the LSE on and wait while it stabilises. */
|
|
RCC_BDCR |= RCC_BDCR_LSEON;
|
|
while ((reg32 = (RCC_BDCR & RCC_BDCR_LSERDY)) == 0);
|
|
|
|
/* Choose LSE as the RTC clock source. */
|
|
RCC_BDCR &= ~((1 << 8) | (1 << 9));
|
|
RCC_BDCR |= (1 << 8);
|
|
break;
|
|
case RCC_LSI:
|
|
/* Turn the LSI on and wait while it stabilises. */
|
|
RCC_CSR |= RCC_CSR_LSION;
|
|
while ((reg32 = (RCC_CSR & RCC_CSR_LSIRDY)) == 0);
|
|
|
|
/* Choose LSI as the RTC clock source. */
|
|
RCC_BDCR &= ~((1 << 8) | (1 << 9));
|
|
RCC_BDCR |= (1 << 9);
|
|
break;
|
|
case RCC_HSE:
|
|
/* Turn the HSE on and wait while it stabilises. */
|
|
RCC_CR |= RCC_CR_HSEON;
|
|
while ((reg32 = (RCC_CR & RCC_CR_HSERDY)) == 0);
|
|
|
|
/* Choose HSE as the RTC clock source. */
|
|
RCC_BDCR &= ~((1 << 8) | (1 << 9));
|
|
RCC_BDCR |= (1 << 9) | (1 << 8);
|
|
break;
|
|
case RCC_PLL:
|
|
case RCC_HSI:
|
|
/* Unusable clock source, here to prevent warnings. */
|
|
/* Turn off clock sources to RTC. */
|
|
RCC_BDCR &= ~((1 << 8) | (1 << 9));
|
|
break;
|
|
}
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
/** @brief ADC Setup the A/D Clock
|
|
|
|
The ADC's have a common clock prescale setting.
|
|
|
|
@param[in] adcpre Prescale divider taken from @ref rcc_cfgr_adcpre
|
|
*/
|
|
|
|
void rcc_set_adcpre(uint32_t adcpre)
|
|
{
|
|
RCC_CFGR = (RCC_CFGR & ~RCC_CFGR_ADCPRE) |
|
|
(adcpre << RCC_CFGR_ADCPRE_SHIFT);
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
/** @brief RCC Set the APB2 Prescale Factor.
|
|
|
|
@param[in] ppre2 APB2 prescale factor @ref rcc_cfgr_apb2pre
|
|
*/
|
|
|
|
void rcc_set_ppre2(uint32_t ppre2)
|
|
{
|
|
RCC_CFGR = (RCC_CFGR & ~RCC_CFGR_PPRE2) |
|
|
(ppre2 << RCC_CFGR_PPRE2_SHIFT);
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
/** @brief RCC Set the APB1 Prescale Factor.
|
|
|
|
@note The APB1 clock frequency must not exceed 36MHz.
|
|
|
|
@param[in] ppre1 APB1 prescale factor @ref rcc_cfgr_apb1pre
|
|
*/
|
|
|
|
void rcc_set_ppre1(uint32_t ppre1)
|
|
{
|
|
RCC_CFGR = (RCC_CFGR & ~RCC_CFGR_PPRE1) |
|
|
(ppre1 << RCC_CFGR_PPRE1_SHIFT);
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
/** @brief RCC Set the AHB Prescale Factor.
|
|
|
|
@param[in] hpre AHB prescale factor @ref rcc_cfgr_ahbpre
|
|
*/
|
|
|
|
void rcc_set_hpre(uint32_t hpre)
|
|
{
|
|
RCC_CFGR = (RCC_CFGR & ~RCC_CFGR_HPRE) |
|
|
(hpre << RCC_CFGR_HPRE_SHIFT);
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
/** @brief RCC Set the USB Prescale Factor.
|
|
|
|
The prescale factor can be set to 1 (no prescale) for use when the PLL clock is
|
|
48MHz, or 1.5 to generate the 48MHz USB clock from a 64MHz PLL clock.
|
|
|
|
@note This bit cannot be reset while the USB clock is enabled.
|
|
|
|
@param[in] usbpre USB prescale factor @ref rcc_cfgr_usbpre
|
|
*/
|
|
|
|
void rcc_set_usbpre(uint32_t usbpre)
|
|
{
|
|
RCC_CFGR = (RCC_CFGR & ~RCC_CFGR_USBPRE) | usbpre;
|
|
}
|
|
|
|
void rcc_set_prediv(uint32_t prediv)
|
|
{
|
|
RCC_CFGR2 = (RCC_CFGR2 & ~RCC_CFGR2_PREDIV) | prediv;
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
/** @brief RCC Get the System Clock Source.
|
|
|
|
@returns Unsigned int32. System clock source:
|
|
@li 00 indicates HSE
|
|
@li 01 indicates LSE
|
|
@li 02 indicates PLL
|
|
*/
|
|
|
|
uint32_t rcc_system_clock_source(void)
|
|
{
|
|
/* Return the clock source which is used as system clock. */
|
|
return (RCC_CFGR & RCC_CFGR_SWS) >> RCC_CFGR_SWS_SHIFT;
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
/*
|
|
* These functions are setting up the whole clock system for the most common
|
|
* input clock and output clock configurations.
|
|
*/
|
|
/*---------------------------------------------------------------------------*/
|
|
/**
|
|
* Setup clocks to run from PLL.
|
|
* The arguments provide the pll source, multipliers, dividers, all that's
|
|
* needed to establish a system clock.
|
|
* @param clock clock information structure
|
|
*/
|
|
void rcc_clock_setup_pll(const struct rcc_clock_scale *clock)
|
|
{
|
|
if (clock->use_hse) {
|
|
/* Enable external high-speed oscillator. */
|
|
rcc_osc_on(RCC_HSE);
|
|
rcc_wait_for_osc_ready(RCC_HSE);
|
|
rcc_set_sysclk_source(RCC_CFGR_SW_SYSCLKSEL_HSECLK);
|
|
} else {
|
|
/* Enable internal high-speed oscillator. */
|
|
rcc_osc_on(RCC_HSI);
|
|
rcc_wait_for_osc_ready(RCC_HSI);
|
|
rcc_set_sysclk_source(RCC_CFGR_SW_SYSCLKSEL_HSICLK);
|
|
}
|
|
|
|
/*
|
|
* Set prescalers for AHB, ADC, APB1, APB2 and USB.
|
|
* Do this before touching the PLL (TODO: why?).
|
|
*/
|
|
rcc_set_hpre(clock->hpre);
|
|
rcc_set_ppre1(clock->ppre1);
|
|
rcc_set_ppre2(clock->ppre2);
|
|
|
|
rcc_set_adcpre(clock->adcpre);
|
|
if (clock->use_hse)
|
|
rcc_set_usbpre(clock->usbpre);
|
|
|
|
/* Set the PLL multiplication factor. */
|
|
rcc_set_pll_multiplication_factor(clock->pllmul);
|
|
|
|
if (clock->use_hse) {
|
|
/* Select HSE as PLL source. */
|
|
rcc_set_pll_source(RCC_CFGR_PLLSRC_HSE_CLK);
|
|
|
|
/*
|
|
* External frequency undivided before entering PLL
|
|
* (only valid/needed for HSE).
|
|
*/
|
|
rcc_set_prediv(clock->pll_hse_prediv);
|
|
} else {
|
|
/* Select HSI/2 as PLL source. */
|
|
rcc_set_pll_source(RCC_CFGR_PLLSRC_HSI_CLK_DIV2);
|
|
}
|
|
|
|
/* Enable PLL oscillator and wait for it to stabilize. */
|
|
rcc_osc_on(RCC_PLL);
|
|
rcc_wait_for_osc_ready(RCC_PLL);
|
|
|
|
/* Select PLL as SYSCLK source. */
|
|
rcc_set_sysclk_source(RCC_CFGR_SW_SYSCLKSEL_PLLCLK);
|
|
|
|
/* Set the peripheral clock frequencies used */
|
|
rcc_ahb_frequency = clock->ahb_frequency;
|
|
rcc_apb1_frequency = clock->apb1_frequency;
|
|
rcc_apb2_frequency = clock->apb2_frequency;
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
/** @brief RCC Reset the Backup Domain
|
|
|
|
The backup domain registers are reset to disable RTC controls and clear user
|
|
data.
|
|
*/
|
|
|
|
void rcc_backupdomain_reset(void)
|
|
{
|
|
/* Set the backup domain software reset. */
|
|
RCC_BDCR |= RCC_BDCR_BDRST;
|
|
|
|
/* Clear the backup domain software reset. */
|
|
RCC_BDCR &= ~RCC_BDCR_BDRST;
|
|
}
|
|
|
|
/**@}*/
|
|
|
|
|