0001 # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/clock/qcom,gcc-apq8084.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006
0007 title: Qualcomm Global Clock & Reset Controller Binding for APQ8084
0008
0009 maintainers:
0010 - Stephen Boyd <sboyd@kernel.org>
0011 - Taniya Das <quic_tdas@quicinc.com>
0012
0013 description: |
0014 Qualcomm global clock control module which supports the clocks, resets and
0015 power domains on APQ8084.
0016
0017 See also::
0018 - dt-bindings/clock/qcom,gcc-apq8084.h
0019 - dt-bindings/reset/qcom,gcc-apq8084.h
0020
0021 allOf:
0022 - $ref: qcom,gcc.yaml#
0023
0024 properties:
0025 compatible:
0026 const: qcom,gcc-apq8084
0027
0028 required:
0029 - compatible
0030
0031 unevaluatedProperties: false
0032
0033 examples:
0034 - |
0035 clock-controller@fc400000 {
0036 compatible = "qcom,gcc-apq8084";
0037 reg = <0xfc400000 0x4000>;
0038 #clock-cells = <1>;
0039 #reset-cells = <1>;
0040 #power-domain-cells = <1>;
0041 };
0042 ...