From: Lad Prabhakar <prabhakar.mahadev-lad.rj@xxxxxxxxxxxxxx> Hi All, This patch series aims to add the CPG support for the Renesas RZ/V2H(P) SoC. A separate CPG core driver is added as compared to the RZ/G2L as the RZ/V2H(P) SoC varies in terms of features and registers. Cheers, Prabhakar Lad Prabhakar (4): dt-bindings: clock: renesas: Document RZ/V2H(P) SoC CPG driver dt-bindings: clock: Add R9A09G057 CPG Clock and Reset Definitions clk: renesas: Add RZ/V2H CPG core wrapper driver clk: renesas: Add RZ/V2H(P) CPG helper driver .../bindings/clock/renesas,rzv2h-cpg.yaml | 78 ++ drivers/clk/renesas/Kconfig | 5 + drivers/clk/renesas/Makefile | 1 + drivers/clk/renesas/r9a09g057-cpg.c | 112 +++ drivers/clk/renesas/rzv2h-cpg.c | 677 ++++++++++++++++++ drivers/clk/renesas/rzv2h-cpg.h | 151 ++++ include/dt-bindings/clock/r9a09g057-cpg.h | 644 +++++++++++++++++ 7 files changed, 1668 insertions(+) create mode 100644 Documentation/devicetree/bindings/clock/renesas,rzv2h-cpg.yaml create mode 100644 drivers/clk/renesas/r9a09g057-cpg.c create mode 100644 drivers/clk/renesas/rzv2h-cpg.c create mode 100644 drivers/clk/renesas/rzv2h-cpg.h create mode 100644 include/dt-bindings/clock/r9a09g057-cpg.h -- 2.34.1