Our FPGA output 2 channel (MIPI 4 lanes) to Orin NX CSI-0, CSI-2 on our Orin NX customer board.
Orin NX can’t video0 and video1 by bus-width=<4>.
fpga_a@32 {
port-index = <0>;
bus-width = <4>;
tegra_sinterface = "serial_a";
lane_polarity = "6";
}
fpga_b@44 {
port-index = <2>;
bus-width = <4>;
tegra_sinterface = "serial_c";
lane_polarity = "0";
}
But we try configure FPGA to output 2 channel (MIPI 2 lanes) to Orin NX CSI-0, CSI-2.
Orin NX could get video-0 and video-1 by bus-width=<2>.
fpga_a@32 {
port-index = <0>;
bus-width = <2>;
tegra_sinterface = "serial_a";
lane_polarity = "6";
}
fpga_b@44 {
port-index = <2>;
bus-width = <2>;
tegra_sinterface = "serial_c";
lane_polarity = "0";
}
May I to know how to get MIPI 4 lanes on Orin NX?
How to narrow down the issue?