All of lore.kernel.org
 help / color / mirror / Atom feed
From: Biju Das <biju.das.jz@bp.renesas.com>
To: David Airlie <airlied@gmail.com>, Daniel Vetter <daniel@ffwll.ch>,
	Rob Herring <robh+dt@kernel.org>,
	Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>
Cc: Biju Das <biju.das.jz@bp.renesas.com>,
	Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>,
	dri-devel@lists.freedesktop.org,
	linux-renesas-soc@vger.kernel.org, devicetree@vger.kernel.org,
	Geert Uytterhoeven <geert+renesas@glider.be>,
	Fabrizio Castro <fabrizio.castro.jz@renesas.com>,
	Prabhakar Mahadev Lad <prabhakar.mahadev-lad.rj@bp.renesas.com>,
	Rob Herring <robh@kernel.org>
Subject: [PATCH v8 3/5] dt-bindings: display: renesas,rzg2l-du: Document RZ/V2L DU bindings
Date: Mon, 24 Apr 2023 17:10:22 +0100	[thread overview]
Message-ID: <20230424161024.136316-4-biju.das.jz@bp.renesas.com> (raw)
In-Reply-To: <20230424161024.136316-1-biju.das.jz@bp.renesas.com>

Document DU found in RZ/V2L SoC. The DU block is identical to RZ/G2L
SoC and therefore use RZ/G2L fallback to avoid any driver changes.

Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
Reviewed-by: Rob Herring <robh@kernel.org>
---
v7->v8:
 * Fixed the typo vsp2->du
 * Added Rb tag from Rob as the change is trivial.
v7:
 * New patch.
---
 .../devicetree/bindings/display/renesas,rzg2l-du.yaml    | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/Documentation/devicetree/bindings/display/renesas,rzg2l-du.yaml b/Documentation/devicetree/bindings/display/renesas,rzg2l-du.yaml
index ab99e7d57a7d..98686ea84d53 100644
--- a/Documentation/devicetree/bindings/display/renesas,rzg2l-du.yaml
+++ b/Documentation/devicetree/bindings/display/renesas,rzg2l-du.yaml
@@ -16,8 +16,13 @@ description: |
 
 properties:
   compatible:
-    enum:
-      - renesas,r9a07g044-du # RZ/G2{L,LC}
+    oneOf:
+      - enum:
+          - renesas,r9a07g044-du # RZ/G2{L,LC}
+      - items:
+          - enum:
+              - renesas,r9a07g054-du    # RZ/V2L
+          - const: renesas,r9a07g044-du # RZ/G2L fallback
 
   reg:
     maxItems: 1
-- 
2.25.1


WARNING: multiple messages have this Message-ID (diff)
From: Biju Das <biju.das.jz@bp.renesas.com>
To: David Airlie <airlied@gmail.com>, Daniel Vetter <daniel@ffwll.ch>,
	Rob Herring <robh+dt@kernel.org>,
	Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>
Cc: devicetree@vger.kernel.org,
	Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>,
	Geert Uytterhoeven <geert+renesas@glider.be>,
	Prabhakar Mahadev Lad <prabhakar.mahadev-lad.rj@bp.renesas.com>,
	dri-devel@lists.freedesktop.org,
	linux-renesas-soc@vger.kernel.org,
	Fabrizio Castro <fabrizio.castro.jz@renesas.com>,
	Biju Das <biju.das.jz@bp.renesas.com>
Subject: [PATCH v8 3/5] dt-bindings: display: renesas, rzg2l-du: Document RZ/V2L DU bindings
Date: Mon, 24 Apr 2023 17:10:22 +0100	[thread overview]
Message-ID: <20230424161024.136316-4-biju.das.jz@bp.renesas.com> (raw)
In-Reply-To: <20230424161024.136316-1-biju.das.jz@bp.renesas.com>

Document DU found in RZ/V2L SoC. The DU block is identical to RZ/G2L
SoC and therefore use RZ/G2L fallback to avoid any driver changes.

Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
Reviewed-by: Rob Herring <robh@kernel.org>
---
v7->v8:
 * Fixed the typo vsp2->du
 * Added Rb tag from Rob as the change is trivial.
v7:
 * New patch.
---
 .../devicetree/bindings/display/renesas,rzg2l-du.yaml    | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/Documentation/devicetree/bindings/display/renesas,rzg2l-du.yaml b/Documentation/devicetree/bindings/display/renesas,rzg2l-du.yaml
