1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/clock/qcom,a53pll.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Qualcomm A53 PLL Binding 8 9maintainers: 10 - Sivaprakash Murugesan <sivaprak@codeaurora.org> 11 12description: 13 The A53 PLL on few Qualcomm platforms is the main CPU PLL used used for 14 frequencies above 1GHz. 15 16properties: 17 compatible: 18 const: qcom,msm8916-a53pll 19 20 reg: 21 maxItems: 1 22 23 '#clock-cells': 24 const: 0 25 26required: 27 - compatible 28 - reg 29 - '#clock-cells' 30 31additionalProperties: false 32 33examples: 34 #Example 1 - A53 PLL found on MSM8916 devices 35 - | 36 a53pll: clock@b016000 { 37 compatible = "qcom,msm8916-a53pll"; 38 reg = <0xb016000 0x40>; 39 #clock-cells = <0>; 40 }; 41