19#ifndef CLK_U5_CFG_CLOCK_DEFAULT_H
20#define CLK_U5_CFG_CLOCK_DEFAULT_H
34#if IS_ACTIVE(CONFIG_BOARD_HAS_HSE) && (CONFIG_CLOCK_HSE < MHZ(4) || CONFIG_CLOCK_HSE > MHZ(48))
35#error "HSE clock frequency must be between 4MHz and 48MHz"
39#ifndef CONFIG_CLOCK_PLL_SRC_MSI
40#if IS_ACTIVE(CONFIG_CLOCK_PLL_SRC_HSE) || IS_ACTIVE(CONFIG_CLOCK_PLL_SRC_HSI) || \
41 IS_ACTIVE(CONFIG_BOARD_HAS_HSE)
42#define CONFIG_CLOCK_PLL_SRC_MSI 0
44#define CONFIG_CLOCK_PLL_SRC_MSI 1
47#ifndef CONFIG_CLOCK_PLL_SRC_HSE
48#if IS_ACTIVE(CONFIG_BOARD_HAS_HSE) && \
49 !IS_ACTIVE(CONFIG_CLOCK_PLL_SRC_HSI) && !IS_ACTIVE(CONFIG_CLOCK_PLL_SRC_MSI)
50#define CONFIG_CLOCK_PLL_SRC_HSE 1
52#define CONFIG_CLOCK_PLL_SRC_HSE 0
55#ifndef CONFIG_CLOCK_PLL_SRC_HSI
56#define CONFIG_CLOCK_PLL_SRC_HSI 0
58#if IS_ACTIVE(CONFIG_CLOCK_PLL_SRC_MSI)
59#define CLOCK_PLL_SRC (CONFIG_CLOCK_MSI)
60#elif IS_ACTIVE(CONFIG_CLOCK_PLL_SRC_HSE)
61#define CLOCK_PLL_SRC (CONFIG_CLOCK_HSE)
63#define CLOCK_PLL_SRC (CONFIG_CLOCK_HSI)
65#ifndef CONFIG_CLOCK_PLL_M
66#if IS_ACTIVE(CONFIG_CLOCK_PLL_SRC_MSI)
67#define CONFIG_CLOCK_PLL_M (6)
69#define CONFIG_CLOCK_PLL_M (2)
72#ifndef CONFIG_CLOCK_PLL_N
73#define CONFIG_CLOCK_PLL_N (40)
75#ifndef CONFIG_CLOCK_PLL_Q
76#define CONFIG_CLOCK_PLL_Q (2)
78#ifndef CONFIG_CLOCK_PLL_R
79#define CONFIG_CLOCK_PLL_R (2)
82#if IS_ACTIVE(CONFIG_USE_CLOCK_HSI)
83#define CLOCK_CORECLOCK (CONFIG_CLOCK_HSI)
85#elif IS_ACTIVE(CONFIG_USE_CLOCK_HSE)
86#define CLOCK_CORECLOCK (CONFIG_CLOCK_HSE)
88#elif IS_ACTIVE(CONFIG_USE_CLOCK_MSI)
89#define CLOCK_CORECLOCK (CONFIG_CLOCK_MSI)
91#elif IS_ACTIVE(CONFIG_USE_CLOCK_PLL)
106#define CLOCK_CORECLOCK \
107 ((CLOCK_PLL_SRC / CONFIG_CLOCK_PLL_M) * CONFIG_CLOCK_PLL_N) / CONFIG_CLOCK_PLL_R
110#define CLOCK_CORECLOCK_MAX MHZ(160)
112#if CLOCK_CORECLOCK > CLOCK_CORECLOCK_MAX
113#error "SYSCLK cannot exceed 160MHz"
117#define CLOCK_AHB CLOCK_CORECLOCK
119#ifndef CONFIG_CLOCK_APB1_DIV
120#define CONFIG_CLOCK_APB1_DIV (4)
122#define CLOCK_APB1 (CLOCK_AHB / CONFIG_CLOCK_APB1_DIV)
123#ifndef CONFIG_CLOCK_APB2_DIV
124#define CONFIG_CLOCK_APB2_DIV (2)
126#define CLOCK_APB2 (CLOCK_AHB / CONFIG_CLOCK_APB2_DIV)
Base STM32Lx/U5/Wx clock configuration.
Common macros and compiler attributes/pragmas configuration.