23#ifndef CLK_G0G4_CFG_CLOCK_DEFAULT_H
24#define CLK_G0G4_CFG_CLOCK_DEFAULT_H
39#if IS_ACTIVE(CONFIG_BOARD_HAS_HSE) && (CONFIG_CLOCK_HSE < MHZ(4) || CONFIG_CLOCK_HSE > MHZ(48))
40#error "HSE clock frequency must be between 4MHz and 48MHz"
44#ifndef CONFIG_CLOCK_HSISYS_DIV
45#define CONFIG_CLOCK_HSISYS_DIV (1)
49#if IS_ACTIVE(CONFIG_BOARD_HAS_HSE)
50#define CLOCK_PLL_SRC (CONFIG_CLOCK_HSE)
52#define CLOCK_PLL_SRC (CONFIG_CLOCK_HSI)
56#ifndef CONFIG_CLOCK_PLL_M
58#define CONFIG_CLOCK_PLL_M (1)
60#define CONFIG_CLOCK_PLL_M (4)
63#ifndef CONFIG_CLOCK_PLL_N
65#define CONFIG_CLOCK_PLL_N (20)
67#define CONFIG_CLOCK_PLL_N (85)
70#ifndef CONFIG_CLOCK_PLL_R
72#define CONFIG_CLOCK_PLL_R (5)
74#define CONFIG_CLOCK_PLL_R (2)
78#if IS_ACTIVE(CONFIG_USE_CLOCK_HSI)
80#define CLOCK_CORECLOCK (CONFIG_CLOCK_HSI / CONFIG_CLOCK_HSISYS_DIV)
82#define CLOCK_CORECLOCK (CONFIG_CLOCK_HSI)
85#elif IS_ACTIVE(CONFIG_USE_CLOCK_HSE)
86#if !IS_ACTIVE(CONFIG_BOARD_HAS_HSE)
87#error "The board doesn't provide an HSE oscillator"
89#define CLOCK_CORECLOCK (CONFIG_CLOCK_HSE)
91#elif IS_ACTIVE(CONFIG_USE_CLOCK_PLL)
92#define CLOCK_CORECLOCK \
93 ((CLOCK_PLL_SRC / CONFIG_CLOCK_PLL_M) * CONFIG_CLOCK_PLL_N) / CONFIG_CLOCK_PLL_R
95#if CLOCK_CORECLOCK > MHZ(64)
96#error "SYSCLK cannot exceed 64MHz"
99#if CLOCK_CORECLOCK > MHZ(170)
100#error "SYSCLK cannot exceed 170MHz"
105#define CLOCK_AHB CLOCK_CORECLOCK
107#ifndef CONFIG_CLOCK_APB1_DIV
108#define CONFIG_CLOCK_APB1_DIV (1)
110#define CLOCK_APB1 (CLOCK_CORECLOCK / CONFIG_CLOCK_APB1_DIV)
111#ifdef CPU_FAM_STM32G4
112#ifndef CONFIG_CLOCK_APB2_DIV
113#define CONFIG_CLOCK_APB2_DIV (1)
115#define CLOCK_APB2 (CLOCK_AHB / CONFIG_CLOCK_APB2_DIV)
Base STM32Fx/Gx/MP1/C0 clock configuration.
Common macros and compiler attributes/pragmas configuration.