forked from ~ljy/RK356X_SDK_RELEASE

hc
2024-05-13 9d77db3c730780c8ef5ccd4b66403ff5675cfe4e
kernel/Documentation/devicetree/bindings/arm/msm/qcom,kpss-acc.txt
....@@ -21,10 +21,29 @@
2121 the register region. An optional second element specifies
2222 the base address and size of the alias register region.
2323
24
+- clocks:
25
+ Usage: required
26
+ Value type: <prop-encoded-array>
27
+ Definition: reference to the pll parents.
28
+
29
+- clock-names:
30
+ Usage: required
31
+ Value type: <stringlist>
32
+ Definition: must be "pll8_vote", "pxo".
33
+
34
+- clock-output-names:
35
+ Usage: optional
36
+ Value type: <string>
37
+ Definition: Name of the output clock. Typically acpuX_aux where X is a
38
+ CPU number starting at 0.
39
+
2440 Example:
2541
2642 clock-controller@2088000 {
2743 compatible = "qcom,kpss-acc-v2";
2844 reg = <0x02088000 0x1000>,
2945 <0x02008000 0x1000>;
46
+ clocks = <&gcc PLL8_VOTE>, <&gcc PXO_SRC>;
47
+ clock-names = "pll8_vote", "pxo";
48
+ clock-output-names = "acpu0_aux";
3049 };