xref: /linux/Documentation/devicetree/bindings/clock/qcom,gcc-qcm2290.yaml (revision 9557b4376d02088a33e5f4116bcc324d35a3b64c)
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,gcc-qcm2290.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Qualcomm Global Clock & Reset Controller on QCM2290
8
9maintainers:
10  - Shawn Guo <shawn.guo@linaro.org>
11
12description: |
13  Qualcomm global clock control module provides the clocks, resets and power
14  domains on QCM2290.
15
16  See also:: include/dt-bindings/clock/qcom,gcc-qcm2290.h
17
18properties:
19  compatible:
20    const: qcom,gcc-qcm2290
21
22  clocks:
23    items:
24      - description: Board XO source
25      - description: Sleep clock source
26
27  clock-names:
28    items:
29      - const: bi_tcxo
30      - const: sleep_clk
31
32required:
33  - compatible
34  - clocks
35  - clock-names
36  - '#power-domain-cells'
37
38allOf:
39  - $ref: qcom,gcc.yaml#
40
41unevaluatedProperties: false
42
43examples:
44  - |
45    #include <dt-bindings/clock/qcom,rpmcc.h>
46    clock-controller@1400000 {
47        compatible = "qcom,gcc-qcm2290";
48        reg = <0x01400000 0x1f0000>;
49        #clock-cells = <1>;
50        #reset-cells = <1>;
51        #power-domain-cells = <1>;
52        clock-names = "bi_tcxo", "sleep_clk";
53        clocks = <&rpmcc RPM_SMD_XO_CLK_SRC>, <&sleep_clk>;
54    };
55...
56