xref: /linux/Documentation/devicetree/bindings/clock/qcom,sm8550-tcsr.yaml (revision beaea9c4ba2d8ef1b10223dc3a75a7d7be3e5cd9)
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,sm8550-tcsr.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Qualcomm TCSR Clock Controller on SM8550
8
9maintainers:
10  - Bjorn Andersson <andersson@kernel.org>
11
12description: |
13  Qualcomm TCSR clock control module provides the clocks, resets and
14  power domains on SM8550
15
16  See also:
17  - include/dt-bindings/clock/qcom,sm8550-tcsr.h
18  - include/dt-bindings/clock/qcom,sm8650-tcsr.h
19  - include/dt-bindings/clock/qcom,sm8750-tcsr.h
20
21properties:
22  compatible:
23    items:
24      - enum:
25          - qcom,milos-tcsr
26          - qcom,sar2130p-tcsr
27          - qcom,sm8550-tcsr
28          - qcom,sm8650-tcsr
29          - qcom,sm8750-tcsr
30          - qcom,x1e80100-tcsr
31      - const: syscon
32
33  clocks:
34    items:
35      - description: TCXO pad clock
36
37  reg:
38    maxItems: 1
39
40  '#clock-cells':
41    const: 1
42
43  '#reset-cells':
44    const: 1
45
46required:
47  - compatible
48  - clocks
49
50additionalProperties: false
51
52examples:
53  - |
54    #include <dt-bindings/clock/qcom,rpmh.h>
55
56    clock-controller@1fc0000 {
57      compatible = "qcom,sm8550-tcsr", "syscon";
58      reg = <0x1fc0000 0x30000>;
59      clocks = <&rpmhcc RPMH_CXO_CLK>;
60      #clock-cells = <1>;
61      #reset-cells = <1>;
62    };
63
64...
65