summaryrefslogtreecommitdiff
path: root/overlays/verdin-imx8_mipi-dsi-to-sn65dsi84.dtsi
blob: b5d7c6d912ecb6d9d40de081a563e70faa48e2a9 (plain)
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
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
/*
 * Copyright 2022 Toradex
 */

// Common Code to setup MIPI DSI to SN65DSI84

&lvds_ti_sn65dsi84 {
	status = "okay";

	ports {
		#address-cells = <1>;
		#size-cells = <0>;

		port@0 {
			reg = <0>;

			dsi84_in: endpoint {
				remote-endpoint = <&mipi_dsi_bridge1_out>;
				data-lanes = <1 2 3 4>;
			};
		};
	};
};

&mipi_dsi {
	#address-cells = <1>;
	#size-cells = <0>;
	status = "okay";

	port@1 {
		mipi_dsi_bridge1_out: endpoint {
			attach-bridge;
			remote-endpoint = <&dsi84_in>;
		};
	};
};