2018-02-05 07:31:07 +01:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* Copyright (c) 2018 Ilya Tagunov
|
|
|
|
*
|
|
|
|
* 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_rcc.h>
|
|
|
|
#include <stm32_ll_utils.h>
|
2022-05-06 10:25:46 +02:00
|
|
|
#include <zephyr/drivers/clock_control.h>
|
|
|
|
#include <zephyr/sys/util.h>
|
|
|
|
#include <zephyr/drivers/clock_control/stm32_clock_control.h>
|
2019-04-11 18:20:15 +02:00
|
|
|
#include "clock_stm32_ll_common.h"
|
2018-02-05 07:31:07 +01:00
|
|
|
|
|
|
|
|
2021-03-31 15:46:10 +02:00
|
|
|
#if STM32_SYSCLK_SRC_PLL
|
2018-02-05 07:31:07 +01:00
|
|
|
|
|
|
|
/* Macros to fill up multiplication and division factors values */
|
2019-03-12 22:15:42 +01:00
|
|
|
#define z_pll_mul(v) LL_RCC_PLL_MUL_ ## v
|
|
|
|
#define pll_mul(v) z_pll_mul(v)
|
2018-02-05 07:31:07 +01:00
|
|
|
|
2019-03-12 22:15:42 +01:00
|
|
|
#define z_pll_div(v) LL_RCC_PLL_DIV_ ## v
|
|
|
|
#define pll_div(v) z_pll_div(v)
|
2018-02-05 07:31:07 +01:00
|
|
|
|
|
|
|
/**
|
2022-03-23 15:34:16 +01:00
|
|
|
* @brief Set up pll configuration
|
2018-02-05 07:31:07 +01:00
|
|
|
*/
|
2022-03-23 15:34:16 +01:00
|
|
|
int config_pll_sysclock(void)
|
2018-02-05 07:31:07 +01:00
|
|
|
{
|
2022-03-23 15:34:16 +01:00
|
|
|
uint32_t pll_source, pll_mul, pll_div;
|
|
|
|
|
|
|
|
pll_mul = pll_mul(STM32_PLL_MULTIPLIER);
|
|
|
|
pll_div = pll_div(STM32_PLL_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 {
|
|
|
|
return -ENOTSUP;
|
|
|
|
}
|
|
|
|
|
|
|
|
LL_RCC_PLL_ConfigDomain_SYS(pll_source, pll_mul, pll_div);
|
|
|
|
|
|
|
|
return 0;
|
2018-02-05 07:31:07 +01:00
|
|
|
}
|
|
|
|
|
2021-03-31 15:46:10 +02:00
|
|
|
#endif /* STM32_SYSCLK_SRC_PLL */
|
2018-02-05 07:31:07 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Activate default clocks
|
|
|
|
*/
|
|
|
|
void config_enable_default_clocks(void)
|
|
|
|
{
|
2020-05-08 13:33:36 +02:00
|
|
|
#if defined(CONFIG_EXTI_STM32) || defined(CONFIG_USB_DC_STM32) || \
|
|
|
|
(defined(CONFIG_SOC_SERIES_STM32L0X) && \
|
|
|
|
defined(CONFIG_ENTROPY_STM32_RNG))
|
2018-05-13 17:56:52 +02:00
|
|
|
/* Enable System Configuration Controller clock. */
|
|
|
|
LL_APB2_GRP1_EnableClock(LL_APB2_GRP1_PERIPH_SYSCFG);
|
|
|
|
#endif
|
2018-02-05 07:31:07 +01:00
|
|
|
}
|