blob: c1dc24673c0d76f21861ef72363c24ec4616e4aa [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
7title: Sophgo CV1800 Series Clock Controller
8
9maintainers:
10 - Inochi Amaoto <inochiama@outlook.com>
11
12properties:
13 compatible:
14 enum:
15 - sophgo,cv1800-clk
16 - sophgo,cv1810-clk
17
18 reg:
19 maxItems: 1
20
21 clocks:
22 maxItems: 1
23
24 "#clock-cells":
25 const: 1
26 description:
27 See <dt-bindings/clock/sophgo,cv1800.h> for valid indices.
28
29required:
30 - compatible
31 - reg
32 - clocks
33 - "#clock-cells"
34
35additionalProperties: false
36
37examples:
38 - |
39 clock-controller@3002000 {
40 compatible = "sophgo,cv1800-clk";
41 reg = <0x03002000 0x1000>;
42 clocks = <&osc>;
43 #clock-cells = <1>;
44 };
45
46...