Hi,
On 6/2/22 15:05, Patrick Delaunay wrote:
Add a directory in drivers/clk to regroup the clock drivers for all
STM32 SoCs with CONFIG_ARCH_STM32 (MCUs with Cortex-M) or
CONFIG_ARCH_STM32MP (MPUs with Cortex-A).
Signed-off-by: Patrick Delaunay <patrick.delau...@foss.st.com>
Reviewed-by: Grzegorz Szymaszek <gszymas...@short.pl>
Reviewed-by: Patrice Chotard <patrice.chot...@foss.st.com>
---
Changes in v3:
- Some nits in commit message (s/Soc/SoCs/ & s/cortex /Cortex-/)
Changes in v2:
- replace '_' by '-' in file names to be consistant with other clk drivers
and prepare introduction of new files for stm32mp13
MAINTAINERS | 2 +-
drivers/clk/Kconfig | 17 +-------------
drivers/clk/Makefile | 5 ++--
drivers/clk/stm32/Kconfig | 23 +++++++++++++++++++
drivers/clk/stm32/Makefile | 7 ++++++
.../clk/{clk_stm32f.c => stm32/clk-stm32f.c} | 0
.../{clk_stm32h7.c => stm32/clk-stm32h7.c} | 0
.../{clk_stm32mp1.c => stm32/clk-stm32mp1.c} | 0
8 files changed, 34 insertions(+), 20 deletions(-)
create mode 100644 drivers/clk/stm32/Kconfig
create mode 100644 drivers/clk/stm32/Makefile
rename drivers/clk/{clk_stm32f.c => stm32/clk-stm32f.c} (100%)
rename drivers/clk/{clk_stm32h7.c => stm32/clk-stm32h7.c} (100%)
rename drivers/clk/{clk_stm32mp1.c => stm32/clk-stm32mp1.c} (100%)
Applied to u-boot-stm/next, thanks!
Regards
Patrick