ARM: dts: am57xx-idk-common: add tc358778 bridge

AM5 IDK boards have TC358778 DPI-to-DSI bridge. Two different DSI panel
models are used with the AM5 IDKs, and these panels are added with DT
overlays. The AM5 IDKs can also be used without any panel.

Add TC358778 data to the am57xx-idk-common.dtsi, but set the status to
disabled.

Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>

authored by Tomi Valkeinen and committed by Tony Lindgren 441ba630 520557d4

+58
+58
arch/arm/boot/dts/am57xx-idk-common.dtsi
··· 35 regulator-boot-on; 36 }; 37 38 vtt_fixed: fixedregulator-vtt { 39 /* TPS51200 */ 40 compatible = "regulator-fixed"; ··· 148 }; 149 }; 150 }; 151 }; 152 }; 153 ··· 394 gpio-controller; 395 #gpio-cells = <2>; 396 }; 397 }; 398 399 &mcspi3 { ··· 585 586 &dss { 587 status = "okay"; 588 };
··· 35 regulator-boot-on; 36 }; 37 38 + v1_2d: fixedregulator-v1_2d { 39 + compatible = "regulator-fixed"; 40 + regulator-name = "V1_2D"; 41 + vin-supply = <&vmain>; 42 + regulator-min-microvolt = <1200000>; 43 + regulator-max-microvolt = <1200000>; 44 + regulator-always-on; 45 + regulator-boot-on; 46 + }; 47 + 48 vtt_fixed: fixedregulator-vtt { 49 /* TPS51200 */ 50 compatible = "regulator-fixed"; ··· 138 }; 139 }; 140 }; 141 + }; 142 + 143 + src_clk_x1: src_clk_x1 { 144 + #clock-cells = <0>; 145 + compatible = "fixed-clock"; 146 + clock-frequency = <20000000>; 147 }; 148 }; 149 ··· 378 gpio-controller; 379 #gpio-cells = <2>; 380 }; 381 + 382 + dsi_bridge: tc358778@e { 383 + compatible = "toshiba,tc358778", "toshiba,tc358768"; 384 + reg = <0xe>; 385 + status = "disabled"; 386 + 387 + clocks = <&src_clk_x1>; 388 + clock-names = "refclk"; 389 + 390 + vddc-supply = <&v1_2d>; 391 + vddmipi-supply = <&v1_2d>; 392 + vddio-supply = <&v3_3d>; 393 + 394 + dsi_bridge_ports: ports { 395 + #address-cells = <1>; 396 + #size-cells = <0>; 397 + 398 + port@0 { 399 + reg = <0>; 400 + rgb_in: endpoint { 401 + remote-endpoint = <&dpi_out>; 402 + data-lines = <24>; 403 + }; 404 + }; 405 + }; 406 + }; 407 }; 408 409 &mcspi3 { ··· 543 544 &dss { 545 status = "okay"; 546 + 547 + vdda_video-supply = <&ldoln_reg>; 548 + 549 + ports { 550 + #address-cells = <1>; 551 + #size-cells = <0>; 552 + 553 + port@0 { 554 + reg = <0>; 555 + 556 + dpi_out: endpoint { 557 + remote-endpoint = <&rgb_in>; 558 + data-lines = <24>; 559 + }; 560 + }; 561 + }; 562 };