15def4c47SEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 25def4c47SEmmanuel Vadot%YAML 1.2 35def4c47SEmmanuel Vadot--- 45def4c47SEmmanuel Vadot$id: http://devicetree.org/schemas/clock/qcom,a7pll.yaml# 55def4c47SEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 65def4c47SEmmanuel Vadot 7*8bab661aSEmmanuel Vadottitle: Qualcomm A7 PLL clock 85def4c47SEmmanuel Vadot 95def4c47SEmmanuel Vadotmaintainers: 105def4c47SEmmanuel Vadot - Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org> 115def4c47SEmmanuel Vadot 125def4c47SEmmanuel Vadotdescription: 13c9ccf3a3SEmmanuel Vadot The A7 PLL on the Qualcomm platforms like SDX55, SDX65 is used to provide high 145def4c47SEmmanuel Vadot frequency clock to the CPU. 155def4c47SEmmanuel Vadot 165def4c47SEmmanuel Vadotproperties: 175def4c47SEmmanuel Vadot compatible: 185def4c47SEmmanuel Vadot enum: 195def4c47SEmmanuel Vadot - qcom,sdx55-a7pll 205def4c47SEmmanuel Vadot 215def4c47SEmmanuel Vadot reg: 225def4c47SEmmanuel Vadot maxItems: 1 235def4c47SEmmanuel Vadot 245def4c47SEmmanuel Vadot '#clock-cells': 255def4c47SEmmanuel Vadot const: 0 265def4c47SEmmanuel Vadot 275def4c47SEmmanuel Vadot clocks: 285def4c47SEmmanuel Vadot items: 295def4c47SEmmanuel Vadot - description: board XO clock 305def4c47SEmmanuel Vadot 315def4c47SEmmanuel Vadot clock-names: 325def4c47SEmmanuel Vadot items: 335def4c47SEmmanuel Vadot - const: bi_tcxo 345def4c47SEmmanuel Vadot 355def4c47SEmmanuel Vadotrequired: 365def4c47SEmmanuel Vadot - compatible 375def4c47SEmmanuel Vadot - reg 385def4c47SEmmanuel Vadot - '#clock-cells' 395def4c47SEmmanuel Vadot 405def4c47SEmmanuel VadotadditionalProperties: false 415def4c47SEmmanuel Vadot 425def4c47SEmmanuel Vadotexamples: 435def4c47SEmmanuel Vadot - | 445def4c47SEmmanuel Vadot #include <dt-bindings/clock/qcom,rpmh.h> 455def4c47SEmmanuel Vadot a7pll: clock@17808000 { 465def4c47SEmmanuel Vadot compatible = "qcom,sdx55-a7pll"; 475def4c47SEmmanuel Vadot reg = <0x17808000 0x1000>; 485def4c47SEmmanuel Vadot clocks = <&rpmhcc RPMH_CXO_CLK>; 495def4c47SEmmanuel Vadot clock-names = "bi_tcxo"; 505def4c47SEmmanuel Vadot #clock-cells = <0>; 515def4c47SEmmanuel Vadot }; 52