Based on kernel version 6.11
. Page generated on 2024-09-24 08:21 EST
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 | # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) %YAML 1.2 --- $id: http://devicetree.org/schemas/display/bridge/toshiba,tc358775.yaml# $schema: http://devicetree.org/meta-schemas/core.yaml# title: Toshiba TC358775 DSI to LVDS bridge maintainers: - Vinay Simha BN <simhavcs@gmail.com> description: | This binding supports DSI to LVDS bridges TC358765 and TC358775 MIPI DSI-RX Data 4-lane, CLK 1-lane with data rates up to 800 Mbps/lane. Video frame size: Up to 1600x1200 24-bit/pixel resolution for single-link LVDS display panel limited by 135 MHz LVDS speed Up to WUXGA (1920x1200 24-bit pixels) resolution for dual-link LVDS display panel, limited by 270 MHz LVDS speed. properties: compatible: enum: - toshiba,tc358765 - toshiba,tc358775 reg: maxItems: 1 description: i2c address of the bridge, 0x0f vdd-supply: description: 1.2V LVDS Power Supply vddio-supply: description: 1.8V IO Power Supply stby-gpios: maxItems: 1 description: Standby pin, Low active reset-gpios: maxItems: 1 description: Hardware reset, Low active ports: $ref: /schemas/graph.yaml#/properties/ports properties: port@0: $ref: /schemas/graph.yaml#/$defs/port-base unevaluatedProperties: false description: | DSI Input. The remote endpoint phandle should be a reference to a valid mipi_dsi_host device node. properties: endpoint: $ref: /schemas/media/video-interfaces.yaml# unevaluatedProperties: false properties: data-lanes: description: array of physical DSI data lane indexes. minItems: 1 items: - const: 1 - const: 2 - const: 3 - const: 4 port@1: $ref: /schemas/graph.yaml#/properties/port description: | Video port for LVDS output (panel or connector). port@2: $ref: /schemas/graph.yaml#/properties/port description: | Video port for Dual link LVDS output (panel or connector). required: - port@0 - port@1 required: - compatible - reg - vdd-supply - vddio-supply - reset-gpios - ports allOf: - if: properties: compatible: contains: const: toshiba,tc358765 then: properties: stby-gpios: false additionalProperties: false examples: - | #include <dt-bindings/gpio/gpio.h> /* For single-link LVDS display panel */ i2c@78b8000 { /* On High speed expansion */ label = "HS-I2C2"; reg = <0x078b8000 0x500>; clock-frequency = <400000>; /* fastmode operation */ #address-cells = <1>; #size-cells = <0>; tc_bridge: bridge@f { compatible = "toshiba,tc358775"; reg = <0x0f>; vdd-supply = <&pm8916_l2>; vddio-supply = <&pm8916_l6>; stby-gpios = <&msmgpio 99 GPIO_ACTIVE_LOW>; reset-gpios = <&msmgpio 72 GPIO_ACTIVE_LOW>; ports { #address-cells = <1>; #size-cells = <0>; port@0 { reg = <0>; d2l_in_test: endpoint { remote-endpoint = <&dsi0_out>; data-lanes = <1 2 3 4>; }; }; port@1 { reg = <1>; lvds_out: endpoint { remote-endpoint = <&panel_in>; }; }; }; }; }; dsi@1a98000 { reg = <0x1a98000 0x25c>; reg-names = "dsi_ctrl"; ports { #address-cells = <1>; #size-cells = <0>; port@1 { reg = <1>; dsi0_out: endpoint { remote-endpoint = <&d2l_in_test>; }; }; }; }; - | /* For dual-link LVDS display panel */ i2c@78b8000 { /* On High speed expansion */ label = "HS-I2C2"; reg = <0x078b8000 0x500>; clock-frequency = <400000>; /* fastmode operation */ #address-cells = <1>; #size-cells = <0>; tc_bridge_dual: bridge@f { compatible = "toshiba,tc358775"; reg = <0x0f>; vdd-supply = <&pm8916_l2>; vddio-supply = <&pm8916_l6>; stby-gpios = <&msmgpio 99 GPIO_ACTIVE_LOW>; reset-gpios = <&msmgpio 72 GPIO_ACTIVE_LOW>; ports { #address-cells = <1>; #size-cells = <0>; port@0 { reg = <0>; d2l_in_dual: endpoint { remote-endpoint = <&dsi0_out_dual>; data-lanes = <1 2 3 4>; }; }; port@1 { reg = <1>; lvds0_out: endpoint { remote-endpoint = <&panel_in0>; }; }; port@2 { reg = <2>; lvds1_out: endpoint { remote-endpoint = <&panel_in1>; }; }; }; }; }; dsi@1a98000 { reg = <0x1a98000 0x25c>; reg-names = "dsi_ctrl"; ports { #address-cells = <1>; #size-cells = <0>; port@1 { reg = <1>; dsi0_out_dual: endpoint { remote-endpoint = <&d2l_in_dual>; }; }; }; }; ... |