[PATCH 1/2] dt-bindings: display: panel: Add TSD TST070WSBE-196C panel
From: William Bright
Date: Mon Apr 27 2026 - 11:33:13 EST
Add device tree binding documentation for the TSD TST070WSBE-196C, a 7"
1024x600 MIPI-DSI TFT LCD panel using an EK79007AD controller. The
panel is connected via a 4-lane MIPI-DSI video interface.
Signed-off-by: William Bright <william.bright@xxxxxxxxxxx>
---
.../display/panel/tsd,tst070wsbe-196c.yaml | 64 ++++++++++++++++++++++
1 file changed, 64 insertions(+)
diff --git a/Documentation/devicetree/bindings/display/panel/tsd,tst070wsbe-196c.yaml b/Documentation/devicetree/bindings/display/panel/tsd,tst070wsbe-196c.yaml
new file mode 100644
index 000000000000..fe3f45aa4575
--- /dev/null
+++ b/Documentation/devicetree/bindings/display/panel/tsd,tst070wsbe-196c.yaml
@@ -0,0 +1,64 @@
+# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/display/panel/tsd,tst070wsbe-196c.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: TSD TST070WSBE-196C 7" 1024x600 MIPI-DSI TFT LCD panel
+
+maintainers:
+ - William Bright <william.bright@xxxxxxxxxxx>
+
+description: |
+ The TSD TST070WSBE-196C is a 7" 1024x600 TFT LCD panel module with an
+ EK79007AD controller, connected via a 4-lane MIPI-DSI video interface.
+
+allOf:
+ - $ref: panel-common.yaml
+
+properties:
+ compatible:
+ const: tsd,tst070wsbe-196c
+
+ reg:
+ maxItems: 1
+ description: DSI virtual channel
+
+ backlight: true
+ reset-gpios: true
+ power-supply: true
+ port: true
+
+required:
+ - compatible
+ - reg
+ - reset-gpios
+ - power-supply
+ - port
+
+additionalProperties: false
+
+examples:
+ - |
+ #include <dt-bindings/gpio/gpio.h>
+
+ dsi {
+ #address-cells = <1>;
+ #size-cells = <0>;
+
+ panel@0 {
+ compatible = "tsd,tst070wsbe-196c";
+ reg = <0>;
+
+ reset-gpios = <&tlmm 133 GPIO_ACTIVE_LOW>;
+ power-supply = <&display_panel_pwr_en>;
+ backlight = <&backlight>;
+
+ port {
+ panel_in: endpoint {
+ remote-endpoint = <&dsi_out>;
+ };
+ };
+ };
+ };
+...
--
2.43.0