19#ifndef CLK_L0L1_CFG_CLOCK_DEFAULT_H
20#define CLK_L0L1_CFG_CLOCK_DEFAULT_H
25#include "periph_cpu.h"
35#if IS_ACTIVE(CONFIG_BOARD_HAS_HSE) && (CONFIG_CLOCK_HSE < MHZ(1) || CONFIG_CLOCK_HSE > MHZ(24))
36#error "HSE clock frequency must be between 1MHz and 24MHz"
40#ifndef CONFIG_CLOCK_PLL_DIV
41#define CONFIG_CLOCK_PLL_DIV (2)
43#ifndef CONFIG_CLOCK_PLL_MUL
44#define CONFIG_CLOCK_PLL_MUL (4)
47#if IS_ACTIVE(CONFIG_USE_CLOCK_HSI)
48#define CLOCK_CORECLOCK (CONFIG_CLOCK_HSI)
50#elif IS_ACTIVE(CONFIG_USE_CLOCK_HSE)
51#if !IS_ACTIVE(CONFIG_BOARD_HAS_HSE)
52#error "The board doesn't provide an HSE oscillator"
54#define CLOCK_CORECLOCK (CONFIG_CLOCK_HSE)
56#elif IS_ACTIVE(CONFIG_USE_CLOCK_MSI)
57#define CLOCK_CORECLOCK (CONFIG_CLOCK_MSI)
59#elif IS_ACTIVE(CONFIG_USE_CLOCK_PLL)
60#if IS_ACTIVE(CONFIG_BOARD_HAS_HSE)
61#if CONFIG_CLOCK_HSE < MHZ(2)
62#error "HSE must be greater than 2MHz when used as PLL input clock"
64#define CLOCK_PLL_SRC (CONFIG_CLOCK_HSE)
66#define CLOCK_PLL_SRC (CONFIG_CLOCK_HSI)
77#define CLOCK_CORECLOCK ((CLOCK_PLL_SRC * CONFIG_CLOCK_PLL_MUL) / CONFIG_CLOCK_PLL_DIV)
78#if CLOCK_CORECLOCK > MHZ(32)
79#error "SYSCLK cannot exceed 32MHz"
83#define CLOCK_AHB CLOCK_CORECLOCK
85#ifndef CONFIG_CLOCK_APB1_DIV
86#define CONFIG_CLOCK_APB1_DIV (1)
88#define CLOCK_APB1 (CLOCK_CORECLOCK / CONFIG_CLOCK_APB1_DIV)
89#ifndef CONFIG_CLOCK_APB2_DIV
90#define CONFIG_CLOCK_APB2_DIV (1)
92#define CLOCK_APB2 (CLOCK_CORECLOCK / CONFIG_CLOCK_APB2_DIV)
Base STM32Lx/U5/Wx clock configuration.
Common macros and compiler attributes/pragmas configuration.