arm64: dts: qcom: msm8916-samsung-a2015: Fix sensors
authorStephan Gerhold <stephan@gerhold.net>
Mon, 11 Jan 2021 17:53:58 +0000 (18:53 +0100)
committerBjorn Andersson <bjorn.andersson@linaro.org>
Fri, 15 Jan 2021 14:27:49 +0000 (08:27 -0600)
When the BMC150 accelerometer/magnetometer was added to the device tree,
the sensors were working without specifying any regulator supplies,
likely because the regulators were on by default and then never turned off.

For some reason, this is no longer the case for pm8916_l17, which prevents
the sensors from working in some cases.

Now that the bmc150_accel/bmc150_magn drivers can enable necessary
regulators, declare the necessary regulator supplies to make the sensors
work again.

Fixes: 079f81acf10f ("arm64: dts: qcom: msm8916-samsung-a2015: Add accelerometer/magnetometer")
Signed-off-by: Stephan Gerhold <stephan@gerhold.net>
Link: https://lore.kernel.org/r/20210111175358.97171-1-stephan@gerhold.net
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
arch/arm64/boot/dts/qcom/msm8916-samsung-a2015-common.dtsi

index f912694..f1af798 100644 (file)
                interrupt-parent = <&msmgpio>;
                interrupts = <115 IRQ_TYPE_EDGE_RISING>;
 
+               vdd-supply = <&pm8916_l17>;
+               vddio-supply = <&pm8916_l5>;
+
                pinctrl-names = "default";
                pinctrl-0 = <&accel_int_default>;
        };
        magnetometer@12 {
                compatible = "bosch,bmc150_magn";
                reg = <0x12>;
+
+               vdd-supply = <&pm8916_l17>;
+               vddio-supply = <&pm8916_l5>;
        };
 };