blob: 36974309cf6964b821a06d4be73dfb599617c17d [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,sm8450-gpucc.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Qualcomm Graphics Clock & Reset Controller on SM8450
8
9maintainers:
10 - Konrad Dybcio <konrad.dybcio@linaro.org>
11
12description: |
13 Qualcomm graphics clock control module provides the clocks, resets and power
14 domains on Qualcomm SoCs.
15
16 See also::
17 include/dt-bindings/clock/qcom,sm8450-gpucc.h
18 include/dt-bindings/clock/qcom,sm8550-gpucc.h
19 include/dt-bindings/reset/qcom,sm8450-gpucc.h
Tom Rini93743d22024-04-01 09:08:13 -040020 include/dt-bindings/reset/qcom,sm8650-gpucc.h
Tom Rini6bb92fc2024-05-20 09:54:58 -060021 include/dt-bindings/reset/qcom,x1e80100-gpucc.h
Tom Rini53633a82024-02-29 12:33:36 -050022
23properties:
24 compatible:
25 enum:
26 - qcom,sm8450-gpucc
27 - qcom,sm8550-gpucc
Tom Rini93743d22024-04-01 09:08:13 -040028 - qcom,sm8650-gpucc
Tom Rini6bb92fc2024-05-20 09:54:58 -060029 - qcom,x1e80100-gpucc
Tom Rini53633a82024-02-29 12:33:36 -050030
31 clocks:
32 items:
33 - description: Board XO source
34 - description: GPLL0 main branch source
35 - description: GPLL0 div branch source
36
37 '#clock-cells':
38 const: 1
39
40 '#reset-cells':
41 const: 1
42
43 '#power-domain-cells':
44 const: 1
45
46 reg:
47 maxItems: 1
48
49required:
50 - compatible
51 - reg
52 - clocks
53 - '#clock-cells'
54 - '#reset-cells'
55 - '#power-domain-cells'
56
57additionalProperties: false
58
59examples:
60 - |
61 #include <dt-bindings/clock/qcom,gcc-sm8450.h>
62 #include <dt-bindings/clock/qcom,rpmh.h>
63
64 soc {
65 #address-cells = <2>;
66 #size-cells = <2>;
67
68 clock-controller@3d90000 {
69 compatible = "qcom,sm8450-gpucc";
70 reg = <0 0x03d90000 0 0xa000>;
71 clocks = <&rpmhcc RPMH_CXO_CLK>,
72 <&gcc GCC_GPU_GPLL0_CLK_SRC>,
73 <&gcc GCC_GPU_GPLL0_DIV_CLK_SRC>;
74 #clock-cells = <1>;
75 #reset-cells = <1>;
76 #power-domain-cells = <1>;
77 };
78 };
79...