# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) %YAML 1.2 --- $id: http://devicetree.org/schemas/clock/qcom,sdxbaagha-gcc.yaml# $schema: http://devicetree.org/meta-schemas/core.yaml# title: Qualcomm Technologies, Inc. Global Clock & Reset Controller maintainers: - Taniya Das description: | Global clock control module which supports the clocks, resets and power domains on sdxbaagha See also: - dt-bindings/clock/qcom,gcc-sdxbaagha.h properties: compatible: const: qcom,sdxbaagha-gcc clocks: items: - description: Board XO source - description: Board active XO source - description: PCIE Pipe clock source - description: Sleep clock source clock-names: items: - const: bi_tcxo - const: bi_tcxo_ao - const: pcie_pipe_clk - const: sleep_clk required: - compatible - clocks - clock-names allOf: - $ref: qcom,gcc.yaml# unevaluatedProperties: false examples: - | #include clock-controller@80000 { compatible = "qcom,sdxbaagha-gcc"; reg = <0x80000 0x1f4200>; clocks = <&rpmhcc RPMH_CXO_CLK>,<&rpmhcc RPMH_CXO_CLK_A>, <&pcie_pipe_clk>,<&sleep_clk>; clock-names = "bi_tcxo","bi_tcxo_ao", "pcie_pipe_clk","sleep_clk"; #clock-cells = <1>; #reset-cells = <1>; }; ...