xref: /freebsd/sys/contrib/device-tree/Bindings/clock/sophgo,cv1800-clk.yaml (revision 8d13bc63c0e1d50bc9e47ac1f26329c999bfecf0)
1*8d13bc63SEmmanuel Vadot# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
2*8d13bc63SEmmanuel Vadot%YAML 1.2
3*8d13bc63SEmmanuel Vadot---
4*8d13bc63SEmmanuel Vadot$id: http://devicetree.org/schemas/clock/sophgo,cv1800-clk.yaml#
5*8d13bc63SEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6*8d13bc63SEmmanuel Vadot
7*8d13bc63SEmmanuel Vadottitle: Sophgo CV1800 Series Clock Controller
8*8d13bc63SEmmanuel Vadot
9*8d13bc63SEmmanuel Vadotmaintainers:
10*8d13bc63SEmmanuel Vadot  - Inochi Amaoto <inochiama@outlook.com>
11*8d13bc63SEmmanuel Vadot
12*8d13bc63SEmmanuel Vadotproperties:
13*8d13bc63SEmmanuel Vadot  compatible:
14*8d13bc63SEmmanuel Vadot    enum:
15*8d13bc63SEmmanuel Vadot      - sophgo,cv1800-clk
16*8d13bc63SEmmanuel Vadot      - sophgo,cv1810-clk
17*8d13bc63SEmmanuel Vadot
18*8d13bc63SEmmanuel Vadot  reg:
19*8d13bc63SEmmanuel Vadot    maxItems: 1
20*8d13bc63SEmmanuel Vadot
21*8d13bc63SEmmanuel Vadot  clocks:
22*8d13bc63SEmmanuel Vadot    maxItems: 1
23*8d13bc63SEmmanuel Vadot
24*8d13bc63SEmmanuel Vadot  "#clock-cells":
25*8d13bc63SEmmanuel Vadot    const: 1
26*8d13bc63SEmmanuel Vadot    description:
27*8d13bc63SEmmanuel Vadot      See <dt-bindings/clock/sophgo,cv1800.h> for valid indices.
28*8d13bc63SEmmanuel Vadot
29*8d13bc63SEmmanuel Vadotrequired:
30*8d13bc63SEmmanuel Vadot  - compatible
31*8d13bc63SEmmanuel Vadot  - reg
32*8d13bc63SEmmanuel Vadot  - clocks
33*8d13bc63SEmmanuel Vadot  - "#clock-cells"
34*8d13bc63SEmmanuel Vadot
35*8d13bc63SEmmanuel VadotadditionalProperties: false
36*8d13bc63SEmmanuel Vadot
37*8d13bc63SEmmanuel Vadotexamples:
38*8d13bc63SEmmanuel Vadot  - |
39*8d13bc63SEmmanuel Vadot    clock-controller@3002000 {
40*8d13bc63SEmmanuel Vadot        compatible = "sophgo,cv1800-clk";
41*8d13bc63SEmmanuel Vadot        reg = <0x03002000 0x1000>;
42*8d13bc63SEmmanuel Vadot        clocks = <&osc>;
43*8d13bc63SEmmanuel Vadot        #clock-cells = <1>;
44*8d13bc63SEmmanuel Vadot    };
45*8d13bc63SEmmanuel Vadot
46*8d13bc63SEmmanuel Vadot...
47