0001 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/clock/qcom,a7pll.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006
0007 title: Qualcomm A7 PLL Binding
0008
0009 maintainers:
0010 - Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
0011
0012 description:
0013 The A7 PLL on the Qualcomm platforms like SDX55, SDX65 is used to provide high
0014 frequency clock to the CPU.
0015
0016 properties:
0017 compatible:
0018 enum:
0019 - qcom,sdx55-a7pll
0020
0021 reg:
0022 maxItems: 1
0023
0024 '#clock-cells':
0025 const: 0
0026
0027 clocks:
0028 items:
0029 - description: board XO clock
0030
0031 clock-names:
0032 items:
0033 - const: bi_tcxo
0034
0035 required:
0036 - compatible
0037 - reg
0038 - '#clock-cells'
0039
0040 additionalProperties: false
0041
0042 examples:
0043 - |
0044 #include <dt-bindings/clock/qcom,rpmh.h>
0045 a7pll: clock@17808000 {
0046 compatible = "qcom,sdx55-a7pll";
0047 reg = <0x17808000 0x1000>;
0048 clocks = <&rpmhcc RPMH_CXO_CLK>;
0049 clock-names = "bi_tcxo";
0050 #clock-cells = <0>;
0051 };