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,qcs615-videocc.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Qualcomm Video Clock & Reset Controller on QCS615
8
9maintainers:
10 - Taniya Das <quic_tdas@quicinc.com>
11
12description: |
13 Qualcomm video clock control module provides clocks, resets and power
14 domains on QCS615 Qualcomm SoCs.
15
16 See also: include/dt-bindings/clock/qcom,qcs615-videocc.h
17
18properties:
19 compatible:
20 const: qcom,qcs615-videocc
21
22 clocks:
23 items:
24 - description: Board XO source
25 - description: Sleep clock source
26
27allOf:
28 - $ref: qcom,gcc.yaml#
29
30unevaluatedProperties: false
31
32examples:
33 - |
34 #include <dt-bindings/clock/qcom,rpmh.h>
35 #include <dt-bindings/clock/qcom,qcs615-gcc.h>
36
37 clock-controller@ab00000 {
38 compatible = "qcom,qcs615-videocc";
39 reg = <0xab00000 0x10000>;
40 clocks = <&rpmhcc RPMH_CXO_CLK>,
41 <&sleep_clk>;
42
43 #clock-cells = <1>;
44 #reset-cells = <1>;
45 #power-domain-cells = <1>;
46 };
47...