From: Francesco Dolcini <francesco@dolcini.it>
To: Francesco Dolcini <francesco@dolcini.it>,
Andrzej Hajda <andrzej.hajda@intel.com>,
Neil Armstrong <neil.armstrong@linaro.org>,
Robert Foss <rfoss@kernel.org>,
Laurent Pinchart <Laurent.pinchart@ideasonboard.com>,
Jonas Karlman <jonas@kwiboo.se>,
Jernej Skrabec <jernej.skrabec@gmail.com>,
Luca Ceresoli <luca.ceresoli@bootlin.com>,
Maarten Lankhorst <maarten.lankhorst@linux.intel.com>,
Maxime Ripard <mripard@kernel.org>,
Thomas Zimmermann <tzimmermann@suse.de>,
David Airlie <airlied@gmail.com>, Simona Vetter <simona@ffwll.ch>,
Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>, Frank Li <Frank.Li@nxp.com>,
Sascha Hauer <s.hauer@pengutronix.de>,
Pengutronix Kernel Team <kernel@pengutronix.de>,
Fabio Estevam <festevam@gmail.com>
Cc: Francesco Dolcini <francesco.dolcini@toradex.com>,
dri-devel@lists.freedesktop.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org, imx@lists.linux.dev,
linux-arm-kernel@lists.infradead.org
Subject: [PATCH v1 1/3] dt-bindings: display: bridge: Add THine THC63LVD827
Date: Tue, 8 Sep 2026 12:02:25 +0200 [thread overview]
Message-ID: <20260908100230.83796-2-francesco@dolcini.it> (raw)
In-Reply-To: <20260908100230.83796-1-francesco@dolcini.it>
From: Francesco Dolcini <francesco.dolcini@toradex.com>
Add THine THC63LVD827 DPI to LVDS encoder.
The THC63LVD827 is a simple DPI to LVDS encoder that can be configured
with input pins.
Link: https://www.thine.co.jp/en/products/detail/THC63LVD827.html
Signed-off-by: Francesco Dolcini <francesco.dolcini@toradex.com>
---
.../display/bridge/thine,thc63lvd827.yaml | 126 ++++++++++++++++++
MAINTAINERS | 5 +
2 files changed, 131 insertions(+)
create mode 100644 Documentation/devicetree/bindings/display/bridge/thine,thc63lvd827.yaml
diff --git a/Documentation/devicetree/bindings/display/bridge/thine,thc63lvd827.yaml b/Documentation/devicetree/bindings/display/bridge/thine,thc63lvd827.yaml
new file mode 100644
index 000000000000..ead50802e11e
--- /dev/null
+++ b/Documentation/devicetree/bindings/display/bridge/thine,thc63lvd827.yaml
@@ -0,0 +1,126 @@
+# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/display/bridge/thine,thc63lvd827.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: THine THC63LVD827 DPI to LVDS encoder
+
+maintainers:
+ - Francesco Dolcini <francesco.dolcini@toradex.com>
+
+description: |
+ The THC63LVD827 converts a 24-bit parallel RGB interface plus HSYNC,
+ VSYNC and data-enable to single-link or dual-link LVDS.
+
+ The LVDS output data mapping is configured using the MAP and 6B/8B inputs,
+ that can be controlled by GPIOs.
+
+ The LVDS output link mode (single/dual) is configured using the MODE input.
+
+ The parallel interface pixel clock sample polarity is configurable with the
+ R/F input strap option.
+
+properties:
+ compatible:
+ const: thine,thc63lvd827
+
+ map-gpios:
+ maxItems: 1
+ description:
+ GPIO connected to the MAP input. A high level selects Mapping Mode 1
+ and a low level selects Mapping Mode 2.
+
+ mode-gpios:
+ maxItems: 1
+ description:
+ GPIO connected to the MODE input. A high level selects single-link
+ LVDS output and a low level selects dual-link LVDS output.
+
+ b6b8-gpios:
+ maxItems: 1
+ description:
+ GPIO connected to the 6B/8B input. A high level selects 6-bit (21-bit)
+ mode and a low level selects 8-bit (27-bit) mode.
+
+ powerdown-gpios:
+ maxItems: 1
+ description:
+ GPIO connected to the active-low /PDWN input. A high level selects
+ normal operation and a low level power down the chip.
+
+ ports:
+ $ref: /schemas/graph.yaml#/properties/ports
+
+ properties:
+ port@0:
+ $ref: /schemas/graph.yaml#/$defs/port-base
+ unevaluatedProperties: false
+ description: Parallel RGB input
+
+ properties:
+ endpoint:
+ $ref: /schemas/media/video-interfaces.yaml
+ unevaluatedProperties: false
+
+ properties:
+ pclk-sample:
+ description:
+ Sample data on falling (0) or rising (1) edges of the pixel
+ clock signal.
+ enum: [ 0, 1 ]
+ default: 0
+
+ port@1:
+ $ref: /schemas/graph.yaml#/properties/port
+ description: LVDS output 1st link, used in single- and dual-link mode.
+
+ port@2:
+ $ref: /schemas/graph.yaml#/properties/port
+ description: Optional LVDS output 2nd link, for dual-link mode.
+
+ required:
+ - port@0
+ - port@1
+
+required:
+ - compatible
+ - ports
+
+additionalProperties: false
+
+examples:
+ - |
+ #include <dt-bindings/gpio/gpio.h>
+
+ lvds-encoder {
+ compatible = "thine,thc63lvd827";
+
+ map-gpios = <&gpio4 10 GPIO_ACTIVE_HIGH>;
+ mode-gpios = <&gpio4 11 GPIO_ACTIVE_HIGH>;
+ powerdown-gpios = <&gpio4 12 GPIO_ACTIVE_LOW>;
+
+ ports {
+ #address-cells = <1>;
+ #size-cells = <0>;
+
+ port@0 {
+ reg = <0>;
+
+ endpoint {
+ pclk-sample = <1>;
+ remote-endpoint = <&dpi_out>;
+ };
+ };
+
+ port@1 {
+ reg = <1>;
+
+ endpoint {
+ remote-endpoint = <&lvds_display_in>;
+ };
+ };
+ };
+ };
+
+...
diff --git a/MAINTAINERS b/MAINTAINERS
index 6215fcb07770..0b5a25a35367 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -8580,6 +8580,11 @@ F: Documentation/devicetree/bindings/display/rockchip/rockchip,dw-dp.yaml
F: drivers/gpu/drm/bridge/synopsys/dw-dp.c
F: include/drm/bridge/dw_dp.h
+DRM DRIVER FOR THINE THC63LVD827 DPI TO LVDS BRIDGE
+M: Francesco Dolcini <francesco@dolcini.it>
+S: Maintained
+F: Documentation/devicetree/bindings/display/bridge/thine,thc63lvd827.yaml
+
DRM DRIVER FOR TI DLPC3433 MIPI DSI TO DMD BRIDGE
M: Jagan Teki <jagan@amarulasolutions.com>
S: Maintained
--
2.47.3
next prev parent reply other threads:[~2026-09-08 10:03 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-08 10:02 [PATCH v1 0/3] drm/bridge: Add Thine THC63LVD827 LVDS encoder and 10inch LVDS panel on Colibri iMX7 Francesco Dolcini
2026-09-08 10:02 ` Francesco Dolcini [this message]
2026-09-09 19:18 ` [PATCH v1 1/3] dt-bindings: display: bridge: Add THine THC63LVD827 Frank Li
2026-09-08 10:02 ` [PATCH v1 2/3] drm/bridge: Add THine THC63LVD827 LVDS encoder Francesco Dolcini
2026-09-08 10:02 ` [PATCH v1 3/3] ARM: dts: imx7d-colibri-emmc: Add Toradex Capacitive Touch Display 10" LVDS Francesco Dolcini
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=20260908100230.83796-2-francesco@dolcini.it \
--to=francesco@dolcini.it \
--cc=Frank.Li@nxp.com \
--cc=Laurent.pinchart@ideasonboard.com \
--cc=airlied@gmail.com \
--cc=andrzej.hajda@intel.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=festevam@gmail.com \
--cc=francesco.dolcini@toradex.com \
--cc=imx@lists.linux.dev \
--cc=jernej.skrabec@gmail.com \
--cc=jonas@kwiboo.se \
--cc=kernel@pengutronix.de \
--cc=krzk+dt@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=luca.ceresoli@bootlin.com \
--cc=maarten.lankhorst@linux.intel.com \
--cc=mripard@kernel.org \
--cc=neil.armstrong@linaro.org \
--cc=rfoss@kernel.org \
--cc=robh@kernel.org \
--cc=s.hauer@pengutronix.de \
--cc=simona@ffwll.ch \
--cc=tzimmermann@suse.de \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox