All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 5.10.y-cip 00/10] Document RZ/G2UL SOC bindings
@ 2022-08-31 16:37 Biju Das
  2022-08-31 16:37 ` [PATCH 5.10.y-cip 01/10] dt-bindings: arm: renesas: Document Renesas RZ/V2L SoC on SMARC EVK Biju Das
                   ` (11 more replies)
  0 siblings, 12 replies; 13+ messages in thread
From: Biju Das @ 2022-08-31 16:37 UTC (permalink / raw)
  To: cip-dev, Nobuhiro Iwamatsu, Pavel Machek
  Cc: Chris Paterson, Biju Das, Prabhakar Mahadev Lad

This patch series aims to document various IP's present in
RZ/G2UL SoC.

Biju Das (10):
  dt-bindings: arm: renesas: Document Renesas RZ/V2L SoC on SMARC EVK
  dt-bindings: arm: renesas: Document Renesas RZ/G2UL SMARC EVK
  dt-bindings: power: renesas,rzg2l-sysc: Document RZ/G2UL SoC
  dt-bindings: clock: renesas: Document RZ/G2UL SoC
  dt-bindings: pinctrl: renesas: Document RZ/G2UL pinctrl
  dt-bindings: serial: renesas,scif: Document RZ/G2UL SoC
  dt-bindings: serial: renesas,sci: Document RZ/G2UL SoC
  dt-bindings: dma: rz-dmac: Document RZ/G2UL SoC
  dt-bindings: mmc: renesas,sdhi: Document RZ/G2UL SoC
  dt-bindings: net: renesas,etheravb: Document RZ/G2UL SoC

 Documentation/devicetree/bindings/arm/renesas.yaml    | 11 +++++++++++
 .../devicetree/bindings/clock/renesas,rzg2l-cpg.yaml  |  7 ++++---
 .../devicetree/bindings/dma/renesas,rz-dmac.yaml      |  3 ++-
 .../devicetree/bindings/mmc/renesas,sdhi.yaml         |  2 ++
 .../devicetree/bindings/net/renesas,etheravb.yaml     |  3 ++-
 .../bindings/pinctrl/renesas,rzg2l-pinctrl.yaml       |  5 +++--
 .../devicetree/bindings/serial/renesas,sci.yaml       |  2 ++
 .../devicetree/bindings/serial/renesas,scif.yaml      |  3 ++-
 .../bindings/soc/renesas/renesas,rzg2l-sysc.yaml      |  5 +++--
 9 files changed, 31 insertions(+), 10 deletions(-)

-- 
2.25.1



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

* [PATCH 5.10.y-cip 01/10] dt-bindings: arm: renesas: Document Renesas RZ/V2L SoC on SMARC EVK
  2022-08-31 16:37 [PATCH 5.10.y-cip 00/10] Document RZ/G2UL SOC bindings Biju Das
