cpu: boards: stm32f2/f4/f7: rework clock configuration and init
This commit is contained in:
parent
bcd59f9789
commit
0d786e3dbb
@ -22,108 +22,444 @@
|
||||
#include "cpu.h"
|
||||
#include "stmclk.h"
|
||||
#include "periph_conf.h"
|
||||
#include "periph/gpio.h"
|
||||
|
||||
/* make sure we have all needed information about the clock configuration */
|
||||
#ifndef CLOCK_HSE
|
||||
#error "Please provide CLOCK_HSE in your board's perhip_conf.h"
|
||||
#endif
|
||||
#ifndef CLOCK_LSE
|
||||
#error "Please provide CLOCK_LSE in your board's periph_conf.h"
|
||||
#endif
|
||||
#ifndef CLOCK_CORECLOCK
|
||||
#error "Please provide CLOCK_CORECLOCK in your board's periph_conf.h"
|
||||
/* PLL configuration */
|
||||
#if IS_ACTIVE(CONFIG_BOARD_HAS_HSE)
|
||||
#define PLL_SRC RCC_PLLCFGR_PLLSRC_HSE
|
||||
#else
|
||||
#define PLL_SRC RCC_PLLCFGR_PLLSRC_HSI
|
||||
#endif
|
||||
|
||||
/**
|
||||
* @name PLL configuration
|
||||
* @{
|
||||
*/
|
||||
/* figure out which input to use */
|
||||
#if (CLOCK_HSE)
|
||||
#define PLL_SRC RCC_PLLCFGR_PLLSRC_HSE
|
||||
/* I2S clock source */
|
||||
#ifndef CONFIG_PLLI2S_SRC
|
||||
#define CONFIG_PLLI2S_SRC (0) /* PLLI2S used as I2S clock source */
|
||||
#else
|
||||
#define PLL_SRC RCC_PLLCFGR_PLLSRC_HSI
|
||||
#define CONFIG_PLLI2S_SRC (1) /* Use external I2S source */
|
||||
#endif
|
||||
|
||||
#if defined(CPU_FAM_STM32F2)
|
||||
#define RCC_PLLCFGR_PLLP_Pos (16U)
|
||||
#define RCC_PLLCFGR_PLLM_Pos (0U)
|
||||
#define RCC_PLLCFGR_PLLN_Pos (6U)
|
||||
#define RCC_PLLCFGR_PLLQ_Pos (24U)
|
||||
|
||||
#define RCC_PLLI2SCFGR_PLLI2SN_Pos (6U)
|
||||
#define RCC_PLLI2SCFGR_PLLI2SR_Pos (28U)
|
||||
/* Compute the bitfields for the PLL configuration */
|
||||
#define PLL_M (CONFIG_CLOCK_PLL_M << RCC_PLLCFGR_PLLM_Pos)
|
||||
#define PLL_N (CONFIG_CLOCK_PLL_N << RCC_PLLCFGR_PLLN_Pos)
|
||||
#define PLL_P (((CONFIG_CLOCK_PLL_P / 2) - 1) << RCC_PLLCFGR_PLLP_Pos)
|
||||
#define PLL_Q (CONFIG_CLOCK_PLL_Q << RCC_PLLCFGR_PLLQ_Pos)
|
||||
#if defined(RCC_PLLCFGR_PLLR_Pos)
|
||||
#define PLL_R (CONFIG_CLOCK_PLL_R << RCC_PLLCFGR_PLLR_Pos)
|
||||
#else
|
||||
#define PLL_R (0)
|
||||
#endif
|
||||
|
||||
#if (CLOCK_ENABLE_PLL_I2S)
|
||||
#ifdef RCC_PLLI2SCFGR_PLLI2SM_Pos
|
||||
#define PLLI2S_M (CLOCK_PLL_I2S_M << RCC_PLLI2SCFGR_PLLI2SM_Pos)
|
||||
#else
|
||||
#define PLLI2S_M (0)
|
||||
#endif
|
||||
#define PLLI2S_N (CLOCK_PLL_I2S_N << RCC_PLLI2SCFGR_PLLI2SN_Pos)
|
||||
#ifdef RCC_PLLI2SCFGR_PLLI2SP_Pos
|
||||
#define PLLI2S_P (((CLOCK_PLL_I2S_P / 2) - 1) << RCC_PLLI2SCFGR_PLLI2SP_Pos)
|
||||
#else
|
||||
#define PLLI2S_P (0)
|
||||
#endif
|
||||
#ifdef RCC_PLLI2SCFGR_PLLI2SQ_Pos
|
||||
#define PLLI2S_Q (CLOCK_PLL_I2S_Q << RCC_PLLI2SCFGR_PLLI2SQ_Pos)
|
||||
#else
|
||||
#define PLLI2S_Q (0)
|
||||
#endif
|
||||
#if defined(RCC_PLLI2SCFGR_PLLI2SR_Pos) && defined(CLOCK_PLL_I2S_R)
|
||||
#define PLLI2S_R (CLOCK_PLL_I2S_R << RCC_PLLI2SCFGR_PLLI2SR_Pos)
|
||||
#else
|
||||
#define PLLI2S_R (0)
|
||||
#endif
|
||||
#endif /* CLOCK_ENABLE_PLLI_2S */
|
||||
/* Select 48MHz clock source between PLLQ, PLLI2SQ or PLLSAIQ. This depends on
|
||||
the PLL parameters and if not possible on CPU lines which can provide 48MHz
|
||||
from PLLI2S or PLLSAI */
|
||||
|
||||
#if (CLOCK_ENABLE_PLL_SAI)
|
||||
#ifdef RCC_PLLSAICFGR_PLLSAIN_Pos
|
||||
#define PLLSAI_M (CLOCK_PLL_SAI_M << RCC_PLLSAICFGR_PLLSAIM_Pos)
|
||||
/* Determine if PLL is required, even if not used as SYSCLK
|
||||
This is the case when USB is used in application and PLLQ is configured to
|
||||
output 48MHz */
|
||||
#if IS_USED(MODULE_PERIPH_USBDEV) && (CLOCK_PLLQ == MHZ(48))
|
||||
#define CLOCK_REQUIRE_PLLQ 1
|
||||
#else
|
||||
#define PLLSAI_M (0)
|
||||
#define CLOCK_REQUIRE_PLLQ 0
|
||||
#endif
|
||||
#define PLLSAI_N (CLOCK_PLL_SAI_N << RCC_PLLSAICFGR_PLLSAIN_Pos)
|
||||
#ifdef RCC_PLLSAICFGR_PLLSAIP_Pos
|
||||
#define PLLSAI_P (((CLOCK_PLL_SAI_P / 2) - 1) << RCC_PLLSAICFGR_PLLSAIP_Pos)
|
||||
#else
|
||||
#define PLLSAI_P (0)
|
||||
#endif
|
||||
#define PLLSAI_Q (CLOCK_PLL_SAI_Q << RCC_PLLSAICFGR_PLLSAIQ_Pos)
|
||||
#if defined(RCC_PLLSAICFGR_PLLSAIR_Pos) && defined(CLOCK_PLL_SAI_R)
|
||||
#define PLLSAI_R (CLOCK_PLL_SAI_R << RCC_PLLSAICFGR_PLLSAIR_Pos)
|
||||
#else
|
||||
#define PLLSAI_R (0)
|
||||
#endif
|
||||
#endif /* CLOCK_ENABLE_PLL_SAI */
|
||||
|
||||
/* now we get the actual bitfields */
|
||||
#define PLL_P (((CLOCK_PLL_P / 2) - 1) << RCC_PLLCFGR_PLLP_Pos)
|
||||
#define PLL_M (CLOCK_PLL_M << RCC_PLLCFGR_PLLM_Pos)
|
||||
#define PLL_N (CLOCK_PLL_N << RCC_PLLCFGR_PLLN_Pos)
|
||||
#define PLL_Q (CLOCK_PLL_Q << RCC_PLLCFGR_PLLQ_Pos)
|
||||
#if defined(RCC_PLLCFGR_PLLR_Pos) && defined(CLOCK_PLL_R)
|
||||
#define PLL_R (CLOCK_PLL_R << RCC_PLLCFGR_PLLR_Pos)
|
||||
/* PLLI2S can only be used for USB with F412/F413/F423 lines
|
||||
PLLI2S is only enabled if no suitable 48MHz clock source can be generated with PLLQ */
|
||||
#if (defined(CPU_LINE_STM32F412Cx) || defined(CPU_LINE_STM32F412Rx) || \
|
||||
defined(CPU_LINE_STM32F412Vx) || defined(CPU_LINE_STM32F412Zx) || \
|
||||
defined(CPU_LINE_STM32F413xx) || defined(CPU_LINE_STM32F423xx)) && \
|
||||
IS_USED(MODULE_PERIPH_USBDEV) && !IS_ACTIVE(CLOCK_REQUIRE_PLLQ)
|
||||
#define CLOCK_REQUIRE_PLLI2SR 1
|
||||
#else
|
||||
#define PLL_R (0)
|
||||
/* Disable PLLI2S if USB is not required or is required but PLLQ cannot generate 48MHz clock */
|
||||
#define CLOCK_REQUIRE_PLLI2SR 0
|
||||
#endif
|
||||
/** @} */
|
||||
|
||||
/**
|
||||
* @name Deduct the needed flash wait states from the core clock frequency
|
||||
* @{
|
||||
*/
|
||||
#define FLASH_WAITSTATES (CLOCK_CORECLOCK / 30000000U)
|
||||
/* PLLSAI can only be used for USB with F446/469/479 lines and F7
|
||||
PLLSAI is only enabled if no suitable 48MHz clock source can be generated with PLLQ */
|
||||
#if (defined(CPU_LINE_STM32F446xx) || defined(CPU_LINE_STM32F469xx) || \
|
||||
defined(CPU_LINE_STM32F479xx) || defined(CPU_FAM_STM32F7)) && \
|
||||
IS_USED(MODULE_PERIPH_USBDEV) && !IS_ACTIVE(CLOCK_REQUIRE_PLLQ)
|
||||
#define CLOCK_REQUIRE_PLLSAIP 1
|
||||
#else
|
||||
/* Disable PLLSAI if USB is not required or is required but PLLQ cannot generate 48MHz clock */
|
||||
#define CLOCK_REQUIRE_PLLSAIP 0
|
||||
#endif
|
||||
|
||||
#if IS_USED(MODULE_PERIPH_USBDEV) && \
|
||||
!(IS_ACTIVE(CLOCK_REQUIRE_PLLQ) || \
|
||||
IS_ACTIVE(CLOCK_REQUIRE_PLLI2SR) || \
|
||||
IS_ACTIVE(CLOCK_REQUIRE_PLLSAIP))
|
||||
#error No suitable 48MHz found, USB will not work
|
||||
#endif
|
||||
|
||||
/* PLLI2S configuration: the following parameters configure a 48MHz I2S clock
|
||||
with HSE (8MHz) or HSI (16MHz) as PLL input clock */
|
||||
#ifndef CONFIG_CLOCK_PLLI2S_M
|
||||
/* PLLM factor is not shared with PLLI2S on F412/413/423/446 cpu lines */
|
||||
#if defined(CPU_LINE_STM32F412Cx) || defined(CPU_LINE_STM32F412Rx) || \
|
||||
defined(CPU_LINE_STM32F412Vx) || defined(CPU_LINE_STM32F412Zx) || \
|
||||
defined(CPU_LINE_STM32F413xx) || defined(CPU_LINE_STM32F423xx) || \
|
||||
defined(CPU_LINE_STM32F446xx)
|
||||
#define CONFIG_CLOCK_PLLI2S_M (4)
|
||||
#else
|
||||
#define CONFIG_CLOCK_PLLI2S_M CONFIG_CLOCK_PLL_M
|
||||
#endif
|
||||
#endif
|
||||
#ifndef CONFIG_CLOCK_PLLI2S_N
|
||||
#if IS_ACTIVE(CONFIG_BOARD_HAS_HSE)
|
||||
#define CONFIG_CLOCK_PLLI2S_N (192)
|
||||
#else
|
||||
#define CONFIG_CLOCK_PLLI2S_N (96)
|
||||
#endif
|
||||
#endif
|
||||
#ifndef CONFIG_CLOCK_PLLI2S_P
|
||||
#define CONFIG_CLOCK_PLLI2S_P (8) /* SPDIF-Rx clock, 48MHz by default */
|
||||
#endif
|
||||
#ifndef CONFIG_CLOCK_PLLI2S_Q
|
||||
#define CONFIG_CLOCK_PLLI2S_Q (8) /* Alternative 48MHz clock (USB) and/or MCO2 PLLI2S */
|
||||
#endif
|
||||
#ifndef CONFIG_CLOCK_PLLI2S_R
|
||||
#define CONFIG_CLOCK_PLLI2S_R (8) /* I2S clock, 48MHz by default */
|
||||
#endif
|
||||
|
||||
#if defined(RCC_PLLI2SCFGR_PLLI2SM_Pos)
|
||||
#define PLLI2S_M (CONFIG_CLOCK_PLLI2S_M << RCC_PLLI2SCFGR_PLLI2SM_Pos)
|
||||
#else
|
||||
#define PLLI2S_M (0)
|
||||
#endif
|
||||
#if defined(RCC_PLLI2SCFGR_PLLI2SN_Pos)
|
||||
#define PLLI2S_N (CONFIG_CLOCK_PLLI2S_N << RCC_PLLI2SCFGR_PLLI2SN_Pos)
|
||||
#else
|
||||
#define PLLI2S_N (0)
|
||||
#endif
|
||||
#if defined(RCC_PLLI2SCFGR_PLLI2SP_Pos)
|
||||
#define PLLI2S_P (((CONFIG_CLOCK_PLLI2S_P >> 1) - 1) << RCC_PLLI2SCFGR_PLLI2SP_Pos)
|
||||
#else
|
||||
#define PLLI2S_P (0)
|
||||
#endif
|
||||
#if defined(RCC_PLLI2SCFGR_PLLI2SQ_Pos)
|
||||
#define PLLI2S_Q (CONFIG_CLOCK_PLLI2S_Q << RCC_PLLI2SCFGR_PLLI2SQ_Pos)
|
||||
#else
|
||||
#define PLLI2S_Q (0)
|
||||
#endif
|
||||
#if defined(RCC_PLLI2SCFGR_PLLI2SR_Pos)
|
||||
#define PLLI2S_R (CONFIG_CLOCK_PLLI2S_R << RCC_PLLI2SCFGR_PLLI2SR_Pos)
|
||||
#else
|
||||
#define PLLI2S_R (0)
|
||||
#endif
|
||||
|
||||
/* PLLSAI configuration: the following parameters configure a 48MHz SAI clock
|
||||
with HSE (8MHz) or HSI (16MHz) as PLL input clock */
|
||||
#ifndef CONFIG_CLOCK_PLLSAI_M
|
||||
/* PLLM factor is not shared with PLLSAI on F412/413/423/446 cpu lines */
|
||||
#if defined(CPU_LINE_STM32F412Cx) || defined(CPU_LINE_STM32F412Rx) || \
|
||||
defined(CPU_LINE_STM32F412Vx) || defined(CPU_LINE_STM32F412Zx) || \
|
||||
defined(CPU_LINE_STM32F413xx) || defined(CPU_LINE_STM32F423xx) || \
|
||||
defined(CPU_LINE_STM32F446xx)
|
||||
#define CONFIG_CLOCK_PLLSAI_M (4)
|
||||
#else
|
||||
#define CONFIG_CLOCK_PLLSAI_M CONFIG_CLOCK_PLL_M
|
||||
#endif
|
||||
#endif
|
||||
#ifndef CONFIG_CLOCK_PLLSAI_N
|
||||
#if IS_ACTIVE(CONFIG_BOARD_HAS_HSE)
|
||||
#define CONFIG_CLOCK_PLLSAI_N (192)
|
||||
#else
|
||||
#define CONFIG_CLOCK_PLLSAI_N (96)
|
||||
#endif
|
||||
#endif
|
||||
#ifndef CONFIG_CLOCK_PLLSAI_P
|
||||
#define CONFIG_CLOCK_PLLSAI_P (8) /* Alternative 48MHz clock (USB) */
|
||||
#endif
|
||||
#ifndef CONFIG_CLOCK_PLLSAI_Q
|
||||
#define CONFIG_CLOCK_PLLSAI_Q (8) /* SAI clock, 48MHz by default */
|
||||
#endif
|
||||
#ifndef CONFIG_CLOCK_PLLSAI_R
|
||||
#define CONFIG_CLOCK_PLLSAI_R (8) /* LCD clock, 48MHz by default */
|
||||
#endif
|
||||
|
||||
#if defined(RCC_PLLSAICFGR_PLLSAIM_Pos)
|
||||
#define PLLSAI_M (CONFIG_CLOCK_PLLSAI_M << RCC_PLLSAICFGR_PLLSAIM_Pos)
|
||||
#else
|
||||
#define PLLSAI_M (0)
|
||||
#endif
|
||||
#if defined(RCC_PLLSAICFGR_PLLSAIN_Pos)
|
||||
#define PLLSAI_N (CONFIG_CLOCK_PLLSAI_N << RCC_PLLSAICFGR_PLLSAIN_Pos)
|
||||
#else
|
||||
#define PLLSAI_N (0)
|
||||
#endif
|
||||
#if defined(RCC_PLLSAICFGR_PLLSAIP_Pos)
|
||||
#define PLLSAI_P (((CONFIG_CLOCK_PLLSAI_P >> 1) - 1) << RCC_PLLSAICFGR_PLLSAIP_Pos)
|
||||
#else
|
||||
#define PLLSAI_P (0)
|
||||
#endif
|
||||
#if defined(RCC_PLLSAICFGR_PLLSAIQ_Pos)
|
||||
#define PLLSAI_Q (CONFIG_CLOCK_PLLSAI_Q << RCC_PLLSAICFGR_PLLSAIQ_Pos)
|
||||
#else
|
||||
#define PLLSAI_Q (0)
|
||||
#endif
|
||||
#if defined(RCC_PLLSAICFGR_PLLSAIR_Pos)
|
||||
#define PLLSAI_R (CONFIG_CLOCK_PLLSAI_R << RCC_PLLSAICFGR_PLLSAIR_Pos)
|
||||
#else
|
||||
#define PLLSAI_R (0)
|
||||
#endif
|
||||
|
||||
/* Configure HLCK and PCLK prescalers */
|
||||
#define CLOCK_AHB_DIV (RCC_CFGR_HPRE_DIV1)
|
||||
|
||||
#if CONFIG_CLOCK_APB1_DIV == 1
|
||||
#define CLOCK_APB1_DIV (RCC_CFGR_PPRE1_DIV1)
|
||||
#elif CONFIG_CLOCK_APB1_DIV == 2
|
||||
#define CLOCK_APB1_DIV (RCC_CFGR_PPRE1_DIV2)
|
||||
#elif CONFIG_CLOCK_APB1_DIV == 4
|
||||
#define CLOCK_APB1_DIV (RCC_CFGR_PPRE1_DIV4)
|
||||
#elif CONFIG_CLOCK_APB1_DIV == 8
|
||||
#define CLOCK_APB1_DIV (RCC_CFGR_PPRE1_DIV8)
|
||||
#elif CONFIG_CLOCK_APB1_DIV == 16
|
||||
#define CLOCK_APB1_DIV (RCC_CFGR_PPRE1_DIV16)
|
||||
#else
|
||||
#error "Invalid APB1 prescaler value (only 1, 2, 4, 8 and 16 allowed)"
|
||||
#endif
|
||||
|
||||
#if CONFIG_CLOCK_APB2_DIV == 1
|
||||
#define CLOCK_APB2_DIV (RCC_CFGR_PPRE2_DIV1)
|
||||
#elif CONFIG_CLOCK_APB2_DIV == 2
|
||||
#define CLOCK_APB2_DIV (RCC_CFGR_PPRE2_DIV2)
|
||||
#elif CONFIG_CLOCK_APB2_DIV == 4
|
||||
#define CLOCK_APB2_DIV (RCC_CFGR_PPRE2_DIV4)
|
||||
#elif CONFIG_CLOCK_APB2_DIV == 8
|
||||
#define CLOCK_APB2_DIV (RCC_CFGR_PPRE2_DIV8)
|
||||
#elif CONFIG_CLOCK_APB2_DIV == 16
|
||||
#define CLOCK_APB2_DIV (RCC_CFGR_PPRE2_DIV16)
|
||||
#else
|
||||
#error "Invalid APB2 prescaler value (only 1, 2, 4, 8 and 16 allowed)"
|
||||
#endif
|
||||
|
||||
/* Deduct the needed flash wait states from the core clock frequency */
|
||||
#define FLASH_WAITSTATES (CLOCK_CORECLOCK / 30000000U)
|
||||
/* we enable I+D cashes, pre-fetch, and we set the actual number of
|
||||
* needed flash wait states */
|
||||
#if defined(CPU_FAM_STM32F2) || defined(CPU_FAM_STM32F4)
|
||||
#define FLASH_ACR_CONFIG (FLASH_ACR_ICEN | FLASH_ACR_DCEN | FLASH_ACR_PRFTEN | FLASH_WAITSTATES)
|
||||
#define FLASH_ACR_CONFIG (FLASH_ACR_ICEN | FLASH_ACR_DCEN | FLASH_ACR_PRFTEN | FLASH_WAITSTATES)
|
||||
#elif defined(CPU_FAM_STM32F7)
|
||||
#define FLASH_ACR_CONFIG (FLASH_ACR_ARTEN | FLASH_ACR_PRFTEN | FLASH_WAITSTATES)
|
||||
#define FLASH_ACR_CONFIG (FLASH_ACR_ARTEN | FLASH_ACR_PRFTEN | FLASH_WAITSTATES)
|
||||
#endif
|
||||
|
||||
/* Default is not configure MCO1 */
|
||||
#ifndef CONFIG_CLOCK_ENABLE_MCO1
|
||||
#define CONFIG_CLOCK_ENABLE_MCO1 0
|
||||
#endif
|
||||
|
||||
#if !defined(RCC_CFGR_MCO1) && IS_ACTIVE(CONFIG_CLOCK_ENABLE_MCO1)
|
||||
#error "stmclk: no MCO1 on this device"
|
||||
#endif
|
||||
|
||||
/* Configure the MCO1 clock source: options are PLL (default), HSE or HSI */
|
||||
#ifndef CONFIG_CLOCK_MCO1_USE_PLL
|
||||
#if IS_ACTIVE(CONFIG_CLOCK_MCO1_USE_HSE) || IS_ACTIVE(CONFIG_CLOCK_MCO1_USE_HSI)
|
||||
#define CONFIG_CLOCK_MCO1_USE_PLL 0
|
||||
#else
|
||||
#define CONFIG_CLOCK_MCO1_USE_PLL 1 /* Use PLL by default */
|
||||
#endif
|
||||
#endif /* CONFIG_CLOCK_MCO1_USE_PLL */
|
||||
|
||||
#ifndef CONFIG_CLOCK_MCO1_USE_HSE
|
||||
#define CONFIG_CLOCK_MCO1_USE_HSE 0
|
||||
#endif /* CONFIG_CLOCK_MCO1_USE_HSE */
|
||||
|
||||
#ifndef CONFIG_CLOCK_MCO1_USE_HSI
|
||||
#define CONFIG_CLOCK_MCO1_USE_HSI 0
|
||||
#endif /* CONFIG_CLOCK_MCO1_USE_HSI */
|
||||
|
||||
#if IS_ACTIVE(CONFIG_CLOCK_MCO1_USE_PLL) && \
|
||||
(IS_ACTIVE(CONFIG_CLOCK_MCO1_USE_HSE) || IS_ACTIVE(CONFIG_CLOCK_MCO1_USE_HSI))
|
||||
#error "Cannot use PLL as MCO1 clock source with other clock"
|
||||
#endif
|
||||
|
||||
#if IS_ACTIVE(CONFIG_CLOCK_MCO1_USE_HSE) && \
|
||||
(IS_ACTIVE(CONFIG_CLOCK_MCO1_USE_PLL) || IS_ACTIVE(CONFIG_CLOCK_MCO1_USE_HSI))
|
||||
#error "Cannot use HSE as MCO1 clock source with other clock"
|
||||
#endif
|
||||
|
||||
#if IS_ACTIVE(CONFIG_CLOCK_MCO1_USE_HSI) && \
|
||||
(IS_ACTIVE(CONFIG_CLOCK_MCO1_USE_HSE) || IS_ACTIVE(CONFIG_CLOCK_MCO1_USE_PLL))
|
||||
#error "Cannot use HSI as MCO1 clock source with other clock"
|
||||
#endif
|
||||
|
||||
#if IS_ACTIVE(CONFIG_CLOCK_MCO1_USE_PLL)
|
||||
#define CLOCK_MCO1_SRC (RCC_CFGR_MCO1_1 | RCC_CFGR_MCO1_0)
|
||||
#elif IS_ACTIVE(CONFIG_CLOCK_MCO1_USE_HSE)
|
||||
#define CLOCK_MCO1_SRC (RCC_CFGR_MCO1_1)
|
||||
#elif IS_ACTIVE(CONFIG_CLOCK_MCO1_USE_HSI)
|
||||
#define CLOCK_MCO1_SRC (0)
|
||||
#else
|
||||
#error "Invalid MCO1 clock source selection"
|
||||
#endif
|
||||
|
||||
/* Configure the MCO1 prescaler: options are 1 to 5 */
|
||||
#ifndef CONFIG_CLOCK_MCO1_PRE
|
||||
#define CONFIG_CLOCK_MCO1_PRE (1)
|
||||
#endif
|
||||
|
||||
#if CONFIG_CLOCK_MCO1_PRE == 1
|
||||
#define CLOCK_MCO1_PRE (0)
|
||||
#elif CONFIG_CLOCK_MCO1_PRE == 2
|
||||
#define CLOCK_MCO1_PRE (RCC_CFGR_MCO1PRE_2)
|
||||
#elif CONFIG_CLOCK_MCO1_PRE == 3
|
||||
#define CLOCK_MCO1_PRE (RCC_CFGR_MCO1PRE_2 | RCC_CFGR_MCO1PRE_0)
|
||||
#elif CONFIG_CLOCK_MCO1_PRE == 4
|
||||
#define CLOCK_MCO1_PRE (RCC_CFGR_MCO1PRE_2 | RCC_CFGR_MCO1PRE_1)
|
||||
#elif CONFIG_CLOCK_MCO1_PRE == 5
|
||||
#define CLOCK_MCO1_PRE (RCC_CFGR_MCO1PRE_2 | RCC_CFGR_MCO1PRE_1 | RCC_CFGR_MCO1PRE_0)
|
||||
#else
|
||||
#error "Invalid MCO1 prescaler"
|
||||
#endif
|
||||
|
||||
/* Default is not configure MCO2 */
|
||||
#ifndef CONFIG_CLOCK_ENABLE_MCO2
|
||||
#define CONFIG_CLOCK_ENABLE_MCO2 0
|
||||
#endif
|
||||
|
||||
#if !defined(RCC_CFGR_MCO2) && IS_ACTIVE(CONFIG_CLOCK_ENABLE_MCO2)
|
||||
#error "stmclk: no MCO2 on this device"
|
||||
#endif
|
||||
|
||||
/* Configure the MCO2 clock source: options are PLL (default), HSE, HSI or LSE */
|
||||
#ifndef CONFIG_CLOCK_MCO2_USE_PLL
|
||||
#if IS_ACTIVE(CONFIG_CLOCK_MCO2_USE_HSE) || IS_ACTIVE(CONFIG_CLOCK_MCO2_USE_PLLI2S) || \
|
||||
IS_ACTIVE(CONFIG_CLOCK_MCO2_USE_SYSCLK)
|
||||
#define CONFIG_CLOCK_MCO2_USE_PLL 0
|
||||
#else
|
||||
#define CONFIG_CLOCK_MCO2_USE_PLL 1 /* Use PLL by default */
|
||||
#endif
|
||||
#endif /* CONFIG_CLOCK_MCO2_USE_PLL */
|
||||
|
||||
#ifndef CONFIG_CLOCK_MCO2_USE_HSE
|
||||
#define CONFIG_CLOCK_MCO2_USE_HSE 0
|
||||
#endif /* CONFIG_CLOCK_MCO2_USE_HSE */
|
||||
|
||||
#ifndef CONFIG_CLOCK_MCO2_USE_PLLI2S
|
||||
#define CONFIG_CLOCK_MCO2_USE_PLLI2S 0
|
||||
#endif /* CONFIG_CLOCK_MCO2_USE_PLLI2S */
|
||||
|
||||
#ifndef CONFIG_CLOCK_MCO2_USE_SYSCLK
|
||||
#define CONFIG_CLOCK_MCO2_USE_SYSCLK 0
|
||||
#endif /* CONFIG_CLOCK_MCO2_USE_SYSCLK */
|
||||
|
||||
#if IS_ACTIVE(CONFIG_CLOCK_MCO2_USE_PLL) && \
|
||||
(IS_ACTIVE(CONFIG_CLOCK_MCO2_USE_HSE) || IS_ACTIVE(CONFIG_CLOCK_MCO2_USE_PLLI2S) || \
|
||||
IS_ACTIVE(CONFIG_CLOCK_MCO2_USE_SYSCLK))
|
||||
#error "Cannot use PLL as MCO2 clock source with other clock"
|
||||
#endif
|
||||
|
||||
#if IS_ACTIVE(CONFIG_CLOCK_MCO2_USE_HSE) && \
|
||||
(IS_ACTIVE(CONFIG_CLOCK_MCO2_USE_PLL) || IS_ACTIVE(CONFIG_CLOCK_MCO2_USE_PLLI2S) || \
|
||||
IS_ACTIVE(CONFIG_CLOCK_MCO2_USE_SYSCLK))
|
||||
#error "Cannot use HSE as MCO2 clock source with other clock"
|
||||
#endif
|
||||
|
||||
#if IS_ACTIVE(CONFIG_CLOCK_MCO2_USE_PLLI2S) && \
|
||||
(IS_ACTIVE(CONFIG_CLOCK_MCO2_USE_HSE) || IS_ACTIVE(CONFIG_CLOCK_MCO2_USE_PLL) || \
|
||||
IS_ACTIVE(CONFIG_CLOCK_MCO2_USE_SYSCLK))
|
||||
#error "Cannot use PLLI2S as MCO2 clock source with other clock"
|
||||
#endif
|
||||
|
||||
#if IS_ACTIVE(CONFIG_CLOCK_MCO2_USE_SYSCLK) && \
|
||||
(IS_ACTIVE(CONFIG_CLOCK_MCO2_USE_HSE) || IS_ACTIVE(CONFIG_CLOCK_MCO2_USE_PLLI2S) || \
|
||||
IS_ACTIVE(CONFIG_CLOCK_MCO2_USE_PLL))
|
||||
#error "Cannot use SYSCLK as MCO2 clock source with other clock"
|
||||
#endif
|
||||
|
||||
#if IS_ACTIVE(CONFIG_CLOCK_MCO2_USE_PLL)
|
||||
#define CLOCK_MCO2_SRC (RCC_CFGR_MCO2_1 | RCC_CFGR_MCO2_0)
|
||||
#elif IS_ACTIVE(CONFIG_CLOCK_MCO2_USE_HSE)
|
||||
#define CLOCK_MCO2_SRC (RCC_CFGR_MCO2_1)
|
||||
#elif IS_ACTIVE(CONFIG_CLOCK_MCO2_USE_PLLI2S)
|
||||
#define CLOCK_MCO2_SRC (RCC_CFGR_MCO2_0)
|
||||
#elif IS_ACTIVE(CONFIG_CLOCK_MCO2_USE_SYSCLK)
|
||||
#define CLOCK_MCO2_SRC (0)
|
||||
#else
|
||||
#error "Invalid MCO2 clock source selection"
|
||||
#endif
|
||||
|
||||
/* Configure the MCO2 prescaler: options are 1 to 5 */
|
||||
#ifndef CONFIG_CLOCK_MCO2_PRE
|
||||
#define CONFIG_CLOCK_MCO2_PRE (1)
|
||||
#endif
|
||||
|
||||
#if CONFIG_CLOCK_MCO2_PRE == 1
|
||||
#define CLOCK_MCO2_PRE (0)
|
||||
#elif CONFIG_CLOCK_MCO2_PRE == 2
|
||||
#define CLOCK_MCO2_PRE (RCC_CFGR_MCO2PRE_2)
|
||||
#elif CONFIG_CLOCK_MCO2_PRE == 3
|
||||
#define CLOCK_MCO2_PRE (RCC_CFGR_MCO2PRE_2 | RCC_CFGR_MCO2PRE_0)
|
||||
#elif CONFIG_CLOCK_MCO2_PRE == 4
|
||||
#define CLOCK_MCO2_PRE (RCC_CFGR_MCO2PRE_2 | RCC_CFGR_MCO2PRE_1)
|
||||
#elif CONFIG_CLOCK_MCO2_PRE == 5
|
||||
#define CLOCK_MCO2_PRE (RCC_CFGR_MCO2PRE_2 | RCC_CFGR_MCO2PRE_1 | RCC_CFGR_MCO2PRE_0)
|
||||
#else
|
||||
#error "Invalid MCO1 prescaler"
|
||||
#endif
|
||||
|
||||
/* Check whether PLL must be enabled:
|
||||
- When PLL is used as SYSCLK
|
||||
- When PLLQ is required
|
||||
- When PLL is used as input source for MCO1 or MCO2
|
||||
*/
|
||||
#if IS_ACTIVE(CONFIG_USE_CLOCK_PLL) || IS_ACTIVE(CONFIG_CLOCK_ENABLE_PLLQ) || \
|
||||
(IS_ACTIVE(CONFIG_CLOCK_ENABLE_MCO1) && IS_ACTIVE(CONFIG_CLOCK_MCO1_USE_PLL)) || \
|
||||
(IS_ACTIVE(CONFIG_CLOCK_ENABLE_MCO2) && IS_ACTIVE(CONFIG_CLOCK_MCO2_USE_PLL))
|
||||
#define CLOCK_ENABLE_PLL 1
|
||||
#else
|
||||
#define CLOCK_ENABLE_PLL 0
|
||||
#endif
|
||||
|
||||
/* Check whether HSE must be enabled:
|
||||
- When HSE is used as SYSCLK
|
||||
- When PLL is used as SYSCLK and the board provides HSE (since HSE will be
|
||||
used as PLL input clock)
|
||||
- When HSE is used input source for MCO1 or MCO2
|
||||
*/
|
||||
#if IS_ACTIVE(CONFIG_USE_CLOCK_HSE) || \
|
||||
(IS_ACTIVE(CONFIG_BOARD_HAS_HSE) && IS_ACTIVE(CLOCK_ENABLE_PLL)) || \
|
||||
(IS_ACTIVE(CONFIG_CLOCK_ENABLE_MCO1) && IS_ACTIVE(CONFIG_CLOCK_MCO1_USE_HSE)) || \
|
||||
(IS_ACTIVE(CONFIG_CLOCK_ENABLE_MCO2) && IS_ACTIVE(CONFIG_CLOCK_MCO2_USE_HSE))
|
||||
#define CLOCK_ENABLE_HSE 1
|
||||
#else
|
||||
#define CLOCK_ENABLE_HSE 0
|
||||
#endif
|
||||
|
||||
/* Check whether HSI must be enabled:
|
||||
- When HSI is used as SYSCLK
|
||||
- When PLL is used as SYSCLK and the board doesn't provide HSE (since HSI will be
|
||||
used as PLL input clock)
|
||||
- When HSI is used input source for MCO1
|
||||
*/
|
||||
#if IS_ACTIVE(CONFIG_USE_CLOCK_HSI) || \
|
||||
(!IS_ACTIVE(CONFIG_BOARD_HAS_HSE) && IS_ACTIVE(CLOCK_ENABLE_PLL)) || \
|
||||
(IS_ACTIVE(CONFIG_CLOCK_ENABLE_MCO1) && IS_ACTIVE(CONFIG_CLOCK_MCO1_USE_HSE))
|
||||
#define CLOCK_ENABLE_HSI 1
|
||||
#else
|
||||
#define CLOCK_ENABLE_HSI 0
|
||||
#endif
|
||||
|
||||
/* Check whether PLLI2S must be enabled:
|
||||
- When PLLI2SR is required
|
||||
- When PLLI2S is used as input clock for MCO2
|
||||
*/
|
||||
#if IS_ACTIVE(CLOCK_REQUIRE_PLLI2SR) || \
|
||||
(IS_ACTIVE(CONFIG_CLOCK_ENABLE_MCO2) && IS_ACTIVE(CONFIG_CLOCK_MCO2_USE_PLLI2S))
|
||||
#define CLOCK_ENABLE_PLLI2S 1
|
||||
#else
|
||||
#define CLOCK_ENABLE_PLLI2S 0
|
||||
#endif
|
||||
|
||||
/* Check whether PLLSAI must be enabled */
|
||||
#if IS_ACTIVE(CLOCK_REQUIRE_PLLSAIP)
|
||||
#define CLOCK_ENABLE_PLLSAI 1
|
||||
#else
|
||||
#define CLOCK_ENABLE_PLLSAI 0
|
||||
#endif
|
||||
/** @} */
|
||||
|
||||
void stmclk_init_sysclk(void)
|
||||
{
|
||||
@ -137,8 +473,7 @@ void stmclk_init_sysclk(void)
|
||||
|
||||
/* use HSI as system clock while we do any further configuration and
|
||||
* configure the AHB and APB clock dividers as configure by the board */
|
||||
RCC->CFGR = (RCC_CFGR_SW_HSI | CLOCK_AHB_DIV |
|
||||
CLOCK_APB1_DIV | CLOCK_APB2_DIV);
|
||||
RCC->CFGR = (RCC_CFGR_SW_HSI | CLOCK_AHB_DIV | CLOCK_APB1_DIV | CLOCK_APB2_DIV);
|
||||
while ((RCC->CFGR & RCC_CFGR_SWS) != RCC_CFGR_SWS_HSI) {}
|
||||
|
||||
/* Flash config */
|
||||
@ -147,49 +482,74 @@ void stmclk_init_sysclk(void)
|
||||
/* disable all active clocks except HSI -> resets the clk configuration */
|
||||
RCC->CR = (RCC_CR_HSION | RCC_CR_HSITRIM_4);
|
||||
|
||||
#if (CLOCK_MCO1_SRC)
|
||||
#ifndef RCC_CFGR_MCO1
|
||||
#error "stmclk: no MCO1 on this device"
|
||||
#endif
|
||||
RCC->CFGR |= CLOCK_MCO1_SRC | CLOCK_MCO1_PRE;
|
||||
#endif
|
||||
#if (CLOCK_MCO2_SRC)
|
||||
#ifndef RCC_CFGR_MCO2
|
||||
#error "stmclk: no MCO2 on this device"
|
||||
#endif
|
||||
RCC->CFGR |= CLOCK_MCO2_SRC | CLOCK_MCO2_PRE;
|
||||
if (IS_ACTIVE(CONFIG_CLOCK_ENABLE_MCO1)) {
|
||||
RCC->CFGR |= CLOCK_MCO1_SRC | CLOCK_MCO1_PRE;
|
||||
|
||||
/* Configure GPIO pin (PA8/AF0) */
|
||||
gpio_init(GPIO_PIN(PORT_A, 8), GPIO_OUT);
|
||||
gpio_init_af(GPIO_PIN(PORT_A, 8), GPIO_AF0);
|
||||
}
|
||||
|
||||
if (IS_ACTIVE(CONFIG_CLOCK_ENABLE_MCO2)) {
|
||||
RCC->CFGR |= CLOCK_MCO2_SRC | CLOCK_MCO2_PRE;
|
||||
|
||||
/* Configure GPIO pin (PC9/AF0) */
|
||||
gpio_init(GPIO_PIN(PORT_C, 9), GPIO_OUT);
|
||||
gpio_init_af(GPIO_PIN(PORT_C, 9), GPIO_AF0);
|
||||
}
|
||||
|
||||
/* Enable HSE if required */
|
||||
if (IS_ACTIVE(CLOCK_ENABLE_HSE)) {
|
||||
RCC->CR |= (RCC_CR_HSEON);
|
||||
while (!(RCC->CR & RCC_CR_HSERDY)) {}
|
||||
}
|
||||
|
||||
/* Enable PLL if required */
|
||||
if (IS_ACTIVE(CLOCK_ENABLE_PLL)) {
|
||||
/* now we can safely configure and start the PLL */
|
||||
RCC->PLLCFGR = (PLL_SRC | PLL_M | PLL_N | PLL_P | PLL_Q | PLL_R);
|
||||
RCC->CR |= (RCC_CR_PLLON);
|
||||
while (!(RCC->CR & RCC_CR_PLLRDY)) {}
|
||||
}
|
||||
|
||||
/* Configure SYSCLK */
|
||||
if (IS_ACTIVE(CONFIG_USE_CLOCK_HSE)) {
|
||||
/* Enable HSE as system clock */
|
||||
RCC->CFGR |= (RCC_CFGR_SW_HSE);
|
||||
while ((RCC->CFGR & RCC_CFGR_SWS) != RCC_CFGR_SWS_HSE) {}
|
||||
}
|
||||
else if (IS_ACTIVE(CONFIG_USE_CLOCK_PLL)) {
|
||||
/* Enable PLLP as system clock */
|
||||
RCC->CFGR |= (RCC_CFGR_SW_PLL);
|
||||
while ((RCC->CFGR & RCC_CFGR_SWS) != RCC_CFGR_SWS_PLL) {}
|
||||
}
|
||||
|
||||
if (!IS_ACTIVE(CLOCK_ENABLE_HSI)) {
|
||||
/* Disable HSI only if not used */
|
||||
stmclk_disable_hsi();
|
||||
}
|
||||
|
||||
#if defined(RCC_CR_PLLI2SON)
|
||||
if (IS_ACTIVE(CLOCK_ENABLE_PLLI2S)) {
|
||||
RCC->PLLI2SCFGR = (CONFIG_PLLI2S_SRC | PLLI2S_M | PLLI2S_N | PLLI2S_P | PLLI2S_Q | PLLI2S_R);
|
||||
RCC->CR |= (RCC_CR_PLLI2SON);
|
||||
while (!(RCC->CR & RCC_CR_PLLI2SRDY)) {}
|
||||
}
|
||||
#endif
|
||||
|
||||
/* if configured, we need to enable the HSE clock now */
|
||||
#if (CLOCK_HSE)
|
||||
RCC->CR |= (RCC_CR_HSEON);
|
||||
while (!(RCC->CR & RCC_CR_HSERDY)) {}
|
||||
#if defined(RCC_CR_PLLSAION)
|
||||
if (IS_ACTIVE(CLOCK_ENABLE_PLLSAI)) {
|
||||
RCC->PLLSAICFGR = (PLLSAI_M | PLLSAI_N | PLLSAI_P | PLLSAI_Q | PLLSAI_R);
|
||||
RCC->CR |= (RCC_CR_PLLSAION);
|
||||
while (!(RCC->CR & RCC_CR_PLLSAIRDY)) {}
|
||||
}
|
||||
#endif
|
||||
|
||||
#if CLOCK_USE_ALT_48MHZ
|
||||
RCC->DCKCFGR2 |= RCC_DCKCFGR2_CK48MSEL;
|
||||
#endif
|
||||
/* now we can safely configure and start the PLL */
|
||||
RCC->PLLCFGR = (PLL_SRC | PLL_M | PLL_N | PLL_P | PLL_Q | PLL_R);
|
||||
RCC->CR |= (RCC_CR_PLLON);
|
||||
while (!(RCC->CR & RCC_CR_PLLRDY)) {}
|
||||
|
||||
/* now that the PLL is running, we use it as system clock */
|
||||
RCC->CFGR |= (RCC_CFGR_SW_PLL);
|
||||
while ((RCC->CFGR & RCC_CFGR_SWS) != RCC_CFGR_SWS_PLL) {}
|
||||
|
||||
stmclk_disable_hsi();
|
||||
|
||||
#if (CLOCK_ENABLE_PLL_I2S)
|
||||
RCC->PLLI2SCFGR = (CLOCK_PLL_I2S_SRC | PLLI2S_M | PLLI2S_N | PLLI2S_P | PLLI2S_Q | PLLI2S_R);
|
||||
RCC->CR |= (RCC_CR_PLLI2SON);
|
||||
while (!(RCC->CR & RCC_CR_PLLI2SRDY)) {}
|
||||
#endif /* CLOCK_ENABLE_PLLI2S */
|
||||
|
||||
#if (CLOCK_ENABLE_PLL_SAI)
|
||||
RCC->PLLSAICFGR = (PLLSAI_M | PLLSAI_N | PLLSAI_P | PLLSAI_Q | PLLSAI_R);
|
||||
RCC->CR |= (RCC_CR_PLLSAION);
|
||||
while (!(RCC->CR & RCC_CR_PLLSAIRDY)) {}
|
||||
#if defined(RCC_DCKCFGR2_CK48MSEL)
|
||||
if (IS_ACTIVE(CLOCK_ENABLE_PLLI2S) || IS_ACTIVE(CLOCK_ENABLE_PLLSAI)) {
|
||||
/* Use PLLSAI_P or PLLI2S_Q clock source */
|
||||
RCC->DCKCFGR2 |= RCC_DCKCFGR2_CK48MSEL;
|
||||
}
|
||||
#endif
|
||||
|
||||
irq_restore(is);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user