diff options
author | Yassine Oudjana <y.oudjana@protonmail.com> | 2022-06-21 20:06:20 +0400 |
---|---|---|
committer | Bjorn Andersson <andersson@kernel.org> | 2022-09-26 11:12:35 -0500 |
commit | b4feed4a3d0a6b8cef4a574a9df707c556928ec2 (patch) | |
tree | 10a1dd7e7fa557de45fd8d0d1c75f70820ee7a9d /Documentation/devicetree/bindings/clock/qcom,msm8996-apcc.yaml | |
parent | 9a9f5f9a5a0ca3f463eb28ba5920a6fd18dc9956 (diff) | |
download | linux-b4feed4a3d0a6b8cef4a574a9df707c556928ec2.tar.gz linux-b4feed4a3d0a6b8cef4a574a9df707c556928ec2.tar.bz2 linux-b4feed4a3d0a6b8cef4a574a9df707c556928ec2.zip |
dt-bindings: clock: qcom,msm8996-apcc: Fix clocks
The clocks currently listed in clocks and clock-names are the ones
supplied by this clock controller, not the ones it consumes. Replace
them with the only clock it consumes - the on-board oscillator (XO),
and make the properties required.
Signed-off-by: Yassine Oudjana <y.oudjana@protonmail.com>
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Signed-off-by: Bjorn Andersson <andersson@kernel.org>
Link: https://lore.kernel.org/r/20220621160621.24415-6-y.oudjana@protonmail.com
Diffstat (limited to 'Documentation/devicetree/bindings/clock/qcom,msm8996-apcc.yaml')
-rw-r--r-- | Documentation/devicetree/bindings/clock/qcom,msm8996-apcc.yaml | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/Documentation/devicetree/bindings/clock/qcom,msm8996-apcc.yaml b/Documentation/devicetree/bindings/clock/qcom,msm8996-apcc.yaml index a20cb10636dd..c4971234fef8 100644 --- a/Documentation/devicetree/bindings/clock/qcom,msm8996-apcc.yaml +++ b/Documentation/devicetree/bindings/clock/qcom,msm8996-apcc.yaml @@ -26,22 +26,18 @@ properties: clocks: items: - - description: Primary PLL clock for power cluster (little) - - description: Primary PLL clock for perf cluster (big) - - description: Alternate PLL clock for power cluster (little) - - description: Alternate PLL clock for perf cluster (big) + - description: XO source clock-names: items: - - const: pwrcl_pll - - const: perfcl_pll - - const: pwrcl_alt_pll - - const: perfcl_alt_pll + - const: xo required: - compatible - reg - '#clock-cells' + - clocks + - clock-names additionalProperties: false @@ -51,4 +47,7 @@ examples: compatible = "qcom,msm8996-apcc"; reg = <0x6400000 0x90000>; #clock-cells = <1>; + + clocks = <&xo_board>; + clock-names = "xo"; }; |