Connect MIPI DSI Panasonic display to VIM3

Hi guys,
I’m going to connect a 10inch DSI display to VIM3.

I bought VVX10F004B00 panel.
This panel is supported by linux-mainline 5.12

"For simple panels that don’t require custom programming sequences there is panel-simple.c, but that is unlikely to be applicable for the DSI panel in any phone/tablet. Instead, for panels requiring custom programming sequences, a new panel driver is written.

"

I’ve attached panel’s datasheet. 808.5 KB file on MEGA

Also, I’ve made a custom 30P-0.5 to DIP converter.

I have some questions ?

  1. what is the DSI logic signal voltage ? My panel supports 2V signaling. Thus I need to use level shifters ?

  2. Could you please suggest a correct DTS for my panel ?
    I have an example from the driver description. Is it correct for VIM3?

dsi {
      #address-cells = <1>;
      #size-cells = <0>;
      panel@0 {
        compatible = "panasonic,vvx10f034n00";
        reg = <0>;
        power-supply = <&vcc_lcd_reg>;
        port {
          panel: endpoint {
            remote-endpoint = <&ltdc_out>;
          };
        };
      };
    };

Thank you in advance.

Answering myself regarding MIPI DSI signal voltage.

According “A311D_Quick_Reference_Manual_01_Wesion.pdf”
Recommended Operating Conditions
AVDD18
1.8V AVDD for HDMI, USB, SARADC, PCIE, CVBS, AUDIO, MIPI_DSI, MIPI_CSI and ETHERNET phy.
Min. 1.71V, Typ. 1.80V Max. 1.89V

My display uses DSI 2.0-2.8V signals.


Does it mean that I need to use level shifter ?