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 35 regulator-boot-on; 36 36 }; 37 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 + 38 48 vtt_fixed: fixedregulator-vtt { 39 49 /* TPS51200 */ 40 50 compatible = "regulator-fixed"; ··· 148 138 }; 149 139 }; 150 140 }; 141 + }; 142 + 143 + src_clk_x1: src_clk_x1 { 144 + #clock-cells = <0>; 145 + compatible = "fixed-clock"; 146 + clock-frequency = <20000000>; 151 147 }; 152 148 }; 153 149 ··· 394 378 gpio-controller; 395 379 #gpio-cells = <2>; 396 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 + }; 397 407 }; 398 408 399 409 &mcspi3 { ··· 585 543 586 544 &dss { 587 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 + }; 588 562 };