23#ifndef CLK_F2F4F7_CFG_CLOCK_DEFAULT_180_H
24#define CLK_F2F4F7_CFG_CLOCK_DEFAULT_180_H
42#ifndef CONFIG_CLOCK_PLL_M
43#if IS_ACTIVE(CONFIG_BOARD_HAS_HSE) && (CONFIG_CLOCK_HSE == MHZ(12))
44#define CONFIG_CLOCK_PLL_M (12)
45#elif IS_ACTIVE(CONFIG_BOARD_HAS_HSE) && (CONFIG_CLOCK_HSE == MHZ(16))
46#define CONFIG_CLOCK_PLL_M (16)
48#define CONFIG_CLOCK_PLL_M (4)
51#ifndef CONFIG_CLOCK_PLL_N
52#if (IS_USED(MODULE_PERIPH_USBDEV_CLK) || IS_USED(MODULE_PERIPH_SDMMC_CLK)) && \
53 (defined(CPU_LINE_STM32F405xx) || defined(CPU_LINE_STM32F407xx) || \
54 defined(CPU_LINE_STM32F415xx) || defined(CPU_LINE_STM32F417xx) || \
55 defined(CPU_LINE_STM32F427xx) || defined(CPU_LINE_STM32F429xx) || \
56 defined(CPU_LINE_STM32F437xx) || defined(CPU_LINE_STM32F439xx))
57#if IS_ACTIVE(CONFIG_BOARD_HAS_HSE) && (CONFIG_CLOCK_HSE == MHZ(8))
58#define CONFIG_CLOCK_PLL_N (168)
59#elif IS_ACTIVE(CONFIG_BOARD_HAS_HSE) && (CONFIG_CLOCK_HSE == MHZ(12) || \
60 (CONFIG_CLOCK_HSE == MHZ(16)))
61#define CONFIG_CLOCK_PLL_N (336)
63#define CONFIG_CLOCK_PLL_N (84)
66#if IS_ACTIVE(CONFIG_BOARD_HAS_HSE) && (CONFIG_CLOCK_HSE == MHZ(8))
67#define CONFIG_CLOCK_PLL_N (180)
68#elif IS_ACTIVE(CONFIG_BOARD_HAS_HSE) && (CONFIG_CLOCK_HSE == MHZ(12) || \
69 (CONFIG_CLOCK_HSE == MHZ(16)))
70#define CONFIG_CLOCK_PLL_N (360)
72#define CONFIG_CLOCK_PLL_N (90)
76#ifndef CONFIG_CLOCK_PLL_P
77#define CONFIG_CLOCK_PLL_P (2)
79#ifndef CONFIG_CLOCK_PLL_Q
80#if (IS_USED(MODULE_PERIPH_USBDEV_CLK) || IS_USED(MODULE_PERIPH_SDMMC_CLK)) && \
81 (defined(CPU_LINE_STM32F405xx) || defined(CPU_LINE_STM32F407xx) || \
82 defined(CPU_LINE_STM32F415xx) || defined(CPU_LINE_STM32F417xx) || \
83 defined(CPU_LINE_STM32F427xx) || defined(CPU_LINE_STM32F429xx) || \
84 defined(CPU_LINE_STM32F437xx) || defined(CPU_LINE_STM32F439xx))
85#define CONFIG_CLOCK_PLL_Q (7)
87#define CONFIG_CLOCK_PLL_Q (8)
90#ifndef CONFIG_CLOCK_PLL_R
91#define CONFIG_CLOCK_PLL_R (8)
99#ifndef CONFIG_CLOCK_APB1_DIV
100#define CONFIG_CLOCK_APB1_DIV (4)
102#ifndef CONFIG_CLOCK_APB2_DIV
103#define CONFIG_CLOCK_APB2_DIV (2)
107#if CLOCK_CORECLOCK > MHZ(180)
108#error "SYSCLK cannot exceed 180MHz"
Common macros and compiler attributes/pragmas configuration.