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-qcs404.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006 
0007 title: Qualcomm Global Clock & Reset Controller Bindingfor QCS404
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 QCS404.
0016 
0017   See also:
0018   - dt-bindings/clock/qcom,gcc-qcs404.h
0019 
0020 properties:
0021   compatible:
0022     const: qcom,gcc-qcs404
0023 
0024   '#clock-cells':
0025     const: 1
0026 
0027   '#reset-cells':
0028     const: 1
0029 
0030   reg:
0031     maxItems: 1
0032 
0033   protected-clocks:
0034     description:
0035       Protected clock specifier list as per common clock binding.
0036 
0037 required:
0038   - compatible
0039   - reg
0040   - '#clock-cells'
0041   - '#reset-cells'
0042 
0043 additionalProperties: false
0044 
0045 examples:
0046   - |
0047     clock-controller@1800000 {
0048       compatible = "qcom,gcc-qcs404";
0049       reg = <0x01800000 0x80000>;
0050       #clock-cells = <1>;
0051       #reset-cells = <1>;
0052     };
0053 ...