[PATCH v3 2/2] dt-bindings: display: sn65dsi83: Add output data-lanes
From: Wojciech Dubowik
Date: Fri Jul 10 2026 - 04:31:05 EST
From: Wojciech Dubowik <Wojciech.Dubowik@xxxxxx>
Add an optional output lvds data lanes property with
two allowed values. The array <1 2 3 4> for standard
layout and <4 3 2 1> for reversed lvds output lanes.
The latter informs the driver that reverse lvds config
option has to be set in config register for the respective
output channel.
Signed-off-by: Wojciech Dubowik <Wojciech.Dubowik@xxxxxx>
---
.../bindings/display/bridge/ti,sn65dsi83.yaml | 42 +++++++++++++++++++
1 file changed, 42 insertions(+)
diff --git a/Documentation/devicetree/bindings/display/bridge/ti,sn65dsi83.yaml b/Documentation/devicetree/bindings/display/bridge/ti,sn65dsi83.yaml
index e69b6343a8eb..4431f113bb9c 100644
--- a/Documentation/devicetree/bindings/display/bridge/ti,sn65dsi83.yaml
+++ b/Documentation/devicetree/bindings/display/bridge/ti,sn65dsi83.yaml
@@ -86,10 +86,52 @@ properties:
description: Video port for LVDS Channel-A output (panel or bridge).
$ref: '#/$defs/lvds-port'
+ properties:
+ data-lanes:
+ $ref: /schemas/types.yaml#/definitions/uint32-array
+ description: |
+ Array of physical LVDS data lane indexes
+ oneOf:
+ - items:
+ - const: 1
+ - const: 2
+ - const: 3
+ - const: 4
+ description: |
+ This is the default layout
+ - items:
+ - const: 4
+ - const: 3
+ - const: 2
+ - const: 1
+ description: |
+ This is the reversed layout
+
port@3:
description: Video port for LVDS Channel-B output (panel or bridge).
$ref: '#/$defs/lvds-port'
+ properties:
+ data-lanes:
+ $ref: /schemas/types.yaml#/definitions/uint32-array
+ description: |
+ Array of physical LVDS data lane indexes
+ oneOf:
+ - items:
+ - const: 1
+ - const: 2
+ - const: 3
+ - const: 4
+ description: |
+ This is the default layout
+ - items:
+ - const: 4
+ - const: 3
+ - const: 2
+ - const: 1
+ description: |
+ This is the reversed layout
+
required:
- port@0
- port@2
--
2.47.3