Merge tag 'irqchip-fixes-5.4-1' of git://git.kernel.org/pub/scm/linux/kernel/git...
[sfrench/cifs-2.6.git] / Documentation / devicetree / bindings / mfd / aspeed-scu.txt
1 The Aspeed System Control Unit manages the global behaviour of the SoC,
2 configuring elements such as clocks, pinmux, and reset.
3
4 Required properties:
5 - compatible:   One of:
6                 "aspeed,ast2400-scu", "syscon", "simple-mfd"
7                 "aspeed,ast2500-scu", "syscon", "simple-mfd"
8
9 - reg:          contains the offset and length of the SCU memory region
10 - #clock-cells: should be set to <1> - the system controller is also a
11         clock provider
12 - #reset-cells: should be set to <1> - the system controller is also a
13         reset line provider
14
15 Example:
16
17 syscon: syscon@1e6e2000 {
18         compatible = "aspeed,ast2400-scu", "syscon", "simple-mfd";
19         reg = <0x1e6e2000 0x1a8>;
20         #clock-cells = <1>;
21         #reset-cells = <1>;
22 };