// SPDX-License-Identifier: GPL-2.0-or-later OR MIT /* * Copyright 2022 Toradex */ // Common Code to setup MIPI DSI to SN65DSI84 #include &{/} { reg_dsi_lvds: regulator-dsi-lvds { compatible = "regulator-fixed"; enable-active-high; regulator-boot-on; regulator-name = "DSI_1_PWR_EN"; }; }; &lvds_ti_sn65dsi84 { compatible = "ti,sn65dsi84"; vcc-supply = <®_dsi_lvds>; status = "okay"; ports { #address-cells = <1>; #size-cells = <0>; port@0 { reg = <0>; dsi84_in: endpoint { data-lanes = <1 2 3 4>; remote-endpoint = <&mipi_dsi_bridge1_out>; }; }; }; }; &mipi_dsi { samsung,esc-clock-frequency = <16000000>; status = "okay"; ports { #address-cells = <1>; #size-cells = <0>; port@1 { reg = <1>; mipi_dsi_bridge1_out: endpoint { attach-bridge; remote-endpoint = <&dsi84_in>; }; }; }; };