PMIC Voltage change issue in stm32mp1 Arm trusted firmware.
Hello,
We are using stm32mp157A processer in my custom board.
We need to change voltage values in Arm trusted firmware (TFA 2.5) dtsi file .For that we changed voltages as per our custom board but it is not effected.
vdd: buck3 {
regulator-name = "vdd";
regulator-min-microvolt = <3300000>;
regulator-max-microvolt = <3300000>;
regulator-always-on;
st,mask-reset;
regulator-initial-mode = <0>;
regulator-over-current-protection;
};
we need 1.8v for this buck3 so we changed above node to 1.8v using below node.
vdd: buck3 {
regulator-name = "vdd";
regulator-min-microvolt = <1800000>;
regulator-max-microvolt = <1800000>;
regulator-always-on;
st,mask-reset;
regulator-initial-mode = <0>;
regulator-over-current-protection;
};
After changing also we are getting 3.3 volts.
So how can we change voltage from3.3 to 1.8 volts?
please help us in this regards.
.
