Quantcast
Channel: Raspberry Pi Forums
Viewing all articles
Browse latest Browse all 8037

Interfacing (DSI, CSI, I2C, etc.) • The custom DSI overlay enables only the backlight on the CM4

$
0
0
I set up the dt-blob.bin with the electrical references and created a custom overlay to make my display work with the specific timing parameters. When I ran commands like dmesg, modetest, gpiotest, etc., all the configurations appeared to be recognized by the system. However, there is no graphical interface showing up on my screen — only the backlight is enabled.
What could be the issue?

Code:

            dsi_frag: fragment@3 {target = <&dsi1>;__overlay__ {status = "okay";            #address-cells = <1>;            #size-cells = <0>;            port {                dsi_out: endpoint {                    remote-endpoint = <&panel_dsi_port>;                };            };            panel: panel-dsi@0 {compatible = "custom-display","panel-dsi";                reg = <0>;backlight = <&backlight>;                dsi-color-format = "RGB888";                mode = "MODE_VIDEO";width-mm = <154>;height-mm = <86>;reset-gpios = <&gpio 24 GPIO_ACTIVE_HIGH>;enable-gpios = <&gpio 23 GPIO_ACTIVE_HIGH>;                port {                    panel_dsi_port: endpoint {                        data-lanes = <1 2 3 4>;                        remote-endpoint = <&dsi_out>;                    };                };timing: panel-timing {clock-frequency = <46000000>;hactive = <1024>;vactive = <600>;hback-porch = <80>;hfront-porch = <90>;hsync-len = <10>;vback-porch = <6>;vfront-porch = <16>;vsync-len = <10>;};};};};
OBS.: The base board has a 1.8 V regulator activated, so I didn't apply a power supply.

Code:

4746connectedDSI-1          154x86146

Code:

GPIO 12: level=1 alt=0 func=PWM0_0 pull=UP // DSI_PWMGPIO 23: level=1 func=OUTPUT pull=UP // DSI_PWR_DNGPIO 24: level=0 func=OUTPUT pull=UP // DSI_RESETGPIO 27: level=1 func=OUTPUT pull=DOWN 
Screenshot from 2025-07-02 11-39-04.png

Statistics: Posted by tiopablito — Wed Jul 02, 2025 3:04 pm



Viewing all articles
Browse latest Browse all 8037

Trending Articles