xref: /linux/Documentation/devicetree/bindings/soc/cix/cix,sky1-system-control.yaml (revision 31b43c079f9aa55754c20404a42bca9a49e01f60)
1# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/soc/cix/cix,sky1-system-control.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Cix Sky1 SoC system control register region
8
9maintainers:
10  - Gary Yang <gary.yang@cixtech.com>
11
12description:
13  An wide assortment of registers of the system controller on Sky1 SoC,
14  including resets, usb, wakeup sources and so on.
15
16properties:
17  compatible:
18    items:
19      - enum:
20          - cix,sky1-system-control
21          - cix,sky1-s5-system-control
22      - const: syscon
23
24  reg:
25    maxItems: 1
26
27  '#reset-cells':
28    const: 1
29
30required:
31  - compatible
32  - reg
33
34additionalProperties: false
35
36examples:
37  - |
38    syscon@4160000 {
39      compatible = "cix,sky1-system-control", "syscon";
40      reg = <0x4160000 0x100>;
41      #reset-cells = <1>;
42    };
43