blob: e03b6d0acdb6e042dc5852b463cdb045c303f52e [file] [log] [blame]
Tom Rini53633a82024-02-29 12:33:36 -05001# SPDX-License-Identifier: GPL-2.0-only
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/clock/qcom,gcc-msm8660.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Qualcomm Global Clock & Reset Controller on MSM8660
8
9maintainers:
10 - Stephen Boyd <sboyd@kernel.org>
11 - Taniya Das <quic_tdas@quicinc.com>
12
13description: |
14 Qualcomm global clock control module provides the clocks and resets on
15 MSM8660
16
17 See also::
18 include/dt-bindings/clock/qcom,gcc-msm8660.h
19 include/dt-bindings/reset/qcom,gcc-msm8660.h
20
21allOf:
22 - $ref: qcom,gcc.yaml#
23
24properties:
25 compatible:
26 enum:
27 - qcom,gcc-msm8660
28
29 clocks:
30 maxItems: 2
31
32 clock-names:
33 items:
34 - const: pxo
35 - const: cxo
36
Tom Rini6b642ac2024-10-01 12:20:28 -060037 '#power-domain-cells': false
38
Tom Rini53633a82024-02-29 12:33:36 -050039required:
40 - compatible
41
42unevaluatedProperties: false
43
44examples:
45 # Example for GCC for MSM8974:
46 - |
47 clock-controller@900000 {
48 compatible = "qcom,gcc-msm8660";
49 reg = <0x900000 0x4000>;
50 #clock-cells = <1>;
51 #reset-cells = <1>;
Tom Rini53633a82024-02-29 12:33:36 -050052 clocks = <&pxo_board>, <&cxo_board>;
53 clock-names = "pxo", "cxo";
54 };
55...