blob: 59ef41adb539bba315cf89071a94c6a174432a79 [file] [log] [blame]
Tom Rini93743d22024-04-01 09:08:13 -04001# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/clock/sophgo,cv1800-clk.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
Tom Rini762f85b2024-07-20 11:15:10 -06007title: Sophgo CV1800/SG2000 Series Clock Controller
Tom Rini93743d22024-04-01 09:08:13 -04008
9maintainers:
10 - Inochi Amaoto <inochiama@outlook.com>
11
12properties:
13 compatible:
14 enum:
15 - sophgo,cv1800-clk
16 - sophgo,cv1810-clk
Tom Rini762f85b2024-07-20 11:15:10 -060017 - sophgo,sg2000-clk
Tom Rini93743d22024-04-01 09:08:13 -040018
19 reg:
20 maxItems: 1
21
22 clocks:
23 maxItems: 1
24
25 "#clock-cells":
26 const: 1
27 description:
28 See <dt-bindings/clock/sophgo,cv1800.h> for valid indices.
29
30required:
31 - compatible
32 - reg
33 - clocks
34 - "#clock-cells"
35
36additionalProperties: false
37
38examples:
39 - |
40 clock-controller@3002000 {
41 compatible = "sophgo,cv1800-clk";
42 reg = <0x03002000 0x1000>;
43 clocks = <&osc>;
44 #clock-cells = <1>;
45 };
46
47...