Commit 725f5936 authored by Krzysztof Kozlowski's avatar Krzysztof Kozlowski Committed by Bjorn Andersson

arm64: dts: qcom: msm8996-xiaomi: fix missing clock populate

Commit 338958e3 ("arm64: dts: qcom: msm8996-xiaomi: drop simple-bus
from clocks") removed "simple-bus" compatible from "clocks" node, but
one of the clocks - divclk1 - is a gpio-gate-clock, which does not have
CLK_OF_DECLARE.  This means it will not be instantiated if placed in
some subnode.  Move the clocks to the root node, so regular devices will
be populated.
Reported-by: default avatarDmitry Baryshkov <dmitry.baryshkov@linaro.org>
Closes: https://lore.kernel.org/all/CAA8EJprF==p87oN+RiwAiNeURF1JcHGfL2Ez5zxqYPRRbN-hhg@mail.gmail.com/
Cc: stable@vger.kernel.org
Fixes: 338958e3 ("arm64: dts: qcom: msm8996-xiaomi: drop simple-bus from clocks")
Signed-off-by: default avatarKrzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Reviewed-by: default avatarDmitry Baryshkov <dmitry.baryshkov@linaro.org>
Link: https://lore.kernel.org/r/20230901081812.19121-2-krzysztof.kozlowski@linaro.orgSigned-off-by: default avatarBjorn Andersson <andersson@kernel.org>
parent 2ca3e844
...@@ -11,26 +11,24 @@ ...@@ -11,26 +11,24 @@
#include <dt-bindings/pinctrl/qcom,pmic-gpio.h> #include <dt-bindings/pinctrl/qcom,pmic-gpio.h>
/ { / {
clocks { divclk1_cdc: divclk1 {
divclk1_cdc: divclk1 { compatible = "gpio-gate-clock";
compatible = "gpio-gate-clock"; clocks = <&rpmcc RPM_SMD_DIV_CLK1>;
clocks = <&rpmcc RPM_SMD_DIV_CLK1>; #clock-cells = <0>;
#clock-cells = <0>; enable-gpios = <&pm8994_gpios 15 GPIO_ACTIVE_HIGH>;
enable-gpios = <&pm8994_gpios 15 GPIO_ACTIVE_HIGH>;
pinctrl-names = "default"; pinctrl-names = "default";
pinctrl-0 = <&divclk1_default>; pinctrl-0 = <&divclk1_default>;
}; };
divclk4: divclk4 { divclk4: divclk4 {
compatible = "fixed-clock"; compatible = "fixed-clock";
#clock-cells = <0>; #clock-cells = <0>;
clock-frequency = <32768>; clock-frequency = <32768>;
clock-output-names = "divclk4"; clock-output-names = "divclk4";
pinctrl-names = "default"; pinctrl-names = "default";
pinctrl-0 = <&divclk4_pin_a>; pinctrl-0 = <&divclk4_pin_a>;
};
}; };
gpio-keys { gpio-keys {
......
...@@ -20,16 +20,14 @@ / { ...@@ -20,16 +20,14 @@ / {
qcom,pmic-id = <0x20009 0x2000a 0x00 0x00>; qcom,pmic-id = <0x20009 0x2000a 0x00 0x00>;
qcom,board-id = <31 0>; qcom,board-id = <31 0>;
clocks { divclk2_haptics: divclk2 {
divclk2_haptics: divclk2 { compatible = "fixed-clock";
compatible = "fixed-clock"; #clock-cells = <0>;
#clock-cells = <0>; clock-frequency = <32768>;
clock-frequency = <32768>; clock-output-names = "divclk2";
clock-output-names = "divclk2";
pinctrl-names = "default";
pinctrl-names = "default"; pinctrl-0 = <&divclk2_pin_a>;
pinctrl-0 = <&divclk2_pin_a>;
};
}; };
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment