Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: GPL-2.0-only
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/clock/qcom,gcc-ipq8074.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006 
0007 title: Qualcomm Global Clock & Reset Controller Bindingfor IPQ8074
0008 
0009 maintainers:
0010   - Stephen Boyd <sboyd@kernel.org>
0011   - Taniya Das <tdas@codeaurora.org>
0012 
0013 description: |
0014   Qualcomm global clock control module which supports the clocks, resets and
0015   power domains on IPQ8074.
0016 
0017   See also:
0018   - dt-bindings/clock/qcom,gcc-ipq8074.h
0019 
0020 properties:
0021   compatible:
0022     const: qcom,gcc-ipq8074
0023 
0024   '#clock-cells':
0025     const: 1
0026 
0027   '#power-domain-cells':
0028     const: 1
0029 
0030   '#reset-cells':
0031     const: 1
0032 
0033   reg:
0034     maxItems: 1
0035 
0036   protected-clocks:
0037     description:
0038       Protected clock specifier list as per common clock binding.
0039 
0040 required:
0041   - compatible
0042   - reg
0043   - '#clock-cells'
0044   - '#power-domain-cells'
0045   - '#reset-cells'
0046 
0047 additionalProperties: false
0048 
0049 examples:
0050   - |
0051     clock-controller@1800000 {
0052       compatible = "qcom,gcc-ipq8074";
0053       reg = <0x01800000 0x80000>;
0054       #clock-cells = <1>;
0055       #power-domain-cells = <1>;
0056       #reset-cells = <1>;
0057     };
0058 ...