xref: /linux/Documentation/devicetree/bindings/arm/airoha,en7581-chip-scu.yaml (revision 7f71507851fc7764b36a3221839607d3a45c2025)
1# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/arm/airoha,en7581-chip-scu.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Airoha Chip SCU Controller for EN7581 SoC
8
9maintainers:
10  - Lorenzo Bianconi <lorenzo@kernel.org>
11
12description:
13  The airoha chip-scu block provides a configuration interface for clock,
14  io-muxing and other functionalities used by multiple controllers (e.g. clock,
15  pinctrl, ecc) on EN7581 SoC.
16
17properties:
18  compatible:
19    items:
20      - enum:
21          - airoha,en7581-chip-scu
22      - const: syscon
23
24  reg:
25    maxItems: 1
26
27required:
28  - compatible
29  - reg
30
31additionalProperties: false
32
33examples:
34  - |
35    soc {
36      #address-cells = <2>;
37      #size-cells = <2>;
38      syscon@1fa20000 {
39        compatible = "airoha,en7581-chip-scu", "syscon";
40        reg = <0x0 0x1fa20000 0x0 0x388>;
41      };
42    };
43