1 # SPDX-License-Identifier: (GPL-2.0-only OR BS 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2 %YAML 1.2 2 %YAML 1.2 3 --- 3 --- 4 $id: http://devicetree.org/schemas/display/bri 4 $id: http://devicetree.org/schemas/display/bridge/toshiba,tc358762.yaml# 5 $schema: http://devicetree.org/meta-schemas/co 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 6 6 7 title: Toshiba TC358762 MIPI DSI to MIPI DPI b 7 title: Toshiba TC358762 MIPI DSI to MIPI DPI bridge 8 8 9 maintainers: 9 maintainers: 10 - Marek Vasut <marex@denx.de> 10 - Marek Vasut <marex@denx.de> 11 11 12 description: | 12 description: | 13 The TC358762 is bridge device which converts 13 The TC358762 is bridge device which converts MIPI DSI to MIPI DPI. 14 14 15 properties: 15 properties: 16 compatible: 16 compatible: 17 enum: 17 enum: 18 - toshiba,tc358762 18 - toshiba,tc358762 19 19 20 reg: 20 reg: 21 maxItems: 1 21 maxItems: 1 22 description: virtual channel number of a D 22 description: virtual channel number of a DSI peripheral 23 23 24 reset-gpios: 24 reset-gpios: 25 maxItems: 1 25 maxItems: 1 26 26 27 vddc-supply: 27 vddc-supply: 28 description: Regulator for 1.2V internal c 28 description: Regulator for 1.2V internal core power. 29 29 30 ports: 30 ports: 31 $ref: /schemas/graph.yaml#/properties/port 31 $ref: /schemas/graph.yaml#/properties/ports 32 32 33 properties: 33 properties: 34 port@0: 34 port@0: 35 $ref: /schemas/graph.yaml#/properties/ 35 $ref: /schemas/graph.yaml#/properties/port 36 description: 36 description: 37 Video port for MIPI DSI input 37 Video port for MIPI DSI input 38 38 39 port@1: 39 port@1: 40 $ref: /schemas/graph.yaml#/properties/ 40 $ref: /schemas/graph.yaml#/properties/port 41 description: 41 description: 42 Video port for MIPI DPI output (pane 42 Video port for MIPI DPI output (panel or connector). 43 43 44 required: 44 required: 45 - port@1 45 - port@1 46 46 47 required: 47 required: 48 - compatible 48 - compatible 49 - reg 49 - reg 50 - vddc-supply 50 - vddc-supply 51 - ports 51 - ports 52 52 53 additionalProperties: false 53 additionalProperties: false 54 54 55 examples: 55 examples: 56 - | 56 - | 57 i2c { 57 i2c { 58 #address-cells = <1>; 58 #address-cells = <1>; 59 #size-cells = <0>; 59 #size-cells = <0>; 60 60 61 bridge@0 { 61 bridge@0 { 62 reg = <0>; 62 reg = <0>; 63 compatible = "toshiba,tc358762"; 63 compatible = "toshiba,tc358762"; 64 vddc-supply = <&vcc_1v2_reg>; 64 vddc-supply = <&vcc_1v2_reg>; 65 65 66 ports { 66 ports { 67 #address-cells = <1>; 67 #address-cells = <1>; 68 #size-cells = <0>; 68 #size-cells = <0>; 69 69 70 port@0 { 70 port@0 { 71 reg = <0>; 71 reg = <0>; 72 bridge_in: endpoint { 72 bridge_in: endpoint { 73 remote-endpoint = <&dsi_out>; 73 remote-endpoint = <&dsi_out>; 74 }; 74 }; 75 }; 75 }; 76 76 77 port@1 { 77 port@1 { 78 reg = <1>; 78 reg = <1>; 79 bridge_out: endpoint { 79 bridge_out: endpoint { 80 remote-endpoint = <&panel_in>; 80 remote-endpoint = <&panel_in>; 81 }; 81 }; 82 }; 82 }; 83 }; 83 }; 84 }; 84 }; 85 }; 85 }; 86 86 87 ... 87 ...
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.