This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

SN65DSI84: SN65DSI84

Part Number: SN65DSI84

I am working SN65DSI84 with i.MX93.

 

I could recognized this SN65DSI84 chip.

But there are some error like below.

Could you let me know what I was wrong?

 

imx-drm display-subsystem: bound imx-lcdifv3-crtc.0 (ops lcdifv3_crtc_ops)
[   12.173565] [drm:drm_bridge_attach] ERROR failed to attach bridge /soc@0/dsi@4ae10000 to encoder DSI-34: -517
[   12.184922] dw-mipi-dsi-imx 4ae10000.dsi: [drm:dw_mipi_dsi_imx_bind] ERROR failed to attach bridge: -517
[   12.195948] dw-mipi-dsi-imx 4ae10000.dsi: [drm:dw_mipi_dsi_imx_probe] ERROR failed to register component: -517

...
        panel {
                compatible = "ampire,am-1280800n3tzqw-t00h";

                port {
                        panel_in_lvds: endpoint {
                                remote-endpoint = <&sn65dsi_out>;
                        };
                };
        };
...


&dphy {
        status = "okay";
};

&dsi {
        status = "okay";
        ports {
                #address-cells = <1>;
                #size-cells = <0>;
                port@1{
                        reg = <1>;
                        dsi_out_1: endpoint {
                                remote-endpoint = <&sn65dsi_in>;
                        };
                };
        };
};

&lcdif {
        status = "okay";
        assigned-clock-rates = <498000000>, <71142857>, <400000000>, <133333333>;
};

&ldb {
        status = "disabled";
};

&ldb_phy {
        status = "disabled";
};


&lpi2c3 {
        #address-cells = <1>;
        #size-cells = <0>;
        clock-frequency = <400000>;
        pinctrl-names = "default", "sleep";
        pinctrl-0 = <&pinctrl_lpi2c3>;
        pinctrl-1 = <&pinctrl_lpi2c3>;
        status = "okay";

        bridge@2c {
                compatible = "ti,sn65dsi84";
                reg = <0x2c>;
                enable-gpios = <&adp5585gpio 6 GPIO_ACTIVE_HIGH>;
                ports {
                        #address-cells = <1>;
                        #size-cells = <0>;

                        port@0 {
                                reg = <0>;
                                sn65dsi_in: endpoint {
                                        remote-endpoint = <&dsi_out_1>;
                                        data-lanes = <1 2 3 4>;
                                };
                        };

                        port@2 {
                                reg = <2>;
                                sn65dsi_out: endpoint {
                                        remote-endpoint = <&panel_in_lvds>;
                                };
                        };
                };
        };

};