21#ifndef CLK_L4L5WX_CFG_CLOCK_DEFAULT_H
22#define CLK_L4L5WX_CFG_CLOCK_DEFAULT_H
36#if IS_ACTIVE(CONFIG_BOARD_HAS_HSE) && (CONFIG_CLOCK_HSE < MHZ(4) || CONFIG_CLOCK_HSE > MHZ(48))
37#error "HSE clock frequency must be between 4MHz and 48MHz"
41#ifndef CONFIG_CLOCK_PLL_SRC_MSI
42#if IS_ACTIVE(CONFIG_CLOCK_PLL_SRC_HSE) || IS_ACTIVE(CONFIG_CLOCK_PLL_SRC_HSI) || \
43 IS_ACTIVE(CONFIG_BOARD_HAS_HSE)
44#define CONFIG_CLOCK_PLL_SRC_MSI 0
46#define CONFIG_CLOCK_PLL_SRC_MSI 1
49#ifndef CONFIG_CLOCK_PLL_SRC_HSE
50#if IS_ACTIVE(CONFIG_BOARD_HAS_HSE) && \
51 !IS_ACTIVE(CONFIG_CLOCK_PLL_SRC_HSI) && !IS_ACTIVE(CONFIG_CLOCK_PLL_SRC_MSI)
52#define CONFIG_CLOCK_PLL_SRC_HSE 1
54#define CONFIG_CLOCK_PLL_SRC_HSE 0
57#ifndef CONFIG_CLOCK_PLL_SRC_HSI
58#define CONFIG_CLOCK_PLL_SRC_HSI 0
60#if IS_ACTIVE(CONFIG_CLOCK_PLL_SRC_MSI)
61#define CLOCK_PLL_SRC (CONFIG_CLOCK_MSI)
62#elif IS_ACTIVE(CONFIG_CLOCK_PLL_SRC_HSE)
63#define CLOCK_PLL_SRC (CONFIG_CLOCK_HSE)
65#define CLOCK_PLL_SRC (CONFIG_CLOCK_HSI)
67#ifndef CONFIG_CLOCK_PLL_M
68#if IS_ACTIVE(CONFIG_CLOCK_PLL_SRC_MSI)
69#define CONFIG_CLOCK_PLL_M (6)
70#elif IS_ACTIVE(CONFIG_CLOCK_PLL_SRC_HSE) && (CONFIG_CLOCK_HSE == MHZ(8))
71#define CONFIG_CLOCK_PLL_M (1)
72#elif IS_ACTIVE(CONFIG_CLOCK_PLL_SRC_HSE) && (CONFIG_CLOCK_HSE == MHZ(32))
73#define CONFIG_CLOCK_PLL_M (4)
75#define CONFIG_CLOCK_PLL_M (2)
78#ifndef CONFIG_CLOCK_PLL_N
79#if IS_ACTIVE(CONFIG_CLOCK_PLL_SRC_HSE) && (CONFIG_CLOCK_HSE == MHZ(32))
82#if IS_ACTIVE(CPU_FAM_STM32WL)
83#define CONFIG_CLOCK_PLL_N (12)
85#define CONFIG_CLOCK_PLL_N (16)
87#elif IS_ACTIVE(CONFIG_CLOCK_PLL_SRC_HSI) || \
88 (IS_ACTIVE(CONFIG_CLOCK_PLL_SRC_HSE) && (CONFIG_CLOCK_HSE == MHZ(16)))
89#define CONFIG_CLOCK_PLL_N (32)
91#if defined(CPU_LINE_STM32L4A6xx) || defined(CPU_LINE_STM32L4P5xx) || \
92 defined(CPU_LINE_STM32L4Q5xx) || defined(CPU_LINE_STM32L4R5xx) || \
93 defined(CPU_LINE_STM32L4R7xx) || defined(CPU_LINE_STM32L4R9xx) || \
94 defined(CPU_LINE_STM32L4S5xx) || defined(CPU_LINE_STM32L4S7xx) || \
95 defined(CPU_LINE_STM32L4S9xx)
96#define CONFIG_CLOCK_PLL_N (30)
97#elif defined(CPU_FAM_STM32L5)
98#define CONFIG_CLOCK_PLL_N (27)
100#define CONFIG_CLOCK_PLL_N (20)
104#ifndef CONFIG_CLOCK_PLL_Q
105#define CONFIG_CLOCK_PLL_Q (2)
107#ifndef CONFIG_CLOCK_PLL_R
108#define CONFIG_CLOCK_PLL_R (2)
111#if IS_ACTIVE(CONFIG_USE_CLOCK_HSI)
112#define CLOCK_CORECLOCK (CONFIG_CLOCK_HSI)
114#elif IS_ACTIVE(CONFIG_USE_CLOCK_HSE)
115#define CLOCK_CORECLOCK (CONFIG_CLOCK_HSE)
117#elif IS_ACTIVE(CONFIG_USE_CLOCK_MSI)
118#define CLOCK_CORECLOCK (CONFIG_CLOCK_MSI)
120#elif IS_ACTIVE(CONFIG_USE_CLOCK_PLL)
135#define CLOCK_CORECLOCK \
136 ((CLOCK_PLL_SRC / CONFIG_CLOCK_PLL_M) * CONFIG_CLOCK_PLL_N) / CONFIG_CLOCK_PLL_R
139#if defined(CPU_FAM_STM32WL)
140#define CLOCK_CORECLOCK_MAX MHZ(48)
141#elif defined(CPU_FAM_STM32WB)
142#define CLOCK_CORECLOCK_MAX MHZ(64)
143#elif defined(CPU_FAM_STM32L5)
144#define CLOCK_CORECLOCK_MAX MHZ(110)
145#elif defined(CPU_LINE_STM32L4A6xx) || defined(CPU_LINE_STM32L4P5xx) || \
146 defined(CPU_LINE_STM32L4Q5xx) || defined(CPU_LINE_STM32L4R5xx) || \
147 defined(CPU_LINE_STM32L4R7xx) || defined(CPU_LINE_STM32L4R9xx) || \
148 defined(CPU_LINE_STM32L4S5xx) || defined(CPU_LINE_STM32L4S7xx) || \
149 defined(CPU_LINE_STM32L4S9xx)
150#define CLOCK_CORECLOCK_MAX MHZ(120)
152#define CLOCK_CORECLOCK_MAX MHZ(80)
155#if CLOCK_CORECLOCK > CLOCK_CORECLOCK_MAX
156#if CLOCK_CORECLOCK_MAX == MHZ(48)
157#error "SYSCLK cannot exceed 48MHz"
158#elif CLOCK_CORECLOCK_MAX == MHZ(64)
159#error "SYSCLK cannot exceed 64MHz"
160#elif CLOCK_CORECLOCK_MAX == MHZ(80)
161#error "SYSCLK cannot exceed 80MHz"
162#elif CLOCK_CORECLOCK_MAX == MHZ(110)
163#error "SYSCLK cannot exceed 110MHz"
164#elif CLOCK_CORECLOCK_MAX == MHZ(120)
165#error "SYSCLK cannot exceed 120MHz"
167#error "invalid SYSCLK"
172#define CLOCK_AHB CLOCK_CORECLOCK
174#ifndef CONFIG_CLOCK_APB1_DIV
175#define CONFIG_CLOCK_APB1_DIV (4)
177#define CLOCK_APB1 (CLOCK_AHB / CONFIG_CLOCK_APB1_DIV)
178#ifndef CONFIG_CLOCK_APB2_DIV
179#define CONFIG_CLOCK_APB2_DIV (2)
181#define CLOCK_APB2 (CLOCK_AHB / CONFIG_CLOCK_APB2_DIV)
Base STM32Lx/U5/Wx clock configuration.
Common macros and compiler attributes/pragmas configuration.