23#ifndef CLK_CFG_CLOCK_COMMON_FX_GX_MP1_C0_H
24#define CLK_CFG_CLOCK_COMMON_FX_GX_MP1_C0_H
37#ifndef CONFIG_USE_CLOCK_PLL
38#if IS_ACTIVE(CONFIG_USE_CLOCK_HSE) || IS_ACTIVE(CONFIG_USE_CLOCK_HSI)
39#define CONFIG_USE_CLOCK_PLL 0
41#if defined(CPU_FAM_STM32C0)
42#define CONFIG_USE_CLOCK_PLL 0
43#define CONFIG_USE_CLOCK_HSI 1
45#define CONFIG_USE_CLOCK_PLL 1
50#if IS_ACTIVE(CONFIG_USE_CLOCK_PLL) && \
51 (IS_ACTIVE(CONFIG_USE_CLOCK_HSE) || IS_ACTIVE(CONFIG_USE_CLOCK_HSI))
52#error "Cannot use PLL as clock source with other clock configurations"
55#if IS_ACTIVE(CONFIG_USE_CLOCK_HSE) && \
56 (IS_ACTIVE(CONFIG_USE_CLOCK_PLL) || IS_ACTIVE(CONFIG_USE_CLOCK_HSI))
57#error "Cannot use HSE as clock source with other clock configurations"
60#if IS_ACTIVE(CONFIG_USE_CLOCK_HSI) && \
61 (IS_ACTIVE(CONFIG_USE_CLOCK_PLL) || IS_ACTIVE(CONFIG_USE_CLOCK_HSE))
62#error "Cannot use HSI as clock source with other clock configurations"
65#ifndef CONFIG_CLOCK_HSE
66#if defined(CPU_FAM_STM32G0) || defined(CPU_FAM_STM32G4) || \
67 defined(CPU_FAM_STM32MP1) || defined(CPU_FAM_STM32C0)
68#define CONFIG_CLOCK_HSE MHZ(24)
70#define CONFIG_CLOCK_HSE MHZ(8)
74#ifndef CONFIG_CLOCK_HSI
75#if defined(CPU_FAM_STM32F0) || defined(CPU_FAM_STM32F1) || \
76 defined(CPU_FAM_STM32F3)
77#define CONFIG_CLOCK_HSI MHZ(8)
78#elif defined(CPU_FAM_STM32MP1)
79#define CONFIG_CLOCK_HSI MHZ(64)
80#elif defined(CPU_FAM_STM32C0)
81#define CONFIG_CLOCK_HSI MHZ(48)
83#define CONFIG_CLOCK_HSI MHZ(16)
Common macros and compiler attributes/pragmas configuration.