xref: /freebsd/sys/contrib/device-tree/Bindings/display/bridge/toshiba,tc358762.yaml (revision f126890ac5386406dadf7c4cfa9566cbb56537c5)
16be33864SEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
26be33864SEmmanuel Vadot%YAML 1.2
36be33864SEmmanuel Vadot---
46be33864SEmmanuel Vadot$id: http://devicetree.org/schemas/display/bridge/toshiba,tc358762.yaml#
56be33864SEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
66be33864SEmmanuel Vadot
76be33864SEmmanuel Vadottitle: Toshiba TC358762 MIPI DSI to MIPI DPI bridge
86be33864SEmmanuel Vadot
96be33864SEmmanuel Vadotmaintainers:
106be33864SEmmanuel Vadot  - Marek Vasut <marex@denx.de>
116be33864SEmmanuel Vadot
126be33864SEmmanuel Vadotdescription: |
136be33864SEmmanuel Vadot  The TC358762 is bridge device which converts MIPI DSI to MIPI DPI.
146be33864SEmmanuel Vadot
156be33864SEmmanuel Vadotproperties:
166be33864SEmmanuel Vadot  compatible:
176be33864SEmmanuel Vadot    enum:
186be33864SEmmanuel Vadot      - toshiba,tc358762
196be33864SEmmanuel Vadot
206be33864SEmmanuel Vadot  reg:
216be33864SEmmanuel Vadot    maxItems: 1
226be33864SEmmanuel Vadot    description: virtual channel number of a DSI peripheral
236be33864SEmmanuel Vadot
24*f126890aSEmmanuel Vadot  reset-gpios:
25*f126890aSEmmanuel Vadot    maxItems: 1
26*f126890aSEmmanuel Vadot
276be33864SEmmanuel Vadot  vddc-supply:
286be33864SEmmanuel Vadot    description: Regulator for 1.2V internal core power.
296be33864SEmmanuel Vadot
306be33864SEmmanuel Vadot  ports:
315def4c47SEmmanuel Vadot    $ref: /schemas/graph.yaml#/properties/ports
326be33864SEmmanuel Vadot
336be33864SEmmanuel Vadot    properties:
346be33864SEmmanuel Vadot      port@0:
355def4c47SEmmanuel Vadot        $ref: /schemas/graph.yaml#/properties/port
365def4c47SEmmanuel Vadot        description:
376be33864SEmmanuel Vadot          Video port for MIPI DSI input
386be33864SEmmanuel Vadot
396be33864SEmmanuel Vadot      port@1:
405def4c47SEmmanuel Vadot        $ref: /schemas/graph.yaml#/properties/port
415def4c47SEmmanuel Vadot        description:
426be33864SEmmanuel Vadot          Video port for MIPI DPI output (panel or connector).
436be33864SEmmanuel Vadot
446be33864SEmmanuel Vadot    required:
456be33864SEmmanuel Vadot      - port@1
466be33864SEmmanuel Vadot
476be33864SEmmanuel Vadotrequired:
486be33864SEmmanuel Vadot  - compatible
496be33864SEmmanuel Vadot  - reg
506be33864SEmmanuel Vadot  - vddc-supply
516be33864SEmmanuel Vadot  - ports
526be33864SEmmanuel Vadot
536be33864SEmmanuel VadotadditionalProperties: false
546be33864SEmmanuel Vadot
556be33864SEmmanuel Vadotexamples:
566be33864SEmmanuel Vadot  - |
57fac71e4eSEmmanuel Vadot    i2c {
586be33864SEmmanuel Vadot      #address-cells = <1>;
596be33864SEmmanuel Vadot      #size-cells = <0>;
606be33864SEmmanuel Vadot
616be33864SEmmanuel Vadot      bridge@0 {
626be33864SEmmanuel Vadot        reg = <0>;
636be33864SEmmanuel Vadot        compatible = "toshiba,tc358762";
646be33864SEmmanuel Vadot        vddc-supply = <&vcc_1v2_reg>;
656be33864SEmmanuel Vadot
666be33864SEmmanuel Vadot        ports {
676be33864SEmmanuel Vadot          #address-cells = <1>;
686be33864SEmmanuel Vadot          #size-cells = <0>;
696be33864SEmmanuel Vadot
706be33864SEmmanuel Vadot          port@0 {
716be33864SEmmanuel Vadot            reg = <0>;
726be33864SEmmanuel Vadot            bridge_in: endpoint {
736be33864SEmmanuel Vadot              remote-endpoint = <&dsi_out>;
746be33864SEmmanuel Vadot            };
756be33864SEmmanuel Vadot          };
766be33864SEmmanuel Vadot
776be33864SEmmanuel Vadot          port@1 {
786be33864SEmmanuel Vadot            reg = <1>;
796be33864SEmmanuel Vadot            bridge_out: endpoint {
806be33864SEmmanuel Vadot              remote-endpoint = <&panel_in>;
816be33864SEmmanuel Vadot            };
826be33864SEmmanuel Vadot          };
836be33864SEmmanuel Vadot        };
846be33864SEmmanuel Vadot      };
856be33864SEmmanuel Vadot    };
866be33864SEmmanuel Vadot
876be33864SEmmanuel Vadot...
88