Back to home page

OSCL-LXR

 
 

    


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,q6sstopcc.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006 
0007 title: Q6SSTOP clock Controller
0008 
0009 maintainers:
0010   - Govind Singh <govinds@codeaurora.org>
0011 
0012 properties:
0013   compatible:
0014     const: "qcom,qcs404-q6sstopcc"
0015 
0016   reg:
0017     items:
0018       - description: Q6SSTOP clocks register region
0019       - description: Q6SSTOP_TCSR register region
0020 
0021   clocks:
0022     items:
0023       - description: ahb clock for the q6sstopCC
0024 
0025   '#clock-cells':
0026     const: 1
0027 
0028 required:
0029   - compatible
0030   - reg
0031   - clocks
0032   - '#clock-cells'
0033 
0034 additionalProperties: false
0035 
0036 examples:
0037   - |
0038     q6sstopcc: clock-controller@7500000 {
0039       compatible = "qcom,qcs404-q6sstopcc";
0040       reg = <0x07500000 0x4e000>, <0x07550000 0x10000>;
0041       clocks = <&gcc 141>;
0042       #clock-cells = <1>;
0043     };