blob: 030ba60dab08c2cec03f3cbc85f638191d64111d [file] [log] [blame]
Tom Rini53633a82024-02-29 12:33:36 -05001Krait Clock Controller
2
3PROPERTIES
4
5- compatible:
6 Usage: required
7 Value type: <string>
8 Definition: must be one of:
9 "qcom,krait-cc-v1"
10 "qcom,krait-cc-v2"
11
12- #clock-cells:
13 Usage: required
14 Value type: <u32>
15 Definition: must be 1
16
17- clocks:
18 Usage: required
19 Value type: <prop-encoded-array>
20 Definition: reference to the clock parents of hfpll, secondary muxes.
21
22- clock-names:
23 Usage: required
24 Value type: <stringlist>
25 Definition: must be "hfpll0", "hfpll1", "acpu0_aux", "acpu1_aux", "qsb".
26
27Example:
28
29 kraitcc: clock-controller {
30 compatible = "qcom,krait-cc-v1";
31 clocks = <&hfpll0>, <&hfpll1>, <&acpu0_aux>, <&acpu1_aux>, <qsb>;
32 clock-names = "hfpll0", "hfpll1", "acpu0_aux", "acpu1_aux", "qsb";
33 #clock-cells = <1>;
34 };