How to display dsi to dual lvds using sn65dsi84?

キャンセル
次の結果を表示 
表示  限定  | 次の代わりに検索 
もしかして: 

How to display dsi to dual lvds using sn65dsi84?

ソリューションへジャンプ
1,284件の閲覧回数
hansung_jung
Contributor III

Hi,

I would like to use sn65dsi84 to display mipi-dsi as dual-link lvds.

However, only imx8m reference can be found.

My processor is imx8qxp, using custom bsp in linux kernel 5.15.71.

I found some imx8m references, but I don't know how to migrate to imx8qxp.

For example, in the sample dts below, I don't know what the replacement for &mipi_dsi_bridge is.

-------------------------------

&mipi_dsi_bridge {
status = "okay";

  port@2 {
    mipi_dsi_bridge_out: endpoint {
      remote-endpoint = <&sn65dsi84_in>;
    };
  };
};

-------------------------------

Can I find imx8qxp reference using sn65dsi84?

Thanks in advance.

0 件の賞賛
返信
1 解決策
1,260件の閲覧回数
Zhiming_Liu
NXP TechSupport
NXP TechSupport

Hi @hansung_jung 

Please find arch/arm64/boot/dts/freescale/imx8x-mek.dtsi and refer adv7535 node to port your sn65dsi84 node.

&mipi0_dsi_host {
	status = "okay";

	ports {
		port@1 {
			reg = <1>;
			mipi0_adv_out: endpoint {
				remote-endpoint = <&adv7535_0_in>;
			};
		};
	};
};

 

元の投稿で解決策を見る

1 返信
1,261件の閲覧回数
Zhiming_Liu
NXP TechSupport
NXP TechSupport

Hi @hansung_jung 

Please find arch/arm64/boot/dts/freescale/imx8x-mek.dtsi and refer adv7535 node to port your sn65dsi84 node.

&mipi0_dsi_host {
	status = "okay";

	ports {
		port@1 {
			reg = <1>;
			mipi0_adv_out: endpoint {
				remote-endpoint = <&adv7535_0_in>;
			};
		};
	};
};