Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
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 - Taniya Das <taniya.das@oss.qualcomm.com>
12
13description: |
14 Qualcomm TCSR clock control module provides the clocks, resets and
15 power domains on SM8550
16
17 See also:
18 - include/dt-bindings/clock/qcom,glymur-tcsr.h
19 - include/dt-bindings/clock/qcom,sm8550-tcsr.h
20 - include/dt-bindings/clock/qcom,sm8650-tcsr.h
21 - include/dt-bindings/clock/qcom,sm8750-tcsr.h
22
23properties:
24 compatible:
25 items:
26 - enum:
27 - qcom,glymur-tcsr
28 - qcom,kaanapali-tcsr
29 - qcom,milos-tcsr
30 - qcom,sar2130p-tcsr
31 - qcom,sm8550-tcsr
32 - qcom,sm8650-tcsr
33 - qcom,sm8750-tcsr
34 - qcom,x1e80100-tcsr
35 - const: syscon
36
37 clocks:
38 items:
39 - description: TCXO pad clock
40
41 reg:
42 maxItems: 1
43
44 '#clock-cells':
45 const: 1
46
47 '#reset-cells':
48 const: 1
49
50required:
51 - compatible
52 - clocks
53
54additionalProperties: false
55
56examples:
57 - |
58 #include <dt-bindings/clock/qcom,rpmh.h>
59
60 clock-controller@1fc0000 {
61 compatible = "qcom,sm8550-tcsr", "syscon";
62 reg = <0x1fc0000 0x30000>;
63 clocks = <&rpmhcc RPMH_CXO_CLK>;
64 #clock-cells = <1>;
65 #reset-cells = <1>;
66 };
67
68...