All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/15] treewide: Initial support for R-Car V4H
@ 2022-04-20  8:42 Yoshihiro Shimoda
  2022-04-20  8:42 ` [PATCH 01/15] dt-bindings: arm: renesas: Document R-Car V4H SoC DT bindings Yoshihiro Shimoda
                   ` (14 more replies)
  0 siblings, 15 replies; 47+ messages in thread
From: Yoshihiro Shimoda @ 2022-04-20  8:42 UTC (permalink / raw)
  To: geert+renesas, magnus.damm, robh+dt, krzysztof.kozlowski+dt, gregkh
  Cc: linux-renesas-soc, devicetree, linux-serial, Yoshihiro Shimoda

This patch series adds initial support for the Renesas R-Car V4H
(r8a779g0) SoC.

Yoshihiro Shimoda (15):
  dt-bindings: arm: renesas: Document R-Car V4H SoC DT bindings
  dt-bindings: arm: renesas: Document Renesas White Hawk boards
  dt-bindings: reset: renesas,rst: Document r8a779g0 reset module
  dt-bindings: power: renesas,rcar-sysc: Document r8a779g0 SYSC bindings
  dt-bindings: power: Add r8a779g0 SYSC power domain definitions
  dt-bindings: clock: renesas,cpg-mssr: Document r8a779g0
  dt-bindings: clock: Add r8a779g0 CPG Core Clock Definitions
  dt-bindings: serial: renesas,hscif: Document r8a779g0 bindings
  soc: renesas: r8a779g0-sysc: Add r8a779g0 support
  soc: renesas: Identify R-Car V4H
  soc: renesas: rcar-rst: Add support for R-Car V4H
  clk: renesas: rcar-gen4: Add CLK_TYPE_GEN4_PLL4
  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

 .../devicetree/bindings/arm/renesas.yaml      |  12 +
 .../bindings/clock/renesas,cpg-mssr.yaml      |   1 +
 .../bindings/power/renesas,rcar-sysc.yaml     |   1 +
 .../bindings/reset/renesas,rst.yaml           |   1 +
 .../bindings/serial/renesas,hscif.yaml        |   6 +
 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/r8a779f0-cpg-mssr.c       |  18 +-
 drivers/clk/renesas/r8a779g0-cpg-mssr.c       | 215 ++++++++++++++++++
 drivers/clk/renesas/rcar-gen4-cpg.c           |   5 +
 drivers/clk/renesas/rcar-gen4-cpg.h           |   3 +
 drivers/clk/renesas/renesas-cpg-mssr.c        |   6 +
 drivers/clk/renesas/renesas-cpg-mssr.h        |   1 +
 drivers/soc/renesas/Kconfig                   |  11 +
 drivers/soc/renesas/Makefile                  |   1 +
 drivers/soc/renesas/r8a779g0-sysc.c           |  62 +++++
 drivers/soc/renesas/rcar-gen4-sysc.c          |   3 +
 drivers/soc/renesas/rcar-gen4-sysc.h          |   1 +
 drivers/soc/renesas/rcar-rst.c                |   1 +
 drivers/soc/renesas/renesas-soc.c             |   8 +
 include/dt-bindings/clock/r8a779g0-cpg-mssr.h |  87 +++++++
 include/dt-bindings/power/r8a779g0-sysc.h     |  45 ++++
 26 files changed, 676 insertions(+), 9 deletions(-)
 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
 create mode 100644 drivers/soc/renesas/r8a779g0-sysc.c
 create mode 100644 include/dt-bindings/clock/r8a779g0-cpg-mssr.h
 create mode 100644 include/dt-bindings/power/r8a779g0-sysc.h

-- 
2.25.1


^ permalink raw reply	[flat|nested] 47+ messages in thread

end of thread, other threads:[~2022-04-25  2:04 UTC | newest]

