Skip to content

Commit fd7a1c9

Browse files
Gabriel-Fernandzbebarino
authored andcommitted
clk: stm32: introduce clocks for STM32MP257 platform
This driver is intended for the STM32MP25 clock family and utilizes the stm32-core API, similar to the stm32mp13 clock driver. Signed-off-by: Gabriel Fernandez <gabriel.fernandez@foss.st.com> Link: https://lore.kernel.org/r/20240411092453.243633-4-gabriel.fernandez@foss.st.com Signed-off-by: Stephen Boyd <sboyd@kernel.org>
1 parent df5df12 commit fd7a1c9

File tree

6 files changed

+2646
-15
lines changed

6 files changed

+2646
-15
lines changed

drivers/clk/stm32/Kconfig

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,12 @@ config COMMON_CLK_STM32MP157
2525
help
2626
Support for stm32mp15x SoC family clocks.
2727

28+
config COMMON_CLK_STM32MP257
29+
bool "Clock driver for stm32mp25x clocks"
30+
depends on ARM64 || COMPILE_TEST
31+
default y
32+
help
33+
Support for stm32mp25x SoC family clocks.
34+
2835
endif
2936

drivers/clk/stm32/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
obj-$(CONFIG_COMMON_CLK_STM32MP135) += clk-stm32mp13.o clk-stm32-core.o reset-stm32.o
22
obj-$(CONFIG_COMMON_CLK_STM32MP157) += clk-stm32mp1.o reset-stm32.o
3+
obj-$(CONFIG_COMMON_CLK_STM32MP257) += clk-stm32mp25.o clk-stm32-core.o reset-stm32.o

0 commit comments

Comments
 (0)