ARM: dts: msm: Add clock controller phandles in debugcc for parrot

To prevent race conditions with the framework lists when reading
the clk_measure files, the debugcc device will cache its parents
during init by calling clk_hw_get_parent_by_index() for all of
them. This requires debugcc to probe after all its parents. Add
clock phandles for them so debugcc doesn't probe until its suppliers.

Change-Id: I246c018e9f948d568066f7a9b185060301cd8033
This commit is contained in:
Jagadeesh Kona
2022-08-09 17:04:31 +05:30
parent d8e468ac12
commit 3b4d880141

View File

@@ -1120,8 +1120,18 @@
qcom,gpucc = <&gpucc>;
qcom,apsscc = <&apsscc>;
qcom,mccc = <&mccc>;
clock-names = "xo_clk_src";
clocks = <&rpmhcc RPMH_CXO_CLK>;
clocks = <&rpmhcc RPMH_CXO_CLK>,
<&gcc 0>,
<&camcc 0>,
<&dispcc 0>,
<&gpucc 0>,
<&videocc 0>;
clock-names = "xo_clk_src",
"gcc",
"camcc",
"dispcc",
"gpucc",
"videocc";
#clock-cells = <1>;
};