Commit 3ac7ca59 authored by Gabriel Fernandez's avatar Gabriel Fernandez Committed by Stephen Boyd
Browse files

clk: stm32mp1: move stm32mp1 clock driver into stm32 directory



Move all STM32MP clock drivers into same directory (stm32).

Signed-off-by: default avatarGabriel Fernandez <gabriel.fernandez@foss.st.com>
Link: https://lore.kernel.org/r/20231208143700.354785-2-gabriel.fernandez@foss.st.com


Signed-off-by: default avatarStephen Boyd <sboyd@kernel.org>
parent b85ea95d
Loading
Loading
Loading
Loading
+1 −10
Original line number Diff line number Diff line
@@ -414,16 +414,6 @@ config COMMON_CLK_VC7
	  Renesas Versaclock7 is a family of configurable clock generator
	  and jitter attenuator ICs with fractional and integer dividers.

config COMMON_CLK_STM32MP135
	def_bool COMMON_CLK && MACH_STM32MP13
	help
	  Support for stm32mp135 SoC family clocks

config COMMON_CLK_STM32MP157
	def_bool COMMON_CLK && MACH_STM32MP157
	help
	  Support for stm32mp157 SoC family clocks

config COMMON_CLK_STM32F
	def_bool COMMON_CLK && (MACH_STM32F429 || MACH_STM32F469 || MACH_STM32F746)
	help
@@ -504,6 +494,7 @@ source "drivers/clk/starfive/Kconfig"
source "drivers/clk/sunxi/Kconfig"
source "drivers/clk/sunxi-ng/Kconfig"
source "drivers/clk/tegra/Kconfig"
source "drivers/clk/stm32/Kconfig"
source "drivers/clk/ti/Kconfig"
source "drivers/clk/uniphier/Kconfig"
source "drivers/clk/visconti/Kconfig"
+0 −1
Original line number Diff line number Diff line
@@ -70,7 +70,6 @@ obj-$(CONFIG_COMMON_CLK_SI570) += clk-si570.o
obj-$(CONFIG_COMMON_CLK_SP7021)		+= clk-sp7021.o
obj-$(CONFIG_COMMON_CLK_STM32F)		+= clk-stm32f4.o
obj-$(CONFIG_COMMON_CLK_STM32H7)	+= clk-stm32h7.o
obj-$(CONFIG_COMMON_CLK_STM32MP157)	+= clk-stm32mp1.o
obj-$(CONFIG_COMMON_CLK_TPS68470)      += clk-tps68470.o
obj-$(CONFIG_CLK_TWL6040)		+= clk-twl6040.o
obj-$(CONFIG_CLK_TWL)			+= clk-twl.o
+29 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0-only
# common clock support for STMicroelectronics SoC family.

menuconfig COMMON_CLK_STM32MP
	bool "Clock support for common STM32MP clocks"
	depends on ARCH_STM32 || COMPILE_TEST
	default y
	select RESET_CONTROLLER
	help
	  Support for STM32MP SoC family clocks.

if COMMON_CLK_STM32MP

config COMMON_CLK_STM32MP135
	bool "Clock driver for stm32mp13x clocks"
	depends on ARM || COMPILE_TEST
	default y
	help
	  Support for stm32mp13x SoC family clocks.

config COMMON_CLK_STM32MP157
	bool "Clock driver for stm32mp15x clocks"
	depends on ARM || COMPILE_TEST
	default y
	help
	  Support for stm32mp15x SoC family clocks.

endif
+1 −0
Original line number Diff line number Diff line
obj-$(CONFIG_COMMON_CLK_STM32MP135)	+= clk-stm32mp13.o clk-stm32-core.o reset-stm32.o
obj-$(CONFIG_COMMON_CLK_STM32MP157)	+= clk-stm32mp1.o