@ 2022-08-31 16:37 ` Biju Das
  2022-08-31 16:37 ` [PATCH 5.10.y-cip 02/10] dt-bindings: arm: renesas: Document Renesas RZ/G2UL " Biju Das
                   ` (10 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: Biju Das @ 2022-08-31 16:37 UTC (permalink / raw)
  To: cip-dev, Nobuhiro Iwamatsu, Pavel Machek
  Cc: Chris Paterson, Biju Das, Prabhakar Mahadev Lad

commit 509e1a8675fcab9861fe280ebb5bf17e47349c40 upstream.

Document the Renesas SMARC EVK board which is based on the Renesas
RZ/V2L (R9A07G054) SoC.  The SMARC EVK consists of an RZ/V2L SoM module
and a SMARC carrier board.  The SoM module sits on top of the carrier
board.

Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
Acked-by: Rob Herring <robh@kernel.org>
Link: https://lore.kernel.org/r/20211221094717.16187-2-prabhakar.mahadev-lad.rj@bp.renesas.com
Link: https://lore.kernel.org/r/20211221094717.16187-3-prabhakar.mahadev-lad.rj@bp.renesas.com
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
---
 Documentation/devicetree/bindings/arm/renesas.yaml | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/Documentation/devicetree/bindings/arm/renesas.yaml b/Documentation/devicetree/bindings/arm/renesas.yaml
index 241703c2cac1..00260c208bb6 100644
--- a/Documentation/devicetree/bindings/arm/renesas.yaml
+++ b/Documentation/devicetree/bindings/arm/renesas.yaml
@@ -317,6 +317,15 @@ properties:
               - renesas,r9a07g044l2 # Dual Cortex-A55 RZ/G2L
           - const: renesas,r9a07g044
 
+      - description: RZ/V2L (R9A07G054)
+        items:
+          - enum:
+              - renesas,smarc-evk # SMARC EVK
+          - enum:
+              - renesas,r9a07g054l1 # Single Cortex-A55 RZ/V2L
+              - renesas,r9a07g054l2 # Dual Cortex-A55 RZ/V2L
+          - const: renesas,r9a07g054
+
 additionalProperties: true
 
 ...
-- 
2.25.1



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

* [PATCH 5.10.y-cip 02/10] dt-bindings: arm: renesas: Document Renesas RZ/G2UL SMARC EVK
  2022-08-31 16:37 [PATCH 5.10.y-cip 00/10] Document RZ/G2UL SOC bindings Biju Das
  2022-08-31 16:37 ` [PATCH 5.10.y-cip 01/10] dt-bindings: arm: renesas: Document Renesas RZ/V2L SoC on SMARC EVK Biju Das