index ab99e7d57a7d..98686ea84d53 100644
--- a/Documentation/devicetree/bindings/display/renesas,rzg2l-du.yaml
+++ b/Documentation/devicetree/bindings/display/renesas,rzg2l-du.yaml
@@ -16,8 +16,13 @@ description: |
 
 properties:
   compatible:
-    enum:
-      - renesas,r9a07g044-du # RZ/G2{L,LC}
+    oneOf:
+      - enum:
+          - renesas,r9a07g044-du # RZ/G2{L,LC}
+      - items:
+          - enum:
+              - renesas,r9a07g054-du    # RZ/V2L
+          - const: renesas,r9a07g044-du # RZ/G2L fallback
 
   reg:
     maxItems: 1
-- 
2.25.1


  parent reply	other threads:[~2023-04-24 16:10 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-04-24 16:10 [PATCH v8 0/5] Add RZ/{G2L,G2LC} and RZ/V2L Display Unit support Biju Das
2023-04-24 16:10 ` Biju Das
2023-04-24 16:10 ` [PATCH v8 1/5] drm: Place Renesas drivers in a separate dir Biju Das
2023-04-24 16:10   ` Biju Das
2023-04-24 16:33   ` Kieran Bingham
2023-04-24 16:33     ` Kieran Bingham
2023-04-24 17:09   ` Laurent Pinchart
2023-04-24 17:09     ` Laurent Pinchart
2023-04-24 16:10 ` [PATCH v8 2/5] dt-bindings: display: Document Renesas RZ/G2L DU bindings Biju Das
2023-04-24 16:10   ` Biju Das
2023-04-25  2:58   ` Laurent Pinchart
2023-04-25  2:58     ` Laurent Pinchart
2023-04-25  8:51     ` Biju Das
2023-04-25  8:51       ` Biju Das
2023-04-24 16:10 ` Biju Das [this message]
2023-04-24 16:10   ` [PATCH v8 3/5] dt-bindings: display: renesas, rzg2l-du: Document RZ/V2L " Biju Das
2023-04-25  2:59   ` [PATCH v8 3/5] dt-bindings: display: renesas,rzg2l-du: " Laurent Pinchart
2023-04-25  2:59     ` Laurent Pinchart
2023-04-25  7:47   ` Geert Uytterhoeven
2023-04-25  7:47     ` Geert Uytterhoeven
2023-04-24 16:10 ` [PATCH v8 4/5] drm: Add RZ/G2L DU Support Biju Das
2023-04-24 16:10   ` Biju Das
2023-04-24 18:38   ` Philipp Zabel
2023-04-24 18:38     ` Philipp Zabel
2023-04-25  8:10     ` Biju Das
2023-04-25  8:10       ` Biju Das
2023-04-24 16:10 ` [PATCH v8 5/5] MAINTAINERS: Add maintainer for RZ DU drivers Biju Das
2023-04-24 16:10   ` Biju Das
2023-04-25  3:00   ` Laurent Pinchart
2023-04-25  3:00     ` Laurent Pinchart
2023-04-25  7:55   ` Geert Uytterhoeven
2023-04-25  7:55     ` Geert Uytterhoeven
2023-04-25  8:55     ` Biju Das
2023-04-25  8:55       ` Biju Das
2023-04-25  9:39       ` Geert Uytterhoeven
2023-04-25  9:39         ` Geert Uytterhoeven
2023-04-25 10:02         ` Biju Das
2023-04-25 10:02           ` Biju Das

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230424161024.136316-4-biju.das.jz@bp.renesas.com \
    --to=biju.das.jz@bp.renesas.com \
    --cc=airlied@gmail.com \
    --cc=daniel@ffwll.ch \
    --cc=devicetree@vger.kernel.org \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=fabrizio.castro.jz@renesas.com \
    --cc=geert+renesas@glider.be \
    --cc=krzysztof.kozlowski+dt@linaro.org \
    --cc=laurent.pinchart+renesas@ideasonboard.com \
    --cc=linux-renesas-soc@vger.kernel.org \
    --cc=prabhakar.mahadev-lad.rj@bp.renesas.com \
    --cc=robh+dt@kernel.org \
    --cc=robh@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.