19#ifndef CLK_MP1_CFG_CLOCK_DEFAULT_H
20#define CLK_MP1_CFG_CLOCK_DEFAULT_H
32#ifndef CONFIG_CLOCK_PLL_M
33#define CONFIG_CLOCK_PLL_M (2)
35#if IS_ACTIVE(CONFIG_BOARD_HAS_HSE) && (CONFIG_CLOCK_HSE == MHZ(24))
36#ifndef CONFIG_CLOCK_PLL_N
37#define CONFIG_CLOCK_PLL_N (52)
40#ifndef CONFIG_CLOCK_PLL_N
41#define CONFIG_CLOCK_PLL_N (78)
44#ifndef CONFIG_CLOCK_PLL_P
45#define CONFIG_CLOCK_PLL_P (3)
47#ifndef CONFIG_CLOCK_PLL_Q
48#define CONFIG_CLOCK_PLL_Q (13)
50#ifndef CONFIG_CLOCK_PLL_R
51#define CONFIG_CLOCK_PLL_R (3)
59#ifndef CONFIG_CLOCK_MCU_DIV
60#define CONFIG_CLOCK_MCU_DIV (1)
62#ifndef CONFIG_CLOCK_APB1_DIV
63#define CONFIG_CLOCK_APB1_DIV (2)
65#ifndef CONFIG_CLOCK_APB2_DIV
66#define CONFIG_CLOCK_APB2_DIV (2)
68#ifndef CONFIG_CLOCK_APB3_DIV
69#define CONFIG_CLOCK_APB3_DIV (2)
73#if CLOCK_CORECLOCK > MHZ(208)
74#error "SYSCLK cannot exceed 208MHz"
81#if IS_ACTIVE(CONFIG_BOARD_HAS_HSE)
82#define CLOCK_PLL_SRC (CONFIG_CLOCK_HSE)
84#define CLOCK_PLL_SRC (CONFIG_CLOCK_HSI)
87#if IS_ACTIVE(CONFIG_USE_CLOCK_HSI)
88#define CLOCK_CORECLOCK (CONFIG_CLOCK_HSI)
90#elif IS_ACTIVE(CONFIG_USE_CLOCK_HSE)
91#if !IS_ACTIVE(CONFIG_BOARD_HAS_HSE)
92#error "The board doesn't provide an HSE oscillator"
94#define CLOCK_CORECLOCK (CONFIG_CLOCK_HSE)
96#elif IS_ACTIVE(CONFIG_USE_CLOCK_PLL)
97#define CLOCK_CORECLOCK (((CLOCK_PLL_SRC / CONFIG_CLOCK_PLL_M) \
98 * CONFIG_CLOCK_PLL_N) / CONFIG_CLOCK_PLL_P)
101#define CLOCK_PLLQ (((CLOCK_PLL_SRC / CONFIG_CLOCK_PLL_M) \
102 * CONFIG_CLOCK_PLL_N) / CONFIG_CLOCK_PLL_Q)
104#define CLOCK_APB1 (CLOCK_CORECLOCK \
105 / CONFIG_CLOCK_APB1_DIV)
106#define CLOCK_APB2 (CLOCK_CORECLOCK \
107 / CONFIG_CLOCK_APB2_DIV)
Base STM32Fx/Gx/MP1/C0 clock configuration.
Common macros and compiler attributes/pragmas configuration.