Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

clk: stm32mp1: move stm32mp1 clock driver into stm32 directory

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

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

authored by

Gabriel Fernandez and committed by
Stephen Boyd
3ac7ca59 b85ea95d

+31 -11
+1 -10
drivers/clk/Kconfig
··· 414 414 Renesas Versaclock7 is a family of configurable clock generator 415 415 and jitter attenuator ICs with fractional and integer dividers. 416 416 417 - config COMMON_CLK_STM32MP135 418 - def_bool COMMON_CLK && MACH_STM32MP13 419 - help 420 - Support for stm32mp135 SoC family clocks 421 - 422 - config COMMON_CLK_STM32MP157 423 - def_bool COMMON_CLK && MACH_STM32MP157 424 - help 425 - Support for stm32mp157 SoC family clocks 426 - 427 417 config COMMON_CLK_STM32F 428 418 def_bool COMMON_CLK && (MACH_STM32F429 || MACH_STM32F469 || MACH_STM32F746) 429 419 help ··· 494 504 source "drivers/clk/sunxi/Kconfig" 495 505 source "drivers/clk/sunxi-ng/Kconfig" 496 506 source "drivers/clk/tegra/Kconfig" 507 + source "drivers/clk/stm32/Kconfig" 497 508 source "drivers/clk/ti/Kconfig" 498 509 source "drivers/clk/uniphier/Kconfig" 499 510 source "drivers/clk/visconti/Kconfig"
-1
drivers/clk/Makefile
··· 70 70 obj-$(CONFIG_COMMON_CLK_SP7021) += clk-sp7021.o 71 71 obj-$(CONFIG_COMMON_CLK_STM32F) += clk-stm32f4.o 72 72 obj-$(CONFIG_COMMON_CLK_STM32H7) += clk-stm32h7.o 73 - obj-$(CONFIG_COMMON_CLK_STM32MP157) += clk-stm32mp1.o 74 73 obj-$(CONFIG_COMMON_CLK_TPS68470) += clk-tps68470.o 75 74 obj-$(CONFIG_CLK_TWL6040) += clk-twl6040.o 76 75 obj-$(CONFIG_CLK_TWL) += clk-twl.o
drivers/clk/clk-stm32mp1.c drivers/clk/stm32/clk-stm32mp1.c
+29
drivers/clk/stm32/Kconfig
··· 1 + # SPDX-License-Identifier: GPL-2.0-only 2 + # common clock support for STMicroelectronics SoC family. 3 + 4 + menuconfig COMMON_CLK_STM32MP 5 + bool "Clock support for common STM32MP clocks" 6 + depends on ARCH_STM32 || COMPILE_TEST 7 + default y 8 + select RESET_CONTROLLER 9 + help 10 + Support for STM32MP SoC family clocks. 11 + 12 + if COMMON_CLK_STM32MP 13 + 14 + config COMMON_CLK_STM32MP135 15 + bool "Clock driver for stm32mp13x clocks" 16 + depends on ARM || COMPILE_TEST 17 + default y 18 + help 19 + Support for stm32mp13x SoC family clocks. 20 + 21 + config COMMON_CLK_STM32MP157 22 + bool "Clock driver for stm32mp15x clocks" 23 + depends on ARM || COMPILE_TEST 24 + default y 25 + help 26 + Support for stm32mp15x SoC family clocks. 27 + 28 + endif 29 +
+1
drivers/clk/stm32/Makefile
··· 1 1 obj-$(CONFIG_COMMON_CLK_STM32MP135) += clk-stm32mp13.o clk-stm32-core.o reset-stm32.o 2 + obj-$(CONFIG_COMMON_CLK_STM32MP157) += clk-stm32mp1.o