23#ifndef CLK_CFG_CLOCK_COMMON_LX_U5_WX_H
24#define CLK_CFG_CLOCK_COMMON_LX_U5_WX_H
37#ifndef CONFIG_USE_CLOCK_PLL
38#if IS_ACTIVE(CONFIG_USE_CLOCK_HSE) || IS_ACTIVE(CONFIG_USE_CLOCK_HSI) || \
39 IS_ACTIVE(CONFIG_USE_CLOCK_MSI)
40#define CONFIG_USE_CLOCK_PLL 0
42#define CONFIG_USE_CLOCK_PLL 1
47#if IS_ACTIVE(CONFIG_USE_CLOCK_PLL) && \
48 (IS_ACTIVE(CONFIG_USE_CLOCK_MSI) || IS_ACTIVE(CONFIG_USE_CLOCK_HSE) || \
49 IS_ACTIVE(CONFIG_USE_CLOCK_HSI))
50#error "Cannot use PLL as clock source with other clock configurations"
53#if IS_ACTIVE(CONFIG_USE_CLOCK_MSI) && \
54 (IS_ACTIVE(CONFIG_USE_CLOCK_PLL) || IS_ACTIVE(CONFIG_USE_CLOCK_HSE) || \
55 IS_ACTIVE(CONFIG_USE_CLOCK_HSI))
56#error "Cannot use MSI as clock source with other clock configurations"
59#if IS_ACTIVE(CONFIG_USE_CLOCK_HSE) && \
60 (IS_ACTIVE(CONFIG_USE_CLOCK_PLL) || IS_ACTIVE(CONFIG_USE_CLOCK_MSI) || \
61 IS_ACTIVE(CONFIG_USE_CLOCK_HSI))
62#error "Cannot use HSE as clock source with other clock configurations"
65#if IS_ACTIVE(CONFIG_USE_CLOCK_HSI) && \
66 (IS_ACTIVE(CONFIG_USE_CLOCK_PLL) || IS_ACTIVE(CONFIG_USE_CLOCK_MSI) || \
67 IS_ACTIVE(CONFIG_USE_CLOCK_HSE))
68#error "Cannot use HSI as clock source with other clock configurations"
71#ifndef CONFIG_CLOCK_HSE
72#if defined(CPU_FAM_STM32L0) || defined(CPU_FAM_STM32L1)
73#define CONFIG_CLOCK_HSE MHZ(24)
75#define CONFIG_CLOCK_HSE MHZ(8)
79#ifndef CONFIG_CLOCK_HSI
80#define CONFIG_CLOCK_HSI MHZ(16)
83#ifndef CONFIG_CLOCK_MSI
84#if defined(CPU_FAM_STM32L0) || defined(CPU_FAM_STM32L1)
85#define CONFIG_CLOCK_MSI KHZ(4194)
87#define CONFIG_CLOCK_MSI MHZ(48)
Common macros and compiler attributes/pragmas configuration.