xref: /freebsd/sys/contrib/device-tree/Bindings/soc/sophgo/sophgo,sg2044-top-syscon.yaml (revision ae5de77ed78ae54d86cead5604869212e8008e6b)
1*ae5de77eSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
2*ae5de77eSEmmanuel Vadot%YAML 1.2
3*ae5de77eSEmmanuel Vadot---
4*ae5de77eSEmmanuel Vadot$id: http://devicetree.org/schemas/soc/sophgo/sophgo,sg2044-top-syscon.yaml#
5*ae5de77eSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6*ae5de77eSEmmanuel Vadot
7*ae5de77eSEmmanuel Vadottitle: Sophgo SG2044 SoC TOP system controller
8*ae5de77eSEmmanuel Vadot
9*ae5de77eSEmmanuel Vadotmaintainers:
10*ae5de77eSEmmanuel Vadot  - Inochi Amaoto <inochiama@gmail.com>
11*ae5de77eSEmmanuel Vadot
12*ae5de77eSEmmanuel Vadotdescription:
13*ae5de77eSEmmanuel Vadot  The Sophgo SG2044 TOP system controller is a hardware block grouping
14*ae5de77eSEmmanuel Vadot  multiple small functions, such as clocks and some other internal
15*ae5de77eSEmmanuel Vadot  function.
16*ae5de77eSEmmanuel Vadot
17*ae5de77eSEmmanuel Vadotproperties:
18*ae5de77eSEmmanuel Vadot  compatible:
19*ae5de77eSEmmanuel Vadot    items:
20*ae5de77eSEmmanuel Vadot      - const: sophgo,sg2044-top-syscon
21*ae5de77eSEmmanuel Vadot      - const: syscon
22*ae5de77eSEmmanuel Vadot
23*ae5de77eSEmmanuel Vadot  reg:
24*ae5de77eSEmmanuel Vadot    maxItems: 1
25*ae5de77eSEmmanuel Vadot
26*ae5de77eSEmmanuel Vadot  clocks:
27*ae5de77eSEmmanuel Vadot    maxItems: 1
28*ae5de77eSEmmanuel Vadot
29*ae5de77eSEmmanuel Vadot  '#clock-cells':
30*ae5de77eSEmmanuel Vadot    const: 1
31*ae5de77eSEmmanuel Vadot    description:
32*ae5de77eSEmmanuel Vadot      See <dt-bindings/clock/sophgo,sg2044-pll.h> for valid clock.
33*ae5de77eSEmmanuel Vadot
34*ae5de77eSEmmanuel Vadotrequired:
35*ae5de77eSEmmanuel Vadot  - compatible
36*ae5de77eSEmmanuel Vadot  - reg
37*ae5de77eSEmmanuel Vadot  - clocks
38*ae5de77eSEmmanuel Vadot  - '#clock-cells'
39*ae5de77eSEmmanuel Vadot
40*ae5de77eSEmmanuel VadotadditionalProperties: false
41*ae5de77eSEmmanuel Vadot
42*ae5de77eSEmmanuel Vadotexamples:
43*ae5de77eSEmmanuel Vadot  - |
44*ae5de77eSEmmanuel Vadot    syscon@50000000 {
45*ae5de77eSEmmanuel Vadot      compatible = "sophgo,sg2044-top-syscon", "syscon";
46*ae5de77eSEmmanuel Vadot      reg = <0x50000000 0x1000>;
47*ae5de77eSEmmanuel Vadot      #clock-cells = <1>;
48*ae5de77eSEmmanuel Vadot      clocks = <&osc>;
49*ae5de77eSEmmanuel Vadot    };
50