How to display dsi to dual lvds using sn65dsi84?

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 
已解决

How to display dsi to dual lvds using sn65dsi84?

跳至解决方案
1,214 次查看
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,190 次查看
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,191 次查看
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>;
			};
		};
	};
};