You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a raspberry pi zero 2W using kirkstone firmware, and I would like to disable HDMI to save power in a project.
I would like to do that on device tree with yocto build but I'm unable to make it work.
Steps to reproduce the issue:
I have try something like that :
/dts-v1/;
/plugin/;
/ {
compatible = "brcm,bcm2835";
fragment@0 {
target = <&hdmi>; // Remplace par le bon nom de nœud
__overlay__ {
status = "disabled";
};
};
};
I was thinking that it should be sufficient but the HDMI keep working.
Describe the results you received:
The HDMI still power on.
Describe the results you expected:
I would like the HDMI to be power off at start.
I have check the status with : cat /proc/device-tree/soc/hdmi@7e902000/status
And status is okay so it's normal that HDMI isn't power off.
I have tried on raspi OS to simply power off the screen using the boot/config.txt adding this line : dtoverlay=vc4-kms-v3d,nohdmi
Description
I have a raspberry pi zero 2W using kirkstone firmware, and I would like to disable HDMI to save power in a project.
I would like to do that on device tree with yocto build but I'm unable to make it work.
Steps to reproduce the issue:
I have try something like that :
I was thinking that it should be sufficient but the HDMI keep working.
Describe the results you received:
The HDMI still power on.
Describe the results you expected:
I would like the HDMI to be power off at start.
I have check the status with :
cat /proc/device-tree/soc/hdmi@7e902000/status
And status is okay so it's normal that HDMI isn't power off.
I have tried on raspi OS to simply power off the screen using the boot/config.txt adding this line :
dtoverlay=vc4-kms-v3d,nohdmi
I also tried following this step :
https://kittenlabs.de/blog/2024/09/01/extreme-pi-boot-optimization/
And so adding this lines to the boot/config.txt
I can't reproduce the same with my kirkstone firmware.
I don't have so much experience with device tree so I'm bit lost 😅
I hope I made it clear, thanks.
PS: On the device tree I noticed that HDMI should be disable by default :
But I noticed also this :
I don't know if it's relevant.
The text was updated successfully, but these errors were encountered: