xref: /freebsd/sys/contrib/device-tree/Bindings/clock/qcom,gcc-sdx55.yaml (revision 0e8011faf58b743cc652e3b2ad0f7671227610df)
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,gcc-sdx55.yaml#
55def4c47SEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
65def4c47SEmmanuel Vadot
78bab661aSEmmanuel Vadottitle: Qualcomm Global Clock & Reset Controller on SDX55
85def4c47SEmmanuel Vadot
95def4c47SEmmanuel Vadotmaintainers:
105def4c47SEmmanuel Vadot  - Vinod Koul <vkoul@kernel.org>
115def4c47SEmmanuel Vadot  - Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
125def4c47SEmmanuel Vadot
135def4c47SEmmanuel Vadotdescription: |
148bab661aSEmmanuel Vadot  Qualcomm global clock control module provides the clocks, resets and
155def4c47SEmmanuel Vadot  power domains on SDX55
165def4c47SEmmanuel Vadot
178bab661aSEmmanuel Vadot  See also:: include/dt-bindings/clock/qcom,gcc-sdx55.h
185def4c47SEmmanuel Vadot
195def4c47SEmmanuel Vadotproperties:
205def4c47SEmmanuel Vadot  compatible:
215def4c47SEmmanuel Vadot    const: qcom,gcc-sdx55
225def4c47SEmmanuel Vadot
235def4c47SEmmanuel Vadot  clocks:
245def4c47SEmmanuel Vadot    items:
255def4c47SEmmanuel Vadot      - description: Board XO source
265def4c47SEmmanuel Vadot      - description: Sleep clock source
275def4c47SEmmanuel Vadot
285def4c47SEmmanuel Vadot  clock-names:
295def4c47SEmmanuel Vadot    items:
305def4c47SEmmanuel Vadot      - const: bi_tcxo
315def4c47SEmmanuel Vadot      - const: sleep_clk
325def4c47SEmmanuel Vadot
335def4c47SEmmanuel Vadotrequired:
345def4c47SEmmanuel Vadot  - compatible
355def4c47SEmmanuel Vadot  - clocks
365def4c47SEmmanuel Vadot  - clock-names
37*0e8011faSEmmanuel Vadot  - '#power-domain-cells'
385def4c47SEmmanuel Vadot
397ef62cebSEmmanuel VadotallOf:
407ef62cebSEmmanuel Vadot  - $ref: qcom,gcc.yaml#
417ef62cebSEmmanuel Vadot
427ef62cebSEmmanuel VadotunevaluatedProperties: false
435def4c47SEmmanuel Vadot
445def4c47SEmmanuel Vadotexamples:
455def4c47SEmmanuel Vadot  - |
465def4c47SEmmanuel Vadot    #include <dt-bindings/clock/qcom,rpmh.h>
475def4c47SEmmanuel Vadot    clock-controller@100000 {
485def4c47SEmmanuel Vadot      compatible = "qcom,gcc-sdx55";
495def4c47SEmmanuel Vadot      reg = <0x00100000 0x1f0000>;
505def4c47SEmmanuel Vadot      clocks = <&rpmhcc RPMH_CXO_CLK>,
51cb7aa33aSEmmanuel Vadot               <&sleep_clk>;
52cb7aa33aSEmmanuel Vadot      clock-names = "bi_tcxo",
53cb7aa33aSEmmanuel Vadot                    "sleep_clk";
545def4c47SEmmanuel Vadot      #clock-cells = <1>;
555def4c47SEmmanuel Vadot      #reset-cells = <1>;
565def4c47SEmmanuel Vadot      #power-domain-cells = <1>;
575def4c47SEmmanuel Vadot    };
585def4c47SEmmanuel Vadot
595def4c47SEmmanuel Vadot...
60