Hi,
We are looking to decrease the temperature on a TQMa8Xx module, based on the i.MX8X processor.
Our idea is to disable unnecessary systems like the GPU and VPU. I have tried disabling them on the device tree with this patch:
&gpu_3d0 {
- status = "okay";
+ status = "disabled";
};
&imx8_gpu_ss {
- status = "okay";
+ status = "disabled";
};
But I am not sure it worked, how could we check if the GPU/VPU are powered and enabled?
Also, I have found this post System Controller Firmware 101 - Power management service which points to the SCU firmware code. We can modify the SCU, but I am not sure which files or lines need to be modified to disable the power on the GPU.
Best regards,
Antonio Cuadros.