Thread overview: 47+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-20  8:42 [PATCH 00/15] treewide: Initial support for R-Car V4H Yoshihiro Shimoda
2022-04-20  8:42 ` [PATCH 01/15] dt-bindings: arm: renesas: Document R-Car V4H SoC DT bindings Yoshihiro Shimoda
2022-04-21  9:37   ` Geert Uytterhoeven
2022-04-20  8:42 ` [PATCH 02/15] dt-bindings: arm: renesas: Document Renesas White Hawk boards Yoshihiro Shimoda
2022-04-21  7:41   ` Krzysztof Kozlowski
2022-04-21  9:37   ` Geert Uytterhoeven
2022-04-20  8:42 ` [PATCH 03/15] dt-bindings: reset: renesas,rst: Document r8a779g0 reset module Yoshihiro Shimoda
2022-04-21  7:41   ` Krzysztof Kozlowski
2022-04-21  9:37   ` Geert Uytterhoeven
2022-04-20  8:42 ` [PATCH 04/15] dt-bindings: power: renesas,rcar-sysc: Document r8a779g0 SYSC bindings Yoshihiro Shimoda
2022-04-21  7:42   ` Krzysztof Kozlowski
2022-04-21  9:37   ` Geert Uytterhoeven
2022-04-20  8:42 ` [PATCH 05/15] dt-bindings: power: Add r8a779g0 SYSC power domain definitions Yoshihiro Shimoda
2022-04-21  7:44   ` Krzysztof Kozlowski
2022-04-21  8:07     ` Geert Uytterhoeven
2022-04-21  8:33       ` Krzysztof Kozlowski
2022-04-21  9:37   ` Geert Uytterhoeven
2022-04-20  8:42 ` [PATCH 06/15] dt-bindings: clock: renesas,cpg-mssr: Document r8a779g0 Yoshihiro Shimoda
2022-04-21  7:44   ` Krzysztof Kozlowski
2022-04-21  9:37   ` Geert Uytterhoeven
2022-04-20  8:42 ` [PATCH 07/15] dt-bindings: clock: Add r8a779g0 CPG Core Clock Definitions Yoshihiro Shimoda
2022-04-21  7:48   ` Krzysztof Kozlowski
2022-04-22  5:32     ` Yoshihiro Shimoda
2022-04-22  7:16       ` Krzysztof Kozlowski
2022-04-25  2:02         ` Yoshihiro Shimoda
2022-04-21 10:18   ` Geert Uytterhoeven
2022-04-22  5:40     ` Yoshihiro Shimoda
2022-04-22  6:47       ` Geert Uytterhoeven
2022-04-20  8:42 ` [PATCH 08/15] dt-bindings: serial: renesas,hscif: Document r8a779g0 bindings Yoshihiro Shimoda
2022-04-21  7:49   ` Krzysztof Kozlowski
2022-04-21  9:45   ` Geert Uytterhoeven
2022-04-22 12:36     ` Geert Uytterhoeven
2022-04-25  2:03       ` Yoshihiro Shimoda
2022-04-20  8:42 ` [PATCH 09/15] soc: renesas: r8a779g0-sysc: Add r8a779g0 support Yoshihiro Shimoda
2022-04-21 12:53   ` Geert Uytterhoeven
2022-04-20  8:42 ` [PATCH 10/15] soc: renesas: Identify R-Car V4H Yoshihiro Shimoda
2022-04-21 13:16   ` Geert Uytterhoeven
2022-04-20  8:42 ` [PATCH 11/15] soc: renesas: rcar-rst: Add support for " Yoshihiro Shimoda
2022-04-21 13:49   ` Geert Uytterhoeven
2022-04-20  8:42 ` [PATCH 12/15] clk: renesas: rcar-gen4: Add CLK_TYPE_GEN4_PLL4 Yoshihiro Shimoda
2022-04-21 13:47   ` Geert Uytterhoeven
2022-04-22  6:38     ` Yoshihiro Shimoda
2022-04-20  8:42 ` [PATCH 13/15] clk: renesas: cpg-mssr: Add support for R-Car V4H Yoshihiro Shimoda
2022-04-20  8:42 ` [PATCH 14/15] arm64: dts: renesas: Add Renesas R8A779G0 SoC support Yoshihiro Shimoda
2022-04-21  7:50   ` Krzysztof Kozlowski
2022-04-20  8:42 ` [PATCH 15/15] arm64: dts: renesas: Add Renesas White Hawk boards support Yoshihiro Shimoda
2022-04-21  7:51   ` Krzysztof Kozlowski

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.