0001 Aspeed AST25XX and AST26XX SCU Interrupt Controller
0002
0003 Required Properties:
0004 - #interrupt-cells : must be 1
0005 - compatible : must be "aspeed,ast2500-scu-ic",
0006 "aspeed,ast2600-scu-ic0" or
0007 "aspeed,ast2600-scu-ic1"
0008 - interrupts : interrupt from the parent controller
0009 - interrupt-controller : indicates that the controller receives and
0010 fires new interrupts for child busses
0011
0012 Example:
0013
0014 syscon@1e6e2000 {
0015 ranges = <0 0x1e6e2000 0x1a8>;
0016
0017 scu_ic: interrupt-controller@18 {
0018 #interrupt-cells = <1>;
0019 compatible = "aspeed,ast2500-scu-ic";
0020 interrupts = <21>;
0021 interrupt-controller;
0022 };
0023 };