@@ -74,7 +74,10 @@
regulator-min-microvolt = <1800000>;
regulator-max-microvolt = <1800000>;
regulator-boot-on;
- regulator-always-on;
+
+ regulator-state-mem {
+ regulator-off-in-suspend;
+ };
};
vcc_d3_3v: regulator-1 {
@@ -83,7 +86,10 @@
regulator-min-microvolt = <3300000>;
regulator-max-microvolt = <3300000>;
regulator-boot-on;
- regulator-always-on;
+
+ regulator-state-mem {
+ regulator-off-in-suspend;
+ };
};
vcc_vddq_vin0: regulator-2 {
@@ -37,7 +37,10 @@
regulator-min-microvolt = <3300000>;
regulator-max-microvolt = <3300000>;
regulator-boot-on;
- regulator-always-on;
+
+ regulator-state-mem {
+ regulator-off-in-suspend;
+ };
};
hdmi-out {
@@ -87,7 +90,10 @@
regulator-min-microvolt = <1800000>;
regulator-max-microvolt = <1800000>;
regulator-boot-on;
- regulator-always-on;
+
+ regulator-state-mem {
+ regulator-off-in-suspend;
+ };
};
x1_clk: x1-clock {
@@ -113,7 +113,10 @@
regulator-min-microvolt = <1800000>;
regulator-max-microvolt = <1800000>;
regulator-boot-on;
- regulator-always-on;
+
+ regulator-state-mem {
+ regulator-off-in-suspend;
+ };
};
reg_3p3v: regulator1 {
@@ -122,7 +125,10 @@
regulator-min-microvolt = <3300000>;
regulator-max-microvolt = <3300000>;
regulator-boot-on;
- regulator-always-on;
+
+ regulator-state-mem {
+ regulator-off-in-suspend;
+ };
};
reg_12p0v: regulator2 {
@@ -103,7 +103,10 @@
regulator-min-microvolt = <1800000>;
regulator-max-microvolt = <1800000>;
regulator-boot-on;
- regulator-always-on;
+
+ regulator-state-mem {
+ regulator-off-in-suspend;
+ };
};
reg_3p3v: regulator-3p3v {
@@ -113,6 +116,10 @@
regulator-max-microvolt = <3300000>;
regulator-boot-on;
regulator-always-on;
+
+ regulator-state-mem {
+ regulator-off-in-suspend;
+ };
};
reg_12p0v: regulator-12p0v {
@@ -172,7 +172,10 @@
regulator-min-microvolt = <1800000>;
regulator-max-microvolt = <1800000>;
regulator-boot-on;
- regulator-always-on;
+
+ regulator-state-mem {
+ regulator-off-in-suspend;
+ };
};
reg_3p3v: regulator1 {
@@ -181,7 +184,10 @@
regulator-min-microvolt = <3300000>;
regulator-max-microvolt = <3300000>;
regulator-boot-on;
- regulator-always-on;
+
+ regulator-state-mem {
+ regulator-off-in-suspend;
+ };
};
reg_12v: regulator2 {
@@ -79,7 +79,10 @@
regulator-min-microvolt = <1800000>;
regulator-max-microvolt = <1800000>;
regulator-boot-on;
- regulator-always-on;
+
+ regulator-state-mem {
+ regulator-off-in-suspend;
+ };
};
reg_3p3v: regulator1 {
@@ -88,7 +91,10 @@
regulator-min-microvolt = <3300000>;
regulator-max-microvolt = <3300000>;
regulator-boot-on;
- regulator-always-on;
+
+ regulator-state-mem {
+ regulator-off-in-suspend;
+ };
};
sound_card: sound {
Add regulator-off-in-suspend property into eMMC related regulator-fixed nodes because PSCI on the boards will turn the regulators off in suspend. By this property, the regulator's status will be disabled in suspend. MMC subsystem can get the condition and then eMMC condition will be better than before. before: - enter sleep mode and then turn the vmmc and vqmmc off. after: - call mmc_poweroff_nofity() and then turn the vmmc and vqmmc off. Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com> --- arch/arm64/boot/dts/renesas/r8a77970-v3msk.dts | 10 ++++++++-- arch/arm64/boot/dts/renesas/r8a77980-condor.dts | 10 ++++++++-- arch/arm64/boot/dts/renesas/r8a77990-ebisu.dts | 10 ++++++++-- arch/arm64/boot/dts/renesas/r8a77995-draak.dts | 9 ++++++++- arch/arm64/boot/dts/renesas/salvator-common.dtsi | 10 ++++++++-- arch/arm64/boot/dts/renesas/ulcb.dtsi | 10 ++++++++-- 6 files changed, 48 insertions(+), 11 deletions(-)