We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b9c34d commit 0a2c6a0Copy full SHA for 0a2c6a0
include/zephyr/dt-bindings/clock/stm32f7_clock.h
@@ -30,13 +30,16 @@
30
/** Fixed clocks */
31
/* Low speed clocks defined in stm32_common_clocks.h */
32
#define STM32_SRC_HSI (STM32_SRC_LSI + 1)
33
+#define STM32_SRC_HSE (STM32_SRC_HSI + 1)
34
/** PLL clock outputs */
-#define STM32_SRC_PLL_P (STM32_SRC_HSI + 1)
35
+#define STM32_SRC_PLL_P (STM32_SRC_HSE + 1)
36
#define STM32_SRC_PLL_Q (STM32_SRC_PLL_P + 1)
37
#define STM32_SRC_PLL_R (STM32_SRC_PLL_Q + 1)
38
/** Peripheral bus clock */
39
#define STM32_SRC_PCLK (STM32_SRC_PLL_R + 1)
40
41
+#define STM32_SRC_PLLI2S_R (STM32_SRC_PCLK + 1)
42
+
43
44
#define STM32_CLOCK_REG_MASK 0xFFU
45
#define STM32_CLOCK_REG_SHIFT 0U
0 commit comments