@ 2022-08-31 16:37 ` Biju Das
  2022-08-31 16:37 ` [PATCH 5.10.y-cip 03/10] dt-bindings: power: renesas,rzg2l-sysc: Document RZ/G2UL SoC Biju Das
                   ` (9 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: Biju Das @ 2022-08-31 16:37 UTC (permalink / raw)
  To: cip-dev, Nobuhiro Iwamatsu, Pavel Machek
  Cc: Chris Paterson, Biju Das, Prabhakar Mahadev Lad

commit 05d39fc06cee5b11b195d0d5fec55d01da2781cb upstream.

Document the Renesas SMARC EVK board which is based on the Renesas
RZ/G2UL Type-1 (R9A07G043U11) SoC.  The SMARC EVK consists of an
RZ/G2UL Type-1 SoM module and a SMARC carrier board.  The SoM module
sits on top of the carrier board.

Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
Link: https://lore.kernel.org/r/20220402073234.24625-1-biju.das.jz@bp.renesas.com
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
---
 Documentation/devicetree/bindings/arm/renesas.yaml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Documentation/devicetree/bindings/arm/renesas.yaml b/Documentation/devicetree/bindings/arm/renesas.yaml
index 00260c208bb6..75e00f50ee5e 100644
--- a/Documentation/devicetree/bindings/arm/renesas.yaml
+++ b/Documentation/devicetree/bindings/arm/renesas.yaml
@@ -301,6 +301,8 @@ properties:
 
       - description: RZ/G2UL (R9A07G043)
         items:
+          - enum:
+              - renesas,smarc-evk # SMARC EVK
           - enum:
               - renesas,r9a07g043u11 # RZ/G2UL Type-1
               - renesas,r9a07g043u12 # RZ/G2UL Type-2
-- 
2.25.1



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

* [PATCH 5.10.y-cip 03/10] dt-bindings: power: renesas,rzg2l-sysc: Document RZ/G2UL SoC
  2022-08-31 16:37 [PATCH 5.10.y-cip 00/10] Document RZ/G2UL SOC bindings Biju Das
  2022-08-31 16:37 ` [PATCH 5.10.y-cip 01/10] dt-bindings: arm: renesas: Document Renesas RZ/V2L SoC on SMARC EVK Biju Das
  2022-08-31 16:37 ` [PATCH 5.10.y-cip 02/10] dt-bindings: arm: renesas: Document Renesas RZ/G2UL " Biju Das
@ 2022-08-31 16:37 ` Biju Das
  2022-08-31 16:37 ` [PATCH 5.10.y-cip 04/10] dt-bindings: clock: renesas: " Biju Das
                   ` (8 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: Biju Das @ 2022-08-31 16:37 UTC (permalink / raw)
  To: cip-dev, Nobuhiro Iwamatsu, Pavel Machek
  Cc: Chris Paterson, Biju Das, Prabhakar Mahadev Lad

commit 3f285c301cd788164fa776e1f95458c56e68a6ee upstream.

Add DT binding documentation for SYSC controller found on RZ/G2UL SoC's.
SYSC controller found on the RZ/G2UL SoC is almost identical to one found
on the RZ/G2L SoC's only difference being that the RZ/G2UL has only CA55
core0 reset vector address configuration register.

Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
Reviewed-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
Reviewed-by: Rob Herring <robh@kernel.org>
Link: https://lore.kernel.org/r/20220315142644.17660-2-biju.das.jz@bp.renesas.com
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
[biju: manually applied the changes]
Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
---
 .../devicetree/bindings/soc/renesas/renesas,rzg2l-sysc.yaml  | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/Documentation/devicetree/bindings/soc/renesas/renesas,rzg2l-sysc.yaml b/Documentation/devicetree/bindings/soc/renesas/renesas,rzg2l-sysc.yaml
index f6182fd17200..ce2875c89329 100644
--- a/Documentation/devicetree/bindings/soc/renesas/renesas,rzg2l-sysc.yaml
+++ b/Documentation/devicetree/bindings/soc/renesas/renesas,rzg2l-sysc.yaml
@@ -10,8 +10,8 @@ maintainers:
   - Geert Uytterhoeven <geert+renesas@glider.be>
 
 description:
-  The RZ/{G2L,V2L} System Controller (SYSC) performs system control of the LSI
-  and supports following functions,
+  The RZ/{G2L,V2L}-alike System Controller (SYSC) performs system control of
+  the LSI and supports following functions,
   - External terminal state capture function
   - 34-bit address space access function
   - Low power consumption control
@@ -20,6 +20,7 @@ description:
 properties:
   compatible:
     enum:
+      - renesas,r9a07g043-sysc # RZ/G2UL
       - renesas,r9a07g044-sysc # RZ/G2{L,LC}
       - renesas,r9a07g054-sysc # RZ/V2L
 
-- 
2.25.1



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

* [PATCH 5.10.y-cip 04/10] dt-bindings: clock: renesas: Document RZ/G2UL SoC
  2022-08-31 16:37 [PATCH 5.10.y-cip 00/10] Document RZ/G2UL SOC bindings Biju Das
                   ` (2 preceding siblings ...)
  2022-08-31 16:37 ` [PATCH 5.10.y-cip 03/10] dt-bindings: power: renesas,rzg2l-sysc: Document RZ/G2UL SoC Biju Das
@ 2022-08-31 16:37 ` Biju Das
  2022-08-31 16:37 ` [PATCH 5.10.y-cip 05/10] dt-bindings: pinctrl: renesas: Document RZ/G2UL pinctrl Biju Das
                   ` (7 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: Biju Das @ 2022-08-31 16:37 UTC (permalink / raw)
  To: cip-dev, Nobuhiro Iwamatsu, Pavel Machek
  Cc: Chris Paterson, Biju Das, Prabhakar Mahadev Lad

commit 3733db1f77130588c9a2c1596937294998bd7d27 upstream.

Document the device tree binding for the Renesas RZ/G2UL Type-1
and Type-2 SoC. RZ/G2UL Type-2 has fewer clocks than RZ/G2UL Type-1
SoC.

Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
Reviewed-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
Reviewed-by: Rob Herring <robh@kernel.org>
Link: https://lore.kernel.org/r/20220315142915.17764-1-biju.das.jz@bp.renesas.com
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
---
 .../devicetree/bindings/clock/renesas,rzg2l-cpg.yaml       | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/Documentation/devicetree/bindings/clock/renesas,rzg2l-cpg.yaml b/Documentation/devicetree/bindings/clock/renesas,rzg2l-cpg.yaml
index bd3af8fc616b..311a93590597 100644
--- a/Documentation/devicetree/bindings/clock/renesas,rzg2l-cpg.yaml
+++ b/Documentation/devicetree/bindings/clock/renesas,rzg2l-cpg.yaml
@@ -10,7 +10,7 @@ maintainers:
   - Geert Uytterhoeven <geert+renesas@glider.be>
 
 description: |
-  On Renesas RZ/{G2L,V2L} SoC, the CPG (Clock Pulse Generator) and Module
+  On Renesas RZ/{G2L,V2L}-alike SoC's, the CPG (Clock Pulse Generator) and Module
   Standby Mode share the same register block.
 
   They provide the following functionalities:
@@ -23,8 +23,9 @@ description: |
 properties:
   compatible:
     enum:
-      - renesas,r9a07g044-cpg  # RZ/G2{L,LC}
-      - renesas,r9a07g054-cpg  # RZ/V2L
+      - renesas,r9a07g043-cpg # RZ/G2UL{Type-1,Type-2}
+      - renesas,r9a07g044-cpg # RZ/G2{L,LC}
+      - renesas,r9a07g054-cpg # RZ/V2L
 
   reg:
     maxItems: 1
-- 
2.25.1



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

* [PATCH 5.10.y-cip 05/10] dt-bindings: pinctrl: renesas: Document RZ/G2UL pinctrl
  2022-08-31 16:37 [PATCH 5.10.y-cip 00/10] Document RZ/G2UL SOC bindings Biju Das
                   ` (3 preceding siblings ...)
  2022-08-31 16:37 ` [PATCH 5.10.y-cip 04/10] dt-bindings: clock: renesas: " Biju Das
@ 2022-08-31 16:37 ` Biju Das
  2022-08-31 16:37 ` [PATCH 5.10.y-cip 06/10] dt-bindings: serial: renesas,scif: Document RZ/G2UL SoC Biju Das
                   ` (6 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: Biju Das @ 2022-08-31 16:37 UTC (permalink / raw)
  To: cip-dev, Nobuhiro Iwamatsu, Pavel Machek
  Cc: Chris Paterson, Biju Das, Prabhakar Mahadev Lad

commit 74273035c7e486fa046ee7f80fbdb9c19169ef19 upstream.

Document Renesas RZ/G2UL pinctrl bindings. RZ/G2UL GPIO block is
almost identical to RZ/G2L and has lesser pins compared to RZ/G2L.

Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
Reviewed-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
Acked-by: Rob Herring <robh@kernel.org>
Link: https://lore.kernel.org/r/20220315152717.20045-1-biju.das.jz@bp.renesas.com
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
---
 .../devicetree/bindings/pinctrl/renesas,rzg2l-pinctrl.yaml   | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/Documentation/devicetree/bindings/pinctrl/renesas,rzg2l-pinctrl.yaml b/Documentation/devicetree/bindings/pinctrl/renesas,rzg2l-pinctrl.yaml
index e4849a3680e0..6bc9c5ebbdb1 100644
--- a/Documentation/devicetree/bindings/pinctrl/renesas,rzg2l-pinctrl.yaml
+++ b/Documentation/devicetree/bindings/pinctrl/renesas,rzg2l-pinctrl.yaml
@@ -11,8 +11,8 @@ maintainers:
   - Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
 
 description:
-  The Renesas SoCs of the RZ/{G2L,V2L} series feature a combined Pin and GPIO
-  controller.
+  The Renesas SoCs of the RZ/{G2L,V2L} alike series feature a combined Pin and
+  GPIO controller.
   Pin multiplexing and GPIO configuration is performed on a per-pin basis.
   Each port features up to 8 pins, each of them configurable for GPIO function
   (port mode) or in alternate function mode.
@@ -23,6 +23,7 @@ properties:
     oneOf:
       - items:
           - enum:
+              - renesas,r9a07g043-pinctrl # RZ/G2UL{Type-1,Type-2}
               - renesas,r9a07g044-pinctrl # RZ/G2{L,LC}
 
       - items:
-- 
2.25.1



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

* [PATCH 5.10.y-cip 06/10] dt-bindings: serial: renesas,scif: Document RZ/G2UL SoC
  2022-08-31 16:37 [PATCH 5.10.y-cip 00/10] Document RZ/G2UL SOC bindings Biju Das
                   ` (4 preceding siblings ...)
  2022-08-31 16:37 ` [PATCH 5.10.y-cip 05/10] dt-bindings: pinctrl: renesas: Document RZ/G2UL pinctrl Biju Das
@ 2022-08-31 16:37 ` Biju Das
  2022-08-31 16:37 ` [PATCH 5.10.y-cip 07/10] dt-bindings: serial: renesas,sci: " Biju Das
                   ` (5 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: Biju Das @ 2022-08-31 16:37 UTC (permalink / raw)
  To: cip-dev, Nobuhiro Iwamatsu, Pavel Machek
  Cc: Chris Paterson, Biju Das, Prabhakar Mahadev Lad

commit ed265bc955cfa46490d07db0bf5de985b31367da upstream.

Add SCIF binding documentation for Renesas RZ/G2UL SoC. SCIF block on
RZ/G2UL is identical to one found on the RZ/G2L SoC. No driver changes
are required as RZ/G2L compatible string "renesas,scif-r9a07g044" will
be used as a fallback.

Whilst dropped the comments after RZ/G2{L,LC} fallback as to
avoid updating the comment over and over again when a new IP
is added

Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
Link: https://lore.kernel.org/r/20220207142213.19552-2-biju.das.jz@bp.renesas.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
---
 Documentation/devicetree/bindings/serial/renesas,scif.yaml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/serial/renesas,scif.yaml b/Documentation/devicetree/bindings/serial/renesas,scif.yaml
index d1fd82aac212..05e037031d78 100644
--- a/Documentation/devicetree/bindings/serial/renesas,scif.yaml
+++ b/Documentation/devicetree/bindings/serial/renesas,scif.yaml
@@ -70,8 +70,9 @@ properties:
 
       - items:
           - enum:
+              - renesas,scif-r9a07g043      # RZ/G2UL
               - renesas,scif-r9a07g054      # RZ/V2L
-          - const: renesas,scif-r9a07g044   # RZ/G2{L,LC} fallback for RZ/V2L
+          - const: renesas,scif-r9a07g044   # RZ/G2{L,LC} fallback
 
   reg:
     maxItems: 1
-- 
2.25.1



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

* [PATCH 5.10.y-cip 07/10] dt-bindings: serial: renesas,sci: Document RZ/G2UL SoC
  2022-08-31 16:37 [PATCH 5.10.y-cip 00/10] Document RZ/G2UL SOC bindings Biju Das
                   ` (5 preceding siblings ...)
  2022-08-31 16:37 ` [PATCH 5.10.y-cip 06/10] dt-bindings: serial: renesas,scif: Document RZ/G2UL SoC Biju Das
@ 2022-08-31 16:37 ` Biju Das
  2022-08-31 16:37 ` [PATCH 5.10.y-cip 08/10] dt-bindings: dma: rz-dmac: " Biju Das
                   ` (4 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: Biju Das @ 2022-08-31 16:37 UTC (permalink / raw)
  To: cip-dev, Nobuhiro Iwamatsu, Pavel Machek
  Cc: Chris Paterson, Biju Das, Prabhakar Mahadev Lad

commit 5cfb02ced7e0928b5ae39b0320c2de408bb210ac upstream.

Add SCI binding documentation for Renesas RZ/G2UL SoC. No driver changes
are required as generic compatible string "renesas,sci" will be used as
a fallback.

Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
Link: https://lore.kernel.org/r/20220207142213.19552-3-biju.das.jz@bp.renesas.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
---
 Documentation/devicetree/bindings/serial/renesas,sci.yaml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Documentation/devicetree/bindings/serial/renesas,sci.yaml b/Documentation/devicetree/bindings/serial/renesas,sci.yaml
index 8dda4e10e09d..bf7708a7a2c0 100644
--- a/Documentation/devicetree/bindings/serial/renesas,sci.yaml
+++ b/Documentation/devicetree/bindings/serial/renesas,sci.yaml
@@ -17,6 +17,7 @@ properties:
     oneOf:
       - items:
           - enum:
+              - renesas,r9a07g043-sci     # RZ/G2UL
               - renesas,r9a07g044-sci     # RZ/G2{L,LC}
               - renesas,r9a07g054-sci     # RZ/V2L
           - const: renesas,sci            # generic SCI compatible UART
@@ -67,6 +68,7 @@ if:
     compatible:
       contains:
         enum:
+          - renesas,r9a07g043-sci
           - renesas,r9a07g044-sci
           - renesas,r9a07g054-sci
 then:
-- 
2.25.1



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

* [PATCH 5.10.y-cip 08/10] dt-bindings: dma: rz-dmac: Document RZ/G2UL SoC
  2022-08-31 16:37 [PATCH 5.10.y-cip 00/10] Document RZ/G2UL SOC bindings Biju Das
                   ` (6 preceding siblings ...)
  2022-08-31 16:37 ` [PATCH 5.10.y-cip 07/10] dt-bindings: serial: renesas,sci: " Biju Das
@ 2022-08-31 16:37 ` Biju Das
  2022-08-31 16:37 ` [PATCH 5.10.y-cip 09/10] dt-bindings: mmc: renesas,sdhi: " Biju Das
                   ` (3 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: Biju Das @ 2022-08-31 16:37 UTC (permalink / raw)
  To: cip-dev, Nobuhiro Iwamatsu, Pavel Machek
  Cc: Chris Paterson, Biju Das, Prabhakar Mahadev Lad

commit 614c8beca7cd6e7093385c88da800e258b7eb0ca upstream.

Document RZ/G2UL DMAC bindings. RZ/G2UL DMAC is identical to one found
on the RZ/G2L SoC. No driver changes are required as generic compatible
string "renesas,rz-dmac" will be used as a fallback.

Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
Acked-by: Rob Herring <robh@kernel.org>
Link: https://lore.kernel.org/r/20220206200308.14315-1-biju.das.jz@bp.renesas.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
---
 Documentation/devicetree/bindings/dma/renesas,rz-dmac.yaml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/dma/renesas,rz-dmac.yaml b/Documentation/devicetree/bindings/dma/renesas,rz-dmac.yaml
index e353377084aa..1e25c5b0fb4d 100644
--- a/Documentation/devicetree/bindings/dma/renesas,rz-dmac.yaml
+++ b/Documentation/devicetree/bindings/dma/renesas,rz-dmac.yaml
@@ -4,7 +4,7 @@
 $id: http://devicetree.org/schemas/dma/renesas,rz-dmac.yaml#
 $schema: http://devicetree.org/meta-schemas/core.yaml#
 
-title: Renesas RZ/{G2L,V2L} DMA Controller
+title: Renesas RZ/{G2L,G2UL,V2L} DMA Controller
 
 maintainers:
   - Biju Das <biju.das.jz@bp.renesas.com>
@@ -16,6 +16,7 @@ properties:
   compatible:
     items:
       - enum:
+          - renesas,r9a07g043-dmac # RZ/G2UL
           - renesas,r9a07g044-dmac # RZ/G2{L,LC}
           - renesas,r9a07g054-dmac # RZ/V2L
       - const: renesas,rz-dmac
-- 
2.25.1



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

* [PATCH 5.10.y-cip 09/10] dt-bindings: mmc: renesas,sdhi: Document RZ/G2UL SoC
  2022-08-31 16:37 [PATCH 5.10.y-cip 00/10] Document RZ/G2UL SOC bindings Biju Das
                   ` (7 preceding siblings ...)
  2022-08-31 16:37 ` [PATCH 5.10.y-cip 08/10] dt-bindings: dma: rz-dmac: " Biju Das
@ 2022-08-31 16:37 ` Biju Das
  2022-08-31 16:37 ` [PATCH 5.10.y-cip 10/10] dt-bindings: net: renesas,etheravb: " Biju Das
                   ` (2 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: Biju Das @ 2022-08-31 16:37 UTC (permalink / raw)
  To: cip-dev, Nobuhiro Iwamatsu, Pavel Machek
  Cc: Chris Paterson, Biju Das, Prabhakar Mahadev Lad

commit dc3d879c6ffa25e90875237265898e49b2cabb7e upstream.

Document RZ/G2UL SDHI bindings. RZ/G2UL SDHI is almost identical to one
found on the R-Car Gen3. No driver changes are required as generic
compatible string "renesas,rcar-gen3-sdhi" will be used as a fallback.

Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
Reviewed-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Acked-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Link: https://lore.kernel.org/r/20220315153258.21097-1-biju.das.jz@bp.renesas.com
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
---
 Documentation/devicetree/bindings/mmc/renesas,sdhi.yaml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Documentation/devicetree/bindings/mmc/renesas,sdhi.yaml b/Documentation/devicetree/bindings/mmc/renesas,sdhi.yaml
index 7e3780e32a90..19c9f1850528 100644
--- a/Documentation/devicetree/bindings/mmc/renesas,sdhi.yaml
+++ b/Documentation/devicetree/bindings/mmc/renesas,sdhi.yaml
@@ -56,6 +56,7 @@ properties:
               - renesas,sdhi-r8a77980  # R-Car V3H
               - renesas,sdhi-r8a77990  # R-Car E3
               - renesas,sdhi-r8a77995  # R-Car D3
+              - renesas,sdhi-r9a07g043 # RZ/G2UL
               - renesas,sdhi-r9a07g044 # RZ/G2{L,LC}
               - renesas,sdhi-r9a07g054 # RZ/V2L
           - const: renesas,rcar-gen3-sdhi # R-Car Gen3 or RZ/G2
@@ -108,6 +109,7 @@ allOf:
         compatible:
           contains:
             enum:
+              - renesas,sdhi-r9a07g043
               - renesas,sdhi-r9a07g044
               - renesas,sdhi-r9a07g054
     then:
-- 
2.25.1



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

* [PATCH 5.10.y-cip 10/10] dt-bindings: net: renesas,etheravb: Document RZ/G2UL SoC
  2022-08-31 16:37 [PATCH 5.10.y-cip 00/10] Document RZ/G2UL SOC bindings Biju Das
                   ` (8 preceding siblings ...)
  2022-08-31 16:37 ` [PATCH 5.10.y-cip 09/10] dt-bindings: mmc: renesas,sdhi: " Biju Das
@ 2022-08-31 16:37 ` Biju Das
  2022-09-02  9:50 ` [PATCH 5.10.y-cip 00/10] Document RZ/G2UL SOC bindings Pavel Machek
  2022-09-06  6:28 ` Pavel Machek
  11 siblings, 0 replies; 13+ messages in thread
From: Biju Das @ 2022-08-31 16:37 UTC (permalink / raw)
  To: cip-dev, Nobuhiro Iwamatsu, Pavel Machek
  Cc: Chris Paterson, Biju Das, Prabhakar Mahadev Lad

commit 5e2e8cc9dd3314e2cf2814d19d0aaa4c983b1d3d upstream.

Document Gigabit Ethernet IP found on RZ/G2UL SoC. Gigabit Ethernet
Interface is identical to one found on the RZ/G2L SoC. No driver changes
are required as generic compatible string "renesas,rzg2l-gbeth" will be
used as a fallback.

Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
---
 Documentation/devicetree/bindings/net/renesas,etheravb.yaml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/net/renesas,etheravb.yaml b/Documentation/devicetree/bindings/net/renesas,etheravb.yaml
index 80197259afa8..86c3252971c8 100644
--- a/Documentation/devicetree/bindings/net/renesas,etheravb.yaml
+++ b/Documentation/devicetree/bindings/net/renesas,etheravb.yaml
@@ -44,9 +44,10 @@ properties:
 
       - items:
           - enum:
+              - renesas,r9a07g043-gbeth # RZ/G2UL
               - renesas,r9a07g044-gbeth # RZ/G2{L,LC}
               - renesas,r9a07g054-gbeth # RZ/V2L
-          - const: renesas,rzg2l-gbeth  # RZ/{G2L,V2L} family
+          - const: renesas,rzg2l-gbeth  # RZ/{G2L,G2UL,V2L} family
 
   reg: true
 
-- 
2.25.1



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

* Re: [PATCH 5.10.y-cip 00/10] Document RZ/G2UL SOC bindings
  2022-08-31 16:37 [PATCH 5.10.y-cip 00/10] Document RZ/G2UL SOC bindings Biju Das
                   ` (9 preceding siblings ...)
  2022-08-31 16:37 ` [PATCH 5.10.y-cip 10/10] dt-bindings: net: renesas,etheravb: " Biju Das
@ 2022-09-02  9:50 ` Pavel Machek
  2022-09-06  6:28 ` Pavel Machek
  11 siblings, 0 replies; 13+ messages in thread
From: Pavel Machek @ 2022-09-02  9:50 UTC (permalink / raw)
  To: Biju Das
  Cc: cip-dev, Nobuhiro Iwamatsu, Pavel Machek, Chris Paterson,
	Prabhakar Mahadev Lad

[-- Attachment #1: Type: text/plain, Size: 222 bytes --]

Hi!

> This patch series aims to document various IP's present in
> RZ/G2UL SoC.

This series looks okay to me.

Best regards,
								Pavel
-- 
People of Russia, stop Putin before his war on Ukraine escalates.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 195 bytes --]

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

* Re: [PATCH 5.10.y-cip 00/10] Document RZ/G2UL SOC bindings
  2022-08-31 16:37 [PATCH 5.10.y-cip 00/10] Document RZ/G2UL SOC bindings Biju Das
                   ` (10 preceding siblings ...)
  2022-09-02  9:50 ` [PATCH 5.10.y-cip 00/10] Document RZ/G2UL SOC bindings Pavel Machek
@ 2022-09-06  6:28 ` Pavel Machek
  11 siblings, 0 replies; 13+ messages in thread
From: Pavel Machek @ 2022-09-06  6:28 UTC (permalink / raw)
  To: Biju Das
  Cc: cip-dev, Nobuhiro Iwamatsu, Pavel Machek, Chris Paterson,
	Prabhakar Mahadev Lad

[-- Attachment #1: Type: text/plain, Size: 287 bytes --]

Hi!

> This patch series aims to document various IP's present in
> RZ/G2UL SoC.

Thank you, applied.

Best regards,
								Pavel
-- 
DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 195 bytes --]

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

end of thread, other threads:[~2022-09-06  6:28 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-31 16:37 [PATCH 5.10.y-cip 00/10] Document RZ/G2UL SOC bindings Biju Das
2022-08-31 16:37 ` [PATCH 5.10.y-cip 01/10] dt-bindings: arm: renesas: Document Renesas RZ/V2L SoC on SMARC EVK Biju Das
2022-08-31 16:37 ` [PATCH 5.10.y-cip 02/10] dt-bindings: arm: renesas: Document Renesas RZ/G2UL " Biju Das
2022-08-31 16:37 ` [PATCH 5.10.y-cip 03/10] dt-bindings: power: renesas,rzg2l-sysc: Document RZ/G2UL SoC Biju Das
2022-08-31 16:37 ` [PATCH 5.10.y-cip 04/10] dt-bindings: clock: renesas: " Biju Das
2022-08-31 16:37 ` [PATCH 5.10.y-cip 05/10] dt-bindings: pinctrl: renesas: Document RZ/G2UL pinctrl Biju Das
2022-08-31 16:37 ` [PATCH 5.10.y-cip 06/10] dt-bindings: serial: renesas,scif: Document RZ/G2UL SoC Biju Das
2022-08-31 16:37 ` [PATCH 5.10.y-cip 07/10] dt-bindings: serial: renesas,sci: " Biju Das
2022-08-31 16:37 ` [PATCH 5.10.y-cip 08/10] dt-bindings: dma: rz-dmac: " Biju Das
2022-08-31 16:37 ` [PATCH 5.10.y-cip 09/10] dt-bindings: mmc: renesas,sdhi: " Biju Das
2022-08-31 16:37 ` [PATCH 5.10.y-cip 10/10] dt-bindings: net: renesas,etheravb: " Biju Das
2022-09-02  9:50 ` [PATCH 5.10.y-cip 00/10] Document RZ/G2UL SOC bindings Pavel Machek
2022-09-06  6:28 ` Pavel Machek

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.