35 lines · plain
1Krait Clock Controller2 3PROPERTIES4 5- compatible:6 Usage: required7 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: required14 Value type: <u32>15 Definition: must be 116 17- clocks:18 Usage: required19 Value type: <prop-encoded-array>20 Definition: reference to the clock parents of hfpll, secondary muxes.21 22- clock-names:23 Usage: required24 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 };35