blob: e0f4d692728c920a31bb88e8bc77aca79111da56 [file] [log] [blame]
Tom Rini53633a82024-02-29 12:33:36 -05001# 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
7title: Q6SSTOP clock Controller
8
9maintainers:
Tom Rini6bb92fc2024-05-20 09:54:58 -060010 - Bjorn Andersson <andersson@kernel.org>
Tom Rini53633a82024-02-29 12:33:36 -050011
12properties:
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
28required:
29 - compatible
30 - reg
31 - clocks
32 - '#clock-cells'
33
34additionalProperties: false
35
36examples:
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 };