This patch series adds initial support for the Renesas R-Car V4H (r8a779g0) SoC. Changes from v2: - Remove accepted patches from this series. - Fix some typo and missing entries in patch [1/3]. - Fix inccorect values in patch [[12]/3]. - Add Reviewed-by tags in patch [[23]/3]. https://lore.kernel.org/all/20220425064201.459633-1-yoshihiro.shimoda.uh@xxxxxxxxxxx/ Changes from v1: - Remove accepted patches from this series. - Change the dt-binding files' license from (GPL-2.0 or MIT) to (GPL-2.0-only OR BSD-2-Clause). - Add some definitions in patch [2/7]. - Add "renesas,rcar-gen4-hscif" in a required property in patch [3/7]. - Modify r8a779a0-cpg-mssr.c in patch [4/7]. https://lore.kernel.org/all/20220420084255.375700-1-yoshihiro.shimoda.uh@xxxxxxxxxxx/ Yoshihiro Shimoda (3): clk: renesas: cpg-mssr: Add support for R-Car V4H arm64: dts: renesas: Add Renesas R8A779G0 SoC support arm64: dts: renesas: Add Renesas White Hawk boards support arch/arm64/boot/dts/renesas/Makefile | 2 + .../dts/renesas/r8a779g0-white-hawk-cpu.dtsi | 45 ++++ .../boot/dts/renesas/r8a779g0-white-hawk.dts | 22 ++ arch/arm64/boot/dts/renesas/r8a779g0.dtsi | 122 ++++++++++ drivers/clk/renesas/Kconfig | 5 + drivers/clk/renesas/Makefile | 1 + drivers/clk/renesas/r8a779g0-cpg-mssr.c | 218 ++++++++++++++++++ drivers/clk/renesas/renesas-cpg-mssr.c | 6 + drivers/clk/renesas/renesas-cpg-mssr.h | 1 + 9 files changed, 422 insertions(+) create mode 100644 arch/arm64/boot/dts/renesas/r8a779g0-white-hawk-cpu.dtsi create mode 100644 arch/arm64/boot/dts/renesas/r8a779g0-white-hawk.dts create mode 100644 arch/arm64/boot/dts/renesas/r8a779g0.dtsi create mode 100644 drivers/clk/renesas/r8a779g0-cpg-mssr.c -- 2.25.1