Linux 6.7-rc7
[linux-modified.git] / Documentation / devicetree / bindings / clock / qcom,q6sstopcc.yaml
1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2 %YAML 1.2
3 ---
4 $id: http://devicetree.org/schemas/clock/qcom,q6sstopcc.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
6
7 title: Q6SSTOP clock Controller
8
9 maintainers:
10   - Govind Singh <govinds@codeaurora.org>
11
12 properties:
13   compatible:
14     const: qcom,qcs404-q6sstopcc
15
16   reg:
17     items:
18       - description: Q6SSTOP clocks register region
19       - description: Q6SSTOP_TCSR register region
20
21   clocks:
22     items:
23       - description: ahb clock for the q6sstopCC
24
25   '#clock-cells':
26     const: 1
27
28 required:
29   - compatible
30   - reg
31   - clocks
32   - '#clock-cells'
33
34 additionalProperties: false
35
36 examples:
37   - |
38     q6sstopcc: clock-controller@7500000 {
39       compatible = "qcom,qcs404-q6sstopcc";
40       reg = <0x07500000 0x4e000>, <0x07550000 0x10000>;
41       clocks = <&gcc 141>;
42       #clock-cells = <1>;
43     };