diff options
author | Stanislav Jakubek <stano.jakubek@gmail.com> | 2025-05-08 17:11:27 +0300 |
---|---|---|
committer | Bjorn Andersson <andersson@kernel.org> | 2025-05-12 01:15:39 +0300 |
commit | 7bce56fd73ee7264ed04418dab1719164e42f113 (patch) | |
tree | c3a7dc938b0fdc7ce5451a822ce4f878878f6dda | |
parent | db6e3f2ba0bf6ad069347050ff62f29ef0d88b14 (diff) | |
download | linux-7bce56fd73ee7264ed04418dab1719164e42f113.tar.xz |
ARM: dts: qcom: msm8226-motorola-falcon: limit TPS65132 to 5.4V
After some digging in downstream sources, it was found that the TPS65132
outputs are fixed to +5.4V and -5.4V respectively. This is further confirmed
on runtime through debugfs, the troubleshooting guide confirms this as well.
Specify these limits as such.
Signed-off-by: Stanislav Jakubek <stano.jakubek@gmail.com>
Reviewed-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
Link: https://lore.kernel.org/r/b67ed6c7813fa52cf00b473dded9b5042102f593.1746711762.git.stano.jakubek@gmail.com
Signed-off-by: Bjorn Andersson <andersson@kernel.org>
-rw-r--r-- | arch/arm/boot/dts/qcom/msm8226-motorola-falcon.dts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/arm/boot/dts/qcom/msm8226-motorola-falcon.dts b/arch/arm/boot/dts/qcom/msm8226-motorola-falcon.dts index e2bf292159fa..d6d5a86491aa 100644 --- a/arch/arm/boot/dts/qcom/msm8226-motorola-falcon.dts +++ b/arch/arm/boot/dts/qcom/msm8226-motorola-falcon.dts @@ -147,8 +147,8 @@ reg_lcd_pos: outp { regulator-name = "outp"; - regulator-min-microvolt = <4000000>; - regulator-max-microvolt = <6000000>; + regulator-min-microvolt = <5400000>; + regulator-max-microvolt = <5400000>; regulator-active-discharge = <1>; regulator-boot-on; enable-gpios = <&tlmm 31 GPIO_ACTIVE_HIGH>; @@ -156,8 +156,8 @@ reg_lcd_neg: outn { regulator-name = "outn"; - regulator-min-microvolt = <4000000>; - regulator-max-microvolt = <6000000>; + regulator-min-microvolt = <5400000>; + regulator-max-microvolt = <5400000>; regulator-active-discharge = <1>; regulator-boot-on; enable-gpios = <&tlmm 33 GPIO_ACTIVE_HIGH>; |