1Aspeed Vectored Interrupt Controller 2 3These bindings are for the Aspeed AST2400 interrupt controller register layout. 4The SoC has an legacy register layout, but this driver does not support that 5mode of operation. 6 7Required properties: 8 9- compatible : should be "aspeed,ast2400-vic". 10 11- interrupt-controller : Identifies the node as an interrupt controller 12- #interrupt-cells : Specifies the number of cells needed to encode an 13 interrupt source. The value shall be 1. 14 15Example: 16 17 vic: interrupt-controller@1e6c0080 { 18 compatible = "aspeed,ast2400-vic"; 19 interrupt-controller; 20 #interrupt-cells = <1>; 21 reg = <0x1e6c0080 0x80>; 22 }; 23