2017-01-23 17:45:42 +01:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* Copyright (c) 2017 Linaro Limited.
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <soc.h>
|
2020-11-20 20:28:06 +01:00
|
|
|
#include <stm32_ll_bus.h>
|
|
|
|
#include <stm32_ll_pwr.h>
|
|
|
|
#include <stm32_ll_rcc.h>
|
|
|
|
#include <stm32_ll_utils.h>
|
2019-06-25 15:53:47 -04:00
|
|
|
#include <drivers/clock_control.h>
|
2019-06-26 10:33:55 -04:00
|
|
|
#include <sys/util.h>
|
2020-01-25 05:34:53 -06:00
|
|
|
#include <drivers/clock_control/stm32_clock_control.h>
|
2019-04-11 18:20:15 +02:00
|
|
|
#include "clock_stm32_ll_common.h"
|
2020-06-23 09:48:07 +02:00
|
|
|
#include "stm32_hsem.h"
|
2017-01-23 17:45:42 +01:00
|
|
|
|
2021-03-31 15:46:10 +02:00
|
|
|
#if STM32_SYSCLK_SRC_PLL
|
2017-01-23 17:45:42 +01:00
|
|
|
|
2017-01-30 15:38:13 +01:00
|
|
|
/* Macros to fill up division factors values */
|
2019-03-12 15:15:42 -06:00
|
|
|
#define z_pllm(v) LL_RCC_PLLM_DIV_ ## v
|
|
|
|
#define pllm(v) z_pllm(v)
|
2017-01-23 17:45:42 +01:00
|
|
|
|
2019-03-12 15:15:42 -06:00
|
|
|
#define z_pllr(v) LL_RCC_PLLR_DIV_ ## v
|
|
|
|
#define pllr(v) z_pllr(v)
|
2017-01-23 17:45:42 +01:00
|
|
|
|
|
|
|
/**
|
2022-03-23 15:34:16 +01:00
|
|
|
* @brief Set up pll configuration
|
2017-01-23 17:45:42 +01:00
|
|
|
*/
|
2022-03-23 15:34:16 +01:00
|
|
|
int config_pll_sysclock(void)
|
2017-01-23 17:45:42 +01:00
|
|
|
{
|
2022-03-23 15:34:16 +01:00
|
|
|
uint32_t pll_source, pll_m, pll_n, pll_r;
|
|
|
|
|
2020-02-26 09:07:02 +01:00
|
|
|
#ifdef PWR_CR5_R1MODE
|
|
|
|
/* set power boost mode for sys clock greater than 80MHz */
|
|
|
|
if (sys_clock_hw_cycles_per_sec() >= MHZ(80)) {
|
|
|
|
LL_PWR_EnableRange1BoostMode();
|
|
|
|
}
|
|
|
|
#endif /* PWR_CR5_R1MODE */
|
2022-03-23 15:34:16 +01:00
|
|
|
|
|
|
|
pll_n = STM32_PLL_N_MULTIPLIER;
|
|
|
|
pll_m = pllm(STM32_PLL_M_DIVISOR);
|
|
|
|
pll_r = pllr(STM32_PLL_R_DIVISOR);
|
|
|
|
|
|
|
|
/* Configure PLL source */
|
|
|
|
if (IS_ENABLED(STM32_PLL_SRC_HSI)) {
|
|
|
|
pll_source = LL_RCC_PLLSOURCE_HSI;
|
|
|
|
} else if (IS_ENABLED(STM32_PLL_SRC_HSE)) {
|
|
|
|
pll_source = LL_RCC_PLLSOURCE_HSE;
|
|
|
|
} else if (IS_ENABLED(STM32_PLL_SRC_MSI)) {
|
|
|
|
pll_source = LL_RCC_PLLSOURCE_MSI;
|
|
|
|
} else {
|
|
|
|
return -ENOTSUP;
|
|
|
|
}
|
|
|
|
|
|
|
|
LL_RCC_PLL_ConfigDomain_SYS(pll_source, pll_m, pll_n, pll_r);
|
|
|
|
|
|
|
|
LL_RCC_PLL_EnableDomain_SYS();
|
|
|
|
|
|
|
|
return 0;
|
2017-01-23 17:45:42 +01:00
|
|
|
}
|
2021-03-31 15:46:10 +02:00
|
|
|
#endif /* STM32_SYSCLK_SRC_PLL */
|
2017-04-18 14:24:04 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Activate default clocks
|
|
|
|
*/
|
|
|
|
void config_enable_default_clocks(void)
|
|
|
|
{
|
2021-08-18 17:12:33 +02:00
|
|
|
#ifdef LL_APB1_GRP1_PERIPH_PWR
|
|
|
|
/* Enable the power interface clock */
|
|
|
|
LL_APB1_GRP1_EnableClock(LL_APB1_GRP1_PERIPH_PWR);
|
|
|
|
#endif
|
|
|
|
|
2022-01-18 11:44:01 +01:00
|
|
|
#if STM32_LSE_ENABLED
|
2018-07-11 11:44:02 +02:00
|
|
|
/* LSE belongs to the back-up domain, enable access.*/
|
|
|
|
|
2020-06-23 09:48:07 +02:00
|
|
|
#if defined(CONFIG_SOC_SERIES_STM32WBX)
|
|
|
|
/* HW semaphore Clock enable */
|
|
|
|
LL_AHB3_GRP1_EnableClock(LL_AHB3_GRP1_PERIPH_HSEM);
|
|
|
|
#endif
|
|
|
|
z_stm32_hsem_lock(CFG_HW_RCC_SEMID, HSEM_LOCK_DEFAULT_RETRY);
|
|
|
|
|
2018-07-11 11:44:02 +02:00
|
|
|
/* Set the DBP bit in the Power control register 1 (PWR_CR1) */
|
|
|
|
LL_PWR_EnableBkUpAccess();
|
|
|
|
while (!LL_PWR_IsEnabledBkUpAccess()) {
|
|
|
|
/* Wait for Backup domain access */
|
|
|
|
}
|
|
|
|
|
2022-04-19 11:33:09 +02:00
|
|
|
/* Configure driving capability */
|
|
|
|
LL_RCC_LSE_SetDriveCapability(STM32_LSE_DRIVING << RCC_BDCR_LSEDRV_Pos);
|
2018-07-11 11:44:02 +02:00
|
|
|
/* Enable LSE Oscillator (32.768 kHz) */
|
|
|
|
LL_RCC_LSE_Enable();
|
|
|
|
while (!LL_RCC_LSE_IsReady()) {
|
|
|
|
/* Wait for LSE ready */
|
|
|
|
}
|
|
|
|
|
|
|
|
LL_PWR_DisableBkUpAccess();
|
2020-06-23 09:48:07 +02:00
|
|
|
|
|
|
|
z_stm32_hsem_unlock(CFG_HW_RCC_SEMID);
|
|
|
|
|
2018-07-11 11:44:02 +02:00
|
|
|
#endif
|
2017-04-18 14:24:04 +02:00
|
|
|
}
|