90 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/display/bridge/toshiba,tc358764.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Toshiba TC358764 MIPI-DSI to LVDS bridge8 9maintainers:10 - Andrzej Hajda <andrzej.hajda@intel.com>11 12properties:13 compatible:14 const: toshiba,tc35876415 16 reg:17 description: Virtual channel number of a DSI peripheral18 maxItems: 119 20 reset-gpios:21 maxItems: 122 23 vddc-supply:24 description: Core voltage supply, 1.2V25 26 vddio-supply:27 description: I/O voltage supply, 1.8V or 3.3V28 29 vddlvds-supply:30 description: LVDS1/2 voltage supply, 3.3V31 32 ports:33 $ref: /schemas/graph.yaml#/properties/ports34 35 properties:36 port@0:37 $ref: /schemas/graph.yaml#/properties/port38 description:39 Video port for MIPI DSI input, if the bridge DSI controlled40 41 port@1:42 $ref: /schemas/graph.yaml#/properties/port43 description:44 Video port for LVDS output (panel or connector).45 46 required:47 - port@148 49required:50 - compatible51 - reg52 - reset-gpios53 - vddc-supply54 - vddio-supply55 - vddlvds-supply56 - ports57 58additionalProperties: false59 60examples:61 - |62 #include <dt-bindings/gpio/gpio.h>63 64 i2c {65 #address-cells = <1>;66 #size-cells = <0>;67 68 bridge@0 {69 compatible = "toshiba,tc358764";70 reg = <0>;71 72 reset-gpios = <&gpd1 6 GPIO_ACTIVE_LOW>;73 vddc-supply = <&vcc_1v2_reg>;74 vddio-supply = <&vcc_1v8_reg>;75 vddlvds-supply = <&vcc_3v3_reg>;76 77 ports {78 #address-cells = <1>;79 #size-cells = <0>;80 81 port@1 {82 reg = <1>;83 lvds_ep: endpoint {84 remote-endpoint = <&panel_ep>;85 };86 };87 };88 };89 };90