include: dt-bindings: clock: fix stm32f7 missing HSE and PLLI2S_R source

Fix stm32f7 missing the definition for HSE and PLLI2S_R clock source.

Signed-off-by: Joakim Andersson <joerchan@gmail.com>
This commit is contained in:
Joakim Andersson 2024-08-27 17:22:18 +02:00 committed by Carles Cufí
parent 3b9c34d085
commit 0a2c6a0023

View File

@ -30,13 +30,16 @@
/** Fixed clocks */
/* Low speed clocks defined in stm32_common_clocks.h */
#define STM32_SRC_HSI (STM32_SRC_LSI + 1)
#define STM32_SRC_HSE (STM32_SRC_HSI + 1)
/** PLL clock outputs */
#define STM32_SRC_PLL_P (STM32_SRC_HSI + 1)
#define STM32_SRC_PLL_P (STM32_SRC_HSE + 1)
#define STM32_SRC_PLL_Q (STM32_SRC_PLL_P + 1)
#define STM32_SRC_PLL_R (STM32_SRC_PLL_Q + 1)
/** Peripheral bus clock */
#define STM32_SRC_PCLK (STM32_SRC_PLL_R + 1)
#define STM32_SRC_PLLI2S_R (STM32_SRC_PCLK + 1)
#define STM32_CLOCK_REG_MASK 0xFFU
#define STM32_CLOCK_REG_SHIFT 0U